]> git.proxmox.com Git - mirror_edk2.git/blob - CryptoPkg/Library/BaseCryptLib/SysCall/TimerWrapper.c
CryptoPkg: Clean-up CRT Library Wrapper.
[mirror_edk2.git] / CryptoPkg / Library / BaseCryptLib / SysCall / TimerWrapper.c
1 /** @file
2 C Run-Time Libraries (CRT) Time Management Routines Wrapper Implementation
3 for OpenSSL-based Cryptographic Library (used in DXE & RUNTIME).
4
5 Copyright (c) 2010 - 2017, Intel Corporation. All rights reserved.<BR>
6 This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15
16 #include <Uefi.h>
17 #include <CrtLibSupport.h>
18 #include <Library/UefiRuntimeServicesTableLib.h>
19
20 //
21 // -- Time Management Routines --
22 //
23
24 #define IsLeap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0))
25 #define SECSPERMIN (60)
26 #define SECSPERHOUR (60 * 60)
27 #define SECSPERDAY (24 * SECSPERHOUR)
28
29 //
30 // The arrays give the cumulative number of days up to the first of the
31 // month number used as the index (1 -> 12) for regular and leap years.
32 // The value at index 13 is for the whole year.
33 //
34 UINTN CumulativeDays[2][14] = {
35 {
36 0,
37 0,
38 31,
39 31 + 28,
40 31 + 28 + 31,
41 31 + 28 + 31 + 30,
42 31 + 28 + 31 + 30 + 31,
43 31 + 28 + 31 + 30 + 31 + 30,
44 31 + 28 + 31 + 30 + 31 + 30 + 31,
45 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31,
46 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30,
47 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31,
48 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30,
49 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30 + 31
50 },
51 {
52 0,
53 0,
54 31,
55 31 + 29,
56 31 + 29 + 31,
57 31 + 29 + 31 + 30,
58 31 + 29 + 31 + 30 + 31,
59 31 + 29 + 31 + 30 + 31 + 30,
60 31 + 29 + 31 + 30 + 31 + 30 + 31,
61 31 + 29 + 31 + 30 + 31 + 30 + 31 + 31,
62 31 + 29 + 31 + 30 + 31 + 30 + 31 + 31 + 30,
63 31 + 29 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31,
64 31 + 29 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30,
65 31 + 29 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30 + 31
66 }
67 };
68
69 /* Get the system time as seconds elapsed since midnight, January 1, 1970. */
70 //INTN time(
71 // INTN *timer
72 // )
73 time_t time (time_t *timer)
74 {
75 EFI_TIME Time;
76 time_t CalTime;
77 UINTN Year;
78
79 //
80 // Get the current time and date information
81 //
82 gRT->GetTime (&Time, NULL);
83
84 //
85 // Years Handling
86 // UTime should now be set to 00:00:00 on Jan 1 of the current year.
87 //
88 for (Year = 1970, CalTime = 0; Year != Time.Year; Year++) {
89 CalTime = CalTime + (time_t)(CumulativeDays[IsLeap(Year)][13] * SECSPERDAY);
90 }
91
92 //
93 // Add in number of seconds for current Month, Day, Hour, Minute, Seconds, and TimeZone adjustment
94 //
95 CalTime = CalTime +
96 (time_t)((Time.TimeZone != EFI_UNSPECIFIED_TIMEZONE) ? (Time.TimeZone * 60) : 0) +
97 (time_t)(CumulativeDays[IsLeap(Time.Year)][Time.Month] * SECSPERDAY) +
98 (time_t)(((Time.Day > 0) ? Time.Day - 1 : 0) * SECSPERDAY) +
99 (time_t)(Time.Hour * SECSPERHOUR) +
100 (time_t)(Time.Minute * 60) +
101 (time_t)Time.Second;
102
103 if (timer != NULL) {
104 *timer = CalTime;
105 }
106
107 return CalTime;
108 }
109
110 //
111 // Convert a time value from type time_t to struct tm.
112 //
113 struct tm * gmtime (const time_t *timer)
114 {
115 struct tm *GmTime;
116 UINT16 DayNo;
117 UINT16 DayRemainder;
118 time_t Year;
119 time_t YearNo;
120 UINT16 TotalDays;
121 UINT16 MonthNo;
122
123 if (timer == NULL) {
124 return NULL;
125 }
126
127 GmTime = malloc (sizeof (struct tm));
128 if (GmTime == NULL) {
129 return NULL;
130 }
131
132 ZeroMem ((VOID *) GmTime, (UINTN) sizeof (struct tm));
133
134 DayNo = (UINT16) (*timer / SECSPERDAY);
135 DayRemainder = (UINT16) (*timer % SECSPERDAY);
136
137 GmTime->tm_sec = (int) (DayRemainder % SECSPERMIN);
138 GmTime->tm_min = (int) ((DayRemainder % SECSPERHOUR) / SECSPERMIN);
139 GmTime->tm_hour = (int) (DayRemainder / SECSPERHOUR);
140 GmTime->tm_wday = (int) ((DayNo + 4) % 7);
141
142 for (Year = 1970, YearNo = 0; DayNo > 0; Year++) {
143 TotalDays = (UINT16) (IsLeap (Year) ? 366 : 365);
144 if (DayNo >= TotalDays) {
145 DayNo = (UINT16) (DayNo - TotalDays);
146 YearNo++;
147 } else {
148 break;
149 }
150 }
151
152 GmTime->tm_year = (int) (YearNo + (1970 - 1900));
153 GmTime->tm_yday = (int) DayNo;
154
155 for (MonthNo = 12; MonthNo > 1; MonthNo--) {
156 if (DayNo >= CumulativeDays[IsLeap(Year)][MonthNo]) {
157 DayNo = (UINT16) (DayNo - (UINT16) (CumulativeDays[IsLeap(Year)][MonthNo]));
158 break;
159 }
160 }
161
162 GmTime->tm_mon = (int) MonthNo - 1;
163 GmTime->tm_mday = (int) DayNo + 1;
164
165 GmTime->tm_isdst = 0;
166 GmTime->tm_gmtoff = 0;
167 GmTime->tm_zone = NULL;
168
169 return GmTime;
170 }