]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/progs.pl
PROV: Add DERlib support for RSA
[thirdparty/openssl.git] / apps / progs.pl
CommitLineData
e0a65194 1#! /usr/bin/env perl
48e5119a 2# Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
3850f8cb 3#
dffa7520 4# Licensed under the Apache License 2.0 (the "License"). You may not use
e0a65194
RS
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
3850f8cb 7# https://www.openssl.org/source/license.html
3850f8cb 8
fb3e2a88
RL
9# Generate progs.h file by looking for command mains in list of C files
10# passed on the command line.
11
12use strict;
13use warnings;
6a74806e
RL
14use lib '.';
15use configdata qw/@disablables %unified_info/;
fb3e2a88 16
4b62b8ed
RL
17my $opt = shift @ARGV;
18die "Unrecognised option, must be -C or -H\n"
19 unless ($opt eq '-H' || $opt eq '-C');
20
aa74c2ec
RS
21my %commands = ();
22my $cmdre = qr/^\s*int\s+([a-z_][a-z0-9_]*)_main\(\s*int\s+argc\s*,/;
6a74806e 23my $apps_openssl = shift @ARGV;
83900628 24my $YEAR = [localtime()]->[5] + 1900;
aa74c2ec 25
6a74806e
RL
26# because the program apps/openssl has object files as sources, and
27# they then have the corresponding C files as source, we need to chain
28# the lookups in %unified_info
29my @openssl_source =
30 map { @{$unified_info{sources}->{$_}} }
83900628 31 grep { /\.o$/ }
aa74c2ec 32 @{$unified_info{sources}->{$apps_openssl}};
6a74806e
RL
33
34foreach my $filename (@openssl_source) {
ab307dc6 35 open F, $filename or die "Couldn't open $filename: $!\n";
aa74c2ec
RS
36 foreach ( grep /$cmdre/, <F> ) {
37 my @foo = /$cmdre/;
38 $commands{$1} = 1;
39 }
40 close F;
fb3e2a88
RL
41}
42
43@ARGV = sort keys %commands;
d02b48c6 44
4b62b8ed
RL
45if ($opt eq '-H') {
46 print <<"EOF";
7e1b7485 47/*
e0a65194
RS
48 * WARNING: do not edit!
49 * Generated by apps/progs.pl
50 *
83900628 51 * Copyright 1995-$YEAR The OpenSSL Project Authors. All Rights Reserved.
3850f8cb 52 *
dffa7520 53 * Licensed under the Apache License 2.0 (the "License"). You may not use
e0a65194
RS
54 * this file except in compliance with the License. You can obtain a copy
55 * in the file LICENSE in the source distribution or at
3850f8cb 56 * https://www.openssl.org/source/license.html
7e1b7485 57 */
d02b48c6 58
4b62b8ed 59#include "function.h"
0109e030 60
4b62b8ed 61EOF
d02b48c6 62
4b62b8ed
RL
63 foreach (@ARGV) {
64 printf "extern int %s_main(int argc, char *argv[]);\n", $_;
65 }
66 print "\n";
d02b48c6 67
4b62b8ed
RL
68 foreach (@ARGV) {
69 printf "extern const OPTIONS %s_options[];\n", $_;
70 }
71 print "\n";
72 print "extern FUNCTION functions[];\n";
73}
e6b5c341 74
4b62b8ed
RL
75if ($opt eq '-C') {
76 print <<"EOF";
77/*
78 * WARNING: do not edit!
79 * Generated by apps/progs.pl
80 *
81 * Copyright 1995-$YEAR The OpenSSL Project Authors. All Rights Reserved.
82 *
83 * Licensed under the Apache License 2.0 (the "License"). You may not use
84 * this file except in compliance with the License. You can obtain a copy
85 * in the file LICENSE in the source distribution or at
86 * https://www.openssl.org/source/license.html
87 */
d02b48c6 88
4b62b8ed 89#include "progs.h"
df2ee0e2 90
4b62b8ed
RL
91EOF
92
93 my %cmd_disabler = (
94 ciphers => "sock",
4b62b8ed
RL
95 pkcs12 => "des",
96 );
c2ec4a16 97 my %cmd_deprecated = (
c5f87134
P
98 rsa => [ "3_0", "pkey", "rsa" ],
99 genrsa => [ "3_0", "genpkey", "rsa" ],
100 rsautl => [ "3_0", "pkeyutl", "rsa" ],
c2ec4a16
P
101 dhparam => [ "3_0", "pkeyparam", "dh" ],
102 dsaparam => [ "3_0", "pkeyparam", "dsa" ],
103 dsa => [ "3_0", "pkey", "dsa" ],
104 gendsa => [ "3_0", "genpkey", "dsa" ],
d1eec097
P
105 ec => [ "3_0", "pkey", "ec" ],
106 ecparam => [ "3_0", "pkeyparam", "ec" ],
c2ec4a16 107 );
4b62b8ed
RL
108
109 print "FUNCTION functions[] = {\n";
110 foreach my $cmd ( @ARGV ) {
111 my $str =
c2ec4a16 112 " {FT_general, \"$cmd\", ${cmd}_main, ${cmd}_options, NULL},\n";
4b62b8ed
RL
113 if ($cmd =~ /^s_/) {
114 print "#ifndef OPENSSL_NO_SOCK\n${str}#endif\n";
c2ec4a16
P
115 } elsif (my $deprecated = $cmd_deprecated{$cmd}) {
116 my @dep = @{$deprecated};
117 print "#if ";
118 if ($dep[2]) {
119 print "!defined(OPENSSL_NO_" . uc($dep[2]) . ") && ";
120 }
121 print "!defined(OPENSSL_NO_DEPRECATED_" . $dep[0] . ")";
122 my $dalt = "\"" . $dep[1] . "\"";
123 $str =~ s/NULL/$dalt/;
124 print "\n${str}#endif\n";
4b62b8ed
RL
125 } elsif (grep { $cmd eq $_ } @disablables) {
126 print "#ifndef OPENSSL_NO_" . uc($cmd) . "\n${str}#endif\n";
127 } elsif (my $disabler = $cmd_disabler{$cmd}) {
128 print "#ifndef OPENSSL_NO_" . uc($disabler) . "\n${str}#endif\n";
129 } else {
130 print $str;
131 }
aa74c2ec 132 }
d02b48c6 133
4b62b8ed
RL
134 my %md_disabler = (
135 blake2b512 => "blake2",
136 blake2s256 => "blake2",
137 );
138 foreach my $cmd (
139 "md2", "md4", "md5",
140 "gost",
141 "sha1", "sha224", "sha256", "sha384",
142 "sha512", "sha512-224", "sha512-256",
143 "sha3-224", "sha3-256", "sha3-384", "sha3-512",
144 "shake128", "shake256",
145 "mdc2", "rmd160", "blake2b512", "blake2s256",
146 "sm3"
147 ) {
c2ec4a16 148 my $str = " {FT_md, \"$cmd\", dgst_main, NULL, NULL},\n";
4b62b8ed
RL
149 if (grep { $cmd eq $_ } @disablables) {
150 print "#ifndef OPENSSL_NO_" . uc($cmd) . "\n${str}#endif\n";
151 } elsif (my $disabler = $md_disabler{$cmd}) {
152 print "#ifndef OPENSSL_NO_" . uc($disabler) . "\n${str}#endif\n";
153 } else {
154 print $str;
155 }
aa74c2ec 156 }
d02b48c6 157
4b62b8ed
RL
158 my %cipher_disabler = (
159 des3 => "des",
160 desx => "des",
161 cast5 => "cast",
162 );
163 foreach my $cmd (
164 "aes-128-cbc", "aes-128-ecb",
165 "aes-192-cbc", "aes-192-ecb",
166 "aes-256-cbc", "aes-256-ecb",
167 "aria-128-cbc", "aria-128-cfb",
168 "aria-128-ctr", "aria-128-ecb", "aria-128-ofb",
169 "aria-128-cfb1", "aria-128-cfb8",
170 "aria-192-cbc", "aria-192-cfb",
171 "aria-192-ctr", "aria-192-ecb", "aria-192-ofb",
172 "aria-192-cfb1", "aria-192-cfb8",
173 "aria-256-cbc", "aria-256-cfb",
174 "aria-256-ctr", "aria-256-ecb", "aria-256-ofb",
175 "aria-256-cfb1", "aria-256-cfb8",
176 "camellia-128-cbc", "camellia-128-ecb",
177 "camellia-192-cbc", "camellia-192-ecb",
178 "camellia-256-cbc", "camellia-256-ecb",
179 "base64", "zlib",
180 "des", "des3", "desx", "idea", "seed", "rc4", "rc4-40",
181 "rc2", "bf", "cast", "rc5",
182 "des-ecb", "des-ede", "des-ede3",
183 "des-cbc", "des-ede-cbc","des-ede3-cbc",
184 "des-cfb", "des-ede-cfb","des-ede3-cfb",
185 "des-ofb", "des-ede-ofb","des-ede3-ofb",
186 "idea-cbc","idea-ecb", "idea-cfb", "idea-ofb",
187 "seed-cbc","seed-ecb", "seed-cfb", "seed-ofb",
188 "rc2-cbc", "rc2-ecb", "rc2-cfb","rc2-ofb", "rc2-64-cbc", "rc2-40-cbc",
189 "bf-cbc", "bf-ecb", "bf-cfb", "bf-ofb",
190 "cast5-cbc","cast5-ecb", "cast5-cfb","cast5-ofb",
191 "cast-cbc", "rc5-cbc", "rc5-ecb", "rc5-cfb", "rc5-ofb",
192 "sm4-cbc", "sm4-ecb", "sm4-cfb", "sm4-ofb", "sm4-ctr"
193 ) {
c2ec4a16 194 my $str = " {FT_cipher, \"$cmd\", enc_main, enc_options, NULL},\n";
4b62b8ed
RL
195 (my $algo = $cmd) =~ s/-.*//g;
196 if ($cmd eq "zlib") {
197 print "#ifdef ZLIB\n${str}#endif\n";
198 } elsif (grep { $algo eq $_ } @disablables) {
199 print "#ifndef OPENSSL_NO_" . uc($algo) . "\n${str}#endif\n";
200 } elsif (my $disabler = $cipher_disabler{$algo}) {
201 print "#ifndef OPENSSL_NO_" . uc($disabler) . "\n${str}#endif\n";
202 } else {
203 print $str;
204 }
aa74c2ec 205 }
d02b48c6 206
c2ec4a16 207 print " {0, NULL, NULL, NULL, NULL}\n};\n";
4b62b8ed 208}