2016-05-18 02:51:34 +08:00
|
|
|
/*
|
2017-07-06 09:39:03 +08:00
|
|
|
* Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
|
1998-12-21 18:52:47 +08:00
|
|
|
*
|
2018-12-06 20:17:34 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 02:51:34 +08:00
|
|
|
* 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 18:52:47 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <time.h>
|
2015-05-14 22:56:48 +08:00
|
|
|
#include "internal/cryptlib.h"
|
2001-02-20 21:22:35 +08:00
|
|
|
#include <openssl/asn1.h>
|
2012-11-19 23:12:07 +08:00
|
|
|
#include "asn1_locl.h"
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2017-08-04 09:24:03 +08:00
|
|
|
/* This is the primary function used to parse ASN1_UTCTIME */
|
2012-11-19 23:12:07 +08:00
|
|
|
int asn1_utctime_to_tm(struct tm *tm, const ASN1_UTCTIME *d)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
2018-12-10 17:39:24 +08:00
|
|
|
/* wrapper around asn1_time_to_tm */
|
2015-01-22 11:40:55 +08:00
|
|
|
if (d->type != V_ASN1_UTCTIME)
|
2017-07-06 09:39:03 +08:00
|
|
|
return 0;
|
2017-07-11 03:01:24 +08:00
|
|
|
return asn1_time_to_tm(tm, d);
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2012-11-19 23:12:07 +08:00
|
|
|
|
|
|
|
int ASN1_UTCTIME_check(const ASN1_UTCTIME *d)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
return asn1_utctime_to_tm(NULL, d);
|
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2017-08-04 09:24:03 +08:00
|
|
|
/* Sets the string via simple copy without cleaning it up */
|
2004-03-16 07:15:26 +08:00
|
|
|
int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, const char *str)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
ASN1_UTCTIME t;
|
|
|
|
|
|
|
|
t.type = V_ASN1_UTCTIME;
|
|
|
|
t.length = strlen(str);
|
|
|
|
t.data = (unsigned char *)str;
|
2017-06-12 04:36:07 +08:00
|
|
|
t.flags = 0;
|
|
|
|
|
2017-08-04 09:24:03 +08:00
|
|
|
if (!ASN1_UTCTIME_check(&t))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (s != NULL && !ASN1_STRING_copy(s, &t))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
1998-12-21 18:56:39 +08:00
|
|
|
|
1999-04-20 05:31:43 +08:00
|
|
|
ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
return ASN1_UTCTIME_adj(s, t, 0, 0);
|
|
|
|
}
|
2008-10-08 06:55:27 +08:00
|
|
|
|
|
|
|
ASN1_UTCTIME *ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t,
|
2015-01-22 11:40:55 +08:00
|
|
|
int offset_day, long offset_sec)
|
|
|
|
{
|
|
|
|
struct tm *ts;
|
|
|
|
struct tm data;
|
|
|
|
|
|
|
|
ts = OPENSSL_gmtime(&t, &data);
|
|
|
|
if (ts == NULL)
|
2017-08-04 09:24:03 +08:00
|
|
|
return NULL;
|
2015-01-22 11:40:55 +08:00
|
|
|
|
|
|
|
if (offset_day || offset_sec) {
|
|
|
|
if (!OPENSSL_gmtime_adj(ts, offset_day, offset_sec))
|
2017-08-04 09:24:03 +08:00
|
|
|
return NULL;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
|
2017-08-04 09:24:03 +08:00
|
|
|
return asn1_time_from_tm(s, ts, V_ASN1_UTCTIME);
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2000-09-06 23:40:52 +08:00
|
|
|
|
|
|
|
int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
struct tm stm, ttm;
|
|
|
|
int day, sec;
|
|
|
|
|
|
|
|
if (!asn1_utctime_to_tm(&stm, s))
|
|
|
|
return -2;
|
|
|
|
|
2017-07-27 12:54:27 +08:00
|
|
|
if (OPENSSL_gmtime(&t, &ttm) == NULL)
|
2015-01-22 11:40:55 +08:00
|
|
|
return -2;
|
|
|
|
|
2015-01-31 18:22:47 +08:00
|
|
|
if (!OPENSSL_gmtime_diff(&day, &sec, &ttm, &stm))
|
2015-01-22 11:40:55 +08:00
|
|
|
return -2;
|
|
|
|
|
2017-08-04 09:24:03 +08:00
|
|
|
if (day > 0 || sec > 0)
|
2015-01-22 11:40:55 +08:00
|
|
|
return 1;
|
2017-08-04 09:24:03 +08:00
|
|
|
if (day < 0 || sec < 0)
|
2015-01-22 11:40:55 +08:00
|
|
|
return -1;
|
|
|
|
return 0;
|
|
|
|
}
|
2015-09-22 23:05:33 +08:00
|
|
|
|
|
|
|
int ASN1_UTCTIME_print(BIO *bp, const ASN1_UTCTIME *tm)
|
|
|
|
{
|
2017-07-31 08:14:58 +08:00
|
|
|
if (tm->type != V_ASN1_UTCTIME)
|
|
|
|
return 0;
|
|
|
|
return ASN1_TIME_print(bp, tm);
|
2015-09-22 23:05:33 +08:00
|
|
|
}
|