mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-07 05:40:05 +00:00
fd26970f33
Tue Jan 21 04:05:20 1997 Ulrich Drepper <drepper@cygnus.com> * version.h (VERSION): Bump to 1.101. Implement -d and -r option to `ldd' to check relocations. * elf/dl-error.c: Add another method to intercept errors. (_dl_receive_error): New function. Install user defined handler. (receiver): New variable. Contains pointer to user provided handler. (_dl_signal_error): If user provided handler is installed call this. * elf/dl-load.c (_dl_map_object): When shared object is not found in trace mode initialize a few more fields so that lookup can actually happen but always fails. * elf/ldd.sh.in: Rewrite argument handling. Recognize new arguments to trigger reloation test. Return with appropriate error code if a file wasn't found. Print warning if object is not executable. * elf/ldd.bash.in: Likewise. * elf/link.h (receiver_fct): New type. Used in _dl_receive_error. (_dl_sysdep_error): New prototype. (_dl_receive_error): New prototype. (_dl_signal_error): Remove __attribute__ ((__noreturn__)). * elf/rtld.c (dl_main): Rewrite argument handling. More than one argument allowed. Recognize --data-relocs and --function-relocs arguments. Don't determine `lazy' mode from LD_BIND_NOW environment variable when in trace mode. If in trace mode and either --data-relocs or --function-relocs is given perform relocation. Report errors using print_unresolved function. (print_unresolved): New function. Print information about missing symbol on stderr. * sysdeps/generic/dl-sysdep.c (_dl_sysdep_error): New function. Like _dl_sysdep_message but print to stderr. * sysdeps/mach/hurd/dl-sysdep.c: Likewise. * sysdeps/generic/sockaddrcom.h: Add definition of sa_family_t. Reported by Andreas Schwab. (__SOCKADDR_COMMON): Use sa_family_t for family member. * sysdeps/unix/bsd/bsd4.4/sockaddrcom.h: Likewise. Linux/Sparc support by Miguel de Icaza. * sysdeps/sparc/fpu_control.h: New file. * sysdeps/unix/sysv/linux/sparc/__sigtrampoline.S: New file. * sysdeps/unix/sysv/linux/sparc/brk.c: New file. * sysdeps/unix/sysv/linux/sparc/profil-counter.h: New file. * sysdeps/unix/sysv/linux/sparc/sigaction.c: New file. * sysdeps/unix/sysv/linux/sparc/socket.S: New file. * sysdeps/unix/sysv/linux/sparc/syscall.S: New file. * sysdeps/unix/sysv/linux/sparc/sysdep.h: New file. * sysdeps/unix/sysv/linux/sparc/Dist: New file. * sysdeps/unix/sysv/linux/sparc/Makefile: New file. * sysdeps/unix/sysv/linux/net/if_arp.h: Don't use kernel header. Provide own definition based on 4.4BSD and Linux. * sysdeps/unix/sysv/linux/net/ppp_defs.h: Define __u32 before including <linux/ppp_defs.h>. * sysdeps/unix/sysv/linux/sys/msq_buf.h (struct msqid_ds): Don't use __pid_t since the kernel might have a different size. * sysdeps/unix/sysv/linux/sys/shm_buf.h (struct shmid_ds): Likewise. Reported by Andreas Schwab. * time/asctime.c: Update copyright. * time/dysize.c: Likewise. * time/gmtime.c: Likewise. * time/timegm.c: Likewise. * time/offtime.c: Likewise. De-ANSI-declfy. * time/tzset.c (__tzset_internal): When TZ envvar does not name a DST timezone don't default to offset -1. * sysdeps/unix/sysv/linux/net/route.h: Don't use kernel header. Reported by a sun <asun@zoology.washington.edu>. * resolv/Makefile: Correct spelling: subdirs-dirs -> subdir-dirs. * sysdeps/stub/sysv_signal.c: New file. Stub implementation. * Makefile (distribute): Add mcheck.h. * nis/Makefile (distribute): Add nss-nis.h. * libio/Makefile (routines): Change vdprintf to iovdprintf to prevent dist problem. * nss/Makefile (distribute): Add digits_dots.c. * sysdeps/unix/sysv/linux/Dist: Add kernel_sigaction.h. * sysdeps/unix/sysv/linux/alpha/Dist: Add sys/procfs.h. * sysdeps/unix/sysv/linux/sparc/Dist: Add clone.S. * new-malloc/Makefile (distribute): Add mcheck-init.c and mcheck.h. Mon Jan 20 17:54:28 1997 Sven Verdoolaege <skimo@breughel.ufsia.ac.be> * manual/filesys.texi: Fix little problem (reentrant->readdir). Fri Jan 17 19:07:07 1997 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * configure.in [$elf=yes]: Check for support of .previous and .popsection in the assembler. * config.h.in: Add HAVE_ASM_PREVIOUS_DIRECTIVE and HAVE_ASM_POPSECTION_DIRECTIVE. * libc-symbols.h (__make_section_unallocated) [HAVE_ELF]: Define appropriate if either .previous or .popsection is supported. (libc_warning) [HAVE_ELF]: Use it here. Sat Jan 18 22:15:26 1997 Richard Henderson <rth@tamu.edu> * Makeconfig (CFLAGS-.so): Add -fno-common to prevent odd sorts of errors that can occur when linking libc.so. Mon Jan 20 05:20:49 1997 Ulrich Drepper <drepper@cygnus.com> * elf/dl-load.c (open_path): When running setuid don't try a directory if it is not given with the full name. * elf/Makefile (before-compile): New variable. Mention trusted-dirs.h. (trusted-dirs.h): Construct file from $(default-rpath) and $(user-defined-trusted-dirs) variables. * elf/dl-load.c (_dl_map_object): Pass additional argument to open_path which is NULL except for the LD_LIBRARY_PATH pass in which case it is a pointer to the list of directories from the trusted-dirs.h file. (open_path): Accept additional argument with list of trusted dirs. When running setuid and a list of trusted dirs is given only use those which are mentioned in the list. * elf/rtld.c (dl_main): Don't reject whole LD_LIBRARY_PATH when running setuid. Instead accept entries which do not contain a '/'. * Makeconfig: Correct comment about +(default_cflags). Mon Jan 20 05:11:14 1997 Hrvoje Niksic <hniksic@srce.hr> * time/strptime.c (recursive): Use && not || to test for valid argument. Mon Jan 20 05:06:50 1997 Ulrich Drepper <drepper@cygnus.com> * elf/ldd.sh.in: Exit with value 1 if an error occured. * elf/ldd.bash.in: Likewise. * elf/rtld.c (dl_main): Do not always ignore LD_PRELOAD when the binary runs setuid. It is save to use those entries which do not contain a '/'. This is compatible with Solaris-2.
530 lines
13 KiB
C
530 lines
13 KiB
C
/* Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
|
||
This file is part of the GNU C Library.
|
||
|
||
The GNU C Library is free software; you can redistribute it and/or
|
||
modify it under the terms of the GNU Library General Public License as
|
||
published by the Free Software Foundation; either version 2 of the
|
||
License, or (at your option) any later version.
|
||
|
||
The GNU C Library is distributed in the hope that it will be useful,
|
||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
Library General Public License for more details.
|
||
|
||
You should have received a copy of the GNU Library General Public
|
||
License along with the GNU C Library; see the file COPYING.LIB. If not,
|
||
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||
Boston, MA 02111-1307, USA. */
|
||
|
||
#include <ctype.h>
|
||
#include <stddef.h>
|
||
#include <stdio.h>
|
||
#include <stdlib.h>
|
||
#include <string.h>
|
||
#include <time.h>
|
||
|
||
/* Defined in mktime.c. */
|
||
extern const unsigned short int __mon_yday[2][13];
|
||
|
||
#define NOID
|
||
#include "tzfile.h"
|
||
|
||
extern int __use_tzfile;
|
||
extern void __tzfile_read __P ((const char *file));
|
||
extern void __tzfile_default __P ((char *std, char *dst,
|
||
long int stdoff, long int dstoff));
|
||
extern int __tz_compute __P ((time_t timer, const struct tm *tm));
|
||
|
||
char *__tzname[2] = { (char *) "GMT", (char *) "GMT" };
|
||
int __daylight = 0;
|
||
long int __timezone = 0L;
|
||
|
||
weak_alias (__tzname, tzname)
|
||
weak_alias (__daylight, daylight)
|
||
weak_alias (__timezone, timezone)
|
||
|
||
|
||
#define min(a, b) ((a) < (b) ? (a) : (b))
|
||
#define max(a, b) ((a) > (b) ? (a) : (b))
|
||
#define sign(x) ((x) < 0 ? -1 : 1)
|
||
|
||
|
||
/* This structure contains all the information about a
|
||
timezone given in the POSIX standard TZ envariable. */
|
||
typedef struct
|
||
{
|
||
char *name;
|
||
|
||
/* When to change. */
|
||
enum { J0, J1, M } type; /* Interpretation of: */
|
||
unsigned short int m, n, d; /* Month, week, day. */
|
||
unsigned int secs; /* Time of day. */
|
||
|
||
long int offset; /* Seconds east of GMT (west if < 0). */
|
||
|
||
/* We cache the computed time of change for a
|
||
given year so we don't have to recompute it. */
|
||
time_t change; /* When to change to this zone. */
|
||
int computed_for; /* Year above is computed for. */
|
||
} tz_rule;
|
||
|
||
/* tz_rules[0] is standard, tz_rules[1] is daylight. */
|
||
static tz_rule tz_rules[2];
|
||
|
||
|
||
static int compute_change __P ((tz_rule *rule, int year));
|
||
|
||
static char *old_tz = NULL;
|
||
|
||
/* Interpret the TZ envariable. */
|
||
void __tzset_internal __P ((int always));
|
||
void
|
||
__tzset_internal (always)
|
||
int always;
|
||
{
|
||
static int is_initialized = 0;
|
||
register const char *tz;
|
||
register size_t l;
|
||
unsigned short int hh, mm, ss;
|
||
unsigned short int whichrule;
|
||
|
||
if (is_initialized && !always)
|
||
return;
|
||
is_initialized = 1;
|
||
|
||
/* Examine the TZ environment variable. */
|
||
tz = getenv ("TZ");
|
||
|
||
/* A leading colon means "implementation defined syntax".
|
||
We ignore the colon and always use the same algorithm:
|
||
try a data file, and if none exists parse the 1003.1 syntax. */
|
||
if (tz && *tz == ':')
|
||
++tz;
|
||
|
||
/* Check whether the value changes since the last run. */
|
||
if (old_tz != NULL && tz != NULL && strcmp (tz, old_tz) == 0)
|
||
/* No change, simply return. */
|
||
return;
|
||
|
||
/* Free old storage. */
|
||
if (tz_rules[0].name != NULL && *tz_rules[0].name != '\0')
|
||
free((void *) tz_rules[0].name);
|
||
if (tz_rules[1].name != NULL && *tz_rules[1].name != '\0' &&
|
||
tz_rules[1].name != tz_rules[0].name)
|
||
free((void *) tz_rules[1].name);
|
||
tz_rules[0].name = NULL;
|
||
tz_rules[1].name = NULL;
|
||
|
||
/* Save the value of `tz'. */
|
||
if (old_tz != NULL)
|
||
free (old_tz);
|
||
old_tz = tz ? __strdup (tz) : NULL;
|
||
|
||
/* Try to read a data file. */
|
||
__tzfile_read (tz);
|
||
if (__use_tzfile)
|
||
return;
|
||
|
||
/* No data file found. Default to UTC if nothing specified. */
|
||
|
||
if (tz == NULL || *tz == '\0')
|
||
{
|
||
static const char UTC[] = "UTC";
|
||
size_t len = sizeof UTC;
|
||
tz_rules[0].name = (char *) malloc (len);
|
||
if (tz_rules[0].name == NULL)
|
||
return;
|
||
tz_rules[1].name = (char *) malloc (len);
|
||
if (tz_rules[1].name == NULL)
|
||
return;
|
||
memcpy ((void *) tz_rules[0].name, UTC, len);
|
||
memcpy ((void *) tz_rules[1].name, UTC, len);
|
||
tz_rules[0].type = tz_rules[1].type = J0;
|
||
tz_rules[0].m = tz_rules[0].n = tz_rules[0].d = 0;
|
||
tz_rules[1].m = tz_rules[1].n = tz_rules[1].d = 0;
|
||
tz_rules[0].secs = tz_rules[1].secs = 0;
|
||
tz_rules[0].offset = tz_rules[1].offset = 0L;
|
||
tz_rules[0].change = tz_rules[1].change = (time_t) -1;
|
||
tz_rules[0].computed_for = tz_rules[1].computed_for = 0;
|
||
return;
|
||
}
|
||
|
||
/* Clear out old state and reset to unnamed UTC. */
|
||
memset (tz_rules, 0, sizeof tz_rules);
|
||
tz_rules[0].name = tz_rules[1].name = (char *) "";
|
||
|
||
/* Get the standard timezone name. */
|
||
tz_rules[0].name = (char *) malloc (strlen (tz) + 1);
|
||
if (tz_rules[0].name == NULL)
|
||
{
|
||
/* Clear the old tz name so we will try again. */
|
||
free (old_tz);
|
||
old_tz = NULL;
|
||
return;
|
||
}
|
||
|
||
if (sscanf(tz, "%[^0-9,+-]", tz_rules[0].name) != 1 ||
|
||
(l = strlen(tz_rules[0].name)) < 3)
|
||
{
|
||
free (tz_rules[0].name);
|
||
tz_rules[0].name = (char *) "";
|
||
return;
|
||
}
|
||
|
||
{
|
||
char *n = realloc ((void *) tz_rules[0].name, l + 1);
|
||
if (n != NULL)
|
||
tz_rules[0].name = n;
|
||
}
|
||
|
||
tz += l;
|
||
|
||
/* Figure out the standard offset from UTC. */
|
||
if (*tz == '\0' || (*tz != '+' && *tz != '-' && !isdigit(*tz)))
|
||
return;
|
||
|
||
if (*tz == '-' || *tz == '+')
|
||
tz_rules[0].offset = *tz++ == '-' ? 1L : -1L;
|
||
else
|
||
tz_rules[0].offset = -1L;
|
||
switch (sscanf (tz, "%hu:%hu:%hu", &hh, &mm, &ss))
|
||
{
|
||
default:
|
||
return;
|
||
case 1:
|
||
mm = 0;
|
||
case 2:
|
||
ss = 0;
|
||
case 3:
|
||
break;
|
||
}
|
||
tz_rules[0].offset *= (min (ss, 59) + (min (mm, 59) * 60) +
|
||
(min (hh, 23) * 60 * 60));
|
||
|
||
for (l = 0; l < 3; ++l)
|
||
{
|
||
while (isdigit(*tz))
|
||
++tz;
|
||
if (l < 2 && *tz == ':')
|
||
++tz;
|
||
}
|
||
|
||
/* Get the DST timezone name (if any). */
|
||
if (*tz != '\0')
|
||
{
|
||
char *n = malloc (strlen (tz) + 1);
|
||
if (n != NULL)
|
||
{
|
||
tz_rules[1].name = n;
|
||
if (sscanf (tz, "%[^0-9,+-]", tz_rules[1].name) != 1 ||
|
||
(l = strlen (tz_rules[1].name)) < 3)
|
||
{
|
||
free (n);
|
||
tz_rules[1].name = (char *) "";
|
||
goto done_names; /* Punt on name, set up the offsets. */
|
||
}
|
||
n = realloc ((void *) tz_rules[1].name, l + 1);
|
||
if (n != NULL)
|
||
tz_rules[1].name = n;
|
||
|
||
tz += l;
|
||
}
|
||
|
||
/* Figure out the DST offset from GMT. */
|
||
if (*tz == '-' || *tz == '+')
|
||
tz_rules[1].offset = *tz++ == '-' ? 1L : -1L;
|
||
else
|
||
tz_rules[1].offset = -1L;
|
||
|
||
switch (sscanf (tz, "%hu:%hu:%hu", &hh, &mm, &ss))
|
||
{
|
||
default:
|
||
/* Default to one hour later than standard time. */
|
||
tz_rules[1].offset = tz_rules[0].offset + (60 * 60);
|
||
break;
|
||
|
||
case 1:
|
||
mm = 0;
|
||
case 2:
|
||
ss = 0;
|
||
case 3:
|
||
tz_rules[1].offset *= (min (ss, 59) + (min (mm, 59) * 60) +
|
||
(min (hh, 23) * (60 * 60)));
|
||
break;
|
||
}
|
||
for (l = 0; l < 3; ++l)
|
||
{
|
||
while (isdigit (*tz))
|
||
++tz;
|
||
if (l < 2 && *tz == ':')
|
||
++tz;
|
||
}
|
||
}
|
||
else
|
||
/* There is no DST. */
|
||
tz_rules[1].name = tz_rules[0].name;
|
||
|
||
done_names:
|
||
|
||
if (*tz == '\0' || (tz[0] == ',' && tz[1] == '\0'))
|
||
{
|
||
/* There is no rule. See if there is a default rule file. */
|
||
__tzfile_default (tz_rules[0].name, tz_rules[1].name,
|
||
tz_rules[0].offset, tz_rules[1].offset);
|
||
if (__use_tzfile)
|
||
{
|
||
free (old_tz);
|
||
old_tz = NULL;
|
||
return;
|
||
}
|
||
}
|
||
|
||
/* Figure out the standard <-> DST rules. */
|
||
for (whichrule = 0; whichrule < 2; ++whichrule)
|
||
{
|
||
register tz_rule *tzr = &tz_rules[whichrule];
|
||
|
||
if (*tz == ',')
|
||
{
|
||
++tz;
|
||
if (*tz == '\0')
|
||
return;
|
||
}
|
||
|
||
/* Get the date of the change. */
|
||
if (*tz == 'J' || isdigit (*tz))
|
||
{
|
||
char *end;
|
||
tzr->type = *tz == 'J' ? J1 : J0;
|
||
if (tzr->type == J1 && !isdigit (*++tz))
|
||
return;
|
||
tzr->d = (unsigned short int) strtoul (tz, &end, 10);
|
||
if (end == tz || tzr->d > 365)
|
||
return;
|
||
else if (tzr->type == J1 && tzr->d == 0)
|
||
return;
|
||
tz = end;
|
||
}
|
||
else if (*tz == 'M')
|
||
{
|
||
int n;
|
||
tzr->type = M;
|
||
if (sscanf (tz, "M%hu.%hu.%hu%n",
|
||
&tzr->m, &tzr->n, &tzr->d, &n) != 3 ||
|
||
tzr->m < 1 || tzr->m > 12 ||
|
||
tzr->n < 1 || tzr->n > 5 || tzr->d > 6)
|
||
return;
|
||
tz += n;
|
||
}
|
||
else if (*tz == '\0')
|
||
{
|
||
/* United States Federal Law, the equivalent of "M4.1.0,M10.5.0". */
|
||
tzr->type = M;
|
||
if (tzr == &tz_rules[0])
|
||
{
|
||
tzr->m = 4;
|
||
tzr->n = 1;
|
||
tzr->d = 0;
|
||
}
|
||
else
|
||
{
|
||
tzr->m = 10;
|
||
tzr->n = 5;
|
||
tzr->d = 0;
|
||
}
|
||
}
|
||
else
|
||
return;
|
||
|
||
if (*tz != '\0' && *tz != '/' && *tz != ',')
|
||
return;
|
||
else if (*tz == '/')
|
||
{
|
||
/* Get the time of day of the change. */
|
||
++tz;
|
||
if (*tz == '\0')
|
||
return;
|
||
switch (sscanf (tz, "%hu:%hu:%hu", &hh, &mm, &ss))
|
||
{
|
||
default:
|
||
hh = 2; /* Default to 2:00 AM. */
|
||
case 1:
|
||
mm = 0;
|
||
case 2:
|
||
ss = 0;
|
||
case 3:
|
||
break;
|
||
}
|
||
for (l = 0; l < 3; ++l)
|
||
{
|
||
while (isdigit (*tz))
|
||
++tz;
|
||
if (l < 2 && *tz == ':')
|
||
++tz;
|
||
}
|
||
tzr->secs = (hh * 60 * 60) + (mm * 60) + ss;
|
||
}
|
||
else
|
||
/* Default to 2:00 AM. */
|
||
tzr->secs = 2 * 60 * 60;
|
||
|
||
tzr->computed_for = -1;
|
||
}
|
||
}
|
||
|
||
/* Maximum length of a timezone name. __tz_compute keeps this up to date
|
||
(never decreasing it) when ! __use_tzfile.
|
||
tzfile.c keeps it up to date when __use_tzfile. */
|
||
size_t __tzname_cur_max;
|
||
|
||
long int
|
||
__tzname_max ()
|
||
{
|
||
__tzset_internal (0);
|
||
|
||
return __tzname_cur_max;
|
||
}
|
||
|
||
/* Figure out the exact time (as a time_t) in YEAR
|
||
when the change described by RULE will occur and
|
||
put it in RULE->change, saving YEAR in RULE->computed_for.
|
||
Return nonzero if successful, zero on failure. */
|
||
static int
|
||
compute_change (rule, year)
|
||
tz_rule *rule;
|
||
int year;
|
||
{
|
||
register time_t t;
|
||
int y;
|
||
|
||
if (year != -1 && rule->computed_for == year)
|
||
/* Operations on times in 1969 will be slower. Oh well. */
|
||
return 1;
|
||
|
||
/* First set T to January 1st, 0:00:00 GMT in YEAR. */
|
||
t = 0;
|
||
for (y = 1970; y < year; ++y)
|
||
t += SECSPERDAY * (__isleap (y) ? 366 : 365);
|
||
|
||
switch (rule->type)
|
||
{
|
||
case J1:
|
||
/* Jn - Julian day, 1 == January 1, 60 == March 1 even in leap years.
|
||
In non-leap years, or if the day number is 59 or less, just
|
||
add SECSPERDAY times the day number-1 to the time of
|
||
January 1, midnight, to get the day. */
|
||
t += (rule->d - 1) * SECSPERDAY;
|
||
if (rule->d >= 60 && __isleap (year))
|
||
t += SECSPERDAY;
|
||
break;
|
||
|
||
case J0:
|
||
/* n - Day of year.
|
||
Just add SECSPERDAY times the day number to the time of Jan 1st. */
|
||
t += rule->d * SECSPERDAY;
|
||
break;
|
||
|
||
case M:
|
||
/* Mm.n.d - Nth "Dth day" of month M. */
|
||
{
|
||
register int i, d, m1, yy0, yy1, yy2, dow;
|
||
register const unsigned short int *myday =
|
||
&__mon_yday[__isleap (year)][rule->m];
|
||
|
||
/* First add SECSPERDAY for each day in months before M. */
|
||
t += myday[-1] * SECSPERDAY;
|
||
|
||
/* Use Zeller's Congruence to get day-of-week of first day of month. */
|
||
m1 = (rule->m + 9) % 12 + 1;
|
||
yy0 = (rule->m <= 2) ? (year - 1) : year;
|
||
yy1 = yy0 / 100;
|
||
yy2 = yy0 % 100;
|
||
dow = ((26 * m1 - 2) / 10 + 1 + yy2 + yy2 / 4 + yy1 / 4 - 2 * yy1) % 7;
|
||
if (dow < 0)
|
||
dow += 7;
|
||
|
||
/* DOW is the day-of-week of the first day of the month. Get the
|
||
day-of-month (zero-origin) of the first DOW day of the month. */
|
||
d = rule->d - dow;
|
||
if (d < 0)
|
||
d += 7;
|
||
for (i = 1; i < rule->n; ++i)
|
||
{
|
||
if (d + 7 >= myday[0] - myday[-1])
|
||
break;
|
||
d += 7;
|
||
}
|
||
|
||
/* D is the day-of-month (zero-origin) of the day we want. */
|
||
t += d * SECSPERDAY;
|
||
}
|
||
break;
|
||
}
|
||
|
||
/* T is now the Epoch-relative time of 0:00:00 GMT on the day we want.
|
||
Just add the time of day and local offset from GMT, and we're done. */
|
||
|
||
rule->change = t - rule->offset + rule->secs;
|
||
rule->computed_for = year;
|
||
return 1;
|
||
}
|
||
|
||
|
||
/* Figure out the correct timezone for *TIMER and TM (which must be the same)
|
||
and set `__tzname', `__timezone', and `__daylight' accordingly.
|
||
Return nonzero on success, zero on failure. */
|
||
int
|
||
__tz_compute (timer, tm)
|
||
time_t timer;
|
||
const struct tm *tm;
|
||
{
|
||
__tzset_internal (0);
|
||
|
||
if (! compute_change (&tz_rules[0], 1900 + tm->tm_year) ||
|
||
! compute_change (&tz_rules[1], 1900 + tm->tm_year))
|
||
return 0;
|
||
|
||
__daylight = timer >= tz_rules[0].change && timer < tz_rules[1].change;
|
||
__timezone = tz_rules[__daylight ? 1 : 0].offset;
|
||
__tzname[0] = (char *) tz_rules[0].name;
|
||
__tzname[1] = (char *) tz_rules[1].name;
|
||
|
||
{
|
||
/* Keep __tzname_cur_max up to date. */
|
||
size_t len0 = strlen (__tzname[0]);
|
||
size_t len1 = strlen (__tzname[1]);
|
||
if (len0 > __tzname_cur_max)
|
||
__tzname_cur_max = len0;
|
||
if (len1 > __tzname_cur_max)
|
||
__tzname_cur_max = len1;
|
||
}
|
||
|
||
return 1;
|
||
}
|
||
|
||
#include <libc-lock.h>
|
||
|
||
/* This locks all the state variables in tzfile.c and this file. */
|
||
__libc_lock_define (, __tzset_lock)
|
||
|
||
/* Reinterpret the TZ environment variable and set `tzname'. */
|
||
#undef tzset
|
||
|
||
void
|
||
__tzset (void)
|
||
{
|
||
__libc_lock_lock (__tzset_lock);
|
||
|
||
__tzset_internal (1);
|
||
|
||
if (!__use_tzfile)
|
||
{
|
||
/* Set `tzname'. */
|
||
__tzname[0] = (char *) tz_rules[0].name;
|
||
__tzname[1] = (char *) tz_rules[1].name;
|
||
}
|
||
|
||
__libc_lock_unlock (__tzset_lock);
|
||
}
|
||
weak_alias (__tzset, tzset)
|