3 static char elsieid
[] = "@(#)zic.c 7.101";
4 #endif /* !defined NOID */
5 #endif /* !defined lint */
11 #include "sys/stat.h" /* for umask manifest constants */
12 #endif /* defined unix */
15 ** On some ancient hosts, predicates like `isspace(C)' are defined
16 ** only if isascii(C) || C == EOF. Modern hosts obey the C Standard,
17 ** which says they are defined only if C == ((unsigned char) C) || C == EOF.
18 ** Neither the C Standard nor Posix require that `isascii' exist.
19 ** For portability, we check both ancient and modern requirements.
20 ** If isascii is not defined, the isascii check succeeds trivially.
28 const char * r_filename
;
32 int r_loyear
; /* for example, 1986 */
33 int r_hiyear
; /* for example, 1986 */
34 const char * r_yrtype
;
36 int r_month
; /* 0..11 */
38 int r_dycode
; /* see below */
42 long r_tod
; /* time from midnight */
43 int r_todisstd
; /* above is standard time if TRUE */
44 /* or wall clock time if FALSE */
45 int r_todisgmt
; /* above is GMT if TRUE */
46 /* or local time if FALSE */
47 long r_stdoff
; /* offset from standard time */
48 const char * r_abbrvar
; /* variable part of abbreviation */
50 int r_todo
; /* a rule to do (used in outzone) */
51 time_t r_temp
; /* used in outzone */
55 ** r_dycode r_dayofmonth r_wday
58 #define DC_DOM 0 /* 1..31 */ /* unused */
59 #define DC_DOWGEQ 1 /* 1..31 */ /* 0..6 (Sun..Sat) */
60 #define DC_DOWLEQ 2 /* 1..31 */ /* 0..6 (Sun..Sat) */
63 const char * z_filename
;
69 const char * z_format
;
73 struct rule
* z_rules
;
76 struct rule z_untilrule
;
80 extern int getopt
P((int argc
, char * const argv
[],
81 const char * options
));
82 extern int link
P((const char * fromname
, const char * toname
));
86 static void addtt
P((time_t starttime
, int type
));
87 static int addtype
P((long gmtoff
, const char * abbr
, int isdst
,
88 int ttisstd
, int ttisgmt
));
89 static void leapadd
P((time_t t
, int positive
, int rolling
, int count
));
90 static void adjleap
P((void));
91 static void associate
P((void));
92 static int ciequal
P((const char * ap
, const char * bp
));
93 static void convert
P((long val
, char * buf
));
94 static void dolink
P((const char * fromfile
, const char * tofile
));
95 static void doabbr
P((char * abbr
, const char * format
,
96 const char * letters
, int isdst
));
97 static void eat
P((const char * name
, int num
));
98 static void eats
P((const char * name
, int num
,
99 const char * rname
, int rnum
));
100 static long eitol
P((int i
));
101 static void error
P((const char * message
));
102 static char ** getfields
P((char * buf
));
103 static long gethms
P((const char * string
, const char * errstrng
,
105 static void infile
P((const char * filename
));
106 static void inleap
P((char ** fields
, int nfields
));
107 static void inlink
P((char ** fields
, int nfields
));
108 static void inrule
P((char ** fields
, int nfields
));
109 static int inzcont
P((char ** fields
, int nfields
));
110 static int inzone
P((char ** fields
, int nfields
));
111 static int inzsub
P((char ** fields
, int nfields
, int iscont
));
112 static int itsabbr
P((const char * abbr
, const char * word
));
113 static int itsdir
P((const char * name
));
114 static int lowerit
P((int c
));
115 static char * memcheck
P((char * tocheck
));
116 static int mkdirs
P((char * filename
));
117 static void newabbr
P((const char * abbr
));
118 static long oadd
P((long t1
, long t2
));
119 static void outzone
P((const struct zone
* zp
, int ntzones
));
120 static void puttzcode
P((long code
, FILE * fp
));
121 static int rcomp
P((const void * leftp
, const void * rightp
));
122 static time_t rpytime
P((const struct rule
* rp
, int wantedy
));
123 static void rulesub
P((struct rule
* rp
,
124 const char * loyearp
, const char * hiyearp
,
125 const char * typep
, const char * monthp
,
126 const char * dayp
, const char * timep
));
127 static void setboundaries
P((void));
128 static time_t tadd
P((time_t t1
, long t2
));
129 static void usage
P((void));
130 static void writezone
P((const char * name
));
131 static int yearistype
P((int year
, const char * type
));
133 #if !(HAVE_STRERROR - 0)
134 static char * strerror
P((int));
135 #endif /* !(HAVE_STRERROR - 0) */
139 static const char * filename
;
142 static time_t max_time
;
144 static int max_year_representable
;
145 static time_t min_time
;
147 static int min_year_representable
;
149 static const char * rfilename
;
151 static const char * progname
;
165 ** Which fields are which on a Zone line.
173 #define ZF_TILMONTH 6
176 #define ZONE_MINFIELDS 5
177 #define ZONE_MAXFIELDS 9
180 ** Which fields are which on a Zone continuation line.
186 #define ZFC_TILYEAR 3
187 #define ZFC_TILMONTH 4
189 #define ZFC_TILTIME 6
190 #define ZONEC_MINFIELDS 3
191 #define ZONEC_MAXFIELDS 7
194 ** Which files are which on a Rule line.
206 #define RULE_FIELDS 10
209 ** Which fields are which on a Link line.
214 #define LINK_FIELDS 3
217 ** Which fields are which on a Leap line.
226 #define LEAP_FIELDS 7
236 static struct rule
* rules
;
237 static int nrules
; /* number of rules */
239 static struct zone
* zones
;
240 static int nzones
; /* number of zones */
243 const char * l_filename
;
249 static struct link
* links
;
257 static struct lookup
const * byword
P((const char * string
,
258 const struct lookup
* lp
));
260 static struct lookup
const line_codes
[] = {
268 static struct lookup
const mon_names
[] = {
269 { "January", TM_JANUARY
},
270 { "February", TM_FEBRUARY
},
271 { "March", TM_MARCH
},
272 { "April", TM_APRIL
},
276 { "August", TM_AUGUST
},
277 { "September", TM_SEPTEMBER
},
278 { "October", TM_OCTOBER
},
279 { "November", TM_NOVEMBER
},
280 { "December", TM_DECEMBER
},
284 static struct lookup
const wday_names
[] = {
285 { "Sunday", TM_SUNDAY
},
286 { "Monday", TM_MONDAY
},
287 { "Tuesday", TM_TUESDAY
},
288 { "Wednesday", TM_WEDNESDAY
},
289 { "Thursday", TM_THURSDAY
},
290 { "Friday", TM_FRIDAY
},
291 { "Saturday", TM_SATURDAY
},
295 static struct lookup
const lasts
[] = {
296 { "last-Sunday", TM_SUNDAY
},
297 { "last-Monday", TM_MONDAY
},
298 { "last-Tuesday", TM_TUESDAY
},
299 { "last-Wednesday", TM_WEDNESDAY
},
300 { "last-Thursday", TM_THURSDAY
},
301 { "last-Friday", TM_FRIDAY
},
302 { "last-Saturday", TM_SATURDAY
},
306 static struct lookup
const begin_years
[] = {
307 { "minimum", YR_MINIMUM
},
308 { "maximum", YR_MAXIMUM
},
312 static struct lookup
const end_years
[] = {
313 { "minimum", YR_MINIMUM
},
314 { "maximum", YR_MAXIMUM
},
319 static struct lookup
const leap_types
[] = {
321 { "Stationary", FALSE
},
325 static const int len_months
[2][MONSPERYEAR
] = {
326 { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 },
327 { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
330 static const int len_years
[2] = {
331 DAYSPERNYEAR
, DAYSPERLYEAR
334 static struct attype
{
337 } attypes
[TZ_MAX_TIMES
];
338 static long gmtoffs
[TZ_MAX_TYPES
];
339 static char isdsts
[TZ_MAX_TYPES
];
340 static unsigned char abbrinds
[TZ_MAX_TYPES
];
341 static char ttisstds
[TZ_MAX_TYPES
];
342 static char ttisgmts
[TZ_MAX_TYPES
];
343 static char chars
[TZ_MAX_CHARS
];
344 static time_t trans
[TZ_MAX_LEAPS
];
345 static long corr
[TZ_MAX_LEAPS
];
346 static char roll
[TZ_MAX_LEAPS
];
349 ** Memory allocation.
357 const char *e
= strerror(errno
);
359 (void) fprintf(stderr
, _("%s: Memory exhausted: %s\n"),
361 (void) exit(EXIT_FAILURE
);
366 #define emalloc(size) memcheck(imalloc(size))
367 #define erealloc(ptr, size) memcheck(irealloc((ptr), (size)))
368 #define ecpyalloc(ptr) memcheck(icpyalloc(ptr))
369 #define ecatalloc(oldp, newp) memcheck(icatalloc((oldp), (newp)))
375 #if !(HAVE_STRERROR - 0)
380 extern char * sys_errlist
[];
383 return (errnum
> 0 && errnum
<= sys_nerr
) ?
384 sys_errlist
[errnum
] : _("Unknown system error");
386 #endif /* !(HAVE_STRERROR - 0) */
389 eats(name
, num
, rname
, rnum
)
390 const char * const name
;
392 const char * const rname
;
403 const char * const name
;
406 eats(name
, num
, (char *) NULL
, -1);
411 const char * const string
;
414 ** Match the format of "cc" to allow sh users to
415 ** zic ... 2>&1 | error -t "*" -v
418 (void) fprintf(stderr
, _("\"%s\", line %d: %s"),
419 filename
, linenum
, string
);
420 if (rfilename
!= NULL
)
421 (void) fprintf(stderr
, _(" (rule from \"%s\", line %d)"),
422 rfilename
, rlinenum
);
423 (void) fprintf(stderr
, "\n");
429 const char * const string
;
433 cp
= ecpyalloc(_("warning: "));
434 cp
= ecatalloc(cp
, string
);
443 (void) fprintf(stderr
, _("%s: usage is %s [ -s ] [ -v ] [ -l localtime ] [ -p posixrules ] \\\n\t[ -d directory ] [ -L leapseconds ] [ -y yearistype ] [ filename ... ]\n"),
445 (void) exit(EXIT_FAILURE
);
448 static const char * psxrules
;
449 static const char * lcltime
;
450 static const char * directory
;
451 static const char * leapsec
;
452 static const char * yitcommand
;
453 static int sflag
= FALSE
;
465 (void) umask(umask(S_IWGRP
| S_IWOTH
) | (S_IWGRP
| S_IWOTH
));
466 #endif /* defined unix */
468 (void) setlocale(LC_MESSAGES
, "");
470 (void) bindtextdomain(TZ_DOMAIN
, TZ_DOMAINDIR
);
471 #endif /* defined TEXTDOMAINDIR */
472 (void) textdomain(TZ_DOMAIN
);
473 #endif /* HAVE_GETTEXT - 0 */
475 while ((c
= getopt(argc
, argv
, "d:l:p:L:vsy:")) != EOF
&& c
!= -1)
480 if (directory
== NULL
)
483 (void) fprintf(stderr
,
484 _("%s: More than one -d option specified\n"),
486 (void) exit(EXIT_FAILURE
);
493 (void) fprintf(stderr
,
494 _("%s: More than one -l option specified\n"),
496 (void) exit(EXIT_FAILURE
);
500 if (psxrules
== NULL
)
503 (void) fprintf(stderr
,
504 _("%s: More than one -p option specified\n"),
506 (void) exit(EXIT_FAILURE
);
510 if (yitcommand
== NULL
)
513 (void) fprintf(stderr
,
514 _("%s: More than one -y option specified\n"),
516 (void) exit(EXIT_FAILURE
);
523 (void) fprintf(stderr
,
524 _("%s: More than one -L option specified\n"),
526 (void) exit(EXIT_FAILURE
);
536 if (optind
== argc
- 1 && strcmp(argv
[optind
], "=") == 0)
537 usage(); /* usage message by request */
538 if (directory
== NULL
)
540 if (yitcommand
== NULL
)
541 yitcommand
= "yearistype";
545 if (optind
< argc
&& leapsec
!= NULL
) {
550 for (i
= optind
; i
< argc
; ++i
)
553 (void) exit(EXIT_FAILURE
);
555 for (i
= 0; i
< nzones
; i
= j
) {
557 ** Find the next non-continuation zone entry.
559 for (j
= i
+ 1; j
< nzones
&& zones
[j
].z_name
== NULL
; ++j
)
561 outzone(&zones
[i
], j
- i
);
566 for (i
= 0; i
< nlinks
; ++i
) {
567 eat(links
[i
].l_filename
, links
[i
].l_linenum
);
568 dolink(links
[i
].l_from
, links
[i
].l_to
);
570 if (lcltime
!= NULL
) {
571 eat("command line", 1);
572 dolink(lcltime
, TZDEFAULT
);
574 if (psxrules
!= NULL
) {
575 eat("command line", 1);
576 dolink(psxrules
, TZDEFRULES
);
578 return (errors
== 0) ? EXIT_SUCCESS
: EXIT_FAILURE
;
582 dolink(fromfile
, tofile
)
583 const char * const fromfile
;
584 const char * const tofile
;
586 register char * fromname
;
587 register char * toname
;
589 if (fromfile
[0] == '/')
590 fromname
= ecpyalloc(fromfile
);
592 fromname
= ecpyalloc(directory
);
593 fromname
= ecatalloc(fromname
, "/");
594 fromname
= ecatalloc(fromname
, fromfile
);
596 if (tofile
[0] == '/')
597 toname
= ecpyalloc(tofile
);
599 toname
= ecpyalloc(directory
);
600 toname
= ecatalloc(toname
, "/");
601 toname
= ecatalloc(toname
, tofile
);
604 ** We get to be careful here since
605 ** there's a fair chance of root running us.
608 (void) remove(toname
);
609 if (link(fromname
, toname
) != 0) {
612 if (mkdirs(toname
) != 0)
613 (void) exit(EXIT_FAILURE
);
615 result
= link(fromname
, toname
);
616 #if (HAVE_SYMLINK - 0)
618 const char *s
= tofile
;
619 register char *symlinkcontents
= NULL
;
620 while ((s
= strchr(s
+1, '/')) != NULL
)
621 symlinkcontents
= ecatalloc(symlinkcontents
, "../");
622 symlinkcontents
= ecatalloc(symlinkcontents
, fromname
);
624 result
= unlink(toname
);
625 if (result
!= 0 && errno
!= ENOENT
) {
626 const char *e
= strerror(errno
);
628 (void) fprintf(stderr
,
629 _("%s: Can't unlink %s: %s\n"),
630 progname
, toname
, e
);
631 (void) exit(EXIT_FAILURE
);
634 result
= symlink(symlinkcontents
, toname
);
636 warning(_("hard link failed, symbolic link used"));
637 ifree(symlinkcontents
);
641 const char *e
= strerror(errno
);
643 (void) fprintf(stderr
,
644 _("%s: Can't link from %s to %s: %s\n"),
645 progname
, fromname
, toname
, e
);
646 (void) exit(EXIT_FAILURE
);
654 #define INT_MAX ((int) (((unsigned)~0)>>1))
655 #endif /* !defined INT_MAX */
658 #define INT_MIN ((int) ~(((unsigned)~0)>>1))
659 #endif /* !defined INT_MIN */
662 ** The tz file format currently allows at most 32-bit quantities.
663 ** This restriction should be removed before signed 32-bit values
664 ** wrap around in 2038, but unfortunately this will require a
665 ** change to the tz file format.
668 #define MAX_BITS_IN_FILE 32
669 #define TIME_T_BITS_IN_FILE ((TYPE_BIT(time_t) < MAX_BITS_IN_FILE) ? TYPE_BIT(time_t) : MAX_BITS_IN_FILE)
672 setboundaries
P((void))
674 if (TYPE_SIGNED(time_t)) {
675 min_time
= ~ (time_t) 0;
676 min_time
<<= TIME_T_BITS_IN_FILE
- 1;
677 max_time
= ~ (time_t) 0 - min_time
;
682 max_time
= 2 - sflag
;
683 max_time
<<= TIME_T_BITS_IN_FILE
- 1;
686 min_year
= TM_YEAR_BASE
+ gmtime(&min_time
)->tm_year
;
687 max_year
= TM_YEAR_BASE
+ gmtime(&max_time
)->tm_year
;
688 min_year_representable
= min_year
;
689 max_year_representable
= max_year
;
694 const char * const name
;
696 register char * myname
;
699 myname
= ecpyalloc(name
);
700 myname
= ecatalloc(myname
, "/.");
701 accres
= access(myname
, F_OK
);
707 ** Associate sets of rules with zones.
711 ** Sort by rule name.
719 return strcmp(((const struct rule
*) cp1
)->r_name
,
720 ((const struct rule
*) cp2
)->r_name
);
726 register struct zone
* zp
;
727 register struct rule
* rp
;
728 register int base
, out
;
732 (void) qsort((void *) rules
, (size_t) nrules
,
733 (size_t) sizeof *rules
, rcomp
);
734 for (i
= 0; i
< nrules
- 1; ++i
) {
735 if (strcmp(rules
[i
].r_name
,
736 rules
[i
+ 1].r_name
) != 0)
738 if (strcmp(rules
[i
].r_filename
,
739 rules
[i
+ 1].r_filename
) == 0)
741 eat(rules
[i
].r_filename
, rules
[i
].r_linenum
);
742 warning(_("same rule name in multiple files"));
743 eat(rules
[i
+ 1].r_filename
, rules
[i
+ 1].r_linenum
);
744 warning(_("same rule name in multiple files"));
745 for (j
= i
+ 2; j
< nrules
; ++j
) {
746 if (strcmp(rules
[i
].r_name
,
747 rules
[j
].r_name
) != 0)
749 if (strcmp(rules
[i
].r_filename
,
750 rules
[j
].r_filename
) == 0)
752 if (strcmp(rules
[i
+ 1].r_filename
,
753 rules
[j
].r_filename
) == 0)
760 for (i
= 0; i
< nzones
; ++i
) {
765 for (base
= 0; base
< nrules
; base
= out
) {
767 for (out
= base
+ 1; out
< nrules
; ++out
)
768 if (strcmp(rp
->r_name
, rules
[out
].r_name
) != 0)
770 for (i
= 0; i
< nzones
; ++i
) {
772 if (strcmp(zp
->z_rule
, rp
->r_name
) != 0)
775 zp
->z_nrules
= out
- base
;
778 for (i
= 0; i
< nzones
; ++i
) {
780 if (zp
->z_nrules
== 0) {
782 ** Maybe we have a local standard time offset.
784 eat(zp
->z_filename
, zp
->z_linenum
);
785 zp
->z_stdoff
= gethms(zp
->z_rule
, _("unruly zone"),
788 ** Note, though, that if there's no rule,
789 ** a '%s' in the format is a bad thing.
791 if (strchr(zp
->z_format
, '%') != 0)
792 error(_("%s in ruleless zone"));
796 (void) exit(EXIT_FAILURE
);
804 register char ** fields
;
806 register const struct lookup
* lp
;
807 register int nfields
;
808 register int wantcont
;
812 if (strcmp(name
, "-") == 0) {
813 name
= _("standard input");
815 } else if ((fp
= fopen(name
, "r")) == NULL
) {
816 const char *e
= strerror(errno
);
818 (void) fprintf(stderr
, _("%s: Can't open %s: %s\n"),
820 (void) exit(EXIT_FAILURE
);
823 for (num
= 1; ; ++num
) {
825 if (fgets(buf
, (int) sizeof buf
, fp
) != buf
)
827 cp
= strchr(buf
, '\n');
829 error(_("line too long"));
830 (void) exit(EXIT_FAILURE
);
833 fields
= getfields(buf
);
835 while (fields
[nfields
] != NULL
) {
838 if (strcmp(fields
[nfields
], "-") == 0)
839 fields
[nfields
] = &nada
;
844 } else if (wantcont
) {
845 wantcont
= inzcont(fields
, nfields
);
847 lp
= byword(fields
[0], line_codes
);
849 error(_("input line of unknown type"));
850 else switch ((int) (lp
->l_value
)) {
852 inrule(fields
, nfields
);
856 wantcont
= inzone(fields
, nfields
);
859 inlink(fields
, nfields
);
864 (void) fprintf(stderr
,
865 _("%s: Leap line in non leap seconds file %s\n"),
867 else inleap(fields
, nfields
);
870 default: /* "cannot happen" */
871 (void) fprintf(stderr
,
872 _("%s: panic: Invalid l_value %d\n"),
873 progname
, lp
->l_value
);
874 (void) exit(EXIT_FAILURE
);
877 ifree((char *) fields
);
880 (void) fprintf(stderr
, _("%s: Error reading %s\n"),
882 (void) exit(EXIT_FAILURE
);
884 if (fp
!= stdin
&& fclose(fp
)) {
885 const char *e
= strerror(errno
);
887 (void) fprintf(stderr
, _("%s: Error closing %s: %s\n"),
888 progname
, filename
, e
);
889 (void) exit(EXIT_FAILURE
);
892 error(_("expected continuation line not found"));
896 ** Convert a string of one of the forms
897 ** h -h hh:mm -hh:mm hh:mm:ss -hh:mm:ss
898 ** into a number of seconds.
899 ** A null string maps to zero.
900 ** Call error with errstring and return zero on errors.
904 gethms(string
, errstring
, signable
)
906 const char * const errstring
;
909 int hh
, mm
, ss
, sign
;
911 if (string
== NULL
|| *string
== '\0')
915 else if (*string
== '-') {
919 if (sscanf(string
, scheck(string
, "%d"), &hh
) == 1)
921 else if (sscanf(string
, scheck(string
, "%d:%d"), &hh
, &mm
) == 2)
923 else if (sscanf(string
, scheck(string
, "%d:%d:%d"),
924 &hh
, &mm
, &ss
) != 3) {
928 if ((hh
< 0 || hh
>= HOURSPERDAY
||
929 mm
< 0 || mm
>= MINSPERHOUR
||
930 ss
< 0 || ss
> SECSPERMIN
) &&
931 !(hh
== HOURSPERDAY
&& mm
== 0 && ss
== 0)) {
936 (eitol(hh
* MINSPERHOUR
+ mm
) *
937 eitol(SECSPERMIN
) + eitol(ss
));
941 inrule(fields
, nfields
)
942 register char ** const fields
;
945 static struct rule r
;
947 if (nfields
!= RULE_FIELDS
) {
948 error(_("wrong number of fields on Rule line"));
951 if (*fields
[RF_NAME
] == '\0') {
952 error(_("nameless rule"));
955 r
.r_filename
= filename
;
956 r
.r_linenum
= linenum
;
957 r
.r_stdoff
= gethms(fields
[RF_STDOFF
], _("invalid saved time"), TRUE
);
958 rulesub(&r
, fields
[RF_LOYEAR
], fields
[RF_HIYEAR
], fields
[RF_COMMAND
],
959 fields
[RF_MONTH
], fields
[RF_DAY
], fields
[RF_TOD
]);
960 r
.r_name
= ecpyalloc(fields
[RF_NAME
]);
961 r
.r_abbrvar
= ecpyalloc(fields
[RF_ABBRVAR
]);
962 rules
= (struct rule
*) (void *) erealloc((char *) rules
,
963 (int) ((nrules
+ 1) * sizeof *rules
));
968 inzone(fields
, nfields
)
969 register char ** const fields
;
975 if (nfields
< ZONE_MINFIELDS
|| nfields
> ZONE_MAXFIELDS
) {
976 error(_("wrong number of fields on Zone line"));
979 if (strcmp(fields
[ZF_NAME
], TZDEFAULT
) == 0 && lcltime
!= NULL
) {
980 buf
= erealloc(buf
, (int) (132 + strlen(TZDEFAULT
)));
982 _("\"Zone %s\" line and -l option are mutually exclusive"),
987 if (strcmp(fields
[ZF_NAME
], TZDEFRULES
) == 0 && psxrules
!= NULL
) {
988 buf
= erealloc(buf
, (int) (132 + strlen(TZDEFRULES
)));
990 _("\"Zone %s\" line and -p option are mutually exclusive"),
995 for (i
= 0; i
< nzones
; ++i
)
996 if (zones
[i
].z_name
!= NULL
&&
997 strcmp(zones
[i
].z_name
, fields
[ZF_NAME
]) == 0) {
998 buf
= erealloc(buf
, (int) (132 +
999 strlen(fields
[ZF_NAME
]) +
1000 strlen(zones
[i
].z_filename
)));
1002 _("duplicate zone name %s (file \"%s\", line %d)"),
1004 zones
[i
].z_filename
,
1005 zones
[i
].z_linenum
);
1009 return inzsub(fields
, nfields
, FALSE
);
1013 inzcont(fields
, nfields
)
1014 register char ** const fields
;
1017 if (nfields
< ZONEC_MINFIELDS
|| nfields
> ZONEC_MAXFIELDS
) {
1018 error(_("wrong number of fields on Zone continuation line"));
1021 return inzsub(fields
, nfields
, TRUE
);
1025 inzsub(fields
, nfields
, iscont
)
1026 register char ** const fields
;
1031 static struct zone z
;
1032 register int i_gmtoff
, i_rule
, i_format
;
1033 register int i_untilyear
, i_untilmonth
;
1034 register int i_untilday
, i_untiltime
;
1035 register int hasuntil
;
1038 i_gmtoff
= ZFC_GMTOFF
;
1040 i_format
= ZFC_FORMAT
;
1041 i_untilyear
= ZFC_TILYEAR
;
1042 i_untilmonth
= ZFC_TILMONTH
;
1043 i_untilday
= ZFC_TILDAY
;
1044 i_untiltime
= ZFC_TILTIME
;
1047 i_gmtoff
= ZF_GMTOFF
;
1049 i_format
= ZF_FORMAT
;
1050 i_untilyear
= ZF_TILYEAR
;
1051 i_untilmonth
= ZF_TILMONTH
;
1052 i_untilday
= ZF_TILDAY
;
1053 i_untiltime
= ZF_TILTIME
;
1054 z
.z_name
= ecpyalloc(fields
[ZF_NAME
]);
1056 z
.z_filename
= filename
;
1057 z
.z_linenum
= linenum
;
1058 z
.z_gmtoff
= gethms(fields
[i_gmtoff
], _("invalid UTC offset"), TRUE
);
1059 if ((cp
= strchr(fields
[i_format
], '%')) != 0) {
1060 if (*++cp
!= 's' || strchr(cp
, '%') != 0) {
1061 error(_("invalid abbreviation format"));
1065 z
.z_rule
= ecpyalloc(fields
[i_rule
]);
1066 z
.z_format
= ecpyalloc(fields
[i_format
]);
1067 hasuntil
= nfields
> i_untilyear
;
1069 z
.z_untilrule
.r_filename
= filename
;
1070 z
.z_untilrule
.r_linenum
= linenum
;
1071 rulesub(&z
.z_untilrule
,
1072 fields
[i_untilyear
],
1075 (nfields
> i_untilmonth
) ?
1076 fields
[i_untilmonth
] : "Jan",
1077 (nfields
> i_untilday
) ? fields
[i_untilday
] : "1",
1078 (nfields
> i_untiltime
) ? fields
[i_untiltime
] : "0");
1079 z
.z_untiltime
= rpytime(&z
.z_untilrule
,
1080 z
.z_untilrule
.r_loyear
);
1081 if (iscont
&& nzones
> 0 &&
1082 z
.z_untiltime
> min_time
&&
1083 z
.z_untiltime
< max_time
&&
1084 zones
[nzones
- 1].z_untiltime
> min_time
&&
1085 zones
[nzones
- 1].z_untiltime
< max_time
&&
1086 zones
[nzones
- 1].z_untiltime
>= z
.z_untiltime
) {
1087 error(_("Zone continuation line end time is not after end time of previous line"));
1091 zones
= (struct zone
*) (void *) erealloc((char *) zones
,
1092 (int) ((nzones
+ 1) * sizeof *zones
));
1093 zones
[nzones
++] = z
;
1095 ** If there was an UNTIL field on this line,
1096 ** there's more information about the zone on the next line.
1102 inleap(fields
, nfields
)
1103 register char ** const fields
;
1106 register const char * cp
;
1107 register const struct lookup
* lp
;
1109 int year
, month
, day
;
1113 if (nfields
!= LEAP_FIELDS
) {
1114 error(_("wrong number of fields on Leap line"));
1118 cp
= fields
[LP_YEAR
];
1119 if (sscanf(cp
, scheck(cp
, "%d"), &year
) != 1) {
1123 error(_("invalid leaping year"));
1129 i
= len_years
[isleap(j
)];
1133 i
= -len_years
[isleap(j
)];
1135 dayoff
= oadd(dayoff
, eitol(i
));
1137 if ((lp
= byword(fields
[LP_MONTH
], mon_names
)) == NULL
) {
1138 error(_("invalid month name"));
1141 month
= lp
->l_value
;
1143 while (j
!= month
) {
1144 i
= len_months
[isleap(year
)][j
];
1145 dayoff
= oadd(dayoff
, eitol(i
));
1148 cp
= fields
[LP_DAY
];
1149 if (sscanf(cp
, scheck(cp
, "%d"), &day
) != 1 ||
1150 day
<= 0 || day
> len_months
[isleap(year
)][month
]) {
1151 error(_("invalid day of month"));
1154 dayoff
= oadd(dayoff
, eitol(day
- 1));
1155 if (dayoff
< 0 && !TYPE_SIGNED(time_t)) {
1156 error(_("time before zero"));
1159 t
= (time_t) dayoff
* SECSPERDAY
;
1161 ** Cheap overflow check.
1163 if (t
/ SECSPERDAY
!= dayoff
) {
1164 error(_("time overflow"));
1167 tod
= gethms(fields
[LP_TIME
], _("invalid time of day"), FALSE
);
1168 cp
= fields
[LP_CORR
];
1170 register int positive
;
1173 if (strcmp(cp
, "") == 0) { /* infile() turns "-" into "" */
1176 } else if (strcmp(cp
, "--") == 0) {
1179 } else if (strcmp(cp
, "+") == 0) {
1182 } else if (strcmp(cp
, "++") == 0) {
1186 error(_("illegal CORRECTION field on Leap line"));
1189 if ((lp
= byword(fields
[LP_ROLL
], leap_types
)) == NULL
) {
1190 error(_("illegal Rolling/Stationary field on Leap line"));
1193 leapadd(tadd(t
, tod
), positive
, lp
->l_value
, count
);
1198 inlink(fields
, nfields
)
1199 register char ** const fields
;
1204 if (nfields
!= LINK_FIELDS
) {
1205 error(_("wrong number of fields on Link line"));
1208 if (*fields
[LF_FROM
] == '\0') {
1209 error(_("blank FROM field on Link line"));
1212 if (*fields
[LF_TO
] == '\0') {
1213 error(_("blank TO field on Link line"));
1216 l
.l_filename
= filename
;
1217 l
.l_linenum
= linenum
;
1218 l
.l_from
= ecpyalloc(fields
[LF_FROM
]);
1219 l
.l_to
= ecpyalloc(fields
[LF_TO
]);
1220 links
= (struct link
*) (void *) erealloc((char *) links
,
1221 (int) ((nlinks
+ 1) * sizeof *links
));
1222 links
[nlinks
++] = l
;
1226 rulesub(rp
, loyearp
, hiyearp
, typep
, monthp
, dayp
, timep
)
1227 register struct rule
* const rp
;
1228 const char * const loyearp
;
1229 const char * const hiyearp
;
1230 const char * const typep
;
1231 const char * const monthp
;
1232 const char * const dayp
;
1233 const char * const timep
;
1235 register const struct lookup
* lp
;
1236 register const char * cp
;
1240 if ((lp
= byword(monthp
, mon_names
)) == NULL
) {
1241 error(_("invalid month name"));
1244 rp
->r_month
= lp
->l_value
;
1245 rp
->r_todisstd
= FALSE
;
1246 rp
->r_todisgmt
= FALSE
;
1247 dp
= ecpyalloc(timep
);
1249 ep
= dp
+ strlen(dp
) - 1;
1250 switch (lowerit(*ep
)) {
1251 case 's': /* Standard */
1252 rp
->r_todisstd
= TRUE
;
1253 rp
->r_todisgmt
= FALSE
;
1256 case 'w': /* Wall */
1257 rp
->r_todisstd
= FALSE
;
1258 rp
->r_todisgmt
= FALSE
;
1261 case 'g': /* Greenwich */
1262 case 'u': /* Universal */
1263 case 'z': /* Zulu */
1264 rp
->r_todisstd
= TRUE
;
1265 rp
->r_todisgmt
= TRUE
;
1270 rp
->r_tod
= gethms(dp
, _("invalid time of day"), FALSE
);
1276 lp
= byword(cp
, begin_years
);
1277 if (lp
!= NULL
) switch ((int) lp
->l_value
) {
1279 rp
->r_loyear
= INT_MIN
;
1282 rp
->r_loyear
= INT_MAX
;
1284 default: /* "cannot happen" */
1285 (void) fprintf(stderr
,
1286 _("%s: panic: Invalid l_value %d\n"),
1287 progname
, lp
->l_value
);
1288 (void) exit(EXIT_FAILURE
);
1289 } else if (sscanf(cp
, scheck(cp
, "%d"), &rp
->r_loyear
) != 1) {
1290 error(_("invalid starting year"));
1293 if (rp
->r_loyear
< min_year_representable
)
1294 warning(_("starting year too low to be represented"));
1295 else if (rp
->r_loyear
> max_year_representable
)
1296 warning(_("starting year too high to be represented"));
1299 if ((lp
= byword(cp
, end_years
)) != NULL
) switch ((int) lp
->l_value
) {
1301 rp
->r_hiyear
= INT_MIN
;
1304 rp
->r_hiyear
= INT_MAX
;
1307 rp
->r_hiyear
= rp
->r_loyear
;
1309 default: /* "cannot happen" */
1310 (void) fprintf(stderr
,
1311 _("%s: panic: Invalid l_value %d\n"),
1312 progname
, lp
->l_value
);
1313 (void) exit(EXIT_FAILURE
);
1314 } else if (sscanf(cp
, scheck(cp
, "%d"), &rp
->r_hiyear
) != 1) {
1315 error(_("invalid ending year"));
1318 if (rp
->r_loyear
< min_year_representable
)
1319 warning(_("starting year too low to be represented"));
1320 else if (rp
->r_loyear
> max_year_representable
)
1321 warning(_("starting year too high to be represented"));
1323 if (rp
->r_loyear
> rp
->r_hiyear
) {
1324 error(_("starting year greater than ending year"));
1328 rp
->r_yrtype
= NULL
;
1330 if (rp
->r_loyear
== rp
->r_hiyear
) {
1331 error(_("typed single year"));
1334 rp
->r_yrtype
= ecpyalloc(typep
);
1336 if (rp
->r_loyear
< min_year
&& rp
->r_loyear
> 0)
1337 min_year
= rp
->r_loyear
;
1340 ** Accept things such as:
1346 dp
= ecpyalloc(dayp
);
1347 if ((lp
= byword(dp
, lasts
)) != NULL
) {
1348 rp
->r_dycode
= DC_DOWLEQ
;
1349 rp
->r_wday
= lp
->l_value
;
1350 rp
->r_dayofmonth
= len_months
[1][rp
->r_month
];
1352 if ((ep
= strchr(dp
, '<')) != 0)
1353 rp
->r_dycode
= DC_DOWLEQ
;
1354 else if ((ep
= strchr(dp
, '>')) != 0)
1355 rp
->r_dycode
= DC_DOWGEQ
;
1358 rp
->r_dycode
= DC_DOM
;
1360 if (rp
->r_dycode
!= DC_DOM
) {
1363 error(_("invalid day of month"));
1367 if ((lp
= byword(dp
, wday_names
)) == NULL
) {
1368 error(_("invalid weekday name"));
1372 rp
->r_wday
= lp
->l_value
;
1374 if (sscanf(ep
, scheck(ep
, "%d"), &rp
->r_dayofmonth
) != 1 ||
1375 rp
->r_dayofmonth
<= 0 ||
1376 (rp
->r_dayofmonth
> len_months
[1][rp
->r_month
])) {
1377 error(_("invalid day of month"));
1391 register long shift
;
1393 for (i
= 0, shift
= 24; i
< 4; ++i
, shift
-= 8)
1394 buf
[i
] = val
>> shift
;
1405 (void) fwrite((void *) buf
, (size_t) sizeof buf
, (size_t) 1, fp
);
1413 if (((struct attype
*) avp
)->at
< ((struct attype
*) bvp
)->at
)
1415 else if (((struct attype
*) avp
)->at
> ((struct attype
*) bvp
)->at
)
1422 const char * const name
;
1426 static char * fullname
;
1427 static struct tzhead tzh
;
1428 time_t ats
[TZ_MAX_TIMES
];
1429 unsigned char types
[TZ_MAX_TIMES
];
1435 (void) qsort((void *) attypes
, (size_t) timecnt
,
1436 (size_t) sizeof *attypes
, atcomp
);
1446 while (fromi
< timecnt
&& attypes
[fromi
].at
< min_time
)
1449 while (fromi
< timecnt
&& attypes
[fromi
].type
== 0)
1450 ++fromi
; /* handled by default rule */
1451 for ( ; fromi
< timecnt
; ++fromi
) {
1453 && ((attypes
[fromi
].at
1454 + gmtoffs
[attypes
[toi
- 1].type
])
1455 <= (attypes
[toi
- 1].at
1456 + gmtoffs
[toi
== 1 ? 0
1457 : attypes
[toi
- 2].type
]))) {
1458 attypes
[toi
- 1].type
= attypes
[fromi
].type
;
1462 attypes
[toi
- 1].type
!= attypes
[fromi
].type
)
1463 attypes
[toi
++] = attypes
[fromi
];
1470 for (i
= 0; i
< timecnt
; ++i
) {
1471 ats
[i
] = attypes
[i
].at
;
1472 types
[i
] = attypes
[i
].type
;
1474 fullname
= erealloc(fullname
,
1475 (int) (strlen(directory
) + 1 + strlen(name
) + 1));
1476 (void) sprintf(fullname
, "%s/%s", directory
, name
);
1478 ** Remove old file, if any, to snap links.
1480 if (!itsdir(fullname
) && remove(fullname
) != 0 && errno
!= ENOENT
) {
1481 const char *e
= strerror(errno
);
1483 (void) fprintf(stderr
, _("%s: Can't remove %s: %s\n"),
1484 progname
, fullname
, e
);
1485 (void) exit(EXIT_FAILURE
);
1487 if ((fp
= fopen(fullname
, "wb")) == NULL
) {
1488 if (mkdirs(fullname
) != 0)
1489 (void) exit(EXIT_FAILURE
);
1490 if ((fp
= fopen(fullname
, "wb")) == NULL
) {
1491 const char *e
= strerror(errno
);
1493 (void) fprintf(stderr
, _("%s: Can't create %s: %s\n"),
1494 progname
, fullname
, e
);
1495 (void) exit(EXIT_FAILURE
);
1498 convert(eitol(typecnt
), tzh
.tzh_ttisgmtcnt
);
1499 convert(eitol(typecnt
), tzh
.tzh_ttisstdcnt
);
1500 convert(eitol(leapcnt
), tzh
.tzh_leapcnt
);
1501 convert(eitol(timecnt
), tzh
.tzh_timecnt
);
1502 convert(eitol(typecnt
), tzh
.tzh_typecnt
);
1503 convert(eitol(charcnt
), tzh
.tzh_charcnt
);
1504 (void) strncpy(tzh
.tzh_magic
, TZ_MAGIC
, sizeof tzh
.tzh_magic
);
1505 #define DO(field) (void) fwrite((void *) tzh.field, (size_t) sizeof tzh.field, (size_t) 1, fp)
1515 for (i
= 0; i
< timecnt
; ++i
) {
1518 if (ats
[i
] >= trans
[j
]) {
1519 ats
[i
] = tadd(ats
[i
], corr
[j
]);
1522 puttzcode((long) ats
[i
], fp
);
1525 (void) fwrite((void *) types
, (size_t) sizeof types
[0],
1526 (size_t) timecnt
, fp
);
1527 for (i
= 0; i
< typecnt
; ++i
) {
1528 puttzcode((long) gmtoffs
[i
], fp
);
1529 (void) putc(isdsts
[i
], fp
);
1530 (void) putc(abbrinds
[i
], fp
);
1533 (void) fwrite((void *) chars
, (size_t) sizeof chars
[0],
1534 (size_t) charcnt
, fp
);
1535 for (i
= 0; i
< leapcnt
; ++i
) {
1537 if (timecnt
== 0 || trans
[i
] < ats
[0]) {
1540 if (++j
>= typecnt
) {
1546 while (j
< timecnt
&& trans
[i
] >= ats
[j
])
1550 puttzcode((long) tadd(trans
[i
], -gmtoffs
[j
]), fp
);
1551 } else puttzcode((long) trans
[i
], fp
);
1552 puttzcode((long) corr
[i
], fp
);
1554 for (i
= 0; i
< typecnt
; ++i
)
1555 (void) putc(ttisstds
[i
], fp
);
1556 for (i
= 0; i
< typecnt
; ++i
)
1557 (void) putc(ttisgmts
[i
], fp
);
1558 if (ferror(fp
) || fclose(fp
)) {
1559 (void) fprintf(stderr
, _("%s: Error writing %s\n"),
1560 progname
, fullname
);
1561 (void) exit(EXIT_FAILURE
);
1566 doabbr(abbr
, format
, letters
, isdst
)
1568 const char * const format
;
1569 const char * const letters
;
1572 if (strchr(format
, '/') == NULL
) {
1573 if (letters
== NULL
)
1574 (void) strcpy(abbr
, format
);
1575 else (void) sprintf(abbr
, format
, letters
);
1577 (void) strcpy(abbr
, strchr(format
, '/') + 1);
1579 (void) strcpy(abbr
, format
);
1580 *strchr(abbr
, '/') = '\0';
1585 outzone(zpfirst
, zonecount
)
1586 const struct zone
* const zpfirst
;
1587 const int zonecount
;
1589 register const struct zone
* zp
;
1590 register struct rule
* rp
;
1592 register int usestart
, useuntil
;
1593 register time_t starttime
, untiltime
;
1594 register long gmtoff
;
1595 register long stdoff
;
1597 register long startoff
;
1598 register int startttisstd
;
1599 register int startttisgmt
;
1601 char startbuf
[BUFSIZ
];
1603 INITIALIZE(untiltime
);
1604 INITIALIZE(starttime
);
1606 ** Now. . .finally. . .generate some useful data!
1612 ** A guess that may well be corrected later.
1616 ** Thanks to Earl Chew (earl@dnd.icp.nec.com.au)
1617 ** for noting the need to unconditionally initialize startttisstd.
1619 startttisstd
= FALSE
;
1620 startttisgmt
= FALSE
;
1621 for (i
= 0; i
< zonecount
; ++i
) {
1623 usestart
= i
> 0 && (zp
- 1)->z_untiltime
> min_time
;
1624 useuntil
= i
< (zonecount
- 1);
1625 if (useuntil
&& zp
->z_untiltime
<= min_time
)
1627 gmtoff
= zp
->z_gmtoff
;
1628 eat(zp
->z_filename
, zp
->z_linenum
);
1630 startoff
= zp
->z_gmtoff
;
1631 if (zp
->z_nrules
== 0) {
1632 stdoff
= zp
->z_stdoff
;
1633 doabbr(startbuf
, zp
->z_format
,
1634 (char *) NULL
, stdoff
!= 0);
1635 type
= addtype(oadd(zp
->z_gmtoff
, stdoff
),
1636 startbuf
, stdoff
!= 0, startttisstd
,
1639 addtt(starttime
, type
);
1642 else if (stdoff
!= 0)
1643 addtt(min_time
, type
);
1644 } else for (year
= min_year
; year
<= max_year
; ++year
) {
1645 if (useuntil
&& year
> zp
->z_untilrule
.r_hiyear
)
1648 ** Mark which rules to do in the current year.
1649 ** For those to do, calculate rpytime(rp, year);
1651 for (j
= 0; j
< zp
->z_nrules
; ++j
) {
1652 rp
= &zp
->z_rules
[j
];
1653 eats(zp
->z_filename
, zp
->z_linenum
,
1654 rp
->r_filename
, rp
->r_linenum
);
1655 rp
->r_todo
= year
>= rp
->r_loyear
&&
1656 year
<= rp
->r_hiyear
&&
1657 yearistype(year
, rp
->r_yrtype
);
1659 rp
->r_temp
= rpytime(rp
, year
);
1663 register time_t jtime
, ktime
;
1664 register long offset
;
1670 ** Turn untiltime into UTC
1671 ** assuming the current gmtoff and
1674 untiltime
= zp
->z_untiltime
;
1675 if (!zp
->z_untilrule
.r_todisgmt
)
1676 untiltime
= tadd(untiltime
,
1678 if (!zp
->z_untilrule
.r_todisstd
)
1679 untiltime
= tadd(untiltime
,
1683 ** Find the rule (of those to do, if any)
1684 ** that takes effect earliest in the year.
1687 for (j
= 0; j
< zp
->z_nrules
; ++j
) {
1688 rp
= &zp
->z_rules
[j
];
1691 eats(zp
->z_filename
, zp
->z_linenum
,
1692 rp
->r_filename
, rp
->r_linenum
);
1693 offset
= rp
->r_todisgmt
? 0 : gmtoff
;
1694 if (!rp
->r_todisstd
)
1695 offset
= oadd(offset
, stdoff
);
1697 if (jtime
== min_time
||
1700 jtime
= tadd(jtime
, -offset
);
1701 if (k
< 0 || jtime
< ktime
) {
1707 break; /* go on to next year */
1708 rp
= &zp
->z_rules
[k
];
1710 if (useuntil
&& ktime
>= untiltime
)
1712 stdoff
= rp
->r_stdoff
;
1713 if (usestart
&& ktime
== starttime
)
1716 if (ktime
< starttime
) {
1717 startoff
= oadd(zp
->z_gmtoff
,
1719 doabbr(startbuf
, zp
->z_format
,
1724 if (*startbuf
== '\0' &&
1725 startoff
== oadd(zp
->z_gmtoff
,
1727 doabbr(startbuf
, zp
->z_format
,
1732 eats(zp
->z_filename
, zp
->z_linenum
,
1733 rp
->r_filename
, rp
->r_linenum
);
1734 doabbr(buf
, zp
->z_format
, rp
->r_abbrvar
,
1736 offset
= oadd(zp
->z_gmtoff
, rp
->r_stdoff
);
1737 type
= addtype(offset
, buf
, rp
->r_stdoff
!= 0,
1738 rp
->r_todisstd
, rp
->r_todisgmt
);
1743 if (*startbuf
== '\0' &&
1744 zp
->z_format
!= NULL
&&
1745 strchr(zp
->z_format
, '%') == NULL
&&
1746 strchr(zp
->z_format
, '/') == NULL
)
1747 (void) strcpy(startbuf
, zp
->z_format
);
1748 eat(zp
->z_filename
, zp
->z_linenum
);
1749 if (*startbuf
== '\0')
1750 error(_("can't determine time zone abbreviation to use just after until time"));
1751 else addtt(starttime
,
1752 addtype(startoff
, startbuf
,
1753 startoff
!= zp
->z_gmtoff
,
1758 ** Now we may get to set starttime for the next zone line.
1761 startttisstd
= zp
->z_untilrule
.r_todisstd
;
1762 startttisgmt
= zp
->z_untilrule
.r_todisgmt
;
1763 starttime
= zp
->z_untiltime
;
1765 starttime
= tadd(starttime
, -stdoff
);
1767 starttime
= tadd(starttime
, -gmtoff
);
1770 writezone(zpfirst
->z_name
);
1774 addtt(starttime
, type
)
1775 const time_t starttime
;
1778 if (starttime
<= min_time
||
1779 (timecnt
== 1 && attypes
[0].at
< min_time
)) {
1780 gmtoffs
[0] = gmtoffs
[type
];
1781 isdsts
[0] = isdsts
[type
];
1782 ttisstds
[0] = ttisstds
[type
];
1783 ttisgmts
[0] = ttisgmts
[type
];
1784 if (abbrinds
[type
] != 0)
1785 (void) strcpy(chars
, &chars
[abbrinds
[type
]]);
1787 charcnt
= strlen(chars
) + 1;
1792 if (timecnt
>= TZ_MAX_TIMES
) {
1793 error(_("too many transitions?!"));
1794 (void) exit(EXIT_FAILURE
);
1796 attypes
[timecnt
].at
= starttime
;
1797 attypes
[timecnt
].type
= type
;
1802 addtype(gmtoff
, abbr
, isdst
, ttisstd
, ttisgmt
)
1804 const char * const abbr
;
1811 if (isdst
!= TRUE
&& isdst
!= FALSE
) {
1812 error(_("internal error - addtype called with bad isdst"));
1813 (void) exit(EXIT_FAILURE
);
1815 if (ttisstd
!= TRUE
&& ttisstd
!= FALSE
) {
1816 error(_("internal error - addtype called with bad ttisstd"));
1817 (void) exit(EXIT_FAILURE
);
1819 if (ttisgmt
!= TRUE
&& ttisgmt
!= FALSE
) {
1820 error(_("internal error - addtype called with bad ttisgmt"));
1821 (void) exit(EXIT_FAILURE
);
1824 ** See if there's already an entry for this zone type.
1825 ** If so, just return its index.
1827 for (i
= 0; i
< typecnt
; ++i
) {
1828 if (gmtoff
== gmtoffs
[i
] && isdst
== isdsts
[i
] &&
1829 strcmp(abbr
, &chars
[abbrinds
[i
]]) == 0 &&
1830 ttisstd
== ttisstds
[i
] &&
1831 ttisgmt
== ttisgmts
[i
])
1835 ** There isn't one; add a new one, unless there are already too
1838 if (typecnt
>= TZ_MAX_TYPES
) {
1839 error(_("too many local time types"));
1840 (void) exit(EXIT_FAILURE
);
1842 gmtoffs
[i
] = gmtoff
;
1844 ttisstds
[i
] = ttisstd
;
1845 ttisgmts
[i
] = ttisgmt
;
1847 for (j
= 0; j
< charcnt
; ++j
)
1848 if (strcmp(&chars
[j
], abbr
) == 0)
1858 leapadd(t
, positive
, rolling
, count
)
1866 if (leapcnt
+ (positive
? count
: 1) > TZ_MAX_LEAPS
) {
1867 error(_("too many leap seconds"));
1868 (void) exit(EXIT_FAILURE
);
1870 for (i
= 0; i
< leapcnt
; ++i
)
1871 if (t
<= trans
[i
]) {
1872 if (t
== trans
[i
]) {
1873 error(_("repeated leap second moment"));
1874 (void) exit(EXIT_FAILURE
);
1879 for (j
= leapcnt
; j
> i
; --j
) {
1880 trans
[j
] = trans
[j
- 1];
1881 corr
[j
] = corr
[j
- 1];
1882 roll
[j
] = roll
[j
- 1];
1885 corr
[i
] = positive
? 1L : eitol(-count
);
1888 } while (positive
&& --count
!= 0);
1895 register long last
= 0;
1898 ** propagate leap seconds forward
1900 for (i
= 0; i
< leapcnt
; ++i
) {
1901 trans
[i
] = tadd(trans
[i
], last
);
1902 last
= corr
[i
] += last
;
1907 yearistype(year
, type
)
1909 const char * const type
;
1914 if (type
== NULL
|| *type
== '\0')
1916 buf
= erealloc(buf
, (int) (132 + strlen(yitcommand
) + strlen(type
)));
1917 (void) sprintf(buf
, "%s %d %s", yitcommand
, year
, type
);
1918 result
= system(buf
);
1919 if (WIFEXITED(result
)) switch (WEXITSTATUS(result
)) {
1925 error(_("Wild result from command execution"));
1926 (void) fprintf(stderr
, _("%s: command was '%s', result was %d\n"),
1927 progname
, buf
, result
);
1929 (void) exit(EXIT_FAILURE
);
1936 a
= (unsigned char) a
;
1937 return (isascii(a
) && isupper(a
)) ? tolower(a
) : a
;
1941 ciequal(ap
, bp
) /* case-insensitive equality */
1942 register const char * ap
;
1943 register const char * bp
;
1945 while (lowerit(*ap
) == lowerit(*bp
++))
1953 register const char * abbr
;
1954 register const char * word
;
1956 if (lowerit(*abbr
) != lowerit(*word
))
1959 while (*++abbr
!= '\0')
1963 } while (lowerit(*word
++) != lowerit(*abbr
));
1967 static const struct lookup
*
1969 register const char * const word
;
1970 register const struct lookup
* const table
;
1972 register const struct lookup
* foundlp
;
1973 register const struct lookup
* lp
;
1975 if (word
== NULL
|| table
== NULL
)
1978 ** Look for exact match.
1980 for (lp
= table
; lp
->l_word
!= NULL
; ++lp
)
1981 if (ciequal(word
, lp
->l_word
))
1984 ** Look for inexact match.
1987 for (lp
= table
; lp
->l_word
!= NULL
; ++lp
)
1988 if (itsabbr(word
, lp
->l_word
)) {
1989 if (foundlp
== NULL
)
1991 else return NULL
; /* multiple inexact matches */
2001 register char ** array
;
2006 array
= (char **) (void *)
2007 emalloc((int) ((strlen(cp
) + 1) * sizeof *array
));
2010 while (isascii(*cp
) && isspace((unsigned char) *cp
))
2012 if (*cp
== '\0' || *cp
== '#')
2014 array
[nsubs
++] = dp
= cp
;
2016 if ((*dp
= *cp
++) != '"')
2018 else while ((*dp
= *cp
++) != '"')
2021 else error(_("Odd number of quotation marks"));
2022 } while (*cp
!= '\0' && *cp
!= '#' &&
2023 (!isascii(*cp
) || !isspace((unsigned char) *cp
)));
2024 if (isascii(*cp
) && isspace((unsigned char) *cp
))
2028 array
[nsubs
] = NULL
;
2040 if ((t2
> 0 && t
<= t1
) || (t2
< 0 && t
>= t1
)) {
2041 error(_("time overflow"));
2042 (void) exit(EXIT_FAILURE
);
2054 if (t1
== max_time
&& t2
> 0)
2056 if (t1
== min_time
&& t2
< 0)
2059 if ((t2
> 0 && t
<= t1
) || (t2
< 0 && t
>= t1
)) {
2060 error(_("time overflow"));
2061 (void) exit(EXIT_FAILURE
);
2067 ** Given a rule, and a year, compute the date - in seconds since January 1,
2068 ** 1970, 00:00 LOCAL time - in that year that the rule refers to.
2072 rpytime(rp
, wantedy
)
2073 register const struct rule
* const rp
;
2074 register const int wantedy
;
2076 register int y
, m
, i
;
2077 register long dayoff
; /* with a nod to Margaret O. */
2080 if (wantedy
== INT_MIN
)
2082 if (wantedy
== INT_MAX
)
2087 while (wantedy
!= y
) {
2089 i
= len_years
[isleap(y
)];
2093 i
= -len_years
[isleap(y
)];
2095 dayoff
= oadd(dayoff
, eitol(i
));
2097 while (m
!= rp
->r_month
) {
2098 i
= len_months
[isleap(y
)][m
];
2099 dayoff
= oadd(dayoff
, eitol(i
));
2102 i
= rp
->r_dayofmonth
;
2103 if (m
== TM_FEBRUARY
&& i
== 29 && !isleap(y
)) {
2104 if (rp
->r_dycode
== DC_DOWLEQ
)
2107 error(_("use of 2/29 in non leap-year"));
2108 (void) exit(EXIT_FAILURE
);
2112 dayoff
= oadd(dayoff
, eitol(i
));
2113 if (rp
->r_dycode
== DC_DOWGEQ
|| rp
->r_dycode
== DC_DOWLEQ
) {
2116 #define LDAYSPERWEEK ((long) DAYSPERWEEK)
2117 wday
= eitol(EPOCH_WDAY
);
2119 ** Don't trust mod of negative numbers.
2122 wday
= (wday
+ dayoff
) % LDAYSPERWEEK
;
2124 wday
-= ((-dayoff
) % LDAYSPERWEEK
);
2126 wday
+= LDAYSPERWEEK
;
2128 while (wday
!= eitol(rp
->r_wday
))
2129 if (rp
->r_dycode
== DC_DOWGEQ
) {
2130 dayoff
= oadd(dayoff
, (long) 1);
2131 if (++wday
>= LDAYSPERWEEK
)
2135 dayoff
= oadd(dayoff
, (long) -1);
2137 wday
= LDAYSPERWEEK
- 1;
2140 if (i
< 0 || i
>= len_months
[isleap(y
)][m
]) {
2141 error(_("no day in month matches rule"));
2142 (void) exit(EXIT_FAILURE
);
2145 if (dayoff
< 0 && !TYPE_SIGNED(time_t))
2147 t
= (time_t) dayoff
* SECSPERDAY
;
2149 ** Cheap overflow check.
2151 if (t
/ SECSPERDAY
!= dayoff
)
2152 return (dayoff
> 0) ? max_time
: min_time
;
2153 return tadd(t
, rp
->r_tod
);
2158 const char * const string
;
2162 i
= strlen(string
) + 1;
2163 if (charcnt
+ i
> TZ_MAX_CHARS
) {
2164 error(_("too many, or too long, time zone abbreviations"));
2165 (void) exit(EXIT_FAILURE
);
2167 (void) strcpy(&chars
[charcnt
], string
);
2168 charcnt
+= eitol(i
);
2173 char * const argname
;
2175 register char * name
;
2178 if (argname
== NULL
|| *argname
== '\0')
2180 cp
= name
= ecpyalloc(argname
);
2181 while ((cp
= strchr(cp
+ 1, '/')) != 0) {
2185 ** DOS drive specifier?
2187 if (isalpha((unsigned char) name
[0]) &&
2188 name
[1] == ':' && name
[2] == '\0') {
2192 #endif /* !defined unix */
2193 if (!itsdir(name
)) {
2195 ** It doesn't seem to exist, so we try to create it.
2196 ** Creation may fail because of the directory being
2197 ** created by some other multiprocessor, so we get
2198 ** to do extra checking.
2200 if (mkdir(name
, S_IRUSR
|S_IWUSR
|S_IXUSR
|S_IRGRP
|S_IXGRP
|S_IROTH
|S_IXOTH
) != 0) {
2201 const char *e
= strerror(errno
);
2203 if (errno
!= EEXIST
|| !itsdir(name
)) {
2204 (void) fprintf(stderr
,
2205 _("%s: Can't create directory %s: %s\n"),
2225 if ((i
< 0 && l
>= 0) || (i
== 0 && l
!= 0) || (i
> 0 && l
<= 0)) {
2226 (void) fprintf(stderr
,
2227 _("%s: %d did not sign extend correctly\n"),
2229 (void) exit(EXIT_FAILURE
);
2235 ** UNIX was a registered trademark of UNIX System Laboratories in 1993.