blob: 2ebf43375fb4f389ff2c5c1c4948cb1dbd4aedb5 [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 */
5#include <UTCTime.h>
6#include <GeneralizedTime.h>
7#include <time.h>
8#include <errno.h>
9#include <assert.h>
10
11#ifndef __NO_ASN_TABLE__
12
13/*
14 * UTCTime basic type description.
15 */
16static ber_tlv_tag_t asn1_DEF_UTCTime_tags[] = {
17 (ASN_TAG_CLASS_UNIVERSAL | (23 << 2))
18};
19asn1_TYPE_descriptor_t asn1_DEF_UTCTime = {
20 "UTCTime",
21 UTCTime_constraint,
22 OCTET_STRING_decode_ber, /* Implemented in terms of OCTET STRING */
23 OCTET_STRING_encode_der, /* Implemented in terms of OCTET STRING */
24 UTCTime_print,
25 OCTET_STRING_free,
26 0, /* Use generic outmost tag fetcher */
27 asn1_DEF_UTCTime_tags,
28 sizeof(asn1_DEF_UTCTime_tags)
29 / sizeof(asn1_DEF_UTCTime_tags[0]),
30 1, /* Single UNIVERSAL tag may be implicitly overriden */
31 -1, /* Both ways are fine */
Lev Walkind9bd7752004-06-05 08:17:50 +000032 0 /* No specifics */
Lev Walkinf15320b2004-06-03 03:38:44 +000033};
34
35#endif /* __NO_ASN_TABLE__ */
36
37/*
38 * Check that the time looks like the time.
39 */
40int
41UTCTime_constraint(asn1_TYPE_descriptor_t *td, const void *sptr,
42 asn_app_consume_bytes_f *app_errlog, void *app_key) {
43 const UTCTime_t *st = sptr;
44 time_t tloc;
45
46 errno = EPERM; /* Just an unlikely error code */
Lev Walkin0aca3852004-08-07 03:51:43 +000047 tloc = asn_UT2time(st, 0, 0);
Lev Walkinf15320b2004-06-03 03:38:44 +000048 if(tloc == -1 && errno != EPERM) {
49 _ASN_ERRLOG("%s: Invalid time format: %s",
50 td->name, strerror(errno));
51 return -1;
52 }
53
54 return 0;
55}
56
57int
58UTCTime_print(asn1_TYPE_descriptor_t *td, const void *sptr, int ilevel,
59 asn_app_consume_bytes_f *cb, void *app_key) {
60 const UTCTime_t *st = sptr;
61
Lev Walkind9bd7752004-06-05 08:17:50 +000062 (void)td; /* Unused argument */
63 (void)ilevel; /* Unused argument */
64
Lev Walkinf15320b2004-06-03 03:38:44 +000065 if(st && st->buf) {
66 char buf[32];
67 struct tm tm;
68 int ret;
69
70 errno = EPERM;
Lev Walkin0aca3852004-08-07 03:51:43 +000071 if(asn_UT2time(st, &tm, 1) == -1 && errno != EPERM)
Lev Walkinf15320b2004-06-03 03:38:44 +000072 return cb("<bad-value>", 11, app_key);
73
74 ret = snprintf(buf, sizeof(buf),
Lev Walkin0aca3852004-08-07 03:51:43 +000075 "%04d-%02d-%02d %02d:%02d%02d (GMT)",
Lev Walkinf15320b2004-06-03 03:38:44 +000076 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
77 tm.tm_hour, tm.tm_min, tm.tm_sec);
Lev Walkind9bd7752004-06-05 08:17:50 +000078 assert(ret > 0 && ret < (int)sizeof(buf));
Lev Walkinf15320b2004-06-03 03:38:44 +000079 return cb(buf, ret, app_key);
80 } else {
81 return cb("<absent>", 8, app_key);
82 }
83}
84
85time_t
Lev Walkin0aca3852004-08-07 03:51:43 +000086asn_UT2time(const UTCTime_t *st, struct tm *_tm, int as_gmt) {
Lev Walkinf15320b2004-06-03 03:38:44 +000087 char buf[17+2]; /* "AAMMJJhhmmss+hhmm" = 17, + 2 = 19 */
88 GeneralizedTime_t gt;
89
Lev Walkind9bd7752004-06-05 08:17:50 +000090 if(!st || !st->buf
91 || st->size < 11 || st->size > ((int)sizeof(buf) - 2)) {
Lev Walkinf15320b2004-06-03 03:38:44 +000092 errno = EINVAL;
93 return -1;
94 }
95
96 gt.buf = buf;
97 gt.size = st->size + 2;
98 memcpy(gt.buf + 2, st->buf, st->size);
99 if(st->buf[0] > 0x35) {
100 /* 19xx */
101 gt.buf[0] = 0x31;
102 gt.buf[1] = 0x39;
103 } else {
104 /* 20xx */
105 gt.buf[0] = 0x32;
106 gt.buf[1] = 0x30;
107 }
108
Lev Walkin0aca3852004-08-07 03:51:43 +0000109 return asn_GT2time(&gt, _tm, as_gmt);
Lev Walkinf15320b2004-06-03 03:38:44 +0000110}
Lev Walkin0aca3852004-08-07 03:51:43 +0000111
112UTCTime_t *
113asn_time2UT(UTCTime_t *opt_ut, const struct tm *tm, int force_gmt) {
114 GeneralizedTime_t *gt = (GeneralizedTime_t *)opt_ut;
115
116 gt = asn_time2GT(gt, tm, force_gmt);
117 if(gt == 0) return 0;
118
119 assert(gt->size >= 2);
120 gt->size -= 2;
121 memmove(gt->buf, gt->buf + 2, gt->size + 1);
122
123 return (UTCTime_t *)gt;
124}
125