blob: c2079fbdcf3ad928c17908d0ed4462a27ab5b7ee [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001/*-
2 * Copyright (c) 2003, 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
4 */
Lev Walkina9cc46e2004-09-22 16:06:28 +00005#include <asn_internal.h>
Lev Walkinf15320b2004-06-03 03:38:44 +00006#include <UTCTime.h>
7#include <GeneralizedTime.h>
8#include <time.h>
9#include <errno.h>
Lev Walkinf15320b2004-06-03 03:38:44 +000010
Lev Walkin7b3713a2005-07-03 05:29:36 +000011#ifndef __ASN_INTERNAL_TEST_MODE__
Lev Walkinf15320b2004-06-03 03:38:44 +000012
13/*
14 * UTCTime basic type description.
15 */
Lev Walkin5e033762004-09-29 13:26:15 +000016static ber_tlv_tag_t asn_DEF_UTCTime_tags[] = {
Lev Walkin8e8078a2004-09-26 13:10:40 +000017 (ASN_TAG_CLASS_UNIVERSAL | (23 << 2)), /* [UNIVERSAL 23] IMPLICIT ...*/
18 (ASN_TAG_CLASS_UNIVERSAL | (26 << 2)), /* [UNIVERSAL 26] IMPLICIT ...*/
19 (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)) /* ... OCTET STRING */
Lev Walkinf15320b2004-06-03 03:38:44 +000020};
Lev Walkin5e033762004-09-29 13:26:15 +000021asn_TYPE_descriptor_t asn_DEF_UTCTime = {
Lev Walkinf15320b2004-06-03 03:38:44 +000022 "UTCTime",
Lev Walkindc06f6b2004-10-20 15:50:55 +000023 "UTCTime",
Lev Walkina9cc46e2004-09-22 16:06:28 +000024 OCTET_STRING_free,
25 UTCTime_print,
Lev Walkinf15320b2004-06-03 03:38:44 +000026 UTCTime_constraint,
27 OCTET_STRING_decode_ber, /* Implemented in terms of OCTET STRING */
28 OCTET_STRING_encode_der, /* Implemented in terms of OCTET STRING */
Lev Walkindc06f6b2004-10-20 15:50:55 +000029 OCTET_STRING_decode_xer_utf8,
Lev Walkina9cc46e2004-09-22 16:06:28 +000030 UTCTime_encode_xer,
Lev Walkinf15320b2004-06-03 03:38:44 +000031 0, /* Use generic outmost tag fetcher */
Lev Walkin5e033762004-09-29 13:26:15 +000032 asn_DEF_UTCTime_tags,
33 sizeof(asn_DEF_UTCTime_tags)
34 / sizeof(asn_DEF_UTCTime_tags[0]) - 2,
35 asn_DEF_UTCTime_tags,
36 sizeof(asn_DEF_UTCTime_tags)
37 / sizeof(asn_DEF_UTCTime_tags[0]),
Lev Walkin449f8322004-08-20 13:23:42 +000038 0, 0, /* No members */
Lev Walkind9bd7752004-06-05 08:17:50 +000039 0 /* No specifics */
Lev Walkinf15320b2004-06-03 03:38:44 +000040};
41
Lev Walkin7b3713a2005-07-03 05:29:36 +000042#endif /* __ASN_INTERNAL_TEST_MODE__ */
Lev Walkinf15320b2004-06-03 03:38:44 +000043
44/*
45 * Check that the time looks like the time.
46 */
47int
Lev Walkin5e033762004-09-29 13:26:15 +000048UTCTime_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkinf15320b2004-06-03 03:38:44 +000049 asn_app_consume_bytes_f *app_errlog, void *app_key) {
Lev Walkinc2346572004-08-11 09:07:36 +000050 const UTCTime_t *st = (const UTCTime_t *)sptr;
Lev Walkinf15320b2004-06-03 03:38:44 +000051 time_t tloc;
52
53 errno = EPERM; /* Just an unlikely error code */
Lev Walkin0aca3852004-08-07 03:51:43 +000054 tloc = asn_UT2time(st, 0, 0);
Lev Walkinf15320b2004-06-03 03:38:44 +000055 if(tloc == -1 && errno != EPERM) {
Lev Walkinba4e5182004-08-11 09:44:13 +000056 _ASN_ERRLOG(app_errlog, app_key,
Lev Walkin16835b62004-08-22 13:47:59 +000057 "%s: Invalid time format: %s (%s:%d)",
58 td->name, strerror(errno), __FILE__, __LINE__);
Lev Walkinf15320b2004-06-03 03:38:44 +000059 return -1;
60 }
61
62 return 0;
63}
64
Lev Walkin7b3713a2005-07-03 05:29:36 +000065#ifndef __ASN_INTERNAL_TEST_MODE__
66
Lev Walkina9cc46e2004-09-22 16:06:28 +000067asn_enc_rval_t
Lev Walkin5e033762004-09-29 13:26:15 +000068UTCTime_encode_xer(asn_TYPE_descriptor_t *td, void *sptr,
Lev Walkina9cc46e2004-09-22 16:06:28 +000069 int ilevel, enum xer_encoder_flags_e flags,
70 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkina9cc46e2004-09-22 16:06:28 +000071
72 if(flags & XER_F_CANONICAL) {
Lev Walkin7b3713a2005-07-03 05:29:36 +000073 asn_enc_rval_t rv;
74 UTCTime_t *ut;
Lev Walkina9cc46e2004-09-22 16:06:28 +000075 struct tm tm;
Lev Walkina9cc46e2004-09-22 16:06:28 +000076
77 errno = EPERM;
78 if(asn_UT2time((UTCTime_t *)sptr, &tm, 1) == -1
79 && errno != EPERM)
80 _ASN_ENCODE_FAILED;
Lev Walkina9cc46e2004-09-22 16:06:28 +000081
Lev Walkin7b3713a2005-07-03 05:29:36 +000082 /* Fractions are not allowed in UTCTime */
83 ut = asn_time2GT(0, 0, 1);
84 if(!ut) _ASN_ENCODE_FAILED;
85
86 rv = OCTET_STRING_encode_xer_utf8(td, sptr, ilevel, flags,
87 cb, app_key);
88 OCTET_STRING_free(&asn_DEF_UTCTime, ut, 0);
89 return rv;
90 } else {
91 return OCTET_STRING_encode_xer_utf8(td, sptr, ilevel, flags,
92 cb, app_key);
93 }
Lev Walkina9cc46e2004-09-22 16:06:28 +000094}
95
Lev Walkin7b3713a2005-07-03 05:29:36 +000096#endif /* __ASN_INTERNAL_TEST_MODE__ */
97
Lev Walkinf15320b2004-06-03 03:38:44 +000098int
Lev Walkin5e033762004-09-29 13:26:15 +000099UTCTime_print(asn_TYPE_descriptor_t *td, const void *sptr, int ilevel,
Lev Walkinf15320b2004-06-03 03:38:44 +0000100 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkinc2346572004-08-11 09:07:36 +0000101 const UTCTime_t *st = (const UTCTime_t *)sptr;
Lev Walkinf15320b2004-06-03 03:38:44 +0000102
Lev Walkind9bd7752004-06-05 08:17:50 +0000103 (void)td; /* Unused argument */
104 (void)ilevel; /* Unused argument */
105
Lev Walkinf15320b2004-06-03 03:38:44 +0000106 if(st && st->buf) {
107 char buf[32];
108 struct tm tm;
109 int ret;
110
111 errno = EPERM;
Lev Walkin0aca3852004-08-07 03:51:43 +0000112 if(asn_UT2time(st, &tm, 1) == -1 && errno != EPERM)
Lev Walkin8e8078a2004-09-26 13:10:40 +0000113 return (cb("<bad-value>", 11, app_key) < 0) ? -1 : 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000114
115 ret = snprintf(buf, sizeof(buf),
Lev Walkin7b3713a2005-07-03 05:29:36 +0000116 "%04d-%02d-%02d %02d:%02d:%02d (GMT)",
Lev Walkinf15320b2004-06-03 03:38:44 +0000117 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
118 tm.tm_hour, tm.tm_min, tm.tm_sec);
Lev Walkind9bd7752004-06-05 08:17:50 +0000119 assert(ret > 0 && ret < (int)sizeof(buf));
Lev Walkin8e8078a2004-09-26 13:10:40 +0000120 return (cb(buf, ret, app_key) < 0) ? -1 : 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000121 } else {
Lev Walkin8e8078a2004-09-26 13:10:40 +0000122 return (cb("<absent>", 8, app_key) < 0) ? -1 : 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000123 }
124}
125
126time_t
Lev Walkin0aca3852004-08-07 03:51:43 +0000127asn_UT2time(const UTCTime_t *st, struct tm *_tm, int as_gmt) {
Lev Walkin7b3713a2005-07-03 05:29:36 +0000128 char buf[24]; /* "AAMMJJhhmmss+hhmm" + cushion */
Lev Walkinf15320b2004-06-03 03:38:44 +0000129 GeneralizedTime_t gt;
130
Lev Walkind9bd7752004-06-05 08:17:50 +0000131 if(!st || !st->buf
Lev Walkin7b3713a2005-07-03 05:29:36 +0000132 || st->size < 11 || st->size >= ((int)sizeof(buf) - 2)) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000133 errno = EINVAL;
134 return -1;
135 }
136
Lev Walkin4d9528c2004-08-11 08:10:13 +0000137 gt.buf = (unsigned char *)buf;
Lev Walkinf15320b2004-06-03 03:38:44 +0000138 gt.size = st->size + 2;
139 memcpy(gt.buf + 2, st->buf, st->size);
140 if(st->buf[0] > 0x35) {
141 /* 19xx */
142 gt.buf[0] = 0x31;
143 gt.buf[1] = 0x39;
144 } else {
145 /* 20xx */
146 gt.buf[0] = 0x32;
147 gt.buf[1] = 0x30;
148 }
149
Lev Walkin0aca3852004-08-07 03:51:43 +0000150 return asn_GT2time(&gt, _tm, as_gmt);
Lev Walkinf15320b2004-06-03 03:38:44 +0000151}
Lev Walkin0aca3852004-08-07 03:51:43 +0000152
153UTCTime_t *
154asn_time2UT(UTCTime_t *opt_ut, const struct tm *tm, int force_gmt) {
155 GeneralizedTime_t *gt = (GeneralizedTime_t *)opt_ut;
156
157 gt = asn_time2GT(gt, tm, force_gmt);
158 if(gt == 0) return 0;
159
160 assert(gt->size >= 2);
161 gt->size -= 2;
162 memmove(gt->buf, gt->buf + 2, gt->size + 1);
163
164 return (UTCTime_t *)gt;
165}
166