From: Ben Laurie Date: Thu, 9 Jun 2011 17:09:31 +0000 (+0000) Subject: Add -attime. X-Git-Tag: OpenSSL_1_0_1-beta1~251 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=be23b71e8759212aff3504b16987421912eb40dc;p=oweals%2Fopenssl.git Add -attime. --- diff --git a/CHANGES b/CHANGES index 647836b89b..2330402f91 100644 --- a/CHANGES +++ b/CHANGES @@ -4,6 +4,9 @@ Changes between 1.0.0d and 1.0.1 [xx XXX xxxx] + *) Add -attime option to openssl verify. + [Peter Eckersley and Ben Laurie] + *) Redirect DSA and DH operations to FIPS module in FIPS mode. [Steve Henson] diff --git a/apps/verify.c b/apps/verify.c index 9163997e93..1888ce7ef9 100644 --- a/apps/verify.c +++ b/apps/verify.c @@ -72,7 +72,7 @@ static int MS_CALLBACK cb(int ok, X509_STORE_CTX *ctx); static int check(X509_STORE *ctx, char *file, STACK_OF(X509) *uchain, STACK_OF(X509) *tchain, - STACK_OF(X509_CRL) *crls, ENGINE *e); + STACK_OF(X509_CRL) *crls, ENGINE *e, time_t at_time); static int v_verbose=0, vflags = 0; int MAIN(int, char **); @@ -83,6 +83,9 @@ int MAIN(int argc, char **argv) int i,ret=1, badarg = 0; char *CApath=NULL,*CAfile=NULL; char *untfile = NULL, *trustfile = NULL, *crlfile = NULL; + char *checktime_string = NULL; + long int timestamp; + time_t t = 0; STACK_OF(X509) *untrusted = NULL, *trusted = NULL; STACK_OF(X509_CRL) *crls = NULL; X509_STORE *cert_ctx=NULL; @@ -145,6 +148,11 @@ int MAIN(int argc, char **argv) if (argc-- < 1) goto end; crlfile= *(++argv); } + else if (strcmp(*argv,"-attime") == 0) + { + if (argc-- < 1) goto end; + checktime_string= *(++argv); + } #ifndef OPENSSL_NO_ENGINE else if (strcmp(*argv,"-engine") == 0) { @@ -222,14 +230,28 @@ int MAIN(int argc, char **argv) goto end; } - if (argc < 1) check(cert_ctx, NULL, untrusted, trusted, crls, e); + if(checktime_string) + { + /* interpret the -attime argument as seconds since Epoch */ + if (sscanf(checktime_string, "%li", ×tamp) != 1) + { + BIO_printf(bio_err, "Error parsing timestamp %s\n", + checktime_string); + ERR_print_errors(bio_err); + goto end; + } + t = (time_t) timestamp; /* on some platforms time_t may be a float */ + } + + if (argc < 1) check(cert_ctx, NULL, untrusted, trusted, crls, e, t); else for (i=0; i