1 /* Time zone functions such as tzalloc and localtime_rz
3 Copyright 2015-2016 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3, or (at your option)
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, see <http://www.gnu.org/licenses/>. */
18 /* Written by Paul Eggert. */
20 /* Although this module is not thread-safe, any races should be fairly
21 rare and reasonably benign. For complete thread-safety, use a C
22 library with a working timezone_t type, so that this module is not
35 #include "time-internal.h"
38 static void tzset (void) { }
41 /* The approximate size to use for small allocation requests. This is
42 the largest "small" request for the GNU C library malloc. */
43 enum { DEFAULT_MXFAST
= 64 * sizeof (size_t) / 4 };
45 /* Minimum size of the ABBRS member of struct abbr. ABBRS is larger
46 only in the unlikely case where an abbreviation longer than this is
48 enum { ABBR_SIZE_MIN
= DEFAULT_MXFAST
- offsetof (struct tm_zone
, abbrs
) };
50 /* Magic cookie timezone_t value, for local time. It differs from
51 NULL and from all other timezone_t values. Only the address
52 matters; the pointer is never dereferenced. */
53 static timezone_t
const local_tz
= (timezone_t
) 1;
55 #if HAVE_TM_ZONE || HAVE_TZNAME
57 /* Return true if the values A and B differ according to the rules for
58 tm_isdst: A and B differ if one is zero and the other positive. */
60 isdst_differ (int a
, int b
)
62 return !a
!= !b
&& 0 <= a
&& 0 <= b
;
65 /* Return true if A and B are equal. */
67 equal_tm (const struct tm
*a
, const struct tm
*b
)
69 return ! ((a
->tm_sec
^ b
->tm_sec
)
70 | (a
->tm_min
^ b
->tm_min
)
71 | (a
->tm_hour
^ b
->tm_hour
)
72 | (a
->tm_mday
^ b
->tm_mday
)
73 | (a
->tm_mon
^ b
->tm_mon
)
74 | (a
->tm_year
^ b
->tm_year
)
75 | isdst_differ (a
->tm_isdst
, b
->tm_isdst
));
80 /* Copy to ABBRS the abbreviation at ABBR with size ABBR_SIZE (this
81 includes its trailing null byte). Append an extra null byte to
82 mark the end of ABBRS. */
84 extend_abbrs (char *abbrs
, char const *abbr
, size_t abbr_size
)
86 memcpy (abbrs
, abbr
, abbr_size
);
87 abbrs
[abbr_size
] = '\0';
90 /* Return a newly allocated time zone for NAME, or NULL on failure.
91 A null NAME stands for wall clock time (which is like unset TZ). */
93 tzalloc (char const *name
)
95 size_t name_size
= name
? strlen (name
) + 1 : 0;
96 size_t abbr_size
= name_size
< ABBR_SIZE_MIN
? ABBR_SIZE_MIN
: name_size
+ 1;
97 timezone_t tz
= malloc (offsetof (struct tm_zone
, abbrs
) + abbr_size
);
101 #if HAVE_TZNAME && !HAVE_TM_ZONE
102 tz
->tzname_copy
[0] = tz
->tzname_copy
[1] = NULL
;
104 tz
->tz_is_set
= !!name
;
107 extend_abbrs (tz
->abbrs
, name
, name_size
);
112 /* Save into TZ any nontrivial time zone abbreviation used by TM, and
113 update *TM (if HAVE_TM_ZONE) or *TZ (if !HAVE_TM_ZONE &&
114 HAVE_TZNAME) if they use the abbreviation. Return true if
115 successful, false (setting errno) otherwise. */
117 save_abbr (timezone_t tz
, struct tm
*tm
)
119 #if HAVE_TM_ZONE || HAVE_TZNAME
120 char const *zone
= NULL
;
121 char *zone_copy
= (char *) "";
124 int tzname_index
= -1;
132 if (! (zone
&& *zone
) && 0 <= tm
->tm_isdst
)
134 tzname_index
= tm
->tm_isdst
!= 0;
135 zone
= tzname
[tzname_index
];
139 /* No need to replace null zones, or zones within the struct tm. */
140 if (!zone
|| ((char *) tm
<= zone
&& zone
< (char *) (tm
+ 1)))
145 zone_copy
= tz
->abbrs
;
147 while (strcmp (zone_copy
, zone
) != 0)
149 if (! (*zone_copy
|| (zone_copy
== tz
->abbrs
&& tz
->tz_is_set
)))
151 size_t zone_size
= strlen (zone
) + 1;
152 if (zone_size
< tz
->abbrs
+ ABBR_SIZE_MIN
- zone_copy
)
153 extend_abbrs (zone_copy
, zone
, zone_size
);
156 tz
= tz
->next
= tzalloc (zone
);
160 zone_copy
= tz
->abbrs
;
165 zone_copy
+= strlen (zone_copy
) + 1;
166 if (!*zone_copy
&& tz
->next
)
169 zone_copy
= tz
->abbrs
;
174 /* Replace the zone name so that its lifetime matches that of TZ. */
176 tm
->tm_zone
= zone_copy
;
178 if (0 <= tzname_index
)
179 tz
->tzname_copy
[tzname_index
] = zone_copy
;
186 /* Free a time zone. */
188 tzfree (timezone_t tz
)
193 timezone_t next
= tz
->next
;
199 /* Get and set the TZ environment variable. These functions can be
200 overridden by programs like Emacs that manage their own environment. */
206 return getenv ("TZ");
212 setenv_TZ (char const *tz
)
214 return tz
? setenv ("TZ", tz
, 1) : unsetenv ("TZ");
218 /* Change the environment to match the specified timezone_t value.
219 Return true if successful, false (setting errno) otherwise. */
221 change_env (timezone_t tz
)
223 if (setenv_TZ (tz
->tz_is_set
? tz
->abbrs
: NULL
) != 0)
229 /* Temporarily set the time zone to TZ, which must not be null.
230 Return LOCAL_TZ if the time zone setting is already correct.
231 Otherwise return a newly allocated time zone representing the old
232 setting, or NULL (setting errno) on failure. */
234 set_tz (timezone_t tz
)
236 char *env_tz
= getenv_TZ ();
238 ? tz
->tz_is_set
&& strcmp (tz
->abbrs
, env_tz
) == 0
243 timezone_t old_tz
= tzalloc (env_tz
);
246 if (! change_env (tz
))
248 int saved_errno
= errno
;
257 /* Restore an old setting returned by set_tz. It must not be null.
258 Return true (preserving errno) if successful, false (setting errno)
261 revert_tz (timezone_t tz
)
267 int saved_errno
= errno
;
268 bool ok
= change_env (tz
);
277 /* Use time zone TZ to compute localtime_r (T, TM). */
279 localtime_rz (timezone_t tz
, time_t const *t
, struct tm
*tm
)
282 return gmtime_r (t
, tm
);
285 timezone_t old_tz
= set_tz (tz
);
288 bool abbr_saved
= localtime_r (t
, tm
) && save_abbr (tz
, tm
);
289 if (revert_tz (old_tz
) && abbr_saved
)
296 /* Use time zone TZ to compute mktime (TM). */
298 mktime_z (timezone_t tz
, struct tm
*tm
)
304 timezone_t old_tz
= set_tz (tz
);
307 time_t t
= mktime (tm
);
308 #if HAVE_TM_ZONE || HAVE_TZNAME
312 || (localtime_r (&t
, &tm_1
) && equal_tm (tm
, &tm_1
)))
313 && !save_abbr (tz
, tm
))
316 if (revert_tz (old_tz
))