Add -verbose/-queit flags to dhparam

Allow dhparam to run quietly in scripts, etc.

For other commands that took a -verbose flag already, also support -quiet.

For genpkey which only supported -quiet, add the -verbose flag.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/17336)
This commit is contained in:
Philip Prindeville 2021-12-21 20:44:07 -07:00 committed by Tomas Mraz
parent 261b399fd7
commit a414fd6765
12 changed files with 88 additions and 14 deletions

View File

@ -154,7 +154,7 @@ typedef enum OPTION_choice {
OPT_CRLDAYS, OPT_CRLHOURS, OPT_CRLSEC, OPT_CRLDAYS, OPT_CRLHOURS, OPT_CRLSEC,
OPT_INFILES, OPT_SS_CERT, OPT_SPKAC, OPT_REVOKE, OPT_VALID, OPT_INFILES, OPT_SS_CERT, OPT_SPKAC, OPT_REVOKE, OPT_VALID,
OPT_EXTENSIONS, OPT_EXTFILE, OPT_STATUS, OPT_UPDATEDB, OPT_CRLEXTS, OPT_EXTENSIONS, OPT_EXTFILE, OPT_STATUS, OPT_UPDATEDB, OPT_CRLEXTS,
OPT_RAND_SERIAL, OPT_RAND_SERIAL, OPT_QUIET,
OPT_R_ENUM, OPT_PROV_ENUM, OPT_R_ENUM, OPT_PROV_ENUM,
/* Do not change the order here; see related case statements below */ /* Do not change the order here; see related case statements below */
OPT_CRL_REASON, OPT_CRL_HOLD, OPT_CRL_COMPROMISE, OPT_CRL_CA_COMPROMISE OPT_CRL_REASON, OPT_CRL_HOLD, OPT_CRL_COMPROMISE, OPT_CRL_CA_COMPROMISE
@ -166,6 +166,7 @@ const OPTIONS ca_options[] = {
OPT_SECTION("General"), OPT_SECTION("General"),
{"help", OPT_HELP, '-', "Display this summary"}, {"help", OPT_HELP, '-', "Display this summary"},
{"verbose", OPT_VERBOSE, '-', "Verbose output during processing"}, {"verbose", OPT_VERBOSE, '-', "Verbose output during processing"},
{"quiet", OPT_QUIET, '-', "Terse output during processing"},
{"outdir", OPT_OUTDIR, '/', "Where to put output cert"}, {"outdir", OPT_OUTDIR, '/', "Where to put output cert"},
{"in", OPT_IN, '<', "The input cert request(s)"}, {"in", OPT_IN, '<', "The input cert request(s)"},
{"inform", OPT_INFORM, 'F', "CSR input format (DER or PEM); default PEM"}, {"inform", OPT_INFORM, 'F', "CSR input format (DER or PEM); default PEM"},
@ -332,6 +333,9 @@ opthelp:
case OPT_VERBOSE: case OPT_VERBOSE:
verbose = 1; verbose = 1;
break; break;
case OPT_QUIET:
verbose = 0;
break;
case OPT_CONFIG: case OPT_CONFIG:
configfile = opt_arg(); configfile = opt_arg();
break; break;

View File

@ -32,11 +32,13 @@
static EVP_PKEY *dsa_to_dh(EVP_PKEY *dh); static EVP_PKEY *dsa_to_dh(EVP_PKEY *dh);
static int verbose = 1;
typedef enum OPTION_choice { typedef enum OPTION_choice {
OPT_COMMON, OPT_COMMON,
OPT_INFORM, OPT_OUTFORM, OPT_IN, OPT_OUT, OPT_INFORM, OPT_OUTFORM, OPT_IN, OPT_OUT,
OPT_ENGINE, OPT_CHECK, OPT_TEXT, OPT_NOOUT, OPT_ENGINE, OPT_CHECK, OPT_TEXT, OPT_NOOUT,
OPT_DSAPARAM, OPT_2, OPT_3, OPT_5, OPT_DSAPARAM, OPT_2, OPT_3, OPT_5, OPT_VERBOSE, OPT_QUIET,
OPT_R_ENUM, OPT_PROV_ENUM OPT_R_ENUM, OPT_PROV_ENUM
} OPTION_CHOICE; } OPTION_CHOICE;
@ -66,6 +68,8 @@ const OPTIONS dhparam_options[] = {
{"2", OPT_2, '-', "Generate parameters using 2 as the generator value"}, {"2", OPT_2, '-', "Generate parameters using 2 as the generator value"},
{"3", OPT_3, '-', "Generate parameters using 3 as the generator value"}, {"3", OPT_3, '-', "Generate parameters using 3 as the generator value"},
{"5", OPT_5, '-', "Generate parameters using 5 as the generator value"}, {"5", OPT_5, '-', "Generate parameters using 5 as the generator value"},
{"verbose", OPT_VERBOSE, '-', "Verbose output"},
{"quiet", OPT_QUIET, '-', "Terse output"},
OPT_R_OPTIONS, OPT_R_OPTIONS,
OPT_PROV_OPTIONS, OPT_PROV_OPTIONS,
@ -137,6 +141,12 @@ int dhparam_main(int argc, char **argv)
case OPT_NOOUT: case OPT_NOOUT:
noout = 1; noout = 1;
break; break;
case OPT_VERBOSE:
verbose = 1;
break;
case OPT_QUIET:
verbose = 0;
break;
case OPT_R_CASES: case OPT_R_CASES:
if (!opt_rand(o)) if (!opt_rand(o))
goto end; goto end;
@ -187,11 +197,13 @@ int dhparam_main(int argc, char **argv)
alg); alg);
goto end; goto end;
} }
EVP_PKEY_CTX_set_cb(ctx, progress_cb);
EVP_PKEY_CTX_set_app_data(ctx, bio_err); EVP_PKEY_CTX_set_app_data(ctx, bio_err);
BIO_printf(bio_err, if (verbose) {
"Generating %s parameters, %d bit long %sprime\n", EVP_PKEY_CTX_set_cb(ctx, progress_cb);
alg, num, dsaparam ? "" : "safe "); BIO_printf(bio_err,
"Generating %s parameters, %d bit long %sprime\n",
alg, num, dsaparam ? "" : "safe ");
}
if (EVP_PKEY_paramgen_init(ctx) <= 0) { if (EVP_PKEY_paramgen_init(ctx) <= 0) {
BIO_printf(bio_err, BIO_printf(bio_err,

View File

@ -27,7 +27,7 @@ static int verbose = 0;
typedef enum OPTION_choice { typedef enum OPTION_choice {
OPT_COMMON, OPT_COMMON,
OPT_INFORM, OPT_OUTFORM, OPT_IN, OPT_OUT, OPT_TEXT, OPT_INFORM, OPT_OUTFORM, OPT_IN, OPT_OUT, OPT_TEXT,
OPT_NOOUT, OPT_GENKEY, OPT_ENGINE, OPT_VERBOSE, OPT_NOOUT, OPT_GENKEY, OPT_ENGINE, OPT_VERBOSE, OPT_QUIET,
OPT_R_ENUM, OPT_PROV_ENUM OPT_R_ENUM, OPT_PROV_ENUM
} OPTION_CHOICE; } OPTION_CHOICE;
@ -50,6 +50,7 @@ const OPTIONS dsaparam_options[] = {
{"text", OPT_TEXT, '-', "Print as text"}, {"text", OPT_TEXT, '-', "Print as text"},
{"noout", OPT_NOOUT, '-', "No output"}, {"noout", OPT_NOOUT, '-', "No output"},
{"verbose", OPT_VERBOSE, '-', "Verbose output"}, {"verbose", OPT_VERBOSE, '-', "Verbose output"},
{"quiet", OPT_QUIET, '-', "Terse output"},
{"genkey", OPT_GENKEY, '-', "Generate a DSA key"}, {"genkey", OPT_GENKEY, '-', "Generate a DSA key"},
OPT_R_OPTIONS, OPT_R_OPTIONS,
@ -121,6 +122,9 @@ int dsaparam_main(int argc, char **argv)
case OPT_VERBOSE: case OPT_VERBOSE:
verbose = 1; verbose = 1;
break; break;
case OPT_QUIET:
verbose = 0;
break;
} }
} }

View File

@ -24,7 +24,7 @@
typedef enum OPTION_choice { typedef enum OPTION_choice {
OPT_COMMON, OPT_COMMON,
OPT_OUT, OPT_PASSOUT, OPT_ENGINE, OPT_CIPHER, OPT_VERBOSE, OPT_OUT, OPT_PASSOUT, OPT_ENGINE, OPT_CIPHER, OPT_VERBOSE, OPT_QUIET,
OPT_R_ENUM, OPT_PROV_ENUM OPT_R_ENUM, OPT_PROV_ENUM
} OPTION_CHOICE; } OPTION_CHOICE;
@ -44,6 +44,7 @@ const OPTIONS gendsa_options[] = {
OPT_PROV_OPTIONS, OPT_PROV_OPTIONS,
{"", OPT_CIPHER, '-', "Encrypt the output with any supported cipher"}, {"", OPT_CIPHER, '-', "Encrypt the output with any supported cipher"},
{"verbose", OPT_VERBOSE, '-', "Verbose output"}, {"verbose", OPT_VERBOSE, '-', "Verbose output"},
{"quiet", OPT_QUIET, '-', "Terse output"},
OPT_PARAMETERS(), OPT_PARAMETERS(),
{"dsaparam-file", 0, 0, "File containing DSA parameters"}, {"dsaparam-file", 0, 0, "File containing DSA parameters"},
@ -98,6 +99,9 @@ int gendsa_main(int argc, char **argv)
case OPT_VERBOSE: case OPT_VERBOSE:
verbose = 1; verbose = 1;
break; break;
case OPT_QUIET:
verbose = 0;
break;
} }
} }

