Coverage Report

Created: 2025-08-28 07:07

/src/openssl35/crypto/x509/v3_timespec.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2024 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the Apache License 2.0 (the "License").  You may not use
5
 * this file except in compliance with the License.  You can obtain a copy
6
 * in the file LICENSE in the source distribution or at
7
 * https://www.openssl.org/source/license.html
8
 */
9
10
#include <stdio.h>
11
#include <openssl/asn1t.h>
12
#include <openssl/x509v3.h>
13
#include <crypto/asn1.h>
14
#include "ext_dat.h"
15
16
static const char *WEEKDAY_NAMES[7] = {
17
    "SUN",
18
    "MON",
19
    "TUE",
20
    "WED",
21
    "THU",
22
    "FRI",
23
    "SAT"
24
};
25
26
static const char *WEEK_NAMES[5] = {
27
    "first",
28
    "second",
29
    "third",
30
    "fourth",
31
    "final"
32
};
33
34
static const char *MONTH_NAMES[12] = {
35
    "JAN",
36
    "FEB",
37
    "MAR",
38
    "APR",
39
    "MAY",
40
    "JUN",
41
    "JUL",
42
    "AUG",
43
    "SEPT",
44
    "OCT",
45
    "NOV",
46
    "DEC"
47
};
48
49
ASN1_SEQUENCE(OSSL_TIME_SPEC_ABSOLUTE) = {
50
    ASN1_EXP_OPT(OSSL_TIME_SPEC_ABSOLUTE, startTime, ASN1_GENERALIZEDTIME, 0),
51
    ASN1_EXP_OPT(OSSL_TIME_SPEC_ABSOLUTE, endTime, ASN1_GENERALIZEDTIME, 1),
52
} ASN1_SEQUENCE_END(OSSL_TIME_SPEC_ABSOLUTE)
53
54
ASN1_SEQUENCE(OSSL_DAY_TIME) = {
55
    ASN1_EXP_OPT(OSSL_DAY_TIME, hour, ASN1_INTEGER, 0),
56
    ASN1_EXP_OPT(OSSL_DAY_TIME, minute, ASN1_INTEGER, 1),
57
    ASN1_EXP_OPT(OSSL_DAY_TIME, second, ASN1_INTEGER, 2),
58
} ASN1_SEQUENCE_END(OSSL_DAY_TIME)
59
60
ASN1_SEQUENCE(OSSL_DAY_TIME_BAND) = {
61
    ASN1_EXP_OPT(OSSL_DAY_TIME_BAND, startDayTime, OSSL_DAY_TIME, 0),
62
    ASN1_EXP_OPT(OSSL_DAY_TIME_BAND, endDayTime, OSSL_DAY_TIME, 1),
63
} ASN1_SEQUENCE_END(OSSL_DAY_TIME_BAND)
64
65
ASN1_CHOICE(OSSL_NAMED_DAY) = {
66
    ASN1_SET_OF(OSSL_NAMED_DAY, choice.intNamedDays, ASN1_ENUMERATED),
67
    ASN1_SIMPLE(OSSL_NAMED_DAY, choice.bitNamedDays, ASN1_BIT_STRING),
68
} ASN1_CHOICE_END(OSSL_NAMED_DAY)
69
70
ASN1_CHOICE(OSSL_TIME_SPEC_X_DAY_OF) = {
71
    ASN1_EXP(OSSL_TIME_SPEC_X_DAY_OF, choice.first, OSSL_NAMED_DAY, 1),
72
    ASN1_EXP(OSSL_TIME_SPEC_X_DAY_OF, choice.second, OSSL_NAMED_DAY, 2),
73
    ASN1_EXP(OSSL_TIME_SPEC_X_DAY_OF, choice.third, OSSL_NAMED_DAY, 3),
74
    ASN1_EXP(OSSL_TIME_SPEC_X_DAY_OF, choice.fourth, OSSL_NAMED_DAY, 4),
75
    ASN1_EXP(OSSL_TIME_SPEC_X_DAY_OF, choice.fifth, OSSL_NAMED_DAY, 5),
76
} ASN1_CHOICE_END(OSSL_TIME_SPEC_X_DAY_OF)
77
78
ASN1_CHOICE(OSSL_TIME_SPEC_DAY) = {
79
    ASN1_SET_OF(OSSL_TIME_SPEC_DAY, choice.intDay, ASN1_INTEGER),
80
    ASN1_SIMPLE(OSSL_TIME_SPEC_DAY, choice.bitDay, ASN1_BIT_STRING),
81
    ASN1_SIMPLE(OSSL_TIME_SPEC_DAY, choice.dayOf, OSSL_TIME_SPEC_X_DAY_OF),
82
} ASN1_CHOICE_END(OSSL_TIME_SPEC_DAY)
83
84
ASN1_CHOICE(OSSL_TIME_SPEC_WEEKS) = {
85
    ASN1_SIMPLE(OSSL_TIME_SPEC_WEEKS, choice.allWeeks, ASN1_NULL),
86
    ASN1_SET_OF(OSSL_TIME_SPEC_WEEKS, choice.intWeek, ASN1_INTEGER),
87
    ASN1_SIMPLE(OSSL_TIME_SPEC_WEEKS, choice.bitWeek, ASN1_BIT_STRING),
88
} ASN1_CHOICE_END(OSSL_TIME_SPEC_WEEKS)
89
90
ASN1_CHOICE(OSSL_TIME_SPEC_MONTH) = {
91
    ASN1_SIMPLE(OSSL_TIME_SPEC_MONTH, choice.allMonths, ASN1_NULL),
92
    ASN1_SET_OF(OSSL_TIME_SPEC_MONTH, choice.intMonth, ASN1_INTEGER),
93
    ASN1_SIMPLE(OSSL_TIME_SPEC_MONTH, choice.bitMonth, ASN1_BIT_STRING),
94
} ASN1_CHOICE_END(OSSL_TIME_SPEC_MONTH)
95
96
ASN1_SEQUENCE(OSSL_TIME_PERIOD) = {
97
    ASN1_EXP_SET_OF_OPT(OSSL_TIME_PERIOD, timesOfDay, OSSL_DAY_TIME_BAND, 0),
98
    ASN1_EXP_OPT(OSSL_TIME_PERIOD, days, OSSL_TIME_SPEC_DAY, 1),
99
    ASN1_EXP_OPT(OSSL_TIME_PERIOD, weeks, OSSL_TIME_SPEC_WEEKS, 2),
100
    ASN1_EXP_OPT(OSSL_TIME_PERIOD, months, OSSL_TIME_SPEC_MONTH, 3),
101
    ASN1_EXP_SET_OF_OPT(OSSL_TIME_PERIOD, years, ASN1_INTEGER, 4),
102
} ASN1_SEQUENCE_END(OSSL_TIME_PERIOD)
103
104
ASN1_CHOICE(OSSL_TIME_SPEC_TIME) = {
105
    ASN1_SIMPLE(OSSL_TIME_SPEC_TIME, choice.absolute, OSSL_TIME_SPEC_ABSOLUTE),
106
    ASN1_SET_OF(OSSL_TIME_SPEC_TIME, choice.periodic, OSSL_TIME_PERIOD)
107
} ASN1_CHOICE_END(OSSL_TIME_SPEC_TIME)
108
109
ASN1_SEQUENCE(OSSL_TIME_SPEC) = {
110
    ASN1_SIMPLE(OSSL_TIME_SPEC, time, OSSL_TIME_SPEC_TIME),
111
    ASN1_OPT(OSSL_TIME_SPEC, notThisTime, ASN1_FBOOLEAN),
112
    ASN1_OPT(OSSL_TIME_SPEC, timeZone, ASN1_INTEGER),
113
} ASN1_SEQUENCE_END(OSSL_TIME_SPEC)
114
115
IMPLEMENT_ASN1_FUNCTIONS(OSSL_DAY_TIME)
116
IMPLEMENT_ASN1_FUNCTIONS(OSSL_DAY_TIME_BAND)
117
IMPLEMENT_ASN1_FUNCTIONS(OSSL_TIME_SPEC_DAY)
118
IMPLEMENT_ASN1_FUNCTIONS(OSSL_TIME_SPEC_WEEKS)
119
IMPLEMENT_ASN1_FUNCTIONS(OSSL_TIME_SPEC_MONTH)
120
IMPLEMENT_ASN1_FUNCTIONS(OSSL_NAMED_DAY)
121
IMPLEMENT_ASN1_FUNCTIONS(OSSL_TIME_SPEC_X_DAY_OF)
122
IMPLEMENT_ASN1_FUNCTIONS(OSSL_TIME_SPEC_ABSOLUTE)
123
IMPLEMENT_ASN1_FUNCTIONS(OSSL_TIME_SPEC_TIME)
124
IMPLEMENT_ASN1_FUNCTIONS(OSSL_TIME_SPEC)
125
IMPLEMENT_ASN1_FUNCTIONS(OSSL_TIME_PERIOD)
126
127
static int i2r_OSSL_TIME_SPEC_ABSOLUTE(X509V3_EXT_METHOD *method,
128
                                       OSSL_TIME_SPEC_ABSOLUTE *time,
129
                                       BIO *out, int indent)
