Added '-nameopt' option to the verify command.

It makes possible to print the certificate's DN correctly in case of verification errors.

Reviewed-by: Andy Polyakov <appro@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2656)
This commit is contained in:
Dmitry Belyavskiy 2017-02-17 02:06:47 +03:00 committed by Rich Salz
parent b1498c98f3
commit ad39b31c1c
2 changed files with 22 additions and 3 deletions

View File

@ -22,12 +22,13 @@ static int check(X509_STORE *ctx, const char *file,
STACK_OF(X509) *uchain, STACK_OF(X509) *tchain, STACK_OF(X509) *uchain, STACK_OF(X509) *tchain,
STACK_OF(X509_CRL) *crls, int show_chain); STACK_OF(X509_CRL) *crls, int show_chain);
static int v_verbose = 0, vflags = 0; static int v_verbose = 0, vflags = 0;
static unsigned long nmflag = 0;
typedef enum OPTION_choice { typedef enum OPTION_choice {
OPT_ERR = -1, OPT_EOF = 0, OPT_HELP, OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
OPT_ENGINE, OPT_CAPATH, OPT_CAFILE, OPT_NOCAPATH, OPT_NOCAFILE, OPT_ENGINE, OPT_CAPATH, OPT_CAFILE, OPT_NOCAPATH, OPT_NOCAFILE,
OPT_UNTRUSTED, OPT_TRUSTED, OPT_CRLFILE, OPT_CRL_DOWNLOAD, OPT_SHOW_CHAIN, OPT_UNTRUSTED, OPT_TRUSTED, OPT_CRLFILE, OPT_CRL_DOWNLOAD, OPT_SHOW_CHAIN,
OPT_V_ENUM, OPT_V_ENUM, OPT_NAMEOPT,
OPT_VERBOSE OPT_VERBOSE
} OPTION_CHOICE; } OPTION_CHOICE;
@ -51,6 +52,7 @@ const OPTIONS verify_options[] = {
"Attempt to download CRL information for this certificate"}, "Attempt to download CRL information for this certificate"},
{"show_chain", OPT_SHOW_CHAIN, '-', {"show_chain", OPT_SHOW_CHAIN, '-',
"Display information about the certificate chain"}, "Display information about the certificate chain"},
{"nameopt", OPT_NAMEOPT, 's', "Various certificate name options"},
OPT_V_OPTIONS, OPT_V_OPTIONS,
#ifndef OPENSSL_NO_ENGINE #ifndef OPENSSL_NO_ENGINE
{"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"}, {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
@ -68,6 +70,7 @@ int verify_main(int argc, char **argv)
const char *prog, *CApath = NULL, *CAfile = NULL; const char *prog, *CApath = NULL, *CAfile = NULL;
int noCApath = 0, noCAfile = 0; int noCApath = 0, noCAfile = 0;
int vpmtouched = 0, crl_download = 0, show_chain = 0, i = 0, ret = 1; int vpmtouched = 0, crl_download = 0, show_chain = 0, i = 0, ret = 1;
char nmflag_set = 0;
OPTION_CHOICE o; OPTION_CHOICE o;
if ((vpm = X509_VERIFY_PARAM_new()) == NULL) if ((vpm = X509_VERIFY_PARAM_new()) == NULL)
@ -149,6 +152,11 @@ int verify_main(int argc, char **argv)
case OPT_SHOW_CHAIN: case OPT_SHOW_CHAIN:
show_chain = 1; show_chain = 1;
break; break;
case OPT_NAMEOPT:
nmflag_set = 1;
if (!set_name_ex(&nmflag, opt_arg()))
goto end;
break;
case OPT_VERBOSE: case OPT_VERBOSE:
v_verbose = 1; v_verbose = 1;
break; break;
@ -163,6 +171,9 @@ int verify_main(int argc, char **argv)
goto end; goto end;
} }
if (!nmflag_set)
nmflag = XN_FLAG_ONELINE;
if ((store = setup_verify(CAfile, CApath, noCAfile, noCApath)) == NULL) if ((store = setup_verify(CAfile, CApath, noCAfile, noCApath)) == NULL)
goto end; goto end;
X509_STORE_set_verify_cb(store, cb); X509_STORE_set_verify_cb(store, cb);
@ -242,7 +253,7 @@ static int check(X509_STORE *ctx, const char *file,
printf("depth=%d: ", j); printf("depth=%d: ", j);
X509_NAME_print_ex_fp(stdout, X509_NAME_print_ex_fp(stdout,
X509_get_subject_name(cert), X509_get_subject_name(cert),
0, XN_FLAG_ONELINE); 0, nmflag);
if (j < num_untrusted) if (j < num_untrusted)
printf(" (untrusted)"); printf(" (untrusted)");
printf("\n"); printf("\n");
@ -271,7 +282,7 @@ static int cb(int ok, X509_STORE_CTX *ctx)
if (current_cert) { if (current_cert) {
X509_NAME_print_ex(bio_err, X509_NAME_print_ex(bio_err,
X509_get_subject_name(current_cert), X509_get_subject_name(current_cert),
0, XN_FLAG_ONELINE); 0, nmflag);
BIO_printf(bio_err, "\n"); BIO_printf(bio_err, "\n");
} }
BIO_printf(bio_err, "%serror %d at %d depth lookup: %s\n", BIO_printf(bio_err, "%serror %d at %d depth lookup: %s\n",

View File

@ -25,6 +25,7 @@ B<openssl> B<verify>
[B<-ignore_critical>] [B<-ignore_critical>]
[B<-inhibit_any>] [B<-inhibit_any>]
[B<-inhibit_map>] [B<-inhibit_map>]
[B<-nameopt option>]
[B<-no_check_time>] [B<-no_check_time>]
[B<-partial_chain>] [B<-partial_chain>]
[B<-policy arg>] [B<-policy arg>]
@ -151,6 +152,13 @@ Set policy variable inhibit-any-policy (see RFC5280).
Set policy variable inhibit-policy-mapping (see RFC5280). Set policy variable inhibit-policy-mapping (see RFC5280).
=item B<-nameopt option>
option which determines how the subject or issuer names are displayed. The
B<option> argument can be a single option or multiple options separated by
commas. Alternatively the B<-nameopt> switch may be used more than once to
set multiple options. See the L<x509(1)> manual page for details.
=item B<-no_check_time> =item B<-no_check_time>
This option suppresses checking the validity period of certificates and CRLs This option suppresses checking the validity period of certificates and CRLs