Rich Salz | e0a6519 | 2016-04-19 22:10:43 -0400 | [diff] [blame] | 1 | #! /usr/bin/env perl |
Todd Short | 3f5616d | 2017-01-11 16:38:44 -0500 | [diff] [blame] | 2 | # Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved. |
Rich Salz | e0a6519 | 2016-04-19 22:10:43 -0400 | [diff] [blame] | 3 | # |
| 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. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 9 | # |
| 10 | # generate a .def file |
| 11 | # |
| 12 | # It does this by parsing the header files and looking for the |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 13 | # prototyped functions: it then prunes the output. |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 14 | # |
Richard Levitte | 6928b61 | 2016-03-03 12:42:01 +0100 | [diff] [blame] | 15 | # Intermediary files are created, call libcrypto.num and libssl.num, |
Rich Salz | 1a53f1d | 2015-02-06 10:45:29 -0500 | [diff] [blame] | 16 | # The format of these files is: |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 17 | # |
Matt Caswell | e863d92 | 2015-12-14 09:22:58 +0000 | [diff] [blame] | 18 | # routine-name nnnn vers info |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 19 | # |
Matt Caswell | e863d92 | 2015-12-14 09:22:58 +0000 | [diff] [blame] | 20 | # 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 Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 23 | # |
| 24 | # existence:platform:kind:algorithms |
| 25 | # |
| 26 | # - "existence" can be "EXIST" or "NOEXIST" depending on if the symbol is |
David Benjamin | 609b085 | 2016-10-10 12:01:24 -0400 | [diff] [blame] | 27 | # found somewhere in the source, |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 28 | # - "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 Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 31 | # symbol name variants for platforms where the names are too long for the |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 32 | # compiler or linker, or if the systems is case insensitive and there is a |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 33 | # 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änicke | 5012158 | 2002-07-10 17:34:54 +0000 | [diff] [blame] | 37 | # 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 Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 39 | # 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 Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 42 | # - "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. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 47 | |
Richard Levitte | 3fa04f0 | 2016-01-12 00:17:12 +0100 | [diff] [blame] | 48 | use lib "."; |
| 49 | use configdata; |
Richard Levitte | d746591 | 2016-01-30 00:03:58 +0100 | [diff] [blame] | 50 | use File::Spec::Functions; |
Richard Levitte | 3fa04f0 | 2016-01-12 00:17:12 +0100 | [diff] [blame] | 51 | |
Richard Levitte | d399fdf | 2001-02-21 14:12:03 +0000 | [diff] [blame] | 52 | my $debug=0; |
| 53 | |
Richard Levitte | 6928b61 | 2016-03-03 12:42:01 +0100 | [diff] [blame] | 54 | my $crypto_num= catfile($config{sourcedir},"util","libcrypto.num"); |
| 55 | my $ssl_num= catfile($config{sourcedir},"util","libssl.num"); |
Richard Levitte | cd4c36a | 2002-07-17 13:27:43 +0000 | [diff] [blame] | 56 | my $libname; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 57 | |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 58 | my $do_update = 0; |
Richard Levitte | 1449bda | 2001-05-13 04:48:07 +0000 | [diff] [blame] | 59 | my $do_rewrite = 1; |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 60 | my $do_crypto = 0; |
| 61 | my $do_ssl = 0; |
Ulf Möller | 0f583f6 | 2000-01-07 03:17:47 +0000 | [diff] [blame] | 62 | my $do_ctest = 0; |
Richard Levitte | 967f4ca | 2000-08-17 21:26:22 +0000 | [diff] [blame] | 63 | my $do_ctestall = 0; |
Dr. Stephen Henson | c47c619 | 2001-02-09 13:16:21 +0000 | [diff] [blame] | 64 | my $do_checkexist = 0; |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 65 | |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 66 | my $VMS=0; |
| 67 | my $W32=0; |
Ulf Möller | 0f583f6 | 2000-01-07 03:17:47 +0000 | [diff] [blame] | 68 | my $NT=0; |
Matt Caswell | e863d92 | 2015-12-14 09:22:58 +0000 | [diff] [blame] | 69 | my $linux=0; |
Dr. Stephen Henson | 28a9880 | 1999-04-14 23:44:41 +0000 | [diff] [blame] | 70 | # Set this to make typesafe STACK definitions appear in DEF |
Geoff Thorpe | e41c8d6 | 2000-06-01 05:13:52 +0000 | [diff] [blame] | 71 | my $safe_stack_def = 0; |
Ulf Möller | 31ff97b | 1999-05-13 10:28:14 +0000 | [diff] [blame] | 72 | |
Rich Salz | e03b298 | 2014-12-19 21:11:09 -0500 | [diff] [blame] | 73 | my @known_platforms = ( "__FreeBSD__", "PERL5", |
Andy Polyakov | f1f5ee1 | 2016-06-26 13:40:15 +0200 | [diff] [blame] | 74 | "EXPORT_VAR_AS_FUNCTION", "ZLIB", "_WIN32" |
Rich Salz | 700b4a4 | 2015-12-14 15:24:27 -0500 | [diff] [blame] | 75 | ); |
Rich Salz | 6d23cf9 | 2015-01-12 17:29:26 -0500 | [diff] [blame] | 76 | my @known_ossl_platforms = ( "VMS", "WIN32", "WINNT", "OS2" ); |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 77 | my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF", |
Richard Levitte | 3f07fe0 | 2000-12-29 00:05:14 +0000 | [diff] [blame] | 78 | "CAST", "MD2", "MD4", "MD5", "SHA", "SHA0", "SHA1", |
Rich Salz | 1f7103b | 2015-02-04 18:50:00 -0500 | [diff] [blame] | 79 | "SHA256", "SHA512", "RMD160", |
Dr. Stephen Henson | d2ad1c9 | 2015-10-27 20:18:42 +0000 | [diff] [blame] | 80 | "MDC2", "WHIRLPOOL", "RSA", "DSA", "DH", "EC", "EC2M", |
Pauli | d42d0a4 | 2017-02-01 10:10:13 +1000 | [diff] [blame] | 81 | "HMAC", "AES", "CAMELLIA", "SEED", "GOST", "ARIA", |
Bill Cox | 2d0b441 | 2016-03-09 23:08:31 +0100 | [diff] [blame] | 82 | "SCRYPT", "CHACHA", "POLY1305", "BLAKE2", |
Todd Short | 3f5616d | 2017-01-11 16:38:44 -0500 | [diff] [blame] | 83 | "SIPHASH", |
Bodo Möller | e0d6132 | 2011-10-19 08:59:53 +0000 | [diff] [blame] | 84 | # EC_NISTP_64_GCC_128 |
| 85 | "EC_NISTP_64_GCC_128", |
Richard Levitte | 3f07fe0 | 2000-12-29 00:05:14 +0000 | [diff] [blame] | 86 | # Envelope "algorithms" |
| 87 | "EVP", "X509", "ASN1_TYPEDEFS", |
| 88 | # Helper "algorithms" |
| 89 | "BIO", "COMP", "BUFFER", "LHASH", "STACK", "ERR", |
| 90 | "LOCKING", |
| 91 | # External "algorithms" |
Matt Caswell | e36827f | 2015-05-12 12:14:13 +0100 | [diff] [blame] | 92 | "FP_API", "STDIO", "SOCK", "DGRAM", |
Rich Salz | 6ac11bd | 2016-01-07 21:40:52 -0500 | [diff] [blame] | 93 | "CRYPTO_MDEBUG", |
Richard Levitte | 6cb6862 | 2002-10-24 19:09:03 +0000 | [diff] [blame] | 94 | # Engines |
David Woodhouse | 05d7bf6 | 2015-09-09 15:29:44 -0400 | [diff] [blame] | 95 | "STATIC_ENGINE", "ENGINE", "HW", "GMP", |
Benjamin Kaduk | 0423f81 | 2016-01-12 18:02:16 -0600 | [diff] [blame] | 96 | # Entropy Gathering |
| 97 | "EGD", |
Rob Percival | 0cea883 | 2016-02-25 18:11:16 +0000 | [diff] [blame] | 98 | # Certificate Transparency |
| 99 | "CT", |
David Woodhouse | 47bbaa5 | 2015-07-23 17:30:06 +0100 | [diff] [blame] | 100 | # RFC3779 |
| 101 | "RFC3779", |
Dr. Stephen Henson | c20276e | 2006-04-17 12:08:22 +0000 | [diff] [blame] | 102 | # TLS |
Richard Levitte | b612799 | 2016-11-15 14:53:33 +0100 | [diff] [blame] | 103 | "PSK", "SRP", "HEARTBEATS", |
Dr. Stephen Henson | 8931b30 | 2008-03-12 21:14:28 +0000 | [diff] [blame] | 104 | # CMS |
| 105 | "CMS", |
Rich Salz | 506e28b | 2016-04-08 08:02:41 -0400 | [diff] [blame] | 106 | "OCSP", |
Dr. Stephen Henson | d8bd55a | 2008-06-01 11:07:34 +0000 | [diff] [blame] | 107 | # CryptoAPI Engine |
| 108 | "CAPIENG", |
Kurt Roeckx | 6b51459 | 2016-03-09 22:54:16 +0100 | [diff] [blame] | 109 | # SSL methods |
| 110 | "SSL3_METHOD", "TLS1_METHOD", "TLS1_1_METHOD", "TLS1_2_METHOD", "DTLS1_METHOD", "DTLS1_2_METHOD", |
Dr. Stephen Henson | 36246be | 2011-02-12 17:38:40 +0000 | [diff] [blame] | 111 | # NEXTPROTONEG |
| 112 | "NEXTPROTONEG", |
Richard Levitte | 4ccfe5f | 2002-12-09 02:18:16 +0000 | [diff] [blame] | 113 | # Deprecated functions |
Dr. Stephen Henson | 7a556fb | 2016-01-09 13:40:02 +0000 | [diff] [blame] | 114 | "DEPRECATEDIN_0_9_8", |
| 115 | "DEPRECATEDIN_1_0_0", |
| 116 | "DEPRECATEDIN_1_1_0", |
Dr. Stephen Henson | 9ef562b | 2011-12-25 14:46:15 +0000 | [diff] [blame] | 117 | # SCTP |
Matt Caswell | 3dd814a | 2014-10-15 01:23:07 +0100 | [diff] [blame] | 118 | "SCTP", |
| 119 | # SRTP |
| 120 | "SRTP", |
Dr. Stephen Henson | 8fdb4f1 | 2012-07-01 22:12:03 +0000 | [diff] [blame] | 121 | # SSL TRACE |
Dr. Stephen Henson | e0fc796 | 2014-07-23 13:18:06 +0100 | [diff] [blame] | 122 | "SSL_TRACE", |
| 123 | # Unit testing |
Matt Caswell | dc0e9a3 | 2014-12-08 14:19:26 +0000 | [diff] [blame] | 124 | "UNIT_TEST", |
Mat | f7c4584 | 2016-03-07 22:59:13 +0100 | [diff] [blame] | 125 | # User Interface |
| 126 | "UI", |
Richard Levitte | f385263 | 2016-03-18 20:06:29 +0100 | [diff] [blame] | 127 | # |
| 128 | "TS", |
Matt Caswell | dc0e9a3 | 2014-12-08 14:19:26 +0000 | [diff] [blame] | 129 | # OCB mode |
Rich Salz | 1a53f1d | 2015-02-06 10:45:29 -0500 | [diff] [blame] | 130 | "OCB", |
Matt Caswell | b04e5c1 | 2016-04-22 11:47:57 +0100 | [diff] [blame] | 131 | "CMAC", |
Rich Salz | 1a53f1d | 2015-02-06 10:45:29 -0500 | [diff] [blame] | 132 | # APPLINK (win build feature?) |
| 133 | "APPLINK" |
| 134 | ); |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 135 | |
Dr. Stephen Henson | 2854c79 | 2016-01-07 03:19:09 +0000 | [diff] [blame] | 136 | my %disabled_algorithms; |
| 137 | |
| 138 | foreach (@known_algorithms) { |
| 139 | $disabled_algorithms{$_} = 0; |
| 140 | } |
Dr. Stephen Henson | 3af45d9 | 2016-01-10 13:33:31 +0000 | [diff] [blame] | 141 | # disabled by default |
Dr. Stephen Henson | 3af45d9 | 2016-01-10 13:33:31 +0000 | [diff] [blame] | 142 | $disabled_algorithms{"STATIC_ENGINE"} = 1; |
Dr. Stephen Henson | 2854c79 | 2016-01-07 03:19:09 +0000 | [diff] [blame] | 143 | |
Dr. Stephen Henson | 8931b30 | 2008-03-12 21:14:28 +0000 | [diff] [blame] | 144 | my $zlib; |
Dr. Stephen Henson | 987beba | 2005-04-19 13:24:44 +0000 | [diff] [blame] | 145 | |
Richard Levitte | 3fa04f0 | 2016-01-12 00:17:12 +0100 | [diff] [blame] | 146 | foreach (@ARGV, split(/ /, $config{options})) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 147 | { |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 148 | $debug=1 if $_ eq "debug"; |
Dr. Stephen Henson | 06c6849 | 1999-03-03 02:01:26 +0000 | [diff] [blame] | 149 | $W32=1 if $_ eq "32"; |
Rich Salz | 6d23cf9 | 2015-01-12 17:29:26 -0500 | [diff] [blame] | 150 | die "win16 not supported" if $_ eq "16"; |
Dr. Stephen Henson | 06c6849 | 1999-03-03 02:01:26 +0000 | [diff] [blame] | 151 | if($_ eq "NT") { |
| 152 | $W32 = 1; |
| 153 | $NT = 1; |
| 154 | } |
Matt Caswell | e863d92 | 2015-12-14 09:22:58 +0000 | [diff] [blame] | 155 | if ($_ eq "linux") { |
| 156 | $linux=1; |
| 157 | } |
Richard Levitte | 96bc5d0 | 2017-02-28 20:00:42 +0100 | [diff] [blame] | 158 | $VMS=1 if $_ eq "VMS"; |
Dr. Stephen Henson | b2cf7c6 | 2009-02-25 11:55:15 +0000 | [diff] [blame] | 159 | if ($_ eq "zlib" || $_ eq "enable-zlib" || $_ eq "zlib-dynamic" |
Dr. Stephen Henson | 8931b30 | 2008-03-12 21:14:28 +0000 | [diff] [blame] | 160 | || $_ eq "enable-zlib-dynamic") { |
| 161 | $zlib = 1; |
| 162 | } |
| 163 | |
Richard Levitte | 6928b61 | 2016-03-03 12:42:01 +0100 | [diff] [blame] | 164 | $do_ssl=1 if $_ eq "libssl"; |
Richard Levitte | cd4c36a | 2002-07-17 13:27:43 +0000 | [diff] [blame] | 165 | if ($_ eq "ssl") { |
David Benjamin | 609b085 | 2016-10-10 12:01:24 -0400 | [diff] [blame] | 166 | $do_ssl=1; |
Richard Levitte | cd4c36a | 2002-07-17 13:27:43 +0000 | [diff] [blame] | 167 | $libname=$_ |
| 168 | } |
Richard Levitte | 6928b61 | 2016-03-03 12:42:01 +0100 | [diff] [blame] | 169 | $do_crypto=1 if $_ eq "libcrypto"; |
Richard Levitte | cd4c36a | 2002-07-17 13:27:43 +0000 | [diff] [blame] | 170 | if ($_ eq "crypto") { |
| 171 | $do_crypto=1; |
| 172 | $libname=$_; |
| 173 | } |
Dr. Stephen Henson | 55a9cc6 | 1999-02-11 01:39:30 +0000 | [diff] [blame] | 174 | $do_update=1 if $_ eq "update"; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 175 | $do_rewrite=1 if $_ eq "rewrite"; |
Dr. Stephen Henson | 12aefe7 | 1999-12-24 17:26:33 +0000 | [diff] [blame] | 176 | $do_ctest=1 if $_ eq "ctest"; |
Richard Levitte | 967f4ca | 2000-08-17 21:26:22 +0000 | [diff] [blame] | 177 | $do_ctestall=1 if $_ eq "ctestall"; |
Dr. Stephen Henson | c47c619 | 2001-02-09 13:16:21 +0000 | [diff] [blame] | 178 | $do_checkexist=1 if $_ eq "exist"; |
Dr. Stephen Henson | 7a556fb | 2016-01-09 13:40:02 +0000 | [diff] [blame] | 179 | 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 Henson | 2854c79 | 2016-01-07 03:19:09 +0000 | [diff] [blame] | 196 | 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. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 201 | } |
| 202 | |
Dr. Stephen Henson | 2854c79 | 2016-01-07 03:19:09 +0000 | [diff] [blame] | 203 | } |
Dr. Stephen Henson | 12aefe7 | 1999-12-24 17:26:33 +0000 | [diff] [blame] | 204 | |
David Benjamin | 609b085 | 2016-10-10 12:01:24 -0400 | [diff] [blame] | 205 | if (!$libname) { |
Richard Levitte | cd4c36a | 2002-07-17 13:27:43 +0000 | [diff] [blame] | 206 | if ($do_ssl) { |
Richard Levitte | 6928b61 | 2016-03-03 12:42:01 +0100 | [diff] [blame] | 207 | $libname="LIBSSL"; |
Richard Levitte | cd4c36a | 2002-07-17 13:27:43 +0000 | [diff] [blame] | 208 | } |
| 209 | if ($do_crypto) { |
Richard Levitte | 6928b61 | 2016-03-03 12:42:01 +0100 | [diff] [blame] | 210 | $libname="LIBCRYPTO"; |
Richard Levitte | cd4c36a | 2002-07-17 13:27:43 +0000 | [diff] [blame] | 211 | } |
| 212 | } |
| 213 | |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 214 | # If no platform is given, assume WIN32 |
Rich Salz | 1fbab1d | 2016-03-17 12:53:11 -0400 | [diff] [blame] | 215 | if ($W32 + $VMS + $linux == 0) { |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 216 | $W32 = 1; |
| 217 | } |
Richard Levitte | a388633 | 2016-01-07 20:49:53 +0100 | [diff] [blame] | 218 | die "Please, only one platform at a time" |
Rich Salz | 1fbab1d | 2016-03-17 12:53:11 -0400 | [diff] [blame] | 219 | if ($W32 + $VMS + $linux > 1); |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 220 | |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 221 | if (!$do_ssl && !$do_crypto) |
| 222 | { |
Richard Levitte | a388633 | 2016-01-07 20:49:53 +0100 | [diff] [blame] | 223 | print STDERR "usage: $0 ( ssl | crypto ) [ 16 | 32 | NT | OS2 | linux | VMS ]\n"; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 224 | exit(1); |
| 225 | } |
| 226 | |
| 227 | %ssl_list=&load_numbers($ssl_num); |
Dr. Stephen Henson | 55a9cc6 | 1999-02-11 01:39:30 +0000 | [diff] [blame] | 228 | $max_ssl = $max_num; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 229 | %crypto_list=&load_numbers($crypto_num); |
Dr. Stephen Henson | 55a9cc6 | 1999-02-11 01:39:30 +0000 | [diff] [blame] | 230 | $max_crypto = $max_num; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 231 | |
Richard Levitte | dee502b | 2015-03-26 21:33:18 +0100 | [diff] [blame] | 232 | my $ssl="include/openssl/ssl.h"; |
Richard Levitte | dee502b | 2015-03-26 21:33:18 +0100 | [diff] [blame] | 233 | $ssl.=" include/openssl/tls1.h"; |
| 234 | $ssl.=" include/openssl/srtp.h"; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 235 | |
Richard Levitte | 65b1ff4 | 2016-02-14 19:37:10 +0100 | [diff] [blame] | 236 | # 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 Levitte | dee502b | 2015-03-26 21:33:18 +0100 | [diff] [blame] | 238 | my $crypto ="include/openssl/crypto.h"; |
Richard Levitte | 6857079 | 2015-05-14 14:54:49 +0200 | [diff] [blame] | 239 | $crypto.=" include/internal/o_dir.h"; |
| 240 | $crypto.=" include/internal/o_str.h"; |
Matt Caswell | 20c5635 | 2016-04-06 10:50:05 +0100 | [diff] [blame] | 241 | $crypto.=" include/internal/err.h"; |
Richard Levitte | dee502b | 2015-03-26 21:33:18 +0100 | [diff] [blame] | 242 | $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. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 259 | |
Richard Levitte | dee502b | 2015-03-26 21:33:18 +0100 | [diff] [blame] | 260 | $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 Levitte | dee502b | 2015-03-26 21:33:18 +0100 | [diff] [blame] | 265 | $crypto.=" include/openssl/hmac.h" ; # unless $no_hmac; |
| 266 | $crypto.=" include/openssl/cmac.h" ; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 267 | |
Richard Levitte | dee502b | 2015-03-26 21:33:18 +0100 | [diff] [blame] | 268 | $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 Salz | 921de15 | 2016-03-23 08:54:52 -0400 | [diff] [blame] | 272 | $crypto.=" include/internal/dso.h" ; # unless $no_dso; |
Richard Levitte | dee502b | 2015-03-26 21:33:18 +0100 | [diff] [blame] | 273 | $crypto.=" include/openssl/lhash.h" ; # unless $no_lhash; |
| 274 | $crypto.=" include/openssl/conf.h"; |
| 275 | $crypto.=" include/openssl/txt_db.h"; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 276 | |
Richard Levitte | dee502b | 2015-03-26 21:33:18 +0100 | [diff] [blame] | 277 | $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 Levitte | dee502b | 2015-03-26 21:33:18 +0100 | [diff] [blame] | 283 | $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 Levitte | dee502b | 2015-03-26 21:33:18 +0100 | [diff] [blame] | 294 | #$crypto.=" include/openssl/store.h"; |
Richard Levitte | dee502b | 2015-03-26 21:33:18 +0100 | [diff] [blame] | 295 | $crypto.=" include/openssl/cms.h"; |
Richard Levitte | dee502b | 2015-03-26 21:33:18 +0100 | [diff] [blame] | 296 | $crypto.=" include/openssl/srp.h"; |
| 297 | $crypto.=" include/openssl/modes.h"; |
Matt Caswell | 38148a2 | 2015-02-17 13:29:01 +0000 | [diff] [blame] | 298 | $crypto.=" include/openssl/async.h"; |
Rob Percival | 0cea883 | 2016-02-25 18:11:16 +0000 | [diff] [blame] | 299 | $crypto.=" include/openssl/ct.h"; |
Dr. Stephen Henson | 7f5f410 | 2016-03-02 21:32:30 +0000 | [diff] [blame] | 300 | $crypto.=" include/openssl/kdf.h"; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 301 | |
Richard Levitte | dee502b | 2015-03-26 21:33:18 +0100 | [diff] [blame] | 302 | my $symhacks="include/openssl/symhacks.h"; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 303 | |
Richard Levitte | 6928b61 | 2016-03-03 12:42:01 +0100 | [diff] [blame] | 304 | my @ssl_symbols = &do_defs("LIBSSL", $ssl, $symhacks); |
| 305 | my @crypto_symbols = &do_defs("LIBCRYPTO", $crypto, $symhacks); |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 306 | |
Dr. Stephen Henson | 55a9cc6 | 1999-02-11 01:39:30 +0000 | [diff] [blame] | 307 | if ($do_update) { |
| 308 | |
| 309 | if ($do_ssl == 1) { |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 310 | |
Richard Levitte | 6928b61 | 2016-03-03 12:42:01 +0100 | [diff] [blame] | 311 | &maybe_add_info("LIBSSL",*ssl_list,@ssl_symbols); |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 312 | if ($do_rewrite == 1) { |
| 313 | open(OUT, ">$ssl_num"); |
Richard Levitte | 6928b61 | 2016-03-03 12:42:01 +0100 | [diff] [blame] | 314 | &rewrite_numbers(*OUT,"LIBSSL",*ssl_list,@ssl_symbols); |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 315 | } else { |
| 316 | open(OUT, ">>$ssl_num"); |
| 317 | } |
Richard Levitte | 6928b61 | 2016-03-03 12:42:01 +0100 | [diff] [blame] | 318 | &update_numbers(*OUT,"LIBSSL",*ssl_list,$max_ssl,@ssl_symbols); |
Dr. Stephen Henson | 55a9cc6 | 1999-02-11 01:39:30 +0000 | [diff] [blame] | 319 | close OUT; |
| 320 | } |
| 321 | |
| 322 | if($do_crypto == 1) { |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 323 | |
Richard Levitte | 6928b61 | 2016-03-03 12:42:01 +0100 | [diff] [blame] | 324 | &maybe_add_info("LIBCRYPTO",*crypto_list,@crypto_symbols); |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 325 | if ($do_rewrite == 1) { |
| 326 | open(OUT, ">$crypto_num"); |
Richard Levitte | 6928b61 | 2016-03-03 12:42:01 +0100 | [diff] [blame] | 327 | &rewrite_numbers(*OUT,"LIBCRYPTO",*crypto_list,@crypto_symbols); |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 328 | } else { |
| 329 | open(OUT, ">>$crypto_num"); |
| 330 | } |
Richard Levitte | 6928b61 | 2016-03-03 12:42:01 +0100 | [diff] [blame] | 331 | &update_numbers(*OUT,"LIBCRYPTO",*crypto_list,$max_crypto,@crypto_symbols); |
Dr. Stephen Henson | 55a9cc6 | 1999-02-11 01:39:30 +0000 | [diff] [blame] | 332 | close OUT; |
David Benjamin | 609b085 | 2016-10-10 12:01:24 -0400 | [diff] [blame] | 333 | } |
Dr. Stephen Henson | 12aefe7 | 1999-12-24 17:26:33 +0000 | [diff] [blame] | 334 | |
Dr. Stephen Henson | c47c619 | 2001-02-09 13:16:21 +0000 | [diff] [blame] | 335 | } 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 Levitte | 967f4ca | 2000-08-17 21:26:22 +0000 | [diff] [blame] | 340 | } elsif ($do_ctest || $do_ctestall) { |
Dr. Stephen Henson | 12aefe7 | 1999-12-24 17:26:33 +0000 | [diff] [blame] | 341 | |
| 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 | |
| 348 | int main() |
| 349 | { |
| 350 | EOF |
Richard Levitte | 6928b61 | 2016-03-03 12:42:01 +0100 | [diff] [blame] | 351 | &print_test_file(*STDOUT,"LIBSSL",*ssl_list,$do_ctestall,@ssl_symbols) |
Dr. Stephen Henson | 12aefe7 | 1999-12-24 17:26:33 +0000 | [diff] [blame] | 352 | if $do_ssl == 1; |
| 353 | |
Richard Levitte | 6928b61 | 2016-03-03 12:42:01 +0100 | [diff] [blame] | 354 | &print_test_file(*STDOUT,"LIBCRYPTO",*crypto_list,$do_ctestall,@crypto_symbols) |
Dr. Stephen Henson | 12aefe7 | 1999-12-24 17:26:33 +0000 | [diff] [blame] | 355 | if $do_crypto == 1; |
| 356 | |
| 357 | print "}\n"; |
Dr. Stephen Henson | 55a9cc6 | 1999-02-11 01:39:30 +0000 | [diff] [blame] | 358 | |
| 359 | } else { |
Ulf Möller | 8cf6522 | 1999-05-08 10:42:06 +0000 | [diff] [blame] | 360 | |
Richard Levitte | cd4c36a | 2002-07-17 13:27:43 +0000 | [diff] [blame] | 361 | &print_def_file(*STDOUT,$libname,*ssl_list,@ssl_symbols) |
Dr. Stephen Henson | 55a9cc6 | 1999-02-11 01:39:30 +0000 | [diff] [blame] | 362 | if $do_ssl == 1; |
| 363 | |
Richard Levitte | cd4c36a | 2002-07-17 13:27:43 +0000 | [diff] [blame] | 364 | &print_def_file(*STDOUT,$libname,*crypto_list,@crypto_symbols) |
Dr. Stephen Henson | 55a9cc6 | 1999-02-11 01:39:30 +0000 | [diff] [blame] | 365 | if $do_crypto == 1; |
Ulf Möller | 8cf6522 | 1999-05-08 10:42:06 +0000 | [diff] [blame] | 366 | |
Dr. Stephen Henson | 55a9cc6 | 1999-02-11 01:39:30 +0000 | [diff] [blame] | 367 | } |
| 368 | |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 369 | |
| 370 | sub do_defs |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 371 | { |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 372 | my($name,$files,$symhacksfile)=@_; |
Ulf Möller | 0f583f6 | 2000-01-07 03:17:47 +0000 | [diff] [blame] | 373 | my $file; |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 374 | my @ret; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 375 | 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 Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 379 | 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öller | 0f583f6 | 2000-01-07 03:17:47 +0000 | [diff] [blame] | 382 | my $cpp; |
Richard Levitte | 3f07fe0 | 2000-12-29 00:05:14 +0000 | [diff] [blame] | 383 | my %unknown_algorithms = (); |
Matt Caswell | 07c4c14 | 2014-12-17 13:17:26 +0000 | [diff] [blame] | 384 | my $parens = 0; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 385 | |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 386 | foreach $file (split(/\s+/,$symhacksfile." ".$files)) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 387 | { |
Richard Levitte | d746591 | 2016-01-30 00:03:58 +0100 | [diff] [blame] | 388 | 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öller | 0f583f6 | 2000-01-07 03:17:47 +0000 | [diff] [blame] | 391 | my $line = "", my $def= ""; |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 392 | my %tag = ( |
Richard Levitte | d399fdf | 2001-02-21 14:12:03 +0000 | [diff] [blame] | 393 | (map { $_ => 0 } @known_platforms), |
| 394 | (map { "OPENSSL_SYS_".$_ => 0 } @known_ossl_platforms), |
Richard Levitte | cf1b7d9 | 2001-02-19 16:06:34 +0000 | [diff] [blame] | 395 | (map { "OPENSSL_NO_".$_ => 0 } @known_algorithms), |
Matt Caswell | 07c4c14 | 2014-12-17 13:17:26 +0000 | [diff] [blame] | 396 | (map { "OPENSSL_USE_".$_ => 0 } @known_algorithms), |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 397 | NOPROTO => 0, |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 398 | PERL5 => 0, |
| 399 | _WINDLL => 0, |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 400 | CONST_STRICT => 0, |
| 401 | TRUE => 1, |
| 402 | ); |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 403 | my $symhacking = $file eq $symhacksfile; |
Richard Levitte | 267a192 | 2001-02-19 13:33:04 +0000 | [diff] [blame] | 404 | my @current_platforms = (); |
| 405 | my @current_algorithms = (); |
| 406 | |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 407 | # 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 Levitte | c454dbc | 2001-03-02 12:14:54 +0000 | [diff] [blame] | 447 | 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 Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 454 | 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 Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 458 | while(<IN>) { |
Matt Caswell | 07c4c14 | 2014-12-17 13:17:26 +0000 | [diff] [blame] | 459 | if($parens > 0) { |
Dr. Stephen Henson | 7a556fb | 2016-01-09 13:40:02 +0000 | [diff] [blame] | 460 | #Inside a DEPRECATEDIN |
Richard Levitte | fa327fa | 2015-03-24 15:02:51 +0100 | [diff] [blame] | 461 | $stored_multiline .= $_; |
Richard Levitte | 9ba96fb | 2016-02-11 21:47:30 +0100 | [diff] [blame] | 462 | $stored_multiline =~ s|\R$||; # Better chomp |
Dr. Stephen Henson | 7a556fb | 2016-01-09 13:40:02 +0000 | [diff] [blame] | 463 | print STDERR "DEBUG: Continuing multiline DEPRECATEDIN: $stored_multiline\n" if $debug; |
Richard Levitte | fa327fa | 2015-03-24 15:02:51 +0100 | [diff] [blame] | 464 | $parens = count_parens($stored_multiline); |
| 465 | if ($parens == 0) { |
Dr. Stephen Henson | 7a556fb | 2016-01-09 13:40:02 +0000 | [diff] [blame] | 466 | $def .= do_deprecated($stored_multiline, |
| 467 | \@current_platforms, |
| 468 | \@current_algorithms); |
Richard Levitte | fa327fa | 2015-03-24 15:02:51 +0100 | [diff] [blame] | 469 | } |
Matt Caswell | 07c4c14 | 2014-12-17 13:17:26 +0000 | [diff] [blame] | 470 | next; |
| 471 | } |
Dr. Stephen Henson | 40e950a | 2005-04-19 18:57:17 +0000 | [diff] [blame] | 472 | if (/\/\* Error codes for the \w+ functions\. \*\//) |
| 473 | { |
| 474 | undef @tag; |
| 475 | last; |
| 476 | } |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 477 | if ($line ne '') { |
| 478 | $_ = $line . $_; |
| 479 | $line = ''; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 480 | } |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 481 | |
| 482 | if (/\\$/) { |
Richard Levitte | 9ba96fb | 2016-02-11 21:47:30 +0100 | [diff] [blame] | 483 | $line = $`; # keep what was before the backslash |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 484 | next; |
| 485 | } |
| 486 | |
Andy Polyakov | 68e5753 | 2006-01-02 12:13:07 +0000 | [diff] [blame] | 487 | if(/\/\*/) { |
| 488 | if (not /\*\//) { # multiline comment... |
| 489 | $line = $_; # ... just accumulate |
| 490 | next; |
| 491 | } else { |
| 492 | s/\/\*.*?\*\///gs;# wipe it |
| 493 | } |
| 494 | } |
| 495 | |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 496 | if ($cpp) { |
Andy Polyakov | 68e5753 | 2006-01-02 12:13:07 +0000 | [diff] [blame] | 497 | $cpp++ if /^#\s*if/; |
| 498 | $cpp-- if /^#\s*endif/; |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 499 | next; |
Richard Levitte | 9ba96fb | 2016-02-11 21:47:30 +0100 | [diff] [blame] | 500 | } |
Matt Caswell | d9706f1 | 2016-02-26 14:10:17 +0000 | [diff] [blame] | 501 | if (/^#.*ifdef.*cplusplus/) { |
| 502 | $cpp = 1; |
| 503 | next; |
| 504 | } |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 505 | |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 506 | s/{[^{}]*}//gs; # ignore {} blocks |
Richard Levitte | 6cb6862 | 2002-10-24 19:09:03 +0000 | [diff] [blame] | 507 | print STDERR "DEBUG: \$def=\"$def\"\n" if $debug && $def ne ""; |
Richard Levitte | d399fdf | 2001-02-21 14:12:03 +0000 | [diff] [blame] | 508 | print STDERR "DEBUG: \$_=\"$_\"\n" if $debug; |
Richard Levitte | 3f07fe0 | 2000-12-29 00:05:14 +0000 | [diff] [blame] | 509 | if (/^\#\s*ifndef\s+(.*)/) { |
Richard Levitte | d399fdf | 2001-02-21 14:12:03 +0000 | [diff] [blame] | 510 | push(@tag,"-"); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 511 | push(@tag,$1); |
| 512 | $tag{$1}=-1; |
Richard Levitte | d399fdf | 2001-02-21 14:12:03 +0000 | [diff] [blame] | 513 | print STDERR "DEBUG: $file: found tag $1 = -1\n" if $debug; |
Richard Levitte | 3f07fe0 | 2000-12-29 00:05:14 +0000 | [diff] [blame] | 514 | } elsif (/^\#\s*if\s+!defined\(([^\)]+)\)/) { |
Richard Levitte | d399fdf | 2001-02-21 14:12:03 +0000 | [diff] [blame] | 515 | 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 Henson | 8aa36bc | 2005-02-05 17:22:14 +0000 | [diff] [blame] | 531 | } elsif (/^\#\s*ifdef\s+(\S*)/) { |
Richard Levitte | d399fdf | 2001-02-21 14:12:03 +0000 | [diff] [blame] | 532 | push(@tag,"-"); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 533 | push(@tag,$1); |
| 534 | $tag{$1}=1; |
Richard Levitte | d399fdf | 2001-02-21 14:12:03 +0000 | [diff] [blame] | 535 | print STDERR "DEBUG: $file: found tag $1 = 1\n" if $debug; |
Richard Levitte | 3f07fe0 | 2000-12-29 00:05:14 +0000 | [diff] [blame] | 536 | } elsif (/^\#\s*if\s+defined\(([^\)]+)\)/) { |
Richard Levitte | d399fdf | 2001-02-21 14:12:03 +0000 | [diff] [blame] | 537 | 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 Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 553 | } elsif (/^\#\s*error\s+(\w+) is disabled\./) { |
Richard Levitte | d399fdf | 2001-02-21 14:12:03 +0000 | [diff] [blame] | 554 | 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 Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 561 | } |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 562 | } elsif (/^\#\s*endif/) { |
Richard Levitte | d399fdf | 2001-02-21 14:12:03 +0000 | [diff] [blame] | 563 | my $tag_i = $#tag; |
Dr. Stephen Henson | 665560e | 2004-05-19 17:03:59 +0000 | [diff] [blame] | 564 | while($tag_i > 0 && $tag[$tag_i] ne "-") { |
Richard Levitte | d399fdf | 2001-02-21 14:12:03 +0000 | [diff] [blame] | 565 | 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 Caswell | 07c4c14 | 2014-12-17 13:17:26 +0000 | [diff] [blame] | 576 | } elsif($t =~ /^OPENSSL_USE_([A-Z0-9_]+)$/) { |
| 577 | $t=$1; |
Richard Levitte | d399fdf | 2001-02-21 14:12:03 +0000 | [diff] [blame] | 578 | } 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 Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 587 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 588 | pop(@tag); |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 589 | } elsif (/^\#\s*else/) { |
Richard Levitte | d399fdf | 2001-02-21 14:12:03 +0000 | [diff] [blame] | 590 | my $tag_i = $#tag; |
Matt Caswell | d9706f1 | 2016-02-26 14:10:17 +0000 | [diff] [blame] | 591 | die "$file unmatched else\n" if $tag_i < 0; |
Richard Levitte | d399fdf | 2001-02-21 14:12:03 +0000 | [diff] [blame] | 592 | 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 Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 598 | } elsif (/^\#\s*if\s+1/) { |
Richard Levitte | d399fdf | 2001-02-21 14:12:03 +0000 | [diff] [blame] | 599 | push(@tag,"-"); |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 600 | # Dummy tag |
| 601 | push(@tag,"TRUE"); |
| 602 | $tag{"TRUE"}=1; |
Richard Levitte | d399fdf | 2001-02-21 14:12:03 +0000 | [diff] [blame] | 603 | print STDERR "DEBUG: $file: found 1\n" if $debug; |
Bodo Möller | 1e41493 | 1999-09-03 13:30:47 +0000 | [diff] [blame] | 604 | } elsif (/^\#\s*if\s+0/) { |
Richard Levitte | d399fdf | 2001-02-21 14:12:03 +0000 | [diff] [blame] | 605 | push(@tag,"-"); |
Bodo Möller | 1e41493 | 1999-09-03 13:30:47 +0000 | [diff] [blame] | 606 | # Dummy tag |
| 607 | push(@tag,"TRUE"); |
| 608 | $tag{"TRUE"}=-1; |
Richard Levitte | d399fdf | 2001-02-21 14:12:03 +0000 | [diff] [blame] | 609 | print STDERR "DEBUG: $file: found 0\n" if $debug; |
Matt Caswell | d9706f1 | 2016-02-26 14:10:17 +0000 | [diff] [blame] | 610 | } elsif (/^\#\s*if\s+/) { |
| 611 | #Some other unrecognized "if" style |
| 612 | push(@tag,"-"); |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 613 | } elsif (/^\#\s*define\s+(\w+)\s+(\w+)/ |
Richard Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 614 | && $symhacking && $tag{'TRUE'} != -1) { |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 615 | # 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 Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 619 | } |
| 620 | if (/^\#/) { |
Richard Levitte | 267a192 | 2001-02-19 13:33:04 +0000 | [diff] [blame] | 621 | @current_platforms = |
| 622 | grep(!/^$/, |
Richard Levitte | d399fdf | 2001-02-21 14:12:03 +0000 | [diff] [blame] | 623 | map { $tag{$_} == 1 ? $_ : |
| 624 | $tag{$_} == -1 ? "!".$_ : "" } |
Richard Levitte | 267a192 | 2001-02-19 13:33:04 +0000 | [diff] [blame] | 625 | @known_platforms); |
Richard Levitte | d399fdf | 2001-02-21 14:12:03 +0000 | [diff] [blame] | 626 | push @current_platforms |
| 627 | , grep(!/^$/, |
| 628 | map { $tag{"OPENSSL_SYS_".$_} == 1 ? $_ : |
| 629 | $tag{"OPENSSL_SYS_".$_} == -1 ? "!".$_ : "" } |
| 630 | @known_ossl_platforms); |
Matt Caswell | 07c4c14 | 2014-12-17 13:17:26 +0000 | [diff] [blame] | 631 | @current_algorithms = (); |
Richard Levitte | 267a192 | 2001-02-19 13:33:04 +0000 | [diff] [blame] | 632 | @current_algorithms = |
| 633 | grep(!/^$/, |
Richard Levitte | cf1b7d9 | 2001-02-19 16:06:34 +0000 | [diff] [blame] | 634 | map { $tag{"OPENSSL_NO_".$_} == -1 ? $_ : "" } |
Richard Levitte | 267a192 | 2001-02-19 13:33:04 +0000 | [diff] [blame] | 635 | @known_algorithms); |
Matt Caswell | 07c4c14 | 2014-12-17 13:17:26 +0000 | [diff] [blame] | 636 | push @current_algorithms |
| 637 | , grep(!/^$/, |
| 638 | map { $tag{"OPENSSL_USE_".$_} == 1 ? $_ : "" } |
| 639 | @known_algorithms); |
Richard Levitte | 267a192 | 2001-02-19 13:33:04 +0000 | [diff] [blame] | 640 | $def .= |
| 641 | "#INFO:" |
| 642 | .join(',',@current_platforms).":" |
| 643 | .join(',',@current_algorithms).";"; |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 644 | next; |
| 645 | } |
Richard Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 646 | if ($tag{'TRUE'} != -1) { |
Matt Caswell | b32166b | 2016-02-23 15:27:05 +0000 | [diff] [blame] | 647 | if (/^\s*DEFINE_STACK_OF\s*\(\s*(\w*)\s*\)/ |
| 648 | || /^\s*DEFINE_STACK_OF_CONST\s*\(\s*(\w*)\s*\)/) { |
Richard Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 649 | 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 Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 653 | # 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 Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 660 | $def .= "OPENSSL_EXTERN int $2_it;"; |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 661 | $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 Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 671 | 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 Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 677 | # 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 Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 684 | $def .= "OPENSSL_EXTERN int $2_it;"; |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 685 | $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 Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 696 | } 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 Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 702 | # 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 Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 709 | $def .= "OPENSSL_EXTERN int $1_it;"; |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 710 | $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 Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 720 | 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 Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 724 | # 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 Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 731 | $def .= "OPENSSL_EXTERN int $2_it;"; |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 732 | $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 Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 742 | next; |
Dr. Stephen Henson | ea3675b | 2003-03-20 17:58:33 +0000 | [diff] [blame] | 743 | } 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 Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 747 | } 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 Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 752 | # 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 Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 759 | $def .= "OPENSSL_EXTERN int $2_it;"; |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 760 | $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 Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 770 | next; |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 771 | } 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 Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 779 | $def .= "OPENSSL_EXTERN int $1_it;"; |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 780 | $def .= |
| 781 | "#INFO:" |
| 782 | .join(',',@current_platforms).":" |
| 783 | .join(',',@current_algorithms).";"; |
| 784 | # Variant for platforms that have to |
| 785 | # access globale variables in shared |
| 786 | # libraries through functions |
| 787 | &$make_variant("$1_it","$1_it", |
| 788 | "EXPORT_VAR_AS_FUNCTION", |
| 789 | "FUNCTION"); |
Richard Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 790 | next; |
Dr. Stephen Henson | f86abc2 | 2002-10-04 20:24:50 +0000 | [diff] [blame] | 791 | } elsif (/^\s*DECLARE_ASN1_NDEF_FUNCTION\s*\(\s*(\w*)\s*\)/) { |
Dr. Stephen Henson | 97ebe04 | 2002-10-05 01:38:58 +0000 | [diff] [blame] | 792 | $def .= "int i2d_$1_NDEF(void);"; |
Richard Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 793 | } elsif (/^\s*DECLARE_ASN1_SET_OF\s*\(\s*(\w*)\s*\)/) { |
| 794 | next; |
Dr. Stephen Henson | 1609430 | 2005-11-06 20:33:33 +0000 | [diff] [blame] | 795 | } 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 Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 801 | } elsif (/^\s*DECLARE_PKCS12_STACK_OF\s*\(\s*(\w*)\s*\)/) { |
| 802 | next; |
Richard Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 803 | } elsif (/^DECLARE_PEM_rw\s*\(\s*(\w*)\s*,/ || |
Andy Polyakov | 47738cb | 2005-07-24 21:45:45 +0000 | [diff] [blame] | 804 | /^DECLARE_PEM_rw_cb\s*\(\s*(\w*)\s*,/ || |
| 805 | /^DECLARE_PEM_rw_const\s*\(\s*(\w*)\s*,/ ) { |
Richard Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 806 | $def .= |
| 807 | "#INFO:" |
Rich Salz | 6d23cf9 | 2015-01-12 17:29:26 -0500 | [diff] [blame] | 808 | .join(',',@current_platforms).":" |
Richard Levitte | 74656a8 | 2016-08-05 10:57:47 +0200 | [diff] [blame] | 809 | .join(',',"STDIO",@current_algorithms).";"; |
Richard Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 810 | $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 Henson | e43bfb2 | 2011-12-23 14:58:30 +0000 | [diff] [blame] | 821 | /^DECLARE_PEM_write_const\s*\(\s*(\w*)\s*,/ || |
Richard Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 822 | /^DECLARE_PEM_write_cb\s*\(\s*(\w*)\s*,/ ) { |
Richard Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 823 | $def .= |
| 824 | "#INFO:" |
Rich Salz | 6d23cf9 | 2015-01-12 17:29:26 -0500 | [diff] [blame] | 825 | .join(',',@current_platforms).":" |
Richard Levitte | 74656a8 | 2016-08-05 10:57:47 +0200 | [diff] [blame] | 826 | .join(',',"STDIO",@current_algorithms).";"; |
Richard Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 827 | $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 Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 837 | $def .= |
| 838 | "#INFO:" |
Rich Salz | 6d23cf9 | 2015-01-12 17:29:26 -0500 | [diff] [blame] | 839 | .join(',',@current_platforms).":" |
Richard Levitte | 74656a8 | 2016-08-05 10:57:47 +0200 | [diff] [blame] | 840 | .join(',',"STDIO",@current_algorithms).";"; |
Richard Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 841 | $def .= "int PEM_read_$1(void);"; |
| 842 | $def .= |
| 843 | "#INFO:" |
| 844 | .join(',',@current_platforms).":" |
Richard Levitte | 74656a8 | 2016-08-05 10:57:47 +0200 | [diff] [blame] | 845 | .join(',',"STDIO",@current_algorithms).";"; |
Richard Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 846 | # Things that are everywhere |
| 847 | $def .= "int PEM_read_bio_$1(void);"; |
| 848 | next; |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 849 | } 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 Henson | 7a556fb | 2016-01-09 13:40:02 +0000 | [diff] [blame] | 868 | } elsif (/^\s*DEPRECATEDIN/) { |
Matt Caswell | 07c4c14 | 2014-12-17 13:17:26 +0000 | [diff] [blame] | 869 | $parens = count_parens($_); |
Richard Levitte | fa327fa | 2015-03-24 15:02:51 +0100 | [diff] [blame] | 870 | if ($parens == 0) { |
Dr. Stephen Henson | 7a556fb | 2016-01-09 13:40:02 +0000 | [diff] [blame] | 871 | $def .= do_deprecated($_, |
| 872 | \@current_platforms, |
| 873 | \@current_algorithms); |
Richard Levitte | fa327fa | 2015-03-24 15:02:51 +0100 | [diff] [blame] | 874 | } else { |
| 875 | $stored_multiline = $_; |
Richard Levitte | 9ba96fb | 2016-02-11 21:47:30 +0100 | [diff] [blame] | 876 | $stored_multiline =~ s|\R$||; |
Dr. Stephen Henson | 7a556fb | 2016-01-09 13:40:02 +0000 | [diff] [blame] | 877 | print STDERR "DEBUG: Found multiline DEPRECATEDIN starting with: $stored_multiline\n" if $debug; |
Richard Levitte | fa327fa | 2015-03-24 15:02:51 +0100 | [diff] [blame] | 878 | next; |
| 879 | } |
Richard Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 880 | } elsif ($tag{'CONST_STRICT'} != 1) { |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 881 | if (/\{|\/\*|\([^\)]*$/) { |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 882 | $line = $_; |
| 883 | } else { |
| 884 | $def .= $_; |
| 885 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 886 | } |
| 887 | } |
Richard Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 888 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 889 | close(IN); |
Matt Caswell | d9706f1 | 2016-02-26 14:10:17 +0000 | [diff] [blame] | 890 | die "$file: Unmatched tags\n" if $#tag >= 0; |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 891 | |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 892 | my $algs; |
| 893 | my $plays; |
| 894 | |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 895 | print STDERR "DEBUG: postprocessing ----------\n" if $debug; |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 896 | foreach (split /;/, $def) { |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 897 | my $s; my $k = "FUNCTION"; my $p; my $a; |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 898 | s/^[\n\s]*//g; |
| 899 | s/[\n\s]*$//g; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 900 | next if(/\#undef/); |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 901 | next if(/typedef\W/); |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 902 | next if(/\#define/); |
Ulf Möller | c22e4b1 | 2000-05-15 19:20:10 +0000 | [diff] [blame] | 903 | |
Andy Polyakov | 68e5753 | 2006-01-02 12:13:07 +0000 | [diff] [blame] | 904 | # 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 Henson | 174c86a | 2008-05-31 21:20:53 +0000 | [diff] [blame] | 914 | s/LHASH_OF\(\)/void/gs; |
Andy Polyakov | 68e5753 | 2006-01-02 12:13:07 +0000 | [diff] [blame] | 915 | |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 916 | print STDERR "DEBUG: \$_ = \"$_\"\n" if $debug; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 917 | if (/^\#INFO:([^:]*):(.*)$/) { |
| 918 | $plats = $1; |
| 919 | $algs = $2; |
Richard Levitte | 89eecca | 2001-09-26 15:06:45 +0000 | [diff] [blame] | 920 | print STDERR "DEBUG: found info on platforms ($plats) and algorithms ($algs)\n" if $debug; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 921 | next; |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 922 | } elsif (/^\s*OPENSSL_EXTERN\s.*?(\w+(\{[0-9]+\})?)(\[[0-9]*\])*\s*$/) { |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 923 | $s = $1; |
| 924 | $k = "VARIABLE"; |
Richard Levitte | 89eecca | 2001-09-26 15:06:45 +0000 | [diff] [blame] | 925 | print STDERR "DEBUG: found external variable $s\n" if $debug; |
Andy Polyakov | 68e5753 | 2006-01-02 12:13:07 +0000 | [diff] [blame] | 926 | } elsif (/TYPEDEF_\w+_OF/s) { |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 927 | next; |
Andy Polyakov | 68e5753 | 2006-01-02 12:13:07 +0000 | [diff] [blame] | 928 | } elsif (/(\w+)\s*\(\).*/s) { # first token prior [first] () is |
| 929 | $s = $1; # a function name! |
Richard Levitte | 89eecca | 2001-09-26 15:06:45 +0000 | [diff] [blame] | 930 | print STDERR "DEBUG: found function $s\n" if $debug; |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 931 | } elsif (/\(/ and not (/=/)) { |
| 932 | print STDERR "File $file: cannot parse: $_;\n"; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 933 | next; |
| 934 | } else { |
| 935 | next; |
| 936 | } |
| 937 | |
| 938 | $syms{$s} = 1; |
| 939 | $kind{$s} = $k; |
| 940 | |
| 941 | $p = $plats; |
| 942 | $a = $algs; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 943 | |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 944 | $platform{$s} = |
| 945 | &reduce_platforms((defined($platform{$s})?$platform{$s}.',':"").$p); |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 946 | $algorithm{$s} .= ','.$a; |
| 947 | |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 948 | if (defined($variant{$s})) { |
Richard Levitte | c454dbc | 2001-03-02 12:14:54 +0000 | [diff] [blame] | 949 | 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 Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 960 | } |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 961 | print STDERR "DEBUG: \$s = $s; \$p = ",$platform{$s},"; \$a = ",$algorithm{$s},"; \$kind = ",$kind{$s},"\n" if $debug; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 962 | } |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 963 | } |
| 964 | |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 965 | # Prune the returned symbols |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 966 | |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 967 | delete $syms{"bn_dump1"}; |
Rich Salz | 6d23cf9 | 2015-01-12 17:29:26 -0500 | [diff] [blame] | 968 | $platform{"BIO_s_log"} .= ",!WIN32,!macintosh"; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 969 | |
Richard Levitte | 2ae87d4 | 2001-02-22 13:24:17 +0000 | [diff] [blame] | 970 | $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 Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 975 | # Info we know about |
| 976 | |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 977 | push @ret, map { $_."\\".&info_string($_,"EXIST", |
| 978 | $platform{$_}, |
| 979 | $kind{$_}, |
| 980 | $algorithm{$_}) } keys %syms; |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 981 | |
Richard Levitte | 3f07fe0 | 2000-12-29 00:05:14 +0000 | [diff] [blame] | 982 | 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. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 986 | return(@ret); |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 987 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 988 | |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 989 | # Param: string of comma-separated platform-specs. |
| 990 | sub reduce_platforms |
| 991 | { |
| 992 | my ($platforms) = @_; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 993 | my $pl = defined($platforms) ? $platforms : ""; |
| 994 | my %p = map { $_ => 0 } split /,/, $pl; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 995 | my $ret; |
Dr. Stephen Henson | 12aefe7 | 1999-12-24 17:26:33 +0000 | [diff] [blame] | 996 | |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 997 | print STDERR "DEBUG: Entered reduce_platforms with \"$platforms\"\n" |
| 998 | if $debug; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 999 | # 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 Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1020 | |
Richard Levitte | c454dbc | 2001-03-02 12:14:54 +0000 | [diff] [blame] | 1021 | $ret = join(',',sort(map { $p{$_} < 0 ? "!".$_ : $_ } keys %p)); |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1022 | print STDERR "DEBUG: Exiting reduce_platforms with \"$ret\"\n" |
| 1023 | if $debug; |
| 1024 | return $ret; |
| 1025 | } |
| 1026 | |
Rich Salz | cc373a3 | 2016-01-28 14:17:19 -0500 | [diff] [blame] | 1027 | sub info_string |
| 1028 | { |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1029 | (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 Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1037 | delete $a{""}; |
| 1038 | |
| 1039 | $ret = $exist; |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1040 | $ret .= ":".$p; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1041 | $ret .= ":".$k; |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1042 | $ret .= ":".join(',',sort keys %a); |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1043 | return $ret; |
| 1044 | } |
| 1045 | |
Rich Salz | cc373a3 | 2016-01-28 14:17:19 -0500 | [diff] [blame] | 1046 | sub maybe_add_info |
| 1047 | { |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1048 | (my $name, *nums, my @symbols) = @_; |
| 1049 | my $sym; |
| 1050 | my $new_info = 0; |
Richard Levitte | 451e60e | 2000-11-14 13:20:10 +0000 | [diff] [blame] | 1051 | my %syms=(); |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1052 | |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1053 | foreach $sym (@symbols) { |
| 1054 | (my $s, my $i) = split /\\/, $sym; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1055 | if (defined($nums{$s})) { |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1056 | $i =~ s/^(.*?:.*?:\w+)(\(\w+\))?/$1/; |
Matt Caswell | 3addf18 | 2015-12-15 13:06:26 +0000 | [diff] [blame] | 1057 | (my $n, my $vers, my $dummy) = split /\\/, $nums{$s}; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1058 | if (!defined($dummy) || $i ne $dummy) { |
Matt Caswell | 3addf18 | 2015-12-15 13:06:26 +0000 | [diff] [blame] | 1059 | $nums{$s} = $n."\\".$vers."\\".$i; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1060 | $new_info++; |
Richard Levitte | d399fdf | 2001-02-21 14:12:03 +0000 | [diff] [blame] | 1061 | print STDERR "DEBUG: maybe_add_info for $s: \"$dummy\" => \"$i\"\n" if $debug; |
Richard Levitte | 967f4ca | 2000-08-17 21:26:22 +0000 | [diff] [blame] | 1062 | } |
Dr. Stephen Henson | 12aefe7 | 1999-12-24 17:26:33 +0000 | [diff] [blame] | 1063 | } |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1064 | $syms{$s} = 1; |
Richard Levitte | 451e60e | 2000-11-14 13:20:10 +0000 | [diff] [blame] | 1065 | } |
| 1066 | |
| 1067 | my @s=sort { &parse_number($nums{$a},"n") <=> &parse_number($nums{$b},"n") } keys %nums; |
| 1068 | foreach $sym (@s) { |
Matt Caswell | 3addf18 | 2015-12-15 13:06:26 +0000 | [diff] [blame] | 1069 | (my $n, my $vers, my $i) = split /\\/, $nums{$sym}; |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1070 | if (!defined($syms{$sym}) && $i !~ /^NOEXIST:/) { |
Richard Levitte | 451e60e | 2000-11-14 13:20:10 +0000 | [diff] [blame] | 1071 | $new_info++; |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1072 | print STDERR "DEBUG: maybe_add_info for $sym: -> undefined\n" if $debug; |
Richard Levitte | 451e60e | 2000-11-14 13:20:10 +0000 | [diff] [blame] | 1073 | } |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1074 | } |
| 1075 | if ($new_info) { |
Rich Salz | cc373a3 | 2016-01-28 14:17:19 -0500 | [diff] [blame] | 1076 | print STDERR "$name: $new_info old symbols have updated info\n"; |
Richard Levitte | 6d50071 | 2000-09-17 15:41:24 +0000 | [diff] [blame] | 1077 | if (!$do_rewrite) { |
| 1078 | print STDERR "You should do a rewrite to fix this.\n"; |
| 1079 | } |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1080 | } else { |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1081 | } |
| 1082 | } |
| 1083 | |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1084 | # Param: string of comma-separated keywords, each possibly prefixed with a "!" |
| 1085 | sub is_valid |
| 1086 | { |
| 1087 | my ($keywords_txt,$platforms) = @_; |
| 1088 | my (@keywords) = split /,/,$keywords_txt; |
Dr. Stephen Henson | d3fdc27 | 2005-04-19 23:54:44 +0000 | [diff] [blame] | 1089 | my ($falsesum, $truesum) = (0, 1); |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1090 | |
| 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 Polyakov | f1f5ee1 | 2016-06-26 13:40:15 +0200 | [diff] [blame] | 1100 | if ($keyword eq "_WIN32" && $W32) { return 1; } |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1101 | if ($keyword eq "WINNT" && $NT) { return 1; } |
| 1102 | # Special platforms: |
| 1103 | # EXPORT_VAR_AS_FUNCTION means that global variables |
Richard Levitte | 96bc5d0 | 2017-02-28 20:00:42 +0100 | [diff] [blame] | 1104 | # will be represented as functions. |
| 1105 | if ($keyword eq "EXPORT_VAR_AS_FUNCTION" && $W32) { |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1106 | return 1; |
| 1107 | } |
Dr. Stephen Henson | 8931b30 | 2008-03-12 21:14:28 +0000 | [diff] [blame] | 1108 | if ($keyword eq "ZLIB" && $zlib) { return 1; } |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1109 | return 0; |
| 1110 | } else { |
| 1111 | # algorithms |
Dr. Stephen Henson | 2854c79 | 2016-01-07 03:19:09 +0000 | [diff] [blame] | 1112 | if ($disabled_algorithms{$keyword} == 1) { return 0;} |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1113 | |
| 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 Henson | d3fdc27 | 2005-04-19 23:54:44 +0000 | [diff] [blame] | 1123 | $truesum *= &recognise($k,$platforms); |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1124 | } |
| 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 Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1130 | sub print_test_file |
| 1131 | { |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1132 | (*OUT,my $name,*nums,my $testall,my @symbols)=@_; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1133 | my $n = 1; my @e; my @r; |
| 1134 | my $sym; my $prev = ""; my $prefSSLeay; |
| 1135 | |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1136 | (@e)=grep(/^SSLeay(\{[0-9]+\})?\\.*?:.*?:.*/,@symbols); |
| 1137 | (@r)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:.*/ && !/^SSLeay(\{[0-9]+\})?\\.*?:.*?:.*/,@symbols); |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1138 | @symbols=((sort @e),(sort @r)); |
| 1139 | |
| 1140 | foreach $sym (@symbols) { |
| 1141 | (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/; |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1142 | 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 Caswell | 3addf18 | 2015-12-15 13:06:26 +0000 | [diff] [blame] | 1157 | (my $nn, my $vers, my $ni) = split /\\/, $nums{$s2}; |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1158 | if ($v) { |
| 1159 | print OUT "\textern int $s2; /* type unknown */ /* $nn $ni */\n"; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1160 | } else { |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1161 | print OUT "\textern int $s2(); /* type unknown */ /* $nn $ni */\n"; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1162 | } |
| 1163 | } |
Dr. Stephen Henson | 12aefe7 | 1999-12-24 17:26:33 +0000 | [diff] [blame] | 1164 | } |
| 1165 | } |
| 1166 | |
Rich Salz | cc373a3 | 2016-01-28 14:17:19 -0500 | [diff] [blame] | 1167 | sub get_version |
| 1168 | { |
Richard Levitte | 3fa04f0 | 2016-01-12 00:17:12 +0100 | [diff] [blame] | 1169 | return $config{version}; |
Richard Levitte | 0b352c5 | 2003-11-28 14:51:30 +0000 | [diff] [blame] | 1170 | } |
| 1171 | |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1172 | sub print_def_file |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 1173 | { |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1174 | (*OUT,my $name,*nums,my @symbols)=@_; |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1175 | my $n = 1; my @e; my @r; my @v; my $prev=""; |
Richard Levitte | cd4c36a | 2002-07-17 13:27:43 +0000 | [diff] [blame] | 1176 | my $liboptions=""; |
Richard Levitte | 0b352c5 | 2003-11-28 14:51:30 +0000 | [diff] [blame] | 1177 | 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 Caswell | e863d92 | 2015-12-14 09:22:58 +0000 | [diff] [blame] | 1182 | my $prevsymversion = "", $prevprevsymversion = ""; |
Richard Levitte | a388633 | 2016-01-07 20:49:53 +0100 | [diff] [blame] | 1183 | # For VMS |
| 1184 | my $prevnum = 0; |
Richard Levitte | fd40db9 | 2016-01-12 01:07:46 +0100 | [diff] [blame] | 1185 | my $symvtextcount = 0; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1186 | |
Richard Levitte | a388633 | 2016-01-07 20:49:53 +0100 | [diff] [blame] | 1187 | if ($W32) |
| 1188 | { $libname.="32"; } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1189 | |
Rich Salz | 1fbab1d | 2016-03-17 12:53:11 -0400 | [diff] [blame] | 1190 | if ($W32) |
Richard Levitte | a388633 | 2016-01-07 20:49:53 +0100 | [diff] [blame] | 1191 | { |
| 1192 | print OUT <<"EOF"; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1193 | ; |
Dr. Stephen Henson | 9b3086f | 1999-01-31 17:30:18 +0000 | [diff] [blame] | 1194 | ; Definition file for the DLL version of the $name library from OpenSSL |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1195 | ; |
| 1196 | |
Richard Levitte | 0b352c5 | 2003-11-28 14:51:30 +0000 | [diff] [blame] | 1197 | LIBRARY $libname $liboptions |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1198 | |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1199 | EOF |
| 1200 | |
Matt Caswell | e863d92 | 2015-12-14 09:22:58 +0000 | [diff] [blame] | 1201 | print "EXPORTS\n"; |
Richard Levitte | a388633 | 2016-01-07 20:49:53 +0100 | [diff] [blame] | 1202 | } |
| 1203 | elsif ($VMS) |
| 1204 | { |
Richard Levitte | a388633 | 2016-01-07 20:49:53 +0100 | [diff] [blame] | 1205 | print OUT <<"EOF"; |
Richard Levitte | 855eff5 | 2016-01-11 22:33:35 +0100 | [diff] [blame] | 1206 | CASE_SENSITIVE=YES |
Richard Levitte | a388633 | 2016-01-07 20:49:53 +0100 | [diff] [blame] | 1207 | SYMBOL_VECTOR=(- |
| 1208 | EOF |
Richard Levitte | fd40db9 | 2016-01-12 01:07:46 +0100 | [diff] [blame] | 1209 | $symvtextcount = 16; # length of "SYMBOL_VECTOR=(-" |
Richard Levitte | a388633 | 2016-01-07 20:49:53 +0100 | [diff] [blame] | 1210 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1211 | |
Matt Caswell | e863d92 | 2015-12-14 09:22:58 +0000 | [diff] [blame] | 1212 | (@r)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:FUNCTION/,@symbols); |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1213 | (@v)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:VARIABLE/,@symbols); |
Richard Levitte | a388633 | 2016-01-07 20:49:53 +0100 | [diff] [blame] | 1214 | 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. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1226 | |
Matt Caswell | e863d92 | 2015-12-14 09:22:58 +0000 | [diff] [blame] | 1227 | my ($baseversion, $currversion) = get_openssl_version(); |
| 1228 | my $thisversion; |
| 1229 | do { |
| 1230 | if (!defined($thisversion)) { |
| 1231 | $thisversion = $baseversion; |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 1232 | } else { |
Matt Caswell | e863d92 | 2015-12-14 09:22:58 +0000 | [diff] [blame] | 1233 | $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 Levitte | a388633 | 2016-01-07 20:49:53 +0100 | [diff] [blame] | 1271 | } elsif ($VMS) { |
| 1272 | while(++$prevnum < $n) { |
Richard Levitte | e84193e | 2016-01-30 07:14:58 +0100 | [diff] [blame] | 1273 | my $symline=" ,SPARE -\n ,SPARE -\n"; |
| 1274 | if ($symvtextcount + length($symline) - 2 > 1024) { |
Richard Levitte | a388633 | 2016-01-07 20:49:53 +0100 | [diff] [blame] | 1275 | print OUT ")\nSYMBOL_VECTOR=(-\n"; |
Richard Levitte | fd40db9 | 2016-01-12 01:07:46 +0100 | [diff] [blame] | 1276 | $symvtextcount = 16; # length of "SYMBOL_VECTOR=(-" |
Richard Levitte | a388633 | 2016-01-07 20:49:53 +0100 | [diff] [blame] | 1277 | } |
Richard Levitte | e84193e | 2016-01-30 07:14:58 +0100 | [diff] [blame] | 1278 | if ($symvtextcount == 16) { |
| 1279 | # Take away first comma |
| 1280 | $symline =~ s/,//; |
Richard Levitte | fd40db9 | 2016-01-12 01:07:46 +0100 | [diff] [blame] | 1281 | } |
Richard Levitte | e84193e | 2016-01-30 07:14:58 +0100 | [diff] [blame] | 1282 | print OUT $symline; |
| 1283 | $symvtextcount += length($symline) - 2; |
Richard Levitte | a388633 | 2016-01-07 20:49:53 +0100 | [diff] [blame] | 1284 | } |
| 1285 | (my $s_uc = $s) =~ tr/a-z/A-Z/; |
Richard Levitte | d9aad55 | 2016-01-12 03:42:56 +0100 | [diff] [blame] | 1286 | my $symtype= |
| 1287 | $v ? "DATA" : "PROCEDURE"; |
| 1288 | my $symline= |
| 1289 | ($s_uc ne $s |
Richard Levitte | e84193e | 2016-01-30 07:14:58 +0100 | [diff] [blame] | 1290 | ? " ,$s_uc/$s=$symtype -\n ,$s=$symtype -\n" |
| 1291 | : " ,$s=$symtype -\n ,SPARE -\n"); |
| 1292 | if ($symvtextcount + length($symline) - 2 > 1024) { |
Richard Levitte | fd40db9 | 2016-01-12 01:07:46 +0100 | [diff] [blame] | 1293 | print OUT ")\nSYMBOL_VECTOR=(-\n"; |
| 1294 | $symvtextcount = 16; # length of "SYMBOL_VECTOR=(-" |
| 1295 | } |
Richard Levitte | e84193e | 2016-01-30 07:14:58 +0100 | [diff] [blame] | 1296 | if ($symvtextcount == 16) { |
| 1297 | # Take away first comma |
| 1298 | $symline =~ s/,//; |
Richard Levitte | fd40db9 | 2016-01-12 01:07:46 +0100 | [diff] [blame] | 1299 | } |
Richard Levitte | e84193e | 2016-01-30 07:14:58 +0100 | [diff] [blame] | 1300 | print OUT $symline; |
| 1301 | $symvtextcount += length($symline) - 2; |
Rich Salz | 1fbab1d | 2016-03-17 12:53:11 -0400 | [diff] [blame] | 1302 | } elsif($v) { |
Andy Polyakov | 6d8b3dc | 2016-05-09 23:50:43 +0200 | [diff] [blame] | 1303 | printf OUT " %s%-39s DATA\n", |
| 1304 | ($W32)?"":"_",$s2; |
Matt Caswell | e863d92 | 2015-12-14 09:22:58 +0000 | [diff] [blame] | 1305 | } else { |
Andy Polyakov | 6d8b3dc | 2016-05-09 23:50:43 +0200 | [diff] [blame] | 1306 | printf OUT " %s%s\n", |
| 1307 | ($W32)?"":"_",$s2; |
Matt Caswell | e863d92 | 2015-12-14 09:22:58 +0000 | [diff] [blame] | 1308 | } |
Dr. Stephen Henson | 9c67ab2 | 2000-12-16 01:19:24 +0000 | [diff] [blame] | 1309 | } |
Richard Levitte | 965c177 | 2000-09-11 17:31:05 +0000 | [diff] [blame] | 1310 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1311 | } |
Matt Caswell | e863d92 | 2015-12-14 09:22:58 +0000 | [diff] [blame] | 1312 | } 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 Levitte | a388633 | 2016-01-07 20:49:53 +0100 | [diff] [blame] | 1319 | } 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 Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 1327 | printf OUT "\n"; |
| 1328 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1329 | |
| 1330 | sub load_numbers |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 1331 | { |
| 1332 | my($name)=@_; |
| 1333 | my(@a,%ret); |
Matt Caswell | e863d92 | 2015-12-14 09:22:58 +0000 | [diff] [blame] | 1334 | my $prevversion; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1335 | |
Dr. Stephen Henson | 55a9cc6 | 1999-02-11 01:39:30 +0000 | [diff] [blame] | 1336 | $max_num = 0; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1337 | $num_noinfo = 0; |
| 1338 | $prev = ""; |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1339 | $prev_cnt = 0; |
Dr. Stephen Henson | 55a9cc6 | 1999-02-11 01:39:30 +0000 | [diff] [blame] | 1340 | |
Matt Caswell | e863d92 | 2015-12-14 09:22:58 +0000 | [diff] [blame] | 1341 | my ($baseversion, $currversion) = get_openssl_version(); |
| 1342 | |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1343 | open(IN,"<$name") || die "unable to open $name:$!\n"; |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 1344 | while (<IN>) { |
Richard Levitte | 9ba96fb | 2016-02-11 21:47:30 +0100 | [diff] [blame] | 1345 | s|\R$||; # Better chomp |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1346 | s/#.*$//; |
| 1347 | next if /^\s*$/; |
| 1348 | @a=split; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1349 | if (defined $ret{$a[0]}) { |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1350 | # This is actually perfectly OK |
| 1351 | #print STDERR "Warning: Symbol '",$a[0],"' redefined. old=",$ret{$a[0]},", new=",$a[1],"\n"; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1352 | } |
| 1353 | if ($max_num > $a[1]) { |
| 1354 | print STDERR "Warning: Number decreased from ",$max_num," to ",$a[1],"\n"; |
| 1355 | } |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1356 | elsif ($max_num == $a[1]) { |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1357 | # This is actually perfectly OK |
| 1358 | #print STDERR "Warning: Symbol ",$a[0]," has same number as previous ",$prev,": ",$a[1],"\n"; |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1359 | if ($a[0] eq $prev) { |
| 1360 | $prev_cnt++; |
| 1361 | $a[0] .= "{$prev_cnt}"; |
| 1362 | } |
| 1363 | } |
| 1364 | else { |
| 1365 | $prev_cnt = 0; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1366 | } |
| 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 Caswell | e863d92 | 2015-12-14 09:22:58 +0000 | [diff] [blame] | 1372 | #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 Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1379 | } |
Dr. Stephen Henson | 55a9cc6 | 1999-02-11 01:39:30 +0000 | [diff] [blame] | 1380 | $max_num = $a[1] if $a[1] > $max_num; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1381 | $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 Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 1390 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1391 | close(IN); |
| 1392 | return(%ret); |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 1393 | } |
Dr. Stephen Henson | 55a9cc6 | 1999-02-11 01:39:30 +0000 | [diff] [blame] | 1394 | |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1395 | sub parse_number |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 1396 | { |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1397 | (my $str, my $what) = @_; |
Matt Caswell | 3addf18 | 2015-12-15 13:06:26 +0000 | [diff] [blame] | 1398 | (my $n, my $v, my $i) = split(/\\/,$str); |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1399 | if ($what eq "n") { |
| 1400 | return $n; |
Dr. Stephen Henson | 55a9cc6 | 1999-02-11 01:39:30 +0000 | [diff] [blame] | 1401 | } else { |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1402 | return $i; |
Dr. Stephen Henson | 55a9cc6 | 1999-02-11 01:39:30 +0000 | [diff] [blame] | 1403 | } |
Dr. Stephen Henson | 47339f6 | 1999-04-26 00:23:10 +0000 | [diff] [blame] | 1404 | } |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1405 | |
| 1406 | sub rewrite_numbers |
| 1407 | { |
| 1408 | (*OUT,$name,*nums,@symbols)=@_; |
| 1409 | my $thing; |
| 1410 | |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1411 | my @r = grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:\w+\(\w+\)/,@symbols); |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1412 | 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 Levitte | 451e60e | 2000-11-14 13:20:10 +0000 | [diff] [blame] | 1421 | my %syms = (); |
| 1422 | foreach $_ (@symbols) { |
| 1423 | (my $n, my $i) = split /\\/; |
| 1424 | $syms{$n} = 1; |
| 1425 | } |
| 1426 | |
Richard Levitte | 89eecca | 2001-09-26 15:06:45 +0000 | [diff] [blame] | 1427 | my @s=sort { |
| 1428 | &parse_number($nums{$a},"n") <=> &parse_number($nums{$b},"n") |
| 1429 | || $a cmp $b |
| 1430 | } keys %nums; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1431 | foreach $sym (@s) { |
Matt Caswell | 3addf18 | 2015-12-15 13:06:26 +0000 | [diff] [blame] | 1432 | (my $n, my $vers, my $i) = split /\\/, $nums{$sym}; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1433 | next if defined($i) && $i =~ /^.*?:.*?:\w+\(\w+\)/; |
| 1434 | next if defined($rsyms{$sym}); |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1435 | print STDERR "DEBUG: rewrite_numbers for sym = ",$sym,": i = ",$i,", n = ",$n,", rsym{sym} = ",$rsyms{$sym},"syms{sym} = ",$syms{$sym},"\n" if $debug; |
Richard Levitte | 451e60e | 2000-11-14 13:20:10 +0000 | [diff] [blame] | 1436 | $i="NOEXIST::FUNCTION:" |
| 1437 | if !defined($i) || $i eq "" || !defined($syms{$sym}); |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1438 | my $s2 = $sym; |
| 1439 | $s2 =~ s/\{[0-9]+\}$//; |
Matt Caswell | 3addf18 | 2015-12-15 13:06:26 +0000 | [diff] [blame] | 1440 | printf OUT "%s%-39s %d\t%s\t%s\n","",$s2,$n,$vers,$i; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1441 | if (exists $r{$sym}) { |
| 1442 | (my $s, $i) = split /\\/,$r{$sym}; |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1443 | my $s2 = $s; |
| 1444 | $s2 =~ s/\{[0-9]+\}$//; |
Matt Caswell | 3addf18 | 2015-12-15 13:06:26 +0000 | [diff] [blame] | 1445 | printf OUT "%s%-39s %d\t%s\t%s\n","",$s2,$n,$vers,$i; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1446 | } |
| 1447 | } |
| 1448 | } |
| 1449 | |
| 1450 | sub update_numbers |
| 1451 | { |
| 1452 | (*OUT,$name,*nums,my $start_num, my @symbols)=@_; |
| 1453 | my $new_syms = 0; |
Matt Caswell | 3addf18 | 2015-12-15 13:06:26 +0000 | [diff] [blame] | 1454 | my $basevers; |
| 1455 | my $vers; |
| 1456 | |
| 1457 | ($basevers, $vers) = get_openssl_version(); |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1458 | |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1459 | my @r = grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:\w+\(\w+\)/,@symbols); |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1460 | 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 Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1477 | my $s2 = $s; |
| 1478 | $s2 =~ s/\{[0-9]+\}$//; |
Matt Caswell | 3addf18 | 2015-12-15 13:06:26 +0000 | [diff] [blame] | 1479 | printf OUT "%s%-39s %d\t%s\t%s\n","",$s2, ++$start_num,$vers,$i; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1480 | if (exists $r{$s}) { |
Richard Levitte | 33b1a4c | 2000-09-20 14:47:04 +0000 | [diff] [blame] | 1481 | ($s, $i) = split /\\/,$r{$s}; |
Richard Levitte | 62dc5aa | 2001-03-02 10:38:19 +0000 | [diff] [blame] | 1482 | $s =~ s/\{[0-9]+\}$//; |
Matt Caswell | 3addf18 | 2015-12-15 13:06:26 +0000 | [diff] [blame] | 1483 | printf OUT "%s%-39s %d\t%s\t%s\n","",$s, $start_num,$vers,$i; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1484 | } |
| 1485 | } |
| 1486 | } |
| 1487 | if($new_syms) { |
Rich Salz | cc373a3 | 2016-01-28 14:17:19 -0500 | [diff] [blame] | 1488 | print STDERR "$name: Added $new_syms new symbols\n"; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1489 | } else { |
Rich Salz | cc373a3 | 2016-01-28 14:17:19 -0500 | [diff] [blame] | 1490 | print STDERR "$name: No new symbols added\n"; |
Richard Levitte | 948d012 | 2000-09-07 08:43:08 +0000 | [diff] [blame] | 1491 | } |
| 1492 | } |
| 1493 | |
| 1494 | sub 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 Caswell | 07c4c14 | 2014-12-17 13:17:26 +0000 | [diff] [blame] | 1516 | sub 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 Caswell | e863d92 | 2015-12-14 09:22:58 +0000 | [diff] [blame] | 1526 | #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 |
| 1529 | sub get_openssl_version() |
| 1530 | { |
Richard Levitte | d746591 | 2016-01-30 00:03:58 +0100 | [diff] [blame] | 1531 | my $fn = catfile($config{sourcedir},"include","openssl","opensslv.h"); |
| 1532 | open (IN, "$fn") || die "Can't open opensslv.h"; |
Matt Caswell | e863d92 | 2015-12-14 09:22:58 +0000 | [diff] [blame] | 1533 | |
| 1534 | while(<IN>) { |
| 1535 | if (/OPENSSL_VERSION_TEXT\s+"OpenSSL (\d\.\d\.)(\d[a-z]*)(-| )/) { |
| 1536 | my $suffix = $2; |
Richard Levitte | 56afc18 | 2016-01-14 20:22:36 +0100 | [diff] [blame] | 1537 | (my $baseversion = $1) =~ s/\./_/g; |
Matt Caswell | e863d92 | 2015-12-14 09:22:58 +0000 | [diff] [blame] | 1538 | 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) |
| 1547 | sub 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. |
| 1562 | sub 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) |
| 1587 | sub 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 Caswell | 455cba5 | 2016-10-15 23:13:29 +0100 | [diff] [blame] | 1608 | if (substr($cvnums, 0, 4) ne substr($tvnums, 0, 4)); |
Matt Caswell | e863d92 | 2015-12-14 09:22:58 +0000 | [diff] [blame] | 1609 | 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 Henson | 7a556fb | 2016-01-09 13:40:02 +0000 | [diff] [blame] | 1656 | |
| 1657 | sub do_deprecated() |
| 1658 | { |
| 1659 | my ($decl, $plats, $algs) = @_; |
Viktor Dukhovni | ca0004e | 2016-01-09 17:11:18 -0500 | [diff] [blame] | 1660 | $decl =~ /^\s*(DEPRECATEDIN_\d+_\d+_\d+)\s*\((.*)\)\s*$/ |
| 1661 | or die "Bad DEPRECTEDIN: $decl\n"; |
Dr. Stephen Henson | 7a556fb | 2016-01-09 13:40:02 +0000 | [diff] [blame] | 1662 | 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 | } |