130
1.69k
{
131
1.69k
    if (time->startTime != NULL && time->endTime != NULL) {
132
0
        if (!BIO_puts(out, "Any time between "))
133
0
            return 0;
134
0
        if (!ossl_asn1_time_print_ex(out, time->startTime, 0))
135
0
            return 0;
136
0
        if (!BIO_puts(out, " and "))
137
0
            return 0;
138
0
        if (!ossl_asn1_time_print_ex(out, time->endTime, 0))
139
0
            return 0;
140
1.69k
    } else if (time->startTime != NULL) {
141
0
        if (!BIO_puts(out, "Any time after "))
142
0
            return 0;
143
0
        if (!ossl_asn1_time_print_ex(out, time->startTime, 0))
144
0
            return 0;
145
0
        if (BIO_printf(out, "%.*s", time->startTime->length, time->startTime->data) <= 0)
146
0
            return 0;
147
1.69k
    } else if (time->endTime != NULL) {
148
0
        if (!BIO_puts(out, "Any time until "))
149
0
            return 0;
150
0
        if (!ossl_asn1_time_print_ex(out, time->endTime, 0))
151
0
            return 0;
152
1.69k
    } else { /* Invalid: there must be SOME time specified. */
153
1.69k
        return BIO_puts(out, "INVALID (EMPTY)");
154
1.69k
    }
155
0
    return 1;
156
1.69k
}
157
158
static int i2r_OSSL_DAY_TIME(X509V3_EXT_METHOD *method,
159
                             OSSL_DAY_TIME *dt,
160
                             BIO *out, int indent)
