r20694: To get this right we need to do signed 64-bit
[Samba/bb.git] / source3 / lib / time.c
blobe211bda3fb1fd41cd3fc6253f591bcb1146730a4
1 /*
2 Unix SMB/CIFS implementation.
3 time handling functions
5 Copyright (C) Andrew Tridgell 1992-2004
6 Copyright (C) Stefan (metze) Metzmacher 2002
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include "includes.h"
25 /**
26 * @file
27 * @brief time handling functions
31 #ifndef TIME_T_MIN
32 #define TIME_T_MIN ((time_t)0 < (time_t) -1 ? (time_t) 0 \
33 : ~ (time_t) 0 << (sizeof (time_t) * CHAR_BIT - 1))
34 #endif
35 #ifndef TIME_T_MAX
36 #define TIME_T_MAX (~ (time_t) 0 - TIME_T_MIN)
37 #endif
39 /**
40 External access to time_t_min and time_t_max.
41 **/
42 time_t get_time_t_max(void)
44 return TIME_T_MAX;
47 /**
48 a gettimeofday wrapper
49 **/
50 void GetTimeOfDay(struct timeval *tval)
52 #ifdef HAVE_GETTIMEOFDAY_TZ
53 gettimeofday(tval,NULL);
54 #else
55 gettimeofday(tval);
56 #endif
59 #define TIME_FIXUP_CONSTANT 11644473600LL
61 struct timespec convert_time_t_to_timespec(time_t t)
63 struct timespec ts;
64 ts.tv_sec = t;
65 ts.tv_nsec = 0;
66 return ts;
69 #if (SIZEOF_LONG == 8)
70 #define TIME_FIXUP_CONSTANT_INT 11644473600L
71 #elif (SIZEOF_LONG_LONG == 8)
72 #define TIME_FIXUP_CONSTANT_INT 11644473600LL
73 #endif
75 /****************************************************************************
76 Interpret an 8 byte "filetime" structure to a time_t
77 It's originally in "100ns units since jan 1st 1601"
79 An 8 byte value of 0xffffffffffffffff will be returned as a timespec of
81 tv_sec = 0
82 tv_nsec = 0;
84 Returns GMT.
85 ****************************************************************************/
87 time_t nt_time_to_unix(NTTIME nt)
89 return convert_timespec_to_time_t(nt_time_to_unix_timespec(&nt));
92 /****************************************************************************
93 Put a 8 byte filetime from a time_t. Uses GMT.
94 ****************************************************************************/
96 void unix_to_nt_time(NTTIME *nt, time_t t)
98 uint64_t t2;
100 if (t == (time_t)-1) {
101 *nt = (NTTIME)-1LL;
102 return;
104 if (t == 0) {
105 *nt = 0;
106 return;
109 t2 = t;
110 t2 += TIME_FIXUP_CONSTANT;
111 t2 *= 1000*1000*10;
113 *nt = t2;
118 check if it's a null unix time
120 BOOL null_time(time_t t)
122 return t == 0 ||
123 t == (time_t)0xFFFFFFFF ||
124 t == (time_t)-1;
129 check if it's a null NTTIME
131 BOOL null_nttime(NTTIME t)
133 return t == 0 || t == (NTTIME)-1;
136 /*******************************************************************
137 create a 16 bit dos packed date
138 ********************************************************************/
139 static uint16_t make_dos_date1(struct tm *t)
141 uint16_t ret=0;
142 ret = (((unsigned int)(t->tm_mon+1)) >> 3) | ((t->tm_year-80) << 1);
143 ret = ((ret&0xFF)<<8) | (t->tm_mday | (((t->tm_mon+1) & 0x7) << 5));
144 return ret;
147 /*******************************************************************
148 create a 16 bit dos packed time
149 ********************************************************************/
150 static uint16_t make_dos_time1(struct tm *t)
152 uint16_t ret=0;
153 ret = ((((unsigned int)t->tm_min >> 3)&0x7) | (((unsigned int)t->tm_hour) << 3));
154 ret = ((ret&0xFF)<<8) | ((t->tm_sec/2) | ((t->tm_min & 0x7) << 5));
155 return ret;
158 /*******************************************************************
159 create a 32 bit dos packed date/time from some parameters
160 This takes a GMT time and returns a packed localtime structure
161 ********************************************************************/
162 static uint32_t make_dos_date(time_t unixdate, int zone_offset)
164 struct tm *t;
165 uint32_t ret=0;
167 if (unixdate == 0) {
168 return 0;
171 unixdate -= zone_offset;
173 t = gmtime(&unixdate);
174 if (!t) {
175 return 0xFFFFFFFF;
178 ret = make_dos_date1(t);
179 ret = ((ret&0xFFFF)<<16) | make_dos_time1(t);
181 return ret;
185 put a dos date into a buffer (time/date format)
186 This takes GMT time and puts local time in the buffer
188 void push_dos_date(uint8_t *buf, int offset, time_t unixdate, int zone_offset)
190 uint32_t x = make_dos_date(unixdate, zone_offset);
191 SIVAL(buf,offset,x);
195 put a dos date into a buffer (date/time format)
196 This takes GMT time and puts local time in the buffer
198 void push_dos_date2(uint8_t *buf,int offset,time_t unixdate, int zone_offset)
200 uint32_t x;
201 x = make_dos_date(unixdate, zone_offset);
202 x = ((x&0xFFFF)<<16) | ((x&0xFFFF0000)>>16);
203 SIVAL(buf,offset,x);
207 put a dos 32 bit "unix like" date into a buffer. This routine takes
208 GMT and converts it to LOCAL time before putting it (most SMBs assume
209 localtime for this sort of date)
211 void push_dos_date3(uint8_t *buf,int offset,time_t unixdate, int zone_offset)
213 if (!null_time(unixdate)) {
214 unixdate -= zone_offset;
216 SIVAL(buf,offset,unixdate);
219 /*******************************************************************
220 interpret a 32 bit dos packed date/time to some parameters
221 ********************************************************************/
222 static void interpret_dos_date(uint32_t date,int *year,int *month,int *day,int *hour,int *minute,int *second)
224 uint32_t p0,p1,p2,p3;
226 p0=date&0xFF; p1=((date&0xFF00)>>8)&0xFF;
227 p2=((date&0xFF0000)>>16)&0xFF; p3=((date&0xFF000000)>>24)&0xFF;
229 *second = 2*(p0 & 0x1F);
230 *minute = ((p0>>5)&0xFF) + ((p1&0x7)<<3);
231 *hour = (p1>>3)&0xFF;
232 *day = (p2&0x1F);
233 *month = ((p2>>5)&0xFF) + ((p3&0x1)<<3) - 1;
234 *year = ((p3>>1)&0xFF) + 80;
238 create a unix date (int GMT) from a dos date (which is actually in
239 localtime)
241 time_t pull_dos_date(const uint8_t *date_ptr, int zone_offset)
243 uint32_t dos_date=0;
244 struct tm t;
245 time_t ret;
247 dos_date = IVAL(date_ptr,0);
249 if (dos_date == 0) return (time_t)0;
251 interpret_dos_date(dos_date,&t.tm_year,&t.tm_mon,
252 &t.tm_mday,&t.tm_hour,&t.tm_min,&t.tm_sec);
253 t.tm_isdst = -1;
255 ret = timegm(&t);
257 ret += zone_offset;
259 return ret;
263 like make_unix_date() but the words are reversed
265 time_t pull_dos_date2(const uint8_t *date_ptr, int zone_offset)
267 uint32_t x,x2;
269 x = IVAL(date_ptr,0);
270 x2 = ((x&0xFFFF)<<16) | ((x&0xFFFF0000)>>16);
271 SIVAL(&x,0,x2);
273 return pull_dos_date((const uint8_t *)&x, zone_offset);
277 create a unix GMT date from a dos date in 32 bit "unix like" format
278 these generally arrive as localtimes, with corresponding DST
280 time_t pull_dos_date3(const uint8_t *date_ptr, int zone_offset)
282 time_t t = (time_t)IVAL(date_ptr,0);
283 if (!null_time(t)) {
284 t += zone_offset;
286 return t;
289 /***************************************************************************
290 Return a HTTP/1.0 time string.
291 ***************************************************************************/
293 char *http_timestring(time_t t)
295 static fstring buf;
296 struct tm *tm = localtime(&t);
298 if (!tm) {
299 slprintf(buf,sizeof(buf)-1,"%ld seconds since the Epoch",(long)t);
300 } else {
301 #ifndef HAVE_STRFTIME
302 const char *asct = asctime(tm);
303 fstrcpy(buf, asct ? asct : "unknown");
305 if(buf[strlen(buf)-1] == '\n') {
306 buf[strlen(buf)-1] = 0;
307 #else /* !HAVE_STRFTIME */
308 strftime(buf, sizeof(buf)-1, "%a, %d %b %Y %H:%M:%S %Z", tm);
309 #endif /* !HAVE_STRFTIME */
311 return buf;
316 Return the date and time as a string
318 char *timestring(TALLOC_CTX *mem_ctx, time_t t)
320 char *TimeBuf;
321 char tempTime[80];
322 struct tm *tm;
324 tm = localtime(&t);
325 if (!tm) {
326 return talloc_asprintf(mem_ctx,
327 "%ld seconds since the Epoch",
328 (long)t);
331 #ifdef HAVE_STRFTIME
332 /* some versions of gcc complain about using %c. This is a bug
333 in the gcc warning, not a bug in this code. See a recent
334 strftime() manual page for details.
336 strftime(tempTime,sizeof(tempTime)-1,"%c %Z",tm);
337 TimeBuf = talloc_strdup(mem_ctx, tempTime);
338 #else
339 TimeBuf = talloc_strdup(mem_ctx, asctime(tm));
340 #endif
342 return TimeBuf;
346 return a talloced string representing a NTTIME for human consumption
348 const char *nt_time_string(TALLOC_CTX *mem_ctx, NTTIME nt)
350 time_t t;
351 if (nt == 0) {
352 return "NTTIME(0)";
354 t = nt_time_to_unix(nt);
355 return timestring(mem_ctx, t);
360 parse a nttime as a large integer in a string and return a NTTIME
362 NTTIME nttime_from_string(const char *s)
364 return strtoull(s, NULL, 0);
368 return (tv1 - tv2) in microseconds
370 int64_t usec_time_diff(struct timeval *tv1, struct timeval *tv2)
372 int64_t sec_diff = tv1->tv_sec - tv2->tv_sec;
373 return (sec_diff * 1000000) + (int64_t)(tv1->tv_usec - tv2->tv_usec);
378 return a zero timeval
380 struct timeval timeval_zero(void)
382 struct timeval tv;
383 tv.tv_sec = 0;
384 tv.tv_usec = 0;
385 return tv;
389 return True if a timeval is zero
391 BOOL timeval_is_zero(const struct timeval *tv)
393 return tv->tv_sec == 0 && tv->tv_usec == 0;
397 return a timeval for the current time
399 struct timeval timeval_current(void)
401 struct timeval tv;
402 GetTimeOfDay(&tv);
403 return tv;
407 return a timeval struct with the given elements
409 struct timeval timeval_set(uint32_t secs, uint32_t usecs)
411 struct timeval tv;
412 tv.tv_sec = secs;
413 tv.tv_usec = usecs;
414 return tv;
419 return a timeval ofs microseconds after tv
421 struct timeval timeval_add(const struct timeval *tv,
422 uint32_t secs, uint32_t usecs)
424 struct timeval tv2 = *tv;
425 const unsigned int million = 1000000;
426 tv2.tv_sec += secs;
427 tv2.tv_usec += usecs;
428 tv2.tv_sec += tv2.tv_usec / million;
429 tv2.tv_usec = tv2.tv_usec % million;
430 return tv2;
434 return the sum of two timeval structures
436 struct timeval timeval_sum(const struct timeval *tv1,
437 const struct timeval *tv2)
439 return timeval_add(tv1, tv2->tv_sec, tv2->tv_usec);
443 return a timeval secs/usecs into the future
445 struct timeval timeval_current_ofs(uint32_t secs, uint32_t usecs)
447 struct timeval tv = timeval_current();
448 return timeval_add(&tv, secs, usecs);
452 compare two timeval structures.
453 Return -1 if tv1 < tv2
454 Return 0 if tv1 == tv2
455 Return 1 if tv1 > tv2
457 int timeval_compare(const struct timeval *tv1, const struct timeval *tv2)
459 if (tv1->tv_sec > tv2->tv_sec) return 1;
460 if (tv1->tv_sec < tv2->tv_sec) return -1;
461 if (tv1->tv_usec > tv2->tv_usec) return 1;
462 if (tv1->tv_usec < tv2->tv_usec) return -1;
463 return 0;
467 return True if a timer is in the past
469 BOOL timeval_expired(const struct timeval *tv)
471 struct timeval tv2 = timeval_current();
472 if (tv2.tv_sec > tv->tv_sec) return True;
473 if (tv2.tv_sec < tv->tv_sec) return False;
474 return (tv2.tv_usec >= tv->tv_usec);
478 return the number of seconds elapsed between two times
480 double timeval_elapsed2(const struct timeval *tv1, const struct timeval *tv2)
482 return (tv2->tv_sec - tv1->tv_sec) +
483 (tv2->tv_usec - tv1->tv_usec)*1.0e-6;
487 return the number of seconds elapsed since a given time
489 double timeval_elapsed(const struct timeval *tv)
491 struct timeval tv2 = timeval_current();
492 return timeval_elapsed2(tv, &tv2);
496 return the lesser of two timevals
498 struct timeval timeval_min(const struct timeval *tv1,
499 const struct timeval *tv2)
501 if (tv1->tv_sec < tv2->tv_sec) return *tv1;
502 if (tv1->tv_sec > tv2->tv_sec) return *tv2;
503 if (tv1->tv_usec < tv2->tv_usec) return *tv1;
504 return *tv2;
508 return the greater of two timevals
510 struct timeval timeval_max(const struct timeval *tv1,
511 const struct timeval *tv2)
513 if (tv1->tv_sec > tv2->tv_sec) return *tv1;
514 if (tv1->tv_sec < tv2->tv_sec) return *tv2;
515 if (tv1->tv_usec > tv2->tv_usec) return *tv1;
516 return *tv2;
520 return the difference between two timevals as a timeval
521 if tv1 comes after tv2, then return a zero timeval
522 (this is *tv2 - *tv1)
524 struct timeval timeval_until(const struct timeval *tv1,
525 const struct timeval *tv2)
527 struct timeval t;
528 if (timeval_compare(tv1, tv2) >= 0) {
529 return timeval_zero();
531 t.tv_sec = tv2->tv_sec - tv1->tv_sec;
532 if (tv1->tv_usec > tv2->tv_usec) {
533 t.tv_sec--;
534 t.tv_usec = 1000000 - (tv1->tv_usec - tv2->tv_usec);
535 } else {
536 t.tv_usec = tv2->tv_usec - tv1->tv_usec;
538 return t;
543 convert a timeval to a NTTIME
545 NTTIME timeval_to_nttime(const struct timeval *tv)
547 return 10*(tv->tv_usec +
548 ((TIME_FIXUP_CONSTANT + (uint64_t)tv->tv_sec) * 1000000));
551 /*******************************************************************
552 yield the difference between *A and *B, in seconds, ignoring leap seconds
553 ********************************************************************/
554 static int tm_diff(struct tm *a, struct tm *b)
556 int ay = a->tm_year + (1900 - 1);
557 int by = b->tm_year + (1900 - 1);
558 int intervening_leap_days =
559 (ay/4 - by/4) - (ay/100 - by/100) + (ay/400 - by/400);
560 int years = ay - by;
561 int days = 365*years + intervening_leap_days + (a->tm_yday - b->tm_yday);
562 int hours = 24*days + (a->tm_hour - b->tm_hour);
563 int minutes = 60*hours + (a->tm_min - b->tm_min);
564 int seconds = 60*minutes + (a->tm_sec - b->tm_sec);
566 return seconds;
569 int extra_time_offset=0;
572 return the UTC offset in seconds west of UTC, or 0 if it cannot be determined
574 int get_time_zone(time_t t)
576 struct tm *tm = gmtime(&t);
577 struct tm tm_utc;
578 if (!tm)
579 return 0;
580 tm_utc = *tm;
581 tm = localtime(&t);
582 if (!tm)
583 return 0;
584 return tm_diff(&tm_utc,tm)+60*extra_time_offset;
587 /****************************************************************************
588 Check if NTTIME is 0.
589 ****************************************************************************/
591 BOOL nt_time_is_zero(const NTTIME *nt)
593 return (*nt == 0);
596 /****************************************************************************
597 Convert ASN.1 GeneralizedTime string to unix-time.
598 Returns 0 on failure; Currently ignores timezone.
599 ****************************************************************************/
601 time_t generalized_to_unix_time(const char *str)
603 struct tm tm;
605 ZERO_STRUCT(tm);
607 if (sscanf(str, "%4d%2d%2d%2d%2d%2d",
608 &tm.tm_year, &tm.tm_mon, &tm.tm_mday,
609 &tm.tm_hour, &tm.tm_min, &tm.tm_sec) != 6) {
610 return 0;
612 tm.tm_year -= 1900;
613 tm.tm_mon -= 1;
615 return timegm(&tm);
618 /*******************************************************************
619 Accessor function for the server time zone offset.
620 set_server_zone_offset() must have been called first.
621 ******************************************************************/
623 static int server_zone_offset;
625 int get_server_zone_offset(void)
627 return server_zone_offset;
630 /*******************************************************************
631 Initialize the server time zone offset. Called when a client connects.
632 ******************************************************************/
634 int set_server_zone_offset(time_t t)
636 server_zone_offset = get_time_zone(t);
637 return server_zone_offset;
640 /****************************************************************************
641 Return the date and time as a string
642 ****************************************************************************/
644 char *current_timestring(BOOL hires)
646 static fstring TimeBuf;
647 struct timeval tp;
648 time_t t;
649 struct tm *tm;
651 if (hires) {
652 GetTimeOfDay(&tp);
653 t = (time_t)tp.tv_sec;
654 } else {
655 t = time(NULL);
657 tm = localtime(&t);
658 if (!tm) {
659 if (hires) {
660 slprintf(TimeBuf,
661 sizeof(TimeBuf)-1,
662 "%ld.%06ld seconds since the Epoch",
663 (long)tp.tv_sec,
664 (long)tp.tv_usec);
665 } else {
666 slprintf(TimeBuf,
667 sizeof(TimeBuf)-1,
668 "%ld seconds since the Epoch",
669 (long)t);
671 } else {
672 #ifdef HAVE_STRFTIME
673 if (hires) {
674 strftime(TimeBuf,sizeof(TimeBuf)-1,"%Y/%m/%d %H:%M:%S",tm);
675 slprintf(TimeBuf+strlen(TimeBuf),
676 sizeof(TimeBuf)-1 - strlen(TimeBuf),
677 ".%06ld",
678 (long)tp.tv_usec);
679 } else {
680 strftime(TimeBuf,sizeof(TimeBuf)-1,"%Y/%m/%d %H:%M:%S",tm);
682 #else
683 if (hires) {
684 const char *asct = asctime(tm);
685 slprintf(TimeBuf,
686 sizeof(TimeBuf)-1,
687 "%s.%06ld",
688 asct ? asct : "unknown",
689 (long)tp.tv_usec);
690 } else {
691 const char *asct = asctime(tm);
692 fstrcpy(TimeBuf, asct ? asct : "unknown");
694 #endif
696 return(TimeBuf);
700 /*******************************************************************
701 Put a dos date into a buffer (time/date format).
702 This takes GMT time and puts local time in the buffer.
703 ********************************************************************/
705 static void put_dos_date(char *buf,int offset,time_t unixdate, int zone_offset)
707 uint32 x = make_dos_date(unixdate, zone_offset);
708 SIVAL(buf,offset,x);
711 /*******************************************************************
712 Put a dos date into a buffer (date/time format).
713 This takes GMT time and puts local time in the buffer.
714 ********************************************************************/
716 static void put_dos_date2(char *buf,int offset,time_t unixdate, int zone_offset)
718 uint32 x = make_dos_date(unixdate, zone_offset);
719 x = ((x&0xFFFF)<<16) | ((x&0xFFFF0000)>>16);
720 SIVAL(buf,offset,x);
723 /*******************************************************************
724 Put a dos 32 bit "unix like" date into a buffer. This routine takes
725 GMT and converts it to LOCAL time before putting it (most SMBs assume
726 localtime for this sort of date)
727 ********************************************************************/
729 static void put_dos_date3(char *buf,int offset,time_t unixdate, int zone_offset)
731 if (!null_mtime(unixdate)) {
732 unixdate -= zone_offset;
734 SIVAL(buf,offset,unixdate);
738 /***************************************************************************
739 Server versions of the above functions.
740 ***************************************************************************/
742 void srv_put_dos_date(char *buf,int offset,time_t unixdate)
744 put_dos_date(buf, offset, unixdate, server_zone_offset);
747 void srv_put_dos_date2(char *buf,int offset, time_t unixdate)
749 put_dos_date2(buf, offset, unixdate, server_zone_offset);
752 void srv_put_dos_date3(char *buf,int offset,time_t unixdate)
754 put_dos_date3(buf, offset, unixdate, server_zone_offset);
757 /****************************************************************************
758 Take a Unix time and convert to an NTTIME structure and place in buffer
759 pointed to by p.
760 ****************************************************************************/
762 void put_long_date_timespec(char *p, struct timespec ts)
764 NTTIME nt;
765 unix_timespec_to_nt_time(&nt, ts);
766 SIVAL(p, 0, nt & 0xFFFFFFFF);
767 SIVAL(p, 4, nt >> 32);
770 void put_long_date(char *p, time_t t)
772 struct timespec ts;
773 ts.tv_sec = t;
774 ts.tv_nsec = 0;
775 put_long_date_timespec(p, ts);
778 /****************************************************************************
779 Return the best approximation to a 'create time' under UNIX from a stat
780 structure.
781 ****************************************************************************/
783 time_t get_create_time(SMB_STRUCT_STAT *st,BOOL fake_dirs)
785 time_t ret, ret1;
787 if(S_ISDIR(st->st_mode) && fake_dirs) {
788 return (time_t)315493200L; /* 1/1/1980 */
791 ret = MIN(st->st_ctime, st->st_mtime);
792 ret1 = MIN(ret, st->st_atime);
794 if(ret1 != (time_t)0) {
795 return ret1;
799 * One of ctime, mtime or atime was zero (probably atime).
800 * Just return MIN(ctime, mtime).
802 return ret;
805 struct timespec get_create_timespec(SMB_STRUCT_STAT *st,BOOL fake_dirs)
807 struct timespec ts;
808 ts.tv_sec = get_create_time(st, fake_dirs);
809 ts.tv_nsec = 0;
810 return ts;
813 /****************************************************************************
814 Get/Set all the possible time fields from a stat struct as a timespec.
815 ****************************************************************************/
817 struct timespec get_atimespec(SMB_STRUCT_STAT *pst)
819 #if !defined(HAVE_STAT_HIRES_TIMESTAMPS)
820 struct timespec ret;
822 /* Old system - no ns timestamp. */
823 ret.tv_sec = pst->st_atime;
824 ret.tv_nsec = 0;
825 return ret;
826 #else
827 #if defined(HAVE_STAT_ST_ATIM)
828 return pst->st_atim;
829 #elif defined(HAVE_STAT_ST_ATIMENSEC)
830 struct timespec ret;
831 ret.tv_sec = pst->st_atime;
832 ret.tv_nsec = pst->st_atimensec;
833 return ret;
834 #else
835 #error CONFIGURE_ERROR_IN_DETECTING_TIMESPEC_IN_STAT
836 #endif
837 #endif
840 void set_atimespec(SMB_STRUCT_STAT *pst, struct timespec ts)
842 #if !defined(HAVE_STAT_HIRES_TIMESTAMPS)
843 /* Old system - no ns timestamp. */
844 pst->st_atime = ts.tv_sec;
845 #else
846 #if defined(HAVE_STAT_ST_ATIM)
847 pst->st_atim = ts;
848 #elif defined(HAVE_STAT_ST_ATIMENSEC)
849 pst->st_atime = ts.tv_sec;
850 pst->st_atimensec = ts.tv_nsec
851 #else
852 #error CONFIGURE_ERROR_IN_DETECTING_TIMESPEC_IN_STAT
853 #endif
854 #endif
857 struct timespec get_mtimespec(SMB_STRUCT_STAT *pst)
859 #if !defined(HAVE_STAT_HIRES_TIMESTAMPS)
860 struct timespec ret;
862 /* Old system - no ns timestamp. */
863 ret.tv_sec = pst->st_mtime;
864 ret.tv_nsec = 0;
865 return ret;
866 #else
867 #if defined(HAVE_STAT_ST_MTIM)
868 return pst->st_mtim;
869 #elif defined(HAVE_STAT_ST_MTIMENSEC)
870 struct timespec ret;
871 ret.tv_sec = pst->st_mtime;
872 ret.tv_nsec = pst->st_mtimensec;
873 return ret;
874 #else
875 #error CONFIGURE_ERROR_IN_DETECTING_TIMESPEC_IN_STAT
876 #endif
877 #endif
880 void set_mtimespec(SMB_STRUCT_STAT *pst, struct timespec ts)
882 #if !defined(HAVE_STAT_HIRES_TIMESTAMPS)
883 /* Old system - no ns timestamp. */
884 pst->st_mtime = ts.tv_sec;
885 #else
886 #if defined(HAVE_STAT_ST_MTIM)
887 pst->st_mtim = ts;
888 #elif defined(HAVE_STAT_ST_MTIMENSEC)
889 pst->st_mtime = ts.tv_sec;
890 pst->st_mtimensec = ts.tv_nsec
891 #else
892 #error CONFIGURE_ERROR_IN_DETECTING_TIMESPEC_IN_STAT
893 #endif
894 #endif
897 struct timespec get_ctimespec(SMB_STRUCT_STAT *pst)
899 #if !defined(HAVE_STAT_HIRES_TIMESTAMPS)
900 struct timespec ret;
902 /* Old system - no ns timestamp. */
903 ret.tv_sec = pst->st_ctime;
904 ret.tv_nsec = 0;
905 return ret;
906 #else
907 #if defined(HAVE_STAT_ST_CTIM)
908 return pst->st_ctim;
909 #elif defined(HAVE_STAT_ST_CTIMENSEC)
910 struct timespec ret;
911 ret.tv_sec = pst->st_ctime;
912 ret.tv_nsec = pst->st_ctimensec;
913 return ret;
914 #else
915 #error CONFIGURE_ERROR_IN_DETECTING_TIMESPEC_IN_STAT
916 #endif
917 #endif
920 void set_ctimespec(SMB_STRUCT_STAT *pst, struct timespec ts)
922 #if !defined(HAVE_STAT_HIRES_TIMESTAMPS)
923 /* Old system - no ns timestamp. */
924 pst->st_ctime = ts.tv_sec;
925 #else
926 #if defined(HAVE_STAT_ST_CTIM)
927 pst->st_ctim = ts;
928 #elif defined(HAVE_STAT_ST_CTIMENSEC)
929 pst->st_ctime = ts.tv_sec;
930 pst->st_ctimensec = ts.tv_nsec
931 #else
932 #error CONFIGURE_ERROR_IN_DETECTING_TIMESPEC_IN_STAT
933 #endif
934 #endif
937 void dos_filetime_timespec(struct timespec *tsp)
939 tsp->tv_sec &= ~1;
940 tsp->tv_nsec = 0;
943 /*******************************************************************
944 Create a unix date (int GMT) from a dos date (which is actually in
945 localtime).
946 ********************************************************************/
948 static time_t make_unix_date(void *date_ptr, int zone_offset)
950 uint32 dos_date=0;
951 struct tm t;
952 time_t ret;
954 dos_date = IVAL(date_ptr,0);
956 if (dos_date == 0) {
957 return 0;
960 interpret_dos_date(dos_date,&t.tm_year,&t.tm_mon,
961 &t.tm_mday,&t.tm_hour,&t.tm_min,&t.tm_sec);
962 t.tm_isdst = -1;
964 ret = timegm(&t);
966 ret += zone_offset;
968 return(ret);
971 /*******************************************************************
972 Like make_unix_date() but the words are reversed.
973 ********************************************************************/
975 static time_t make_unix_date2(void *date_ptr, int zone_offset)
977 uint32 x,x2;
979 x = IVAL(date_ptr,0);
980 x2 = ((x&0xFFFF)<<16) | ((x&0xFFFF0000)>>16);
981 SIVAL(&x,0,x2);
983 return(make_unix_date((void *)&x, zone_offset));
986 /*******************************************************************
987 Create a unix GMT date from a dos date in 32 bit "unix like" format
988 these generally arrive as localtimes, with corresponding DST.
989 ******************************************************************/
991 static time_t make_unix_date3(void *date_ptr, int zone_offset)
993 time_t t = (time_t)IVAL(date_ptr,0);
994 if (!null_mtime(t)) {
995 t += zone_offset;
997 return(t);
1000 time_t srv_make_unix_date(void *date_ptr)
1002 return make_unix_date(date_ptr, server_zone_offset);
1005 time_t srv_make_unix_date2(void *date_ptr)
1007 return make_unix_date2(date_ptr, server_zone_offset);
1010 time_t srv_make_unix_date3(void *date_ptr)
1012 return make_unix_date3(date_ptr, server_zone_offset);
1015 time_t convert_timespec_to_time_t(struct timespec ts)
1017 /* 1 ns == 1,000,000,000 - one thousand millionths of a second.
1018 increment if it's greater than 500 millionth of a second. */
1019 if (ts.tv_nsec > 500000000) {
1020 return ts.tv_sec + 1;
1022 return ts.tv_sec;
1025 /****************************************************************************
1026 Interprets an nt time into a unix struct timespec.
1027 Differs from nt_time_to_unix in that an 8 byte value of 0xffffffffffffffff
1028 will be returned as (time_t)-1, whereas nt_time_to_unix returns 0 in this case.
1029 ****************************************************************************/
1031 struct timespec interpret_long_date(char *p)
1033 NTTIME nt;
1034 nt = IVAL(p,0) + ((uint64_t)IVAL(p,4) << 32);
1035 if (nt == (uint64_t)-1) {
1036 struct timespec ret;
1037 ret.tv_sec = (time_t)-1;
1038 ret.tv_nsec = 0;
1039 return ret;
1041 return nt_time_to_unix_timespec(&nt);
1044 /***************************************************************************
1045 Client versions of the above functions.
1046 ***************************************************************************/
1048 void cli_put_dos_date(struct cli_state *cli, char *buf, int offset, time_t unixdate)
1050 put_dos_date(buf, offset, unixdate, cli->serverzone);
1053 void cli_put_dos_date2(struct cli_state *cli, char *buf, int offset, time_t unixdate)
1055 put_dos_date2(buf, offset, unixdate, cli->serverzone);
1058 void cli_put_dos_date3(struct cli_state *cli, char *buf, int offset, time_t unixdate)
1060 put_dos_date3(buf, offset, unixdate, cli->serverzone);
1063 time_t cli_make_unix_date(struct cli_state *cli, void *date_ptr)
1065 return make_unix_date(date_ptr, cli->serverzone);
1068 time_t cli_make_unix_date2(struct cli_state *cli, void *date_ptr)
1070 return make_unix_date2(date_ptr, cli->serverzone);
1073 time_t cli_make_unix_date3(struct cli_state *cli, void *date_ptr)
1075 return make_unix_date3(date_ptr, cli->serverzone);
1078 #if (SIZEOF_LONG == 8)
1079 #define TIME_FIXUP_CONSTANT_INT 11644473600L
1080 #elif (SIZEOF_LONG_LONG == 8)
1081 #define TIME_FIXUP_CONSTANT_INT 11644473600LL
1082 #endif
1085 /* Large integer version. */
1086 struct timespec nt_time_to_unix_timespec(NTTIME *nt)
1088 int64 d;
1089 struct timespec ret;
1091 if (*nt == 0 || *nt == (int64)-1) {
1092 ret.tv_sec = 0;
1093 ret.tv_nsec = 0;
1094 return ret;
1097 d = (int64)*nt;
1098 /* d is now in 100ns units, since jan 1st 1601".
1099 Save off the ns fraction. */
1101 ret.tv_nsec = (long) ((d % 100) * 100);
1103 /* Convert to seconds */
1104 d /= 1000*1000*10;
1106 /* Now adjust by 369 years to make the secs since 1970 */
1107 d -= TIME_FIXUP_CONSTANT_INT;
1109 if (d <= (int64)TIME_T_MIN) {
1110 ret.tv_sec = TIME_T_MIN;
1111 ret.tv_nsec = 0;
1112 return ret;
1115 if (d >= (int64)TIME_T_MAX) {
1116 ret.tv_sec = TIME_T_MAX;
1117 ret.tv_nsec = 0;
1118 return ret;
1121 ret.tv_sec = (time_t)d;
1122 return ret;
1124 /****************************************************************************
1125 Check if two NTTIMEs are the same.
1126 ****************************************************************************/
1128 BOOL nt_time_equals(const NTTIME *nt1, const NTTIME *nt2)
1130 return (*nt1 == *nt2);
1133 /*******************************************************************
1134 Re-read the smb serverzone value.
1135 ******************************************************************/
1137 static struct timeval start_time_hires;
1139 void TimeInit(void)
1141 set_server_zone_offset(time(NULL));
1143 DEBUG(4,("TimeInit: Serverzone is %d\n", server_zone_offset));
1145 /* Save the start time of this process. */
1146 if (start_time_hires.tv_sec == 0 && start_time_hires.tv_usec == 0) {
1147 GetTimeOfDay(&start_time_hires);
1151 /**********************************************************************
1152 Return a timeval struct of the uptime of this process. As TimeInit is
1153 done before a daemon fork then this is the start time from the parent
1154 daemon start. JRA.
1155 ***********************************************************************/
1157 void get_process_uptime(struct timeval *ret_time)
1159 struct timeval time_now_hires;
1161 GetTimeOfDay(&time_now_hires);
1162 ret_time->tv_sec = time_now_hires.tv_sec - start_time_hires.tv_sec;
1163 if (time_now_hires.tv_usec < start_time_hires.tv_usec) {
1164 ret_time->tv_sec -= 1;
1165 ret_time->tv_usec = 1000000 + (time_now_hires.tv_usec - start_time_hires.tv_usec);
1166 } else {
1167 ret_time->tv_usec = time_now_hires.tv_usec - start_time_hires.tv_usec;
1171 /****************************************************************************
1172 Convert a NTTIME structure to a time_t.
1173 It's originally in "100ns units".
1175 This is an absolute version of the one above.
1176 By absolute I mean, it doesn't adjust from 1/1/1601 to 1/1/1970
1177 if the NTTIME was 5 seconds, the time_t is 5 seconds. JFM
1178 ****************************************************************************/
1180 time_t nt_time_to_unix_abs(const NTTIME *nt)
1182 uint64 d;
1184 if (*nt == 0) {
1185 return (time_t)0;
1188 if (*nt == (uint64)-1) {
1189 return (time_t)-1;
1192 /* reverse the time */
1193 /* it's a negative value, turn it to positive */
1194 d=~*nt;
1196 d += 1000*1000*10/2;
1197 d /= 1000*1000*10;
1199 if (!(TIME_T_MIN <= ((time_t)d) && ((time_t)d) <= TIME_T_MAX)) {
1200 return (time_t)0;
1203 return (time_t)d;
1206 /****************************************************************************
1207 Put a 8 byte filetime from a struct timespec. Uses GMT.
1208 ****************************************************************************/
1210 void unix_timespec_to_nt_time(NTTIME *nt, struct timespec ts)
1212 uint64 d;
1214 if (ts.tv_sec ==0 && ts.tv_nsec == 0) {
1215 *nt = 0;
1216 return;
1218 if (ts.tv_sec == TIME_T_MAX) {
1219 *nt = 0x7fffffffffffffffLL;
1220 return;
1222 if (ts.tv_sec == (time_t)-1) {
1223 *nt = (uint64)-1;
1224 return;
1227 d = ts.tv_sec;
1228 d += TIME_FIXUP_CONSTANT_INT;
1229 d *= 1000*1000*10;
1230 /* d is now in 100ns units. */
1231 d += (ts.tv_nsec / 100);
1233 *nt = d;
1236 /****************************************************************************
1237 Convert a time_t to a NTTIME structure
1239 This is an absolute version of the one above.
1240 By absolute I mean, it doesn't adjust from 1/1/1970 to 1/1/1601
1241 If the time_t was 5 seconds, the NTTIME is 5 seconds. JFM
1242 ****************************************************************************/
1244 void unix_to_nt_time_abs(NTTIME *nt, time_t t)
1246 double d;
1248 if (t==0) {
1249 *nt = 0;
1250 return;
1253 if (t == TIME_T_MAX) {
1254 *nt = 0x7fffffffffffffffLL;
1255 return;
1258 if (t == (time_t)-1) {
1259 /* that's what NT uses for infinite */
1260 *nt = 0x8000000000000000LL;
1261 return;
1264 d = (double)(t);
1265 d *= 1.0e7;
1267 *nt = d;
1269 /* convert to a negative value */
1270 *nt=~*nt;
1274 /****************************************************************************
1275 Check if it's a null mtime.
1276 ****************************************************************************/
1278 BOOL null_mtime(time_t mtime)
1280 if (mtime == 0 || mtime == (time_t)0xFFFFFFFF || mtime == (time_t)-1)
1281 return(True);
1282 return(False);
1285 /****************************************************************************
1286 Utility function that always returns a const string even if localtime
1287 and asctime fail.
1288 ****************************************************************************/
1290 const char *time_to_asc(const time_t *t)
1292 const char *asct;
1293 struct tm *lt = localtime(t);
1295 if (!lt) {
1296 return "unknown time";
1299 asct = asctime(lt);
1300 if (!asct) {
1301 return "unknown time";
1303 return asct;
1306 const char *display_time(NTTIME nttime)
1308 static fstring string;
1310 float high;
1311 float low;
1312 int sec;
1313 int days, hours, mins, secs;
1315 if (nttime==0)
1316 return "Now";
1318 if (nttime==0x8000000000000000LL)
1319 return "Never";
1321 high = 65536;
1322 high = high/10000;
1323 high = high*65536;
1324 high = high/1000;
1325 high = high * (~(nttime >> 32));
1327 low = ~(nttime & 0xFFFFFFFF);
1328 low = low/(1000*1000*10);
1330 sec=high+low;
1332 days=sec/(60*60*24);
1333 hours=(sec - (days*60*60*24)) / (60*60);
1334 mins=(sec - (days*60*60*24) - (hours*60*60) ) / 60;
1335 secs=sec - (days*60*60*24) - (hours*60*60) - (mins*60);
1337 fstr_sprintf(string, "%u days, %u hours, %u minutes, %u seconds", days, hours, mins, secs);
1338 return (string);
1341 BOOL nt_time_is_set(const NTTIME *nt)
1343 if (*nt == 0x7FFFFFFFFFFFFFFFLL) {
1344 return False;
1347 if (*nt == 0x8000000000000000LL) {
1348 return False;
1351 return True;