diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/asn1/a_utctm.c | 54 | ||||
-rw-r--r-- | src/lib/libcrypto/asn1/asn1.h | 5 | ||||
-rw-r--r-- | src/lib/libssl/src/crypto/asn1/a_utctm.c | 54 | ||||
-rw-r--r-- | src/lib/libssl/src/crypto/asn1/asn1.h | 5 |
4 files changed, 72 insertions, 46 deletions
diff --git a/src/lib/libcrypto/asn1/a_utctm.c b/src/lib/libcrypto/asn1/a_utctm.c index fa6f40cdc9..02d511789a 100644 --- a/src/lib/libcrypto/asn1/a_utctm.c +++ b/src/lib/libcrypto/asn1/a_utctm.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: a_utctm.c,v 1.30 2015/10/08 02:26:31 beck Exp $ */ | 1 | /* $OpenBSD: a_utctm.c,v 1.31 2015/10/08 02:29:11 beck Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -151,23 +151,37 @@ ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t, int offset_day, long offset_sec) | |||
151 | int | 151 | int |
152 | ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t) | 152 | ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t) |
153 | { | 153 | { |
154 | struct tm tm1; | 154 | struct tm *tm; |
155 | time_t time1; | 155 | struct tm data; |
156 | 156 | int offset; | |
157 | /* | 157 | int year; |
158 | * This funciton has never handled failure conditions properly | 158 | |
159 | * and should be deprecated. BoringSSL makes it return -2 on | 159 | #define g2(p) (((p)[0]-'0')*10+(p)[1]-'0') |
160 | * failures, the OpenSSL version follows NULL pointers instead. | 160 | |
161 | */ | 161 | if (s->data[12] == 'Z') |
162 | if (asn1_time_parse(s->data, s->length, &tm1, V_ASN1_UTCTIME) == -1) | 162 | offset = 0; |
163 | return (-2); /* XXX */ | 163 | else { |
164 | 164 | offset = g2(s->data + 13)*60 + g2(s->data + 15); | |
165 | if ((time1 = timegm(&tm1)) == -1) | 165 | if (s->data[12] == '-') |
166 | return (-2); /* XXX */ | 166 | offset = -offset; |
167 | 167 | } | |
168 | if (time1 < t) | 168 | |
169 | return (-1); | 169 | t -= offset * 60; /* FIXME: may overflow in extreme cases */ |
170 | if (time1 > t) | 170 | |
171 | return (1); | 171 | tm = gmtime_r(&t, &data); |
172 | return (0); | 172 | |
173 | #define return_cmp(a,b) if ((a)<(b)) return -1; else if ((a)>(b)) return 1 | ||
174 | year = g2(s->data); | ||
175 | if (year < 50) | ||
176 | year += 100; | ||
177 | return_cmp(year, tm->tm_year); | ||
178 | return_cmp(g2(s->data + 2) - 1, tm->tm_mon); | ||
179 | return_cmp(g2(s->data + 4), tm->tm_mday); | ||
180 | return_cmp(g2(s->data + 6), tm->tm_hour); | ||
181 | return_cmp(g2(s->data + 8), tm->tm_min); | ||
182 | return_cmp(g2(s->data + 10), tm->tm_sec); | ||
183 | #undef g2 | ||
184 | #undef return_cmp | ||
185 | |||
186 | return 0; | ||
173 | } | 187 | } |
diff --git a/src/lib/libcrypto/asn1/asn1.h b/src/lib/libcrypto/asn1/asn1.h index c0d0f9288f..d1626944b7 100644 --- a/src/lib/libcrypto/asn1/asn1.h +++ b/src/lib/libcrypto/asn1/asn1.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: asn1.h,v 1.31 2015/10/08 02:26:31 beck Exp $ */ | 1 | /* $OpenBSD: asn1.h,v 1.32 2015/10/08 02:29:11 beck Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -812,9 +812,8 @@ ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t); | |||
812 | ASN1_UTCTIME *ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t, | 812 | ASN1_UTCTIME *ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t, |
813 | int offset_day, long offset_sec); | 813 | int offset_day, long offset_sec); |
814 | int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, const char *str); | 814 | int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, const char *str); |
815 | #ifndef LIBRESSL_INTERNAL | ||
816 | int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t); | 815 | int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t); |
817 | #endif | 816 | |
818 | int ASN1_GENERALIZEDTIME_check(ASN1_GENERALIZEDTIME *a); | 817 | int ASN1_GENERALIZEDTIME_check(ASN1_GENERALIZEDTIME *a); |
819 | ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s, | 818 | ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s, |
820 | time_t t); | 819 | time_t t); |
diff --git a/src/lib/libssl/src/crypto/asn1/a_utctm.c b/src/lib/libssl/src/crypto/asn1/a_utctm.c index fa6f40cdc9..02d511789a 100644 --- a/src/lib/libssl/src/crypto/asn1/a_utctm.c +++ b/src/lib/libssl/src/crypto/asn1/a_utctm.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: a_utctm.c,v 1.30 2015/10/08 02:26:31 beck Exp $ */ | 1 | /* $OpenBSD: a_utctm.c,v 1.31 2015/10/08 02:29:11 beck Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -151,23 +151,37 @@ ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t, int offset_day, long offset_sec) | |||
151 | int | 151 | int |
152 | ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t) | 152 | ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t) |
153 | { | 153 | { |
154 | struct tm tm1; | 154 | struct tm *tm; |
155 | time_t time1; | 155 | struct tm data; |
156 | 156 | int offset; | |
157 | /* | 157 | int year; |
158 | * This funciton has never handled failure conditions properly | 158 | |
159 | * and should be deprecated. BoringSSL makes it return -2 on | 159 | #define g2(p) (((p)[0]-'0')*10+(p)[1]-'0') |
160 | * failures, the OpenSSL version follows NULL pointers instead. | 160 | |
161 | */ | 161 | if (s->data[12] == 'Z') |
162 | if (asn1_time_parse(s->data, s->length, &tm1, V_ASN1_UTCTIME) == -1) | 162 | offset = 0; |
163 | return (-2); /* XXX */ | 163 | else { |
164 | 164 | offset = g2(s->data + 13)*60 + g2(s->data + 15); | |
165 | if ((time1 = timegm(&tm1)) == -1) | 165 | if (s->data[12] == '-') |
166 | return (-2); /* XXX */ | 166 | offset = -offset; |
167 | 167 | } | |
168 | if (time1 < t) | 168 | |
169 | return (-1); | 169 | t -= offset * 60; /* FIXME: may overflow in extreme cases */ |
170 | if (time1 > t) | 170 | |
171 | return (1); | 171 | tm = gmtime_r(&t, &data); |
172 | return (0); | 172 | |
173 | #define return_cmp(a,b) if ((a)<(b)) return -1; else if ((a)>(b)) return 1 | ||
174 | year = g2(s->data); | ||
175 | if (year < 50) | ||
176 | year += 100; | ||
177 | return_cmp(year, tm->tm_year); | ||
178 | return_cmp(g2(s->data + 2) - 1, tm->tm_mon); | ||
179 | return_cmp(g2(s->data + 4), tm->tm_mday); | ||
180 | return_cmp(g2(s->data + 6), tm->tm_hour); | ||
181 | return_cmp(g2(s->data + 8), tm->tm_min); | ||
182 | return_cmp(g2(s->data + 10), tm->tm_sec); | ||
183 | #undef g2 | ||
184 | #undef return_cmp | ||
185 | |||
186 | return 0; | ||
173 | } | 187 | } |
diff --git a/src/lib/libssl/src/crypto/asn1/asn1.h b/src/lib/libssl/src/crypto/asn1/asn1.h index c0d0f9288f..d1626944b7 100644 --- a/src/lib/libssl/src/crypto/asn1/asn1.h +++ b/src/lib/libssl/src/crypto/asn1/asn1.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: asn1.h,v 1.31 2015/10/08 02:26:31 beck Exp $ */ | 1 | /* $OpenBSD: asn1.h,v 1.32 2015/10/08 02:29:11 beck Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -812,9 +812,8 @@ ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t); | |||
812 | ASN1_UTCTIME *ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t, | 812 | ASN1_UTCTIME *ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t, |
813 | int offset_day, long offset_sec); | 813 | int offset_day, long offset_sec); |
814 | int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, const char *str); | 814 | int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, const char *str); |
815 | #ifndef LIBRESSL_INTERNAL | ||
816 | int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t); | 815 | int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t); |
817 | #endif | 816 | |
818 | int ASN1_GENERALIZEDTIME_check(ASN1_GENERALIZEDTIME *a); | 817 | int ASN1_GENERALIZEDTIME_check(ASN1_GENERALIZEDTIME *a); |
819 | ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s, | 818 | ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s, |
820 | time_t t); | 819 | time_t t); |