161
13
{
162
13
    int64_t h = 0;
163
13
    int64_t m = 0;
164
13
    int64_t s = 0;
165
166
13
    if (!dt->hour || !ASN1_INTEGER_get_int64(&h, dt->hour))
167
13
        return 0;
168
0
    if (dt->minute && !ASN1_INTEGER_get_int64(&m, dt->minute))
169
0
        return 0;
170
0
    if (dt->minute && !ASN1_INTEGER_get_int64(&s, dt->second))
171
0
        return 0;
172
0
    return BIO_printf(out, "%02lld:%02lld:%02lld",
173
0
                      (long long int)h, (long long int)m, (long long int)s) > 0;
174
0
}
175
176
static int i2r_OSSL_DAY_TIME_BAND(X509V3_EXT_METHOD *method,
177
                                  OSSL_DAY_TIME_BAND *band,
178
                                  BIO *out, int indent)
179
635
{
180
635
    if (band->startDayTime) {
181
10
        if (!i2r_OSSL_DAY_TIME(method, band->startDayTime, out, indent))
182
10
            return 0;
183
625
    } else if (!BIO_puts(out, "00:00:00")) {
184
0
        return 0;
185
0
    }
186
625
    if (!BIO_puts(out, " - "))
187
0
        return 0;
188
625
    if (band->endDayTime) {
189
3
        if (!i2r_OSSL_DAY_TIME(method, band->endDayTime, out, indent))
190
3
            return 0;
191
622
    } else if (!BIO_puts(out, "23:59:59")) {
192
0
        return 0;
193
0
    }
194
622
    return 1;
195
625
}
196
197
static int print_int_month(BIO *out, int64_t month)
198
239
{
199
239
    switch (month) {
200
73
    case (OSSL_TIME_SPEC_INT_MONTH_JAN):
201
73
        return BIO_puts(out, "JAN");
202
8
    case (OSSL_TIME_SPEC_INT_MONTH_FEB):
203
8
        return BIO_puts(out, "FEB");
204
4
    case (OSSL_TIME_SPEC_INT_MONTH_MAR):
205
4
        return BIO_puts(out, "MAR");
206
3
    case (OSSL_TIME_SPEC_INT_MONTH_APR):
207
3
        return BIO_puts(out, "APR");
208
3
    case (OSSL_TIME_SPEC_INT_MONTH_MAY):
209
3
        return BIO_puts(out, "MAY");
210
6
    case (OSSL_TIME_SPEC_INT_MONTH_JUN):
211
6
        return BIO_puts(out, "JUN");
212
0
    case (OSSL_TIME_SPEC_INT_MONTH_JUL):
213
0
        return BIO_puts(out, "JUL");
214
7
    case (OSSL_TIME_SPEC_INT_MONTH_AUG):
215
7
        return BIO_puts(out, "AUG");
216
2
    case (OSSL_TIME_SPEC_INT_MONTH_SEP):
217
2
        return BIO_puts(out, "SEP");
218
3
    case (OSSL_TIME_SPEC_INT_MONTH_OCT):
219
3
        return BIO_puts(out, "OCT");
220
1
    case (OSSL_TIME_SPEC_INT_MONTH_NOV):
221
1
        return BIO_puts(out, "NOV");
222
3
    case (OSSL_TIME_SPEC_INT_MONTH_DEC):
223
3
        return BIO_puts(out, "DEC");
224
126
    default:
225
126
        return 0;
226
239
    }
227
0
    return 0;
228
239
}
229
230
static int print_bit_month(BIO *out, ASN1_BIT_STRING *bs)
231
198
{
232
198
    int i = OSSL_TIME_SPEC_BIT_MONTH_JAN;
233
198
    int j = 0;
234
235
2.57k
    for (; i <= OSSL_TIME_SPEC_BIT_MONTH_DEC; i++) {
236
2.37k
        if (ASN1_BIT_STRING_get_bit(bs, i)) {
237
1.19k
            if (j > 0 && !BIO_puts(out, ", "))
238
0
                return 0;
239
1.19k
            j++;
240
1.19k
            if (!BIO_puts(out, MONTH_NAMES[i]))
241
0
                return 0;
242
1.19k
        }
243
2.37k
    }
244
198
    return 1;
245
198
}
246
247
/*
248
 * It might seem like you could just print the bits of the string numerically,
249
 * but the fifth bit has the special meaning of "the final week" imputed to it
250
 * by the text of ITU-T Recommendation X.520.
251
 */