View File

@ -15,7 +15,7 @@
#include <openssl/err.h> #include <openssl/err.h>
#include <openssl/evp.h> #include <openssl/evp.h>
static int quiet; static int verbose = 1;
static int init_keygen_file(EVP_PKEY_CTX **pctx, const char *file, ENGINE *e, static int init_keygen_file(EVP_PKEY_CTX **pctx, const char *file, ENGINE *e,
OSSL_LIB_CTX *libctx, const char *propq); OSSL_LIB_CTX *libctx, const char *propq);
@ -23,7 +23,7 @@ typedef enum OPTION_choice {
OPT_COMMON, OPT_COMMON,
OPT_ENGINE, OPT_OUTFORM, OPT_OUT, OPT_PASS, OPT_PARAMFILE, OPT_ENGINE, OPT_OUTFORM, OPT_OUT, OPT_PASS, OPT_PARAMFILE,
OPT_ALGORITHM, OPT_PKEYOPT, OPT_GENPARAM, OPT_TEXT, OPT_CIPHER, OPT_ALGORITHM, OPT_PKEYOPT, OPT_GENPARAM, OPT_TEXT, OPT_CIPHER,
OPT_QUIET, OPT_CONFIG, OPT_VERBOSE, OPT_QUIET, OPT_CONFIG,
OPT_PROV_ENUM OPT_PROV_ENUM
} OPTION_CHOICE; } OPTION_CHOICE;
@ -35,6 +35,7 @@ const OPTIONS genpkey_options[] = {
#endif #endif
{"paramfile", OPT_PARAMFILE, '<', "Parameters file"}, {"paramfile", OPT_PARAMFILE, '<', "Parameters file"},
{"algorithm", OPT_ALGORITHM, 's', "The public key algorithm"}, {"algorithm", OPT_ALGORITHM, 's', "The public key algorithm"},
{"verbose", OPT_VERBOSE, '-', "Output status while generating keys"},
{"quiet", OPT_QUIET, '-', "Do not output status while generating keys"}, {"quiet", OPT_QUIET, '-', "Do not output status while generating keys"},
{"pkeyopt", OPT_PKEYOPT, 's', {"pkeyopt", OPT_PKEYOPT, 's',
"Set the public key algorithm option as opt:value"}, "Set the public key algorithm option as opt:value"},
@ -114,7 +115,10 @@ int genpkey_main(int argc, char **argv)
goto end; goto end;
break; break;
case OPT_QUIET: case OPT_QUIET:
quiet = 1; verbose = 0;
break;
case OPT_VERBOSE:
verbose = 1;
break; break;
case OPT_GENPARAM: case OPT_GENPARAM:
do_param = 1; do_param = 1;
@ -179,7 +183,7 @@ int genpkey_main(int argc, char **argv)
if (out == NULL) if (out == NULL)
goto end; goto end;
if (!quiet) if (verbose)
EVP_PKEY_CTX_set_cb(ctx, progress_cb); EVP_PKEY_CTX_set_cb(ctx, progress_cb);
EVP_PKEY_CTX_set_app_data(ctx, bio_err); EVP_PKEY_CTX_set_app_data(ctx, bio_err);

View File

@ -35,7 +35,7 @@ typedef enum OPTION_choice {
OPT_3, OPT_3,
#endif #endif
OPT_F4, OPT_ENGINE, OPT_F4, OPT_ENGINE,
OPT_OUT, OPT_PASSOUT, OPT_CIPHER, OPT_PRIMES, OPT_VERBOSE, OPT_OUT, OPT_PASSOUT, OPT_CIPHER, OPT_PRIMES, OPT_VERBOSE, OPT_QUIET,
OPT_R_ENUM, OPT_PROV_ENUM, OPT_TRADITIONAL OPT_R_ENUM, OPT_PROV_ENUM, OPT_TRADITIONAL
} OPTION_CHOICE; } OPTION_CHOICE;
@ -60,6 +60,7 @@ const OPTIONS genrsa_options[] = {
{"passout", OPT_PASSOUT, 's', "Output file pass phrase source"}, {"passout", OPT_PASSOUT, 's', "Output file pass phrase source"},
{"primes", OPT_PRIMES, 'p', "Specify number of primes"}, {"primes", OPT_PRIMES, 'p', "Specify number of primes"},
{"verbose", OPT_VERBOSE, '-', "Verbose output"}, {"verbose", OPT_VERBOSE, '-', "Verbose output"},
{"quiet", OPT_QUIET, '-', "Terse output"},
{"traditional", OPT_TRADITIONAL, '-', {"traditional", OPT_TRADITIONAL, '-',
"Use traditional format for private keys"}, "Use traditional format for private keys"},
{"", OPT_CIPHER, '-', "Encrypt the output with any supported cipher"}, {"", OPT_CIPHER, '-', "Encrypt the output with any supported cipher"},
@ -138,6 +139,9 @@ opthelp:
case OPT_VERBOSE: case OPT_VERBOSE:
verbose = 1; verbose = 1;
break; break;
case OPT_QUIET:
verbose = 0;
break;
case OPT_TRADITIONAL: case OPT_TRADITIONAL:
traditional = 1; traditional = 1;
break; break;
@ -178,7 +182,8 @@ opthelp:
if (!init_gen_str(&ctx, "RSA", eng, 0, NULL, NULL)) if (!init_gen_str(&ctx, "RSA", eng, 0, NULL, NULL))
goto end; goto end;
EVP_PKEY_CTX_set_cb(ctx, progress_cb); if (verbose)
EVP_PKEY_CTX_set_cb(ctx, progress_cb);
EVP_PKEY_CTX_set_app_data(ctx, bio_err); EVP_PKEY_CTX_set_app_data(ctx, bio_err);
if (EVP_PKEY_CTX_set_rsa_keygen_bits(ctx, num) <= 0) { if (EVP_PKEY_CTX_set_rsa_keygen_bits(ctx, num) <= 0) {

View File

@ -10,6 +10,7 @@ openssl-ca - sample minimal CA application
B<openssl> B<ca> B<openssl> B<ca>
[B<-help>] [B<-help>]
[B<-verbose>] [B<-verbose>]
[B<-quiet>]
[B<-config> I<filename>] [B<-config> I<filename>]
[B<-name> I<section>] [B<-name> I<section>]
[B<-section> I<section>] [B<-section> I<section>]
@ -95,6 +96,11 @@ Print out a usage message.
This prints extra details about the operations being performed. This prints extra details about the operations being performed.
=item B<-quiet>
This prints fewer details about the operations being performed, which may
be handy during batch scripts or pipelines.
=item B<-config> I<filename> =item B<-config> I<filename>
Specifies the configuration file to use. Specifies the configuration file to use.

View File

@ -17,6 +17,8 @@ B<openssl dhparam>
[B<-check>] [B<-check>]
[B<-noout>] [B<-noout>]
[B<-text>] [B<-text>]
[B<-verbose>]
[B<-quiet>]
[B<-2>] [B<-2>]
[B<-3>] [B<-3>]
[B<-5>] [B<-5>]
@ -104,6 +106,16 @@ This option prints out the DH parameters in human readable form.
{- $OpenSSL::safe::opt_provider_item -} {- $OpenSSL::safe::opt_provider_item -}
=item B<-verbose>
This option enables the output of progress messages, which is handy when
running commands interactively that may take a long time to execute.
=item B<-quiet>
This option suppresses the output of progress messages, which may be
undesirable in batch scripts or pipelines.
=back =back
=head1 NOTES =head1 NOTES

View File

@ -17,6 +17,7 @@ B<openssl dsaparam>
[B<-text>] [B<-text>]
[B<-genkey>] [B<-genkey>]
[B<-verbose>] [B<-verbose>]
[B<-quiet>]
{- $OpenSSL::safe::opt_r_synopsis -} {- $OpenSSL::safe::opt_r_synopsis -}
{- $OpenSSL::safe::opt_engine_synopsis -}{- $OpenSSL::safe::opt_provider_synopsis -} {- $OpenSSL::safe::opt_engine_synopsis -}{- $OpenSSL::safe::opt_provider_synopsis -}
[I<numbits>] [I<numbits>]
@ -79,6 +80,11 @@ parameters.
Print extra details about the operations being performed. Print extra details about the operations being performed.
=item B<-quiet>
Print fewer details about the operations being performed, which may
be handy during batch scripts and pipelines.
{- $OpenSSL::safe::opt_r_item -} {- $OpenSSL::safe::opt_r_item -}
{- $OpenSSL::safe::opt_engine_item -} {- $OpenSSL::safe::opt_engine_item -}

View File

@ -24,6 +24,7 @@ B<openssl> B<gendsa>
[B<-des3>] [B<-des3>]
[B<-idea>] [B<-idea>]
[B<-verbose>] [B<-verbose>]
[B<-quiet>]
{- $OpenSSL::safe::opt_r_synopsis -} {- $OpenSSL::safe::opt_r_synopsis -}
{- $OpenSSL::safe::opt_engine_synopsis -}{- $OpenSSL::safe::opt_provider_synopsis -} {- $OpenSSL::safe::opt_engine_synopsis -}{- $OpenSSL::safe::opt_provider_synopsis -}
[I<paramfile>] [I<paramfile>]
@ -61,6 +62,11 @@ If none of these options is specified no encryption is used.
Print extra details about the operations being performed. Print extra details about the operations being performed.
=item B<-quiet>
Print fewer details about the operations being performed, which may
be handy during batch scripts and pipelines.
{- $OpenSSL::safe::opt_r_item -} {- $OpenSSL::safe::opt_r_item -}
{- $OpenSSL::safe::opt_engine_item -} {- $OpenSSL::safe::opt_engine_item -}

View File

@ -15,6 +15,7 @@ B<openssl> B<genpkey>
[B<-help>] [B<-help>]
[B<-out> I<filename>] [B<-out> I<filename>]
[B<-outform> B<DER>|B<PEM>] [B<-outform> B<DER>|B<PEM>]
[B<-verbose>]
[B<-quiet>] [B<-quiet>]
[B<-pass> I<arg>] [B<-pass> I<arg>]
[B<-I<cipher>>] [B<-I<cipher>>]
@ -50,6 +51,10 @@ See L<openssl-format-options(1)> for details.
When B<-genparam> is given, B<-outform> is ignored. When B<-genparam> is given, B<-outform> is ignored.
=item B<-verbose>
Output "status dots" while generating keys.
=item B<-quiet> =item B<-quiet>
Do not output "status dots" while generating keys. Do not output "status dots" while generating keys.

View File

@ -28,6 +28,7 @@ B<openssl> B<genrsa>
[B<-3>] [B<-3>]
[B<-primes> I<num>] [B<-primes> I<num>]
[B<-verbose>] [B<-verbose>]
[B<-quiet>]
[B<-traditional>] [B<-traditional>]
{- $OpenSSL::safe::opt_r_synopsis -} {- $OpenSSL::safe::opt_r_synopsis -}
{- $OpenSSL::safe::opt_engine_synopsis -}{- $OpenSSL::safe::opt_provider_synopsis -} {- $OpenSSL::safe::opt_engine_synopsis -}{- $OpenSSL::safe::opt_provider_synopsis -}
@ -81,6 +82,11 @@ RSA key, which is defined in RFC 8017.
Print extra details about the operations being performed. Print extra details about the operations being performed.
=item B<-quiet>
Print fewer details about the operations being performed, which may
be handy during batch scripts and pipelines.
=item B<-traditional> =item B<-traditional>
Write the key using the traditional PKCS#1 format instead of the PKCS#8 format. Write the key using the traditional PKCS#1 format instead of the PKCS#8 format.