Generate stub entries on the fly for missing entry points instead of
[wine] / dlls / ntdll / time.c
1 /*
2  * Nt time functions.
3  *
4  * RtlTimeToTimeFields, RtlTimeFieldsToTime and defines are taken from ReactOS and
5  * adapted to wine with special permissions of the author. This code is
6  * Copyright 2002 Rex Jolliff (rex@lvcablemodem.com)
7  *
8  * Copyright 1999 Juergen Schmied
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with this library; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23  */
24
25 #include "config.h"
26 #include "wine/port.h"
27
28 #include <stdarg.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <limits.h>
32 #include <time.h>
33 #ifdef HAVE_SYS_TIME_H
34 # include <sys/time.h>
35 #endif
36 #ifdef HAVE_UNISTD_H
37 # include <unistd.h>
38 #endif
39
40 #define NONAMELESSUNION
41 #define NONAMELESSSTRUCT
42 #include "windef.h"
43 #include "winbase.h"
44 #include "winreg.h"
45 #include "winternl.h"
46 #include "wine/unicode.h"
47 #include "wine/debug.h"
48 #include "ntdll_misc.h"
49
50 WINE_DEFAULT_DEBUG_CHANNEL(ntdll);
51
52 static CRITICAL_SECTION TIME_GetBias_section;
53 static CRITICAL_SECTION_DEBUG critsect_debug =
54 {
55     0, 0, &TIME_GetBias_section,
56     { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
57       0, 0, { 0, (DWORD)(__FILE__ ": TIME_GetBias_section") }
58 };
59 static CRITICAL_SECTION TIME_GetBias_section = { &critsect_debug, -1, 0, 0, 0, 0 };
60
61 /* TimeZone registry key values */
62 static const WCHAR TZInformationKeyW[] = { 'M','a','c','h','i','n','e','\\',
63  'S','Y','S','T','E','M','\\','C','u','r','r','e','n','t','C','o','n','t','r',
64  'o','l','S','e','t','\\','C','o','n','t','r','o','l','\\','T','i','m','e','z',
65  'o','n','e','I','n','f','o','r','m','a','t','i','o','n', 0};
66 static const WCHAR TZStandardStartW[] = {
67   'S','t','a','n','d','a','r','d','s','t','a','r','t', 0};
68 static const WCHAR TZDaylightStartW[] = {
69   'D','a','y','l','i','g','h','t','s','t','a','r','t', 0};
70 static const WCHAR TZDaylightBiasW[] = {
71     'D','a','y','l','i','g','h','t','B','i','a','s', 0};
72 static const WCHAR TZStandardBiasW[] = {
73     'S','t','a','n','d','a','r','d','B','i','a','s', 0};
74 static const WCHAR TZBiasW[] = {'B','i','a','s', 0};
75 static const WCHAR TZDaylightNameW[] = {
76     'D','a','y','l','i','g','h','t','N','a','m','e', 0};
77 static const WCHAR TZStandardNameW[] = {
78     'S','t','a','n','d','a','r','d','N','a','m','e', 0};
79
80
81 #define SETTIME_MAX_ADJUST 120
82
83 /* This structure is used to store strings that represent all of the time zones
84  * in the world. (This is used to help GetTimeZoneInformation)
85  */
86 struct tagTZ_INFO
87 {
88     const char *psTZFromUnix;
89     WCHAR psTZWindows[32];
90     int bias;
91     int dst;
92 };
93
94 static const struct tagTZ_INFO TZ_INFO[] =
95 {
96    {"MHT",
97     {'D','a','t','e','l','i','n','e',' ','S','t','a','n','d','a','r','d',' ',
98      'T','i','m','e','\0'}, -720, 0},
99    {"SST",
100     {'S','a','m','o','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m',
101      'e','\0'}, 660, 0},
102    {"HST",
103     {'H','a','w','a','i','i','a','n',' ','S','t','a','n','d','a','r','d',' ',
104      'T','i','m','e','\0'}, 600, 0},
105    {"AKDT",
106     {'A','l','a','s','k','a','n',' ','S','t','a','n','d','a','r','d',' ','T',
107      'i','m','e','\0'}, 480, 1},
108    {"PST",
109     {'P','a','c','i','f','i','c',' ','S','t','a','n','d','a','r','d',' ','T',
110      'i','m','e','\0'}, 480, 0},
111    {"PDT",
112     {'P','a','c','i','f','i','c',' ','S','t','a','n','d','a','r','d',' ','T',
113      'i','m','e','\0'}, 420, 1},
114    {"MST",
115     {'U','S',' ','M','o','u','n','t','a','i','n',' ','S','t','a','n','d','a',
116      'r','d',' ','T','i','m','e','\0'}, 420, 0},
117    {"MDT",
118     {'M','o','u','n','t','a','i','n',' ','S','t','a','n','d','a','r','d',' ',
119      'T','i','m','e','\0'}, 360, 1},
120    {"CST",
121     {'C','e','n','t','r','a','l',' ','A','m','e','r','i','c','a',' ','S','t',
122      'a','n','d','a','r','d',' ','T','i','m','e','\0'}, 360, 0},
123    {"CDT",
124     {'C','e','n','t','r','a','l',' ','S','t','a','n','d','a','r','d',' ','T',
125      'i','m','e','\0'}, 300, 1},
126    {"COT",
127     {'S','A',' ','P','a','c','i','f','i','c',' ','S','t','a','n','d','a','r',
128      'd',' ','T','i','m','e','\0'}, 300, 0},
129    {"EDT",
130     {'E','a','s','t','e','r','n',' ','S','t','a','n','d','a','r','d',' ','T',
131      'i','m','e','\0'}, 240, 1},
132    {"EST",
133     {'U','S',' ','E','a','s','t','e','r','n',' ','S','t','a','n','d','a','r',
134      'd',' ','T','i','m','e','\0'}, 300, 0},
135    {"ADT",
136     {'A','t','l','a','n','t','i','c',' ','S','t','a','n','d','a','r','d',' ',
137      'T','i','m','e','\0'}, 180, 1},
138    {"VET",
139     {'S','A',' ','W','e','s','t','e','r','n',' ','S','t','a','n','d','a','r',
140      'd',' ','T','i','m','e','\0'}, 240, 0},
141    {"CLT",
142     {'P','a','c','i','f','i','c',' ','S','A',' ','S','t','a','n','d','a','r',
143      'd',' ','T','i','m','e','\0'}, 240, 0},
144    {"NDT",
145     {'N','e','w','f','o','u','n','d','l','a','n','d',' ','S','t','a','n','d',
146      'a','r','d',' ','T','i','m','e','\0'}, 150, 1},
147    {"BRT",
148     {'E','.',' ','S','o','u','t','h',' ','A','m','e','r','i','c','a',' ','S',
149      't','a','n','d','a','r','d',' ','T','i','m','e','\0'}, 180, 0},
150    {"ART",
151     {'S','A',' ','E','a','s','t','e','r','n',' ','S','t','a','n','d','a','r',
152      'd',' ','T','i','m','e','\0'}, 180, 0},
153    {"WGST",
154     {'G','r','e','e','n','l','a','n','d',' ','S','t','a','n','d','a','r','d',
155      ' ','T','i','m','e','\0'}, 120, 1},
156    {"GST",
157     {'M','i','d','-','A','t','l','a','n','t','i','c',' ','S','t','a','n','d',
158      'a','r','d',' ','T','i','m','e','\0'}, 120, 0},
159    {"AZOST",
160     {'A','z','o','r','e','s',' ','S','t','a','n','d','a','r','d',' ','T','i',
161      'm','e','\0'}, 0, 1},
162    {"CVT",
163     {'C','a','p','e',' ','V','e','r','d','e',' ','S','t','a','n','d','a','r',
164      'd',' ','T','i','m','e','\0'}, 60, 0},
165    {"WET",
166     {'G','r','e','e','n','w','i','c','h',' ','S','t','a','n','d','a','r','d',
167      ' ','T','i','m','e','\0'}, 0, 0},
168    {"BST",
169     {'G','M','T',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
170     -60, 1},
171    {"GMT",
172     {'G','M','T',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
173     0, 0},
174    {"UTC",
175     {'G','M','T',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
176     0, 0},
177    {"CET",
178     {'C','e','n','t','r','a','l',' ','E','u','r','o','p','e','a','n',' ',
179      'T','i','m','e','\0'}, -60, 0},
180    {"CEST",
181     {'C','e','n','t','r','a','l',' ','E','u','r','o','p','e',' ','S','t','a',
182      'n','d','a','r','d',' ','T','i','m','e','\0'}, -120, 1},
183    {"MET",
184     {'C','e','n','t','r','a','l',' ','E','u','r','o','p','e',' ','S','t','a',
185      'n','d','a','r','d',' ','T','i','m','e','\0'}, -60, 0},
186    {"MEST",
187     {'C','e','n','t','r','a','l',' ','E','u','r','o','p','e',' ','D','a','y',
188      'l','i','g','h','t',' ','T','i','m','e','\0'}, -120, 1},
189    {"WAT",
190     {'W','.',' ','C','e','n','t','r','a','l',' ','A','f','r','i','c','a',' ',
191      'S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'}, -60, 0},
192    {"EEST",
193     {'E','.',' ','E','u','r','o','p','e',' ','S','t','a','n','d','a','r','d',
194      ' ','T','i','m','e','\0'}, -180, 1},
195    {"EET",
196     {'E','g','y','p','t',' ','S','t','a','n','d','a','r','d',' ','T','i','m',
197      'e','\0'}, -120, 0},
198    {"CAT",
199     {'C','e','n','t','r','a','l',' ','A','f','r','i','c','a','n',' '
200     ,'T','i','m','e','\0'}, -120, 0},
201    {"SAST",
202     {'S','o','u','t','h',' ','A','f','r','i','c','a',' ','S','t','a','n','d',
203      'a','r','d',' ','T','i','m','e','\0'}, -120, 0},
204    {"IST",
205     {'I','s','r','a','e','l',' ','S','t','a','n','d','a','r','d',' ','T','i',
206      'm','e','\0'}, -120, 0},
207    {"MSK",
208     {'R','u','s','s','i','a','n',' ','S','t','a','n','d','a','r','d',' ','T',
209      'i','m','e','\0'}, -180, 0},
210    {"ADT",
211     {'A','r','a','b','i','c',' ','S','t','a','n','d','a','r','d',' ','T','i',
212      'm','e','\0'}, -240, 1},
213    {"AST",
214     {'A','r','a','b',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e',
215      '\0'}, -180, 0},
216    {"MSD",
217     {'R','u','s','s','i','a','n',' ','S','t','a','n','d','a','r','d',' ','T',
218      'i','m','e','\0'}, -240, 1},
219    {"EAT",
220     {'E','.',' ','A','f','r','i','c','a',' ','S','t','a','n','d','a','r','d',
221      ' ','T','i','m','e','\0'}, -180, 0},
222    {"IRST",
223     {'I','r','a','n',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e',
224      '\0'}, -270, 1},
225    {"GST",
226     {'A','r','a','b','i','a','n',' ','S','t','a','n','d','a','r','d',' ','T',
227      'i','m','e','\0'}, -240, 0},
228    {"AZST",
229     {'C','a','u','c','a','s','u','s',' ','S','t','a','n','d','a','r','d',' ',
230      'T','i','m','e','\0'}, -300, 1},
231    {"AFT",
232     {'A','f','g','h','a','n','i','s','t','a','n',' ','S','t','a','n','d','a',
233      'r','d',' ','T','i','m','e','\0'}, -270, 0},
234    {"YEKST",
235     {'E','k','a','t','e','r','i','n','b','u','r','g',' ','S','t','a','n','d',
236      'a','r','d',' ','T','i','m','e','\0'}, -360, 1},
237    {"PKT",
238     {'W','e','s','t',' ','A','s','i','a',' ','S','t','a','n','d','a','r','d',
239      ' ','T','i','m','e','\0'}, -300, 0},
240    {"IST",
241     {'I','n','d','i','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m',
242      'e','\0'}, -330, 0},
243    {"NPT",
244     {'N','e','p','a','l',' ','S','t','a','n','d','a','r','d',' ','T','i','m',
245      'e','\0'}, -345, 0},
246    {"ALMST",
247     {'N','.',' ','C','e','n','t','r','a','l',' ','A','s','i','a',' ','S','t',
248      'a','n','d','a','r','d',' ','T','i','m','e','\0'}, -420, 1},
249    {"BDT",
250     {'C','e','n','t','r','a','l',' ','A','s','i','a',' ','S','t','a','n','d',
251      'a','r','d',' ','T','i','m','e','\0'}, -360, 0},
252    {"LKT",
253     {'S','r','i',' ','L','a','n','k','a',' ','S','t','a','n','d','a','r','d',
254      ' ','T','i','m','e','\0'}, -360, 0},
255    {"MMT",
256     {'M','y','a','n','m','a','r',' ','S','t','a','n','d','a','r','d',' ','T',
257      'i','m','e','\0'}, -390, 0},
258    {"ICT",
259     {'S','E',' ','A','s','i','a',' ','S','t','a','n','d','a','r','d',' ','T',
260      'i','m','e','\0'}, -420, 0},
261    {"KRAST",
262     {'N','o','r','t','h',' ','A','s','i','a',' ','S','t','a','n','d','a','r',
263      'd',' ','T','i','m','e','\0'}, -480, 1},
264    {"CST",
265     {'C','h','i','n','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m',
266      'e','\0'}, -480, 0},
267    {"IRKST",
268     {'N','o','r','t','h',' ','A','s','i','a',' ','E','a','s','t',' ','S','t',
269      'a','n','d','a','r','d',' ','T','i','m','e','\0'}, -540, 1},
270    {"SGT",
271     {'M','a','l','a','y',' ','P','e','n','i','n','s','u','l','a',' ','S','t',
272      'a','n','d','a','r','d',' ','T','i','m','e','\0'}, -480, 0},
273    {"WST",
274     {'W','.',' ','A','u','s','t','r','a','l','i','a',' ','S','t','a','n','d',
275      'a','r','d',' ','T','i','m','e','\0'}, -480, 0},
276    {"JST",
277     {'T','o','k','y','o',' ','S','t','a','n','d','a','r','d',' ','T','i','m',
278      'e','\0'}, -540, 0},
279    {"KST",
280     {'K','o','r','e','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m',
281      'e','\0'}, -540, 0},
282    {"YAKST",
283     {'Y','a','k','u','t','s','k',' ','S','t','a','n','d','a','r','d',' ','T',
284      'i','m','e','\0'}, -600, 1},
285    {"CST",
286     {'C','e','n','.',' ','A','u','s','t','r','a','l','i','a',' ','S','t','a',
287      'n','d','a','r','d',' ','T','i','m','e','\0'}, -570, 0},
288    {"EST",
289     {'E','.',' ','A','u','s','t','r','a','l','i','a',' ','S','t','a','n','d',
290      'a','r','d',' ','T','i','m','e','\0'}, -600, 0},
291    {"GST",
292     {'W','e','s','t',' ','P','a','c','i','f','i','c',' ','S','t','a','n','d',
293      'a','r','d',' ','T','i','m','e','\0'}, -600, 0},
294    {"VLAST",
295     {'V','l','a','d','i','v','o','s','t','o','k',' ','S','t','a','n','d','a',
296      'r','d',' ','T','i','m','e','\0'}, -660, 1},
297    {"MAGST",
298     {'C','e','n','t','r','a','l',' ','P','a','c','i','f','i','c',' ','S','t',
299      'a','n','d','a','r','d',' ','T','i','m','e','\0'}, -720, 1},
300    {"NZST",
301     {'N','e','w',' ','Z','e','a','l','a','n','d',' ','S','t','a','n','d','a',
302      'r','d',' ','T','i','m','e','\0'}, -720, 0},
303    {"FJT",
304     {'F','i','j','i',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e',
305      '\0'}, -720, 0},
306    {"TOT",
307     {'T','o','n','g','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m',
308      'e','\0'}, -780, 0},
309    {"NOVT",
310     {'N','o','v','o','s','i','b','i','r','s','k',' ','S','t','a','n','d','a',
311      'r','d',' ','T','i','m','e','\0'}, -360, 1}
312 };
313
314 #define TICKSPERSEC        10000000
315 #define TICKSPERMSEC       10000
316 #define SECSPERDAY         86400
317 #define SECSPERHOUR        3600
318 #define SECSPERMIN         60
319 #define MINSPERHOUR        60
320 #define HOURSPERDAY        24
321 #define EPOCHWEEKDAY       1  /* Jan 1, 1601 was Monday */
322 #define DAYSPERWEEK        7
323 #define EPOCHYEAR          1601
324 #define DAYSPERNORMALYEAR  365
325 #define DAYSPERLEAPYEAR    366
326 #define MONSPERYEAR        12
327 #define DAYSPERQUADRICENTENNIUM (365 * 400 + 97)
328 #define DAYSPERNORMALCENTURY (365 * 100 + 24)
329 #define DAYSPERNORMALQUADRENNIUM (365 * 4 + 1)
330
331 /* 1601 to 1970 is 369 years plus 89 leap days */
332 #define SECS_1601_TO_1970  ((369 * 365 + 89) * (ULONGLONG)SECSPERDAY)
333 #define TICKS_1601_TO_1970 (SECS_1601_TO_1970 * TICKSPERSEC)
334 /* 1601 to 1980 is 379 years plus 91 leap days */
335 #define SECS_1601_TO_1980  ((379 * 365 + 91) * (ULONGLONG)SECSPERDAY)
336 #define TICKS_1601_TO_1980 (SECS_1601_TO_1980 * TICKSPERSEC)
337 /* max ticks that can be represented as Unix time */
338 #define TICKS_1601_TO_UNIX_MAX ((SECS_1601_TO_1970 + INT_MAX) * TICKSPERSEC)
339
340
341 static const int MonthLengths[2][MONSPERYEAR] =
342 {
343         { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 },
344         { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
345 };
346
347 static inline int IsLeapYear(int Year)
348 {
349         return Year % 4 == 0 && (Year % 100 != 0 || Year % 400 == 0) ? 1 : 0;
350 }
351
352 /***********************************************************************
353  *              NTDLL_get_server_timeout
354  *
355  * Convert a NTDLL timeout into a timeval struct to send to the server.
356  */
357 void NTDLL_get_server_timeout( abs_time_t *when, const LARGE_INTEGER *timeout )
358 {
359     UINT remainder;
360
361     if (!timeout)  /* infinite timeout */
362     {
363         when->sec = when->usec = 0;
364     }
365     else if (timeout->QuadPart <= 0)  /* relative timeout */
366     {
367         struct timeval tv;
368
369         if (-timeout->QuadPart > (LONGLONG)INT_MAX * TICKSPERSEC)
370             when->sec = when->usec = INT_MAX;
371         else
372         {
373             ULONG sec = RtlEnlargedUnsignedDivide( -timeout->QuadPart, TICKSPERSEC, &remainder );
374             gettimeofday( &tv, 0 );
375             when->sec = tv.tv_sec + sec;
376             if ((when->usec = tv.tv_usec + (remainder / 10)) >= 1000000)
377             {
378                 when->usec -= 1000000;
379                 when->sec++;
380             }
381             if (when->sec < tv.tv_sec)  /* overflow */
382                 when->sec = when->usec = INT_MAX;
383         }
384     }
385     else  /* absolute time */
386     {
387         if (timeout->QuadPart < TICKS_1601_TO_1970)
388             when->sec = when->usec = 0;
389         else if (timeout->QuadPart > TICKS_1601_TO_UNIX_MAX)
390             when->sec = when->usec = INT_MAX;
391         else
392         {
393             when->sec = RtlEnlargedUnsignedDivide( timeout->QuadPart - TICKS_1601_TO_1970,
394                                                    TICKSPERSEC, &remainder );
395             when->usec = remainder / 10;
396         }
397     }
398 }
399
400
401 /***********************************************************************
402  *              NTDLL_from_server_timeout
403  *
404  * Convert a timeval struct from the server into an NTDLL timeout.
405  */
406 void NTDLL_from_server_timeout( LARGE_INTEGER *timeout, const abs_time_t *when )
407 {
408     timeout->QuadPart = when->sec * (ULONGLONG)TICKSPERSEC + TICKS_1601_TO_1970;
409     timeout->QuadPart += when->usec * 10;
410 }
411
412
413 /******************************************************************************
414  *       RtlTimeToTimeFields [NTDLL.@]
415  *
416  * Convert a time into a TIME_FIELDS structure.
417  *
418  * PARAMS
419  *   liTime     [I] Time to convert.
420  *   TimeFields [O] Destination for the converted time.
421  *
422  * RETURNS
423  *   Nothing.
424  */
425 VOID WINAPI RtlTimeToTimeFields(
426         const LARGE_INTEGER *liTime,
427         PTIME_FIELDS TimeFields)
428 {
429         int SecondsInDay;
430         long int cleaps, years, yearday, months;
431         long int Days;
432         LONGLONG Time;
433
434         /* Extract millisecond from time and convert time into seconds */
435         TimeFields->Milliseconds =
436             (CSHORT) (( liTime->QuadPart % TICKSPERSEC) / TICKSPERMSEC);
437         Time = liTime->QuadPart / TICKSPERSEC;
438
439         /* The native version of RtlTimeToTimeFields does not take leap seconds
440          * into account */
441
442         /* Split the time into days and seconds within the day */
443         Days = Time / SECSPERDAY;
444         SecondsInDay = Time % SECSPERDAY;
445
446         /* compute time of day */
447         TimeFields->Hour = (CSHORT) (SecondsInDay / SECSPERHOUR);
448         SecondsInDay = SecondsInDay % SECSPERHOUR;
449         TimeFields->Minute = (CSHORT) (SecondsInDay / SECSPERMIN);
450         TimeFields->Second = (CSHORT) (SecondsInDay % SECSPERMIN);
451
452         /* compute day of week */
453         TimeFields->Weekday = (CSHORT) ((EPOCHWEEKDAY + Days) % DAYSPERWEEK);
454
455         /* compute year, month and day of month. */
456         cleaps=( 3 * ((4 * Days + 1227) / DAYSPERQUADRICENTENNIUM) + 3 ) / 4;
457         Days += 28188 + cleaps;
458         years = (20 * Days - 2442) / (5 * DAYSPERNORMALQUADRENNIUM);
459         yearday = Days - (years * DAYSPERNORMALQUADRENNIUM)/4;
460         months = (64 * yearday) / 1959;
461         /* the result is based on a year starting on March.
462          * To convert take 12 from Januari and Februari and
463          * increase the year by one. */
464         if( months < 14 ) {
465             TimeFields->Month = months - 1;
466             TimeFields->Year = years + 1524;
467         } else {
468             TimeFields->Month = months - 13;
469             TimeFields->Year = years + 1525;
470         }
471         /* calculation of day of month is based on the wonderful
472          * sequence of INT( n * 30.6): it reproduces the 
473          * 31-30-31-30-31-31 month lengths exactly for small n's */
474         TimeFields->Day = yearday - (1959 * months) / 64 ;
475         return;
476 }
477
478 /******************************************************************************
479  *       RtlTimeFieldsToTime [NTDLL.@]
480  *
481  * Convert a TIME_FIELDS structure into a time.
482  *
483  * PARAMS
484  *   ftTimeFields [I] TIME_FIELDS structure to convert.
485  *   Time         [O] Destination for the converted time.
486  *
487  * RETURNS
488  *   Success: TRUE.
489  *   Failure: FALSE.
490  */
491 BOOLEAN WINAPI RtlTimeFieldsToTime(
492         PTIME_FIELDS tfTimeFields,
493         PLARGE_INTEGER Time)
494 {
495         int month, year, cleaps, day;
496
497         /* FIXME: normalize the TIME_FIELDS structure here */
498         /* No, native just returns 0 (error) if the fields are not */
499         if( tfTimeFields->Milliseconds< 0 || tfTimeFields->Milliseconds > 999 ||
500                 tfTimeFields->Second < 0 || tfTimeFields->Second > 59 ||
501                 tfTimeFields->Minute < 0 || tfTimeFields->Minute > 59 ||
502                 tfTimeFields->Hour < 0 || tfTimeFields->Hour > 23 ||
503                 tfTimeFields->Month < 1 || tfTimeFields->Month > 12 ||
504                 tfTimeFields->Day < 1 ||
505                 tfTimeFields->Day > MonthLengths
506                     [ tfTimeFields->Month ==2 || IsLeapYear(tfTimeFields->Year)]
507                     [ tfTimeFields->Month - 1] ||
508                 tfTimeFields->Year < 1601 )
509             return FALSE;
510
511         /* now calculate a day count from the date
512          * First start counting years from March. This way the leap days
513          * are added at the end of the year, not somewhere in the middle.
514          * Formula's become so much less complicate that way.
515          * To convert: add 12 to the month numbers of Jan and Feb, and 
516          * take 1 from the year */
517         if(tfTimeFields->Month < 3) {
518             month = tfTimeFields->Month + 13;
519             year = tfTimeFields->Year - 1;
520         } else {
521             month = tfTimeFields->Month + 1;
522             year = tfTimeFields->Year;
523         }
524         cleaps = (3 * (year / 100) + 3) / 4;   /* nr of "century leap years"*/
525         day =  (36525 * year) / 100 - cleaps + /* year * dayperyr, corrected */
526                  (1959 * month) / 64 +         /* months * daypermonth */
527                  tfTimeFields->Day -          /* day of the month */
528                  584817 ;                      /* zero that on 1601-01-01 */
529         /* done */
530         
531         Time->QuadPart = (((((LONGLONG) day * HOURSPERDAY +
532             tfTimeFields->Hour) * MINSPERHOUR +
533             tfTimeFields->Minute) * SECSPERMIN +
534             tfTimeFields->Second ) * 1000 +
535             tfTimeFields->Milliseconds ) * TICKSPERMSEC;
536
537         return TRUE;
538 }
539
540 /***********************************************************************
541  *       TIME_GetBias [internal]
542  *
543  * Helper function calculates delta local time from UTC. 
544  *
545  * PARAMS
546  *   utc [I] The current utc time.
547  *   pdaylight [I] Local daylight.
548  *
549  * RETURNS
550  *   The bias for the current timezone.
551  */
552 static int TIME_GetBias(time_t utc, int *pdaylight)
553 {
554     struct tm *ptm;
555     static time_t last_utc;
556     static int last_bias;
557     static int last_daylight;
558     int ret;
559
560     RtlEnterCriticalSection( &TIME_GetBias_section );
561     if(utc == last_utc)
562     {
563         *pdaylight = last_daylight;
564         ret = last_bias;        
565     } else
566     {
567         ptm = localtime(&utc);
568         *pdaylight = last_daylight =
569             ptm->tm_isdst; /* daylight for local timezone */
570         ptm = gmtime(&utc);
571         ptm->tm_isdst = *pdaylight; /* use local daylight, not that of Greenwich */
572         last_utc = utc;
573         ret = last_bias = (int)(utc-mktime(ptm));
574     }
575     RtlLeaveCriticalSection( &TIME_GetBias_section );
576     return ret;
577 }
578
579 /******************************************************************************
580  *        RtlLocalTimeToSystemTime [NTDLL.@]
581  *
582  * Convert a local time into system time.
583  *
584  * PARAMS
585  *   LocalTime  [I] Local time to convert.
586  *   SystemTime [O] Destination for the converted time.
587  *
588  * RETURNS
589  *   Success: STATUS_SUCCESS.
590  *   Failure: An NTSTATUS error code indicating the problem.
591  */
592 NTSTATUS WINAPI RtlLocalTimeToSystemTime( const LARGE_INTEGER *LocalTime,
593                                           PLARGE_INTEGER SystemTime)
594 {
595     time_t gmt;
596     int bias, daylight;
597
598     TRACE("(%p, %p)\n", LocalTime, SystemTime);
599
600     gmt = time(NULL);
601     bias = TIME_GetBias(gmt, &daylight);
602
603     SystemTime->QuadPart = LocalTime->QuadPart - bias * (LONGLONG)10000000;
604     return STATUS_SUCCESS;
605 }
606
607 /******************************************************************************
608  *       RtlSystemTimeToLocalTime [NTDLL.@]
609  *
610  * Convert a system time into a local time.
611  *
612  * PARAMS
613  *   SystemTime [I] System time to convert.
614  *   LocalTime  [O] Destination for the converted time.
615  *
616  * RETURNS
617  *   Success: STATUS_SUCCESS.
618  *   Failure: An NTSTATUS error code indicating the problem.
619  */
620 NTSTATUS WINAPI RtlSystemTimeToLocalTime( const LARGE_INTEGER *SystemTime,
621                                           PLARGE_INTEGER LocalTime )
622 {
623     time_t gmt;
624     int bias, daylight;
625
626     TRACE("(%p, %p)\n", SystemTime, LocalTime);
627
628     gmt = time(NULL);
629     bias = TIME_GetBias(gmt, &daylight);
630
631     LocalTime->QuadPart = SystemTime->QuadPart + bias * (LONGLONG)10000000;
632     return STATUS_SUCCESS;
633 }
634
635 /******************************************************************************
636  *       RtlTimeToSecondsSince1970 [NTDLL.@]
637  *
638  * Convert a time into a count of seconds since 1970.
639  *
640  * PARAMS
641  *   Time    [I] Time to convert.
642  *   Seconds [O] Destination for the converted time.
643  *
644  * RETURNS
645  *   Success: TRUE.
646  *   Failure: FALSE, if the resulting value will not fit in a DWORD.
647  */
648 BOOLEAN WINAPI RtlTimeToSecondsSince1970( const LARGE_INTEGER *Time, LPDWORD Seconds )
649 {
650     ULONGLONG tmp = ((ULONGLONG)Time->u.HighPart << 32) | Time->u.LowPart;
651     tmp = RtlLargeIntegerDivide( tmp, 10000000, NULL );
652     tmp -= SECS_1601_TO_1970;
653     if (tmp > 0xffffffff) return FALSE;
654     *Seconds = (DWORD)tmp;
655     return TRUE;
656 }
657
658 /******************************************************************************
659  *       RtlTimeToSecondsSince1980 [NTDLL.@]
660  *
661  * Convert a time into a count of seconds since 1980.
662  *
663  * PARAMS
664  *   Time    [I] Time to convert.
665  *   Seconds [O] Destination for the converted time.
666  *
667  * RETURNS
668  *   Success: TRUE.
669  *   Failure: FALSE, if the resulting value will not fit in a DWORD.
670  */
671 BOOLEAN WINAPI RtlTimeToSecondsSince1980( const LARGE_INTEGER *Time, LPDWORD Seconds )
672 {
673     ULONGLONG tmp = ((ULONGLONG)Time->u.HighPart << 32) | Time->u.LowPart;
674     tmp = RtlLargeIntegerDivide( tmp, 10000000, NULL );
675     tmp -= SECS_1601_TO_1980;
676     if (tmp > 0xffffffff) return FALSE;
677     *Seconds = (DWORD)tmp;
678     return TRUE;
679 }
680
681 /******************************************************************************
682  *       RtlSecondsSince1970ToTime [NTDLL.@]
683  *
684  * Convert a count of seconds since 1970 to a time.
685  *
686  * PARAMS
687  *   Seconds [I] Time to convert.
688  *   Time    [O] Destination for the converted time.
689  *
690  * RETURNS
691  *   Nothing.
692  */
693 void WINAPI RtlSecondsSince1970ToTime( DWORD Seconds, LARGE_INTEGER *Time )
694 {
695     ULONGLONG secs = Seconds * (ULONGLONG)TICKSPERSEC + TICKS_1601_TO_1970;
696     Time->u.LowPart  = (DWORD)secs;
697     Time->u.HighPart = (DWORD)(secs >> 32);
698 }
699
700 /******************************************************************************
701  *       RtlSecondsSince1980ToTime [NTDLL.@]
702  *
703  * Convert a count of seconds since 1980 to a time.
704  *
705  * PARAMS
706  *   Seconds [I] Time to convert.
707  *   Time    [O] Destination for the converted time.
708  *
709  * RETURNS
710  *   Nothing.
711  */
712 void WINAPI RtlSecondsSince1980ToTime( DWORD Seconds, LARGE_INTEGER *Time )
713 {
714     ULONGLONG secs = Seconds * (ULONGLONG)TICKSPERSEC + TICKS_1601_TO_1980;
715     Time->u.LowPart  = (DWORD)secs;
716     Time->u.HighPart = (DWORD)(secs >> 32);
717 }
718
719 /******************************************************************************
720  *       RtlTimeToElapsedTimeFields [NTDLL.@]
721  *
722  * Convert a time to a count of elapsed seconds.
723  *
724  * PARAMS
725  *   Time       [I] Time to convert.
726  *   TimeFields [O] Destination for the converted time.
727  *
728  * RETURNS
729  *   Nothing.
730  */
731 void WINAPI RtlTimeToElapsedTimeFields( const LARGE_INTEGER *Time, PTIME_FIELDS TimeFields )
732 {
733     LONGLONG time;
734     UINT rem;
735
736     time = RtlExtendedLargeIntegerDivide( Time->QuadPart, TICKSPERSEC, &rem );
737     TimeFields->Milliseconds = rem / TICKSPERMSEC;
738
739     /* time is now in seconds */
740     TimeFields->Year  = 0;
741     TimeFields->Month = 0;
742     TimeFields->Day   = RtlExtendedLargeIntegerDivide( time, SECSPERDAY, &rem );
743
744     /* rem is now the remaining seconds in the last day */
745     TimeFields->Second = rem % 60;
746     rem /= 60;
747     TimeFields->Minute = rem % 60;
748     TimeFields->Hour = rem / 60;
749 }
750
751 /***********************************************************************
752  *       NtQuerySystemTime [NTDLL.@]
753  *       ZwQuerySystemTime [NTDLL.@]
754  *
755  * Get the current system time.
756  *
757  * PARAMS
758  *   Time [O] Destination for the current system time.
759  *
760  * RETURNS
761  *   Success: STATUS_SUCCESS.
762  *   Failure: An NTSTATUS error code indicating the problem.
763  */
764 NTSTATUS WINAPI NtQuerySystemTime( PLARGE_INTEGER Time )
765 {
766     struct timeval now;
767
768     gettimeofday( &now, 0 );
769     Time->QuadPart = now.tv_sec * (ULONGLONG)TICKSPERSEC + TICKS_1601_TO_1970;
770     Time->QuadPart += now.tv_usec * 10;
771     return STATUS_SUCCESS;
772 }
773
774 /***********************************************************************
775  *        TIME_GetTZAsStr [internal]
776  *
777  * Helper function that returns the given timezone as a string.
778  *
779  * PARAMS
780  *   utc [I] The current utc time.
781  *   bias [I] The bias of the current timezone.
782  *   dst [I] ??
783  *
784  * RETURNS
785  *   Timezone name.
786  *
787  * NOTES:
788  *   This could be done with a hash table instead of merely iterating through a
789  *   table, however with the small amount of entries (60 or so) I didn't think
790  *   it was worth it.
791  */
792 static const WCHAR* TIME_GetTZAsStr (time_t utc, int bias, int dst)
793 {
794    char psTZName[7];
795    struct tm *ptm = localtime(&utc);
796    unsigned int i;
797
798    if (!strftime (psTZName, 7, "%Z", ptm))
799       return (NULL);
800
801    for (i=0; i<(sizeof(TZ_INFO) / sizeof(struct tagTZ_INFO)); i++)
802    {
803       if ( strcmp(TZ_INFO[i].psTZFromUnix, psTZName) == 0 &&
804            TZ_INFO[i].bias == bias &&
805            TZ_INFO[i].dst == dst
806          )
807             return TZ_INFO[i].psTZWindows;
808    }
809    FIXME("Can't match system time zone name \"%s\" to an entry in TZ_INFO\n",psTZName);
810    FIXME(" Please add appropriate entry to TZ_INFO and submit as patch to wine-patches\n");
811    return NULL;
812 }
813
814 /***  TIME_GetTimeZoneInfoFromReg: helper for GetTimeZoneInformation ***/
815
816
817 static int TIME_GetTimeZoneInfoFromReg(LPTIME_ZONE_INFORMATION tzinfo)
818 {
819     BYTE buf[90];
820     KEY_VALUE_PARTIAL_INFORMATION * KpInfo =
821         (KEY_VALUE_PARTIAL_INFORMATION *) buf;
822     HKEY hkey;
823     DWORD size;
824     OBJECT_ATTRIBUTES attr;
825     UNICODE_STRING nameW;
826
827     attr.Length = sizeof(attr);
828     attr.RootDirectory = 0;
829     attr.ObjectName = &nameW;
830     attr.Attributes = 0;
831     attr.SecurityDescriptor = NULL;
832     attr.SecurityQualityOfService = NULL;
833     RtlInitUnicodeString( &nameW, TZInformationKeyW);
834     if (!NtOpenKey( &hkey, KEY_ALL_ACCESS, &attr )) {
835
836 #define GTZIFR_N( valkey, tofield) \
837         RtlInitUnicodeString( &nameW, valkey );\
838         if (!NtQueryValueKey( hkey, &nameW, KeyValuePartialInformation, KpInfo,\
839                     sizeof(buf), &size )) { \
840             if( size >= (sizeof((tofield)) + \
841                     offsetof(KEY_VALUE_PARTIAL_INFORMATION,Data))); { \
842                 memcpy(&(tofield), \
843                         KpInfo->Data, sizeof(tofield)); \
844             } \
845         }
846 #define GTZIFR_S( valkey, tofield) \
847         RtlInitUnicodeString( &nameW, valkey );\
848         if (!NtQueryValueKey( hkey, &nameW, KeyValuePartialInformation, KpInfo,\
849                     sizeof(buf), &size )) { \
850             strncpyW( tofield, (WCHAR*) KpInfo->Data, \
851                     sizeof( tofield) / sizeof(WCHAR) ); \
852         }
853         
854         GTZIFR_N( TZStandardStartW,  tzinfo->StandardDate)
855         GTZIFR_N( TZDaylightStartW,  tzinfo->DaylightDate)
856         GTZIFR_N( TZBiasW,          tzinfo->Bias)
857         GTZIFR_N( TZStandardBiasW,  tzinfo->StandardBias)
858         GTZIFR_N( TZDaylightBiasW,  tzinfo->DaylightBias)
859         GTZIFR_S( TZStandardNameW, tzinfo->StandardName)
860         GTZIFR_S( TZDaylightNameW, tzinfo->DaylightName)
861
862 #undef GTZIFR_N
863 #undef GTZIFR_S
864         NtClose( hkey );
865         return 1;
866     }
867     return 0;
868 }
869
870 /***********************************************************************
871  *      RtlQueryTimeZoneInformation [NTDLL.@]
872  *
873  * Get information about the current timezone.
874  *
875  * PARAMS
876  *   tzinfo [O] Destination for the retrieved timezone info.
877  *
878  * RETURNS
879  *   Success: STATUS_SUCCESS.
880  *   Failure: An NTSTATUS error code indicating the problem.
881  */
882 NTSTATUS WINAPI RtlQueryTimeZoneInformation(LPTIME_ZONE_INFORMATION tzinfo)
883 {
884     time_t gmt;
885     int bias, daylight;
886     const WCHAR *psTZ;
887
888     memset(tzinfo, 0, sizeof(TIME_ZONE_INFORMATION));
889
890     if( !TIME_GetTimeZoneInfoFromReg(tzinfo)) {
891
892         gmt = time(NULL);
893         bias = TIME_GetBias(gmt, &daylight);
894
895         tzinfo->Bias = -bias / 60;
896         tzinfo->StandardBias = 0;
897         tzinfo->DaylightBias = -60;
898         tzinfo->StandardName[0]='\0';
899         tzinfo->DaylightName[0]='\0';
900         psTZ = TIME_GetTZAsStr (gmt, (-bias/60), daylight);
901         if (psTZ) strcpyW( tzinfo->StandardName, psTZ );
902         }
903     return STATUS_SUCCESS;
904 }
905
906 /***********************************************************************
907  *       RtlSetTimeZoneInformation [NTDLL.@]
908  *
909  * Set the current time zone information.
910  *
911  * PARAMS
912  *   tzinfo [I] Timezone information to set.
913  *
914  * RETURNS
915  *   Success: STATUS_SUCCESS.
916  *   Failure: An NTSTATUS error code indicating the problem.
917  *
918  * BUGS
919  *   Uses the obsolete unix timezone structure and tz_dsttime member.
920  */
921 NTSTATUS WINAPI RtlSetTimeZoneInformation( const TIME_ZONE_INFORMATION *tzinfo )
922 {
923 #ifdef HAVE_SETTIMEOFDAY
924     struct timezone tz;
925
926     tz.tz_minuteswest = tzinfo->Bias;
927 #ifdef DST_NONE
928     tz.tz_dsttime = DST_NONE;
929 #else
930     tz.tz_dsttime = 0;
931 #endif
932     if(!settimeofday(NULL, &tz))
933         return STATUS_SUCCESS;
934 #endif
935     return STATUS_PRIVILEGE_NOT_HELD;
936 }
937
938 /***********************************************************************
939  *        NtSetSystemTime [NTDLL.@]
940  *        ZwSetSystemTime [NTDLL.@]
941  *
942  * Set the system time.
943  *
944  * PARAMS
945  *   NewTime [I] The time to set.
946  *   OldTime [O] Optional destination for the previous system time.
947  *
948  * RETURNS
949  *   Success: STATUS_SUCCESS.
950  *   Failure: An NTSTATUS error code indicating the problem.
951  */
952 NTSTATUS WINAPI NtSetSystemTime(const LARGE_INTEGER *NewTime, LARGE_INTEGER *OldTime)
953 {
954     TIME_FIELDS tf;
955     struct timeval tv;
956     struct timezone tz;
957     struct tm t;
958     time_t sec, oldsec;
959     int dst, bias;
960     int err;
961
962     /* Return the old time if necessary */
963     if(OldTime)
964         NtQuerySystemTime(OldTime);
965
966     RtlTimeToTimeFields(NewTime, &tf);
967
968     /* call gettimeofday to get the current timezone */
969     gettimeofday(&tv, &tz);
970     oldsec = tv.tv_sec;
971     /* get delta local time from utc */
972     bias = TIME_GetBias(oldsec, &dst);
973
974     /* get the number of seconds */
975     t.tm_sec = tf.Second;
976     t.tm_min = tf.Minute;
977     t.tm_hour = tf.Hour;
978     t.tm_mday = tf.Day;
979     t.tm_mon = tf.Month - 1;
980     t.tm_year = tf.Year - 1900;
981     t.tm_isdst = dst;
982     sec = mktime (&t);
983     /* correct for timezone and daylight */
984     sec += bias;
985
986     /* set the new time */
987     tv.tv_sec = sec;
988     tv.tv_usec = tf.Milliseconds * 1000;
989
990     /* error and sanity check*/
991     if(sec == (time_t)-1 || abs((int)(sec-oldsec)) > SETTIME_MAX_ADJUST) {
992         err = 2;
993     } else {
994 #ifdef HAVE_SETTIMEOFDAY
995         err = settimeofday(&tv, NULL); /* 0 is OK, -1 is error */
996         if(err == 0)
997             return STATUS_SUCCESS;
998 #else
999         err = 1;
1000 #endif
1001     }
1002
1003     ERR("Cannot set time to %d/%d/%d %d:%d:%d Time adjustment %ld %s\n",
1004             tf.Year, tf.Month, tf.Day, tf.Hour, tf.Minute, tf.Second,
1005             (long)(sec-oldsec),
1006             err == -1 ? "No Permission"
1007                       : sec == (time_t)-1 ? "" : "is too large." );
1008
1009     if(err == 2)
1010         return STATUS_INVALID_PARAMETER;
1011     else if(err == -1)
1012         return STATUS_PRIVILEGE_NOT_HELD;
1013     else
1014         return STATUS_NOT_IMPLEMENTED;
1015 }