2016-05-17 14:51:34 -04:00
|
|
|
/*
|
2017-07-06 11:39:03 +10:00
|
|
|
* Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
|
1998-12-21 10:52:47 +00:00
|
|
|
*
|
2016-05-17 14:51:34 -04:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
1998-12-21 10:52:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <time.h>
|
2015-05-14 16:56:48 +02:00
|
|
|
#include "internal/cryptlib.h"
|
2001-02-20 13:22:35 +00:00
|
|
|
#include <openssl/asn1.h>
|
2012-11-19 15:12:07 +00:00
|
|
|
#include "asn1_locl.h"
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2012-11-19 15:12:07 +00:00
|
|
|
int asn1_utctime_to_tm(struct tm *tm, const ASN1_UTCTIME *d)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
2017-07-11 03:01:24 +08:00
|
|
|
/* wrapper around ans1_time_to_tm */
|
2015-01-22 03:40:55 +00:00
|
|
|
if (d->type != V_ASN1_UTCTIME)
|
2017-07-06 11:39:03 +10:00
|
|
|
return 0;
|
2017-07-11 03:01:24 +08:00
|
|
|
return asn1_time_to_tm(tm, d);
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2012-11-19 15:12:07 +00:00
|
|
|
|
|
|
|
int ASN1_UTCTIME_check(const ASN1_UTCTIME *d)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
return asn1_utctime_to_tm(NULL, d);
|
|
|
|
}
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2004-03-15 23:15:26 +00:00
|
|
|
int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, const char *str)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
ASN1_UTCTIME t;
|
|
|
|
|
|
|
|
t.type = V_ASN1_UTCTIME;
|
|
|
|
t.length = strlen(str);
|
|
|
|
t.data = (unsigned char *)str;
|
2017-06-11 16:36:07 -04:00
|
|
|
t.flags = 0;
|
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (ASN1_UTCTIME_check(&t)) {
|
|
|
|
if (s != NULL) {
|
2016-08-06 17:54:32 +02:00
|
|
|
if (!ASN1_STRING_set((ASN1_STRING *)s, str, t.length))
|
2015-01-22 03:40:55 +00:00
|
|
|
return 0;
|
|
|
|
s->type = V_ASN1_UTCTIME;
|
|
|
|
}
|
2017-07-06 11:39:03 +10:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
1998-12-21 10:56:39 +00:00
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
return ASN1_UTCTIME_adj(s, t, 0, 0);
|
|
|
|
}
|
2008-10-07 22:55:27 +00:00
|
|
|
|
|
|
|
ASN1_UTCTIME *ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t,
|
2015-01-22 03:40:55 +00:00
|
|
|
int offset_day, long offset_sec)
|
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
struct tm *ts;
|
|
|
|
struct tm data;
|
2017-07-06 11:39:03 +10:00
|
|
|
const size_t len = 20;
|
2015-01-22 03:40:55 +00:00
|
|
|
int free_s = 0;
|
|
|
|
|
|
|
|
if (s == NULL) {
|
2015-03-14 04:16:42 +00:00
|
|
|
s = ASN1_UTCTIME_new();
|
2015-03-24 07:52:24 -04:00
|
|
|
if (s == NULL)
|
|
|
|
goto err;
|
|
|
|
free_s = 1;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ts = OPENSSL_gmtime(&t, &data);
|
|
|
|
if (ts == NULL)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
if (offset_day || offset_sec) {
|
|
|
|
if (!OPENSSL_gmtime_adj(ts, offset_day, offset_sec))
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((ts->tm_year < 50) || (ts->tm_year >= 150))
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
p = (char *)s->data;
|
|
|
|
if ((p == NULL) || ((size_t)s->length < len)) {
|
|
|
|
p = OPENSSL_malloc(len);
|
|
|
|
if (p == NULL) {
|
|
|
|
ASN1err(ASN1_F_ASN1_UTCTIME_ADJ, ERR_R_MALLOC_FAILURE);
|
|
|
|
goto err;
|
|
|
|
}
|
2015-05-01 10:02:07 -04:00
|
|
|
OPENSSL_free(s->data);
|
2015-01-22 03:40:55 +00:00
|
|
|
s->data = (unsigned char *)p;
|
|
|
|
}
|
|
|
|
|
2017-07-06 11:39:03 +10:00
|
|
|
s->length = BIO_snprintf(p, len, "%02d%02d%02d%02d%02d%02dZ",
|
|
|
|
ts->tm_year % 100, ts->tm_mon + 1, ts->tm_mday,
|
|
|
|
ts->tm_hour, ts->tm_min, ts->tm_sec);
|
2015-01-22 03:40:55 +00:00
|
|
|
s->type = V_ASN1_UTCTIME;
|
1999-06-04 21:35:58 +00:00
|
|
|
#ifdef CHARSET_EBCDIC_not
|
2015-01-22 03:40:55 +00:00
|
|
|
ebcdic2ascii(s->data, s->data, s->length);
|
1999-06-04 21:35:58 +00:00
|
|
|
#endif
|
2017-07-06 11:39:03 +10:00
|
|
|
return s;
|
2015-01-22 03:40:55 +00:00
|
|
|
err:
|
2015-03-24 07:52:24 -04:00
|
|
|
if (free_s)
|
2015-03-14 04:16:42 +00:00
|
|
|
ASN1_UTCTIME_free(s);
|
2015-01-22 03:40:55 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2000-09-06 15:40:52 +00:00
|
|
|
|
|
|
|
int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
struct tm stm, ttm;
|
|
|
|
int day, sec;
|
|
|
|
|
|
|
|
if (!asn1_utctime_to_tm(&stm, s))
|
|
|
|
return -2;
|
|
|
|
|
2017-07-27 14:54:27 +10:00
|
|
|
if (OPENSSL_gmtime(&t, &ttm) == NULL)
|
2015-01-22 03:40:55 +00:00
|
|
|
return -2;
|
|
|
|
|
2015-01-31 02:22:47 -08:00
|
|
|
if (!OPENSSL_gmtime_diff(&day, &sec, &ttm, &stm))
|
2015-01-22 03:40:55 +00:00
|
|
|
return -2;
|
|
|
|
|
|
|
|
if (day > 0)
|
|
|
|
return 1;
|
|
|
|
if (day < 0)
|
|
|
|
return -1;
|
|
|
|
if (sec > 0)
|
|
|
|
return 1;
|
|
|
|
if (sec < 0)
|
|
|
|
return -1;
|
|
|
|
return 0;
|
|
|
|
}
|
2015-09-22 16:05:33 +01:00
|
|
|
|
|
|
|
int ASN1_UTCTIME_print(BIO *bp, const ASN1_UTCTIME *tm)
|
|
|
|
{
|
2017-07-30 20:14:58 -04:00
|
|
|
if (tm->type != V_ASN1_UTCTIME)
|
|
|
|
return 0;
|
|
|
|
return ASN1_TIME_print(bp, tm);
|
2015-09-22 16:05:33 +01:00
|
|
|
}
|