252
static int print_bit_week(BIO *out, ASN1_BIT_STRING *bs)
253
54
{
254
54
    int i = OSSL_TIME_SPEC_BIT_WEEKS_1;
255
54
    int j = 0;
256
257
324
    for (; i <= OSSL_TIME_SPEC_BIT_WEEKS_5; i++) {
258
270
        if (ASN1_BIT_STRING_get_bit(bs, i)) {
259
183
            if (j > 0 && !BIO_puts(out, ", "))
260
0
                return 0;
261
183
            j++;
262
183
            if (!BIO_puts(out, WEEK_NAMES[i]))
263
0
                return 0;
264
183
        }
265
270
    }
266
54
    return 1;
267
54
}
268
269
static int print_day_of_week(BIO *out, ASN1_BIT_STRING *bs)
270
670
{
271
670
    int i = OSSL_TIME_SPEC_DAY_BIT_SUN;
272
670
    int j = 0;
273
274
5.36k
    for (; i <= OSSL_TIME_SPEC_DAY_BIT_SAT; i++) {
275
4.69k
        if (ASN1_BIT_STRING_get_bit(bs, i)) {
276
3.13k
            if (j > 0 && !BIO_puts(out, ", "))
277
0
                return 0;
278
3.13k
            j++;
279
3.13k
            if (!BIO_puts(out, WEEKDAY_NAMES[i]))
280
0
                return 0;
281
3.13k
        }
282
4.69k
    }
283
670
    return 1;
284
670
}
285
286
static int print_int_day_of_week(BIO *out, int64_t dow)
287
0
{
288
0
    switch (dow) {
289
0
    case (OSSL_TIME_SPEC_DAY_INT_SUN):
290
0
        return BIO_puts(out, "SUN");
291
0
    case (OSSL_TIME_SPEC_DAY_INT_MON):
292
0
        return BIO_puts(out, "MON");
293
0
    case (OSSL_TIME_SPEC_DAY_INT_TUE):
294
0
        return BIO_puts(out, "TUE");
295
0
    case (OSSL_TIME_SPEC_DAY_INT_WED):
296
0
        return BIO_puts(out, "WED");
297
0
    case (OSSL_TIME_SPEC_DAY_INT_THU):
298
0
        return BIO_puts(out, "THU");
299
0
    case (OSSL_TIME_SPEC_DAY_INT_FRI):
300
0
        return BIO_puts(out, "FRI");
301
0
    case (OSSL_TIME_SPEC_DAY_INT_SAT):
302
0
        return BIO_puts(out, "SAT");
303
0
    default:
304
0
        return 0;
305
0
    }
306
0
    return 0;
307
0
}
308
309
static int print_int_named_day(BIO *out, int64_t nd)
310
0
{
311
0
    switch (nd) {
312
0
    case (OSSL_NAMED_DAY_INT_SUN):
313
0
        return BIO_puts(out, "SUN");
314
0
    case (OSSL_NAMED_DAY_INT_MON):
315
0
        return BIO_puts(out, "MON");
316
0
    case (OSSL_NAMED_DAY_INT_TUE):
317
0
        return BIO_puts(out, "TUE");
318
0
    case (OSSL_NAMED_DAY_INT_WED):
319
0
        return BIO_puts(out, "WED");
320
0
    case (OSSL_NAMED_DAY_INT_THU):
321
0
        return BIO_puts(out, "THU");
322
0
    case (OSSL_NAMED_DAY_INT_FRI):
323
0
        return BIO_puts(out, "FRI");
324
0
    case (OSSL_NAMED_DAY_INT_SAT):
325
0
        return BIO_puts(out, "SAT");
326
0
    default:
327
0
        return 0;
328
0
    }
329
0
    return 0;
330
0
}
331
332
static int print_bit_named_day(BIO *out, ASN1_BIT_STRING *bs)
333
606
{
334
606
    return print_day_of_week(out, bs);
335
606
}
336
337
static int i2r_OSSL_PERIOD(X509V3_EXT_METHOD *method,
338
                           OSSL_TIME_PERIOD *p,
339
                           BIO *out, int indent)
