Maximize time_t when intmax_t is available

Well, I'm not actually changing time_t, just changing how time_t
valued opt values are converted from string to time_t.

Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
Viktor Dukhovni 2016-01-12 21:13:34 -05:00
parent ef30a6845a
commit 03f887ca12
3 changed files with 119 additions and 12 deletions

View File

@ -116,6 +116,7 @@
# include <assert.h> # include <assert.h>
# include <openssl/e_os2.h> # include <openssl/e_os2.h>
# include <openssl/ossl_typ.h>
# include <openssl/bio.h> # include <openssl/bio.h>
# include <openssl/x509.h> # include <openssl/x509.h>
# include <openssl/lhash.h> # include <openssl/lhash.h>
@ -185,7 +186,7 @@ void wait_for_async(SSL *s);
{ "purpose", OPT_V_PURPOSE, 's' }, \ { "purpose", OPT_V_PURPOSE, 's' }, \
{ "verify_name", OPT_V_VERIFY_NAME, 's' }, \ { "verify_name", OPT_V_VERIFY_NAME, 's' }, \
{ "verify_depth", OPT_V_VERIFY_DEPTH, 'p' }, \ { "verify_depth", OPT_V_VERIFY_DEPTH, 'p' }, \
{ "attime", OPT_V_ATTIME, 'p' }, \ { "attime", OPT_V_ATTIME, 'M' }, \
{ "verify_hostname", OPT_V_VERIFY_HOSTNAME, 's' }, \ { "verify_hostname", OPT_V_VERIFY_HOSTNAME, 's' }, \
{ "verify_email", OPT_V_VERIFY_EMAIL, 's' }, \ { "verify_email", OPT_V_VERIFY_EMAIL, 's' }, \
{ "verify_ip", OPT_V_VERIFY_IP, 's' }, \ { "verify_ip", OPT_V_VERIFY_IP, 's' }, \
@ -384,6 +385,10 @@ int opt_format(const char *s, unsigned long flags, int *result);
int opt_int(const char *arg, int *result); int opt_int(const char *arg, int *result);
int opt_ulong(const char *arg, unsigned long *result); int opt_ulong(const char *arg, unsigned long *result);
int opt_long(const char *arg, long *result); int opt_long(const char *arg, long *result);
#if defined(INTMAX_MAX) && defined(UINTMAX_MAX)
int opt_imax(const char *arg, intmax_t *result);
int opt_umax(const char *arg, uintmax_t *result);
#endif
int opt_pair(const char *arg, const OPT_PAIR * pairs, int *result); int opt_pair(const char *arg, const OPT_PAIR * pairs, int *result);
int opt_cipher(const char *name, const EVP_CIPHER **cipherp); int opt_cipher(const char *name, const EVP_CIPHER **cipherp);
int opt_md(const char *name, const EVP_MD **mdp); int opt_md(const char *name, const EVP_MD **mdp);

View File

