remove unused arguments from some static functions.
[ira/wip.git] / source3 / lib / time.c
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 1.9.
4    time handling functions
5    Copyright (C) Andrew Tridgell 1992-1998
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #include "includes.h"
23
24 /*
25   This stuff was largely rewritten by Paul Eggert <eggert@twinsun.com>
26   in May 1996 
27   */
28
29
30 int serverzone=0;
31 int extra_time_offset = 0;
32
33 extern int DEBUGLEVEL;
34
35 #ifndef CHAR_BIT
36 #define CHAR_BIT 8
37 #endif
38
39 #ifndef TIME_T_MIN
40 #define TIME_T_MIN ((time_t)0 < (time_t) -1 ? (time_t) 0 \
41                     : ~ (time_t) 0 << (sizeof (time_t) * CHAR_BIT - 1))
42 #endif
43 #ifndef TIME_T_MAX
44 #define TIME_T_MAX (~ (time_t) 0 - TIME_T_MIN)
45 #endif
46
47
48
49 /*******************************************************************
50 a gettimeofday wrapper
51 ********************************************************************/
52 void GetTimeOfDay(struct timeval *tval)
53 {
54 #ifdef HAVE_GETTIMEOFDAY_TZ
55         gettimeofday(tval,NULL);
56 #else
57         gettimeofday(tval);
58 #endif
59 }
60
61 #define TM_YEAR_BASE 1900
62
63 /*******************************************************************
64 yield the difference between *A and *B, in seconds, ignoring leap seconds
65 ********************************************************************/
66 static int tm_diff(struct tm *a, struct tm *b)
67 {
68   int ay = a->tm_year + (TM_YEAR_BASE - 1);
69   int by = b->tm_year + (TM_YEAR_BASE - 1);
70   int intervening_leap_days =
71     (ay/4 - by/4) - (ay/100 - by/100) + (ay/400 - by/400);
72   int years = ay - by;
73   int days = 365*years + intervening_leap_days + (a->tm_yday - b->tm_yday);
74   int hours = 24*days + (a->tm_hour - b->tm_hour);
75   int minutes = 60*hours + (a->tm_min - b->tm_min);
76   int seconds = 60*minutes + (a->tm_sec - b->tm_sec);
77
78   return seconds;
79 }
80
81 /*******************************************************************
82   return the UTC offset in seconds west of UTC, or 0 if it cannot be determined
83   ******************************************************************/
84 static int TimeZone(time_t t)
85 {
86   struct tm *tm = gmtime(&t);
87   struct tm tm_utc;
88   if (!tm)
89     return 0;
90   tm_utc = *tm;
91   tm = localtime(&t);
92   if (!tm)
93     return 0;
94   return tm_diff(&tm_utc,tm);
95
96 }
97
98
99 /*******************************************************************
100 init the time differences
101 ********************************************************************/
102 void TimeInit(void)
103 {
104   serverzone = TimeZone(time(NULL));
105
106   if ((serverzone % 60) != 0) {
107           DEBUG(1,("WARNING: Your timezone is not a multiple of 1 minute.\n"));
108   }
109
110   DEBUG(4,("Serverzone is %d\n",serverzone));
111 }
112
113
114 /*******************************************************************
115 return the same value as TimeZone, but it should be more efficient.
116
117 We keep a table of DST offsets to prevent calling localtime() on each 
118 call of this function. This saves a LOT of time on many unixes.
119
120 Updated by Paul Eggert <eggert@twinsun.com>
121 ********************************************************************/
122 static int TimeZoneFaster(time_t t)
123 {
124   static struct dst_table {time_t start,end; int zone;} *dst_table = NULL;
125   static int table_size = 0;
126   int i;
127   int zone = 0;
128
129   if (t == 0) t = time(NULL);
130
131   /* Tunis has a 8 day DST region, we need to be careful ... */
132 #define MAX_DST_WIDTH (365*24*60*60)
133 #define MAX_DST_SKIP (7*24*60*60)
134
135   for (i=0;i<table_size;i++)
136     if (t >= dst_table[i].start && t <= dst_table[i].end) break;
137
138   if (i<table_size) {
139     zone = dst_table[i].zone;
140   } else {
141     time_t low,high;
142
143     zone = TimeZone(t);
144     dst_table = (struct dst_table *)Realloc(dst_table,
145                                               sizeof(dst_table[0])*(i+1));
146     if (!dst_table) {
147       table_size = 0;
148     } else {
149       table_size++;
150
151       dst_table[i].zone = zone; 
152       dst_table[i].start = dst_table[i].end = t;
153     
154       /* no entry will cover more than 6 months */
155       low = t - MAX_DST_WIDTH/2;
156       if (t < low)
157         low = TIME_T_MIN;
158       
159       high = t + MAX_DST_WIDTH/2;
160       if (high < t)
161         high = TIME_T_MAX;
162       
163       /* widen the new entry using two bisection searches */
164       while (low+60*60 < dst_table[i].start) {
165         if (dst_table[i].start - low > MAX_DST_SKIP*2)
166           t = dst_table[i].start - MAX_DST_SKIP;
167         else
168           t = low + (dst_table[i].start-low)/2;
169         if (TimeZone(t) == zone)
170           dst_table[i].start = t;
171         else
172           low = t;
173       }
174
175       while (high-60*60 > dst_table[i].end) {
176         if (high - dst_table[i].end > MAX_DST_SKIP*2)
177           t = dst_table[i].end + MAX_DST_SKIP;
178         else
179           t = high - (high-dst_table[i].end)/2;
180         if (TimeZone(t) == zone)
181           dst_table[i].end = t;
182         else
183           high = t;
184       }
185 #if 0
186       DEBUG(1,("Added DST entry from %s ",
187                asctime(localtime(&dst_table[i].start))));
188       DEBUG(1,("to %s (%d)\n",asctime(localtime(&dst_table[i].end)),
189                dst_table[i].zone));
190 #endif
191     }
192   }
193   return zone;
194 }
195
196 /****************************************************************************
197   return the UTC offset in seconds west of UTC, adjusted for extra time offset
198   **************************************************************************/
199 int TimeDiff(time_t t)
200 {
201   return TimeZoneFaster(t) + 60*extra_time_offset;
202 }
203
204
205 /****************************************************************************
206   return the UTC offset in seconds west of UTC, adjusted for extra time
207   offset, for a local time value.  If ut = lt + LocTimeDiff(lt), then
208   lt = ut - TimeDiff(ut), but the converse does not necessarily hold near
209   daylight savings transitions because some local times are ambiguous.
210   LocTimeDiff(t) equals TimeDiff(t) except near daylight savings transitions.
211   +**************************************************************************/
212 static int LocTimeDiff(time_t lte)
213 {
214   time_t lt = lte - 60*extra_time_offset;
215   int d = TimeZoneFaster(lt);
216   time_t t = lt + d;
217
218   /* if overflow occurred, ignore all the adjustments so far */
219   if (((lte < lt) ^ (extra_time_offset < 0))  |  ((t < lt) ^ (d < 0)))
220     t = lte;
221
222   /* now t should be close enough to the true UTC to yield the right answer */
223   return TimeDiff(t);
224 }
225
226
227 /****************************************************************************
228 try to optimise the localtime call, it can be quite expensive on some machines
229 ****************************************************************************/
230 struct tm *LocalTime(time_t *t)
231 {
232   time_t t2 = *t;
233
234   t2 -= TimeDiff(t2);
235
236   return(gmtime(&t2));
237 }
238
239 /****************************************************************************
240 take an NTTIME structure, containing high / low time.  convert to unix time.
241 lkclXXXX this may need 2 SIVALs not a memcpy.  we'll see...
242 ****************************************************************************/
243 time_t interpret_nt_time(NTTIME *t)
244 {
245   char data[8];
246   memcpy(data, t, sizeof(data));
247   return interpret_long_date(data);
248 }
249
250
251 #define TIME_FIXUP_CONSTANT (369.0*365.25*24*60*60-(3.0*24*60*60+6.0*60*60))
252
253 /****************************************************************************
254 interpret an 8 byte "filetime" structure to a time_t
255 It's originally in "100ns units since jan 1st 1601"
256
257 It appears to be kludge-GMT (at least for file listings). This means
258 its the GMT you get by taking a localtime and adding the
259 serverzone. This is NOT the same as GMT in some cases. This routine
260 converts this to real GMT.
261 ****************************************************************************/
262 time_t interpret_long_date(char *p)
263 {
264   double d;
265   time_t ret;
266   uint32 tlow,thigh;
267   /* The next two lines are a fix needed for the 
268      broken SCO compiler. JRA. */
269   time_t l_time_min = TIME_T_MIN;
270   time_t l_time_max = TIME_T_MAX;
271
272   tlow = IVAL(p,0);
273   thigh = IVAL(p,4);
274   if (thigh == 0) return(0);
275
276   d = ((double)thigh)*4.0*(double)(1<<30);
277   d += (tlow&0xFFF00000);
278   d *= 1.0e-7;
279  
280   /* now adjust by 369 years to make the secs since 1970 */
281   d -= TIME_FIXUP_CONSTANT;
282
283   if (!(l_time_min <= d && d <= l_time_max))
284     return(0);
285
286   ret = (time_t)(d+0.5);
287
288   /* this takes us from kludge-GMT to real GMT */
289   ret -= serverzone;
290   ret += LocTimeDiff(ret);
291
292   return(ret);
293 }
294
295
296 /****************************************************************************
297 put a 8 byte filetime from a time_t
298 This takes real GMT as input and converts to kludge-GMT
299 ****************************************************************************/
300 void put_long_date(char *p,time_t t)
301 {
302   uint32 tlow,thigh;
303   double d;
304
305   if (t==0) {
306     SIVAL(p,0,0); SIVAL(p,4,0);
307     return;
308   }
309
310   /* this converts GMT to kludge-GMT */
311   t -= LocTimeDiff(t) - serverzone; 
312
313   d = (double) (t);
314
315   d += TIME_FIXUP_CONSTANT;
316
317   d *= 1.0e7;
318
319   thigh = (uint32)(d * (1.0/(4.0*(double)(1<<30))));
320   tlow = (uint32)(d - ((double)thigh)*4.0*(double)(1<<30));
321
322   SIVAL(p,0,tlow);
323   SIVAL(p,4,thigh);
324 }
325
326
327 /****************************************************************************
328 check if it's a null mtime
329 ****************************************************************************/
330 BOOL null_mtime(time_t mtime)
331 {
332   if (mtime == 0 || mtime == 0xFFFFFFFF || mtime == (time_t)-1)
333     return(True);
334   return(False);
335 }
336
337 /*******************************************************************
338   create a 16 bit dos packed date
339 ********************************************************************/
340 static uint16 make_dos_date1(struct tm *t)
341 {
342   uint16 ret=0;
343   ret = (((unsigned)(t->tm_mon+1)) >> 3) | ((t->tm_year-80) << 1);
344   ret = ((ret&0xFF)<<8) | (t->tm_mday | (((t->tm_mon+1) & 0x7) << 5));
345   return(ret);
346 }
347
348 /*******************************************************************
349   create a 16 bit dos packed time
350 ********************************************************************/
351 static uint16 make_dos_time1(struct tm *t)
352 {
353   uint16 ret=0;
354   ret = ((((unsigned)t->tm_min >> 3)&0x7) | (((unsigned)t->tm_hour) << 3));
355   ret = ((ret&0xFF)<<8) | ((t->tm_sec/2) | ((t->tm_min & 0x7) << 5));
356   return(ret);
357 }
358
359 /*******************************************************************
360   create a 32 bit dos packed date/time from some parameters
361   This takes a GMT time and returns a packed localtime structure
362 ********************************************************************/
363 static uint32 make_dos_date(time_t unixdate)
364 {
365   struct tm *t;
366   uint32 ret=0;
367
368   t = LocalTime(&unixdate);
369   if (!t)
370     return 0xFFFFFFFF;
371
372   ret = make_dos_date1(t);
373   ret = ((ret&0xFFFF)<<16) | make_dos_time1(t);
374
375   return(ret);
376 }
377
378 /*******************************************************************
379 put a dos date into a buffer (time/date format)
380 This takes GMT time and puts local time in the buffer
381 ********************************************************************/
382 void put_dos_date(char *buf,int offset,time_t unixdate)
383 {
384   uint32 x = make_dos_date(unixdate);
385   SIVAL(buf,offset,x);
386 }
387
388 /*******************************************************************
389 put a dos date into a buffer (date/time format)
390 This takes GMT time and puts local time in the buffer
391 ********************************************************************/
392 void put_dos_date2(char *buf,int offset,time_t unixdate)
393 {
394   uint32 x = make_dos_date(unixdate);
395   x = ((x&0xFFFF)<<16) | ((x&0xFFFF0000)>>16);
396   SIVAL(buf,offset,x);
397 }
398
399 /*******************************************************************
400 put a dos 32 bit "unix like" date into a buffer. This routine takes
401 GMT and converts it to LOCAL time before putting it (most SMBs assume
402 localtime for this sort of date)
403 ********************************************************************/
404 void put_dos_date3(char *buf,int offset,time_t unixdate)
405 {
406   if (!null_mtime(unixdate))
407     unixdate -= TimeDiff(unixdate);
408   SIVAL(buf,offset,unixdate);
409 }
410
411 /*******************************************************************
412   interpret a 32 bit dos packed date/time to some parameters
413 ********************************************************************/
414 static void interpret_dos_date(uint32 date,int *year,int *month,int *day,int *hour,int *minute,int *second)
415 {
416   uint32 p0,p1,p2,p3;
417
418   p0=date&0xFF; p1=((date&0xFF00)>>8)&0xFF; 
419   p2=((date&0xFF0000)>>16)&0xFF; p3=((date&0xFF000000)>>24)&0xFF;
420
421   *second = 2*(p0 & 0x1F);
422   *minute = ((p0>>5)&0xFF) + ((p1&0x7)<<3);
423   *hour = (p1>>3)&0xFF;
424   *day = (p2&0x1F);
425   *month = ((p2>>5)&0xFF) + ((p3&0x1)<<3) - 1;
426   *year = ((p3>>1)&0xFF) + 80;
427 }
428
429 /*******************************************************************
430   create a unix date (int GMT) from a dos date (which is actually in
431   localtime)
432 ********************************************************************/
433 time_t make_unix_date(void *date_ptr)
434 {
435   uint32 dos_date=0;
436   struct tm t;
437   time_t ret;
438
439   dos_date = IVAL(date_ptr,0);
440
441   if (dos_date == 0) return(0);
442   
443   interpret_dos_date(dos_date,&t.tm_year,&t.tm_mon,
444                      &t.tm_mday,&t.tm_hour,&t.tm_min,&t.tm_sec);
445   t.tm_isdst = -1;
446   
447   /* mktime() also does the local to GMT time conversion for us */
448   ret = mktime(&t);
449
450   return(ret);
451 }
452
453 /*******************************************************************
454 like make_unix_date() but the words are reversed
455 ********************************************************************/
456 time_t make_unix_date2(void *date_ptr)
457 {
458   uint32 x,x2;
459
460   x = IVAL(date_ptr,0);
461   x2 = ((x&0xFFFF)<<16) | ((x&0xFFFF0000)>>16);
462   SIVAL(&x,0,x2);
463
464   return(make_unix_date((void *)&x));
465 }
466
467 /*******************************************************************
468   create a unix GMT date from a dos date in 32 bit "unix like" format
469   these generally arrive as localtimes, with corresponding DST
470   ******************************************************************/
471 time_t make_unix_date3(void *date_ptr)
472 {
473   time_t t = (time_t)IVAL(date_ptr,0);
474   if (!null_mtime(t))
475     t += LocTimeDiff(t);
476   return(t);
477 }
478
479
480 /***************************************************************************
481 return a HTTP/1.0 time string
482   ***************************************************************************/
483 char *http_timestring(time_t t)
484 {
485   static fstring buf;
486   struct tm *tm = LocalTime(&t);
487
488   if (!tm)
489     slprintf(buf,sizeof(buf)-1,"%ld seconds since the Epoch",(long)t);
490   else
491 #ifndef HAVE_STRFTIME
492   fstrcpy(buf, asctime(tm));
493 #else /* !HAVE_STRFTIME */
494   strftime(buf, sizeof(buf)-1, "%a, %d %b %Y %H:%M:%S %Z", tm);
495 #endif /* !HAVE_STRFTIME */
496   return buf;
497 }
498
499
500
501 /****************************************************************************
502   return the date and time as a string
503 ****************************************************************************/
504 char *timestring(void )
505 {
506         static fstring TimeBuf;
507         time_t t = time(NULL);
508         struct tm *tm = LocalTime(&t);
509
510         if (!tm) {
511                 slprintf(TimeBuf,sizeof(TimeBuf)-1,"%ld seconds since the Epoch",(long)t);
512         } else {
513 #ifdef HAVE_STRFTIME
514                 strftime(TimeBuf,100,"%Y/%m/%d %T",tm);
515 #else
516                 fstrcpy(TimeBuf, asctime(tm));
517 #endif
518         }
519         return(TimeBuf);
520 }
521
522 /****************************************************************************
523   return the best approximation to a 'create time' under UNIX from a stat
524   structure.
525 ****************************************************************************/
526
527 time_t get_create_time(SMB_STRUCT_STAT *st,BOOL fake_dirs)
528 {
529   time_t ret, ret1;
530
531   if(S_ISDIR(st->st_mode) && fake_dirs)
532     return (time_t)315493200L;          /* 1/1/1980 */
533     
534   ret = MIN(st->st_ctime, st->st_mtime);
535   ret1 = MIN(ret, st->st_atime);
536
537   if(ret1 != (time_t)0)
538     return ret1;
539
540   /*
541    * One of ctime, mtime or atime was zero (probably atime).
542    * Just return MIN(ctime, mtime).
543    */
544   return ret;
545 }
546