1 /* Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
21 #include <libc-lock.h>
28 /* Defined in mktime.c. */
29 extern const unsigned short int __mon_yday
[2][13];
31 /* Defined in localtime.c. */
32 extern struct tm _tmbuf
;
37 extern int __use_tzfile
;
38 extern void __tzfile_read
__P ((const char *file
));
39 extern int __tzfile_compute
__P ((time_t timer
, int use_localtime
,
40 long int *leap_correct
, int *leap_hit
));
41 extern void __tzfile_default
__P ((const char *std
, const char *dst
,
42 long int stdoff
, long int dstoff
));
43 extern char * __tzstring
__P ((const char *string
));
45 char *__tzname
[2] = { (char *) "GMT", (char *) "GMT" };
47 long int __timezone
= 0L;
49 weak_alias (__tzname
, tzname
)
50 weak_alias (__daylight
, daylight
)
51 weak_alias (__timezone
, timezone
)
53 /* This locks all the state variables in tzfile.c and this file. */
54 __libc_lock_define (static, tzset_lock
)
57 #define min(a, b) ((a) < (b) ? (a) : (b))
58 #define max(a, b) ((a) > (b) ? (a) : (b))
59 #define sign(x) ((x) < 0 ? -1 : 1)
62 /* This structure contains all the information about a
63 timezone given in the POSIX standard TZ envariable. */
69 enum { J0
, J1
, M
} type
; /* Interpretation of: */
70 unsigned short int m
, n
, d
; /* Month, week, day. */
71 unsigned int secs
; /* Time of day. */
73 long int offset
; /* Seconds east of GMT (west if < 0). */
75 /* We cache the computed time of change for a
76 given year so we don't have to recompute it. */
77 time_t change
; /* When to change to this zone. */
78 int computed_for
; /* Year above is computed for. */
81 /* tz_rules[0] is standard, tz_rules[1] is daylight. */
82 static tz_rule tz_rules
[2];
85 static int compute_change
__P ((tz_rule
*rule
, int year
));
86 static int tz_compute
__P ((time_t timer
, const struct tm
*tm
));
87 static void tzset_internal
__P ((int always
));
89 /* Header for a list of buffers containing time zone strings. */
92 struct tzstring_head
*next
;
93 /* The buffer itself immediately follows the header.
94 The buffer contains zero or more (possibly overlapping) strings.
95 The last string is followed by 2 '\0's instead of the usual 1. */
98 /* First in a list of buffers containing time zone strings.
99 All the buffers but the last are read-only. */
102 struct tzstring_head head
;
106 /* Size of the last buffer in the list, not counting its header. */
107 static size_t tzstring_last_buffer_size
= sizeof tzstring_list
.data
;
109 /* Allocate a time zone string with given contents.
110 The string will never be moved or deallocated.
111 However, its contents may be shared with other such strings. */
116 struct tzstring_head
*h
= &tzstring_list
.head
;
120 /* Look through time zone string list for a duplicate of this one. */
121 for (h
= &tzstring_list
.head
; ; h
= h
->next
)
123 for (p
= (char *) (h
+ 1); p
[0] | p
[1]; ++p
)
124 if (strcmp (p
, string
) == 0)
130 /* No duplicate was found. Copy to the end of this buffer if there's room;
131 otherwise, append a large-enough new buffer to the list and use it. */
133 needed
= strlen (string
) + 2; /* Need 2 trailing '\0's after last string. */
135 if ((size_t) ((char *) (h
+ 1) + tzstring_last_buffer_size
- p
) < needed
)
137 size_t buffer_size
= tzstring_last_buffer_size
;
138 while ((buffer_size
*= 2) < needed
)
140 if (! (h
= h
->next
= malloc (sizeof *h
+ buffer_size
)))
143 tzstring_last_buffer_size
= buffer_size
;
144 p
= (char *) (h
+ 1);
147 return strncpy (p
, string
, needed
);
150 static char *old_tz
= NULL
;
152 /* Interpret the TZ envariable. */
154 tzset_internal (always
)
157 static int is_initialized
= 0;
158 register const char *tz
;
161 unsigned short int hh
, mm
, ss
;
162 unsigned short int whichrule
;
164 if (is_initialized
&& !always
)
168 /* Examine the TZ environment variable. */
171 /* No user specification; use the site-wide default. */
173 else if (*tz
== '\0')
174 /* User specified the empty string; use UTC explicitly. */
177 /* A leading colon means "implementation defined syntax".
178 We ignore the colon and always use the same algorithm:
179 try a data file, and if none exists parse the 1003.1 syntax. */
180 if (tz
&& *tz
== ':')
183 /* Check whether the value changes since the last run. */
184 if (old_tz
!= NULL
&& tz
!= NULL
&& strcmp (tz
, old_tz
) == 0)
185 /* No change, simply return. */
188 tz_rules
[0].name
= NULL
;
189 tz_rules
[1].name
= NULL
;
191 /* Save the value of `tz'. */
194 old_tz
= tz
? __strdup (tz
) : NULL
;
196 /* Try to read a data file. */
201 /* No data file found. Default to UTC if nothing specified. */
203 if (tz
== NULL
|| *tz
== '\0')
205 tz_rules
[0].name
= tz_rules
[1].name
= "UTC";
206 tz_rules
[0].type
= tz_rules
[1].type
= J0
;
207 tz_rules
[0].m
= tz_rules
[0].n
= tz_rules
[0].d
= 0;
208 tz_rules
[1].m
= tz_rules
[1].n
= tz_rules
[1].d
= 0;
209 tz_rules
[0].secs
= tz_rules
[1].secs
= 0;
210 tz_rules
[0].offset
= tz_rules
[1].offset
= 0L;
211 tz_rules
[0].change
= tz_rules
[1].change
= (time_t) -1;
212 tz_rules
[0].computed_for
= tz_rules
[1].computed_for
= 0;
216 /* Clear out old state and reset to unnamed UTC. */
217 memset (tz_rules
, 0, sizeof tz_rules
);
218 tz_rules
[0].name
= tz_rules
[1].name
= "";
220 /* Get the standard timezone name. */
221 tzbuf
= malloc (strlen (tz
) + 1);
224 /* Clear the old tz name so we will try again. */
230 if (sscanf (tz
, "%[^0-9,+-]", tzbuf
) != 1 ||
231 (l
= strlen (tzbuf
)) < 3)
237 tz_rules
[0].name
= __tzstring (tzbuf
);
241 /* Figure out the standard offset from UTC. */
242 if (*tz
== '\0' || (*tz
!= '+' && *tz
!= '-' && !isdigit (*tz
)))
248 if (*tz
== '-' || *tz
== '+')
249 tz_rules
[0].offset
= *tz
++ == '-' ? 1L : -1L;
251 tz_rules
[0].offset
= -1L;
252 switch (sscanf (tz
, "%hu:%hu:%hu", &hh
, &mm
, &ss
))
264 tz_rules
[0].offset
*= (min (ss
, 59) + (min (mm
, 59) * 60) +
265 (min (hh
, 23) * 60 * 60));
267 for (l
= 0; l
< 3; ++l
)
271 if (l
< 2 && *tz
== ':')
275 /* Get the DST timezone name (if any). */
278 char *n
= tzbuf
+ strlen (tzbuf
) + 1;
279 if (sscanf (tz
, "%[^0-9,+-]", n
) != 1 ||
280 (l
= strlen (n
)) < 3)
281 goto done_names
; /* Punt on name, set up the offsets. */
283 tz_rules
[1].name
= __tzstring (n
);
287 /* Figure out the DST offset from GMT. */
288 if (*tz
== '-' || *tz
== '+')
289 tz_rules
[1].offset
= *tz
++ == '-' ? 1L : -1L;
291 tz_rules
[1].offset
= -1L;
293 switch (sscanf (tz
, "%hu:%hu:%hu", &hh
, &mm
, &ss
))
296 /* Default to one hour later than standard time. */
297 tz_rules
[1].offset
= tz_rules
[0].offset
+ (60 * 60);
305 tz_rules
[1].offset
*= (min (ss
, 59) + (min (mm
, 59) * 60) +
306 (min (hh
, 23) * (60 * 60)));
309 for (l
= 0; l
< 3; ++l
)
311 while (isdigit (*tz
))
313 if (l
< 2 && *tz
== ':')
316 if (*tz
== '\0' || (tz
[0] == ',' && tz
[1] == '\0'))
318 /* There is no rule. See if there is a default rule file. */
319 __tzfile_default (tz_rules
[0].name
, tz_rules
[1].name
,
320 tz_rules
[0].offset
, tz_rules
[1].offset
);
332 /* There is no DST. */
333 tz_rules
[1].name
= tz_rules
[0].name
;
341 /* Figure out the standard <-> DST rules. */
342 for (whichrule
= 0; whichrule
< 2; ++whichrule
)
344 register tz_rule
*tzr
= &tz_rules
[whichrule
];
346 /* Ignore comma to support string following the incorrect
347 specification in early POSIX.1 printings. */
350 /* Get the date of the change. */
351 if (*tz
== 'J' || isdigit (*tz
))
354 tzr
->type
= *tz
== 'J' ? J1
: J0
;
355 if (tzr
->type
== J1
&& !isdigit (*++tz
))
357 tzr
->d
= (unsigned short int) strtoul (tz
, &end
, 10);
358 if (end
== tz
|| tzr
->d
> 365)
360 else if (tzr
->type
== J1
&& tzr
->d
== 0)
368 if (sscanf (tz
, "M%hu.%hu.%hu%n",
369 &tzr
->m
, &tzr
->n
, &tzr
->d
, &n
) != 3 ||
370 tzr
->m
< 1 || tzr
->m
> 12 ||
371 tzr
->n
< 1 || tzr
->n
> 5 || tzr
->d
> 6)
375 else if (*tz
== '\0')
377 /* United States Federal Law, the equivalent of "M4.1.0,M10.5.0". */
379 if (tzr
== &tz_rules
[0])
395 if (*tz
!= '\0' && *tz
!= '/' && *tz
!= ',')
399 /* Get the time of day of the change. */
403 switch (sscanf (tz
, "%hu:%hu:%hu", &hh
, &mm
, &ss
))
406 hh
= 2; /* Default to 2:00 AM. */
414 for (l
= 0; l
< 3; ++l
)
416 while (isdigit (*tz
))
418 if (l
< 2 && *tz
== ':')
421 tzr
->secs
= (hh
* 60 * 60) + (mm
* 60) + ss
;
424 /* Default to 2:00 AM. */
425 tzr
->secs
= 2 * 60 * 60;
427 tzr
->computed_for
= -1;
431 /* Maximum length of a timezone name. __tz_compute keeps this up to date
432 (never decreasing it) when ! __use_tzfile.
433 tzfile.c keeps it up to date when __use_tzfile. */
434 size_t __tzname_cur_max
;
439 __libc_lock_lock (tzset_lock
);
443 __libc_lock_unlock (tzset_lock
);
445 return __tzname_cur_max
;
448 /* Figure out the exact time (as a time_t) in YEAR
449 when the change described by RULE will occur and
450 put it in RULE->change, saving YEAR in RULE->computed_for.
451 Return nonzero if successful, zero on failure. */
453 compute_change (rule
, year
)
460 if (year
!= -1 && rule
->computed_for
== year
)
461 /* Operations on times in 1969 will be slower. Oh well. */
464 /* First set T to January 1st, 0:00:00 GMT in YEAR. */
466 for (y
= 1970; y
< year
; ++y
)
467 t
+= SECSPERDAY
* (__isleap (y
) ? 366 : 365);
472 /* Jn - Julian day, 1 == January 1, 60 == March 1 even in leap years.
473 In non-leap years, or if the day number is 59 or less, just
474 add SECSPERDAY times the day number-1 to the time of
475 January 1, midnight, to get the day. */
476 t
+= (rule
->d
- 1) * SECSPERDAY
;
477 if (rule
->d
>= 60 && __isleap (year
))
483 Just add SECSPERDAY times the day number to the time of Jan 1st. */
484 t
+= rule
->d
* SECSPERDAY
;
488 /* Mm.n.d - Nth "Dth day" of month M. */
490 register int i
, d
, m1
, yy0
, yy1
, yy2
, dow
;
491 register const unsigned short int *myday
=
492 &__mon_yday
[__isleap (year
)][rule
->m
];
494 /* First add SECSPERDAY for each day in months before M. */
495 t
+= myday
[-1] * SECSPERDAY
;
497 /* Use Zeller's Congruence to get day-of-week of first day of month. */
498 m1
= (rule
->m
+ 9) % 12 + 1;
499 yy0
= (rule
->m
<= 2) ? (year
- 1) : year
;
502 dow
= ((26 * m1
- 2) / 10 + 1 + yy2
+ yy2
/ 4 + yy1
/ 4 - 2 * yy1
) % 7;
506 /* DOW is the day-of-week of the first day of the month. Get the
507 day-of-month (zero-origin) of the first DOW day of the month. */
511 for (i
= 1; i
< rule
->n
; ++i
)
513 if (d
+ 7 >= myday
[0] - myday
[-1])
518 /* D is the day-of-month (zero-origin) of the day we want. */
524 /* T is now the Epoch-relative time of 0:00:00 GMT on the day we want.
525 Just add the time of day and local offset from GMT, and we're done. */
527 rule
->change
= t
- rule
->offset
+ rule
->secs
;
528 rule
->computed_for
= year
;
533 /* Figure out the correct timezone for *TIMER and TM (which must be the same)
534 and set `__tzname', `__timezone', and `__daylight' accordingly.
535 Return nonzero on success, zero on failure. */
537 tz_compute (timer
, tm
)
541 if (! compute_change (&tz_rules
[0], 1900 + tm
->tm_year
) ||
542 ! compute_change (&tz_rules
[1], 1900 + tm
->tm_year
))
545 __daylight
= timer
>= tz_rules
[0].change
&& timer
< tz_rules
[1].change
;
546 __timezone
= -tz_rules
[__daylight
].offset
;
547 __tzname
[0] = (char *) tz_rules
[0].name
;
548 __tzname
[1] = (char *) tz_rules
[1].name
;
551 /* Keep __tzname_cur_max up to date. */
552 size_t len0
= strlen (__tzname
[0]);
553 size_t len1
= strlen (__tzname
[1]);
554 if (len0
> __tzname_cur_max
)
555 __tzname_cur_max
= len0
;
556 if (len1
> __tzname_cur_max
)
557 __tzname_cur_max
= len1
;
563 /* Reinterpret the TZ environment variable and set `tzname'. */
569 __libc_lock_lock (tzset_lock
);
576 __tzname
[0] = (char *) tz_rules
[0].name
;
577 __tzname
[1] = (char *) tz_rules
[1].name
;
580 __libc_lock_unlock (tzset_lock
);
582 weak_alias (__tzset
, tzset
)
584 /* Return the `struct tm' representation of *TIMER in the local timezone.
585 Use local time if USE_LOCALTIME is nonzero, UTC otherwise. */
587 __tz_convert (const time_t *timer
, int use_localtime
, struct tm
*tp
)
589 long int leap_correction
;
594 __set_errno (EINVAL
);
598 __libc_lock_lock (tzset_lock
);
600 /* Update internal database according to current TZ setting.
601 POSIX.1 8.3.7.2 says that localtime_r is not required to set tzname.
602 This is a good idea since this allows at least a bit more parallelism.
603 By analogy we apply the same rule to gmtime_r. */
604 tzset_internal (tp
== &_tmbuf
);
608 if (! __tzfile_compute (*timer
, use_localtime
,
609 &leap_correction
, &leap_extra_secs
))
614 __offtime (timer
, 0, tp
);
615 if (! tz_compute (*timer
, tp
))
617 leap_correction
= 0L;
625 tp
->tm_isdst
= __daylight
;
626 tp
->tm_zone
= __tzname
[__daylight
];
627 tp
->tm_gmtoff
= -__timezone
;
636 __offtime (timer
, tp
->tm_gmtoff
- leap_correction
, tp
);
637 tp
->tm_sec
+= leap_extra_secs
;
640 __libc_lock_unlock (tzset_lock
);