340
12.5k
{
341
12.5k
    int i;
342
12.5k
    OSSL_DAY_TIME_BAND *band;
343
12.5k
    ASN1_INTEGER *big_val;
344
12.5k
    int64_t small_val;
345
12.5k
    OSSL_NAMED_DAY *nd;
346
347
12.5k
    if (BIO_printf(out, "%*sPeriod:\n", indent, "") <= 0)
348
0
        return 0;
349
12.5k
    if (p->timesOfDay) {
350
115
        if (BIO_printf(out, "%*sDaytime bands:\n", indent + 4, "") <= 0)
351
0
            return 0;
352
737
        for (i = 0; i < sk_OSSL_DAY_TIME_BAND_num(p->timesOfDay); i++) {
353
635
            band = sk_OSSL_DAY_TIME_BAND_value(p->timesOfDay, i);
354
635
            if (BIO_printf(out, "%*s", indent + 8, "") <= 0)
355
0
                return 0;
356
635
            if (!i2r_OSSL_DAY_TIME_BAND(method, band, out, indent + 8))
357
13
                return 0;
358
622
            if (!BIO_puts(out, "\n"))
359
0
                return 0;
360
622
        }
361
115
    }
362
12.5k
    if (p->days) {
363
771
        if (p->days->type == OSSL_TIME_SPEC_DAY_TYPE_INT) {
364
90
            if (p->weeks != NULL) {
365
1
                if (BIO_printf(out, "%*sDays of the week: ", indent + 4, "") <= 0)
366
0
                    return 0;
367
89
            } else if (p->months != NULL) {
368
1
                if (BIO_printf(out, "%*sDays of the month: ", indent + 4, "") <= 0)
369
0
                    return 0;
370
88
            } else if (p->years != NULL) {
371
0
                if (BIO_printf(out, "%*sDays of the year: ", indent + 4, "") <= 0)
372
0
                    return 0;
373
0
            }
374
681
        } else {
375
681
            if (BIO_printf(out, "%*sDays: ", indent + 4, "") <= 0)
376
0
                return 0;
377
681
        }
378
379
771
        switch (p->days->type) {
380
90
        case (OSSL_TIME_SPEC_DAY_TYPE_INT):
381
132
            for (i = 0; i < sk_ASN1_INTEGER_num(p->days->choice.intDay); i++) {
382
109
                big_val = sk_ASN1_INTEGER_value(p->days->choice.intDay, i);
383
109
                if (!ASN1_INTEGER_get_int64(&small_val, big_val))
384
67
                    return 0;
385
42
                if (i > 0 && !BIO_puts(out, ", "))
386
0
                    return 0;
387
                /* If weeks is defined, then print day of week by name. */
388
42
                if (p->weeks != NULL) {
389
0
                    if (!print_int_day_of_week(out, small_val))
390
0
                        return 0;
391
42
                } else if (BIO_printf(out, "%lld", (long long int)small_val) <= 0) {
392
0
                    return 0;
393
0
                }
394
42
            }
395
23
            break;
396
64
        case (OSSL_TIME_SPEC_DAY_TYPE_BIT):
397
64
            if (!print_day_of_week(out, p->days->choice.bitDay))
398
0
                return 0;
399
64
            break;
400
617
        case (OSSL_TIME_SPEC_DAY_TYPE_DAY_OF):
401
617
            switch (p->days->choice.dayOf->type) {
402
21
            case (OSSL_TIME_SPEC_X_DAY_OF_FIRST):
403
21
                if (!BIO_puts(out, "FIRST "))
404
0
                    return 0;
405
21
                nd = p->days->choice.dayOf->choice.first;
406
21
                break;
407
23
            case (OSSL_TIME_SPEC_X_DAY_OF_SECOND):
408
23
                if (!BIO_puts(out, "SECOND "))
409
0
                    return 0;
410
23
                nd = p->days->choice.dayOf->choice.second;
411
23
                break;
412
536
            case (OSSL_TIME_SPEC_X_DAY_OF_THIRD):
413
536
                if (!BIO_puts(out, "THIRD "))
414
0
                    return 0;
415
536
                nd = p->days->choice.dayOf->choice.third;
416
536
                break;
417
22
            case (OSSL_TIME_SPEC_X_DAY_OF_FOURTH):
418
22
                if (!BIO_puts(out, "FOURTH "))
419
0
                    return 0;
420
22
                nd = p->days->choice.dayOf->choice.fourth;
421
22
                break;
422
15
            case (OSSL_TIME_SPEC_X_DAY_OF_FIFTH):
423
15
                if (!BIO_puts(out, "FIFTH "))
424
0
                    return 0;
425
15
                nd = p->days->choice.dayOf->choice.fifth;
426
15
                break;
427
0
            default:
428
0
                return 0;
429
617
            }
430
617
            switch (nd->type) {
431
11
            case (OSSL_NAMED_DAY_TYPE_INT):
432
11
                if (!ASN1_INTEGER_get_int64(&small_val, nd->choice.intNamedDays))
433
11
                    return 0;
434
0
                if (!print_int_named_day(out, small_val))
435
0
                    return 0;
436
0
                break;
437
606
            case (OSSL_NAMED_DAY_TYPE_BIT):
438
606
                if (!print_bit_named_day(out, nd->choice.bitNamedDays))
439
0
                    return 0;
440
606
                break;
441
606
            default:
442
0
                return 0;
443
617
            }
444
606
            break;
445
606
        default:
446
0
            return 0;
447
771
        }
448
693
        if (!BIO_puts(out, "\n"))
449
0
            return 0;
450
693
    }
451
12.4k
    if (p->weeks) {
452
101
        if (p->weeks->type == OSSL_TIME_SPEC_WEEKS_TYPE_INT) {
453
34
            if (p->months != NULL) {
454
1
                if (BIO_printf(out, "%*sWeeks of the month: ", indent + 4, "") <= 0)
455
0
                    return 0;
456
33
            } else if (p->years != NULL) {
457
0
                if (BIO_printf(out, "%*sWeeks of the year: ", indent + 4, "") <= 0)
458
0
                    return 0;
459
0
            }
460
67
        } else {
461
67
            if (BIO_printf(out, "%*sWeeks: ", indent + 4, "") <= 0)
462
0
                return 0;
463
67
        }
464
465
101
        switch (p->weeks->type) {
466
13
        case (OSSL_TIME_SPEC_WEEKS_TYPE_ALL):
467
13
            if (!BIO_puts(out, "ALL"))
468
0
                return 0;
469
13
            break;
470
34
        case (OSSL_TIME_SPEC_WEEKS_TYPE_INT):
471
55
            for (i = 0; i < sk_ASN1_INTEGER_num(p->weeks->choice.intWeek); i++) {
472
32
                big_val = sk_ASN1_INTEGER_value(p->weeks->choice.intWeek, i);
473
32
                if (!ASN1_INTEGER_get_int64(&small_val, big_val))
474
11
                    return 0;
475
21
                if (i > 0 && !BIO_puts(out, ", "))
476
0
                    return 0;
477
21
                if (!BIO_printf(out, "%lld", (long long int)small_val))
478
0
                    return 0;
479
21
            }
480
23
            break;
481
54
        case (OSSL_TIME_SPEC_WEEKS_TYPE_BIT):
482
54
            if (!print_bit_week(out, p->weeks->choice.bitWeek))
483
0
                return 0;
484
54
            break;
485
54
        default:
486
0
            return 0;
487
101
        }
488
90
        if (!BIO_puts(out, "\n"))
489
0
            return 0;
490
90
    }
491
12.4k
    if (p->months) {
492
373
        if (BIO_printf(out, "%*sMonths: ", indent + 4, "") <= 0)
493
0
            return 0;
494
373
        switch (p->months->type) {
495
13
        case (OSSL_TIME_SPEC_MONTH_TYPE_ALL):
496
13
            if (!BIO_puts(out, "ALL"))
497
0
                return 0;
498
13
            break;
499
162
        case (OSSL_TIME_SPEC_MONTH_TYPE_INT):
500
275
            for (i = 0; i < sk_ASN1_INTEGER_num(p->months->choice.intMonth); i++) {
501
245
                big_val = sk_ASN1_INTEGER_value(p->months->choice.intMonth, i);
502
245
                if (!ASN1_INTEGER_get_int64(&small_val, big_val))
503
6
                    return 0;
504
239
                if (i > 0 && !BIO_puts(out, ", "))
505
0
                    return 0;
506
239
                if (!print_int_month(out, small_val))
507
126
                    return 0;
508
239
            }
509
30
            break;
510
198
        case (OSSL_TIME_SPEC_MONTH_TYPE_BIT):
511
198
            if (!print_bit_month(out, p->months->choice.bitMonth))
512
0
                return 0;
513
198
            break;
514
198
        default:
515
0
            return 0;
516
373
        }
517
241
        if (!BIO_puts(out, "\n"))
518
0
            return 0;
519
241
    }
520
12.3k
    if (p->years) {
521
47
        if (BIO_printf(out, "%*sYears: ", indent + 4, "") <= 0)
522
0
            return 0;
523
119
        for (i = 0; i < sk_ASN1_INTEGER_num(p->years); i++) {
524
75
            big_val = sk_ASN1_INTEGER_value(p->years, i);
525
75
            if (!ASN1_INTEGER_get_int64(&small_val, big_val))
526
3
                return 0;
527
72
            if (i > 0 && !BIO_puts(out, ", "))
528
0
                return 0;
529
72
            if (BIO_printf(out, "%04lld", (long long int)small_val) <= 0)
530
0
                return 0;
531
72
        }
532
47
    }
533
12.3k
    return 1;
534
12.3k
}
535
536
static int i2r_OSSL_TIME_SPEC_TIME(X509V3_EXT_METHOD *method,
537
                                   OSSL_TIME_SPEC_TIME *time,
538
                                   BIO *out, int indent)