@ -75,6 +75,11 @@ static const OPTIONS *unknown;
static const OPTIONS *opts; static const OPTIONS *opts;
static char prog[40]; static char prog[40];
#if !defined(INTMAX_MAX) || !defined(UINTMAX_MAX)
#define opt_imax opt_long
#define opt_umax opt_ulong
#endif
/* /*
* Return the simple name of the program; removing various platform gunk. * Return the simple name of the program; removing various platform gunk.
*/ */
@ -181,10 +186,13 @@ char *opt_init(int ac, char **av, const OPTIONS *o)
/* Make sure options are legit. */ /* Make sure options are legit. */
assert(o->name[0] != '-'); assert(o->name[0] != '-');
assert(o->retval > 0); assert(o->retval > 0);
assert(i == 0 || i == '-' switch (i) {
|| i == 'n' || i == 'p' || i == 'u' case 0: case '-': case '/': case '<': case '>': case 'F': case 'M':
|| i == 's' || i == '<' || i == '>' || i == '/' case 'L': case 'U': case 'f': case 'n': case 'p': case 's': case 'u':
|| i == 'f' || i == 'F'); break;
default:
assert(0);
}
/* Make sure there are no duplicates. */ /* Make sure there are no duplicates. */
for (next = o + 1; next->name; ++next) { for (next = o + 1; next->name; ++next) {
@ -389,6 +397,53 @@ int opt_long(const char *value, long *result)
return 1; return 1;
} }
#if defined(INTMAX_MAX) && defined(UINTMAX_MAX)
/* Parse an intmax_t, put it into *result; return 0 on failure, else 1. */
int opt_imax(const char *value, intmax_t *result)
{
int oerrno = errno;
intmax_t m;
char *endp;
m = strtoimax(value, &endp, 0);
if (*endp
|| endp == value
|| ((m == INTMAX_MAX || m == INTMAX_MIN) && errno == ERANGE)
|| (m == 0 && errno != 0)) {
BIO_printf(bio_err, "%s: Can't parse \"%s\" as a number\n",
prog, value);
errno = oerrno;
return 0;
}
*result = m;
errno = oerrno;
return 1;
}
/* Parse a uintmax_t, put it into *result; return 0 on failure, else 1. */
int opt_umax(const char *value, uintmax_t *result)
{
int oerrno = errno;
uintmax_t m;
char *endp;
m = strtoumax(value, &endp, 0);
if (*endp
|| endp == value
|| (m == UINTMAX_MAX && errno == ERANGE)
|| (m == 0 && errno != 0)) {
BIO_printf(bio_err, "%s: Can't parse \"%s\" as a number\n",
prog, value);
errno = oerrno;
return 0;
}
*result = m;
errno = oerrno;
return 1;
}
#endif
/* /*
* Parse an unsigned long, put it into *result; return 0 on failure, else 1. * Parse an unsigned long, put it into *result; return 0 on failure, else 1.
*/ */
@ -422,8 +477,8 @@ enum range { OPT_V_ENUM };
int opt_verify(int opt, X509_VERIFY_PARAM *vpm) int opt_verify(int opt, X509_VERIFY_PARAM *vpm)
{ {
long l;
int i; int i;
ossl_intmax_t t = 0;
ASN1_OBJECT *otmp; ASN1_OBJECT *otmp;
X509_PURPOSE *xptmp; X509_PURPOSE *xptmp;
const X509_VERIFY_PARAM *vtmp; const X509_VERIFY_PARAM *vtmp;
@ -469,10 +524,14 @@ int opt_verify(int opt, X509_VERIFY_PARAM *vpm)
X509_VERIFY_PARAM_set_depth(vpm, i); X509_VERIFY_PARAM_set_depth(vpm, i);
break; break;
case OPT_V_ATTIME: case OPT_V_ATTIME:
/* If we have C99 we could use intmax_t for all time_t values */ if (!opt_imax(opt_arg(), &t))
opt_long(opt_arg(), &l); return 0;
if (l) if (t != (time_t)t) {
X509_VERIFY_PARAM_set_time(vpm, (time_t)l); BIO_printf(bio_err, "%s: epoch time out of range %s\n",
prog, opt_arg());
return 0;
}
X509_VERIFY_PARAM_set_time(vpm, (time_t)t);
break; break;
case OPT_V_VERIFY_HOSTNAME: case OPT_V_VERIFY_HOSTNAME:
if (!X509_VERIFY_PARAM_set1_host(vpm, opt_arg(), 0)) if (!X509_VERIFY_PARAM_set1_host(vpm, opt_arg(), 0))
@ -562,7 +621,10 @@ int opt_next(void)
char *p; char *p;
const OPTIONS *o; const OPTIONS *o;
int ival; int ival;
unsigned long uval; long lval;
unsigned long ulval;
ossl_intmax_t imval;
ossl_uintmax_t umval;
/* Look at current arg; at end of the list? */ /* Look at current arg; at end of the list? */
arg = NULL; arg = NULL;
@ -649,8 +711,32 @@ int opt_next(void)
return -1; return -1;
} }
break; break;
case 'M':
if (!opt_imax(arg, &imval)) {
BIO_printf(bio_err,
"%s: Invalid number \"%s\" for -%s\n",
prog, arg, o->name);
return -1;
}
break;
case 'U':
if (!opt_umax(arg, &umval)) {
BIO_printf(bio_err,
"%s: Invalid number \"%s\" for -%s\n",
prog, arg, o->name);
return -1;
}
break;
case 'L':
if (!opt_long(arg, &lval)) {
BIO_printf(bio_err,
"%s: Invalid number \"%s\" for -%s\n",
prog, arg, o->name);
return -1;
}
break;
case 'u': case 'u':
if (!opt_ulong(arg, &uval)) { if (!opt_ulong(arg, &ulval)) {
BIO_printf(bio_err, BIO_printf(bio_err,
"%s: Invalid number \"%s\" for -%s\n", "%s: Invalid number \"%s\" for -%s\n",
prog, arg, o->name); prog, arg, o->name);

View File

@ -55,6 +55,8 @@
#ifndef HEADER_OPENSSL_TYPES_H #ifndef HEADER_OPENSSL_TYPES_H
# define HEADER_OPENSSL_TYPES_H # define HEADER_OPENSSL_TYPES_H
#include <limits.h>
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
@ -199,6 +201,20 @@ typedef struct ocsp_req_ctx_st OCSP_REQ_CTX;
typedef struct ocsp_response_st OCSP_RESPONSE; typedef struct ocsp_response_st OCSP_RESPONSE;
typedef struct ocsp_responder_id_st OCSP_RESPID; typedef struct ocsp_responder_id_st OCSP_RESPID;
#if defined(INTMAX_MAX) && defined(UINTMAX_MAX)
typedef intmax_t ossl_intmax_t;
typedef uintmax_t ossl_uintmax_t;
#else
/*
* Not long long, because the C-library can only be expected to provide
* strtoll(), strtoull() at the same time as intmax_t and strtoimax(),
* strtoumax(). Since we use these for parsing arguments, we need the
* conversion functions, not just the sizes.
*/
typedef long ossl_intmax_t;
typedef unsigned long ossl_uintmax_t;
#endif
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif