blob: 5ce2708b49971879c9d9e7131e104a6a77db7dd5 [file] [log] [blame]
vlmfa67ddc2004-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 */
vlmb42843a2004-06-05 08:17:50 +000032 0 /* No specifics */
vlmfa67ddc2004-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 */
47 tloc = asn_UT2time(st, 0);
48 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
vlmb42843a2004-06-05 08:17:50 +000062 (void)td; /* Unused argument */
63 (void)ilevel; /* Unused argument */
64
vlmfa67ddc2004-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;
71 if(asn_UT2time(st, &tm) == -1 && errno != EPERM)
72 return cb("<bad-value>", 11, app_key);
73
74 ret = snprintf(buf, sizeof(buf),
75 "%04d-%02d-%02d %02d:%02d%02d",
76 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
77 tm.tm_hour, tm.tm_min, tm.tm_sec);
vlmb42843a2004-06-05 08:17:50 +000078 assert(ret > 0 && ret < (int)sizeof(buf));
vlmfa67ddc2004-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
86asn_UT2time(const UTCTime_t *st, struct tm *_tm) {
87 char buf[17+2]; /* "AAMMJJhhmmss+hhmm" = 17, + 2 = 19 */
88 GeneralizedTime_t gt;
89
vlmb42843a2004-06-05 08:17:50 +000090 if(!st || !st->buf
91 || st->size < 11 || st->size > ((int)sizeof(buf) - 2)) {
vlmfa67ddc2004-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
109 return asn_GT2time(&gt, _tm);
110}