539
10.6k
{
540
10.6k
    OSSL_TIME_PERIOD *tp;
541
10.6k
    int i;
542
543
10.6k
    switch (time->type) {
544
1.69k
    case (OSSL_TIME_SPEC_TIME_TYPE_ABSOLUTE):
545
1.69k
        if (BIO_printf(out, "%*sAbsolute: ", indent, "") <= 0)
546
0
            return 0;
547
1.69k
        if (i2r_OSSL_TIME_SPEC_ABSOLUTE(method, time->choice.absolute, out, indent + 4) <= 0)
548
0
            return 0;
549
1.69k
        return BIO_puts(out, "\n");
550
8.93k
    case (OSSL_TIME_SPEC_TIME_TYPE_PERIODIC):
551
8.93k
        if (BIO_printf(out, "%*sPeriodic:\n", indent, "") <= 0)
552
0
            return 0;
553
21.2k
        for (i = 0; i < sk_OSSL_TIME_PERIOD_num(time->choice.periodic); i++) {
554
12.5k
            if (i > 0 && !BIO_puts(out, "\n"))
555
0
                return 0;
556
12.5k
            tp = sk_OSSL_TIME_PERIOD_value(time->choice.periodic, i);
557
12.5k
            if (!i2r_OSSL_PERIOD(method, tp, out, indent + 4))
558
237
                return 0;
559
12.5k
        }
560
8.69k
        return BIO_puts(out, "\n");
561
0
    default:
562
0
        return 0;
563
10.6k
    }
564
0
    return 0;
565
10.6k
}
566
567
static int i2r_OSSL_TIME_SPEC(X509V3_EXT_METHOD *method,
568
                              OSSL_TIME_SPEC *time,
569
                              BIO *out, int indent)
