]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/asn1/a_gentm.c
Move functions.
[thirdparty/openssl.git] / crypto / asn1 / a_gentm.c
CommitLineData
f6aed2cd
DSH
1/* crypto/asn1/a_gentm.c */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
0f113f3e 8 *
f6aed2cd
DSH
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
0f113f3e 15 *
f6aed2cd
DSH
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
0f113f3e 22 *
f6aed2cd
DSH
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
0f113f3e 37 * 4. If you include any Windows specific code (or a derivative thereof) from
f6aed2cd
DSH
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
0f113f3e 40 *
f6aed2cd
DSH
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 * SUCH DAMAGE.
0f113f3e 52 *
f6aed2cd
DSH
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
57 */
58
0f113f3e
MC
59/*
60 * GENERALIZEDTIME implementation, written by Steve Henson. Based on UTCTIME
61 */
f6aed2cd
DSH
62
63#include <stdio.h>
64#include <time.h>
b39fc560 65#include "internal/cryptlib.h"
ec577822 66#include <openssl/asn1.h>
1c455bc0 67#include "asn1_locl.h"
f6aed2cd 68
1c455bc0 69int asn1_generalizedtime_to_tm(struct tm *tm, const ASN1_GENERALIZEDTIME *d)
0f113f3e
MC
70{
71 static const int min[9] = { 0, 0, 1, 1, 0, 0, 0, 0, 0 };
72 static const int max[9] = { 99, 99, 12, 31, 23, 59, 59, 12, 59 };
73 char *a;
74 int n, i, l, o;
f6aed2cd 75
0f113f3e
MC
76 if (d->type != V_ASN1_GENERALIZEDTIME)
77 return (0);
78 l = d->length;
79 a = (char *)d->data;
80 o = 0;
81 /*
82 * GENERALIZEDTIME is similar to UTCTIME except the year is represented
83 * as YYYY. This stuff treats everything as a two digit field so make
84 * first two fields 00 to 99
85 */
86 if (l < 13)
87 goto err;
88 for (i = 0; i < 7; i++) {
89 if ((i == 6) && ((a[o] == 'Z') || (a[o] == '+') || (a[o] == '-'))) {
90 i++;
91 if (tm)
92 tm->tm_sec = 0;
93 break;
94 }
95 if ((a[o] < '0') || (a[o] > '9'))
96 goto err;
97 n = a[o] - '0';
98 if (++o > l)
99 goto err;
f6aed2cd 100
0f113f3e
MC
101 if ((a[o] < '0') || (a[o] > '9'))
102 goto err;
103 n = (n * 10) + a[o] - '0';
104 if (++o > l)
105 goto err;
f6aed2cd 106
0f113f3e
MC
107 if ((n < min[i]) || (n > max[i]))
108 goto err;
109 if (tm) {
110 switch (i) {
111 case 0:
112 tm->tm_year = n * 100 - 1900;
113 break;
114 case 1:
115 tm->tm_year += n;
116 break;
117 case 2:
118 tm->tm_mon = n - 1;
119 break;
120 case 3:
121 tm->tm_mday = n;
122 break;
123 case 4:
124 tm->tm_hour = n;
125 break;
126 case 5:
127 tm->tm_min = n;
128 break;
129 case 6:
130 tm->tm_sec = n;
131 break;
132 }
133 }
134 }
135 /*
136 * Optional fractional seconds: decimal point followed by one or more
137 * digits.
138 */
139 if (a[o] == '.') {
140 if (++o > l)
141 goto err;
142 i = o;
143 while ((a[o] >= '0') && (a[o] <= '9') && (o <= l))
144 o++;
145 /* Must have at least one digit after decimal point */
146 if (i == o)
147 goto err;
148 }
d46c1a81 149
0f113f3e
MC
150 if (a[o] == 'Z')
151 o++;
152 else if ((a[o] == '+') || (a[o] == '-')) {
153 int offsign = a[o] == '-' ? -1 : 1, offset = 0;
154 o++;
155 if (o + 4 > l)
156 goto err;
157 for (i = 7; i < 9; i++) {
158 if ((a[o] < '0') || (a[o] > '9'))
159 goto err;
160 n = a[o] - '0';
161 o++;
162 if ((a[o] < '0') || (a[o] > '9'))
163 goto err;
164 n = (n * 10) + a[o] - '0';
165 if ((n < min[i]) || (n > max[i]))
166 goto err;
167 if (tm) {
168 if (i == 7)
169 offset = n * 3600;
170 else if (i == 8)
171 offset += n * 60;
172 }
173 o++;
174 }
175 if (offset && !OPENSSL_gmtime_adj(tm, 0, offset * offsign))
176 return 0;
177 } else if (a[o]) {
178 /* Missing time zone information. */
179 goto err;
180 }
181 return (o == l);
182 err:
183 return (0);
184}
f6aed2cd 185
1c455bc0 186int ASN1_GENERALIZEDTIME_check(const ASN1_GENERALIZEDTIME *d)
0f113f3e
MC
187{
188 return asn1_generalizedtime_to_tm(NULL, d);
189}
1c455bc0 190
875a644a 191int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s, const char *str)
0f113f3e
MC
192{
193 ASN1_GENERALIZEDTIME t;
f6aed2cd 194
0f113f3e
MC
195 t.type = V_ASN1_GENERALIZEDTIME;
196 t.length = strlen(str);
197 t.data = (unsigned char *)str;
198 if (ASN1_GENERALIZEDTIME_check(&t)) {
199 if (s != NULL) {
200 if (!ASN1_STRING_set((ASN1_STRING *)s,
201 (unsigned char *)str, t.length))
202 return 0;
203 s->type = V_ASN1_GENERALIZEDTIME;
204 }
205 return (1);
206 } else
207 return (0);
208}
f6aed2cd 209
6b691a5c 210ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s,
0f113f3e
MC
211 time_t t)
212{
213 return ASN1_GENERALIZEDTIME_adj(s, t, 0, 0);
214}
87d3a0cd
DSH
215
216ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_adj(ASN1_GENERALIZEDTIME *s,
0f113f3e
MC
217 time_t t, int offset_day,
218 long offset_sec)
219{
220 char *p;
221 struct tm *ts;
222 struct tm data;
223 size_t len = 20;
f6aed2cd 224
0f113f3e 225 if (s == NULL)
f422a514 226 s = ASN1_GENERALIZEDTIME_new();
0f113f3e
MC
227 if (s == NULL)
228 return (NULL);
f6aed2cd 229
0f113f3e
MC
230 ts = OPENSSL_gmtime(&t, &data);
231 if (ts == NULL)
232 return (NULL);
b8e35bd6 233
0f113f3e
MC
234 if (offset_day || offset_sec) {
235 if (!OPENSSL_gmtime_adj(ts, offset_day, offset_sec))
236 return NULL;
237 }
87d3a0cd 238
0f113f3e
MC
239 p = (char *)s->data;
240 if ((p == NULL) || ((size_t)s->length < len)) {
241 p = OPENSSL_malloc(len);
242 if (p == NULL) {
243 ASN1err(ASN1_F_ASN1_GENERALIZEDTIME_ADJ, ERR_R_MALLOC_FAILURE);
244 return (NULL);
245 }
b548a1f1 246 OPENSSL_free(s->data);
0f113f3e
MC
247 s->data = (unsigned char *)p;
248 }
f6aed2cd 249
0f113f3e
MC
250 BIO_snprintf(p, len, "%04d%02d%02d%02d%02d%02dZ", ts->tm_year + 1900,
251 ts->tm_mon + 1, ts->tm_mday, ts->tm_hour, ts->tm_min,
252 ts->tm_sec);
253 s->length = strlen(p);
254 s->type = V_ASN1_GENERALIZEDTIME;
a53955d8 255#ifdef CHARSET_EBCDIC_not
0f113f3e 256 ebcdic2ascii(s->data, s->data, s->length);
a53955d8 257#endif
0f113f3e
MC
258 return (s);
259}
0d0099ea
DSH
260
261const char *_asn1_mon[12] = {
262 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
263 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
264};
265
266int ASN1_GENERALIZEDTIME_print(BIO *bp, const ASN1_GENERALIZEDTIME *tm)
267{
268 char *v;
269 int gmt = 0;
270 int i;
271 int y = 0, M = 0, d = 0, h = 0, m = 0, s = 0;
272 char *f = NULL;
273 int f_len = 0;
274
275 i = tm->length;
276 v = (char *)tm->data;
277
278 if (i < 12)
279 goto err;
280 if (v[i - 1] == 'Z')
281 gmt = 1;
282 for (i = 0; i < 12; i++)
283 if ((v[i] > '9') || (v[i] < '0'))
284 goto err;
285 y = (v[0] - '0') * 1000 + (v[1] - '0') * 100
286 + (v[2] - '0') * 10 + (v[3] - '0');
287 M = (v[4] - '0') * 10 + (v[5] - '0');
288 if ((M > 12) || (M < 1))
289 goto err;
290 d = (v[6] - '0') * 10 + (v[7] - '0');
291 h = (v[8] - '0') * 10 + (v[9] - '0');
292 m = (v[10] - '0') * 10 + (v[11] - '0');
293 if (tm->length >= 14 &&
294 (v[12] >= '0') && (v[12] <= '9') &&
295 (v[13] >= '0') && (v[13] <= '9')) {
296 s = (v[12] - '0') * 10 + (v[13] - '0');
297 /* Check for fractions of seconds. */
298 if (tm->length >= 15 && v[14] == '.') {
299 int l = tm->length;
300 f = &v[14]; /* The decimal point. */
301 f_len = 1;
302 while (14 + f_len < l && f[f_len] >= '0' && f[f_len] <= '9')
303 ++f_len;
304 }
305 }
306
307 if (BIO_printf(bp, "%s %2d %02d:%02d:%02d%.*s %d%s",
308 _asn1_mon[M - 1], d, h, m, s, f_len, f, y,
309 (gmt) ? " GMT" : "") <= 0)
310 return (0);
311 else
312 return (1);
313 err:
314 BIO_write(bp, "Bad time value", 14);
315 return (0);
316}