s3: Fix some nonempty line endings
[Samba/gebeck_regimport.git] / source3 / lib / time.c
blob00cf0f16c1f1daa0453d3cf641e4680f08754564
1 /*
2 Unix SMB/CIFS implementation.
3 time handling functions
5 Copyright (C) Andrew Tridgell 1992-2004
6 Copyright (C) Stefan (metze) Metzmacher 2002
7 Copyright (C) Jeremy Allison 2007
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "includes.h"
25 /**
26 * @file
27 * @brief time handling functions
31 #define NTTIME_INFINITY (NTTIME)0x8000000000000000LL
33 #if (SIZEOF_LONG == 8)
34 #define TIME_FIXUP_CONSTANT_INT 11644473600L
35 #elif (SIZEOF_LONG_LONG == 8)
36 #define TIME_FIXUP_CONSTANT_INT 11644473600LL
37 #endif
40 /**
41 parse a nttime as a large integer in a string and return a NTTIME
43 NTTIME nttime_from_string(const char *s)
45 return strtoull(s, NULL, 0);
48 /**************************************************************
49 Handle conversions between time_t and uint32, taking care to
50 preserve the "special" values.
51 **************************************************************/
53 uint32_t convert_time_t_to_uint32_t(time_t t)
55 #if (defined(SIZEOF_TIME_T) && (SIZEOF_TIME_T == 8))
56 /* time_t is 64-bit. */
57 if (t == 0x8000000000000000LL) {
58 return 0x80000000;
59 } else if (t == 0x7FFFFFFFFFFFFFFFLL) {
60 return 0x7FFFFFFF;
62 #endif
63 return (uint32_t)t;
66 time_t convert_uint32_t_to_time_t(uint32_t u)
68 #if (defined(SIZEOF_TIME_T) && (SIZEOF_TIME_T == 8))
69 /* time_t is 64-bit. */
70 if (u == 0x80000000) {
71 return (time_t)0x8000000000000000LL;
72 } else if (u == 0x7FFFFFFF) {
73 return (time_t)0x7FFFFFFFFFFFFFFFLL;
75 #endif
76 return (time_t)u;
79 /****************************************************************************
80 Check if NTTIME is 0.
81 ****************************************************************************/
83 bool nt_time_is_zero(const NTTIME *nt)
85 return (*nt == 0);
88 /****************************************************************************
89 Convert ASN.1 GeneralizedTime string to unix-time.
90 Returns 0 on failure; Currently ignores timezone.
91 ****************************************************************************/
93 time_t generalized_to_unix_time(const char *str)
95 struct tm tm;
97 ZERO_STRUCT(tm);
99 if (sscanf(str, "%4d%2d%2d%2d%2d%2d",
100 &tm.tm_year, &tm.tm_mon, &tm.tm_mday,
101 &tm.tm_hour, &tm.tm_min, &tm.tm_sec) != 6) {
102 return 0;
104 tm.tm_year -= 1900;
105 tm.tm_mon -= 1;
107 return timegm(&tm);
110 /*******************************************************************
111 Accessor function for the server time zone offset.
112 set_server_zone_offset() must have been called first.
113 ******************************************************************/
115 static int server_zone_offset;
117 int get_server_zone_offset(void)
119 return server_zone_offset;
122 /*******************************************************************
123 Initialize the server time zone offset. Called when a client connects.
124 ******************************************************************/
126 int set_server_zone_offset(time_t t)
128 server_zone_offset = get_time_zone(t);
129 return server_zone_offset;
132 /***************************************************************************
133 Server versions of the above functions.
134 ***************************************************************************/
136 void srv_put_dos_date(char *buf,int offset,time_t unixdate)
138 push_dos_date((uint8_t *)buf, offset, unixdate, server_zone_offset);
141 void srv_put_dos_date2(char *buf,int offset, time_t unixdate)
143 push_dos_date2((uint8_t *)buf, offset, unixdate, server_zone_offset);
146 void srv_put_dos_date3(char *buf,int offset,time_t unixdate)
148 push_dos_date3((uint8_t *)buf, offset, unixdate, server_zone_offset);
151 void round_timespec(enum timestamp_set_resolution res, struct timespec *ts)
153 switch (res) {
154 case TIMESTAMP_SET_SECONDS:
155 round_timespec_to_sec(ts);
156 break;
157 case TIMESTAMP_SET_MSEC:
158 round_timespec_to_usec(ts);
159 break;
160 case TIMESTAMP_SET_NT_OR_BETTER:
161 /* No rounding needed. */
162 break;
166 /****************************************************************************
167 Take a Unix time and convert to an NTTIME structure and place in buffer
168 pointed to by p, rounded to the correct resolution.
169 ****************************************************************************/
171 void put_long_date_timespec(enum timestamp_set_resolution res, char *p, struct timespec ts)
173 NTTIME nt;
174 round_timespec(res, &ts);
175 unix_timespec_to_nt_time(&nt, ts);
176 SIVAL(p, 0, nt & 0xFFFFFFFF);
177 SIVAL(p, 4, nt >> 32);
180 void put_long_date(char *p, time_t t)
182 struct timespec ts;
183 ts.tv_sec = t;
184 ts.tv_nsec = 0;
185 put_long_date_timespec(TIMESTAMP_SET_SECONDS, p, ts);
188 void dos_filetime_timespec(struct timespec *tsp)
190 tsp->tv_sec &= ~1;
191 tsp->tv_nsec = 0;
194 /*******************************************************************
195 Create a unix date (int GMT) from a dos date (which is actually in
196 localtime).
197 ********************************************************************/
199 time_t make_unix_date(const void *date_ptr, int zone_offset)
201 return pull_dos_date(date_ptr, zone_offset);
204 /*******************************************************************
205 Like make_unix_date() but the words are reversed.
206 ********************************************************************/
208 time_t make_unix_date2(const void *date_ptr, int zone_offset)
210 return pull_dos_date2(date_ptr, zone_offset);
213 /*******************************************************************
214 Create a unix GMT date from a dos date in 32 bit "unix like" format
215 these generally arrive as localtimes, with corresponding DST.
216 ******************************************************************/
218 time_t make_unix_date3(const void *date_ptr, int zone_offset)
220 return pull_dos_date3(date_ptr, zone_offset);
223 time_t srv_make_unix_date(const void *date_ptr)
225 return make_unix_date(date_ptr, server_zone_offset);
228 time_t srv_make_unix_date2(const void *date_ptr)
230 return make_unix_date2(date_ptr, server_zone_offset);
233 time_t srv_make_unix_date3(const void *date_ptr)
235 return make_unix_date3(date_ptr, server_zone_offset);
238 /****************************************************************************
239 Interprets an nt time into a unix struct timespec.
240 Differs from nt_time_to_unix in that an 8 byte value of 0xffffffffffffffff
241 will be returned as (time_t)-1, whereas nt_time_to_unix returns 0 in this case.
242 ****************************************************************************/
244 struct timespec interpret_long_date(const char *p)
246 NTTIME nt;
247 nt = IVAL(p,0) + ((uint64_t)IVAL(p,4) << 32);
248 if (nt == (uint64_t)-1) {
249 struct timespec ret;
250 ret.tv_sec = (time_t)-1;
251 ret.tv_nsec = 0;
252 return ret;
254 return nt_time_to_unix_timespec(&nt);
257 /*******************************************************************
258 Re-read the smb serverzone value.
259 ******************************************************************/
261 static struct timeval start_time_hires;
263 void TimeInit(void)
265 set_server_zone_offset(time(NULL));
267 DEBUG(4,("TimeInit: Serverzone is %d\n", server_zone_offset));
269 /* Save the start time of this process. */
270 if (start_time_hires.tv_sec == 0 && start_time_hires.tv_usec == 0) {
271 GetTimeOfDay(&start_time_hires);
275 /**********************************************************************
276 Return a timeval struct of the uptime of this process. As TimeInit is
277 done before a daemon fork then this is the start time from the parent
278 daemon start. JRA.
279 ***********************************************************************/
281 void get_process_uptime(struct timeval *ret_time)
283 struct timeval time_now_hires;
285 GetTimeOfDay(&time_now_hires);
286 ret_time->tv_sec = time_now_hires.tv_sec - start_time_hires.tv_sec;
287 if (time_now_hires.tv_usec < start_time_hires.tv_usec) {
288 ret_time->tv_sec -= 1;
289 ret_time->tv_usec = 1000000 + (time_now_hires.tv_usec - start_time_hires.tv_usec);
290 } else {
291 ret_time->tv_usec = time_now_hires.tv_usec - start_time_hires.tv_usec;
296 * @brief Get the startup time of the server.
298 * @param[out] ret_time A pointer to a timveal structure to set the startup
299 * time.
301 void get_startup_time(struct timeval *ret_time)
303 ret_time->tv_sec = start_time_hires.tv_sec;
304 ret_time->tv_usec = start_time_hires.tv_usec;
308 /****************************************************************************
309 Convert a NTTIME structure to a time_t.
310 It's originally in "100ns units".
312 This is an absolute version of the one above.
313 By absolute I mean, it doesn't adjust from 1/1/1601 to 1/1/1970
314 if the NTTIME was 5 seconds, the time_t is 5 seconds. JFM
315 ****************************************************************************/
317 time_t nt_time_to_unix_abs(const NTTIME *nt)
319 uint64_t d;
321 if (*nt == 0) {
322 return (time_t)0;
325 if (*nt == (uint64_t)-1) {
326 return (time_t)-1;
329 if (*nt == NTTIME_INFINITY) {
330 return (time_t)-1;
333 /* reverse the time */
334 /* it's a negative value, turn it to positive */
335 d=~*nt;
337 d += 1000*1000*10/2;
338 d /= 1000*1000*10;
340 if (!(TIME_T_MIN <= ((time_t)d) && ((time_t)d) <= TIME_T_MAX)) {
341 return (time_t)0;
344 return (time_t)d;
347 time_t uint64s_nt_time_to_unix_abs(const uint64_t *src)
349 NTTIME nttime;
350 nttime = *src;
351 return nt_time_to_unix_abs(&nttime);
354 /****************************************************************************
355 Convert a time_t to a NTTIME structure
357 This is an absolute version of the one above.
358 By absolute I mean, it doesn't adjust from 1/1/1970 to 1/1/1601
359 If the time_t was 5 seconds, the NTTIME is 5 seconds. JFM
360 ****************************************************************************/
362 void unix_to_nt_time_abs(NTTIME *nt, time_t t)
364 double d;
366 if (t==0) {
367 *nt = 0;
368 return;
371 if (t == TIME_T_MAX) {
372 *nt = 0x7fffffffffffffffLL;
373 return;
376 if (t == (time_t)-1) {
377 /* that's what NT uses for infinite */
378 *nt = NTTIME_INFINITY;
379 return;
382 d = (double)(t);
383 d *= 1.0e7;
385 *nt = (NTTIME)d;
387 /* convert to a negative value */
388 *nt=~*nt;
392 /****************************************************************************
393 Utility function that always returns a const string even if localtime
394 and asctime fail.
395 ****************************************************************************/
397 const char *time_to_asc(const time_t t)
399 const char *asct;
400 struct tm *lt = localtime(&t);
402 if (!lt) {
403 return "unknown time";
406 asct = asctime(lt);
407 if (!asct) {
408 return "unknown time";
410 return asct;
413 const char *display_time(NTTIME nttime)
415 float high;
416 float low;
417 int sec;
418 int days, hours, mins, secs;
420 if (nttime==0)
421 return "Now";
423 if (nttime==NTTIME_INFINITY)
424 return "Never";
426 high = 65536;
427 high = high/10000;
428 high = high*65536;
429 high = high/1000;
430 high = high * (~(nttime >> 32));
432 low = ~(nttime & 0xFFFFFFFF);
433 low = low/(1000*1000*10);
435 sec=(int)(high+low);
437 days=sec/(60*60*24);
438 hours=(sec - (days*60*60*24)) / (60*60);
439 mins=(sec - (days*60*60*24) - (hours*60*60) ) / 60;
440 secs=sec - (days*60*60*24) - (hours*60*60) - (mins*60);
442 return talloc_asprintf(talloc_tos(), "%u days, %u hours, %u minutes, "
443 "%u seconds", days, hours, mins, secs);
446 bool nt_time_is_set(const NTTIME *nt)
448 if (*nt == 0x7FFFFFFFFFFFFFFFLL) {
449 return false;
452 if (*nt == NTTIME_INFINITY) {
453 return false;
456 return true;