mkdef.pl 45 KB

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