570
10.6k
{
571
10.6k
    int64_t tz;
572
573
10.6k
    if (time->timeZone) {
574
756
        if (ASN1_INTEGER_get_int64(&tz, time->timeZone) != 1)
575
24
            return 0;
576
732
        if (BIO_printf(out, "%*sTimezone: UTC%+03lld:00\n", indent, "", (long long int)tz) <= 0)
577
0
            return 0;
578
732
    }
579
10.6k
    if (time->notThisTime > 0) {
580
314
        if (BIO_printf(out, "%*sNOT this time:\n", indent, "") <= 0)
581
0
            return 0;
582
10.3k
    } else if (BIO_printf(out, "%*sTime:\n", indent, "") <= 0) {
583
0
        return 0;
584
0
    }
585
10.6k
    return i2r_OSSL_TIME_SPEC_TIME(method, time->time, out, indent + 4);
586
10.6k
}
587
588
const X509V3_EXT_METHOD ossl_v3_time_specification = {
589
    NID_time_specification, X509V3_EXT_MULTILINE,
590
    ASN1_ITEM_ref(OSSL_TIME_SPEC),
591
    0, 0, 0, 0,
592
    0, 0,
593
    0,
594
    0,
595
    (X509V3_EXT_I2R)i2r_OSSL_TIME_SPEC,
596
    NULL,
597
    NULL
598
};