sl@0
|
1 |
/* crypto/o_time.c -*- mode:C; c-file-style: "eay" -*- */
|
sl@0
|
2 |
/* Written by Richard Levitte (richard@levitte.org) for the OpenSSL
|
sl@0
|
3 |
* project 2001.
|
sl@0
|
4 |
*/
|
sl@0
|
5 |
/* ====================================================================
|
sl@0
|
6 |
* Copyright (c) 2001 The OpenSSL Project. All rights reserved.
|
sl@0
|
7 |
*
|
sl@0
|
8 |
* Redistribution and use in source and binary forms, with or without
|
sl@0
|
9 |
* modification, are permitted provided that the following conditions
|
sl@0
|
10 |
* are met:
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* 1. Redistributions of source code must retain the above copyright
|
sl@0
|
13 |
* notice, this list of conditions and the following disclaimer.
|
sl@0
|
14 |
*
|
sl@0
|
15 |
* 2. Redistributions in binary form must reproduce the above copyright
|
sl@0
|
16 |
* notice, this list of conditions and the following disclaimer in
|
sl@0
|
17 |
* the documentation and/or other materials provided with the
|
sl@0
|
18 |
* distribution.
|
sl@0
|
19 |
*
|
sl@0
|
20 |
* 3. All advertising materials mentioning features or use of this
|
sl@0
|
21 |
* software must display the following acknowledgment:
|
sl@0
|
22 |
* "This product includes software developed by the OpenSSL Project
|
sl@0
|
23 |
* for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
|
sl@0
|
24 |
*
|
sl@0
|
25 |
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
sl@0
|
26 |
* endorse or promote products derived from this software without
|
sl@0
|
27 |
* prior written permission. For written permission, please contact
|
sl@0
|
28 |
* licensing@OpenSSL.org.
|
sl@0
|
29 |
*
|
sl@0
|
30 |
* 5. Products derived from this software may not be called "OpenSSL"
|
sl@0
|
31 |
* nor may "OpenSSL" appear in their names without prior written
|
sl@0
|
32 |
* permission of the OpenSSL Project.
|
sl@0
|
33 |
*
|
sl@0
|
34 |
* 6. Redistributions of any form whatsoever must retain the following
|
sl@0
|
35 |
* acknowledgment:
|
sl@0
|
36 |
* "This product includes software developed by the OpenSSL Project
|
sl@0
|
37 |
* for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
|
sl@0
|
38 |
*
|
sl@0
|
39 |
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
sl@0
|
40 |
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
sl@0
|
41 |
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
sl@0
|
42 |
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
sl@0
|
43 |
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
sl@0
|
44 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
sl@0
|
45 |
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
sl@0
|
46 |
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
sl@0
|
47 |
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
sl@0
|
48 |
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
sl@0
|
49 |
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
sl@0
|
50 |
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
sl@0
|
51 |
* ====================================================================
|
sl@0
|
52 |
*
|
sl@0
|
53 |
* This product includes cryptographic software written by Eric Young
|
sl@0
|
54 |
* (eay@cryptsoft.com). This product includes software written by Tim
|
sl@0
|
55 |
* Hudson (tjh@cryptsoft.com).
|
sl@0
|
56 |
*
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
|
sl@0
|
59 |
#include <openssl/e_os2.h>
|
sl@0
|
60 |
#include <string.h>
|
sl@0
|
61 |
#include "o_time.h"
|
sl@0
|
62 |
|
sl@0
|
63 |
#ifdef OPENSSL_SYS_VMS
|
sl@0
|
64 |
# include <libdtdef.h>
|
sl@0
|
65 |
# include <lib$routines.h>
|
sl@0
|
66 |
# include <lnmdef.h>
|
sl@0
|
67 |
# include <starlet.h>
|
sl@0
|
68 |
# include <descrip.h>
|
sl@0
|
69 |
# include <stdlib.h>
|
sl@0
|
70 |
#endif
|
sl@0
|
71 |
|
sl@0
|
72 |
EXPORT_C struct tm *OPENSSL_gmtime(const time_t *timer, struct tm *result)
|
sl@0
|
73 |
{
|
sl@0
|
74 |
struct tm *ts = NULL;
|
sl@0
|
75 |
|
sl@0
|
76 |
#if defined(OPENSSL_THREADS) && !defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_SYS_OS2) && !defined(__CYGWIN32__) && (!defined(OPENSSL_SYS_VMS) || defined(gmtime_r)) && !defined(OPENSSL_SYS_MACOSX) && !defined(OPENSSL_SYS_SUNOS)
|
sl@0
|
77 |
/* should return &data, but doesn't on some systems,
|
sl@0
|
78 |
so we don't even look at the return value */
|
sl@0
|
79 |
gmtime_r(timer,result);
|
sl@0
|
80 |
ts = result;
|
sl@0
|
81 |
|
sl@0
|
82 |
#elif !defined(OPENSSL_SYS_VMS)
|
sl@0
|
83 |
ts = gmtime(timer);
|
sl@0
|
84 |
if (ts == NULL)
|
sl@0
|
85 |
return NULL;
|
sl@0
|
86 |
|
sl@0
|
87 |
|
sl@0
|
88 |
memcpy(result, ts, sizeof(struct tm));
|
sl@0
|
89 |
ts = result;
|
sl@0
|
90 |
#endif
|
sl@0
|
91 |
#ifdef OPENSSL_SYS_VMS
|
sl@0
|
92 |
if (ts == NULL)
|
sl@0
|
93 |
{
|
sl@0
|
94 |
static $DESCRIPTOR(tabnam,"LNM$DCL_LOGICAL");
|
sl@0
|
95 |
static $DESCRIPTOR(lognam,"SYS$TIMEZONE_DIFFERENTIAL");
|
sl@0
|
96 |
char logvalue[256];
|
sl@0
|
97 |
unsigned int reslen = 0;
|
sl@0
|
98 |
struct {
|
sl@0
|
99 |
short buflen;
|
sl@0
|
100 |
short code;
|
sl@0
|
101 |
void *bufaddr;
|
sl@0
|
102 |
unsigned int *reslen;
|
sl@0
|
103 |
} itemlist[] = {
|
sl@0
|
104 |
{ 0, LNM$_STRING, 0, 0 },
|
sl@0
|
105 |
{ 0, 0, 0, 0 },
|
sl@0
|
106 |
};
|
sl@0
|
107 |
int status;
|
sl@0
|
108 |
time_t t;
|
sl@0
|
109 |
|
sl@0
|
110 |
/* Get the value for SYS$TIMEZONE_DIFFERENTIAL */
|
sl@0
|
111 |
itemlist[0].buflen = sizeof(logvalue);
|
sl@0
|
112 |
itemlist[0].bufaddr = logvalue;
|
sl@0
|
113 |
itemlist[0].reslen = &reslen;
|
sl@0
|
114 |
status = sys$trnlnm(0, &tabnam, &lognam, 0, itemlist);
|
sl@0
|
115 |
if (!(status & 1))
|
sl@0
|
116 |
return NULL;
|
sl@0
|
117 |
logvalue[reslen] = '\0';
|
sl@0
|
118 |
|
sl@0
|
119 |
t = *timer;
|
sl@0
|
120 |
|
sl@0
|
121 |
/* The following is extracted from the DEC C header time.h */
|
sl@0
|
122 |
/*
|
sl@0
|
123 |
** Beginning in OpenVMS Version 7.0 mktime, time, ctime, strftime
|
sl@0
|
124 |
** have two implementations. One implementation is provided
|
sl@0
|
125 |
** for compatibility and deals with time in terms of local time,
|
sl@0
|
126 |
** the other __utc_* deals with time in terms of UTC.
|
sl@0
|
127 |
*/
|
sl@0
|
128 |
/* We use the same conditions as in said time.h to check if we should
|
sl@0
|
129 |
assume that t contains local time (and should therefore be adjusted)
|
sl@0
|
130 |
or UTC (and should therefore be left untouched). */
|
sl@0
|
131 |
#if __CRTL_VER < 70000000 || defined _VMS_V6_SOURCE
|
sl@0
|
132 |
/* Get the numerical value of the equivalence string */
|
sl@0
|
133 |
status = atoi(logvalue);
|
sl@0
|
134 |
|
sl@0
|
135 |
/* and use it to move time to GMT */
|
sl@0
|
136 |
t -= status;
|
sl@0
|
137 |
#endif
|
sl@0
|
138 |
|
sl@0
|
139 |
/* then convert the result to the time structure */
|
sl@0
|
140 |
|
sl@0
|
141 |
/* Since there was no gmtime_r() to do this stuff for us,
|
sl@0
|
142 |
we have to do it the hard way. */
|
sl@0
|
143 |
{
|
sl@0
|
144 |
/* The VMS epoch is the astronomical Smithsonian date,
|
sl@0
|
145 |
if I remember correctly, which is November 17, 1858.
|
sl@0
|
146 |
Furthermore, time is measure in thenths of microseconds
|
sl@0
|
147 |
and stored in quadwords (64 bit integers). unix_epoch
|
sl@0
|
148 |
below is January 1st 1970 expressed as a VMS time. The
|
sl@0
|
149 |
following code was used to get this number:
|
sl@0
|
150 |
|
sl@0
|
151 |
#include <stdio.h>
|
sl@0
|
152 |
#include <stdlib.h>
|
sl@0
|
153 |
#include <lib$routines.h>
|
sl@0
|
154 |
#include <starlet.h>
|
sl@0
|
155 |
|
sl@0
|
156 |
main()
|
sl@0
|
157 |
{
|
sl@0
|
158 |
unsigned long systime[2];
|
sl@0
|
159 |
unsigned short epoch_values[7] =
|
sl@0
|
160 |
{ 1970, 1, 1, 0, 0, 0, 0 };
|
sl@0
|
161 |
|
sl@0
|
162 |
lib$cvt_vectim(epoch_values, systime);
|
sl@0
|
163 |
|
sl@0
|
164 |
printf("%u %u", systime[0], systime[1]);
|
sl@0
|
165 |
}
|
sl@0
|
166 |
*/
|
sl@0
|
167 |
unsigned long unix_epoch[2] = { 1273708544, 8164711 };
|
sl@0
|
168 |
unsigned long deltatime[2];
|
sl@0
|
169 |
unsigned long systime[2];
|
sl@0
|
170 |
struct vms_vectime
|
sl@0
|
171 |
{
|
sl@0
|
172 |
short year, month, day, hour, minute, second,
|
sl@0
|
173 |
centi_second;
|
sl@0
|
174 |
} time_values;
|
sl@0
|
175 |
long operation;
|
sl@0
|
176 |
|
sl@0
|
177 |
/* Turn the number of seconds since January 1st 1970 to
|
sl@0
|
178 |
an internal delta time.
|
sl@0
|
179 |
Note that lib$cvt_to_internal_time() will assume
|
sl@0
|
180 |
that t is signed, and will therefore break on 32-bit
|
sl@0
|
181 |
systems some time in 2038.
|
sl@0
|
182 |
*/
|
sl@0
|
183 |
operation = LIB$K_DELTA_SECONDS;
|
sl@0
|
184 |
status = lib$cvt_to_internal_time(&operation,
|
sl@0
|
185 |
&t, deltatime);
|
sl@0
|
186 |
|
sl@0
|
187 |
/* Add the delta time with the Unix epoch and we have
|
sl@0
|
188 |
the current UTC time in internal format */
|
sl@0
|
189 |
status = lib$add_times(unix_epoch, deltatime, systime);
|
sl@0
|
190 |
|
sl@0
|
191 |
/* Turn the internal time into a time vector */
|
sl@0
|
192 |
status = sys$numtim(&time_values, systime);
|
sl@0
|
193 |
|
sl@0
|
194 |
/* Fill in the struct tm with the result */
|
sl@0
|
195 |
result->tm_sec = time_values.second;
|
sl@0
|
196 |
result->tm_min = time_values.minute;
|
sl@0
|
197 |
result->tm_hour = time_values.hour;
|
sl@0
|
198 |
result->tm_mday = time_values.day;
|
sl@0
|
199 |
result->tm_mon = time_values.month - 1;
|
sl@0
|
200 |
result->tm_year = time_values.year - 1900;
|
sl@0
|
201 |
|
sl@0
|
202 |
operation = LIB$K_DAY_OF_WEEK;
|
sl@0
|
203 |
status = lib$cvt_from_internal_time(&operation,
|
sl@0
|
204 |
&result->tm_wday, systime);
|
sl@0
|
205 |
result->tm_wday %= 7;
|
sl@0
|
206 |
|
sl@0
|
207 |
operation = LIB$K_DAY_OF_YEAR;
|
sl@0
|
208 |
status = lib$cvt_from_internal_time(&operation,
|
sl@0
|
209 |
&result->tm_yday, systime);
|
sl@0
|
210 |
result->tm_yday--;
|
sl@0
|
211 |
|
sl@0
|
212 |
result->tm_isdst = 0; /* There's no way to know... */
|
sl@0
|
213 |
|
sl@0
|
214 |
ts = result;
|
sl@0
|
215 |
}
|
sl@0
|
216 |
}
|
sl@0
|
217 |
#endif
|
sl@0
|
218 |
return ts;
|
sl@0
|
219 |
}
|