2 # Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
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
9 # Generate progs.h file by looking for command mains in list of C files
10 # passed on the command line.
15 use configdata qw/@disablables %unified_info/;
18 my $cmdre = qr/^\s*int\s+([a-z_][a-z0-9_]*)_main\(\s*int\s+argc\s*,/;
19 my $apps_openssl = shift @ARGV;
21 # because the program apps/openssl has object files as sources, and
22 # they then have the corresponding C files as source, we need to chain
23 # the lookups in %unified_info
25 map { @{$unified_info{sources}->{$_}} }
26 @{$unified_info{sources}->{$apps_openssl}};
28 foreach my $filename (@openssl_source) {
29 open F, $filename or die "Couldn't open $filename: $!\n";
30 foreach ( grep /$cmdre/, <F> ) {
37 @ARGV = sort keys %commands;
41 * WARNING: do not edit!
42 * Generated by apps/progs.pl
44 * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
46 * Licensed under the OpenSSL license (the "License"). You may not use
47 * this file except in compliance with the License. You can obtain a copy
48 * in the file LICENSE in the source distribution or at
49 * https://www.openssl.org/source/license.html
52 typedef enum FUNC_TYPE {
53 FT_none, FT_general, FT_md, FT_cipher, FT_pkey,
54 FT_md_alg, FT_cipher_alg
57 typedef struct function_st {
60 int (*func)(int argc, char *argv[]);
64 DEFINE_LHASH_OF(FUNCTION);
69 printf "extern int %s_main(int argc, char *argv[]);\n", $_;
74 printf "extern const OPTIONS %s_options[];\n", $_;
90 print "#ifdef INCLUDE_FUNCTION_TABLE\n";
91 print "static FUNCTION functions[] = {\n";
92 foreach my $cmd ( @ARGV ) {
93 my $str = " {FT_general, \"$cmd\", ${cmd}_main, ${cmd}_options},\n";
95 print "#ifndef OPENSSL_NO_SOCK\n${str}#endif\n";
96 } elsif (grep { $cmd eq $_ } @disablables) {
97 print "#ifndef OPENSSL_NO_" . uc($cmd) . "\n${str}#endif\n";
98 } elsif (my $disabler = $cmd_disabler{$cmd}) {
99 print "#ifndef OPENSSL_NO_" . uc($disabler) . "\n${str}#endif\n";
106 blake2b512 => "blake2",
107 blake2s256 => "blake2",
112 "sha1", "sha224", "sha256", "sha384", "sha512",
113 "mdc2", "rmd160", "blake2b512", "blake2s256",
116 my $str = " {FT_md, \"$cmd\", dgst_main},\n";
117 if (grep { $cmd eq $_ } @disablables) {
118 print "#ifndef OPENSSL_NO_" . uc($cmd) . "\n${str}#endif\n";
119 } elsif (my $disabler = $md_disabler{$cmd}) {
120 print "#ifndef OPENSSL_NO_" . uc($disabler) . "\n${str}#endif\n";
126 my %cipher_disabler = (
132 "aes-128-cbc", "aes-128-ecb",
133 "aes-192-cbc", "aes-192-ecb",
134 "aes-256-cbc", "aes-256-ecb",
135 "aria-128-cbc", "aria-128-cfb",
136 "aria-128-ctr", "aria-128-ecb", "aria-128-ofb",
137 "aria-128-cfb1", "aria-128-cfb8",
138 "aria-192-cbc", "aria-192-cfb",
139 "aria-192-ctr", "aria-192-ecb", "aria-192-ofb",
140 "aria-192-cfb1", "aria-192-cfb8",
141 "aria-256-cbc", "aria-256-cfb",
142 "aria-256-ctr", "aria-256-ecb", "aria-256-ofb",
143 "aria-256-cfb1", "aria-256-cfb8",
144 "camellia-128-cbc", "camellia-128-ecb",
145 "camellia-192-cbc", "camellia-192-ecb",
146 "camellia-256-cbc", "camellia-256-ecb",
148 "des", "des3", "desx", "idea", "seed", "rc4", "rc4-40",
149 "rc2", "bf", "cast", "rc5",
150 "des-ecb", "des-ede", "des-ede3",
151 "des-cbc", "des-ede-cbc","des-ede3-cbc",
152 "des-cfb", "des-ede-cfb","des-ede3-cfb",
153 "des-ofb", "des-ede-ofb","des-ede3-ofb",
154 "idea-cbc","idea-ecb", "idea-cfb", "idea-ofb",
155 "seed-cbc","seed-ecb", "seed-cfb", "seed-ofb",
156 "rc2-cbc", "rc2-ecb", "rc2-cfb","rc2-ofb", "rc2-64-cbc", "rc2-40-cbc",
157 "bf-cbc", "bf-ecb", "bf-cfb", "bf-ofb",
158 "cast5-cbc","cast5-ecb", "cast5-cfb","cast5-ofb",
159 "cast-cbc", "rc5-cbc", "rc5-ecb", "rc5-cfb", "rc5-ofb",
160 "sm4-cbc", "sm4-ecb", "sm4-cfb", "sm4-ofb", "sm4-ctr"
162 my $str = " {FT_cipher, \"$cmd\", enc_main, enc_options},\n";
163 (my $algo = $cmd) =~ s/-.*//g;
164 if ($cmd eq "zlib") {
165 print "#ifdef ZLIB\n${str}#endif\n";
166 } elsif (grep { $algo eq $_ } @disablables) {
167 print "#ifndef OPENSSL_NO_" . uc($algo) . "\n${str}#endif\n";
168 } elsif (my $disabler = $cipher_disabler{$algo}) {
169 print "#ifndef OPENSSL_NO_" . uc($disabler) . "\n${str}#endif\n";
175 print " {0, NULL, NULL}\n};\n";