zdump.c revision 1.53 1 1.53 christos /* $NetBSD: zdump.c,v 1.53 2020/05/25 14:52:48 christos Exp $ */
2 1.50 christos /* Dump time zone data in a textual format. */
3 1.50 christos
4 1.17 mlelstv /*
5 1.17 mlelstv ** This file is in the public domain, so clarified as of
6 1.17 mlelstv ** 2009-05-17 by Arthur David Olson.
7 1.17 mlelstv */
8 1.2 jtc
9 1.6 christos #include <sys/cdefs.h>
10 1.1 jtc #ifndef lint
11 1.53 christos __RCSID("$NetBSD: zdump.c,v 1.53 2020/05/25 14:52:48 christos Exp $");
12 1.1 jtc #endif /* !defined lint */
13 1.1 jtc
14 1.36 christos #ifndef NETBSD_INSPIRED
15 1.36 christos # define NETBSD_INSPIRED 1
16 1.36 christos #endif
17 1.36 christos
18 1.46 christos #include <err.h>
19 1.29 christos #include "private.h"
20 1.47 christos #include <stdio.h>
21 1.47 christos
22 1.47 christos #ifndef HAVE_SNPRINTF
23 1.47 christos # define HAVE_SNPRINTF (199901 <= __STDC_VERSION__)
24 1.47 christos #endif
25 1.36 christos
26 1.36 christos #ifndef HAVE_LOCALTIME_R
27 1.36 christos # define HAVE_LOCALTIME_R 1
28 1.36 christos #endif
29 1.36 christos
30 1.36 christos #ifndef HAVE_LOCALTIME_RZ
31 1.36 christos # ifdef TM_ZONE
32 1.36 christos # define HAVE_LOCALTIME_RZ (NETBSD_INSPIRED && USE_LTZ)
33 1.36 christos # else
34 1.36 christos # define HAVE_LOCALTIME_RZ 0
35 1.36 christos # endif
36 1.36 christos #endif
37 1.36 christos
38 1.36 christos #ifndef HAVE_TZSET
39 1.36 christos # define HAVE_TZSET 1
40 1.36 christos #endif
41 1.27 christos
42 1.17 mlelstv #ifndef ZDUMP_LO_YEAR
43 1.17 mlelstv #define ZDUMP_LO_YEAR (-500)
44 1.17 mlelstv #endif /* !defined ZDUMP_LO_YEAR */
45 1.17 mlelstv
46 1.17 mlelstv #ifndef ZDUMP_HI_YEAR
47 1.17 mlelstv #define ZDUMP_HI_YEAR 2500
48 1.17 mlelstv #endif /* !defined ZDUMP_HI_YEAR */
49 1.1 jtc
50 1.1 jtc #ifndef MAX_STRING_LENGTH
51 1.1 jtc #define MAX_STRING_LENGTH 1024
52 1.1 jtc #endif /* !defined MAX_STRING_LENGTH */
53 1.1 jtc
54 1.17 mlelstv #define SECSPERNYEAR (SECSPERDAY * DAYSPERNYEAR)
55 1.17 mlelstv #define SECSPERLYEAR (SECSPERNYEAR + SECSPERDAY)
56 1.31 christos #define SECSPER400YEARS (SECSPERNYEAR * (intmax_t) (300 + 3) \
57 1.31 christos + SECSPERLYEAR * (intmax_t) (100 - 3))
58 1.31 christos
59 1.31 christos /*
60 1.31 christos ** True if SECSPER400YEARS is known to be representable as an
61 1.31 christos ** intmax_t. It's OK that SECSPER400YEARS_FITS can in theory be false
62 1.31 christos ** even if SECSPER400YEARS is representable, because when that happens
63 1.31 christos ** the code merely runs a bit more slowly, and this slowness doesn't
64 1.31 christos ** occur on any practical platform.
65 1.31 christos */
66 1.31 christos enum { SECSPER400YEARS_FITS = SECSPERLYEAR <= INTMAX_MAX / 400 };
67 1.17 mlelstv
68 1.17 mlelstv #if HAVE_GETTEXT
69 1.46 christos #include <locale.h> /* for setlocale */
70 1.17 mlelstv #endif /* HAVE_GETTEXT */
71 1.3 jtc
72 1.36 christos #if ! HAVE_LOCALTIME_RZ
73 1.36 christos # undef timezone_t
74 1.36 christos # define timezone_t char **
75 1.36 christos #endif
76 1.36 christos
77 1.43 christos #if !HAVE_POSIX_DECLS
78 1.17 mlelstv extern int getopt(int argc, char * const argv[],
79 1.17 mlelstv const char * options);
80 1.1 jtc extern char * optarg;
81 1.1 jtc extern int optind;
82 1.43 christos #endif
83 1.1 jtc
84 1.29 christos /* The minimum and maximum finite time values. */
85 1.41 christos enum { atime_shift = CHAR_BIT * sizeof (time_t) - 2 };
86 1.29 christos static time_t absolute_min_time =
87 1.31 christos ((time_t) -1 < 0
88 1.41 christos ? (- ((time_t) ~ (time_t) 0 < 0)
89 1.41 christos - (((time_t) 1 << atime_shift) - 1 + ((time_t) 1 << atime_shift)))
90 1.29 christos : 0);
91 1.29 christos static time_t absolute_max_time =
92 1.31 christos ((time_t) -1 < 0
93 1.41 christos ? (((time_t) 1 << atime_shift) - 1 + ((time_t) 1 << atime_shift))
94 1.29 christos : -1);
95 1.5 jtc static size_t longest;
96 1.1 jtc static char * progname;
97 1.36 christos static bool warned;
98 1.36 christos static bool errout;
99 1.17 mlelstv
100 1.36 christos static char const *abbr(struct tm const *);
101 1.36 christos static intmax_t delta(struct tm *, struct tm *) ATTRIBUTE_PURE;
102 1.36 christos static void dumptime(struct tm const *);
103 1.36 christos static time_t hunt(timezone_t, char *, time_t, time_t);
104 1.36 christos static void show(timezone_t, char *, time_t, bool);
105 1.44 christos static void showtrans(char const *, struct tm const *, time_t, char const *,
106 1.44 christos char const *);
107 1.36 christos static const char *tformat(void);
108 1.36 christos static time_t yeartot(intmax_t) ATTRIBUTE_PURE;
109 1.17 mlelstv
110 1.42 christos /* Unlike <ctype.h>'s isdigit, this also works if c < 0 | c > UCHAR_MAX. */
111 1.42 christos #define is_digit(c) ((unsigned)(c) - '0' <= 9)
112 1.42 christos
113 1.34 christos /* Is A an alphabetic character in the C locale? */
114 1.36 christos static bool
115 1.34 christos is_alpha(char a)
116 1.34 christos {
117 1.34 christos switch (a) {
118 1.34 christos default:
119 1.36 christos return false;
120 1.34 christos case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G':
121 1.34 christos case 'H': case 'I': case 'J': case 'K': case 'L': case 'M': case 'N':
122 1.34 christos case 'O': case 'P': case 'Q': case 'R': case 'S': case 'T': case 'U':
123 1.34 christos case 'V': case 'W': case 'X': case 'Y': case 'Z':
124 1.34 christos case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g':
125 1.34 christos case 'h': case 'i': case 'j': case 'k': case 'l': case 'm': case 'n':
126 1.34 christos case 'o': case 'p': case 'q': case 'r': case 's': case 't': case 'u':
127 1.34 christos case 'v': case 'w': case 'x': case 'y': case 'z':
128 1.36 christos return true;
129 1.34 christos }
130 1.34 christos }
131 1.34 christos
132 1.36 christos /* Return A + B, exiting if the result would overflow. */
133 1.36 christos static size_t
134 1.36 christos sumsize(size_t a, size_t b)
135 1.36 christos {
136 1.36 christos size_t sum = a + b;
137 1.36 christos if (sum < a)
138 1.36 christos errx(EXIT_FAILURE, "size overflow");
139 1.36 christos return sum;
140 1.36 christos }
141 1.36 christos
142 1.44 christos /* Return a pointer to a newly allocated buffer of size SIZE, exiting
143 1.44 christos on failure. SIZE should be nonzero. */
144 1.49 christos static void * ATTRIBUTE_MALLOC
145 1.44 christos xmalloc(size_t size)
146 1.44 christos {
147 1.44 christos void *p = malloc(size);
148 1.44 christos if (!p) {
149 1.44 christos perror(progname);
150 1.44 christos exit(EXIT_FAILURE);
151 1.44 christos }
152 1.44 christos return p;
153 1.44 christos }
154 1.44 christos
155 1.36 christos #if ! HAVE_TZSET
156 1.36 christos # undef tzset
157 1.36 christos # define tzset zdump_tzset
158 1.36 christos static void tzset(void) { }
159 1.36 christos #endif
160 1.36 christos
161 1.36 christos /* Assume gmtime_r works if localtime_r does.
162 1.36 christos A replacement localtime_r is defined below if needed. */
163 1.36 christos #if ! HAVE_LOCALTIME_R
164 1.36 christos
165 1.36 christos # undef gmtime_r
166 1.36 christos # define gmtime_r zdump_gmtime_r
167 1.36 christos
168 1.36 christos static struct tm *
169 1.36 christos gmtime_r(time_t *tp, struct tm *tmp)
170 1.36 christos {
171 1.36 christos struct tm *r = gmtime(tp);
172 1.36 christos if (r) {
173 1.36 christos *tmp = *r;
174 1.36 christos r = tmp;
175 1.36 christos }
176 1.36 christos return r;
177 1.36 christos }
178 1.36 christos
179 1.36 christos #endif
180 1.36 christos
181 1.36 christos /* Platforms with TM_ZONE don't need tzname, so they can use the
182 1.36 christos faster localtime_rz or localtime_r if available. */
183 1.36 christos
184 1.36 christos #if defined TM_ZONE && HAVE_LOCALTIME_RZ
185 1.36 christos # define USE_LOCALTIME_RZ true
186 1.36 christos #else
187 1.36 christos # define USE_LOCALTIME_RZ false
188 1.36 christos #endif
189 1.36 christos
190 1.36 christos #if ! USE_LOCALTIME_RZ
191 1.36 christos
192 1.36 christos # if !defined TM_ZONE || ! HAVE_LOCALTIME_R || ! HAVE_TZSET
193 1.36 christos # undef localtime_r
194 1.36 christos # define localtime_r zdump_localtime_r
195 1.36 christos static struct tm *
196 1.36 christos localtime_r(time_t *tp, struct tm *tmp)
197 1.36 christos {
198 1.36 christos struct tm *r = localtime(tp);
199 1.36 christos if (r) {
200 1.36 christos *tmp = *r;
201 1.36 christos r = tmp;
202 1.36 christos }
203 1.36 christos return r;
204 1.36 christos }
205 1.36 christos # endif
206 1.36 christos
207 1.36 christos # undef localtime_rz
208 1.36 christos # define localtime_rz zdump_localtime_rz
209 1.36 christos static struct tm *
210 1.36 christos localtime_rz(timezone_t rz, time_t *tp, struct tm *tmp)
211 1.36 christos {
212 1.36 christos return localtime_r(tp, tmp);
213 1.36 christos }
214 1.36 christos
215 1.36 christos # ifdef TYPECHECK
216 1.36 christos # undef mktime_z
217 1.36 christos # define mktime_z zdump_mktime_z
218 1.36 christos static time_t
219 1.36 christos mktime_z(timezone_t tz, struct tm *tmp)
220 1.36 christos {
221 1.36 christos return mktime(tmp);
222 1.36 christos }
223 1.36 christos # endif
224 1.36 christos
225 1.36 christos # undef tzalloc
226 1.36 christos # undef tzfree
227 1.36 christos # define tzalloc zdump_tzalloc
228 1.36 christos # define tzfree zdump_tzfree
229 1.36 christos
230 1.36 christos static timezone_t
231 1.36 christos tzalloc(char const *val)
232 1.36 christos {
233 1.36 christos static char **fakeenv;
234 1.36 christos char **env = fakeenv;
235 1.36 christos char *env0;
236 1.36 christos if (! env) {
237 1.36 christos char **e = environ;
238 1.36 christos int to;
239 1.36 christos
240 1.36 christos while (*e++)
241 1.36 christos continue;
242 1.44 christos env = xmalloc(sumsize(sizeof *environ,
243 1.36 christos (e - environ) * sizeof *environ));
244 1.36 christos to = 1;
245 1.36 christos for (e = environ; (env[to] = *e); e++)
246 1.36 christos to += strncmp(*e, "TZ=", 3) != 0;
247 1.36 christos }
248 1.44 christos env0 = xmalloc(sumsize(sizeof "TZ=", strlen(val)));
249 1.36 christos env[0] = strcat(strcpy(env0, "TZ="), val);
250 1.36 christos environ = fakeenv = env;
251 1.36 christos tzset();
252 1.36 christos return env;
253 1.36 christos }
254 1.36 christos
255 1.36 christos static void
256 1.36 christos tzfree(timezone_t env)
257 1.36 christos {
258 1.36 christos environ = env + 1;
259 1.36 christos free(env[0]);
260 1.36 christos }
261 1.36 christos #endif /* ! USE_LOCALTIME_RZ */
262 1.36 christos
263 1.48 christos /* A UT time zone, and its initializer. */
264 1.36 christos static timezone_t gmtz;
265 1.36 christos static void
266 1.36 christos gmtzinit(void)
267 1.36 christos {
268 1.36 christos if (USE_LOCALTIME_RZ) {
269 1.36 christos static char const utc[] = "UTC0";
270 1.36 christos gmtz = tzalloc(utc);
271 1.36 christos if (!gmtz) {
272 1.36 christos err(EXIT_FAILURE, "Cannot create %s", utc);
273 1.36 christos }
274 1.36 christos }
275 1.36 christos }
276 1.36 christos
277 1.48 christos /* Convert *TP to UT, storing the broken-down time into *TMP.
278 1.36 christos Return TMP if successful, NULL otherwise. This is like gmtime_r(TP, TMP),
279 1.36 christos except typically faster if USE_LOCALTIME_RZ. */
280 1.36 christos static struct tm *
281 1.36 christos my_gmtime_r(time_t *tp, struct tm *tmp)
282 1.36 christos {
283 1.36 christos return USE_LOCALTIME_RZ ?
284 1.36 christos localtime_rz(gmtz, tp, tmp) : gmtime_r(tp, tmp);
285 1.36 christos }
286 1.36 christos
287 1.17 mlelstv #ifndef TYPECHECK
288 1.36 christos #define my_localtime_rz localtime_rz
289 1.17 mlelstv #else /* !defined TYPECHECK */
290 1.17 mlelstv static struct tm *
291 1.36 christos my_localtime_rz(timezone_t tz, const time_t *tp, struct tm *tmp)
292 1.17 mlelstv {
293 1.36 christos tmp = localtime_rz(tz, tp, tmp);
294 1.36 christos if (tmp) {
295 1.17 mlelstv struct tm tm;
296 1.26 christos time_t t;
297 1.17 mlelstv
298 1.17 mlelstv tm = *tmp;
299 1.36 christos t = mktime_z(tz, &tm);
300 1.31 christos if (t != *tp) {
301 1.17 mlelstv (void) fflush(stdout);
302 1.17 mlelstv (void) fprintf(stderr, "\n%s: ", progname);
303 1.17 mlelstv (void) fprintf(stderr, tformat(), *tp);
304 1.17 mlelstv (void) fprintf(stderr, " ->");
305 1.17 mlelstv (void) fprintf(stderr, " year=%d", tmp->tm_year);
306 1.17 mlelstv (void) fprintf(stderr, " mon=%d", tmp->tm_mon);
307 1.17 mlelstv (void) fprintf(stderr, " mday=%d", tmp->tm_mday);
308 1.17 mlelstv (void) fprintf(stderr, " hour=%d", tmp->tm_hour);
309 1.17 mlelstv (void) fprintf(stderr, " min=%d", tmp->tm_min);
310 1.17 mlelstv (void) fprintf(stderr, " sec=%d", tmp->tm_sec);
311 1.17 mlelstv (void) fprintf(stderr, " isdst=%d", tmp->tm_isdst);
312 1.17 mlelstv (void) fprintf(stderr, " -> ");
313 1.17 mlelstv (void) fprintf(stderr, tformat(), t);
314 1.17 mlelstv (void) fprintf(stderr, "\n");
315 1.36 christos errout = true;
316 1.17 mlelstv }
317 1.17 mlelstv }
318 1.17 mlelstv return tmp;
319 1.17 mlelstv }
320 1.17 mlelstv #endif /* !defined TYPECHECK */
321 1.17 mlelstv
322 1.17 mlelstv static void
323 1.26 christos abbrok(const char *const abbrp, const char *const zone)
324 1.17 mlelstv {
325 1.26 christos const char *cp;
326 1.26 christos const char *wp;
327 1.17 mlelstv
328 1.17 mlelstv if (warned)
329 1.17 mlelstv return;
330 1.17 mlelstv cp = abbrp;
331 1.42 christos while (is_alpha(*cp) || is_digit(*cp) || *cp == '-' || *cp == '+')
332 1.17 mlelstv ++cp;
333 1.53 christos if (*cp)
334 1.53 christos wp = _("has characters other than ASCII alphanumerics, '-' or '+'");
335 1.53 christos else if (cp - abbrp < 3)
336 1.42 christos wp = _("has fewer than 3 characters");
337 1.17 mlelstv else if (cp - abbrp > 6)
338 1.42 christos wp = _("has more than 6 characters");
339 1.42 christos else
340 1.17 mlelstv return;
341 1.17 mlelstv (void) fflush(stdout);
342 1.17 mlelstv (void) fprintf(stderr,
343 1.17 mlelstv _("%s: warning: zone \"%s\" abbreviation \"%s\" %s\n"),
344 1.17 mlelstv progname, zone, abbrp, wp);
345 1.36 christos warned = errout = true;
346 1.36 christos }
347 1.36 christos
348 1.36 christos /* Return a time zone abbreviation. If the abbreviation needs to be
349 1.36 christos saved, use *BUF (of size *BUFALLOC) to save it, and return the
350 1.36 christos abbreviation in the possibly-reallocated *BUF. Otherwise, just
351 1.36 christos return the abbreviation. Get the abbreviation from TMP.
352 1.36 christos Exit on memory allocation failure. */
353 1.36 christos static char const *
354 1.36 christos saveabbr(char **buf, size_t *bufalloc, struct tm const *tmp)
355 1.36 christos {
356 1.36 christos char const *ab = abbr(tmp);
357 1.36 christos if (HAVE_LOCALTIME_RZ)
358 1.36 christos return ab;
359 1.36 christos else {
360 1.36 christos size_t ablen = strlen(ab);
361 1.36 christos if (*bufalloc <= ablen) {
362 1.36 christos free(*buf);
363 1.36 christos
364 1.36 christos /* Make the new buffer at least twice as long as the
365 1.36 christos old, to avoid O(N**2) behavior on repeated calls. */
366 1.36 christos *bufalloc = sumsize(*bufalloc, ablen + 1);
367 1.44 christos *buf = xmalloc(*bufalloc);
368 1.36 christos }
369 1.36 christos return strcpy(*buf, ab);
370 1.36 christos }
371 1.36 christos }
372 1.36 christos
373 1.36 christos static void
374 1.36 christos close_file(FILE *stream)
375 1.36 christos {
376 1.36 christos char const *e = (ferror(stream) ? _("I/O error")
377 1.36 christos : fclose(stream) != 0 ? strerror(errno) : NULL);
378 1.36 christos if (e) {
379 1.36 christos errx(EXIT_FAILURE, "%s", e);
380 1.36 christos }
381 1.17 mlelstv }
382 1.17 mlelstv
383 1.24 joerg __dead static void
384 1.26 christos usage(FILE *const stream, const int status)
385 1.17 mlelstv {
386 1.17 mlelstv (void) fprintf(stream,
387 1.50 christos _("%s: usage: %s OPTIONS TIMEZONE ...\n"
388 1.44 christos "Options include:\n"
389 1.44 christos " -c [L,]U Start at year L (default -500), end before year U (default 2500)\n"
390 1.44 christos " -t [L,]U Start at time L, end before time U (in seconds since 1970)\n"
391 1.44 christos " -i List transitions briefly (format is experimental)\n" \
392 1.44 christos " -v List transitions verbosely\n"
393 1.44 christos " -V List transitions a bit less verbosely\n"
394 1.44 christos " --help Output this help\n"
395 1.44 christos " --version Output version info\n"
396 1.29 christos "\n"
397 1.29 christos "Report bugs to %s.\n"),
398 1.44 christos progname, progname, REPORT_BUGS_TO);
399 1.36 christos if (status == EXIT_SUCCESS)
400 1.36 christos close_file(stream);
401 1.17 mlelstv exit(status);
402 1.17 mlelstv }
403 1.1 jtc
404 1.1 jtc int
405 1.26 christos main(int argc, char *argv[])
406 1.26 christos {
407 1.36 christos /* These are static so that they're initially zero. */
408 1.36 christos static char * abbrev;
409 1.36 christos static size_t abbrevsize;
410 1.36 christos
411 1.26 christos int i;
412 1.36 christos bool vflag;
413 1.36 christos bool Vflag;
414 1.26 christos char * cutarg;
415 1.29 christos char * cuttimes;
416 1.26 christos time_t cutlotime;
417 1.26 christos time_t cuthitime;
418 1.26 christos time_t now;
419 1.44 christos bool iflag = false;
420 1.1 jtc
421 1.29 christos cutlotime = absolute_min_time;
422 1.29 christos cuthitime = absolute_max_time;
423 1.17 mlelstv #if HAVE_GETTEXT
424 1.17 mlelstv (void) setlocale(LC_ALL, "");
425 1.3 jtc #ifdef TZ_DOMAINDIR
426 1.3 jtc (void) bindtextdomain(TZ_DOMAIN, TZ_DOMAINDIR);
427 1.17 mlelstv #endif /* defined TEXTDOMAINDIR */
428 1.3 jtc (void) textdomain(TZ_DOMAIN);
429 1.17 mlelstv #endif /* HAVE_GETTEXT */
430 1.1 jtc progname = argv[0];
431 1.14 kleink for (i = 1; i < argc; ++i)
432 1.14 kleink if (strcmp(argv[i], "--version") == 0) {
433 1.28 christos (void) printf("zdump %s%s\n", PKGVERSION, TZVERSION);
434 1.36 christos return EXIT_SUCCESS;
435 1.17 mlelstv } else if (strcmp(argv[i], "--help") == 0) {
436 1.22 christos usage(stdout, EXIT_SUCCESS);
437 1.14 kleink }
438 1.36 christos vflag = Vflag = false;
439 1.29 christos cutarg = cuttimes = NULL;
440 1.29 christos for (;;)
441 1.44 christos switch (getopt(argc, argv, "c:it:vV")) {
442 1.29 christos case 'c': cutarg = optarg; break;
443 1.29 christos case 't': cuttimes = optarg; break;
444 1.44 christos case 'i': iflag = true; break;
445 1.36 christos case 'v': vflag = true; break;
446 1.36 christos case 'V': Vflag = true; break;
447 1.29 christos case -1:
448 1.29 christos if (! (optind == argc - 1 && strcmp(argv[optind], "=") == 0))
449 1.29 christos goto arg_processing_done;
450 1.29 christos /* Fall through. */
451 1.29 christos default:
452 1.29 christos usage(stderr, EXIT_FAILURE);
453 1.29 christos }
454 1.29 christos arg_processing_done:;
455 1.29 christos
456 1.44 christos if (iflag | vflag | Vflag) {
457 1.29 christos intmax_t lo;
458 1.29 christos intmax_t hi;
459 1.32 christos char *loend, *hiend;
460 1.30 christos intmax_t cutloyear = ZDUMP_LO_YEAR;
461 1.30 christos intmax_t cuthiyear = ZDUMP_HI_YEAR;
462 1.17 mlelstv if (cutarg != NULL) {
463 1.32 christos lo = strtoimax(cutarg, &loend, 10);
464 1.32 christos if (cutarg != loend && !*loend) {
465 1.32 christos hi = lo;
466 1.32 christos cuthiyear = hi;
467 1.32 christos } else if (cutarg != loend && *loend == ','
468 1.32 christos && (hi = strtoimax(loend + 1, &hiend, 10),
469 1.32 christos loend + 1 != hiend && !*hiend)) {
470 1.32 christos cutloyear = lo;
471 1.17 mlelstv cuthiyear = hi;
472 1.17 mlelstv } else {
473 1.36 christos fprintf(stderr, _("%s: wild -c argument %s\n"),
474 1.17 mlelstv progname, cutarg);
475 1.36 christos return EXIT_FAILURE;
476 1.17 mlelstv }
477 1.17 mlelstv }
478 1.29 christos if (cutarg != NULL || cuttimes == NULL) {
479 1.29 christos cutlotime = yeartot(cutloyear);
480 1.29 christos cuthitime = yeartot(cuthiyear);
481 1.29 christos }
482 1.29 christos if (cuttimes != NULL) {
483 1.32 christos lo = strtoimax(cuttimes, &loend, 10);
484 1.32 christos if (cuttimes != loend && !*loend) {
485 1.32 christos hi = lo;
486 1.29 christos if (hi < cuthitime) {
487 1.29 christos if (hi < absolute_min_time)
488 1.29 christos hi = absolute_min_time;
489 1.29 christos cuthitime = hi;
490 1.29 christos }
491 1.32 christos } else if (cuttimes != loend && *loend == ','
492 1.32 christos && (hi = strtoimax(loend + 1, &hiend, 10),
493 1.32 christos loend + 1 != hiend && !*hiend)) {
494 1.29 christos if (cutlotime < lo) {
495 1.29 christos if (absolute_max_time < lo)
496 1.29 christos lo = absolute_max_time;
497 1.29 christos cutlotime = lo;
498 1.29 christos }
499 1.29 christos if (hi < cuthitime) {
500 1.29 christos if (hi < absolute_min_time)
501 1.29 christos hi = absolute_min_time;
502 1.29 christos cuthitime = hi;
503 1.29 christos }
504 1.29 christos } else {
505 1.29 christos (void) fprintf(stderr,
506 1.29 christos _("%s: wild -t argument %s\n"),
507 1.29 christos progname, cuttimes);
508 1.36 christos return EXIT_FAILURE;
509 1.29 christos }
510 1.29 christos }
511 1.1 jtc }
512 1.36 christos gmtzinit();
513 1.44 christos INITIALIZE (now);
514 1.44 christos if (! (iflag | vflag | Vflag))
515 1.44 christos now = time(NULL);
516 1.1 jtc longest = 0;
517 1.36 christos for (i = optind; i < argc; i++) {
518 1.36 christos size_t arglen = strlen(argv[i]);
519 1.36 christos if (longest < arglen)
520 1.36 christos longest = arglen < INT_MAX ? arglen : INT_MAX;
521 1.36 christos }
522 1.1 jtc
523 1.1 jtc for (i = optind; i < argc; ++i) {
524 1.36 christos timezone_t tz = tzalloc(argv[i]);
525 1.36 christos char const *ab;
526 1.44 christos time_t t;
527 1.44 christos struct tm tm, newtm;
528 1.44 christos bool tm_ok;
529 1.44 christos
530 1.36 christos if (!tz) {
531 1.36 christos errx(EXIT_FAILURE, "%s", argv[i]);
532 1.36 christos }
533 1.44 christos if (! (iflag | vflag | Vflag)) {
534 1.36 christos show(tz, argv[i], now, false);
535 1.36 christos tzfree(tz);
536 1.1 jtc continue;
537 1.3 jtc }
538 1.36 christos warned = false;
539 1.17 mlelstv t = absolute_min_time;
540 1.44 christos if (! (iflag | Vflag)) {
541 1.36 christos show(tz, argv[i], t, true);
542 1.31 christos t += SECSPERDAY;
543 1.36 christos show(tz, argv[i], t, true);
544 1.29 christos }
545 1.17 mlelstv if (t < cutlotime)
546 1.17 mlelstv t = cutlotime;
547 1.48 christos INITIALIZE (ab);
548 1.44 christos tm_ok = my_localtime_rz(tz, &t, &tm) != NULL;
549 1.44 christos if (tm_ok) {
550 1.36 christos ab = saveabbr(&abbrev, &abbrevsize, &tm);
551 1.44 christos if (iflag) {
552 1.44 christos showtrans("\nTZ=%f", &tm, t, ab, argv[i]);
553 1.44 christos showtrans("-\t-\t%Q", &tm, t, ab, argv[i]);
554 1.44 christos }
555 1.44 christos } else
556 1.36 christos ab = NULL;
557 1.36 christos while (t < cuthitime) {
558 1.44 christos time_t newt = ((t < absolute_max_time - SECSPERDAY / 2
559 1.44 christos && t + SECSPERDAY / 2 < cuthitime)
560 1.44 christos ? t + SECSPERDAY / 2 : cuthitime);
561 1.44 christos struct tm *newtmp = localtime_rz(tz, &newt, &newtm);
562 1.44 christos bool newtm_ok = newtmp != NULL;
563 1.48 christos if (tm_ok != newtm_ok
564 1.48 christos || (tm_ok && (delta(&newtm, &tm) != newt - t
565 1.48 christos || newtm.tm_isdst != tm.tm_isdst
566 1.48 christos || strcmp(abbr(&newtm), ab) != 0))) {
567 1.36 christos newt = hunt(tz, argv[i], t, newt);
568 1.36 christos newtmp = localtime_rz(tz, &newt, &newtm);
569 1.44 christos newtm_ok = newtmp != NULL;
570 1.44 christos if (iflag)
571 1.44 christos showtrans("%Y-%m-%d\t%L\t%Q",
572 1.44 christos newtmp, newt, newtm_ok ?
573 1.44 christos abbr(&newtm) : NULL, argv[i]);
574 1.44 christos else {
575 1.44 christos show(tz, argv[i], newt - 1, true);
576 1.44 christos show(tz, argv[i], newt, true);
577 1.44 christos }
578 1.1 jtc }
579 1.1 jtc t = newt;
580 1.44 christos tm_ok = newtm_ok;
581 1.44 christos if (newtm_ok) {
582 1.44 christos ab = saveabbr(&abbrev, &abbrevsize, &newtm);
583 1.44 christos tm = newtm;
584 1.44 christos }
585 1.1 jtc }
586 1.44 christos if (! (iflag | Vflag)) {
587 1.29 christos t = absolute_max_time;
588 1.31 christos t -= SECSPERDAY;
589 1.36 christos show(tz, argv[i], t, true);
590 1.31 christos t += SECSPERDAY;
591 1.36 christos show(tz, argv[i], t, true);
592 1.29 christos }
593 1.36 christos tzfree(tz);
594 1.1 jtc }
595 1.36 christos close_file(stdout);
596 1.36 christos if (errout && (ferror(stderr) || fclose(stderr) != 0))
597 1.36 christos return EXIT_FAILURE;
598 1.36 christos return EXIT_SUCCESS;
599 1.17 mlelstv }
600 1.1 jtc
601 1.1 jtc static time_t
602 1.42 christos yeartot(intmax_t y)
603 1.17 mlelstv {
604 1.31 christos intmax_t myy, seconds, years;
605 1.29 christos time_t t;
606 1.17 mlelstv
607 1.17 mlelstv myy = EPOCH_YEAR;
608 1.17 mlelstv t = 0;
609 1.31 christos while (myy < y) {
610 1.31 christos if (SECSPER400YEARS_FITS && 400 <= y - myy) {
611 1.31 christos intmax_t diff400 = (y - myy) / 400;
612 1.31 christos if (INTMAX_MAX / SECSPER400YEARS < diff400)
613 1.31 christos return absolute_max_time;
614 1.31 christos seconds = diff400 * SECSPER400YEARS;
615 1.31 christos years = diff400 * 400;
616 1.31 christos } else {
617 1.17 mlelstv seconds = isleap(myy) ? SECSPERLYEAR : SECSPERNYEAR;
618 1.31 christos years = 1;
619 1.31 christos }
620 1.31 christos myy += years;
621 1.31 christos if (t > absolute_max_time - seconds)
622 1.31 christos return absolute_max_time;
623 1.31 christos t += seconds;
624 1.31 christos }
625 1.31 christos while (y < myy) {
626 1.31 christos if (SECSPER400YEARS_FITS && y + 400 <= myy && myy < 0) {
627 1.31 christos intmax_t diff400 = (myy - y) / 400;
628 1.31 christos if (INTMAX_MAX / SECSPER400YEARS < diff400)
629 1.31 christos return absolute_min_time;
630 1.31 christos seconds = diff400 * SECSPER400YEARS;
631 1.31 christos years = diff400 * 400;
632 1.17 mlelstv } else {
633 1.31 christos seconds = isleap(myy - 1) ? SECSPERLYEAR : SECSPERNYEAR;
634 1.31 christos years = 1;
635 1.17 mlelstv }
636 1.31 christos myy -= years;
637 1.31 christos if (t < absolute_min_time + seconds)
638 1.31 christos return absolute_min_time;
639 1.31 christos t -= seconds;
640 1.17 mlelstv }
641 1.17 mlelstv return t;
642 1.17 mlelstv }
643 1.17 mlelstv
644 1.17 mlelstv static time_t
645 1.36 christos hunt(timezone_t tz, char *name, time_t lot, time_t hit)
646 1.17 mlelstv {
647 1.36 christos static char * loab;
648 1.36 christos static size_t loabsize;
649 1.36 christos char const * ab;
650 1.17 mlelstv time_t t;
651 1.17 mlelstv struct tm lotm;
652 1.17 mlelstv struct tm tm;
653 1.44 christos bool lotm_ok = my_localtime_rz(tz, &lot, &lotm) != NULL;
654 1.44 christos bool tm_ok;
655 1.17 mlelstv
656 1.44 christos if (lotm_ok)
657 1.36 christos ab = saveabbr(&loab, &loabsize, &lotm);
658 1.36 christos else
659 1.36 christos ab = NULL;
660 1.17 mlelstv for ( ; ; ) {
661 1.29 christos time_t diff = hit - lot;
662 1.17 mlelstv if (diff < 2)
663 1.17 mlelstv break;
664 1.17 mlelstv t = lot;
665 1.17 mlelstv t += diff / 2;
666 1.1 jtc if (t <= lot)
667 1.1 jtc ++t;
668 1.1 jtc else if (t >= hit)
669 1.1 jtc --t;
670 1.44 christos tm_ok = my_localtime_rz(tz, &t, &tm) != NULL;
671 1.44 christos if (lotm_ok & tm_ok
672 1.44 christos ? (delta(&tm, &lotm) == t - lot
673 1.44 christos && tm.tm_isdst == lotm.tm_isdst
674 1.44 christos && strcmp(abbr(&tm), ab) == 0)
675 1.44 christos : lotm_ok == tm_ok) {
676 1.44 christos lot = t;
677 1.44 christos if (tm_ok)
678 1.44 christos lotm = tm;
679 1.1 jtc } else hit = t;
680 1.1 jtc }
681 1.1 jtc return hit;
682 1.1 jtc }
683 1.1 jtc
684 1.1 jtc /*
685 1.47 christos ** Thanks to Paul Eggert for logic used in delta_nonneg.
686 1.1 jtc */
687 1.1 jtc
688 1.29 christos static intmax_t
689 1.47 christos delta_nonneg(struct tm *newp, struct tm *oldp)
690 1.1 jtc {
691 1.29 christos intmax_t result;
692 1.29 christos int tmy;
693 1.1 jtc
694 1.1 jtc result = 0;
695 1.1 jtc for (tmy = oldp->tm_year; tmy < newp->tm_year; ++tmy)
696 1.17 mlelstv result += DAYSPERNYEAR + isleap_sum(tmy, TM_YEAR_BASE);
697 1.1 jtc result += newp->tm_yday - oldp->tm_yday;
698 1.1 jtc result *= HOURSPERDAY;
699 1.1 jtc result += newp->tm_hour - oldp->tm_hour;
700 1.1 jtc result *= MINSPERHOUR;
701 1.1 jtc result += newp->tm_min - oldp->tm_min;
702 1.1 jtc result *= SECSPERMIN;
703 1.1 jtc result += newp->tm_sec - oldp->tm_sec;
704 1.1 jtc return result;
705 1.1 jtc }
706 1.1 jtc
707 1.47 christos static intmax_t
708 1.47 christos delta(struct tm *newp, struct tm *oldp)
709 1.47 christos {
710 1.47 christos return (newp->tm_year < oldp->tm_year
711 1.47 christos ? -delta_nonneg(oldp, newp)
712 1.47 christos : delta_nonneg(newp, oldp));
713 1.47 christos }
714 1.47 christos
715 1.36 christos #ifndef TM_GMTOFF
716 1.36 christos /* Return A->tm_yday, adjusted to compare it fairly to B->tm_yday.
717 1.39 christos Assume A and B differ by at most one year. */
718 1.36 christos static int
719 1.36 christos adjusted_yday(struct tm const *a, struct tm const *b)
720 1.36 christos {
721 1.36 christos int yday = a->tm_yday;
722 1.36 christos if (b->tm_year < a->tm_year)
723 1.36 christos yday += 365 + isleap_sum(b->tm_year, TM_YEAR_BASE);
724 1.36 christos return yday;
725 1.36 christos }
726 1.36 christos #endif
727 1.36 christos
728 1.48 christos /* If A is the broken-down local time and B the broken-down UT for
729 1.48 christos the same instant, return A's UT offset in seconds, where positive
730 1.44 christos offsets are east of Greenwich. On failure, return LONG_MIN.
731 1.44 christos
732 1.46 christos If T is nonnull, *T is the timestamp that corresponds to A; call
733 1.44 christos my_gmtime_r and use its result instead of B. Otherwise, B is the
734 1.44 christos possibly nonnull result of an earlier call to my_gmtime_r. */
735 1.36 christos static long
736 1.44 christos gmtoff(struct tm const *a, time_t *t, struct tm const *b)
737 1.36 christos {
738 1.36 christos #ifdef TM_GMTOFF
739 1.36 christos return a->TM_GMTOFF;
740 1.36 christos #else
741 1.44 christos struct tm tm;
742 1.44 christos if (t)
743 1.44 christos b = my_gmtime_r(t, &tm);
744 1.36 christos if (! b)
745 1.36 christos return LONG_MIN;
746 1.36 christos else {
747 1.36 christos int ayday = adjusted_yday(a, b);
748 1.36 christos int byday = adjusted_yday(b, a);
749 1.36 christos int days = ayday - byday;
750 1.36 christos long hours = a->tm_hour - b->tm_hour + 24 * days;
751 1.36 christos long minutes = a->tm_min - b->tm_min + 60 * hours;
752 1.36 christos long seconds = a->tm_sec - b->tm_sec + 60 * minutes;
753 1.36 christos return seconds;
754 1.36 christos }
755 1.36 christos #endif
756 1.36 christos }
757 1.36 christos
758 1.1 jtc static void
759 1.36 christos show(timezone_t tz, char *zone, time_t t, bool v)
760 1.1 jtc {
761 1.26 christos struct tm * tmp;
762 1.36 christos struct tm * gmtmp;
763 1.36 christos struct tm tm, gmtm;
764 1.1 jtc
765 1.5 jtc (void) printf("%-*s ", (int) longest, zone);
766 1.1 jtc if (v) {
767 1.36 christos gmtmp = my_gmtime_r(&t, &gmtm);
768 1.36 christos if (gmtmp == NULL) {
769 1.36 christos printf(tformat(), t);
770 1.17 mlelstv } else {
771 1.36 christos dumptime(gmtmp);
772 1.31 christos (void) printf(" UT");
773 1.17 mlelstv }
774 1.17 mlelstv (void) printf(" = ");
775 1.17 mlelstv }
776 1.36 christos tmp = my_localtime_rz(tz, &t, &tm);
777 1.17 mlelstv dumptime(tmp);
778 1.17 mlelstv if (tmp != NULL) {
779 1.17 mlelstv if (*abbr(tmp) != '\0')
780 1.17 mlelstv (void) printf(" %s", abbr(tmp));
781 1.17 mlelstv if (v) {
782 1.44 christos long off = gmtoff(tmp, NULL, gmtmp);
783 1.17 mlelstv (void) printf(" isdst=%d", tmp->tm_isdst);
784 1.36 christos if (off != LONG_MIN)
785 1.36 christos (void) printf(" gmtoff=%ld", off);
786 1.17 mlelstv }
787 1.1 jtc }
788 1.1 jtc (void) printf("\n");
789 1.17 mlelstv if (tmp != NULL && *abbr(tmp) != '\0')
790 1.17 mlelstv abbrok(abbr(tmp), zone);
791 1.1 jtc }
792 1.1 jtc
793 1.48 christos #if HAVE_SNPRINTF
794 1.48 christos # define my_snprintf snprintf
795 1.48 christos #else
796 1.47 christos # include <stdarg.h>
797 1.47 christos
798 1.47 christos /* A substitute for snprintf that is good enough for zdump. */
799 1.48 christos static int ATTRIBUTE_FORMAT((printf, 3, 4))
800 1.48 christos my_snprintf(char *s, size_t size, char const *format, ...)
801 1.47 christos {
802 1.47 christos int n;
803 1.47 christos va_list args;
804 1.47 christos char const *arg;
805 1.47 christos size_t arglen, slen;
806 1.47 christos char buf[1024];
807 1.47 christos va_start(args, format);
808 1.47 christos if (strcmp(format, "%s") == 0) {
809 1.47 christos arg = va_arg(args, char const *);
810 1.47 christos arglen = strlen(arg);
811 1.47 christos } else {
812 1.47 christos n = vsprintf(buf, format, args);
813 1.51 christos if (n < 0) {
814 1.51 christos va_end(args);
815 1.47 christos return n;
816 1.51 christos }
817 1.47 christos arg = buf;
818 1.47 christos arglen = n;
819 1.47 christos }
820 1.47 christos slen = arglen < size ? arglen : size - 1;
821 1.47 christos memcpy(s, arg, slen);
822 1.47 christos s[slen] = '\0';
823 1.47 christos n = arglen <= INT_MAX ? arglen : -1;
824 1.47 christos va_end(args);
825 1.47 christos return n;
826 1.47 christos }
827 1.47 christos #endif
828 1.47 christos
829 1.44 christos /* Store into BUF, of size SIZE, a formatted local time taken from *TM.
830 1.44 christos Use ISO 8601 format +HH:MM:SS. Omit :SS if SS is zero, and omit
831 1.44 christos :MM too if MM is also zero.
832 1.44 christos
833 1.44 christos Return the length of the resulting string. If the string does not
834 1.44 christos fit, return the length that the string would have been if it had
835 1.44 christos fit; do not overrun the output buffer. */
836 1.44 christos static int
837 1.44 christos format_local_time(char *buf, size_t size, struct tm const *tm)
838 1.44 christos {
839 1.44 christos int ss = tm->tm_sec, mm = tm->tm_min, hh = tm->tm_hour;
840 1.44 christos return (ss
841 1.48 christos ? my_snprintf(buf, size, "%02d:%02d:%02d", hh, mm, ss)
842 1.44 christos : mm
843 1.48 christos ? my_snprintf(buf, size, "%02d:%02d", hh, mm)
844 1.48 christos : my_snprintf(buf, size, "%02d", hh));
845 1.44 christos }
846 1.44 christos
847 1.48 christos /* Store into BUF, of size SIZE, a formatted UT offset for the
848 1.44 christos localtime *TM corresponding to time T. Use ISO 8601 format
849 1.46 christos +HHMMSS, or -HHMMSS for timestamps west of Greenwich; use the
850 1.48 christos format -00 for unknown UT offsets. If the hour needs more than
851 1.46 christos two digits to represent, extend the length of HH as needed.
852 1.46 christos Otherwise, omit SS if SS is zero, and omit MM too if MM is also
853 1.46 christos zero.
854 1.44 christos
855 1.44 christos Return the length of the resulting string, or -1 if the result is
856 1.44 christos not representable as a string. If the string does not fit, return
857 1.44 christos the length that the string would have been if it had fit; do not
858 1.44 christos overrun the output buffer. */
859 1.44 christos static int
860 1.44 christos format_utc_offset(char *buf, size_t size, struct tm const *tm, time_t t)
861 1.44 christos {
862 1.44 christos long off = gmtoff(tm, &t, NULL);
863 1.44 christos char sign = ((off < 0
864 1.44 christos || (off == 0
865 1.44 christos && (*abbr(tm) == '-' || strcmp(abbr(tm), "zzz") == 0)))
866 1.44 christos ? '-' : '+');
867 1.44 christos long hh;
868 1.44 christos int mm, ss;
869 1.44 christos if (off < 0)
870 1.44 christos {
871 1.44 christos if (off == LONG_MIN)
872 1.44 christos return -1;
873 1.44 christos off = -off;
874 1.44 christos }
875 1.44 christos ss = off % 60;
876 1.44 christos mm = off / 60 % 60;
877 1.44 christos hh = off / 60 / 60;
878 1.46 christos return (ss || 100 <= hh
879 1.48 christos ? my_snprintf(buf, size, "%c%02ld%02d%02d", sign, hh, mm, ss)
880 1.44 christos : mm
881 1.48 christos ? my_snprintf(buf, size, "%c%02ld%02d", sign, hh, mm)
882 1.48 christos : my_snprintf(buf, size, "%c%02ld", sign, hh));
883 1.44 christos }
884 1.44 christos
885 1.44 christos /* Store into BUF (of size SIZE) a quoted string representation of P.
886 1.44 christos If the representation's length is less than SIZE, return the
887 1.44 christos length; the representation is not null terminated. Otherwise
888 1.44 christos return SIZE, to indicate that BUF is too small. */
889 1.44 christos static size_t
890 1.44 christos format_quoted_string(char *buf, size_t size, char const *p)
891 1.44 christos {
892 1.44 christos char *b = buf;
893 1.44 christos size_t s = size;
894 1.44 christos if (!s)
895 1.44 christos return size;
896 1.44 christos *b++ = '"', s--;
897 1.44 christos for (;;) {
898 1.44 christos char c = *p++;
899 1.44 christos if (s <= 1)
900 1.44 christos return size;
901 1.44 christos switch (c) {
902 1.44 christos default: *b++ = c, s--; continue;
903 1.44 christos case '\0': *b++ = '"', s--; return size - s;
904 1.44 christos case '"': case '\\': break;
905 1.44 christos case ' ': c = 's'; break;
906 1.44 christos case '\f': c = 'f'; break;
907 1.44 christos case '\n': c = 'n'; break;
908 1.44 christos case '\r': c = 'r'; break;
909 1.44 christos case '\t': c = 't'; break;
910 1.44 christos case '\v': c = 'v'; break;
911 1.44 christos }
912 1.44 christos *b++ = '\\', *b++ = c, s -= 2;
913 1.44 christos }
914 1.44 christos }
915 1.44 christos
916 1.46 christos /* Store into BUF (of size SIZE) a timestamp formatted by TIME_FMT.
917 1.44 christos TM is the broken-down time, T the seconds count, AB the time zone
918 1.44 christos abbreviation, and ZONE_NAME the zone name. Return true if
919 1.44 christos successful, false if the output would require more than SIZE bytes.
920 1.44 christos TIME_FMT uses the same format that strftime uses, with these
921 1.44 christos additions:
922 1.44 christos
923 1.44 christos %f zone name
924 1.44 christos %L local time as per format_local_time
925 1.48 christos %Q like "U\t%Z\tD" where U is the UT offset as for format_utc_offset
926 1.44 christos and D is the isdst flag; except omit D if it is zero, omit %Z if
927 1.44 christos it equals U, quote and escape %Z if it contains nonalphabetics,
928 1.44 christos and omit any trailing tabs. */
929 1.44 christos
930 1.44 christos static bool
931 1.44 christos istrftime(char *buf, size_t size, char const *time_fmt,
932 1.44 christos struct tm const *tm, time_t t, char const *ab, char const *zone_name)
933 1.44 christos {
934 1.44 christos char *b = buf;
935 1.44 christos size_t s = size;
936 1.44 christos char const *f = time_fmt, *p;
937 1.44 christos
938 1.44 christos for (p = f; ; p++)
939 1.44 christos if (*p == '%' && p[1] == '%')
940 1.44 christos p++;
941 1.44 christos else if (!*p
942 1.44 christos || (*p == '%'
943 1.44 christos && (p[1] == 'f' || p[1] == 'L' || p[1] == 'Q'))) {
944 1.44 christos size_t formatted_len;
945 1.44 christos size_t f_prefix_len = p - f;
946 1.44 christos size_t f_prefix_copy_size = p - f + 2;
947 1.44 christos char fbuf[100];
948 1.44 christos bool oversized = sizeof fbuf <= f_prefix_copy_size;
949 1.44 christos char *f_prefix_copy = oversized ? xmalloc(f_prefix_copy_size) : fbuf;
950 1.44 christos memcpy(f_prefix_copy, f, f_prefix_len);
951 1.44 christos strcpy(f_prefix_copy + f_prefix_len, "X");
952 1.44 christos formatted_len = strftime(b, s, f_prefix_copy, tm);
953 1.44 christos if (oversized)
954 1.44 christos free(f_prefix_copy);
955 1.44 christos if (formatted_len == 0)
956 1.44 christos return false;
957 1.44 christos formatted_len--;
958 1.44 christos b += formatted_len, s -= formatted_len;
959 1.44 christos if (!*p++)
960 1.44 christos break;
961 1.44 christos switch (*p) {
962 1.44 christos case 'f':
963 1.44 christos formatted_len = format_quoted_string(b, s, zone_name);
964 1.44 christos break;
965 1.44 christos case 'L':
966 1.44 christos formatted_len = format_local_time(b, s, tm);
967 1.44 christos break;
968 1.44 christos case 'Q':
969 1.44 christos {
970 1.44 christos bool show_abbr;
971 1.44 christos int offlen = format_utc_offset(b, s, tm, t);
972 1.44 christos if (! (0 <= offlen && (size_t)offlen < s))
973 1.44 christos return false;
974 1.44 christos show_abbr = strcmp(b, ab) != 0;
975 1.44 christos b += offlen, s -= offlen;
976 1.44 christos if (show_abbr) {
977 1.44 christos char const *abp;
978 1.44 christos size_t len;
979 1.44 christos if (s <= 1)
980 1.44 christos return false;
981 1.44 christos *b++ = '\t', s--;
982 1.44 christos for (abp = ab; is_alpha(*abp); abp++)
983 1.44 christos continue;
984 1.44 christos len = (!*abp && *ab
985 1.48 christos ? (size_t)my_snprintf(b, s, "%s", ab)
986 1.44 christos : format_quoted_string(b, s, ab));
987 1.44 christos if (s <= len)
988 1.44 christos return false;
989 1.44 christos b += len, s -= len;
990 1.44 christos }
991 1.48 christos formatted_len
992 1.48 christos = (tm->tm_isdst
993 1.48 christos ? my_snprintf(b, s, &"\t\t%d"[show_abbr], tm->tm_isdst)
994 1.48 christos : 0);
995 1.44 christos }
996 1.44 christos break;
997 1.44 christos }
998 1.46 christos if (s <= formatted_len)
999 1.44 christos return false;
1000 1.44 christos b += formatted_len, s -= formatted_len;
1001 1.44 christos f = p + 1;
1002 1.44 christos }
1003 1.44 christos *b = '\0';
1004 1.44 christos return true;
1005 1.44 christos }
1006 1.44 christos
1007 1.44 christos /* Show a time transition. */
1008 1.44 christos static void
1009 1.44 christos showtrans(char const *time_fmt, struct tm const *tm, time_t t, char const *ab,
1010 1.44 christos char const *zone_name)
1011 1.44 christos {
1012 1.44 christos if (!tm) {
1013 1.44 christos printf(tformat(), t);
1014 1.44 christos putchar('\n');
1015 1.44 christos } else {
1016 1.44 christos char stackbuf[1000];
1017 1.44 christos size_t size = sizeof stackbuf;
1018 1.44 christos char *buf = stackbuf;
1019 1.44 christos char *bufalloc = NULL;
1020 1.44 christos while (! istrftime(buf, size, time_fmt, tm, t, ab, zone_name)) {
1021 1.44 christos size = sumsize(size, size);
1022 1.44 christos free(bufalloc);
1023 1.44 christos buf = bufalloc = xmalloc(size);
1024 1.44 christos }
1025 1.44 christos puts(buf);
1026 1.44 christos free(bufalloc);
1027 1.44 christos }
1028 1.44 christos }
1029 1.44 christos
1030 1.9 mycroft static const char *
1031 1.36 christos abbr(struct tm const *tmp)
1032 1.1 jtc {
1033 1.36 christos #ifdef TM_ZONE
1034 1.36 christos return tmp->TM_ZONE;
1035 1.36 christos #else
1036 1.47 christos # if HAVE_TZNAME
1037 1.47 christos if (0 <= tmp->tm_isdst && tzname[0 < tmp->tm_isdst])
1038 1.47 christos return tzname[0 < tmp->tm_isdst];
1039 1.47 christos # endif
1040 1.47 christos return "";
1041 1.36 christos #endif
1042 1.1 jtc }
1043 1.17 mlelstv
1044 1.17 mlelstv /*
1045 1.17 mlelstv ** The code below can fail on certain theoretical systems;
1046 1.17 mlelstv ** it works on all known real-world systems as of 2004-12-30.
1047 1.17 mlelstv */
1048 1.17 mlelstv
1049 1.17 mlelstv static const char *
1050 1.17 mlelstv tformat(void)
1051 1.17 mlelstv {
1052 1.17 mlelstv if (0 > (time_t) -1) { /* signed */
1053 1.29 christos if (sizeof (time_t) == sizeof (intmax_t))
1054 1.29 christos return "%"PRIdMAX;
1055 1.17 mlelstv if (sizeof (time_t) > sizeof (long))
1056 1.17 mlelstv return "%lld";
1057 1.17 mlelstv if (sizeof (time_t) > sizeof (int))
1058 1.17 mlelstv return "%ld";
1059 1.17 mlelstv return "%d";
1060 1.17 mlelstv }
1061 1.29 christos #ifdef PRIuMAX
1062 1.29 christos if (sizeof (time_t) == sizeof (uintmax_t))
1063 1.29 christos return "%"PRIuMAX;
1064 1.29 christos #endif
1065 1.17 mlelstv if (sizeof (time_t) > sizeof (unsigned long))
1066 1.17 mlelstv return "%llu";
1067 1.17 mlelstv if (sizeof (time_t) > sizeof (unsigned int))
1068 1.17 mlelstv return "%lu";
1069 1.17 mlelstv return "%u";
1070 1.17 mlelstv }
1071 1.17 mlelstv
1072 1.17 mlelstv static void
1073 1.26 christos dumptime(const struct tm *timeptr)
1074 1.17 mlelstv {
1075 1.47 christos static const char wday_name[][4] = {
1076 1.17 mlelstv "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
1077 1.17 mlelstv };
1078 1.47 christos static const char mon_name[][4] = {
1079 1.17 mlelstv "Jan", "Feb", "Mar", "Apr", "May", "Jun",
1080 1.17 mlelstv "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
1081 1.17 mlelstv };
1082 1.26 christos const char * wn;
1083 1.26 christos const char * mn;
1084 1.26 christos int lead;
1085 1.26 christos int trail;
1086 1.17 mlelstv
1087 1.17 mlelstv if (timeptr == NULL) {
1088 1.36 christos printf("NULL");
1089 1.17 mlelstv return;
1090 1.17 mlelstv }
1091 1.17 mlelstv /*
1092 1.36 christos ** The packaged localtime_rz and gmtime_r never put out-of-range
1093 1.17 mlelstv ** values in tm_wday or tm_mon, but since this code might be compiled
1094 1.17 mlelstv ** with other (perhaps experimental) versions, paranoia is in order.
1095 1.17 mlelstv */
1096 1.17 mlelstv if (timeptr->tm_wday < 0 || timeptr->tm_wday >=
1097 1.17 mlelstv (int) (sizeof wday_name / sizeof wday_name[0]))
1098 1.17 mlelstv wn = "???";
1099 1.17 mlelstv else wn = wday_name[timeptr->tm_wday];
1100 1.17 mlelstv if (timeptr->tm_mon < 0 || timeptr->tm_mon >=
1101 1.17 mlelstv (int) (sizeof mon_name / sizeof mon_name[0]))
1102 1.17 mlelstv mn = "???";
1103 1.17 mlelstv else mn = mon_name[timeptr->tm_mon];
1104 1.47 christos printf("%s %s%3d %.2d:%.2d:%.2d ",
1105 1.17 mlelstv wn, mn,
1106 1.17 mlelstv timeptr->tm_mday, timeptr->tm_hour,
1107 1.17 mlelstv timeptr->tm_min, timeptr->tm_sec);
1108 1.17 mlelstv #define DIVISOR 10
1109 1.17 mlelstv trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR;
1110 1.17 mlelstv lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR +
1111 1.17 mlelstv trail / DIVISOR;
1112 1.17 mlelstv trail %= DIVISOR;
1113 1.17 mlelstv if (trail < 0 && lead > 0) {
1114 1.17 mlelstv trail += DIVISOR;
1115 1.17 mlelstv --lead;
1116 1.17 mlelstv } else if (lead < 0 && trail > 0) {
1117 1.17 mlelstv trail -= DIVISOR;
1118 1.17 mlelstv ++lead;
1119 1.17 mlelstv }
1120 1.17 mlelstv if (lead == 0)
1121 1.36 christos printf("%d", trail);
1122 1.36 christos else printf("%d%d", lead, ((trail < 0) ? -trail : trail));
1123 1.17 mlelstv }
1124