blob: 6bc23b1e8ea184cc3c1e81a75d157ce2beff9e55 [file] [log] [blame]
Rich Salze0a65192016-04-19 22:10:43 -04001#! /usr/bin/env perl
Todd Short3f5616d2017-01-11 16:38:44 -05002# Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
Rich Salze0a65192016-04-19 22:10:43 -04003#
4# Licensed under the OpenSSL license (the "License"). You may not use
5# this file except in compliance with the License. You can obtain a copy
6# in the file LICENSE in the source distribution or at
7# https://www.openssl.org/source/license.html
8
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00009#
10# generate a .def file
11#
12# It does this by parsing the header files and looking for the
Dr. Stephen Henson47339f61999-04-26 00:23:10 +000013# prototyped functions: it then prunes the output.
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000014#
Richard Levitte6928b612016-03-03 12:42:01 +010015# Intermediary files are created, call libcrypto.num and libssl.num,
Rich Salz1a53f1d2015-02-06 10:45:29 -050016# The format of these files is:
Richard Levitte948d0122000-09-07 08:43:08 +000017#
Matt Caswelle863d922015-12-14 09:22:58 +000018# routine-name nnnn vers info
Richard Levitte948d0122000-09-07 08:43:08 +000019#
Matt Caswelle863d922015-12-14 09:22:58 +000020# The "nnnn" and "vers" fields are the numeric id and version for the symbol
21# respectively. The "info" part is actually a colon-separated string of fields
22# with the following meaning:
Richard Levitte948d0122000-09-07 08:43:08 +000023#
24# existence:platform:kind:algorithms
25#
26# - "existence" can be "EXIST" or "NOEXIST" depending on if the symbol is
David Benjamin609b0852016-10-10 12:01:24 -040027# found somewhere in the source,
Richard Levitte948d0122000-09-07 08:43:08 +000028# - "platforms" is empty if it exists on all platforms, otherwise it contains
29# comma-separated list of the platform, just as they are if the symbol exists
30# for those platforms, or prepended with a "!" if not. This helps resolve
Richard Levitte62dc5aa2001-03-02 10:38:19 +000031# symbol name variants for platforms where the names are too long for the
Richard Levitte948d0122000-09-07 08:43:08 +000032# compiler or linker, or if the systems is case insensitive and there is a
Richard Levitte62dc5aa2001-03-02 10:38:19 +000033# clash, or the symbol is implemented differently (see
34# EXPORT_VAR_AS_FUNCTION). This script assumes renaming of symbols is found
35# in the file crypto/symhacks.h.
36# The semantics for the platforms is that every item is checked against the
Lutz Jänicke50121582002-07-10 17:34:54 +000037# environment. For the negative items ("!FOO"), if any of them is false
38# (i.e. "FOO" is true) in the environment, the corresponding symbol can't be
Richard Levitte62dc5aa2001-03-02 10:38:19 +000039# used. For the positive itms, if all of them are false in the environment,
40# the corresponding symbol can't be used. Any combination of positive and
41# negative items are possible, and of course leave room for some redundancy.
Richard Levitte948d0122000-09-07 08:43:08 +000042# - "kind" is "FUNCTION" or "VARIABLE". The meaning of that is obvious.
43# - "algorithms" is a comma-separated list of algorithm names. This helps
44# exclude symbols that are part of an algorithm that some user wants to
45# exclude.
46#
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000047
Richard Levitte3fa04f02016-01-12 00:17:12 +010048use lib ".";
49use configdata;
Richard Levitted7465912016-01-30 00:03:58 +010050use File::Spec::Functions;
Richard Levitte3fa04f02016-01-12 00:17:12 +010051
Richard Levitted399fdf2001-02-21 14:12:03 +000052my $debug=0;
53
Richard Levitte6928b612016-03-03 12:42:01 +010054my $crypto_num= catfile($config{sourcedir},"util","libcrypto.num");
55my $ssl_num= catfile($config{sourcedir},"util","libssl.num");
Richard Levittecd4c36a2002-07-17 13:27:43 +000056my $libname;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000057
Dr. Stephen Henson47339f61999-04-26 00:23:10 +000058my $do_update = 0;
Richard Levitte1449bda2001-05-13 04:48:07 +000059my $do_rewrite = 1;
Dr. Stephen Henson47339f61999-04-26 00:23:10 +000060my $do_crypto = 0;
61my $do_ssl = 0;
Ulf Möller0f583f62000-01-07 03:17:47 +000062my $do_ctest = 0;
Richard Levitte967f4ca2000-08-17 21:26:22 +000063my $do_ctestall = 0;
Dr. Stephen Hensonc47c6192001-02-09 13:16:21 +000064my $do_checkexist = 0;
Dr. Stephen Henson47339f61999-04-26 00:23:10 +000065
Richard Levitte948d0122000-09-07 08:43:08 +000066my $VMS=0;
67my $W32=0;
Ulf Möller0f583f62000-01-07 03:17:47 +000068my $NT=0;
Matt Caswelle863d922015-12-14 09:22:58 +000069my $linux=0;
Dr. Stephen Henson28a98801999-04-14 23:44:41 +000070# Set this to make typesafe STACK definitions appear in DEF
Geoff Thorpee41c8d62000-06-01 05:13:52 +000071my $safe_stack_def = 0;
Ulf Möller31ff97b1999-05-13 10:28:14 +000072
Rich Salze03b2982014-12-19 21:11:09 -050073my @known_platforms = ( "__FreeBSD__", "PERL5",
Andy Polyakovf1f5ee12016-06-26 13:40:15 +020074 "EXPORT_VAR_AS_FUNCTION", "ZLIB", "_WIN32"
Rich Salz700b4a42015-12-14 15:24:27 -050075 );
Rich Salz6d23cf92015-01-12 17:29:26 -050076my @known_ossl_platforms = ( "VMS", "WIN32", "WINNT", "OS2" );
Richard Levitte948d0122000-09-07 08:43:08 +000077my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF",
Richard Levitte3f07fe02000-12-29 00:05:14 +000078 "CAST", "MD2", "MD4", "MD5", "SHA", "SHA0", "SHA1",
Rich Salz1f7103b2015-02-04 18:50:00 -050079 "SHA256", "SHA512", "RMD160",
Dr. Stephen Hensond2ad1c92015-10-27 20:18:42 +000080 "MDC2", "WHIRLPOOL", "RSA", "DSA", "DH", "EC", "EC2M",
Paulid42d0a42017-02-01 10:10:13 +100081 "HMAC", "AES", "CAMELLIA", "SEED", "GOST", "ARIA",
Bill Cox2d0b4412016-03-09 23:08:31 +010082 "SCRYPT", "CHACHA", "POLY1305", "BLAKE2",
Todd Short3f5616d2017-01-11 16:38:44 -050083 "SIPHASH",
Bodo Möllere0d61322011-10-19 08:59:53 +000084 # EC_NISTP_64_GCC_128
85 "EC_NISTP_64_GCC_128",
Richard Levitte3f07fe02000-12-29 00:05:14 +000086 # Envelope "algorithms"
87 "EVP", "X509", "ASN1_TYPEDEFS",
88 # Helper "algorithms"
89 "BIO", "COMP", "BUFFER", "LHASH", "STACK", "ERR",
90 "LOCKING",
91 # External "algorithms"
Matt Caswelle36827f2015-05-12 12:14:13 +010092 "FP_API", "STDIO", "SOCK", "DGRAM",
Rich Salz6ac11bd2016-01-07 21:40:52 -050093 "CRYPTO_MDEBUG",
Richard Levitte6cb68622002-10-24 19:09:03 +000094 # Engines
David Woodhouse05d7bf62015-09-09 15:29:44 -040095 "STATIC_ENGINE", "ENGINE", "HW", "GMP",
Benjamin Kaduk0423f812016-01-12 18:02:16 -060096 # Entropy Gathering
97 "EGD",
Rob Percival0cea8832016-02-25 18:11:16 +000098 # Certificate Transparency
99 "CT",
David Woodhouse47bbaa52015-07-23 17:30:06 +0100100 # RFC3779
101 "RFC3779",
Dr. Stephen Hensonc20276e2006-04-17 12:08:22 +0000102 # TLS
Richard Levitteb6127992016-11-15 14:53:33 +0100103 "PSK", "SRP", "HEARTBEATS",
Dr. Stephen Henson8931b302008-03-12 21:14:28 +0000104 # CMS
105 "CMS",
Rich Salz506e28b2016-04-08 08:02:41 -0400106 "OCSP",
Dr. Stephen Hensond8bd55a2008-06-01 11:07:34 +0000107 # CryptoAPI Engine
108 "CAPIENG",
Kurt Roeckx6b514592016-03-09 22:54:16 +0100109 # SSL methods
110 "SSL3_METHOD", "TLS1_METHOD", "TLS1_1_METHOD", "TLS1_2_METHOD", "DTLS1_METHOD", "DTLS1_2_METHOD",
Dr. Stephen Henson36246be2011-02-12 17:38:40 +0000111 # NEXTPROTONEG
112 "NEXTPROTONEG",
Richard Levitte4ccfe5f2002-12-09 02:18:16 +0000113 # Deprecated functions
Dr. Stephen Henson7a556fb2016-01-09 13:40:02 +0000114 "DEPRECATEDIN_0_9_8",
115 "DEPRECATEDIN_1_0_0",
116 "DEPRECATEDIN_1_1_0",
Dr. Stephen Henson9ef562b2011-12-25 14:46:15 +0000117 # SCTP
Matt Caswell3dd814a2014-10-15 01:23:07 +0100118 "SCTP",
119 # SRTP
120 "SRTP",
Dr. Stephen Henson8fdb4f12012-07-01 22:12:03 +0000121 # SSL TRACE
Dr. Stephen Hensone0fc7962014-07-23 13:18:06 +0100122 "SSL_TRACE",
123 # Unit testing
Matt Caswelldc0e9a32014-12-08 14:19:26 +0000124 "UNIT_TEST",
Matf7c45842016-03-07 22:59:13 +0100125 # User Interface
126 "UI",
Richard Levittef3852632016-03-18 20:06:29 +0100127 #
128 "TS",
Matt Caswelldc0e9a32014-12-08 14:19:26 +0000129 # OCB mode
Rich Salz1a53f1d2015-02-06 10:45:29 -0500130 "OCB",
Matt Caswellb04e5c12016-04-22 11:47:57 +0100131 "CMAC",
Rich Salz1a53f1d2015-02-06 10:45:29 -0500132 # APPLINK (win build feature?)
133 "APPLINK"
134 );
Richard Levitte948d0122000-09-07 08:43:08 +0000135
Dr. Stephen Henson2854c792016-01-07 03:19:09 +0000136my %disabled_algorithms;
137
138foreach (@known_algorithms) {
139 $disabled_algorithms{$_} = 0;
140}
Dr. Stephen Henson3af45d92016-01-10 13:33:31 +0000141# disabled by default
Dr. Stephen Henson3af45d92016-01-10 13:33:31 +0000142$disabled_algorithms{"STATIC_ENGINE"} = 1;
Dr. Stephen Henson2854c792016-01-07 03:19:09 +0000143
Dr. Stephen Henson8931b302008-03-12 21:14:28 +0000144my $zlib;
Dr. Stephen Henson987beba2005-04-19 13:24:44 +0000145
Richard Levitte3fa04f02016-01-12 00:17:12 +0100146foreach (@ARGV, split(/ /, $config{options}))
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000147 {
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000148 $debug=1 if $_ eq "debug";
Dr. Stephen Henson06c68491999-03-03 02:01:26 +0000149 $W32=1 if $_ eq "32";
Rich Salz6d23cf92015-01-12 17:29:26 -0500150 die "win16 not supported" if $_ eq "16";
Dr. Stephen Henson06c68491999-03-03 02:01:26 +0000151 if($_ eq "NT") {
152 $W32 = 1;
153 $NT = 1;
154 }
Matt Caswelle863d922015-12-14 09:22:58 +0000155 if ($_ eq "linux") {
156 $linux=1;
157 }
Richard Levitte96bc5d02017-02-28 20:00:42 +0100158 $VMS=1 if $_ eq "VMS";
Dr. Stephen Hensonb2cf7c62009-02-25 11:55:15 +0000159 if ($_ eq "zlib" || $_ eq "enable-zlib" || $_ eq "zlib-dynamic"
Dr. Stephen Henson8931b302008-03-12 21:14:28 +0000160 || $_ eq "enable-zlib-dynamic") {
161 $zlib = 1;
162 }
163
Richard Levitte6928b612016-03-03 12:42:01 +0100164 $do_ssl=1 if $_ eq "libssl";
Richard Levittecd4c36a2002-07-17 13:27:43 +0000165 if ($_ eq "ssl") {
David Benjamin609b0852016-10-10 12:01:24 -0400166 $do_ssl=1;
Richard Levittecd4c36a2002-07-17 13:27:43 +0000167 $libname=$_
168 }
Richard Levitte6928b612016-03-03 12:42:01 +0100169 $do_crypto=1 if $_ eq "libcrypto";
Richard Levittecd4c36a2002-07-17 13:27:43 +0000170 if ($_ eq "crypto") {
171 $do_crypto=1;
172 $libname=$_;
173 }
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +0000174 $do_update=1 if $_ eq "update";
Richard Levitte948d0122000-09-07 08:43:08 +0000175 $do_rewrite=1 if $_ eq "rewrite";
Dr. Stephen Henson12aefe71999-12-24 17:26:33 +0000176 $do_ctest=1 if $_ eq "ctest";
Richard Levitte967f4ca2000-08-17 21:26:22 +0000177 $do_ctestall=1 if $_ eq "ctestall";
Dr. Stephen Hensonc47c6192001-02-09 13:16:21 +0000178 $do_checkexist=1 if $_ eq "exist";
Dr. Stephen Henson7a556fb2016-01-09 13:40:02 +0000179 if (/^--api=(\d+)\.(\d+)\.(\d+)$/) {
180 my $apiv = sprintf "%x%02x%02x", $1, $2, $3;
181 foreach (keys %disabled_algorithms) {
182 if (/^DEPRECATEDIN_(\d+)_(\d+)_(\d+)$/) {
183 my $depv = sprintf "%x%02x%02x", $1, $2, $3;
184 $disabled_algorithms{$_} = 1 if $apiv ge $depv;
185 }
186 }
187 }
188 if (/^no-deprecated$/) {
189 foreach (keys %disabled_algorithms) {
190 if (/^DEPRECATEDIN_/) {
191 $disabled_algorithms{$_} = 1;
192 }
193 }
194 }
195 elsif (/^(enable|disable|no)-(.*)$/) {
Dr. Stephen Henson2854c792016-01-07 03:19:09 +0000196 my $alg = uc $2;
197 $alg =~ tr/-/_/;
198 if (exists $disabled_algorithms{$alg}) {
199 $disabled_algorithms{$alg} = $1 eq "enable" ? 0 : 1;
200 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000201 }
202
Dr. Stephen Henson2854c792016-01-07 03:19:09 +0000203 }
Dr. Stephen Henson12aefe71999-12-24 17:26:33 +0000204
David Benjamin609b0852016-10-10 12:01:24 -0400205if (!$libname) {
Richard Levittecd4c36a2002-07-17 13:27:43 +0000206 if ($do_ssl) {
Richard Levitte6928b612016-03-03 12:42:01 +0100207 $libname="LIBSSL";
Richard Levittecd4c36a2002-07-17 13:27:43 +0000208 }
209 if ($do_crypto) {
Richard Levitte6928b612016-03-03 12:42:01 +0100210 $libname="LIBCRYPTO";
Richard Levittecd4c36a2002-07-17 13:27:43 +0000211 }
212}
213
Richard Levitte948d0122000-09-07 08:43:08 +0000214# If no platform is given, assume WIN32
Rich Salz1fbab1d2016-03-17 12:53:11 -0400215if ($W32 + $VMS + $linux == 0) {
Richard Levitte948d0122000-09-07 08:43:08 +0000216 $W32 = 1;
217}
Richard Levittea3886332016-01-07 20:49:53 +0100218die "Please, only one platform at a time"
Rich Salz1fbab1d2016-03-17 12:53:11 -0400219 if ($W32 + $VMS + $linux > 1);
Richard Levitte948d0122000-09-07 08:43:08 +0000220
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000221if (!$do_ssl && !$do_crypto)
222 {
Richard Levittea3886332016-01-07 20:49:53 +0100223 print STDERR "usage: $0 ( ssl | crypto ) [ 16 | 32 | NT | OS2 | linux | VMS ]\n";
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000224 exit(1);
225 }
226
227%ssl_list=&load_numbers($ssl_num);
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +0000228$max_ssl = $max_num;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000229%crypto_list=&load_numbers($crypto_num);
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +0000230$max_crypto = $max_num;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000231
Richard Levittedee502b2015-03-26 21:33:18 +0100232my $ssl="include/openssl/ssl.h";
Richard Levittedee502b2015-03-26 21:33:18 +0100233$ssl.=" include/openssl/tls1.h";
234$ssl.=" include/openssl/srtp.h";
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000235
Richard Levitte65b1ff42016-02-14 19:37:10 +0100236# We use headers found in include/openssl and include/internal only.
237# The latter is needed so libssl.so/.dll/.exe can link properly.
Richard Levittedee502b2015-03-26 21:33:18 +0100238my $crypto ="include/openssl/crypto.h";
Richard Levitte68570792015-05-14 14:54:49 +0200239$crypto.=" include/internal/o_dir.h";
240$crypto.=" include/internal/o_str.h";
Matt Caswell20c56352016-04-06 10:50:05 +0100241$crypto.=" include/internal/err.h";
Richard Levittedee502b2015-03-26 21:33:18 +0100242$crypto.=" include/openssl/des.h" ; # unless $no_des;
243$crypto.=" include/openssl/idea.h" ; # unless $no_idea;
244$crypto.=" include/openssl/rc4.h" ; # unless $no_rc4;
245$crypto.=" include/openssl/rc5.h" ; # unless $no_rc5;
246$crypto.=" include/openssl/rc2.h" ; # unless $no_rc2;
247$crypto.=" include/openssl/blowfish.h" ; # unless $no_bf;
248$crypto.=" include/openssl/cast.h" ; # unless $no_cast;
249$crypto.=" include/openssl/whrlpool.h" ;
250$crypto.=" include/openssl/md2.h" ; # unless $no_md2;
251$crypto.=" include/openssl/md4.h" ; # unless $no_md4;
252$crypto.=" include/openssl/md5.h" ; # unless $no_md5;
253$crypto.=" include/openssl/mdc2.h" ; # unless $no_mdc2;
254$crypto.=" include/openssl/sha.h" ; # unless $no_sha;
255$crypto.=" include/openssl/ripemd.h" ; # unless $no_ripemd;
256$crypto.=" include/openssl/aes.h" ; # unless $no_aes;
257$crypto.=" include/openssl/camellia.h" ; # unless $no_camellia;
258$crypto.=" include/openssl/seed.h"; # unless $no_seed;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000259
Richard Levittedee502b2015-03-26 21:33:18 +0100260$crypto.=" include/openssl/bn.h";
261$crypto.=" include/openssl/rsa.h" ; # unless $no_rsa;
262$crypto.=" include/openssl/dsa.h" ; # unless $no_dsa;
263$crypto.=" include/openssl/dh.h" ; # unless $no_dh;
264$crypto.=" include/openssl/ec.h" ; # unless $no_ec;
Richard Levittedee502b2015-03-26 21:33:18 +0100265$crypto.=" include/openssl/hmac.h" ; # unless $no_hmac;
266$crypto.=" include/openssl/cmac.h" ;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000267
Richard Levittedee502b2015-03-26 21:33:18 +0100268$crypto.=" include/openssl/engine.h"; # unless $no_engine;
269$crypto.=" include/openssl/stack.h" ; # unless $no_stack;
270$crypto.=" include/openssl/buffer.h" ; # unless $no_buffer;
271$crypto.=" include/openssl/bio.h" ; # unless $no_bio;
Rich Salz921de152016-03-23 08:54:52 -0400272$crypto.=" include/internal/dso.h" ; # unless $no_dso;
Richard Levittedee502b2015-03-26 21:33:18 +0100273$crypto.=" include/openssl/lhash.h" ; # unless $no_lhash;
274$crypto.=" include/openssl/conf.h";
275$crypto.=" include/openssl/txt_db.h";
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000276
Richard Levittedee502b2015-03-26 21:33:18 +0100277$crypto.=" include/openssl/evp.h" ; # unless $no_evp;
278$crypto.=" include/openssl/objects.h";
279$crypto.=" include/openssl/pem.h";
280#$crypto.=" include/openssl/meth.h";
281$crypto.=" include/openssl/asn1.h";
282$crypto.=" include/openssl/asn1t.h";
Richard Levittedee502b2015-03-26 21:33:18 +0100283$crypto.=" include/openssl/err.h" ; # unless $no_err;
284$crypto.=" include/openssl/pkcs7.h";
285$crypto.=" include/openssl/pkcs12.h";
286$crypto.=" include/openssl/x509.h";
287$crypto.=" include/openssl/x509_vfy.h";
288$crypto.=" include/openssl/x509v3.h";
289$crypto.=" include/openssl/ts.h";
290$crypto.=" include/openssl/rand.h";
291$crypto.=" include/openssl/comp.h" ; # unless $no_comp;
292$crypto.=" include/openssl/ocsp.h";
293$crypto.=" include/openssl/ui.h";
Richard Levittedee502b2015-03-26 21:33:18 +0100294#$crypto.=" include/openssl/store.h";
Richard Levittedee502b2015-03-26 21:33:18 +0100295$crypto.=" include/openssl/cms.h";
Richard Levittedee502b2015-03-26 21:33:18 +0100296$crypto.=" include/openssl/srp.h";
297$crypto.=" include/openssl/modes.h";
Matt Caswell38148a22015-02-17 13:29:01 +0000298$crypto.=" include/openssl/async.h";
Rob Percival0cea8832016-02-25 18:11:16 +0000299$crypto.=" include/openssl/ct.h";
Dr. Stephen Henson7f5f4102016-03-02 21:32:30 +0000300$crypto.=" include/openssl/kdf.h";
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000301
Richard Levittedee502b2015-03-26 21:33:18 +0100302my $symhacks="include/openssl/symhacks.h";
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000303
Richard Levitte6928b612016-03-03 12:42:01 +0100304my @ssl_symbols = &do_defs("LIBSSL", $ssl, $symhacks);
305my @crypto_symbols = &do_defs("LIBCRYPTO", $crypto, $symhacks);
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000306
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +0000307if ($do_update) {
308
309if ($do_ssl == 1) {
Richard Levitte948d0122000-09-07 08:43:08 +0000310
Richard Levitte6928b612016-03-03 12:42:01 +0100311 &maybe_add_info("LIBSSL",*ssl_list,@ssl_symbols);
Richard Levitte948d0122000-09-07 08:43:08 +0000312 if ($do_rewrite == 1) {
313 open(OUT, ">$ssl_num");
Richard Levitte6928b612016-03-03 12:42:01 +0100314 &rewrite_numbers(*OUT,"LIBSSL",*ssl_list,@ssl_symbols);
Richard Levitte948d0122000-09-07 08:43:08 +0000315 } else {
316 open(OUT, ">>$ssl_num");
317 }
Richard Levitte6928b612016-03-03 12:42:01 +0100318 &update_numbers(*OUT,"LIBSSL",*ssl_list,$max_ssl,@ssl_symbols);
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +0000319 close OUT;
320}
321
322if($do_crypto == 1) {
Richard Levitte948d0122000-09-07 08:43:08 +0000323
Richard Levitte6928b612016-03-03 12:42:01 +0100324 &maybe_add_info("LIBCRYPTO",*crypto_list,@crypto_symbols);
Richard Levitte948d0122000-09-07 08:43:08 +0000325 if ($do_rewrite == 1) {
326 open(OUT, ">$crypto_num");
Richard Levitte6928b612016-03-03 12:42:01 +0100327 &rewrite_numbers(*OUT,"LIBCRYPTO",*crypto_list,@crypto_symbols);
Richard Levitte948d0122000-09-07 08:43:08 +0000328 } else {
329 open(OUT, ">>$crypto_num");
330 }
Richard Levitte6928b612016-03-03 12:42:01 +0100331 &update_numbers(*OUT,"LIBCRYPTO",*crypto_list,$max_crypto,@crypto_symbols);
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +0000332 close OUT;
David Benjamin609b0852016-10-10 12:01:24 -0400333}
Dr. Stephen Henson12aefe71999-12-24 17:26:33 +0000334
Dr. Stephen Hensonc47c6192001-02-09 13:16:21 +0000335} elsif ($do_checkexist) {
336 &check_existing(*ssl_list, @ssl_symbols)
337 if $do_ssl == 1;
338 &check_existing(*crypto_list, @crypto_symbols)
339 if $do_crypto == 1;
Richard Levitte967f4ca2000-08-17 21:26:22 +0000340} elsif ($do_ctest || $do_ctestall) {
Dr. Stephen Henson12aefe71999-12-24 17:26:33 +0000341
342 print <<"EOF";
343
344/* Test file to check all DEF file symbols are present by trying
345 * to link to all of them. This is *not* intended to be run!
346 */
347
348int main()
349{
350EOF
Richard Levitte6928b612016-03-03 12:42:01 +0100351 &print_test_file(*STDOUT,"LIBSSL",*ssl_list,$do_ctestall,@ssl_symbols)
Dr. Stephen Henson12aefe71999-12-24 17:26:33 +0000352 if $do_ssl == 1;
353
Richard Levitte6928b612016-03-03 12:42:01 +0100354 &print_test_file(*STDOUT,"LIBCRYPTO",*crypto_list,$do_ctestall,@crypto_symbols)
Dr. Stephen Henson12aefe71999-12-24 17:26:33 +0000355 if $do_crypto == 1;
356
357 print "}\n";
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +0000358
359} else {
Ulf Möller8cf65221999-05-08 10:42:06 +0000360
Richard Levittecd4c36a2002-07-17 13:27:43 +0000361 &print_def_file(*STDOUT,$libname,*ssl_list,@ssl_symbols)
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +0000362 if $do_ssl == 1;
363
Richard Levittecd4c36a2002-07-17 13:27:43 +0000364 &print_def_file(*STDOUT,$libname,*crypto_list,@crypto_symbols)
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +0000365 if $do_crypto == 1;
Ulf Möller8cf65221999-05-08 10:42:06 +0000366
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +0000367}
368
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000369
370sub do_defs
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000371{
Richard Levitte948d0122000-09-07 08:43:08 +0000372 my($name,$files,$symhacksfile)=@_;
Ulf Möller0f583f62000-01-07 03:17:47 +0000373 my $file;
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000374 my @ret;
Richard Levitte948d0122000-09-07 08:43:08 +0000375 my %syms;
376 my %platform; # For anything undefined, we assume ""
377 my %kind; # For anything undefined, we assume "FUNCTION"
378 my %algorithm; # For anything undefined, we assume ""
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000379 my %variant;
380 my %variant_cnt; # To be able to allocate "name{n}" if "name"
381 # is the same name as the original.
Ulf Möller0f583f62000-01-07 03:17:47 +0000382 my $cpp;
Richard Levitte3f07fe02000-12-29 00:05:14 +0000383 my %unknown_algorithms = ();
Matt Caswell07c4c142014-12-17 13:17:26 +0000384 my $parens = 0;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000385
Richard Levitte948d0122000-09-07 08:43:08 +0000386 foreach $file (split(/\s+/,$symhacksfile." ".$files))
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000387 {
Richard Levitted7465912016-01-30 00:03:58 +0100388 my $fn = catfile($config{sourcedir},$file);
389 print STDERR "DEBUG: starting on $fn:\n" if $debug;
390 open(IN,"<$fn") || die "unable to open $fn:$!\n";
Ulf Möller0f583f62000-01-07 03:17:47 +0000391 my $line = "", my $def= "";
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000392 my %tag = (
Richard Levitted399fdf2001-02-21 14:12:03 +0000393 (map { $_ => 0 } @known_platforms),
394 (map { "OPENSSL_SYS_".$_ => 0 } @known_ossl_platforms),
Richard Levittecf1b7d92001-02-19 16:06:34 +0000395 (map { "OPENSSL_NO_".$_ => 0 } @known_algorithms),
Matt Caswell07c4c142014-12-17 13:17:26 +0000396 (map { "OPENSSL_USE_".$_ => 0 } @known_algorithms),
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000397 NOPROTO => 0,
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000398 PERL5 => 0,
399 _WINDLL => 0,
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000400 CONST_STRICT => 0,
401 TRUE => 1,
402 );
Richard Levitte948d0122000-09-07 08:43:08 +0000403 my $symhacking = $file eq $symhacksfile;
Richard Levitte267a1922001-02-19 13:33:04 +0000404 my @current_platforms = ();
405 my @current_algorithms = ();
406
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000407 # params: symbol, alias, platforms, kind
408 # The reason to put this subroutine in a variable is that
409 # it will otherwise create it's own, unshared, version of
410 # %tag and %variant...
411 my $make_variant = sub
412 {
413 my ($s, $a, $p, $k) = @_;
414 my ($a1, $a2);
415
416 print STDERR "DEBUG: make_variant: Entered with ",$s,", ",$a,", ",(defined($p)?$p:""),", ",(defined($k)?$k:""),"\n" if $debug;
417 if (defined($p))
418 {
419 $a1 = join(",",$p,
420 grep(!/^$/,
421 map { $tag{$_} == 1 ? $_ : "" }
422 @known_platforms));
423 }
424 else
425 {
426 $a1 = join(",",
427 grep(!/^$/,
428 map { $tag{$_} == 1 ? $_ : "" }
429 @known_platforms));
430 }
431 $a2 = join(",",
432 grep(!/^$/,
433 map { $tag{"OPENSSL_SYS_".$_} == 1 ? $_ : "" }
434 @known_ossl_platforms));
435 print STDERR "DEBUG: make_variant: a1 = $a1; a2 = $a2\n" if $debug;
436 if ($a1 eq "") { $a1 = $a2; }
437 elsif ($a1 ne "" && $a2 ne "") { $a1 .= ",".$a2; }
438 if ($a eq $s)
439 {
440 if (!defined($variant_cnt{$s}))
441 {
442 $variant_cnt{$s} = 0;
443 }
444 $variant_cnt{$s}++;
445 $a .= "{$variant_cnt{$s}}";
446 }
Richard Levittec454dbc2001-03-02 12:14:54 +0000447 my $toadd = $a.":".$a1.(defined($k)?":".$k:"");
448 my $togrep = $s.'(\{[0-9]+\})?:'.$a1.(defined($k)?":".$k:"");
449 if (!grep(/^$togrep$/,
450 split(/;/, defined($variant{$s})?$variant{$s}:""))) {
451 if (defined($variant{$s})) { $variant{$s} .= ";"; }
452 $variant{$s} .= $toadd;
453 }
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000454 print STDERR "DEBUG: make_variant: Exit with variant of ",$s," = ",$variant{$s},"\n" if $debug;
455 };
456
457 print STDERR "DEBUG: parsing ----------\n" if $debug;
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000458 while(<IN>) {
Matt Caswell07c4c142014-12-17 13:17:26 +0000459 if($parens > 0) {
Dr. Stephen Henson7a556fb2016-01-09 13:40:02 +0000460 #Inside a DEPRECATEDIN
Richard Levittefa327fa2015-03-24 15:02:51 +0100461 $stored_multiline .= $_;
Richard Levitte9ba96fb2016-02-11 21:47:30 +0100462 $stored_multiline =~ s|\R$||; # Better chomp
Dr. Stephen Henson7a556fb2016-01-09 13:40:02 +0000463 print STDERR "DEBUG: Continuing multiline DEPRECATEDIN: $stored_multiline\n" if $debug;
Richard Levittefa327fa2015-03-24 15:02:51 +0100464 $parens = count_parens($stored_multiline);
465 if ($parens == 0) {
Dr. Stephen Henson7a556fb2016-01-09 13:40:02 +0000466 $def .= do_deprecated($stored_multiline,
467 \@current_platforms,
468 \@current_algorithms);
Richard Levittefa327fa2015-03-24 15:02:51 +0100469 }
Matt Caswell07c4c142014-12-17 13:17:26 +0000470 next;
471 }
Dr. Stephen Henson40e950a2005-04-19 18:57:17 +0000472 if (/\/\* Error codes for the \w+ functions\. \*\//)
473 {
474 undef @tag;
475 last;
476 }
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000477 if ($line ne '') {
478 $_ = $line . $_;
479 $line = '';
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000480 }
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000481
482 if (/\\$/) {
Richard Levitte9ba96fb2016-02-11 21:47:30 +0100483 $line = $`; # keep what was before the backslash
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000484 next;
485 }
486
Andy Polyakov68e57532006-01-02 12:13:07 +0000487 if(/\/\*/) {
488 if (not /\*\//) { # multiline comment...
489 $line = $_; # ... just accumulate
490 next;
491 } else {
492 s/\/\*.*?\*\///gs;# wipe it
493 }
494 }
495
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000496 if ($cpp) {
Andy Polyakov68e57532006-01-02 12:13:07 +0000497 $cpp++ if /^#\s*if/;
498 $cpp-- if /^#\s*endif/;
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000499 next;
Richard Levitte9ba96fb2016-02-11 21:47:30 +0100500 }
Matt Caswelld9706f12016-02-26 14:10:17 +0000501 if (/^#.*ifdef.*cplusplus/) {
502 $cpp = 1;
503 next;
504 }
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000505
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000506 s/{[^{}]*}//gs; # ignore {} blocks
Richard Levitte6cb68622002-10-24 19:09:03 +0000507 print STDERR "DEBUG: \$def=\"$def\"\n" if $debug && $def ne "";
Richard Levitted399fdf2001-02-21 14:12:03 +0000508 print STDERR "DEBUG: \$_=\"$_\"\n" if $debug;
Richard Levitte3f07fe02000-12-29 00:05:14 +0000509 if (/^\#\s*ifndef\s+(.*)/) {
Richard Levitted399fdf2001-02-21 14:12:03 +0000510 push(@tag,"-");
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000511 push(@tag,$1);
512 $tag{$1}=-1;
Richard Levitted399fdf2001-02-21 14:12:03 +0000513 print STDERR "DEBUG: $file: found tag $1 = -1\n" if $debug;
Richard Levitte3f07fe02000-12-29 00:05:14 +0000514 } elsif (/^\#\s*if\s+!defined\(([^\)]+)\)/) {
Richard Levitted399fdf2001-02-21 14:12:03 +0000515 push(@tag,"-");
516 if (/^\#\s*if\s+(!defined\(([^\)]+)\)(\s+\&\&\s+!defined\(([^\)]+)\))*)$/) {
517 my $tmp_1 = $1;
518 my $tmp_;
519 foreach $tmp_ (split '\&\&',$tmp_1) {
520 $tmp_ =~ /!defined\(([^\)]+)\)/;
521 print STDERR "DEBUG: $file: found tag $1 = -1\n" if $debug;
522 push(@tag,$1);
523 $tag{$1}=-1;
524 }
525 } else {
526 print STDERR "Warning: $file: complicated expression: $_" if $debug; # because it is O...
527 print STDERR "DEBUG: $file: found tag $1 = -1\n" if $debug;
528 push(@tag,$1);
529 $tag{$1}=-1;
530 }
Dr. Stephen Henson8aa36bc2005-02-05 17:22:14 +0000531 } elsif (/^\#\s*ifdef\s+(\S*)/) {
Richard Levitted399fdf2001-02-21 14:12:03 +0000532 push(@tag,"-");
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000533 push(@tag,$1);
534 $tag{$1}=1;
Richard Levitted399fdf2001-02-21 14:12:03 +0000535 print STDERR "DEBUG: $file: found tag $1 = 1\n" if $debug;
Richard Levitte3f07fe02000-12-29 00:05:14 +0000536 } elsif (/^\#\s*if\s+defined\(([^\)]+)\)/) {
Richard Levitted399fdf2001-02-21 14:12:03 +0000537 push(@tag,"-");
538 if (/^\#\s*if\s+(defined\(([^\)]+)\)(\s+\|\|\s+defined\(([^\)]+)\))*)$/) {
539 my $tmp_1 = $1;
540 my $tmp_;
541 foreach $tmp_ (split '\|\|',$tmp_1) {
542 $tmp_ =~ /defined\(([^\)]+)\)/;
543 print STDERR "DEBUG: $file: found tag $1 = 1\n" if $debug;
544 push(@tag,$1);
545 $tag{$1}=1;
546 }
547 } else {
548 print STDERR "Warning: $file: complicated expression: $_\n" if $debug; # because it is O...
549 print STDERR "DEBUG: $file: found tag $1 = 1\n" if $debug;
550 push(@tag,$1);
551 $tag{$1}=1;
552 }
Richard Levitte948d0122000-09-07 08:43:08 +0000553 } elsif (/^\#\s*error\s+(\w+) is disabled\./) {
Richard Levitted399fdf2001-02-21 14:12:03 +0000554 my $tag_i = $#tag;
555 while($tag[$tag_i] ne "-") {
556 if ($tag[$tag_i] eq "OPENSSL_NO_".$1) {
557 $tag{$tag[$tag_i]}=2;
558 print STDERR "DEBUG: $file: chaged tag $1 = 2\n" if $debug;
559 }
560 $tag_i--;
Richard Levitte948d0122000-09-07 08:43:08 +0000561 }
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000562 } elsif (/^\#\s*endif/) {
Richard Levitted399fdf2001-02-21 14:12:03 +0000563 my $tag_i = $#tag;
Dr. Stephen Henson665560e2004-05-19 17:03:59 +0000564 while($tag_i > 0 && $tag[$tag_i] ne "-") {
Richard Levitted399fdf2001-02-21 14:12:03 +0000565 my $t=$tag[$tag_i];
566 print STDERR "DEBUG: \$t=\"$t\"\n" if $debug;
567 if ($tag{$t}==2) {
568 $tag{$t}=-1;
569 } else {
570 $tag{$t}=0;
571 }
572 print STDERR "DEBUG: $file: changed tag ",$t," = ",$tag{$t},"\n" if $debug;
573 pop(@tag);
574 if ($t =~ /^OPENSSL_NO_([A-Z0-9_]+)$/) {
575 $t=$1;
Matt Caswell07c4c142014-12-17 13:17:26 +0000576 } elsif($t =~ /^OPENSSL_USE_([A-Z0-9_]+)$/) {
577 $t=$1;
Richard Levitted399fdf2001-02-21 14:12:03 +0000578 } else {
579 $t="";
580 }
581 if ($t ne ""
582 && !grep(/^$t$/, @known_algorithms)) {
583 $unknown_algorithms{$t} = 1;
584 #print STDERR "DEBUG: Added as unknown algorithm: $t\n" if $debug;
585 }
586 $tag_i--;
Richard Levitte948d0122000-09-07 08:43:08 +0000587 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000588 pop(@tag);
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000589 } elsif (/^\#\s*else/) {
Richard Levitted399fdf2001-02-21 14:12:03 +0000590 my $tag_i = $#tag;
Matt Caswelld9706f12016-02-26 14:10:17 +0000591 die "$file unmatched else\n" if $tag_i < 0;
Richard Levitted399fdf2001-02-21 14:12:03 +0000592 while($tag[$tag_i] ne "-") {
593 my $t=$tag[$tag_i];
594 $tag{$t}= -$tag{$t};
595 print STDERR "DEBUG: $file: changed tag ",$t," = ",$tag{$t},"\n" if $debug;
596 $tag_i--;
597 }
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000598 } elsif (/^\#\s*if\s+1/) {
Richard Levitted399fdf2001-02-21 14:12:03 +0000599 push(@tag,"-");
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000600 # Dummy tag
601 push(@tag,"TRUE");
602 $tag{"TRUE"}=1;
Richard Levitted399fdf2001-02-21 14:12:03 +0000603 print STDERR "DEBUG: $file: found 1\n" if $debug;
Bodo Möller1e414931999-09-03 13:30:47 +0000604 } elsif (/^\#\s*if\s+0/) {
Richard Levitted399fdf2001-02-21 14:12:03 +0000605 push(@tag,"-");
Bodo Möller1e414931999-09-03 13:30:47 +0000606 # Dummy tag
607 push(@tag,"TRUE");
608 $tag{"TRUE"}=-1;
Richard Levitted399fdf2001-02-21 14:12:03 +0000609 print STDERR "DEBUG: $file: found 0\n" if $debug;
Matt Caswelld9706f12016-02-26 14:10:17 +0000610 } elsif (/^\#\s*if\s+/) {
611 #Some other unrecognized "if" style
612 push(@tag,"-");
Richard Levitte948d0122000-09-07 08:43:08 +0000613 } elsif (/^\#\s*define\s+(\w+)\s+(\w+)/
Richard Levitte2ae87d42001-02-22 13:24:17 +0000614 && $symhacking && $tag{'TRUE'} != -1) {
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000615 # This is for aliasing. When we find an alias,
616 # we have to invert
617 &$make_variant($1,$2);
618 print STDERR "DEBUG: $file: defined $1 = $2\n" if $debug;
Richard Levitte948d0122000-09-07 08:43:08 +0000619 }
620 if (/^\#/) {
Richard Levitte267a1922001-02-19 13:33:04 +0000621 @current_platforms =
622 grep(!/^$/,
Richard Levitted399fdf2001-02-21 14:12:03 +0000623 map { $tag{$_} == 1 ? $_ :
624 $tag{$_} == -1 ? "!".$_ : "" }
Richard Levitte267a1922001-02-19 13:33:04 +0000625 @known_platforms);
Richard Levitted399fdf2001-02-21 14:12:03 +0000626 push @current_platforms
627 , grep(!/^$/,
628 map { $tag{"OPENSSL_SYS_".$_} == 1 ? $_ :
629 $tag{"OPENSSL_SYS_".$_} == -1 ? "!".$_ : "" }
630 @known_ossl_platforms);
Matt Caswell07c4c142014-12-17 13:17:26 +0000631 @current_algorithms = ();
Richard Levitte267a1922001-02-19 13:33:04 +0000632 @current_algorithms =
633 grep(!/^$/,
Richard Levittecf1b7d92001-02-19 16:06:34 +0000634 map { $tag{"OPENSSL_NO_".$_} == -1 ? $_ : "" }
Richard Levitte267a1922001-02-19 13:33:04 +0000635 @known_algorithms);
Matt Caswell07c4c142014-12-17 13:17:26 +0000636 push @current_algorithms
637 , grep(!/^$/,
638 map { $tag{"OPENSSL_USE_".$_} == 1 ? $_ : "" }
639 @known_algorithms);
Richard Levitte267a1922001-02-19 13:33:04 +0000640 $def .=
641 "#INFO:"
642 .join(',',@current_platforms).":"
643 .join(',',@current_algorithms).";";
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000644 next;
645 }
Richard Levitte2ae87d42001-02-22 13:24:17 +0000646 if ($tag{'TRUE'} != -1) {
Matt Caswellb32166b2016-02-23 15:27:05 +0000647 if (/^\s*DEFINE_STACK_OF\s*\(\s*(\w*)\s*\)/
648 || /^\s*DEFINE_STACK_OF_CONST\s*\(\s*(\w*)\s*\)/) {
Richard Levitte2ae87d42001-02-22 13:24:17 +0000649 next;
650 } elsif (/^\s*DECLARE_ASN1_ENCODE_FUNCTIONS\s*\(\s*(\w*)\s*,\s*(\w*)\s*,\s*(\w*)\s*\)/) {
651 $def .= "int d2i_$3(void);";
652 $def .= "int i2d_$3(void);";
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000653 # Variant for platforms that do not
654 # have to access globale variables
655 # in shared libraries through functions
656 $def .=
657 "#INFO:"
658 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
659 .join(',',@current_algorithms).";";
Richard Levitte2ae87d42001-02-22 13:24:17 +0000660 $def .= "OPENSSL_EXTERN int $2_it;";
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000661 $def .=
662 "#INFO:"
663 .join(',',@current_platforms).":"
664 .join(',',@current_algorithms).";";
665 # Variant for platforms that have to
666 # access globale variables in shared
667 # libraries through functions
668 &$make_variant("$2_it","$2_it",
669 "EXPORT_VAR_AS_FUNCTION",
670 "FUNCTION");
Richard Levitte2ae87d42001-02-22 13:24:17 +0000671 next;
672 } elsif (/^\s*DECLARE_ASN1_FUNCTIONS_fname\s*\(\s*(\w*)\s*,\s*(\w*)\s*,\s*(\w*)\s*\)/) {
673 $def .= "int d2i_$3(void);";
674 $def .= "int i2d_$3(void);";
675 $def .= "int $3_free(void);";
676 $def .= "int $3_new(void);";
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000677 # Variant for platforms that do not
678 # have to access globale variables
679 # in shared libraries through functions
680 $def .=
681 "#INFO:"
682 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
683 .join(',',@current_algorithms).";";
Richard Levitte2ae87d42001-02-22 13:24:17 +0000684 $def .= "OPENSSL_EXTERN int $2_it;";
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000685 $def .=
686 "#INFO:"
687 .join(',',@current_platforms).":"
688 .join(',',@current_algorithms).";";
689 # Variant for platforms that have to
690 # access globale variables in shared
691 # libraries through functions
692 &$make_variant("$2_it","$2_it",
693 "EXPORT_VAR_AS_FUNCTION",
694 "FUNCTION");
695 next;
Richard Levitte2ae87d42001-02-22 13:24:17 +0000696 } elsif (/^\s*DECLARE_ASN1_FUNCTIONS\s*\(\s*(\w*)\s*\)/ ||
697 /^\s*DECLARE_ASN1_FUNCTIONS_const\s*\(\s*(\w*)\s*\)/) {
698 $def .= "int d2i_$1(void);";
699 $def .= "int i2d_$1(void);";
700 $def .= "int $1_free(void);";
701 $def .= "int $1_new(void);";
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000702 # Variant for platforms that do not
703 # have to access globale variables
704 # in shared libraries through functions
705 $def .=
706 "#INFO:"
707 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
708 .join(',',@current_algorithms).";";
Richard Levitte2ae87d42001-02-22 13:24:17 +0000709 $def .= "OPENSSL_EXTERN int $1_it;";
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000710 $def .=
711 "#INFO:"
712 .join(',',@current_platforms).":"
713 .join(',',@current_algorithms).";";
714 # Variant for platforms that have to
715 # access globale variables in shared
716 # libraries through functions
717 &$make_variant("$1_it","$1_it",
718 "EXPORT_VAR_AS_FUNCTION",
719 "FUNCTION");
Richard Levitte2ae87d42001-02-22 13:24:17 +0000720 next;
721 } elsif (/^\s*DECLARE_ASN1_ENCODE_FUNCTIONS_const\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
722 $def .= "int d2i_$2(void);";
723 $def .= "int i2d_$2(void);";
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000724 # Variant for platforms that do not
725 # have to access globale variables
726 # in shared libraries through functions
727 $def .=
728 "#INFO:"
729 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
730 .join(',',@current_algorithms).";";
Richard Levitte2ae87d42001-02-22 13:24:17 +0000731 $def .= "OPENSSL_EXTERN int $2_it;";
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000732 $def .=
733 "#INFO:"
734 .join(',',@current_platforms).":"
735 .join(',',@current_algorithms).";";
736 # Variant for platforms that have to
737 # access globale variables in shared
738 # libraries through functions
739 &$make_variant("$2_it","$2_it",
740 "EXPORT_VAR_AS_FUNCTION",
741 "FUNCTION");
Richard Levitte2ae87d42001-02-22 13:24:17 +0000742 next;
Dr. Stephen Hensonea3675b2003-03-20 17:58:33 +0000743 } elsif (/^\s*DECLARE_ASN1_ALLOC_FUNCTIONS\s*\(\s*(\w*)\s*\)/) {
744 $def .= "int $1_free(void);";
745 $def .= "int $1_new(void);";
746 next;
Richard Levitte2ae87d42001-02-22 13:24:17 +0000747 } elsif (/^\s*DECLARE_ASN1_FUNCTIONS_name\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
748 $def .= "int d2i_$2(void);";
749 $def .= "int i2d_$2(void);";
750 $def .= "int $2_free(void);";
751 $def .= "int $2_new(void);";
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000752 # Variant for platforms that do not
753 # have to access globale variables
754 # in shared libraries through functions
755 $def .=
756 "#INFO:"
757 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
758 .join(',',@current_algorithms).";";
Richard Levitte2ae87d42001-02-22 13:24:17 +0000759 $def .= "OPENSSL_EXTERN int $2_it;";
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000760 $def .=
761 "#INFO:"
762 .join(',',@current_platforms).":"
763 .join(',',@current_algorithms).";";
764 # Variant for platforms that have to
765 # access globale variables in shared
766 # libraries through functions
767 &$make_variant("$2_it","$2_it",
768 "EXPORT_VAR_AS_FUNCTION",
769 "FUNCTION");
Richard Levitte2ae87d42001-02-22 13:24:17 +0000770 next;
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000771 } elsif (/^\s*DECLARE_ASN1_ITEM\s*\(\s*(\w*)\s*\)/) {
772 # Variant for platforms that do not
773 # have to access globale variables
774 # in shared libraries through functions
775 $def .=
776 "#INFO:"
777 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
778 .join(',',@current_algorithms).";";
Richard Levitte2ae87d42001-02-22 13:24:17 +0000779 $def .= "OPENSSL_EXTERN int $1_it;";
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000780 $def .=
781 "#INFO:"
782 .join(',',@current_platforms).":"
783 .join(',',@current_algorithms).";";
784 # Variant for platforms that have to
785 # access globale variables in shared
786 # libraries through functions
787 &$make_variant("$1_it","$1_it",
788 "EXPORT_VAR_AS_FUNCTION",
789 "FUNCTION");
Richard Levitte2ae87d42001-02-22 13:24:17 +0000790 next;
Dr. Stephen Hensonf86abc22002-10-04 20:24:50 +0000791 } elsif (/^\s*DECLARE_ASN1_NDEF_FUNCTION\s*\(\s*(\w*)\s*\)/) {
Dr. Stephen Henson97ebe042002-10-05 01:38:58 +0000792 $def .= "int i2d_$1_NDEF(void);";
Richard Levitte2ae87d42001-02-22 13:24:17 +0000793 } elsif (/^\s*DECLARE_ASN1_SET_OF\s*\(\s*(\w*)\s*\)/) {
794 next;
Dr. Stephen Henson16094302005-11-06 20:33:33 +0000795 } elsif (/^\s*DECLARE_ASN1_PRINT_FUNCTION\s*\(\s*(\w*)\s*\)/) {
796 $def .= "int $1_print_ctx(void);";
797 next;
798 } elsif (/^\s*DECLARE_ASN1_PRINT_FUNCTION_name\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
799 $def .= "int $2_print_ctx(void);";
800 next;
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000801 } elsif (/^\s*DECLARE_PKCS12_STACK_OF\s*\(\s*(\w*)\s*\)/) {
802 next;
Richard Levitte2ae87d42001-02-22 13:24:17 +0000803 } elsif (/^DECLARE_PEM_rw\s*\(\s*(\w*)\s*,/ ||
Andy Polyakov47738cb2005-07-24 21:45:45 +0000804 /^DECLARE_PEM_rw_cb\s*\(\s*(\w*)\s*,/ ||
805 /^DECLARE_PEM_rw_const\s*\(\s*(\w*)\s*,/ ) {
Richard Levitte2ae87d42001-02-22 13:24:17 +0000806 $def .=
807 "#INFO:"
Rich Salz6d23cf92015-01-12 17:29:26 -0500808 .join(',',@current_platforms).":"
Richard Levitte74656a82016-08-05 10:57:47 +0200809 .join(',',"STDIO",@current_algorithms).";";
Richard Levitte2ae87d42001-02-22 13:24:17 +0000810 $def .= "int PEM_read_$1(void);";
811 $def .= "int PEM_write_$1(void);";
812 $def .=
813 "#INFO:"
814 .join(',',@current_platforms).":"
815 .join(',',@current_algorithms).";";
816 # Things that are everywhere
817 $def .= "int PEM_read_bio_$1(void);";
818 $def .= "int PEM_write_bio_$1(void);";
819 next;
820 } elsif (/^DECLARE_PEM_write\s*\(\s*(\w*)\s*,/ ||
Dr. Stephen Hensone43bfb22011-12-23 14:58:30 +0000821 /^DECLARE_PEM_write_const\s*\(\s*(\w*)\s*,/ ||
Richard Levitte2ae87d42001-02-22 13:24:17 +0000822 /^DECLARE_PEM_write_cb\s*\(\s*(\w*)\s*,/ ) {
Richard Levitte2ae87d42001-02-22 13:24:17 +0000823 $def .=
824 "#INFO:"
Rich Salz6d23cf92015-01-12 17:29:26 -0500825 .join(',',@current_platforms).":"
Richard Levitte74656a82016-08-05 10:57:47 +0200826 .join(',',"STDIO",@current_algorithms).";";
Richard Levitte2ae87d42001-02-22 13:24:17 +0000827 $def .= "int PEM_write_$1(void);";
828 $def .=
829 "#INFO:"
830 .join(',',@current_platforms).":"
831 .join(',',@current_algorithms).";";
832 # Things that are everywhere
833 $def .= "int PEM_write_bio_$1(void);";
834 next;
835 } elsif (/^DECLARE_PEM_read\s*\(\s*(\w*)\s*,/ ||
836 /^DECLARE_PEM_read_cb\s*\(\s*(\w*)\s*,/ ) {
Richard Levitte2ae87d42001-02-22 13:24:17 +0000837 $def .=
838 "#INFO:"
Rich Salz6d23cf92015-01-12 17:29:26 -0500839 .join(',',@current_platforms).":"
Richard Levitte74656a82016-08-05 10:57:47 +0200840 .join(',',"STDIO",@current_algorithms).";";
Richard Levitte2ae87d42001-02-22 13:24:17 +0000841 $def .= "int PEM_read_$1(void);";
842 $def .=
843 "#INFO:"
844 .join(',',@current_platforms).":"
Richard Levitte74656a82016-08-05 10:57:47 +0200845 .join(',',"STDIO",@current_algorithms).";";
Richard Levitte2ae87d42001-02-22 13:24:17 +0000846 # Things that are everywhere
847 $def .= "int PEM_read_bio_$1(void);";
848 next;
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000849 } elsif (/^OPENSSL_DECLARE_GLOBAL\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
850 # Variant for platforms that do not
851 # have to access globale variables
852 # in shared libraries through functions
853 $def .=
854 "#INFO:"
855 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
856 .join(',',@current_algorithms).";";
857 $def .= "OPENSSL_EXTERN int _shadow_$2;";
858 $def .=
859 "#INFO:"
860 .join(',',@current_platforms).":"
861 .join(',',@current_algorithms).";";
862 # Variant for platforms that have to
863 # access globale variables in shared
864 # libraries through functions
865 &$make_variant("_shadow_$2","_shadow_$2",
866 "EXPORT_VAR_AS_FUNCTION",
867 "FUNCTION");
Dr. Stephen Henson7a556fb2016-01-09 13:40:02 +0000868 } elsif (/^\s*DEPRECATEDIN/) {
Matt Caswell07c4c142014-12-17 13:17:26 +0000869 $parens = count_parens($_);
Richard Levittefa327fa2015-03-24 15:02:51 +0100870 if ($parens == 0) {
Dr. Stephen Henson7a556fb2016-01-09 13:40:02 +0000871 $def .= do_deprecated($_,
872 \@current_platforms,
873 \@current_algorithms);
Richard Levittefa327fa2015-03-24 15:02:51 +0100874 } else {
875 $stored_multiline = $_;
Richard Levitte9ba96fb2016-02-11 21:47:30 +0100876 $stored_multiline =~ s|\R$||;
Dr. Stephen Henson7a556fb2016-01-09 13:40:02 +0000877 print STDERR "DEBUG: Found multiline DEPRECATEDIN starting with: $stored_multiline\n" if $debug;
Richard Levittefa327fa2015-03-24 15:02:51 +0100878 next;
879 }
Richard Levitte2ae87d42001-02-22 13:24:17 +0000880 } elsif ($tag{'CONST_STRICT'} != 1) {
Richard Levitte948d0122000-09-07 08:43:08 +0000881 if (/\{|\/\*|\([^\)]*$/) {
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000882 $line = $_;
883 } else {
884 $def .= $_;
885 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000886 }
887 }
Richard Levitte2ae87d42001-02-22 13:24:17 +0000888 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000889 close(IN);
Matt Caswelld9706f12016-02-26 14:10:17 +0000890 die "$file: Unmatched tags\n" if $#tag >= 0;
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000891
Richard Levitte948d0122000-09-07 08:43:08 +0000892 my $algs;
893 my $plays;
894
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000895 print STDERR "DEBUG: postprocessing ----------\n" if $debug;
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000896 foreach (split /;/, $def) {
Richard Levitte948d0122000-09-07 08:43:08 +0000897 my $s; my $k = "FUNCTION"; my $p; my $a;
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000898 s/^[\n\s]*//g;
899 s/[\n\s]*$//g;
Richard Levitte948d0122000-09-07 08:43:08 +0000900 next if(/\#undef/);
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000901 next if(/typedef\W/);
Richard Levitte948d0122000-09-07 08:43:08 +0000902 next if(/\#define/);
Ulf Möllerc22e4b12000-05-15 19:20:10 +0000903
Andy Polyakov68e57532006-01-02 12:13:07 +0000904 # Reduce argument lists to empty ()
905 # fold round brackets recursively: (t(*v)(t),t) -> (t{}{},t) -> {}
906 while(/\(.*\)/s) {
907 s/\([^\(\)]+\)/\{\}/gs;
908 s/\(\s*\*\s*(\w+)\s*\{\}\s*\)/$1/gs; #(*f{}) -> f
909 }
910 # pretend as we didn't use curly braces: {} -> ()
911 s/\{\}/\(\)/gs;
912
913 s/STACK_OF\(\)/void/gs;
Dr. Stephen Henson174c86a2008-05-31 21:20:53 +0000914 s/LHASH_OF\(\)/void/gs;
Andy Polyakov68e57532006-01-02 12:13:07 +0000915
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000916 print STDERR "DEBUG: \$_ = \"$_\"\n" if $debug;
Richard Levitte948d0122000-09-07 08:43:08 +0000917 if (/^\#INFO:([^:]*):(.*)$/) {
918 $plats = $1;
919 $algs = $2;
Richard Levitte89eecca2001-09-26 15:06:45 +0000920 print STDERR "DEBUG: found info on platforms ($plats) and algorithms ($algs)\n" if $debug;
Richard Levitte948d0122000-09-07 08:43:08 +0000921 next;
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000922 } elsif (/^\s*OPENSSL_EXTERN\s.*?(\w+(\{[0-9]+\})?)(\[[0-9]*\])*\s*$/) {
Richard Levitte948d0122000-09-07 08:43:08 +0000923 $s = $1;
924 $k = "VARIABLE";
Richard Levitte89eecca2001-09-26 15:06:45 +0000925 print STDERR "DEBUG: found external variable $s\n" if $debug;
Andy Polyakov68e57532006-01-02 12:13:07 +0000926 } elsif (/TYPEDEF_\w+_OF/s) {
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000927 next;
Andy Polyakov68e57532006-01-02 12:13:07 +0000928 } elsif (/(\w+)\s*\(\).*/s) { # first token prior [first] () is
929 $s = $1; # a function name!
Richard Levitte89eecca2001-09-26 15:06:45 +0000930 print STDERR "DEBUG: found function $s\n" if $debug;
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000931 } elsif (/\(/ and not (/=/)) {
932 print STDERR "File $file: cannot parse: $_;\n";
Richard Levitte948d0122000-09-07 08:43:08 +0000933 next;
934 } else {
935 next;
936 }
937
938 $syms{$s} = 1;
939 $kind{$s} = $k;
940
941 $p = $plats;
942 $a = $algs;
Richard Levitte948d0122000-09-07 08:43:08 +0000943
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000944 $platform{$s} =
945 &reduce_platforms((defined($platform{$s})?$platform{$s}.',':"").$p);
Richard Levitte948d0122000-09-07 08:43:08 +0000946 $algorithm{$s} .= ','.$a;
947
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000948 if (defined($variant{$s})) {
Richard Levittec454dbc2001-03-02 12:14:54 +0000949 foreach $v (split /;/,$variant{$s}) {
950 (my $r, my $p, my $k) = split(/:/,$v);
951 my $ip = join ',',map({ /^!(.*)$/ ? $1 : "!".$_ } split /,/, $p);
952 $syms{$r} = 1;
953 if (!defined($k)) { $k = $kind{$s}; }
954 $kind{$r} = $k."(".$s.")";
955 $algorithm{$r} = $algorithm{$s};
956 $platform{$r} = &reduce_platforms($platform{$s}.",".$p.",".$p);
957 $platform{$s} = &reduce_platforms($platform{$s}.','.$ip.','.$ip);
958 print STDERR "DEBUG: \$variant{\"$s\"} = ",$v,"; \$r = $r; \$p = ",$platform{$r},"; \$a = ",$algorithm{$r},"; \$kind = ",$kind{$r},"\n" if $debug;
959 }
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000960 }
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000961 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 +0000962 }
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000963 }
964
Richard Levitte948d0122000-09-07 08:43:08 +0000965 # Prune the returned symbols
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000966
Richard Levitte948d0122000-09-07 08:43:08 +0000967 delete $syms{"bn_dump1"};
Rich Salz6d23cf92015-01-12 17:29:26 -0500968 $platform{"BIO_s_log"} .= ",!WIN32,!macintosh";
Richard Levitte948d0122000-09-07 08:43:08 +0000969
Richard Levitte2ae87d42001-02-22 13:24:17 +0000970 $platform{"PEM_read_NS_CERT_SEQ"} = "VMS";
971 $platform{"PEM_write_NS_CERT_SEQ"} = "VMS";
972 $platform{"PEM_read_P8_PRIV_KEY_INFO"} = "VMS";
973 $platform{"PEM_write_P8_PRIV_KEY_INFO"} = "VMS";
974
Richard Levitte948d0122000-09-07 08:43:08 +0000975 # Info we know about
976
Richard Levitte948d0122000-09-07 08:43:08 +0000977 push @ret, map { $_."\\".&info_string($_,"EXIST",
978 $platform{$_},
979 $kind{$_},
980 $algorithm{$_}) } keys %syms;
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000981
Richard Levitte3f07fe02000-12-29 00:05:14 +0000982 if (keys %unknown_algorithms) {
983 print STDERR "WARNING: mkdef.pl doesn't know the following algorithms:\n";
984 print STDERR "\t",join("\n\t",keys %unknown_algorithms),"\n";
985 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000986 return(@ret);
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000987}
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000988
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000989# Param: string of comma-separated platform-specs.
990sub reduce_platforms
991{
992 my ($platforms) = @_;
Richard Levitte948d0122000-09-07 08:43:08 +0000993 my $pl = defined($platforms) ? $platforms : "";
994 my %p = map { $_ => 0 } split /,/, $pl;
Richard Levitte948d0122000-09-07 08:43:08 +0000995 my $ret;
Dr. Stephen Henson12aefe71999-12-24 17:26:33 +0000996
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000997 print STDERR "DEBUG: Entered reduce_platforms with \"$platforms\"\n"
998 if $debug;
Richard Levitte948d0122000-09-07 08:43:08 +0000999 # We do this, because if there's code like the following, it really
1000 # means the function exists in all cases and should therefore be
1001 # everywhere. By increasing and decreasing, we may attain 0:
1002 #
1003 # ifndef WIN16
1004 # int foo();
1005 # else
1006 # int _fat foo();
1007 # endif
1008 foreach $platform (split /,/, $pl) {
1009 if ($platform =~ /^!(.*)$/) {
1010 $p{$1}--;
1011 } else {
1012 $p{$platform}++;
1013 }
1014 }
1015 foreach $platform (keys %p) {
1016 if ($p{$platform} == 0) { delete $p{$platform}; }
1017 }
1018
1019 delete $p{""};
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001020
Richard Levittec454dbc2001-03-02 12:14:54 +00001021 $ret = join(',',sort(map { $p{$_} < 0 ? "!".$_ : $_ } keys %p));
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001022 print STDERR "DEBUG: Exiting reduce_platforms with \"$ret\"\n"
1023 if $debug;
1024 return $ret;
1025}
1026
Rich Salzcc373a32016-01-28 14:17:19 -05001027sub info_string
1028{
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001029 (my $symbol, my $exist, my $platforms, my $kind, my $algorithms) = @_;
1030
1031 my %a = defined($algorithms) ?
1032 map { $_ => 1 } split /,/, $algorithms : ();
1033 my $k = defined($kind) ? $kind : "FUNCTION";
1034 my $ret;
1035 my $p = &reduce_platforms($platforms);
1036
Richard Levitte948d0122000-09-07 08:43:08 +00001037 delete $a{""};
1038
1039 $ret = $exist;
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001040 $ret .= ":".$p;
Richard Levitte948d0122000-09-07 08:43:08 +00001041 $ret .= ":".$k;
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001042 $ret .= ":".join(',',sort keys %a);
Richard Levitte948d0122000-09-07 08:43:08 +00001043 return $ret;
1044}
1045
Rich Salzcc373a32016-01-28 14:17:19 -05001046sub maybe_add_info
1047{
Richard Levitte948d0122000-09-07 08:43:08 +00001048 (my $name, *nums, my @symbols) = @_;
1049 my $sym;
1050 my $new_info = 0;
Richard Levitte451e60e2000-11-14 13:20:10 +00001051 my %syms=();
Richard Levitte948d0122000-09-07 08:43:08 +00001052
Richard Levitte948d0122000-09-07 08:43:08 +00001053 foreach $sym (@symbols) {
1054 (my $s, my $i) = split /\\/, $sym;
Richard Levitte948d0122000-09-07 08:43:08 +00001055 if (defined($nums{$s})) {
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001056 $i =~ s/^(.*?:.*?:\w+)(\(\w+\))?/$1/;
Matt Caswell3addf182015-12-15 13:06:26 +00001057 (my $n, my $vers, my $dummy) = split /\\/, $nums{$s};
Richard Levitte948d0122000-09-07 08:43:08 +00001058 if (!defined($dummy) || $i ne $dummy) {
Matt Caswell3addf182015-12-15 13:06:26 +00001059 $nums{$s} = $n."\\".$vers."\\".$i;
Richard Levitte948d0122000-09-07 08:43:08 +00001060 $new_info++;
Richard Levitted399fdf2001-02-21 14:12:03 +00001061 print STDERR "DEBUG: maybe_add_info for $s: \"$dummy\" => \"$i\"\n" if $debug;
Richard Levitte967f4ca2000-08-17 21:26:22 +00001062 }
Dr. Stephen Henson12aefe71999-12-24 17:26:33 +00001063 }
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001064 $syms{$s} = 1;
Richard Levitte451e60e2000-11-14 13:20:10 +00001065 }
1066
1067 my @s=sort { &parse_number($nums{$a},"n") <=> &parse_number($nums{$b},"n") } keys %nums;
1068 foreach $sym (@s) {
Matt Caswell3addf182015-12-15 13:06:26 +00001069 (my $n, my $vers, my $i) = split /\\/, $nums{$sym};
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001070 if (!defined($syms{$sym}) && $i !~ /^NOEXIST:/) {
Richard Levitte451e60e2000-11-14 13:20:10 +00001071 $new_info++;
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001072 print STDERR "DEBUG: maybe_add_info for $sym: -> undefined\n" if $debug;
Richard Levitte451e60e2000-11-14 13:20:10 +00001073 }
Richard Levitte948d0122000-09-07 08:43:08 +00001074 }
1075 if ($new_info) {
Rich Salzcc373a32016-01-28 14:17:19 -05001076 print STDERR "$name: $new_info old symbols have updated info\n";
Richard Levitte6d500712000-09-17 15:41:24 +00001077 if (!$do_rewrite) {
1078 print STDERR "You should do a rewrite to fix this.\n";
1079 }
Richard Levitte948d0122000-09-07 08:43:08 +00001080 } else {
Richard Levitte948d0122000-09-07 08:43:08 +00001081 }
1082}
1083
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001084# Param: string of comma-separated keywords, each possibly prefixed with a "!"
1085sub is_valid
1086{
1087 my ($keywords_txt,$platforms) = @_;
1088 my (@keywords) = split /,/,$keywords_txt;
Dr. Stephen Hensond3fdc272005-04-19 23:54:44 +00001089 my ($falsesum, $truesum) = (0, 1);
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001090
1091 # Param: one keyword
1092 sub recognise
1093 {
1094 my ($keyword,$platforms) = @_;
1095
1096 if ($platforms) {
1097 # platforms
1098 if ($keyword eq "VMS" && $VMS) { return 1; }
1099 if ($keyword eq "WIN32" && $W32) { return 1; }
Andy Polyakovf1f5ee12016-06-26 13:40:15 +02001100 if ($keyword eq "_WIN32" && $W32) { return 1; }
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001101 if ($keyword eq "WINNT" && $NT) { return 1; }
1102 # Special platforms:
1103 # EXPORT_VAR_AS_FUNCTION means that global variables
Richard Levitte96bc5d02017-02-28 20:00:42 +01001104 # will be represented as functions.
1105 if ($keyword eq "EXPORT_VAR_AS_FUNCTION" && $W32) {
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001106 return 1;
1107 }
Dr. Stephen Henson8931b302008-03-12 21:14:28 +00001108 if ($keyword eq "ZLIB" && $zlib) { return 1; }
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001109 return 0;
1110 } else {
1111 # algorithms
Dr. Stephen Henson2854c792016-01-07 03:19:09 +00001112 if ($disabled_algorithms{$keyword} == 1) { return 0;}
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001113
1114 # Nothing recognise as true
1115 return 1;
1116 }
1117 }
1118
1119 foreach $k (@keywords) {
1120 if ($k =~ /^!(.*)$/) {
1121 $falsesum += &recognise($1,$platforms);
1122 } else {
Dr. Stephen Hensond3fdc272005-04-19 23:54:44 +00001123 $truesum *= &recognise($k,$platforms);
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001124 }
1125 }
1126 print STDERR "DEBUG: [",$#keywords,",",$#keywords < 0,"] is_valid($keywords_txt) => (\!$falsesum) && $truesum = ",(!$falsesum) && $truesum,"\n" if $debug;
1127 return (!$falsesum) && $truesum;
1128}
1129
Richard Levitte948d0122000-09-07 08:43:08 +00001130sub print_test_file
1131{
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001132 (*OUT,my $name,*nums,my $testall,my @symbols)=@_;
Richard Levitte948d0122000-09-07 08:43:08 +00001133 my $n = 1; my @e; my @r;
1134 my $sym; my $prev = ""; my $prefSSLeay;
1135
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001136 (@e)=grep(/^SSLeay(\{[0-9]+\})?\\.*?:.*?:.*/,@symbols);
1137 (@r)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:.*/ && !/^SSLeay(\{[0-9]+\})?\\.*?:.*?:.*/,@symbols);
Richard Levitte948d0122000-09-07 08:43:08 +00001138 @symbols=((sort @e),(sort @r));
1139
1140 foreach $sym (@symbols) {
1141 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001142 my $v = 0;
1143 $v = 1 if $i=~ /^.*?:.*?:VARIABLE/;
1144 my $p = ($i =~ /^[^:]*:([^:]*):/,$1);
1145 my $a = ($i =~ /^[^:]*:[^:]*:[^:]*:([^:]*)/,$1);
1146 if (!defined($nums{$s})) {
1147 print STDERR "Warning: $s does not have a number assigned\n"
1148 if(!$do_update);
1149 } elsif (is_valid($p,1) && is_valid($a,0)) {
1150 my $s2 = ($s =~ /^(.*?)(\{[0-9]+\})?$/, $1);
1151 if ($prev eq $s2) {
1152 print OUT "\t/* The following has already appeared previously */\n";
1153 print STDERR "Warning: Symbol '",$s2,"' redefined. old=",($nums{$prev} =~ /^(.*?)\\/,$1),", new=",($nums{$s2} =~ /^(.*?)\\/,$1),"\n";
1154 }
1155 $prev = $s2; # To warn about duplicates...
1156
Matt Caswell3addf182015-12-15 13:06:26 +00001157 (my $nn, my $vers, my $ni) = split /\\/, $nums{$s2};
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001158 if ($v) {
1159 print OUT "\textern int $s2; /* type unknown */ /* $nn $ni */\n";
Richard Levitte948d0122000-09-07 08:43:08 +00001160 } else {
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001161 print OUT "\textern int $s2(); /* type unknown */ /* $nn $ni */\n";
Richard Levitte948d0122000-09-07 08:43:08 +00001162 }
1163 }
Dr. Stephen Henson12aefe71999-12-24 17:26:33 +00001164 }
1165}
1166
Rich Salzcc373a32016-01-28 14:17:19 -05001167sub get_version
1168{
Richard Levitte3fa04f02016-01-12 00:17:12 +01001169 return $config{version};
Richard Levitte0b352c52003-11-28 14:51:30 +00001170}
1171
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001172sub print_def_file
Dr. Stephen Henson47339f61999-04-26 00:23:10 +00001173{
Richard Levitte948d0122000-09-07 08:43:08 +00001174 (*OUT,my $name,*nums,my @symbols)=@_;
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001175 my $n = 1; my @e; my @r; my @v; my $prev="";
Richard Levittecd4c36a2002-07-17 13:27:43 +00001176 my $liboptions="";
Richard Levitte0b352c52003-11-28 14:51:30 +00001177 my $libname = $name;
1178 my $http_vendor = 'www.openssl.org/';
1179 my $version = get_version();
1180 my $what = "OpenSSL: implementation of Secure Socket Layer";
1181 my $description = "$what $version, $name - http://$http_vendor";
Matt Caswelle863d922015-12-14 09:22:58 +00001182 my $prevsymversion = "", $prevprevsymversion = "";
Richard Levittea3886332016-01-07 20:49:53 +01001183 # For VMS
1184 my $prevnum = 0;
Richard Levittefd40db92016-01-12 01:07:46 +01001185 my $symvtextcount = 0;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001186
Richard Levittea3886332016-01-07 20:49:53 +01001187 if ($W32)
1188 { $libname.="32"; }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001189
Rich Salz1fbab1d2016-03-17 12:53:11 -04001190 if ($W32)
Richard Levittea3886332016-01-07 20:49:53 +01001191 {
1192 print OUT <<"EOF";
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001193;
Dr. Stephen Henson9b3086f1999-01-31 17:30:18 +00001194; Definition file for the DLL version of the $name library from OpenSSL
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001195;
1196
Richard Levitte0b352c52003-11-28 14:51:30 +00001197LIBRARY $libname $liboptions
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001198
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001199EOF
1200
Matt Caswelle863d922015-12-14 09:22:58 +00001201 print "EXPORTS\n";
Richard Levittea3886332016-01-07 20:49:53 +01001202 }
1203 elsif ($VMS)
1204 {
Richard Levittea3886332016-01-07 20:49:53 +01001205 print OUT <<"EOF";
Richard Levitte855eff52016-01-11 22:33:35 +01001206CASE_SENSITIVE=YES
Richard Levittea3886332016-01-07 20:49:53 +01001207SYMBOL_VECTOR=(-
1208EOF
Richard Levittefd40db92016-01-12 01:07:46 +01001209 $symvtextcount = 16; # length of "SYMBOL_VECTOR=(-"
Richard Levittea3886332016-01-07 20:49:53 +01001210 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001211
Matt Caswelle863d922015-12-14 09:22:58 +00001212 (@r)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:FUNCTION/,@symbols);
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001213 (@v)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:VARIABLE/,@symbols);
Richard Levittea3886332016-01-07 20:49:53 +01001214 if ($VMS) {
1215 # VMS needs to have the symbols on slot number order
1216 @symbols=(map { $_->[1] }
1217 sort { $a->[0] <=> $b->[0] }
1218 map { (my $s, my $i) = $_ =~ /^(.*?)\\(.*)$/;
1219 die "Error: $s doesn't have a number assigned\n"
1220 if !defined($nums{$s});
1221 (my $n, my @rest) = split /\\/, $nums{$s};
1222 [ $n, $_ ] } (@e, @r, @v));
1223 } else {
1224 @symbols=((sort @e),(sort @r), (sort @v));
1225 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001226
Matt Caswelle863d922015-12-14 09:22:58 +00001227 my ($baseversion, $currversion) = get_openssl_version();
1228 my $thisversion;
1229 do {
1230 if (!defined($thisversion)) {
1231 $thisversion = $baseversion;
Dr. Stephen Henson47339f61999-04-26 00:23:10 +00001232 } else {
Matt Caswelle863d922015-12-14 09:22:58 +00001233 $thisversion = get_next_version($thisversion);
1234 }
1235 foreach $sym (@symbols) {
1236 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
1237 my $v = 0;
1238 $v = 1 if $i =~ /^.*?:.*?:VARIABLE/;
1239 if (!defined($nums{$s})) {
1240 die "Error: $s does not have a number assigned\n"
1241 if(!$do_update);
1242 } else {
1243 (my $n, my $symversion, my $dummy) = split /\\/, $nums{$s};
1244 next if $symversion ne $thisversion;
1245 my %pf = ();
1246 my $p = ($i =~ /^[^:]*:([^:]*):/,$1);
1247 my $a = ($i =~ /^[^:]*:[^:]*:[^:]*:([^:]*)/,$1);
1248 if (is_valid($p,1) && is_valid($a,0)) {
1249 my $s2 = ($s =~ /^(.*?)(\{[0-9]+\})?$/, $1);
1250 if ($prev eq $s2) {
1251 print STDERR "Warning: Symbol '",$s2,
1252 "' redefined. old=",($nums{$prev} =~ /^(.*?)\\/,$1),
1253 ", new=",($nums{$s2} =~ /^(.*?)\\/,$1),"\n";
1254 }
1255 $prev = $s2; # To warn about duplicates...
1256 if($linux) {
1257 if ($symversion ne $prevsymversion) {
1258 if ($prevsymversion ne "") {
1259 if ($prevprevsymversion ne "") {
1260 print OUT "} OPENSSL_"
1261 ."$prevprevsymversion;\n\n";
1262 } else {
1263 print OUT "};\n\n";
1264 }
1265 }
1266 print OUT "OPENSSL_$symversion {\n global:\n";
1267 $prevprevsymversion = $prevsymversion;
1268 $prevsymversion = $symversion;
1269 }
1270 print OUT " $s2;\n";
Richard Levittea3886332016-01-07 20:49:53 +01001271 } elsif ($VMS) {
1272 while(++$prevnum < $n) {
Richard Levittee84193e2016-01-30 07:14:58 +01001273 my $symline=" ,SPARE -\n ,SPARE -\n";
1274 if ($symvtextcount + length($symline) - 2 > 1024) {
Richard Levittea3886332016-01-07 20:49:53 +01001275 print OUT ")\nSYMBOL_VECTOR=(-\n";
Richard Levittefd40db92016-01-12 01:07:46 +01001276 $symvtextcount = 16; # length of "SYMBOL_VECTOR=(-"
Richard Levittea3886332016-01-07 20:49:53 +01001277 }
Richard Levittee84193e2016-01-30 07:14:58 +01001278 if ($symvtextcount == 16) {
1279 # Take away first comma
1280 $symline =~ s/,//;
Richard Levittefd40db92016-01-12 01:07:46 +01001281 }
Richard Levittee84193e2016-01-30 07:14:58 +01001282 print OUT $symline;
1283 $symvtextcount += length($symline) - 2;
Richard Levittea3886332016-01-07 20:49:53 +01001284 }
1285 (my $s_uc = $s) =~ tr/a-z/A-Z/;
Richard Levitted9aad552016-01-12 03:42:56 +01001286 my $symtype=
1287 $v ? "DATA" : "PROCEDURE";
1288 my $symline=
1289 ($s_uc ne $s
Richard Levittee84193e2016-01-30 07:14:58 +01001290 ? " ,$s_uc/$s=$symtype -\n ,$s=$symtype -\n"
1291 : " ,$s=$symtype -\n ,SPARE -\n");
1292 if ($symvtextcount + length($symline) - 2 > 1024) {
Richard Levittefd40db92016-01-12 01:07:46 +01001293 print OUT ")\nSYMBOL_VECTOR=(-\n";
1294 $symvtextcount = 16; # length of "SYMBOL_VECTOR=(-"
1295 }
Richard Levittee84193e2016-01-30 07:14:58 +01001296 if ($symvtextcount == 16) {
1297 # Take away first comma
1298 $symline =~ s/,//;
Richard Levittefd40db92016-01-12 01:07:46 +01001299 }
Richard Levittee84193e2016-01-30 07:14:58 +01001300 print OUT $symline;
1301 $symvtextcount += length($symline) - 2;
Rich Salz1fbab1d2016-03-17 12:53:11 -04001302 } elsif($v) {
Andy Polyakov6d8b3dc2016-05-09 23:50:43 +02001303 printf OUT " %s%-39s DATA\n",
1304 ($W32)?"":"_",$s2;
Matt Caswelle863d922015-12-14 09:22:58 +00001305 } else {
Andy Polyakov6d8b3dc2016-05-09 23:50:43 +02001306 printf OUT " %s%s\n",
1307 ($W32)?"":"_",$s2;
Matt Caswelle863d922015-12-14 09:22:58 +00001308 }
Dr. Stephen Henson9c67ab22000-12-16 01:19:24 +00001309 }
Richard Levitte965c1772000-09-11 17:31:05 +00001310 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001311 }
Matt Caswelle863d922015-12-14 09:22:58 +00001312 } while ($thisversion ne $currversion);
1313 if ($linux) {
1314 if ($prevprevsymversion ne "") {
1315 print OUT " local: *;\n} OPENSSL_$prevprevsymversion;\n\n";
1316 } else {
1317 print OUT " local: *;\n};\n\n";
1318 }
Richard Levittea3886332016-01-07 20:49:53 +01001319 } elsif ($VMS) {
1320 print OUT ")\n";
1321 (my $libvmaj, my $libvmin, my $libvedit) =
1322 $currversion =~ /^(\d+)_(\d+)_(\d+)$/;
1323 # The reason to multiply the edit number with 100 is to make space
1324 # for the possibility that we want to encode the patch letters
1325 print OUT "GSMATCH=LEQUAL,",($libvmaj * 100 + $libvmin),",",($libvedit * 100),"\n";
1326 }
Dr. Stephen Henson47339f61999-04-26 00:23:10 +00001327 printf OUT "\n";
1328}
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001329
1330sub load_numbers
Dr. Stephen Henson47339f61999-04-26 00:23:10 +00001331{
1332 my($name)=@_;
1333 my(@a,%ret);
Matt Caswelle863d922015-12-14 09:22:58 +00001334 my $prevversion;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001335
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +00001336 $max_num = 0;
Richard Levitte948d0122000-09-07 08:43:08 +00001337 $num_noinfo = 0;
1338 $prev = "";
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001339 $prev_cnt = 0;
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +00001340
Matt Caswelle863d922015-12-14 09:22:58 +00001341 my ($baseversion, $currversion) = get_openssl_version();
1342
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001343 open(IN,"<$name") || die "unable to open $name:$!\n";
Dr. Stephen Henson47339f61999-04-26 00:23:10 +00001344 while (<IN>) {
Richard Levitte9ba96fb2016-02-11 21:47:30 +01001345 s|\R$||; # Better chomp
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001346 s/#.*$//;
1347 next if /^\s*$/;
1348 @a=split;
Richard Levitte948d0122000-09-07 08:43:08 +00001349 if (defined $ret{$a[0]}) {
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001350 # This is actually perfectly OK
1351 #print STDERR "Warning: Symbol '",$a[0],"' redefined. old=",$ret{$a[0]},", new=",$a[1],"\n";
Richard Levitte948d0122000-09-07 08:43:08 +00001352 }
1353 if ($max_num > $a[1]) {
1354 print STDERR "Warning: Number decreased from ",$max_num," to ",$a[1],"\n";
1355 }
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001356 elsif ($max_num == $a[1]) {
Richard Levitte948d0122000-09-07 08:43:08 +00001357 # This is actually perfectly OK
1358 #print STDERR "Warning: Symbol ",$a[0]," has same number as previous ",$prev,": ",$a[1],"\n";
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001359 if ($a[0] eq $prev) {
1360 $prev_cnt++;
1361 $a[0] .= "{$prev_cnt}";
1362 }
1363 }
1364 else {
1365 $prev_cnt = 0;
Richard Levitte948d0122000-09-07 08:43:08 +00001366 }
1367 if ($#a < 2) {
1368 # Existence will be proven later, in do_defs
1369 $ret{$a[0]}=$a[1];
1370 $num_noinfo++;
1371 } else {
Matt Caswelle863d922015-12-14 09:22:58 +00001372 #Sanity check the version number
1373 if (defined $prevversion) {
1374 check_version_lte($prevversion, $a[2]);
1375 }
1376 check_version_lte($a[2], $currversion);
1377 $prevversion = $a[2];
1378 $ret{$a[0]}=$a[1]."\\".$a[2]."\\".$a[3]; # \\ is a special marker
Richard Levitte948d0122000-09-07 08:43:08 +00001379 }
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +00001380 $max_num = $a[1] if $a[1] > $max_num;
Richard Levitte948d0122000-09-07 08:43:08 +00001381 $prev=$a[0];
1382 }
1383 if ($num_noinfo) {
1384 print STDERR "Warning: $num_noinfo symbols were without info.";
1385 if ($do_rewrite) {
1386 printf STDERR " The rewrite will fix this.\n";
1387 } else {
1388 printf STDERR " You should do a rewrite to fix this.\n";
1389 }
Dr. Stephen Henson47339f61999-04-26 00:23:10 +00001390 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001391 close(IN);
1392 return(%ret);
Dr. Stephen Henson47339f61999-04-26 00:23:10 +00001393}
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +00001394
Richard Levitte948d0122000-09-07 08:43:08 +00001395sub parse_number
Dr. Stephen Henson47339f61999-04-26 00:23:10 +00001396{
Richard Levitte948d0122000-09-07 08:43:08 +00001397 (my $str, my $what) = @_;
Matt Caswell3addf182015-12-15 13:06:26 +00001398 (my $n, my $v, my $i) = split(/\\/,$str);
Richard Levitte948d0122000-09-07 08:43:08 +00001399 if ($what eq "n") {
1400 return $n;
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +00001401 } else {
Richard Levitte948d0122000-09-07 08:43:08 +00001402 return $i;
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +00001403 }
Dr. Stephen Henson47339f61999-04-26 00:23:10 +00001404}
Richard Levitte948d0122000-09-07 08:43:08 +00001405
1406sub rewrite_numbers
1407{
1408 (*OUT,$name,*nums,@symbols)=@_;
1409 my $thing;
1410
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001411 my @r = grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:\w+\(\w+\)/,@symbols);
Richard Levitte948d0122000-09-07 08:43:08 +00001412 my $r; my %r; my %rsyms;
1413 foreach $r (@r) {
1414 (my $s, my $i) = split /\\/, $r;
1415 my $a = $1 if $i =~ /^.*?:.*?:\w+\((\w+)\)/;
1416 $i =~ s/^(.*?:.*?:\w+)\(\w+\)/$1/;
1417 $r{$a} = $s."\\".$i;
1418 $rsyms{$s} = 1;
1419 }
1420
Richard Levitte451e60e2000-11-14 13:20:10 +00001421 my %syms = ();
1422 foreach $_ (@symbols) {
1423 (my $n, my $i) = split /\\/;
1424 $syms{$n} = 1;
1425 }
1426
Richard Levitte89eecca2001-09-26 15:06:45 +00001427 my @s=sort {
1428 &parse_number($nums{$a},"n") <=> &parse_number($nums{$b},"n")
1429 || $a cmp $b
1430 } keys %nums;
Richard Levitte948d0122000-09-07 08:43:08 +00001431 foreach $sym (@s) {
Matt Caswell3addf182015-12-15 13:06:26 +00001432 (my $n, my $vers, my $i) = split /\\/, $nums{$sym};
Richard Levitte948d0122000-09-07 08:43:08 +00001433 next if defined($i) && $i =~ /^.*?:.*?:\w+\(\w+\)/;
1434 next if defined($rsyms{$sym});
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001435 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 +00001436 $i="NOEXIST::FUNCTION:"
1437 if !defined($i) || $i eq "" || !defined($syms{$sym});
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001438 my $s2 = $sym;
1439 $s2 =~ s/\{[0-9]+\}$//;
Matt Caswell3addf182015-12-15 13:06:26 +00001440 printf OUT "%s%-39s %d\t%s\t%s\n","",$s2,$n,$vers,$i;
Richard Levitte948d0122000-09-07 08:43:08 +00001441 if (exists $r{$sym}) {
1442 (my $s, $i) = split /\\/,$r{$sym};
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001443 my $s2 = $s;
1444 $s2 =~ s/\{[0-9]+\}$//;
Matt Caswell3addf182015-12-15 13:06:26 +00001445 printf OUT "%s%-39s %d\t%s\t%s\n","",$s2,$n,$vers,$i;
Richard Levitte948d0122000-09-07 08:43:08 +00001446 }
1447 }
1448}
1449
1450sub update_numbers
1451{
1452 (*OUT,$name,*nums,my $start_num, my @symbols)=@_;
1453 my $new_syms = 0;
Matt Caswell3addf182015-12-15 13:06:26 +00001454 my $basevers;
1455 my $vers;
1456
1457 ($basevers, $vers) = get_openssl_version();
Richard Levitte948d0122000-09-07 08:43:08 +00001458
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001459 my @r = grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:\w+\(\w+\)/,@symbols);
Richard Levitte948d0122000-09-07 08:43:08 +00001460 my $r; my %r; my %rsyms;
1461 foreach $r (@r) {
1462 (my $s, my $i) = split /\\/, $r;
1463 my $a = $1 if $i =~ /^.*?:.*?:\w+\((\w+)\)/;
1464 $i =~ s/^(.*?:.*?:\w+)\(\w+\)/$1/;
1465 $r{$a} = $s."\\".$i;
1466 $rsyms{$s} = 1;
1467 }
1468
1469 foreach $sym (@symbols) {
1470 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
1471 next if $i =~ /^.*?:.*?:\w+\(\w+\)/;
1472 next if defined($rsyms{$sym});
1473 die "ERROR: Symbol $sym had no info attached to it."
1474 if $i eq "";
1475 if (!exists $nums{$s}) {
1476 $new_syms++;
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001477 my $s2 = $s;
1478 $s2 =~ s/\{[0-9]+\}$//;
Matt Caswell3addf182015-12-15 13:06:26 +00001479 printf OUT "%s%-39s %d\t%s\t%s\n","",$s2, ++$start_num,$vers,$i;
Richard Levitte948d0122000-09-07 08:43:08 +00001480 if (exists $r{$s}) {
Richard Levitte33b1a4c2000-09-20 14:47:04 +00001481 ($s, $i) = split /\\/,$r{$s};
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001482 $s =~ s/\{[0-9]+\}$//;
Matt Caswell3addf182015-12-15 13:06:26 +00001483 printf OUT "%s%-39s %d\t%s\t%s\n","",$s, $start_num,$vers,$i;
Richard Levitte948d0122000-09-07 08:43:08 +00001484 }
1485 }
1486 }
1487 if($new_syms) {
Rich Salzcc373a32016-01-28 14:17:19 -05001488 print STDERR "$name: Added $new_syms new symbols\n";
Richard Levitte948d0122000-09-07 08:43:08 +00001489 } else {
Rich Salzcc373a32016-01-28 14:17:19 -05001490 print STDERR "$name: No new symbols added\n";
Richard Levitte948d0122000-09-07 08:43:08 +00001491 }
1492}
1493
1494sub check_existing
1495{
1496 (*nums, my @symbols)=@_;
1497 my %existing; my @remaining;
1498 @remaining=();
1499 foreach $sym (@symbols) {
1500 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
1501 $existing{$s}=1;
1502 }
1503 foreach $sym (keys %nums) {
1504 if (!exists $existing{$sym}) {
1505 push @remaining, $sym;
1506 }
1507 }
1508 if(@remaining) {
1509 print STDERR "The following symbols do not seem to exist:\n";
1510 foreach $sym (@remaining) {
1511 print STDERR "\t",$sym,"\n";
1512 }
1513 }
1514}
1515
Matt Caswell07c4c142014-12-17 13:17:26 +00001516sub count_parens
1517{
1518 my $line = shift(@_);
1519
1520 my $open = $line =~ tr/\(//;
1521 my $close = $line =~ tr/\)//;
1522
1523 return $open - $close;
1524}
1525
Matt Caswelle863d922015-12-14 09:22:58 +00001526#Parse opensslv.h to get the current version number. Also work out the base
1527#version, i.e. the lowest version number that is binary compatible with this
1528#version
1529sub get_openssl_version()
1530{
Richard Levitted7465912016-01-30 00:03:58 +01001531 my $fn = catfile($config{sourcedir},"include","openssl","opensslv.h");
1532 open (IN, "$fn") || die "Can't open opensslv.h";
Matt Caswelle863d922015-12-14 09:22:58 +00001533
1534 while(<IN>) {
1535 if (/OPENSSL_VERSION_TEXT\s+"OpenSSL (\d\.\d\.)(\d[a-z]*)(-| )/) {
1536 my $suffix = $2;
Richard Levitte56afc182016-01-14 20:22:36 +01001537 (my $baseversion = $1) =~ s/\./_/g;
Matt Caswelle863d922015-12-14 09:22:58 +00001538 close IN;
1539 return ($baseversion."0", $baseversion.$suffix);
1540 }
1541 }
1542 die "Can't find OpenSSL version number\n";
1543}
1544
1545#Given an OpenSSL version number, calculate the next version number. If the
1546#version number gets to a.b.czz then we go to a.b.(c+1)
1547sub get_next_version()
1548{
1549 my $thisversion = shift;
1550
1551 my ($base, $letter) = $thisversion =~ /^(\d_\d_\d)([a-z]{0,2})$/;
1552
1553 if ($letter eq "zz") {
1554 my $lastnum = substr($base, -1);
1555 return substr($base, 0, length($base)-1).(++$lastnum);
1556 }
1557 return $base.get_next_letter($letter);
1558}
1559
1560#Given the letters off the end of an OpenSSL version string, calculate what
1561#the letters for the next release would be.
1562sub get_next_letter()
1563{
1564 my $thisletter = shift;
1565 my $baseletter = "";
1566 my $endletter;
1567
1568 if ($thisletter eq "") {
1569 return "a";
1570 }
1571 if ((length $thisletter) > 1) {
1572 ($baseletter, $endletter) = $thisletter =~ /([a-z]+)([a-z])/;
1573 } else {
1574 $endletter = $thisletter;
1575 }
1576
1577 if ($endletter eq "z") {
1578 return $thisletter."a";
1579 } else {
1580 return $baseletter.(++$endletter);
1581 }
1582}
1583
1584#Check if a version is less than or equal to the current version. Its a fatal
1585#error if not. They must also only differ in letters, or the last number (i.e.
1586#the first two numbers must be the same)
1587sub check_version_lte()
1588{
1589 my ($testversion, $currversion) = @_;
1590 my $lentv;
1591 my $lencv;
1592 my $cvbase;
1593
1594 my ($cvnums) = $currversion =~ /^(\d_\d_\d)[a-z]*$/;
1595 my ($tvnums) = $testversion =~ /^(\d_\d_\d)[a-z]*$/;
1596
1597 #Die if we can't parse the version numbers or they don't look sane
1598 die "Invalid version number: $testversion and $currversion\n"
1599 if (!defined($cvnums) || !defined($tvnums)
1600 || length($cvnums) != 5
1601 || length($tvnums) != 5);
1602
1603 #If the base versions (without letters) don't match check they only differ
1604 #in the last number
1605 if ($cvnums ne $tvnums) {
1606 die "Invalid version number: $testversion "
1607 ."for current version $currversion\n"
Matt Caswell455cba52016-10-15 23:13:29 +01001608 if (substr($cvnums, 0, 4) ne substr($tvnums, 0, 4));
Matt Caswelle863d922015-12-14 09:22:58 +00001609 return;
1610 }
1611 #If we get here then the base version (i.e. the numbers) are the same - they
1612 #only differ in the letters
1613
1614 $lentv = length $testversion;
1615 $lencv = length $currversion;
1616
1617 #If the testversion has more letters than the current version then it must
1618 #be later (or malformed)
1619 if ($lentv > $lencv) {
1620 die "Invalid version number: $testversion "
1621 ."is greater than $currversion\n";
1622 }
1623
1624 #Get the last letter from the current version
1625 my ($cvletter) = $currversion =~ /([a-z])$/;
1626 if (defined $cvletter) {
1627 ($cvbase) = $currversion =~ /(\d_\d_\d[a-z]*)$cvletter$/;
1628 } else {
1629 $cvbase = $currversion;
1630 }
1631 die "Unable to parse version number $currversion" if (!defined $cvbase);
1632 my $tvbase;
1633 my ($tvletter) = $testversion =~ /([a-z])$/;
1634 if (defined $tvletter) {
1635 ($tvbase) = $testversion =~ /(\d_\d_\d[a-z]*)$tvletter$/;
1636 } else {
1637 $tvbase = $testversion;
1638 }
1639 die "Unable to parse version number $testversion" if (!defined $tvbase);
1640
1641 if ($lencv > $lentv) {
1642 #If current version has more letters than testversion then testversion
1643 #minus the final letter must be a substring of the current version
1644 die "Invalid version number $testversion "
1645 ."is greater than $currversion or is invalid\n"
1646 if (index($cvbase, $tvbase) != 0);
1647 } else {
1648 #If both versions have the same number of letters then they must be
1649 #equal up to the last letter, and the last letter in testversion must
1650 #be less than or equal to the last letter in current version.
1651 die "Invalid version number $testversion "
1652 ."is greater than $currversion\n"
1653 if (($cvbase ne $tvbase) && ($tvletter gt $cvletter));
1654 }
1655}
Dr. Stephen Henson7a556fb2016-01-09 13:40:02 +00001656
1657sub do_deprecated()
1658{
1659 my ($decl, $plats, $algs) = @_;
Viktor Dukhovnica0004e2016-01-09 17:11:18 -05001660 $decl =~ /^\s*(DEPRECATEDIN_\d+_\d+_\d+)\s*\((.*)\)\s*$/
1661 or die "Bad DEPRECTEDIN: $decl\n";
Dr. Stephen Henson7a556fb2016-01-09 13:40:02 +00001662 my $info1 .= "#INFO:";
1663 $info1 .= join(',', @{$plats}) . ":";
1664 my $info2 = $info1;
1665 $info1 .= join(',',@{$algs}, $1) . ";";
1666 $info2 .= join(',',@{$algs}) . ";";
1667 return $info1 . $2 . ";" . $info2;
1668}