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. */
26 /* Defined in mktime.c. */
27 extern const unsigned short int __mon_yday[2][13];
32 extern int __use_tzfile;
33 extern void __tzfile_read __P ((const char *file));
34 extern void __tzfile_default __P ((char *std, char *dst,
35 long int stdoff, long int dstoff));
36 extern int __tz_compute __P ((time_t timer, const struct tm *tm));
38 char *__tzname[2] = { (char *) "GMT", (char *) "GMT" };
40 long int __timezone = 0L;
42 weak_alias (__tzname, tzname)
43 weak_alias (__daylight, daylight)
44 weak_alias (__timezone, timezone)
47 #define min(a, b) ((a) < (b) ? (a) : (b))
48 #define max(a, b) ((a) > (b) ? (a) : (b))
49 #define sign(x) ((x) < 0 ? -1 : 1)
52 /* This structure contains all the information about a
53 timezone given in the POSIX standard TZ envariable. */
59 enum { J0, J1, M } type; /* Interpretation of: */
60 unsigned short int m, n, d; /* Month, week, day. */
61 unsigned int secs; /* Time of day. */
63 long int offset; /* Seconds east of GMT (west if < 0). */
65 /* We cache the computed time of change for a
66 given year so we don't have to recompute it. */
67 time_t change; /* When to change to this zone. */
68 int computed_for; /* Year above is computed for. */
71 /* tz_rules[0] is standard, tz_rules[1] is daylight. */
72 static tz_rule tz_rules[2];
75 static int compute_change __P ((tz_rule *rule, int year));
77 static char *old_tz = NULL;
79 /* Interpret the TZ envariable. */
80 void __tzset_internal __P ((int always));
82 __tzset_internal (always)
85 static int is_initialized = 0;
86 register const char *tz;
88 unsigned short int hh, mm, ss;
89 unsigned short int whichrule;
91 if (is_initialized && !always)
95 /* Examine the TZ environment variable. */
98 /* A leading colon means "implementation defined syntax".
99 We ignore the colon and always use the same algorithm:
100 try a data file, and if none exists parse the 1003.1 syntax. */
101 if (tz && *tz == ':')
104 /* Check whether the value changes since the last run. */
105 if (old_tz != NULL && tz != NULL && strcmp (tz, old_tz) == 0)
106 /* No change, simply return. */
109 /* Free old storage. */
110 if (tz_rules[0].name != NULL && *tz_rules[0].name != '\0')
112 free((void *) tz_rules[0].name);
113 tz_rules[0].name = NULL;
115 if (tz_rules[1].name != NULL && *tz_rules[1].name != '\0' &&
116 tz_rules[1].name != tz_rules[0].name)
118 free((void *) tz_rules[1].name);
119 tz_rules[1].name = NULL;
122 /* Save the value of `tz'. */
125 old_tz = tz ? __strdup (tz) : NULL;
127 /* Try to read a data file. */
132 /* No data file found. Default to UTC if nothing specified. */
134 if (tz == NULL || *tz == '\0')
136 static const char UTC[] = "UTC";
137 size_t len = sizeof UTC;
138 tz_rules[0].name = (char *) malloc (len);
139 if (tz_rules[0].name == NULL)
141 tz_rules[1].name = (char *) malloc (len);
142 if (tz_rules[1].name == NULL)
144 memcpy ((void *) tz_rules[0].name, UTC, len);
145 memcpy ((void *) tz_rules[1].name, UTC, len);
146 tz_rules[0].type = tz_rules[1].type = J0;
147 tz_rules[0].m = tz_rules[0].n = tz_rules[0].d = 0;
148 tz_rules[1].m = tz_rules[1].n = tz_rules[1].d = 0;
149 tz_rules[0].secs = tz_rules[1].secs = 0;
150 tz_rules[0].offset = tz_rules[1].offset = 0L;
151 tz_rules[0].change = tz_rules[1].change = (time_t) -1;
152 tz_rules[0].computed_for = tz_rules[1].computed_for = 0;
156 /* Clear out old state and reset to unnamed UTC. */
157 memset (tz_rules, 0, sizeof tz_rules);
158 tz_rules[0].name = tz_rules[1].name = (char *) "";
160 /* Get the standard timezone name. */
161 tz_rules[0].name = (char *) malloc (strlen (tz) + 1);
162 if (tz_rules[0].name == NULL)
164 /* Clear the old tz name so we will try again. */
170 if (sscanf(tz, "%[^0-9,+-]", tz_rules[0].name) != 1 ||
171 (l = strlen(tz_rules[0].name)) < 3)
173 free (tz_rules[0].name);
174 tz_rules[0].name = (char *) "";
179 char *n = realloc ((void *) tz_rules[0].name, l + 1);
181 tz_rules[0].name = n;
186 /* Figure out the standard offset from UTC. */
187 if (*tz == '\0' || (*tz != '+' && *tz != '-' && !isdigit(*tz)))
190 if (*tz == '-' || *tz == '+')
191 tz_rules[0].offset = *tz++ == '-' ? 1L : -1L;
193 tz_rules[0].offset = -1L;
194 switch (sscanf (tz, "%hu:%hu:%hu", &hh, &mm, &ss))
205 tz_rules[0].offset *= (min (ss, 59) + (min (mm, 59) * 60) +
206 (min (hh, 23) * 60 * 60));
208 for (l = 0; l < 3; ++l)
212 if (l < 2 && *tz == ':')
216 /* Get the DST timezone name (if any). */
219 char *n = malloc (strlen (tz) + 1);
222 tz_rules[1].name = n;
223 if (sscanf (tz, "%[^0-9,+-]", tz_rules[1].name) != 1 ||
224 (l = strlen (tz_rules[1].name)) < 3)
227 tz_rules[1].name = (char *) "";
228 goto done_names; /* Punt on name, set up the offsets. */
230 n = realloc ((void *) tz_rules[1].name, l + 1);
232 tz_rules[1].name = n;
238 /* Figure out the DST offset from GMT. */
239 if (*tz == '-' || *tz == '+')
240 tz_rules[1].offset = *tz++ == '-' ? 1L : -1L;
242 tz_rules[1].offset = -1L;
244 switch (sscanf (tz, "%hu:%hu:%hu", &hh, &mm, &ss))
247 /* Default to one hour later than standard time. */
248 tz_rules[1].offset = tz_rules[0].offset + (60 * 60);
256 tz_rules[1].offset *= (min (ss, 59) + (min (mm, 59) * 60) +
257 (min (hh, 23) * (60 * 60)));
260 for (l = 0; l < 3; ++l)
262 while (isdigit (*tz))
264 if (l < 2 && *tz == ':')
270 if (*tz == '\0' || (tz[0] == ',' && tz[1] == '\0'))
272 /* There is no rule. See if there is a default rule file. */
273 __tzfile_default (tz_rules[0].name, tz_rules[1].name,
274 tz_rules[0].offset, tz_rules[1].offset);
283 /* Figure out the standard <-> DST rules. */
284 for (whichrule = 0; whichrule < 2; ++whichrule)
286 register tz_rule *tzr = &tz_rules[whichrule];
295 /* Get the date of the change. */
296 if (*tz == 'J' || isdigit (*tz))
299 tzr->type = *tz == 'J' ? J1 : J0;
300 if (tzr->type == J1 && !isdigit (*++tz))
302 tzr->d = (unsigned short int) strtoul (tz, &end, 10);
303 if (end == tz || tzr->d > 365)
305 else if (tzr->type == J1 && tzr->d == 0)
313 if (sscanf (tz, "M%hu.%hu.%hu%n",
314 &tzr->m, &tzr->n, &tzr->d, &n) != 3 ||
315 tzr->m < 1 || tzr->m > 12 ||
316 tzr->n < 1 || tzr->n > 5 || tzr->d > 6)
320 else if (*tz == '\0')
322 /* United States Federal Law, the equivalent of "M4.1.0,M10.5.0". */
324 if (tzr == &tz_rules[0])
340 if (*tz != '\0' && *tz != '/' && *tz != ',')
344 /* Get the time of day of the change. */
348 switch (sscanf (tz, "%hu:%hu:%hu", &hh, &mm, &ss))
351 hh = 2; /* Default to 2:00 AM. */
359 for (l = 0; l < 3; ++l)
361 while (isdigit (*tz))
363 if (l < 2 && *tz == ':')
366 tzr->secs = (hh * 60 * 60) + (mm * 60) + ss;
369 /* Default to 2:00 AM. */
370 tzr->secs = 2 * 60 * 60;
372 tzr->computed_for = -1;
376 /* Maximum length of a timezone name. __tz_compute keeps this up to date
377 (never decreasing it) when ! __use_tzfile.
378 tzfile.c keeps it up to date when __use_tzfile. */
379 size_t __tzname_cur_max;
384 __tzset_internal (0);
386 return __tzname_cur_max;
389 /* Figure out the exact time (as a time_t) in YEAR
390 when the change described by RULE will occur and
391 put it in RULE->change, saving YEAR in RULE->computed_for.
392 Return nonzero if successful, zero on failure. */
394 compute_change (rule, year)
401 if (year != -1 && rule->computed_for == year)
402 /* Operations on times in 1969 will be slower. Oh well. */
405 /* First set T to January 1st, 0:00:00 GMT in YEAR. */
407 for (y = 1970; y < year; ++y)
408 t += SECSPERDAY * (__isleap (y) ? 366 : 365);
413 /* Jn - Julian day, 1 == January 1, 60 == March 1 even in leap years.
414 In non-leap years, or if the day number is 59 or less, just
415 add SECSPERDAY times the day number-1 to the time of
416 January 1, midnight, to get the day. */
417 t += (rule->d - 1) * SECSPERDAY;
418 if (rule->d >= 60 && __isleap (year))
424 Just add SECSPERDAY times the day number to the time of Jan 1st. */
425 t += rule->d * SECSPERDAY;
429 /* Mm.n.d - Nth "Dth day" of month M. */
431 register int i, d, m1, yy0, yy1, yy2, dow;
432 register const unsigned short int *myday =
433 &__mon_yday[__isleap (year)][rule->m];
435 /* First add SECSPERDAY for each day in months before M. */
436 t += myday[-1] * SECSPERDAY;
438 /* Use Zeller's Congruence to get day-of-week of first day of month. */
439 m1 = (rule->m + 9) % 12 + 1;
440 yy0 = (rule->m <= 2) ? (year - 1) : year;
443 dow = ((26 * m1 - 2) / 10 + 1 + yy2 + yy2 / 4 + yy1 / 4 - 2 * yy1) % 7;
447 /* DOW is the day-of-week of the first day of the month. Get the
448 day-of-month (zero-origin) of the first DOW day of the month. */
452 for (i = 1; i < rule->n; ++i)
454 if (d + 7 >= myday[0] - myday[-1])
459 /* D is the day-of-month (zero-origin) of the day we want. */
465 /* T is now the Epoch-relative time of 0:00:00 GMT on the day we want.
466 Just add the time of day and local offset from GMT, and we're done. */
468 rule->change = t - rule->offset + rule->secs;
469 rule->computed_for = year;
474 /* Figure out the correct timezone for *TIMER and TM (which must be the same)
475 and set `__tzname', `__timezone', and `__daylight' accordingly.
476 Return nonzero on success, zero on failure. */
478 __tz_compute (timer, tm)
482 __tzset_internal (0);
484 if (! compute_change (&tz_rules[0], 1900 + tm->tm_year) ||
485 ! compute_change (&tz_rules[1], 1900 + tm->tm_year))
488 __daylight = timer >= tz_rules[0].change && timer < tz_rules[1].change;
489 __timezone = tz_rules[__daylight ? 1 : 0].offset;
490 __tzname[0] = (char *) tz_rules[0].name;
491 __tzname[1] = (char *) tz_rules[1].name;
494 /* Keep __tzname_cur_max up to date. */
495 size_t len0 = strlen (__tzname[0]);
496 size_t len1 = strlen (__tzname[1]);
497 if (len0 > __tzname_cur_max)
498 __tzname_cur_max = len0;
499 if (len1 > __tzname_cur_max)
500 __tzname_cur_max = len1;
506 #include <libc-lock.h>
508 /* This locks all the state variables in tzfile.c and this file. */
509 __libc_lock_define (, __tzset_lock)
511 /* Reinterpret the TZ environment variable and set `tzname'. */
517 __libc_lock_lock (__tzset_lock);
519 __tzset_internal (1);
524 __tzname[0] = (char *) tz_rules[0].name;
525 __tzname[1] = (char *) tz_rules[1].name;
528 __libc_lock_unlock (__tzset_lock);
530 weak_alias (__tzset, tzset)