Home | History | Annotate | Line # | Download | only in time
zic.c revision 1.77
      1  1.77  christos /*	$NetBSD: zic.c,v 1.77 2020/10/09 18:38:48 christos Exp $	*/
      2  1.25   mlelstv /*
      3  1.25   mlelstv ** This file is in the public domain, so clarified as of
      4  1.25   mlelstv ** 2006-07-17 by Arthur David Olson.
      5  1.25   mlelstv */
      6  1.75  christos /* Compile .zi time zone data into TZif binary files.  */
      7   1.2       jtc 
      8  1.26   tsutsui #if HAVE_NBTOOL_CONFIG_H
      9  1.26   tsutsui #include "nbtool_config.h"
     10  1.26   tsutsui #endif
     11  1.26   tsutsui 
     12   1.9  christos #include <sys/cdefs.h>
     13   1.1       jtc #ifndef lint
     14  1.77  christos __RCSID("$NetBSD: zic.c,v 1.77 2020/10/09 18:38:48 christos Exp $");
     15   1.1       jtc #endif /* !defined lint */
     16   1.1       jtc 
     17   1.1       jtc #include "private.h"
     18   1.1       jtc #include "tzfile.h"
     19  1.19    kleink 
     20  1.68  christos #include <fcntl.h>
     21  1.68  christos #include <locale.h>
     22  1.43  christos #include <stdarg.h>
     23  1.65  christos #include <stddef.h>
     24  1.69  christos #include <stdio.h>
     25  1.43  christos #include <unistd.h>
     26  1.63  christos #include <util.h>
     27  1.43  christos 
     28  1.43  christos #define	ZIC_VERSION_PRE_2013 '2'
     29  1.43  christos #define	ZIC_VERSION	'3'
     30  1.25   mlelstv 
     31  1.41  christos typedef int_fast64_t	zic_t;
     32  1.41  christos #define ZIC_MIN INT_FAST64_MIN
     33  1.41  christos #define ZIC_MAX INT_FAST64_MAX
     34  1.65  christos #define PRIdZIC PRIdFAST64
     35  1.41  christos #define SCNdZIC SCNdFAST64
     36  1.25   mlelstv 
     37  1.25   mlelstv #ifndef ZIC_MAX_ABBR_LEN_WO_WARN
     38  1.25   mlelstv #define ZIC_MAX_ABBR_LEN_WO_WARN	6
     39  1.25   mlelstv #endif /* !defined ZIC_MAX_ABBR_LEN_WO_WARN */
     40  1.25   mlelstv 
     41  1.57  christos #ifdef HAVE_DIRECT_H
     42  1.57  christos # include <direct.h>
     43  1.57  christos # include <io.h>
     44  1.57  christos # undef mkdir
     45  1.57  christos # define mkdir(name, mode) _mkdir(name)
     46  1.57  christos #endif
     47  1.57  christos 
     48  1.19    kleink #if HAVE_SYS_STAT_H
     49  1.47  christos #include <sys/stat.h>
     50  1.19    kleink #endif
     51  1.19    kleink #ifdef S_IRUSR
     52  1.19    kleink #define MKDIR_UMASK (S_IRUSR|S_IWUSR|S_IXUSR|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH)
     53  1.19    kleink #else
     54  1.19    kleink #define MKDIR_UMASK 0755
     55  1.19    kleink #endif
     56  1.71  christos /* Port to native MS-Windows and to ancient UNIX.  */
     57  1.71  christos #if !defined S_ISDIR && defined S_IFDIR && defined S_IFMT
     58  1.71  christos # define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
     59  1.71  christos #endif
     60  1.19    kleink 
     61  1.69  christos #if HAVE_SYS_WAIT_H
     62  1.69  christos #include <sys/wait.h>	/* for WIFEXITED and WEXITSTATUS */
     63  1.69  christos #endif /* HAVE_SYS_WAIT_H */
     64  1.69  christos 
     65  1.69  christos #ifndef WIFEXITED
     66  1.69  christos #define WIFEXITED(status)	(((status) & 0xff) == 0)
     67  1.69  christos #endif /* !defined WIFEXITED */
     68  1.69  christos #ifndef WEXITSTATUS
     69  1.69  christos #define WEXITSTATUS(status)	(((status) >> 8) & 0xff)
     70  1.69  christos #endif /* !defined WEXITSTATUS */
     71  1.69  christos 
     72  1.65  christos /* The maximum ptrdiff_t value, for pre-C99 platforms.  */
     73  1.65  christos #ifndef PTRDIFF_MAX
     74  1.65  christos static ptrdiff_t const PTRDIFF_MAX = MAXVAL(ptrdiff_t, TYPE_BIT(ptrdiff_t));
     75  1.65  christos #endif
     76  1.65  christos 
     77  1.72  christos /* The minimum alignment of a type, for pre-C11 platforms.  */
     78  1.72  christos #if __STDC_VERSION__ < 201112
     79  1.72  christos # define _Alignof(type) offsetof(struct { char a; type b; }, b)
     80  1.72  christos #endif
     81  1.72  christos 
     82  1.69  christos /* The type for line numbers.  Use PRIdMAX to format them; formerly
     83  1.69  christos    there was also "#define PRIdLINENO PRIdMAX" and formats used
     84  1.69  christos    PRIdLINENO, but xgettext cannot grok that.  */
     85  1.65  christos typedef intmax_t lineno;
     86  1.65  christos 
     87   1.1       jtc struct rule {
     88   1.1       jtc 	const char *	r_filename;
     89  1.65  christos 	lineno		r_linenum;
     90   1.1       jtc 	const char *	r_name;
     91   1.1       jtc 
     92  1.41  christos 	zic_t		r_loyear;	/* for example, 1986 */
     93  1.41  christos 	zic_t		r_hiyear;	/* for example, 1986 */
     94  1.51  christos 	bool		r_lowasnum;
     95  1.51  christos 	bool		r_hiwasnum;
     96   1.1       jtc 
     97   1.1       jtc 	int		r_month;	/* 0..11 */
     98   1.1       jtc 
     99   1.1       jtc 	int		r_dycode;	/* see below */
    100   1.1       jtc 	int		r_dayofmonth;
    101   1.1       jtc 	int		r_wday;
    102   1.1       jtc 
    103  1.38  christos 	zic_t		r_tod;		/* time from midnight */
    104  1.75  christos 	bool		r_todisstd;	/* is r_tod standard time? */
    105  1.75  christos 	bool		r_todisut;	/* is r_tod UT? */
    106  1.71  christos 	bool		r_isdst;	/* is this daylight saving time? */
    107  1.75  christos 	zic_t		r_save;		/* offset from standard time */
    108   1.1       jtc 	const char *	r_abbrvar;	/* variable part of abbreviation */
    109   1.1       jtc 
    110  1.65  christos 	bool		r_todo;		/* a rule to do (used in outzone) */
    111  1.25   mlelstv 	zic_t		r_temp;		/* used in outzone */
    112   1.1       jtc };
    113   1.1       jtc 
    114   1.1       jtc /*
    115   1.1       jtc **	r_dycode		r_dayofmonth	r_wday
    116   1.1       jtc */
    117   1.1       jtc 
    118   1.1       jtc #define DC_DOM		0	/* 1..31 */	/* unused */
    119   1.1       jtc #define DC_DOWGEQ	1	/* 1..31 */	/* 0..6 (Sun..Sat) */
    120   1.1       jtc #define DC_DOWLEQ	2	/* 1..31 */	/* 0..6 (Sun..Sat) */
    121   1.1       jtc 
    122   1.1       jtc struct zone {
    123   1.1       jtc 	const char *	z_filename;
    124  1.65  christos 	lineno		z_linenum;
    125   1.1       jtc 
    126   1.1       jtc 	const char *	z_name;
    127  1.75  christos 	zic_t		z_stdoff;
    128  1.71  christos 	char *		z_rule;
    129   1.1       jtc 	const char *	z_format;
    130  1.55  christos 	char		z_format_specifier;
    131   1.1       jtc 
    132  1.71  christos 	bool		z_isdst;
    133  1.75  christos 	zic_t		z_save;
    134   1.1       jtc 
    135   1.1       jtc 	struct rule *	z_rules;
    136  1.65  christos 	ptrdiff_t	z_nrules;
    137   1.1       jtc 
    138   1.1       jtc 	struct rule	z_untilrule;
    139  1.25   mlelstv 	zic_t		z_untiltime;
    140   1.1       jtc };
    141   1.1       jtc 
    142  1.57  christos #if !HAVE_POSIX_DECLS
    143  1.25   mlelstv extern int	getopt(int argc, char * const argv[],
    144  1.25   mlelstv 			const char * options);
    145  1.77  christos extern int	link(const char * target, const char * linkname);
    146   1.1       jtc extern char *	optarg;
    147   1.1       jtc extern int	optind;
    148  1.57  christos #endif
    149   1.1       jtc 
    150  1.44  christos #if ! HAVE_LINK
    151  1.77  christos # define link(target, linkname) (errno = ENOTSUP, -1)
    152  1.44  christos #endif
    153  1.44  christos #if ! HAVE_SYMLINK
    154  1.68  christos # define readlink(file, buf, size) (errno = ENOTSUP, -1)
    155  1.77  christos # define symlink(target, linkname) (errno = ENOTSUP, -1)
    156  1.63  christos # define S_ISLNK(m) 0
    157  1.44  christos #endif
    158  1.68  christos #ifndef AT_SYMLINK_FOLLOW
    159  1.77  christos # define linkat(targetdir, target, linknamedir, linkname, flag) \
    160  1.77  christos     (itssymlink(target) ? (errno = ENOTSUP, -1) : link(target, linkname))
    161  1.68  christos #endif
    162  1.44  christos 
    163  1.25   mlelstv static void	addtt(zic_t starttime, int type);
    164  1.57  christos static int	addtype(zic_t, char const *, bool, bool, bool);
    165  1.76  christos static void	leapadd(zic_t, int, int);
    166  1.25   mlelstv static void	adjleap(void);
    167  1.25   mlelstv static void	associate(void);
    168  1.63  christos static void	dolink(const char *, const char *, bool);
    169  1.25   mlelstv static char **	getfields(char * buf);
    170  1.74  christos static zic_t	gethms(const char * string, const char * errstring);
    171  1.75  christos static zic_t	getsave(char *, bool *);
    172  1.76  christos static void	inexpires(char **, int);
    173  1.25   mlelstv static void	infile(const char * filename);
    174  1.25   mlelstv static void	inleap(char ** fields, int nfields);
    175  1.25   mlelstv static void	inlink(char ** fields, int nfields);
    176  1.25   mlelstv static void	inrule(char ** fields, int nfields);
    177  1.51  christos static bool	inzcont(char ** fields, int nfields);
    178  1.51  christos static bool	inzone(char ** fields, int nfields);
    179  1.74  christos static bool	inzsub(char **, int, bool);
    180  1.74  christos static bool	itsdir(char const *);
    181  1.74  christos static bool	itssymlink(char const *);
    182  1.51  christos static bool	is_alpha(char a);
    183  1.47  christos static char	lowerit(char);
    184  1.63  christos static void	mkdirs(char const *, bool);
    185  1.25   mlelstv static void	newabbr(const char * abbr);
    186  1.38  christos static zic_t	oadd(zic_t t1, zic_t t2);
    187  1.65  christos static void	outzone(const struct zone * zp, ptrdiff_t ntzones);
    188  1.41  christos static zic_t	rpytime(const struct rule * rp, zic_t wantedy);
    189  1.25   mlelstv static void	rulesub(struct rule * rp,
    190   1.1       jtc 			const char * loyearp, const char * hiyearp,
    191   1.1       jtc 			const char * typep, const char * monthp,
    192  1.25   mlelstv 			const char * dayp, const char * timep);
    193  1.38  christos static zic_t	tadd(zic_t t1, zic_t t2);
    194   1.5       jtc 
    195  1.55  christos /* Bound on length of what %z can expand to.  */
    196  1.55  christos enum { PERCENT_Z_LEN_BOUND = sizeof "+995959" - 1 };
    197  1.55  christos 
    198  1.59  christos /* If true, work around a bug in Qt 5.6.1 and earlier, which mishandles
    199  1.74  christos    TZif files whose POSIX-TZ-style strings contain '<'; see
    200  1.59  christos    QTBUG-53071 <https://bugreports.qt.io/browse/QTBUG-53071>.  This
    201  1.59  christos    workaround will no longer be needed when Qt 5.6.1 and earlier are
    202  1.59  christos    obsolete, say in the year 2021.  */
    203  1.72  christos #ifndef WORK_AROUND_QTBUG_53071
    204  1.74  christos enum { WORK_AROUND_QTBUG_53071 = true };
    205  1.72  christos #endif
    206  1.59  christos 
    207   1.1       jtc static int		charcnt;
    208  1.51  christos static bool		errors;
    209  1.51  christos static bool		warnings;
    210   1.1       jtc static const char *	filename;
    211   1.1       jtc static int		leapcnt;
    212  1.51  christos static bool		leapseen;
    213  1.41  christos static zic_t		leapminyear;
    214  1.41  christos static zic_t		leapmaxyear;
    215  1.65  christos static lineno		linenum;
    216  1.55  christos static size_t		max_abbrvar_len = PERCENT_Z_LEN_BOUND;
    217  1.36  christos static size_t		max_format_len;
    218  1.41  christos static zic_t		max_year;
    219  1.41  christos static zic_t		min_year;
    220  1.51  christos static bool		noise;
    221   1.1       jtc static const char *	rfilename;
    222  1.65  christos static lineno		rlinenum;
    223   1.1       jtc static const char *	progname;
    224  1.65  christos static ptrdiff_t	timecnt;
    225  1.65  christos static ptrdiff_t	timecnt_alloc;
    226   1.1       jtc static int		typecnt;
    227   1.1       jtc 
    228   1.1       jtc /*
    229   1.1       jtc ** Line codes.
    230   1.1       jtc */
    231   1.1       jtc 
    232   1.1       jtc #define LC_RULE		0
    233   1.1       jtc #define LC_ZONE		1
    234   1.1       jtc #define LC_LINK		2
    235   1.1       jtc #define LC_LEAP		3
    236  1.76  christos #define LC_EXPIRES	4
    237   1.1       jtc 
    238   1.1       jtc /*
    239   1.1       jtc ** Which fields are which on a Zone line.
    240   1.1       jtc */
    241   1.1       jtc 
    242   1.1       jtc #define ZF_NAME		1
    243  1.75  christos #define ZF_STDOFF	2
    244   1.1       jtc #define ZF_RULE		3
    245   1.1       jtc #define ZF_FORMAT	4
    246   1.1       jtc #define ZF_TILYEAR	5
    247   1.1       jtc #define ZF_TILMONTH	6
    248   1.1       jtc #define ZF_TILDAY	7
    249   1.1       jtc #define ZF_TILTIME	8
    250   1.1       jtc #define ZONE_MINFIELDS	5
    251   1.1       jtc #define ZONE_MAXFIELDS	9
    252   1.1       jtc 
    253   1.1       jtc /*
    254   1.1       jtc ** Which fields are which on a Zone continuation line.
    255   1.1       jtc */
    256   1.1       jtc 
    257  1.75  christos #define ZFC_STDOFF	0
    258   1.1       jtc #define ZFC_RULE	1
    259   1.1       jtc #define ZFC_FORMAT	2
    260   1.1       jtc #define ZFC_TILYEAR	3
    261   1.1       jtc #define ZFC_TILMONTH	4
    262   1.1       jtc #define ZFC_TILDAY	5
    263   1.1       jtc #define ZFC_TILTIME	6
    264   1.1       jtc #define ZONEC_MINFIELDS	3
    265   1.1       jtc #define ZONEC_MAXFIELDS	7
    266   1.1       jtc 
    267   1.1       jtc /*
    268   1.1       jtc ** Which files are which on a Rule line.
    269   1.1       jtc */
    270   1.1       jtc 
    271   1.1       jtc #define RF_NAME		1
    272   1.1       jtc #define RF_LOYEAR	2
    273   1.1       jtc #define RF_HIYEAR	3
    274   1.1       jtc #define RF_COMMAND	4
    275   1.1       jtc #define RF_MONTH	5
    276   1.1       jtc #define RF_DAY		6
    277   1.1       jtc #define RF_TOD		7
    278  1.75  christos #define RF_SAVE		8
    279   1.1       jtc #define RF_ABBRVAR	9
    280   1.1       jtc #define RULE_FIELDS	10
    281   1.1       jtc 
    282   1.1       jtc /*
    283   1.1       jtc ** Which fields are which on a Link line.
    284   1.1       jtc */
    285   1.1       jtc 
    286  1.77  christos #define LF_TARGET	1
    287  1.77  christos #define LF_LINKNAME	2
    288   1.1       jtc #define LINK_FIELDS	3
    289   1.1       jtc 
    290   1.1       jtc /*
    291   1.1       jtc ** Which fields are which on a Leap line.
    292   1.1       jtc */
    293   1.1       jtc 
    294   1.1       jtc #define LP_YEAR		1
    295   1.1       jtc #define LP_MONTH	2
    296   1.1       jtc #define LP_DAY		3
    297   1.1       jtc #define LP_TIME		4
    298   1.1       jtc #define LP_CORR		5
    299   1.1       jtc #define LP_ROLL		6
    300   1.1       jtc #define LEAP_FIELDS	7
    301   1.1       jtc 
    302  1.76  christos /* Expires lines are like Leap lines, except without CORR and ROLL fields.  */
    303  1.76  christos #define EXPIRES_FIELDS	5
    304  1.76  christos 
    305   1.1       jtc /*
    306   1.1       jtc ** Year synonyms.
    307   1.1       jtc */
    308   1.1       jtc 
    309   1.1       jtc #define YR_MINIMUM	0
    310   1.1       jtc #define YR_MAXIMUM	1
    311   1.1       jtc #define YR_ONLY		2
    312   1.1       jtc 
    313   1.1       jtc static struct rule *	rules;
    314  1.65  christos static ptrdiff_t	nrules;	/* number of rules */
    315  1.65  christos static ptrdiff_t	nrules_alloc;
    316   1.1       jtc 
    317   1.1       jtc static struct zone *	zones;
    318  1.65  christos static ptrdiff_t	nzones;	/* number of zones */
    319  1.65  christos static ptrdiff_t	nzones_alloc;
    320   1.1       jtc 
    321   1.1       jtc struct link {
    322   1.1       jtc 	const char *	l_filename;
    323  1.65  christos 	lineno		l_linenum;
    324  1.77  christos 	const char *	l_target;
    325  1.77  christos 	const char *	l_linkname;
    326   1.1       jtc };
    327   1.1       jtc 
    328   1.1       jtc static struct link *	links;
    329  1.65  christos static ptrdiff_t	nlinks;
    330  1.65  christos static ptrdiff_t	nlinks_alloc;
    331   1.1       jtc 
    332   1.1       jtc struct lookup {
    333   1.1       jtc 	const char *	l_word;
    334   1.1       jtc 	const int	l_value;
    335   1.1       jtc };
    336   1.1       jtc 
    337  1.25   mlelstv static struct lookup const *	byword(const char * string,
    338  1.25   mlelstv 					const struct lookup * lp);
    339   1.1       jtc 
    340  1.69  christos static struct lookup const zi_line_codes[] = {
    341   1.1       jtc 	{ "Rule",	LC_RULE },
    342   1.1       jtc 	{ "Zone",	LC_ZONE },
    343   1.1       jtc 	{ "Link",	LC_LINK },
    344  1.69  christos 	{ NULL,		0 }
    345  1.69  christos };
    346  1.69  christos static struct lookup const leap_line_codes[] = {
    347   1.1       jtc 	{ "Leap",	LC_LEAP },
    348  1.76  christos 	{ "Expires",	LC_EXPIRES },
    349   1.1       jtc 	{ NULL,		0}
    350   1.1       jtc };
    351   1.1       jtc 
    352   1.1       jtc static struct lookup const	mon_names[] = {
    353   1.1       jtc 	{ "January",	TM_JANUARY },
    354   1.1       jtc 	{ "February",	TM_FEBRUARY },
    355   1.1       jtc 	{ "March",	TM_MARCH },
    356   1.1       jtc 	{ "April",	TM_APRIL },
    357   1.1       jtc 	{ "May",	TM_MAY },
    358   1.1       jtc 	{ "June",	TM_JUNE },
    359   1.1       jtc 	{ "July",	TM_JULY },
    360   1.1       jtc 	{ "August",	TM_AUGUST },
    361   1.1       jtc 	{ "September",	TM_SEPTEMBER },
    362   1.1       jtc 	{ "October",	TM_OCTOBER },
    363   1.1       jtc 	{ "November",	TM_NOVEMBER },
    364   1.1       jtc 	{ "December",	TM_DECEMBER },
    365   1.1       jtc 	{ NULL,		0 }
    366   1.1       jtc };
    367   1.1       jtc 
    368   1.1       jtc static struct lookup const	wday_names[] = {
    369   1.1       jtc 	{ "Sunday",	TM_SUNDAY },
    370   1.1       jtc 	{ "Monday",	TM_MONDAY },
    371   1.1       jtc 	{ "Tuesday",	TM_TUESDAY },
    372   1.1       jtc 	{ "Wednesday",	TM_WEDNESDAY },
    373   1.1       jtc 	{ "Thursday",	TM_THURSDAY },
    374   1.1       jtc 	{ "Friday",	TM_FRIDAY },
    375   1.1       jtc 	{ "Saturday",	TM_SATURDAY },
    376   1.1       jtc 	{ NULL,		0 }
    377   1.1       jtc };
    378   1.1       jtc 
    379   1.1       jtc static struct lookup const	lasts[] = {
    380   1.1       jtc 	{ "last-Sunday",	TM_SUNDAY },
    381   1.1       jtc 	{ "last-Monday",	TM_MONDAY },
    382   1.1       jtc 	{ "last-Tuesday",	TM_TUESDAY },
    383   1.1       jtc 	{ "last-Wednesday",	TM_WEDNESDAY },
    384   1.1       jtc 	{ "last-Thursday",	TM_THURSDAY },
    385   1.1       jtc 	{ "last-Friday",	TM_FRIDAY },
    386   1.1       jtc 	{ "last-Saturday",	TM_SATURDAY },
    387   1.1       jtc 	{ NULL,			0 }
    388   1.1       jtc };
    389   1.1       jtc 
    390   1.1       jtc static struct lookup const	begin_years[] = {
    391   1.1       jtc 	{ "minimum",	YR_MINIMUM },
    392   1.1       jtc 	{ "maximum",	YR_MAXIMUM },
    393   1.1       jtc 	{ NULL,		0 }
    394   1.1       jtc };
    395   1.1       jtc 
    396   1.1       jtc static struct lookup const	end_years[] = {
    397   1.1       jtc 	{ "minimum",	YR_MINIMUM },
    398   1.1       jtc 	{ "maximum",	YR_MAXIMUM },
    399   1.1       jtc 	{ "only",	YR_ONLY },
    400   1.1       jtc 	{ NULL,		0 }
    401   1.1       jtc };
    402   1.1       jtc 
    403   1.1       jtc static struct lookup const	leap_types[] = {
    404  1.51  christos 	{ "Rolling",	true },
    405  1.51  christos 	{ "Stationary",	false },
    406   1.1       jtc 	{ NULL,		0 }
    407   1.1       jtc };
    408   1.1       jtc 
    409   1.1       jtc static const int	len_months[2][MONSPERYEAR] = {
    410   1.1       jtc 	{ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 },
    411   1.1       jtc 	{ 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
    412   1.1       jtc };
    413   1.1       jtc 
    414   1.1       jtc static const int	len_years[2] = {
    415   1.1       jtc 	DAYSPERNYEAR, DAYSPERLYEAR
    416   1.1       jtc };
    417   1.1       jtc 
    418   1.5       jtc static struct attype {
    419  1.25   mlelstv 	zic_t		at;
    420  1.63  christos 	bool		dontmerge;
    421   1.5       jtc 	unsigned char	type;
    422  1.45  christos } *			attypes;
    423  1.75  christos static zic_t		utoffs[TZ_MAX_TYPES];
    424   1.1       jtc static char		isdsts[TZ_MAX_TYPES];
    425  1.75  christos static unsigned char	desigidx[TZ_MAX_TYPES];
    426  1.51  christos static bool		ttisstds[TZ_MAX_TYPES];
    427  1.75  christos static bool		ttisuts[TZ_MAX_TYPES];
    428   1.1       jtc static char		chars[TZ_MAX_CHARS];
    429  1.25   mlelstv static zic_t		trans[TZ_MAX_LEAPS];
    430  1.38  christos static zic_t		corr[TZ_MAX_LEAPS];
    431   1.1       jtc static char		roll[TZ_MAX_LEAPS];
    432   1.1       jtc 
    433   1.1       jtc /*
    434   1.1       jtc ** Memory allocation.
    435   1.1       jtc */
    436   1.1       jtc 
    437  1.45  christos static _Noreturn void
    438  1.45  christos memory_exhausted(const char *msg)
    439  1.45  christos {
    440  1.45  christos 	fprintf(stderr, _("%s: Memory exhausted: %s\n"), progname, msg);
    441  1.45  christos 	exit(EXIT_FAILURE);
    442  1.45  christos }
    443  1.45  christos 
    444  1.45  christos static ATTRIBUTE_PURE size_t
    445  1.45  christos size_product(size_t nitems, size_t itemsize)
    446  1.45  christos {
    447  1.45  christos 	if (SIZE_MAX / itemsize < nitems)
    448  1.51  christos 		memory_exhausted(_("size overflow"));
    449  1.45  christos 	return nitems * itemsize;
    450  1.45  christos }
    451  1.45  christos 
    452  1.72  christos static ATTRIBUTE_PURE size_t
    453  1.72  christos align_to(size_t size, size_t alignment)
    454  1.72  christos {
    455  1.72  christos   size_t aligned_size = size + alignment - 1;
    456  1.72  christos   aligned_size -= aligned_size % alignment;
    457  1.72  christos   if (aligned_size < size)
    458  1.72  christos     memory_exhausted(_("alignment overflow"));
    459  1.72  christos   return aligned_size;
    460  1.72  christos }
    461  1.72  christos 
    462  1.53  christos #if !HAVE_STRDUP
    463  1.53  christos static char *
    464  1.53  christos strdup(char const *str)
    465  1.53  christos {
    466  1.53  christos 	char *result = malloc(strlen(str) + 1);
    467  1.53  christos 	return result ? strcpy(result, str) : result;
    468  1.53  christos }
    469  1.53  christos #endif
    470  1.53  christos 
    471  1.69  christos static void *
    472  1.53  christos memcheck(void *ptr)
    473   1.1       jtc {
    474  1.45  christos 	if (ptr == NULL)
    475  1.45  christos 		memory_exhausted(strerror(errno));
    476   1.1       jtc 	return ptr;
    477   1.1       jtc }
    478   1.1       jtc 
    479  1.71  christos static void * ATTRIBUTE_MALLOC
    480  1.53  christos zic_malloc(size_t size)
    481  1.53  christos {
    482  1.53  christos 	return memcheck(malloc(size));
    483  1.53  christos }
    484  1.53  christos 
    485  1.53  christos static void *
    486  1.53  christos zic_realloc(void *ptr, size_t size)
    487  1.53  christos {
    488  1.53  christos 	return memcheck(realloc(ptr, size));
    489  1.53  christos }
    490  1.53  christos 
    491  1.71  christos static char * ATTRIBUTE_MALLOC
    492  1.53  christos ecpyalloc(char const *str)
    493  1.53  christos {
    494  1.53  christos 	return memcheck(strdup(str));
    495  1.53  christos }
    496   1.1       jtc 
    497  1.45  christos static void *
    498  1.65  christos growalloc(void *ptr, size_t itemsize, ptrdiff_t nitems, ptrdiff_t *nitems_alloc)
    499  1.45  christos {
    500  1.45  christos 	if (nitems < *nitems_alloc)
    501  1.45  christos 		return ptr;
    502  1.45  christos 	else {
    503  1.65  christos 		ptrdiff_t nitems_max = PTRDIFF_MAX - WORK_AROUND_QTBUG_53071;
    504  1.67       kre 		ptrdiff_t amax = (ptrdiff_t)((size_t)nitems_max < SIZE_MAX ?
    505  1.67       kre 		    (size_t)nitems_max : SIZE_MAX);
    506  1.45  christos 		if ((amax - 1) / 3 * 2 < *nitems_alloc)
    507  1.65  christos 			memory_exhausted(_("integer overflow"));
    508  1.65  christos 		*nitems_alloc += (*nitems_alloc >> 1) + 1;
    509  1.53  christos 		return zic_realloc(ptr, size_product(*nitems_alloc, itemsize));
    510  1.45  christos 	}
    511  1.45  christos }
    512  1.45  christos 
    513   1.1       jtc /*
    514   1.1       jtc ** Error handling.
    515   1.1       jtc */
    516   1.1       jtc 
    517   1.1       jtc static void
    518  1.65  christos eats(char const *name, lineno num, char const *rname, lineno rnum)
    519   1.1       jtc {
    520   1.1       jtc 	filename = name;
    521   1.1       jtc 	linenum = num;
    522   1.1       jtc 	rfilename = rname;
    523   1.1       jtc 	rlinenum = rnum;
    524   1.1       jtc }
    525   1.1       jtc 
    526   1.1       jtc static void
    527  1.65  christos eat(char const *name, lineno num)
    528   1.1       jtc {
    529  1.31  christos 	eats(name, num, NULL, -1);
    530   1.1       jtc }
    531   1.1       jtc 
    532  1.43  christos static void ATTRIBUTE_FORMAT((printf, 1, 0))
    533  1.43  christos verror(const char *const string, va_list args)
    534   1.1       jtc {
    535   1.1       jtc 	/*
    536   1.1       jtc 	** Match the format of "cc" to allow sh users to
    537   1.1       jtc 	**	zic ... 2>&1 | error -t "*" -v
    538   1.1       jtc 	** on BSD systems.
    539   1.1       jtc 	*/
    540  1.54  christos 	if (filename)
    541  1.69  christos 	  fprintf(stderr, _("\"%s\", line %"PRIdMAX": "), filename, linenum);
    542  1.43  christos 	vfprintf(stderr, string, args);
    543   1.1       jtc 	if (rfilename != NULL)
    544  1.69  christos 		fprintf(stderr, _(" (rule from \"%s\", line %"PRIdMAX")"),
    545   1.1       jtc 			rfilename, rlinenum);
    546  1.51  christos 	fprintf(stderr, "\n");
    547   1.1       jtc }
    548   1.1       jtc 
    549  1.43  christos static void ATTRIBUTE_FORMAT((printf, 1, 2))
    550  1.43  christos error(const char *const string, ...)
    551   1.5       jtc {
    552  1.43  christos 	va_list args;
    553  1.43  christos 	va_start(args, string);
    554  1.43  christos 	verror(string, args);
    555  1.43  christos 	va_end(args);
    556  1.51  christos 	errors = true;
    557  1.43  christos }
    558  1.43  christos 
    559  1.43  christos static void ATTRIBUTE_FORMAT((printf, 1, 2))
    560  1.43  christos warning(const char *const string, ...)
    561  1.43  christos {
    562  1.43  christos 	va_list args;
    563  1.43  christos 	fprintf(stderr, _("warning: "));
    564  1.43  christos 	va_start(args, string);
    565  1.43  christos 	verror(string, args);
    566  1.43  christos 	va_end(args);
    567  1.51  christos 	warnings = true;
    568  1.51  christos }
    569  1.51  christos 
    570  1.51  christos static void
    571  1.63  christos close_file(FILE *stream, char const *dir, char const *name)
    572  1.51  christos {
    573  1.51  christos   char const *e = (ferror(stream) ? _("I/O error")
    574  1.51  christos 		   : fclose(stream) != 0 ? strerror(errno) : NULL);
    575  1.51  christos   if (e) {
    576  1.63  christos     fprintf(stderr, "%s: %s%s%s%s%s\n", progname,
    577  1.63  christos 	    dir ? dir : "", dir ? "/" : "",
    578  1.63  christos 	    name ? name : "", name ? ": " : "",
    579  1.63  christos 	    e);
    580  1.51  christos     exit(EXIT_FAILURE);
    581  1.51  christos   }
    582   1.5       jtc }
    583   1.5       jtc 
    584  1.41  christos static _Noreturn void
    585  1.25   mlelstv usage(FILE *stream, int status)
    586   1.1       jtc {
    587  1.51  christos   fprintf(stream,
    588  1.51  christos 	  _("%s: usage is %s [ --version ] [ --help ] [ -v ] \\\n"
    589  1.75  christos 	    "\t[ -b {slim|fat} ] [ -d directory ] [ -l localtime ]"
    590  1.75  christos 	    " [ -L leapseconds ] \\\n"
    591  1.75  christos 	    "\t[ -p posixrules ] [ -r '[@lo][/@hi]' ] [ -t localtime-link ] \\\n"
    592  1.74  christos 	    "\t[ filename ... ]\n\n"
    593  1.51  christos 	    "Report bugs to %s.\n"),
    594  1.51  christos 	  progname, progname, REPORT_BUGS_TO);
    595  1.51  christos   if (status == EXIT_SUCCESS)
    596  1.63  christos     close_file(stream, NULL, NULL);
    597  1.51  christos   exit(status);
    598   1.1       jtc }
    599   1.1       jtc 
    600  1.63  christos /* Change the working directory to DIR, possibly creating DIR and its
    601  1.63  christos    ancestors.  After this is done, all files are accessed with names
    602  1.63  christos    relative to DIR.  */
    603  1.63  christos static void
    604  1.63  christos change_directory (char const *dir)
    605  1.63  christos {
    606  1.63  christos   if (chdir(dir) != 0) {
    607  1.63  christos     int chdir_errno = errno;
    608  1.63  christos     if (chdir_errno == ENOENT) {
    609  1.63  christos       mkdirs(dir, false);
    610  1.63  christos       chdir_errno = chdir(dir) == 0 ? 0 : errno;
    611  1.63  christos     }
    612  1.63  christos     if (chdir_errno != 0) {
    613  1.63  christos       fprintf(stderr, _("%s: Can't chdir to %s: %s\n"),
    614  1.63  christos 	      progname, dir, strerror(chdir_errno));
    615  1.63  christos       exit(EXIT_FAILURE);
    616  1.63  christos     }
    617  1.63  christos   }
    618  1.63  christos }
    619  1.63  christos 
    620  1.74  christos #define TIME_T_BITS_IN_FILE 64
    621  1.74  christos 
    622  1.74  christos /* The minimum and maximum values representable in a TZif file.  */
    623  1.74  christos static zic_t const min_time = MINVAL(zic_t, TIME_T_BITS_IN_FILE);
    624  1.74  christos static zic_t const max_time = MAXVAL(zic_t, TIME_T_BITS_IN_FILE);
    625  1.74  christos 
    626  1.74  christos /* The minimum, and one less than the maximum, values specified by
    627  1.74  christos    the -r option.  These default to MIN_TIME and MAX_TIME.  */
    628  1.74  christos static zic_t lo_time = MINVAL(zic_t, TIME_T_BITS_IN_FILE);
    629  1.74  christos static zic_t hi_time = MAXVAL(zic_t, TIME_T_BITS_IN_FILE);
    630  1.74  christos 
    631  1.76  christos /* The time specified by an Expires line, or negative if no such line.  */
    632  1.76  christos static zic_t leapexpires = -1;
    633  1.76  christos 
    634  1.76  christos /* The time specified by an #expires comment, or negative if no such line.  */
    635  1.76  christos static zic_t comment_leapexpires = -1;
    636  1.76  christos 
    637  1.74  christos /* Set the time range of the output to TIMERANGE.
    638  1.74  christos    Return true if successful.  */
    639  1.74  christos static bool
    640  1.74  christos timerange_option(char *timerange)
    641  1.74  christos {
    642  1.74  christos   intmax_t lo = min_time, hi = max_time;
    643  1.74  christos   char *lo_end = timerange, *hi_end;
    644  1.74  christos   if (*timerange == '@') {
    645  1.74  christos     errno = 0;
    646  1.74  christos     lo = strtoimax (timerange + 1, &lo_end, 10);
    647  1.74  christos     if (lo_end == timerange + 1 || (lo == INTMAX_MAX && errno == ERANGE))
    648  1.74  christos       return false;
    649  1.74  christos   }
    650  1.74  christos   hi_end = lo_end;
    651  1.74  christos   if (lo_end[0] == '/' && lo_end[1] == '@') {
    652  1.74  christos     errno = 0;
    653  1.74  christos     hi = strtoimax (lo_end + 2, &hi_end, 10);
    654  1.74  christos     if (hi_end == lo_end + 2 || hi == INTMAX_MIN)
    655  1.74  christos       return false;
    656  1.74  christos     hi -= ! (hi == INTMAX_MAX && errno == ERANGE);
    657  1.74  christos   }
    658  1.74  christos   if (*hi_end || hi < lo || max_time < lo || hi < min_time)
    659  1.74  christos     return false;
    660  1.74  christos   lo_time = lo < min_time ? min_time : lo;
    661  1.74  christos   hi_time = max_time < hi ? max_time : hi;
    662  1.74  christos   return true;
    663  1.74  christos }
    664  1.74  christos 
    665   1.1       jtc static const char *	psxrules;
    666   1.1       jtc static const char *	lcltime;
    667   1.1       jtc static const char *	directory;
    668   1.1       jtc static const char *	leapsec;
    669  1.70  christos static const char *	tzdefault;
    670   1.1       jtc 
    671  1.75  christos /* -1 if the TZif output file should be slim, 0 if default, 1 if the
    672  1.77  christos    output should be fat for backward compatibility.  The default is slim.  */
    673  1.75  christos static int bloat;
    674  1.75  christos 
    675  1.75  christos static bool
    676  1.75  christos want_bloat(void)
    677  1.75  christos {
    678  1.75  christos   return 0 <= bloat;
    679  1.75  christos }
    680  1.75  christos 
    681  1.75  christos #ifndef ZIC_BLOAT_DEFAULT
    682  1.77  christos # define ZIC_BLOAT_DEFAULT "slim"
    683  1.75  christos #endif
    684  1.75  christos 
    685   1.1       jtc int
    686  1.57  christos main(int argc, char **argv)
    687  1.31  christos {
    688  1.65  christos 	int	c, k;
    689  1.65  christos 	ptrdiff_t	i, j;
    690  1.74  christos 	bool timerange_given = false;
    691   1.1       jtc 
    692  1.41  christos #ifdef S_IWGRP
    693  1.57  christos 	umask(umask(S_IWGRP | S_IWOTH) | (S_IWGRP | S_IWOTH));
    694  1.41  christos #endif
    695  1.57  christos #if HAVE_GETTEXT
    696  1.57  christos 	setlocale(LC_MESSAGES, "");
    697   1.5       jtc #ifdef TZ_DOMAINDIR
    698  1.57  christos 	bindtextdomain(TZ_DOMAIN, TZ_DOMAINDIR);
    699   1.5       jtc #endif /* defined TEXTDOMAINDIR */
    700  1.57  christos 	textdomain(TZ_DOMAIN);
    701  1.25   mlelstv #endif /* HAVE_GETTEXT */
    702   1.1       jtc 	progname = argv[0];
    703  1.25   mlelstv 	if (TYPE_BIT(zic_t) < 64) {
    704  1.57  christos 		fprintf(stderr, "%s: %s\n", progname,
    705  1.25   mlelstv 			_("wild compilation-time specification of zic_t"));
    706  1.51  christos 		return EXIT_FAILURE;
    707  1.25   mlelstv 	}
    708  1.65  christos 	for (k = 1; k < argc; k++)
    709  1.65  christos 		if (strcmp(argv[k], "--version") == 0) {
    710  1.57  christos 			printf("zic %s%s\n", PKGVERSION, TZVERSION);
    711  1.63  christos 			close_file(stdout, NULL, NULL);
    712  1.51  christos 			return EXIT_SUCCESS;
    713  1.65  christos 		} else if (strcmp(argv[k], "--help") == 0) {
    714  1.25   mlelstv 			usage(stdout, EXIT_SUCCESS);
    715  1.20    kleink 		}
    716  1.75  christos 	while ((c = getopt(argc, argv, "b:d:l:L:p:r:st:vy:")) != EOF && c != -1)
    717   1.1       jtc 		switch (c) {
    718   1.1       jtc 			default:
    719  1.25   mlelstv 				usage(stderr, EXIT_FAILURE);
    720  1.75  christos 			case 'b':
    721  1.75  christos 				if (strcmp(optarg, "slim") == 0) {
    722  1.75  christos 				  if (0 < bloat)
    723  1.75  christos 				    error(_("incompatible -b options"));
    724  1.75  christos 				  bloat = -1;
    725  1.75  christos 				} else if (strcmp(optarg, "fat") == 0) {
    726  1.75  christos 				  if (bloat < 0)
    727  1.75  christos 				    error(_("incompatible -b options"));
    728  1.75  christos 				  bloat = 1;
    729  1.75  christos 				} else
    730  1.75  christos 				  error(_("invalid option: -b '%s'"), optarg);
    731  1.75  christos 				break;
    732   1.1       jtc 			case 'd':
    733   1.1       jtc 				if (directory == NULL)
    734   1.1       jtc 					directory = optarg;
    735   1.1       jtc 				else {
    736  1.51  christos 					fprintf(stderr,
    737   1.5       jtc _("%s: More than one -d option specified\n"),
    738   1.1       jtc 						progname);
    739  1.51  christos 					return EXIT_FAILURE;
    740   1.1       jtc 				}
    741   1.1       jtc 				break;
    742   1.1       jtc 			case 'l':
    743   1.1       jtc 				if (lcltime == NULL)
    744   1.1       jtc 					lcltime = optarg;
    745   1.1       jtc 				else {
    746  1.51  christos 					fprintf(stderr,
    747   1.5       jtc _("%s: More than one -l option specified\n"),
    748   1.1       jtc 						progname);
    749  1.51  christos 					return EXIT_FAILURE;
    750   1.1       jtc 				}
    751   1.1       jtc 				break;
    752   1.1       jtc 			case 'p':
    753   1.1       jtc 				if (psxrules == NULL)
    754   1.1       jtc 					psxrules = optarg;
    755   1.1       jtc 				else {
    756  1.51  christos 					fprintf(stderr,
    757   1.5       jtc _("%s: More than one -p option specified\n"),
    758   1.1       jtc 						progname);
    759  1.51  christos 					return EXIT_FAILURE;
    760   1.1       jtc 				}
    761   1.1       jtc 				break;
    762  1.70  christos 			case 't':
    763  1.70  christos 				if (tzdefault != NULL) {
    764  1.70  christos 				  fprintf(stderr,
    765  1.70  christos 					  _("%s: More than one -t option"
    766  1.70  christos 					    " specified\n"),
    767  1.70  christos 					  progname);
    768  1.70  christos 				  return EXIT_FAILURE;
    769  1.70  christos 				}
    770  1.70  christos 				tzdefault = optarg;
    771  1.70  christos 				break;
    772   1.1       jtc 			case 'y':
    773  1.77  christos 				warning(_("-y ignored"));
    774   1.1       jtc 				break;
    775   1.1       jtc 			case 'L':
    776   1.1       jtc 				if (leapsec == NULL)
    777   1.1       jtc 					leapsec = optarg;
    778   1.1       jtc 				else {
    779  1.51  christos 					fprintf(stderr,
    780   1.5       jtc _("%s: More than one -L option specified\n"),
    781   1.1       jtc 						progname);
    782  1.51  christos 					return EXIT_FAILURE;
    783   1.1       jtc 				}
    784   1.1       jtc 				break;
    785   1.1       jtc 			case 'v':
    786  1.51  christos 				noise = true;
    787   1.1       jtc 				break;
    788  1.74  christos 			case 'r':
    789  1.74  christos 				if (timerange_given) {
    790  1.74  christos 				  fprintf(stderr,
    791  1.74  christos _("%s: More than one -r option specified\n"),
    792  1.74  christos 					  progname);
    793  1.74  christos 				  return EXIT_FAILURE;
    794  1.74  christos 				}
    795  1.74  christos 				if (! timerange_option(optarg)) {
    796  1.74  christos 				  fprintf(stderr,
    797  1.74  christos _("%s: invalid time range: %s\n"),
    798  1.74  christos 					  progname, optarg);
    799  1.74  christos 				  return EXIT_FAILURE;
    800  1.74  christos 				}
    801  1.74  christos 				timerange_given = true;
    802  1.74  christos 				break;
    803   1.1       jtc 			case 's':
    804  1.54  christos 				warning(_("-s ignored"));
    805   1.1       jtc 				break;
    806   1.1       jtc 		}
    807   1.1       jtc 	if (optind == argc - 1 && strcmp(argv[optind], "=") == 0)
    808  1.25   mlelstv 		usage(stderr, EXIT_FAILURE);	/* usage message by request */
    809  1.75  christos 	if (bloat == 0)
    810  1.75  christos 	  bloat = strcmp(ZIC_BLOAT_DEFAULT, "slim") == 0 ? -1 : 1;
    811   1.1       jtc 	if (directory == NULL)
    812   1.1       jtc 		directory = TZDIR;
    813  1.70  christos 	if (tzdefault == NULL)
    814  1.70  christos 		tzdefault = TZDEFAULT;
    815   1.1       jtc 
    816   1.1       jtc 	if (optind < argc && leapsec != NULL) {
    817   1.1       jtc 		infile(leapsec);
    818   1.1       jtc 		adjleap();
    819   1.1       jtc 	}
    820   1.1       jtc 
    821  1.65  christos 	for (k = optind; k < argc; k++)
    822  1.65  christos 		infile(argv[k]);
    823   1.1       jtc 	if (errors)
    824  1.51  christos 		return EXIT_FAILURE;
    825   1.1       jtc 	associate();
    826  1.63  christos 	change_directory(directory);
    827   1.1       jtc 	for (i = 0; i < nzones; i = j) {
    828   1.1       jtc 		/*
    829   1.1       jtc 		** Find the next non-continuation zone entry.
    830   1.1       jtc 		*/
    831   1.1       jtc 		for (j = i + 1; j < nzones && zones[j].z_name == NULL; ++j)
    832   1.1       jtc 			continue;
    833   1.1       jtc 		outzone(&zones[i], j - i);
    834   1.1       jtc 	}
    835   1.1       jtc 	/*
    836   1.1       jtc 	** Make links.
    837   1.1       jtc 	*/
    838  1.15    kleink 	for (i = 0; i < nlinks; ++i) {
    839  1.15    kleink 		eat(links[i].l_filename, links[i].l_linenum);
    840  1.77  christos 		dolink(links[i].l_target, links[i].l_linkname, false);
    841  1.25   mlelstv 		if (noise)
    842  1.25   mlelstv 			for (j = 0; j < nlinks; ++j)
    843  1.77  christos 				if (strcmp(links[i].l_linkname,
    844  1.77  christos 					links[j].l_target) == 0)
    845  1.25   mlelstv 						warning(_("link to link"));
    846  1.15    kleink 	}
    847  1.15    kleink 	if (lcltime != NULL) {
    848  1.51  christos 		eat(_("command line"), 1);
    849  1.70  christos 		dolink(lcltime, tzdefault, true);
    850  1.15    kleink 	}
    851  1.15    kleink 	if (psxrules != NULL) {
    852  1.51  christos 		eat(_("command line"), 1);
    853  1.63  christos 		dolink(psxrules, TZDEFRULES, true);
    854  1.15    kleink 	}
    855  1.51  christos 	if (warnings && (ferror(stderr) || fclose(stderr) != 0))
    856  1.51  christos 	  return EXIT_FAILURE;
    857  1.51  christos 	return errors ? EXIT_FAILURE : EXIT_SUCCESS;
    858   1.1       jtc }
    859   1.1       jtc 
    860  1.54  christos static bool
    861  1.47  christos componentcheck(char const *name, char const *component,
    862  1.47  christos 	       char const *component_end)
    863  1.47  christos {
    864  1.47  christos 	enum { component_len_max = 14 };
    865  1.65  christos 	ptrdiff_t component_len = component_end - component;
    866  1.53  christos 	if (component_len == 0) {
    867  1.54  christos 	  if (!*name)
    868  1.54  christos 	    error (_("empty file name"));
    869  1.54  christos 	  else
    870  1.54  christos 	    error (_(component == name
    871  1.54  christos 		     ? "file name '%s' begins with '/'"
    872  1.54  christos 		     : *component_end
    873  1.54  christos 		     ? "file name '%s' contains '//'"
    874  1.54  christos 		     : "file name '%s' ends with '/'"),
    875  1.54  christos 		   name);
    876  1.54  christos 	  return false;
    877  1.53  christos 	}
    878  1.47  christos 	if (0 < component_len && component_len <= 2
    879  1.47  christos 	    && component[0] == '.' && component_end[-1] == '.') {
    880  1.65  christos 	  int len = component_len;
    881  1.54  christos 	  error(_("file name '%s' contains '%.*s' component"),
    882  1.65  christos 		name, len, component);
    883  1.54  christos 	  return false;
    884  1.54  christos 	}
    885  1.54  christos 	if (noise) {
    886  1.54  christos 	  if (0 < component_len && component[0] == '-')
    887  1.54  christos 	    warning(_("file name '%s' component contains leading '-'"),
    888  1.54  christos 		    name);
    889  1.54  christos 	  if (component_len_max < component_len)
    890  1.54  christos 	    warning(_("file name '%s' contains overlength component"
    891  1.54  christos 		      " '%.*s...'"),
    892  1.54  christos 		    name, component_len_max, component);
    893  1.47  christos 	}
    894  1.54  christos 	return true;
    895  1.47  christos }
    896  1.47  christos 
    897  1.54  christos static bool
    898  1.47  christos namecheck(const char *name)
    899  1.47  christos {
    900  1.47  christos 	char const *cp;
    901  1.47  christos 
    902  1.47  christos 	/* Benign characters in a portable file name.  */
    903  1.47  christos 	static char const benign[] =
    904  1.47  christos 	  "-/_"
    905  1.47  christos 	  "abcdefghijklmnopqrstuvwxyz"
    906  1.47  christos 	  "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    907  1.47  christos 
    908  1.47  christos 	/* Non-control chars in the POSIX portable character set,
    909  1.47  christos 	   excluding the benign characters.  */
    910  1.47  christos 	static char const printable_and_not_benign[] =
    911  1.47  christos 	  " !\"#$%&'()*+,.0123456789:;<=>?@[\\]^`{|}~";
    912  1.47  christos 
    913  1.47  christos 	char const *component = name;
    914  1.47  christos 	for (cp = name; *cp; cp++) {
    915  1.47  christos 		unsigned char c = *cp;
    916  1.47  christos 		if (noise && !strchr(benign, c)) {
    917  1.47  christos 			warning((strchr(printable_and_not_benign, c)
    918  1.47  christos 				 ? _("file name '%s' contains byte '%c'")
    919  1.47  christos 				 : _("file name '%s' contains byte '\\%o'")),
    920  1.47  christos 				name, c);
    921  1.47  christos 		}
    922  1.47  christos 		if (c == '/') {
    923  1.54  christos 			if (!componentcheck(name, component, cp))
    924  1.54  christos 			  return false;
    925  1.47  christos 			component = cp + 1;
    926  1.47  christos 		}
    927  1.47  christos 	}
    928  1.54  christos 	return componentcheck(name, component, cp);
    929  1.47  christos }
    930  1.47  christos 
    931  1.64       kre /* Create symlink contents suitable for symlinking FROM to TO, as a
    932  1.64       kre    freshly allocated string.  FROM should be a relative file name, and
    933  1.64       kre    is relative to the global variable DIRECTORY.  TO can be either
    934  1.64       kre    relative or absolute.  */
    935  1.64       kre static char *
    936  1.77  christos relname(char const *target, char const *linkname)
    937  1.64       kre {
    938  1.64       kre   size_t i, taillen, dotdotetcsize;
    939  1.64       kre   size_t dir_len = 0, dotdots = 0, linksize = SIZE_MAX;
    940  1.77  christos   char const *f = target;
    941  1.64       kre   char *result = NULL;
    942  1.77  christos   if (*linkname == '/') {
    943  1.64       kre     /* Make F absolute too.  */
    944  1.64       kre     size_t len = strlen(directory);
    945  1.64       kre     bool needslash = len && directory[len - 1] != '/';
    946  1.77  christos     linksize = len + needslash + strlen(target) + 1;
    947  1.64       kre     f = result = emalloc(linksize);
    948  1.64       kre     strcpy(result, directory);
    949  1.64       kre     result[len] = '/';
    950  1.77  christos     strcpy(result + len + needslash, target);
    951  1.64       kre   }
    952  1.77  christos   for (i = 0; f[i] && f[i] == linkname[i]; i++)
    953  1.64       kre     if (f[i] == '/')
    954  1.64       kre       dir_len = i + 1;
    955  1.77  christos   for (; linkname[i]; i++)
    956  1.77  christos     dotdots += linkname[i] == '/' && linkname[i - 1] != '/';
    957  1.68  christos   taillen = strlen(f + dir_len);
    958  1.64       kre   dotdotetcsize = 3 * dotdots + taillen + 1;
    959  1.64       kre   if (dotdotetcsize <= linksize) {
    960  1.64       kre     if (!result)
    961  1.64       kre       result = emalloc(dotdotetcsize);
    962  1.64       kre     for (i = 0; i < dotdots; i++)
    963  1.64       kre       memcpy(result + 3 * i, "../", 3);
    964  1.64       kre     memmove(result + 3 * dotdots, f + dir_len, taillen + 1);
    965  1.64       kre   }
    966  1.64       kre   return result;
    967  1.64       kre }
    968  1.64       kre 
    969  1.68  christos /* Hard link FROM to TO, following any symbolic links.
    970  1.68  christos    Return 0 if successful, an error number otherwise.  */
    971  1.68  christos static int
    972  1.77  christos hardlinkerr(char const *target, char const *linkname)
    973  1.68  christos {
    974  1.77  christos   int r = linkat(AT_FDCWD, target, AT_FDCWD, linkname, AT_SYMLINK_FOLLOW);
    975  1.68  christos   return r == 0 ? 0 : errno;
    976  1.68  christos }
    977  1.68  christos 
    978  1.47  christos static void
    979  1.77  christos dolink(char const *target, char const *linkname, bool staysymlink)
    980   1.1       jtc {
    981  1.77  christos 	bool remove_only = strcmp(target, "-") == 0;
    982  1.77  christos 	bool linkdirs_made = false;
    983  1.63  christos 	int link_errno;
    984   1.1       jtc 
    985   1.1       jtc 	/*
    986   1.1       jtc 	** We get to be careful here since
    987   1.1       jtc 	** there's a fair chance of root running us.
    988   1.1       jtc 	*/
    989  1.77  christos 	if (!remove_only && itsdir(target)) {
    990  1.77  christos 		fprintf(stderr, _("%s: linking target %s/%s failed: %s\n"),
    991  1.77  christos 			progname, directory, target, strerror(EPERM));
    992  1.47  christos 		exit(EXIT_FAILURE);
    993  1.47  christos 	}
    994  1.63  christos 	if (staysymlink)
    995  1.77  christos 	  staysymlink = itssymlink(linkname);
    996  1.77  christos 	if (remove(linkname) == 0)
    997  1.77  christos 	  linkdirs_made = true;
    998  1.63  christos 	else if (errno != ENOENT) {
    999  1.63  christos 	  char const *e = strerror(errno);
   1000  1.63  christos 	  fprintf(stderr, _("%s: Can't remove %s/%s: %s\n"),
   1001  1.77  christos 		  progname, directory, linkname, e);
   1002  1.63  christos 	  exit(EXIT_FAILURE);
   1003  1.63  christos 	}
   1004  1.77  christos 	if (remove_only)
   1005  1.77  christos 	  return;
   1006  1.77  christos 	link_errno = staysymlink ? ENOTSUP : hardlinkerr(target, linkname);
   1007  1.77  christos 	if (link_errno == ENOENT && !linkdirs_made) {
   1008  1.77  christos 	  mkdirs(linkname, true);
   1009  1.77  christos 	  linkdirs_made = true;
   1010  1.77  christos 	  link_errno = hardlinkerr(target, linkname);
   1011  1.63  christos 	}
   1012  1.63  christos 	if (link_errno != 0) {
   1013  1.77  christos 	  bool absolute = *target == '/';
   1014  1.77  christos 	  char *linkalloc = absolute ? NULL : relname(target, linkname);
   1015  1.77  christos 	  char const *contents = absolute ? target : linkalloc;
   1016  1.77  christos 	  int symlink_errno = symlink(contents, linkname) == 0 ? 0 : errno;
   1017  1.77  christos 	  if (!linkdirs_made
   1018  1.71  christos 	      && (symlink_errno == ENOENT || symlink_errno == ENOTSUP)) {
   1019  1.77  christos 	    mkdirs(linkname, true);
   1020  1.71  christos 	    if (symlink_errno == ENOENT)
   1021  1.77  christos 	      symlink_errno = symlink(contents, linkname) == 0 ? 0 : errno;
   1022  1.63  christos 	  }
   1023  1.64       kre 	  free(linkalloc);
   1024  1.63  christos 	  if (symlink_errno == 0) {
   1025  1.63  christos 	    if (link_errno != ENOTSUP)
   1026  1.63  christos 	      warning(_("symbolic link used because hard link failed: %s"),
   1027  1.63  christos 		      strerror(link_errno));
   1028  1.63  christos 	  } else {
   1029  1.63  christos 	    FILE *fp, *tp;
   1030  1.63  christos 	    int c;
   1031  1.77  christos 	    fp = fopen(target, "rb");
   1032  1.63  christos 	    if (!fp) {
   1033  1.63  christos 	      char const *e = strerror(errno);
   1034  1.63  christos 	      fprintf(stderr, _("%s: Can't read %s/%s: %s\n"),
   1035  1.77  christos 		      progname, directory, target, e);
   1036  1.63  christos 	      exit(EXIT_FAILURE);
   1037  1.63  christos 	    }
   1038  1.77  christos 	    tp = fopen(linkname, "wb");
   1039  1.63  christos 	    if (!tp) {
   1040  1.63  christos 	      char const *e = strerror(errno);
   1041  1.63  christos 	      fprintf(stderr, _("%s: Can't create %s/%s: %s\n"),
   1042  1.77  christos 		      progname, directory, linkname, e);
   1043  1.57  christos 	      exit(EXIT_FAILURE);
   1044  1.57  christos 	    }
   1045  1.63  christos 	    while ((c = getc(fp)) != EOF)
   1046  1.63  christos 	      putc(c, tp);
   1047  1.77  christos 	    close_file(fp, directory, target);
   1048  1.77  christos 	    close_file(tp, directory, linkname);
   1049  1.63  christos 	    if (link_errno != ENOTSUP)
   1050  1.63  christos 	      warning(_("copy used because hard link failed: %s"),
   1051  1.63  christos 		      strerror(link_errno));
   1052  1.63  christos 	    else if (symlink_errno != ENOTSUP)
   1053  1.63  christos 	      warning(_("copy used because symbolic link failed: %s"),
   1054  1.63  christos 		      strerror(symlink_errno));
   1055  1.57  christos 	  }
   1056   1.1       jtc 	}
   1057   1.1       jtc }
   1058   1.1       jtc 
   1059  1.68  christos /* Return true if NAME is a directory.  */
   1060  1.68  christos static bool
   1061  1.74  christos itsdir(char const *name)
   1062   1.1       jtc {
   1063  1.47  christos 	struct stat st;
   1064  1.68  christos 	int res = stat(name, &st);
   1065  1.47  christos #ifdef S_ISDIR
   1066  1.68  christos 	if (res == 0)
   1067  1.68  christos 		return S_ISDIR(st.st_mode) != 0;
   1068  1.68  christos #endif
   1069  1.68  christos 	if (res == 0 || errno == EOVERFLOW) {
   1070  1.63  christos 		size_t n = strlen(name);
   1071  1.63  christos 		char *nameslashdot = emalloc(n + 3);
   1072  1.63  christos 		bool dir;
   1073  1.63  christos 		memcpy(nameslashdot, name, n);
   1074  1.63  christos 		strcpy(&nameslashdot[n], &"/."[! (n && name[n - 1] != '/')]);
   1075  1.68  christos 		dir = stat(nameslashdot, &st) == 0 || errno == EOVERFLOW;
   1076  1.47  christos 		free(nameslashdot);
   1077  1.57  christos 		return dir;
   1078  1.47  christos 	}
   1079  1.68  christos 	return false;
   1080  1.68  christos }
   1081  1.68  christos 
   1082  1.68  christos /* Return true if NAME is a symbolic link.  */
   1083  1.68  christos static bool
   1084  1.68  christos itssymlink(char const *name)
   1085  1.68  christos {
   1086  1.68  christos   char c;
   1087  1.68  christos   return 0 <= readlink(name, &c, 1);
   1088   1.1       jtc }
   1089   1.1       jtc 
   1090   1.1       jtc /*
   1091   1.1       jtc ** Associate sets of rules with zones.
   1092   1.1       jtc */
   1093   1.1       jtc 
   1094   1.1       jtc /*
   1095   1.1       jtc ** Sort by rule name.
   1096   1.1       jtc */
   1097   1.1       jtc 
   1098   1.1       jtc static int
   1099  1.31  christos rcomp(const void *cp1, const void *cp2)
   1100   1.1       jtc {
   1101   1.1       jtc 	return strcmp(((const struct rule *) cp1)->r_name,
   1102   1.1       jtc 		((const struct rule *) cp2)->r_name);
   1103   1.1       jtc }
   1104   1.1       jtc 
   1105   1.1       jtc static void
   1106  1.25   mlelstv associate(void)
   1107   1.1       jtc {
   1108  1.31  christos 	struct zone *	zp;
   1109  1.31  christos 	struct rule *	rp;
   1110  1.75  christos 	ptrdiff_t	i, j, base, out;
   1111   1.1       jtc 
   1112   1.5       jtc 	if (nrules != 0) {
   1113  1.57  christos 		qsort(rules, (size_t)nrules, sizeof *rules, rcomp);
   1114   1.5       jtc 		for (i = 0; i < nrules - 1; ++i) {
   1115   1.5       jtc 			if (strcmp(rules[i].r_name,
   1116   1.5       jtc 				rules[i + 1].r_name) != 0)
   1117   1.5       jtc 					continue;
   1118   1.5       jtc 			if (strcmp(rules[i].r_filename,
   1119   1.5       jtc 				rules[i + 1].r_filename) == 0)
   1120   1.5       jtc 					continue;
   1121   1.5       jtc 			eat(rules[i].r_filename, rules[i].r_linenum);
   1122   1.5       jtc 			warning(_("same rule name in multiple files"));
   1123   1.5       jtc 			eat(rules[i + 1].r_filename, rules[i + 1].r_linenum);
   1124   1.5       jtc 			warning(_("same rule name in multiple files"));
   1125   1.5       jtc 			for (j = i + 2; j < nrules; ++j) {
   1126   1.5       jtc 				if (strcmp(rules[i].r_name,
   1127   1.5       jtc 					rules[j].r_name) != 0)
   1128   1.5       jtc 						break;
   1129   1.5       jtc 				if (strcmp(rules[i].r_filename,
   1130   1.5       jtc 					rules[j].r_filename) == 0)
   1131   1.5       jtc 						continue;
   1132   1.5       jtc 				if (strcmp(rules[i + 1].r_filename,
   1133   1.5       jtc 					rules[j].r_filename) == 0)
   1134   1.5       jtc 						continue;
   1135   1.5       jtc 				break;
   1136   1.5       jtc 			}
   1137   1.5       jtc 			i = j - 1;
   1138   1.5       jtc 		}
   1139   1.5       jtc 	}
   1140   1.1       jtc 	for (i = 0; i < nzones; ++i) {
   1141   1.1       jtc 		zp = &zones[i];
   1142   1.1       jtc 		zp->z_rules = NULL;
   1143   1.1       jtc 		zp->z_nrules = 0;
   1144   1.1       jtc 	}
   1145   1.1       jtc 	for (base = 0; base < nrules; base = out) {
   1146   1.1       jtc 		rp = &rules[base];
   1147   1.1       jtc 		for (out = base + 1; out < nrules; ++out)
   1148   1.1       jtc 			if (strcmp(rp->r_name, rules[out].r_name) != 0)
   1149   1.1       jtc 				break;
   1150   1.1       jtc 		for (i = 0; i < nzones; ++i) {
   1151   1.1       jtc 			zp = &zones[i];
   1152   1.1       jtc 			if (strcmp(zp->z_rule, rp->r_name) != 0)
   1153   1.1       jtc 				continue;
   1154   1.1       jtc 			zp->z_rules = rp;
   1155   1.1       jtc 			zp->z_nrules = out - base;
   1156   1.1       jtc 		}
   1157   1.1       jtc 	}
   1158   1.1       jtc 	for (i = 0; i < nzones; ++i) {
   1159   1.1       jtc 		zp = &zones[i];
   1160   1.1       jtc 		if (zp->z_nrules == 0) {
   1161   1.1       jtc 			/*
   1162   1.1       jtc 			** Maybe we have a local standard time offset.
   1163   1.1       jtc 			*/
   1164   1.1       jtc 			eat(zp->z_filename, zp->z_linenum);
   1165  1.75  christos 			zp->z_save = getsave(zp->z_rule, &zp->z_isdst);
   1166   1.1       jtc 			/*
   1167   1.1       jtc 			** Note, though, that if there's no rule,
   1168   1.1       jtc 			** a '%s' in the format is a bad thing.
   1169   1.1       jtc 			*/
   1170  1.55  christos 			if (zp->z_format_specifier == 's')
   1171  1.43  christos 				error("%s", _("%s in ruleless zone"));
   1172   1.1       jtc 		}
   1173   1.1       jtc 	}
   1174   1.1       jtc 	if (errors)
   1175  1.25   mlelstv 		exit(EXIT_FAILURE);
   1176   1.1       jtc }
   1177   1.1       jtc 
   1178   1.1       jtc static void
   1179  1.31  christos infile(const char *name)
   1180   1.1       jtc {
   1181  1.31  christos 	FILE *			fp;
   1182  1.31  christos 	char **		fields;
   1183  1.31  christos 	char *			cp;
   1184  1.31  christos 	const struct lookup *	lp;
   1185  1.31  christos 	int			nfields;
   1186  1.51  christos 	bool			wantcont;
   1187  1.65  christos 	lineno			num;
   1188   1.1       jtc 	char				buf[BUFSIZ];
   1189   1.1       jtc 
   1190   1.1       jtc 	if (strcmp(name, "-") == 0) {
   1191   1.5       jtc 		name = _("standard input");
   1192   1.1       jtc 		fp = stdin;
   1193   1.1       jtc 	} else if ((fp = fopen(name, "r")) == NULL) {
   1194   1.5       jtc 		const char *e = strerror(errno);
   1195   1.7       jtc 
   1196  1.51  christos 		fprintf(stderr, _("%s: Can't open %s: %s\n"),
   1197   1.5       jtc 			progname, name, e);
   1198  1.25   mlelstv 		exit(EXIT_FAILURE);
   1199   1.1       jtc 	}
   1200  1.51  christos 	wantcont = false;
   1201   1.1       jtc 	for (num = 1; ; ++num) {
   1202   1.1       jtc 		eat(name, num);
   1203   1.1       jtc 		if (fgets(buf, (int) sizeof buf, fp) != buf)
   1204   1.1       jtc 			break;
   1205   1.1       jtc 		cp = strchr(buf, '\n');
   1206   1.1       jtc 		if (cp == NULL) {
   1207  1.40  christos 			error(_("line too long"));
   1208  1.25   mlelstv 			exit(EXIT_FAILURE);
   1209   1.1       jtc 		}
   1210   1.1       jtc 		*cp = '\0';
   1211   1.1       jtc 		fields = getfields(buf);
   1212   1.1       jtc 		nfields = 0;
   1213   1.1       jtc 		while (fields[nfields] != NULL) {
   1214   1.1       jtc 			static char	nada;
   1215   1.1       jtc 
   1216   1.3       jtc 			if (strcmp(fields[nfields], "-") == 0)
   1217   1.1       jtc 				fields[nfields] = &nada;
   1218   1.1       jtc 			++nfields;
   1219   1.1       jtc 		}
   1220   1.1       jtc 		if (nfields == 0) {
   1221  1.76  christos 		  if (name == leapsec && *buf == '#')
   1222  1.76  christos 		    sscanf(buf, "#expires %"SCNdZIC, &comment_leapexpires);
   1223   1.1       jtc 		} else if (wantcont) {
   1224   1.1       jtc 			wantcont = inzcont(fields, nfields);
   1225   1.1       jtc 		} else {
   1226  1.69  christos 			struct lookup const *line_codes
   1227  1.69  christos 			  = name == leapsec ? leap_line_codes : zi_line_codes;
   1228   1.1       jtc 			lp = byword(fields[0], line_codes);
   1229   1.1       jtc 			if (lp == NULL)
   1230   1.5       jtc 				error(_("input line of unknown type"));
   1231  1.65  christos 			else switch (lp->l_value) {
   1232   1.1       jtc 				case LC_RULE:
   1233   1.1       jtc 					inrule(fields, nfields);
   1234  1.51  christos 					wantcont = false;
   1235   1.1       jtc 					break;
   1236   1.1       jtc 				case LC_ZONE:
   1237   1.1       jtc 					wantcont = inzone(fields, nfields);
   1238   1.1       jtc 					break;
   1239   1.1       jtc 				case LC_LINK:
   1240   1.1       jtc 					inlink(fields, nfields);
   1241  1.51  christos 					wantcont = false;
   1242   1.1       jtc 					break;
   1243   1.1       jtc 				case LC_LEAP:
   1244  1.69  christos 					inleap(fields, nfields);
   1245  1.51  christos 					wantcont = false;
   1246   1.1       jtc 					break;
   1247  1.76  christos 				case LC_EXPIRES:
   1248  1.76  christos 					inexpires(fields, nfields);
   1249  1.76  christos 					wantcont = false;
   1250  1.76  christos 					break;
   1251   1.1       jtc 				default:	/* "cannot happen" */
   1252  1.51  christos 					fprintf(stderr,
   1253   1.5       jtc _("%s: panic: Invalid l_value %d\n"),
   1254   1.1       jtc 						progname, lp->l_value);
   1255  1.25   mlelstv 					exit(EXIT_FAILURE);
   1256   1.1       jtc 			}
   1257   1.1       jtc 		}
   1258  1.31  christos 		free(fields);
   1259   1.1       jtc 	}
   1260  1.63  christos 	close_file(fp, NULL, filename);
   1261   1.1       jtc 	if (wantcont)
   1262   1.5       jtc 		error(_("expected continuation line not found"));
   1263   1.1       jtc }
   1264   1.1       jtc 
   1265   1.1       jtc /*
   1266   1.1       jtc ** Convert a string of one of the forms
   1267   1.1       jtc **	h	-h	hh:mm	-hh:mm	hh:mm:ss	-hh:mm:ss
   1268   1.1       jtc ** into a number of seconds.
   1269   1.1       jtc ** A null string maps to zero.
   1270   1.1       jtc ** Call error with errstring and return zero on errors.
   1271   1.1       jtc */
   1272   1.1       jtc 
   1273  1.38  christos static zic_t
   1274  1.74  christos gethms(char const *string, char const *errstring)
   1275   1.1       jtc {
   1276  1.38  christos 	zic_t	hh;
   1277  1.71  christos 	int sign, mm = 0, ss = 0;
   1278  1.71  christos 	char hhx, mmx, ssx, xr = '0', xs;
   1279  1.71  christos 	int tenths = 0;
   1280  1.71  christos 	bool ok = true;
   1281   1.1       jtc 
   1282   1.1       jtc 	if (string == NULL || *string == '\0')
   1283   1.1       jtc 		return 0;
   1284  1.74  christos 	if (*string == '-') {
   1285   1.1       jtc 		sign = -1;
   1286   1.1       jtc 		++string;
   1287   1.1       jtc 	} else	sign = 1;
   1288  1.71  christos 	switch (sscanf(string,
   1289  1.71  christos 		       "%"SCNdZIC"%c%d%c%d%c%1d%*[0]%c%*[0123456789]%c",
   1290  1.71  christos 		       &hh, &hhx, &mm, &mmx, &ss, &ssx, &tenths, &xr, &xs)) {
   1291  1.71  christos 	  default: ok = false; break;
   1292  1.71  christos 	  case 8:
   1293  1.71  christos 	    ok = '0' <= xr && xr <= '9';
   1294  1.71  christos 	    /* fallthrough */
   1295  1.71  christos 	  case 7:
   1296  1.71  christos 	    ok &= ssx == '.';
   1297  1.71  christos 	    if (ok && noise)
   1298  1.71  christos 	      warning(_("fractional seconds rejected by"
   1299  1.71  christos 			" pre-2018 versions of zic"));
   1300  1.71  christos 	    /* fallthrough */
   1301  1.71  christos 	  case 5: ok &= mmx == ':'; /* fallthrough */
   1302  1.71  christos 	  case 3: ok &= hhx == ':'; /* fallthrough */
   1303  1.71  christos 	  case 1: break;
   1304  1.71  christos 	}
   1305  1.71  christos 	if (!ok) {
   1306  1.43  christos 			error("%s", errstring);
   1307   1.1       jtc 			return 0;
   1308   1.1       jtc 	}
   1309  1.25   mlelstv 	if (hh < 0 ||
   1310   1.1       jtc 		mm < 0 || mm >= MINSPERHOUR ||
   1311  1.25   mlelstv 		ss < 0 || ss > SECSPERMIN) {
   1312  1.43  christos 			error("%s", errstring);
   1313   1.1       jtc 			return 0;
   1314   1.1       jtc 	}
   1315  1.41  christos 	if (ZIC_MAX / SECSPERHOUR < hh) {
   1316  1.25   mlelstv 		error(_("time overflow"));
   1317  1.25   mlelstv 		return 0;
   1318  1.25   mlelstv 	}
   1319  1.71  christos 	ss += 5 + ((ss ^ 1) & (xr == '0')) <= tenths; /* Round to even.  */
   1320  1.25   mlelstv 	if (noise && (hh > HOURSPERDAY ||
   1321  1.25   mlelstv 		(hh == HOURSPERDAY && (mm != 0 || ss != 0))))
   1322  1.25   mlelstv warning(_("values over 24 hours not handled by pre-2007 versions of zic"));
   1323  1.41  christos 	return oadd(sign * hh * SECSPERHOUR,
   1324  1.41  christos 		    sign * (mm * SECSPERMIN + ss));
   1325   1.1       jtc }
   1326   1.1       jtc 
   1327  1.71  christos static zic_t
   1328  1.75  christos getsave(char *field, bool *isdst)
   1329  1.71  christos {
   1330  1.71  christos   int dst = -1;
   1331  1.75  christos   zic_t save;
   1332  1.71  christos   size_t fieldlen = strlen(field);
   1333  1.71  christos   if (fieldlen != 0) {
   1334  1.71  christos     char *ep = field + fieldlen - 1;
   1335  1.71  christos     switch (*ep) {
   1336  1.71  christos       case 'd': dst = 1; *ep = '\0'; break;
   1337  1.71  christos       case 's': dst = 0; *ep = '\0'; break;
   1338  1.71  christos     }
   1339  1.71  christos   }
   1340  1.75  christos   save = gethms(field, _("invalid saved time"));
   1341  1.75  christos   *isdst = dst < 0 ? save != 0 : dst;
   1342  1.75  christos   return save;
   1343  1.71  christos }
   1344  1.71  christos 
   1345   1.1       jtc static void
   1346  1.55  christos inrule(char **fields, int nfields)
   1347   1.1       jtc {
   1348   1.1       jtc 	static struct rule	r;
   1349   1.1       jtc 
   1350   1.1       jtc 	if (nfields != RULE_FIELDS) {
   1351   1.5       jtc 		error(_("wrong number of fields on Rule line"));
   1352   1.1       jtc 		return;
   1353   1.1       jtc 	}
   1354  1.74  christos 	switch (*fields[RF_NAME]) {
   1355  1.74  christos 	  case '\0':
   1356  1.74  christos 	  case ' ': case '\f': case '\n': case '\r': case '\t': case '\v':
   1357  1.74  christos 	  case '+': case '-':
   1358  1.74  christos 	  case '0': case '1': case '2': case '3': case '4':
   1359  1.74  christos 	  case '5': case '6': case '7': case '8': case '9':
   1360  1.74  christos 		error(_("Invalid rule name \"%s\""), fields[RF_NAME]);
   1361   1.1       jtc 		return;
   1362   1.1       jtc 	}
   1363   1.1       jtc 	r.r_filename = filename;
   1364   1.1       jtc 	r.r_linenum = linenum;
   1365  1.75  christos 	r.r_save = getsave(fields[RF_SAVE], &r.r_isdst);
   1366   1.1       jtc 	rulesub(&r, fields[RF_LOYEAR], fields[RF_HIYEAR], fields[RF_COMMAND],
   1367   1.1       jtc 		fields[RF_MONTH], fields[RF_DAY], fields[RF_TOD]);
   1368   1.1       jtc 	r.r_name = ecpyalloc(fields[RF_NAME]);
   1369   1.1       jtc 	r.r_abbrvar = ecpyalloc(fields[RF_ABBRVAR]);
   1370  1.25   mlelstv 	if (max_abbrvar_len < strlen(r.r_abbrvar))
   1371  1.25   mlelstv 		max_abbrvar_len = strlen(r.r_abbrvar);
   1372  1.45  christos 	rules = growalloc(rules, sizeof *rules, nrules, &nrules_alloc);
   1373   1.1       jtc 	rules[nrules++] = r;
   1374   1.1       jtc }
   1375   1.1       jtc 
   1376  1.51  christos static bool
   1377  1.55  christos inzone(char **fields, int nfields)
   1378   1.1       jtc {
   1379  1.65  christos 	ptrdiff_t	i;
   1380   1.1       jtc 
   1381   1.1       jtc 	if (nfields < ZONE_MINFIELDS || nfields > ZONE_MAXFIELDS) {
   1382   1.5       jtc 		error(_("wrong number of fields on Zone line"));
   1383  1.51  christos 		return false;
   1384   1.1       jtc 	}
   1385  1.70  christos 	if (lcltime != NULL && strcmp(fields[ZF_NAME], tzdefault) == 0) {
   1386  1.43  christos 		error(
   1387   1.5       jtc _("\"Zone %s\" line and -l option are mutually exclusive"),
   1388  1.70  christos 			tzdefault);
   1389  1.51  christos 		return false;
   1390   1.1       jtc 	}
   1391   1.1       jtc 	if (strcmp(fields[ZF_NAME], TZDEFRULES) == 0 && psxrules != NULL) {
   1392  1.43  christos 		error(
   1393   1.5       jtc _("\"Zone %s\" line and -p option are mutually exclusive"),
   1394   1.1       jtc 			TZDEFRULES);
   1395  1.51  christos 		return false;
   1396   1.1       jtc 	}
   1397   1.1       jtc 	for (i = 0; i < nzones; ++i)
   1398   1.1       jtc 		if (zones[i].z_name != NULL &&
   1399  1.65  christos 		    strcmp(zones[i].z_name, fields[ZF_NAME]) == 0) {
   1400  1.65  christos 			error(_("duplicate zone name %s"
   1401  1.69  christos 				" (file \"%s\", line %"PRIdMAX")"),
   1402  1.65  christos 				fields[ZF_NAME],
   1403  1.65  christos 				zones[i].z_filename,
   1404  1.65  christos 				zones[i].z_linenum);
   1405  1.65  christos 			return false;
   1406   1.1       jtc 		}
   1407  1.51  christos 	return inzsub(fields, nfields, false);
   1408   1.1       jtc }
   1409   1.1       jtc 
   1410  1.51  christos static bool
   1411  1.55  christos inzcont(char **fields, int nfields)
   1412   1.1       jtc {
   1413   1.1       jtc 	if (nfields < ZONEC_MINFIELDS || nfields > ZONEC_MAXFIELDS) {
   1414   1.5       jtc 		error(_("wrong number of fields on Zone continuation line"));
   1415  1.51  christos 		return false;
   1416   1.1       jtc 	}
   1417  1.51  christos 	return inzsub(fields, nfields, true);
   1418   1.1       jtc }
   1419   1.1       jtc 
   1420  1.51  christos static bool
   1421  1.74  christos inzsub(char **fields, int nfields, bool iscont)
   1422   1.1       jtc {
   1423  1.31  christos 	char *		cp;
   1424  1.55  christos 	char *		cp1;
   1425   1.1       jtc 	static struct zone	z;
   1426  1.75  christos 	int		i_stdoff, i_rule, i_format;
   1427  1.31  christos 	int		i_untilyear, i_untilmonth;
   1428  1.31  christos 	int		i_untilday, i_untiltime;
   1429  1.51  christos 	bool		hasuntil;
   1430   1.1       jtc 
   1431   1.1       jtc 	if (iscont) {
   1432  1.75  christos 		i_stdoff = ZFC_STDOFF;
   1433   1.1       jtc 		i_rule = ZFC_RULE;
   1434   1.1       jtc 		i_format = ZFC_FORMAT;
   1435   1.1       jtc 		i_untilyear = ZFC_TILYEAR;
   1436   1.1       jtc 		i_untilmonth = ZFC_TILMONTH;
   1437   1.1       jtc 		i_untilday = ZFC_TILDAY;
   1438   1.1       jtc 		i_untiltime = ZFC_TILTIME;
   1439   1.1       jtc 		z.z_name = NULL;
   1440  1.54  christos 	} else if (!namecheck(fields[ZF_NAME]))
   1441  1.54  christos 		return false;
   1442  1.54  christos 	else {
   1443  1.75  christos 		i_stdoff = ZF_STDOFF;
   1444   1.1       jtc 		i_rule = ZF_RULE;
   1445   1.1       jtc 		i_format = ZF_FORMAT;
   1446   1.1       jtc 		i_untilyear = ZF_TILYEAR;
   1447   1.1       jtc 		i_untilmonth = ZF_TILMONTH;
   1448   1.1       jtc 		i_untilday = ZF_TILDAY;
   1449   1.1       jtc 		i_untiltime = ZF_TILTIME;
   1450   1.1       jtc 		z.z_name = ecpyalloc(fields[ZF_NAME]);
   1451   1.1       jtc 	}
   1452   1.1       jtc 	z.z_filename = filename;
   1453   1.1       jtc 	z.z_linenum = linenum;
   1454  1.75  christos 	z.z_stdoff = gethms(fields[i_stdoff], _("invalid UT offset"));
   1455   1.1       jtc 	if ((cp = strchr(fields[i_format], '%')) != 0) {
   1456  1.55  christos 		if ((*++cp != 's' && *cp != 'z') || strchr(cp, '%')
   1457  1.55  christos 		    || strchr(fields[i_format], '/')) {
   1458   1.5       jtc 			error(_("invalid abbreviation format"));
   1459  1.51  christos 			return false;
   1460   1.1       jtc 		}
   1461   1.1       jtc 	}
   1462   1.1       jtc 	z.z_rule = ecpyalloc(fields[i_rule]);
   1463  1.55  christos 	z.z_format = cp1 = ecpyalloc(fields[i_format]);
   1464  1.55  christos 	z.z_format_specifier = cp ? *cp : '\0';
   1465  1.55  christos 	if (z.z_format_specifier == 'z') {
   1466  1.55  christos 	  if (noise)
   1467  1.55  christos 	    warning(_("format '%s' not handled by pre-2015 versions of zic"),
   1468  1.55  christos 		    z.z_format);
   1469  1.55  christos 	  cp1[cp - fields[i_format]] = 's';
   1470  1.55  christos 	}
   1471  1.25   mlelstv 	if (max_format_len < strlen(z.z_format))
   1472  1.25   mlelstv 		max_format_len = strlen(z.z_format);
   1473   1.1       jtc 	hasuntil = nfields > i_untilyear;
   1474   1.1       jtc 	if (hasuntil) {
   1475   1.1       jtc 		z.z_untilrule.r_filename = filename;
   1476   1.1       jtc 		z.z_untilrule.r_linenum = linenum;
   1477   1.1       jtc 		rulesub(&z.z_untilrule,
   1478   1.1       jtc 			fields[i_untilyear],
   1479   1.1       jtc 			"only",
   1480   1.1       jtc 			"",
   1481   1.1       jtc 			(nfields > i_untilmonth) ?
   1482   1.1       jtc 			fields[i_untilmonth] : "Jan",
   1483   1.1       jtc 			(nfields > i_untilday) ? fields[i_untilday] : "1",
   1484   1.1       jtc 			(nfields > i_untiltime) ? fields[i_untiltime] : "0");
   1485   1.1       jtc 		z.z_untiltime = rpytime(&z.z_untilrule,
   1486   1.1       jtc 			z.z_untilrule.r_loyear);
   1487   1.1       jtc 		if (iscont && nzones > 0 &&
   1488   1.1       jtc 			z.z_untiltime > min_time &&
   1489   1.1       jtc 			z.z_untiltime < max_time &&
   1490   1.1       jtc 			zones[nzones - 1].z_untiltime > min_time &&
   1491   1.1       jtc 			zones[nzones - 1].z_untiltime < max_time &&
   1492   1.1       jtc 			zones[nzones - 1].z_untiltime >= z.z_untiltime) {
   1493  1.25   mlelstv 				error(_(
   1494  1.25   mlelstv "Zone continuation line end time is not after end time of previous line"
   1495  1.25   mlelstv 					));
   1496  1.51  christos 				return false;
   1497   1.1       jtc 		}
   1498   1.1       jtc 	}
   1499  1.45  christos 	zones = growalloc(zones, sizeof *zones, nzones, &nzones_alloc);
   1500   1.1       jtc 	zones[nzones++] = z;
   1501   1.1       jtc 	/*
   1502   1.1       jtc 	** If there was an UNTIL field on this line,
   1503   1.1       jtc 	** there's more information about the zone on the next line.
   1504   1.1       jtc 	*/
   1505   1.1       jtc 	return hasuntil;
   1506   1.1       jtc }
   1507   1.1       jtc 
   1508  1.76  christos static zic_t
   1509  1.76  christos getleapdatetime(char **fields, int nfields, bool expire_line)
   1510  1.31  christos {
   1511  1.31  christos 	const char *		cp;
   1512  1.31  christos 	const struct lookup *	lp;
   1513  1.65  christos 	zic_t			i, j;
   1514  1.41  christos 	zic_t			year;
   1515  1.41  christos 	int			month, day;
   1516  1.41  christos 	zic_t			dayoff, tod;
   1517  1.41  christos 	zic_t			t;
   1518  1.53  christos 	char			xs;
   1519   1.1       jtc 
   1520   1.1       jtc 	dayoff = 0;
   1521   1.1       jtc 	cp = fields[LP_YEAR];
   1522  1.53  christos 	if (sscanf(cp, "%"SCNdZIC"%c", &year, &xs) != 1) {
   1523  1.25   mlelstv 		/*
   1524  1.25   mlelstv 		** Leapin' Lizards!
   1525  1.25   mlelstv 		*/
   1526  1.25   mlelstv 		error(_("invalid leaping year"));
   1527  1.76  christos 		return -1;
   1528   1.1       jtc 	}
   1529  1.76  christos 	if (!expire_line) {
   1530  1.76  christos 	    if (!leapseen || leapmaxyear < year)
   1531  1.25   mlelstv 		leapmaxyear = year;
   1532  1.76  christos 	    if (!leapseen || leapminyear > year)
   1533  1.25   mlelstv 		leapminyear = year;
   1534  1.76  christos 	    leapseen = true;
   1535  1.76  christos 	}
   1536   1.1       jtc 	j = EPOCH_YEAR;
   1537   1.1       jtc 	while (j != year) {
   1538   1.1       jtc 		if (year > j) {
   1539   1.1       jtc 			i = len_years[isleap(j)];
   1540   1.1       jtc 			++j;
   1541   1.1       jtc 		} else {
   1542   1.1       jtc 			--j;
   1543   1.1       jtc 			i = -len_years[isleap(j)];
   1544   1.1       jtc 		}
   1545  1.41  christos 		dayoff = oadd(dayoff, i);
   1546   1.1       jtc 	}
   1547   1.1       jtc 	if ((lp = byword(fields[LP_MONTH], mon_names)) == NULL) {
   1548   1.5       jtc 		error(_("invalid month name"));
   1549  1.76  christos 		return -1;
   1550   1.1       jtc 	}
   1551   1.1       jtc 	month = lp->l_value;
   1552   1.1       jtc 	j = TM_JANUARY;
   1553   1.1       jtc 	while (j != month) {
   1554   1.1       jtc 		i = len_months[isleap(year)][j];
   1555  1.41  christos 		dayoff = oadd(dayoff, i);
   1556   1.1       jtc 		++j;
   1557   1.1       jtc 	}
   1558   1.1       jtc 	cp = fields[LP_DAY];
   1559  1.53  christos 	if (sscanf(cp, "%d%c", &day, &xs) != 1 ||
   1560   1.1       jtc 		day <= 0 || day > len_months[isleap(year)][month]) {
   1561   1.5       jtc 			error(_("invalid day of month"));
   1562  1.76  christos 			return -1;
   1563   1.1       jtc 	}
   1564  1.41  christos 	dayoff = oadd(dayoff, day - 1);
   1565  1.34    martin 	if (dayoff < min_time / SECSPERDAY) {
   1566  1.20    kleink 		error(_("time too small"));
   1567  1.76  christos 		return -1;
   1568  1.20    kleink 	}
   1569  1.34    martin 	if (dayoff > max_time / SECSPERDAY) {
   1570  1.20    kleink 		error(_("time too large"));
   1571  1.76  christos 		return -1;
   1572   1.1       jtc 	}
   1573  1.46  christos 	t = dayoff * SECSPERDAY;
   1574  1.74  christos 	tod = gethms(fields[LP_TIME], _("invalid time of day"));
   1575  1.76  christos 	t = tadd(t, tod);
   1576  1.76  christos 	if (t < 0)
   1577  1.76  christos 	  error(_("leap second precedes Epoch"));
   1578  1.76  christos 	return t;
   1579  1.76  christos }
   1580  1.76  christos 
   1581  1.76  christos static void
   1582  1.76  christos inleap(char **fields, int nfields)
   1583  1.76  christos {
   1584  1.76  christos   if (nfields != LEAP_FIELDS)
   1585  1.76  christos     error(_("wrong number of fields on Leap line"));
   1586  1.76  christos   else {
   1587  1.76  christos     zic_t t = getleapdatetime(fields, nfields, false);
   1588  1.76  christos     if (0 <= t) {
   1589  1.76  christos       struct lookup const *lp = byword(fields[LP_ROLL], leap_types);
   1590  1.76  christos       if (!lp)
   1591  1.76  christos 	error(_("invalid Rolling/Stationary field on Leap line"));
   1592  1.76  christos       else {
   1593  1.76  christos 	int correction = 0;
   1594  1.76  christos 	if (!fields[LP_CORR][0]) /* infile() turns "-" into "".  */
   1595  1.76  christos 	  correction = -1;
   1596  1.76  christos 	else if (strcmp(fields[LP_CORR], "+") == 0)
   1597  1.76  christos 	  correction = 1;
   1598  1.76  christos 	else
   1599  1.76  christos 	  error(_("invalid CORRECTION field on Leap line"));
   1600  1.76  christos 	if (correction)
   1601  1.76  christos 	  leapadd(t, correction, lp->l_value);
   1602  1.76  christos       }
   1603  1.76  christos     }
   1604  1.76  christos   }
   1605  1.76  christos }
   1606   1.1       jtc 
   1607  1.76  christos static void
   1608  1.76  christos inexpires(char **fields, int nfields)
   1609  1.76  christos {
   1610  1.76  christos   if (nfields != EXPIRES_FIELDS)
   1611  1.76  christos     error(_("wrong number of fields on Expires line"));
   1612  1.76  christos   else if (0 <= leapexpires)
   1613  1.76  christos     error(_("multiple Expires lines"));
   1614  1.76  christos   else
   1615  1.76  christos     leapexpires = getleapdatetime(fields, nfields, true);
   1616   1.1       jtc }
   1617   1.1       jtc 
   1618   1.1       jtc static void
   1619  1.57  christos inlink(char **fields, int nfields)
   1620   1.1       jtc {
   1621   1.1       jtc 	struct link	l;
   1622   1.1       jtc 
   1623   1.1       jtc 	if (nfields != LINK_FIELDS) {
   1624   1.5       jtc 		error(_("wrong number of fields on Link line"));
   1625   1.1       jtc 		return;
   1626   1.1       jtc 	}
   1627  1.77  christos 	if (*fields[LF_TARGET] == '\0') {
   1628  1.77  christos 		error(_("blank TARGET field on Link line"));
   1629   1.1       jtc 		return;
   1630   1.1       jtc 	}
   1631  1.77  christos 	if (! namecheck(fields[LF_LINKNAME]))
   1632  1.54  christos 	  return;
   1633   1.1       jtc 	l.l_filename = filename;
   1634   1.1       jtc 	l.l_linenum = linenum;
   1635  1.77  christos 	l.l_target = ecpyalloc(fields[LF_TARGET]);
   1636  1.77  christos 	l.l_linkname = ecpyalloc(fields[LF_LINKNAME]);
   1637  1.45  christos 	links = growalloc(links, sizeof *links, nlinks, &nlinks_alloc);
   1638   1.1       jtc 	links[nlinks++] = l;
   1639   1.1       jtc }
   1640   1.1       jtc 
   1641   1.1       jtc static void
   1642  1.55  christos rulesub(struct rule *rp, const char *loyearp, const char *hiyearp,
   1643  1.55  christos     const char *typep, const char *monthp, const char *dayp,
   1644  1.55  christos     const char *timep)
   1645  1.31  christos {
   1646  1.31  christos 	const struct lookup *	lp;
   1647  1.31  christos 	const char *		cp;
   1648  1.31  christos 	char *			dp;
   1649  1.31  christos 	char *			ep;
   1650  1.53  christos 	char			xs;
   1651   1.1       jtc 
   1652   1.1       jtc 	if ((lp = byword(monthp, mon_names)) == NULL) {
   1653   1.5       jtc 		error(_("invalid month name"));
   1654   1.1       jtc 		return;
   1655   1.1       jtc 	}
   1656   1.1       jtc 	rp->r_month = lp->l_value;
   1657  1.51  christos 	rp->r_todisstd = false;
   1658  1.75  christos 	rp->r_todisut = false;
   1659   1.1       jtc 	dp = ecpyalloc(timep);
   1660   1.1       jtc 	if (*dp != '\0') {
   1661   1.1       jtc 		ep = dp + strlen(dp) - 1;
   1662   1.1       jtc 		switch (lowerit(*ep)) {
   1663   1.1       jtc 			case 's':	/* Standard */
   1664  1.51  christos 				rp->r_todisstd = true;
   1665  1.75  christos 				rp->r_todisut = false;
   1666   1.1       jtc 				*ep = '\0';
   1667   1.1       jtc 				break;
   1668   1.1       jtc 			case 'w':	/* Wall */
   1669  1.51  christos 				rp->r_todisstd = false;
   1670  1.75  christos 				rp->r_todisut = false;
   1671   1.1       jtc 				*ep = '\0';
   1672   1.7       jtc 				break;
   1673   1.1       jtc 			case 'g':	/* Greenwich */
   1674   1.1       jtc 			case 'u':	/* Universal */
   1675   1.1       jtc 			case 'z':	/* Zulu */
   1676  1.51  christos 				rp->r_todisstd = true;
   1677  1.75  christos 				rp->r_todisut = true;
   1678   1.1       jtc 				*ep = '\0';
   1679   1.1       jtc 				break;
   1680   1.1       jtc 		}
   1681   1.1       jtc 	}
   1682  1.74  christos 	rp->r_tod = gethms(dp, _("invalid time of day"));
   1683  1.31  christos 	free(dp);
   1684   1.1       jtc 	/*
   1685   1.1       jtc 	** Year work.
   1686   1.1       jtc 	*/
   1687   1.1       jtc 	cp = loyearp;
   1688   1.1       jtc 	lp = byword(cp, begin_years);
   1689  1.25   mlelstv 	rp->r_lowasnum = lp == NULL;
   1690  1.65  christos 	if (!rp->r_lowasnum) switch (lp->l_value) {
   1691   1.1       jtc 		case YR_MINIMUM:
   1692  1.41  christos 			rp->r_loyear = ZIC_MIN;
   1693   1.1       jtc 			break;
   1694   1.1       jtc 		case YR_MAXIMUM:
   1695  1.41  christos 			rp->r_loyear = ZIC_MAX;
   1696   1.1       jtc 			break;
   1697   1.1       jtc 		default:	/* "cannot happen" */
   1698  1.51  christos 			fprintf(stderr,
   1699   1.5       jtc 				_("%s: panic: Invalid l_value %d\n"),
   1700   1.1       jtc 				progname, lp->l_value);
   1701  1.25   mlelstv 			exit(EXIT_FAILURE);
   1702  1.53  christos 	} else if (sscanf(cp, "%"SCNdZIC"%c", &rp->r_loyear, &xs) != 1) {
   1703   1.5       jtc 		error(_("invalid starting year"));
   1704   1.1       jtc 		return;
   1705  1.11       jtc 	}
   1706   1.1       jtc 	cp = hiyearp;
   1707  1.25   mlelstv 	lp = byword(cp, end_years);
   1708  1.25   mlelstv 	rp->r_hiwasnum = lp == NULL;
   1709  1.65  christos 	if (!rp->r_hiwasnum) switch (lp->l_value) {
   1710   1.1       jtc 		case YR_MINIMUM:
   1711  1.41  christos 			rp->r_hiyear = ZIC_MIN;
   1712   1.1       jtc 			break;
   1713   1.1       jtc 		case YR_MAXIMUM:
   1714  1.41  christos 			rp->r_hiyear = ZIC_MAX;
   1715   1.1       jtc 			break;
   1716   1.1       jtc 		case YR_ONLY:
   1717   1.1       jtc 			rp->r_hiyear = rp->r_loyear;
   1718   1.1       jtc 			break;
   1719   1.1       jtc 		default:	/* "cannot happen" */
   1720  1.51  christos 			fprintf(stderr,
   1721   1.5       jtc 				_("%s: panic: Invalid l_value %d\n"),
   1722   1.1       jtc 				progname, lp->l_value);
   1723  1.25   mlelstv 			exit(EXIT_FAILURE);
   1724  1.53  christos 	} else if (sscanf(cp, "%"SCNdZIC"%c", &rp->r_hiyear, &xs) != 1) {
   1725   1.5       jtc 		error(_("invalid ending year"));
   1726   1.1       jtc 		return;
   1727  1.11       jtc 	}
   1728   1.1       jtc 	if (rp->r_loyear > rp->r_hiyear) {
   1729   1.5       jtc 		error(_("starting year greater than ending year"));
   1730   1.1       jtc 		return;
   1731   1.1       jtc 	}
   1732  1.77  christos 	if (*typep != '\0') {
   1733  1.77  christos 		error(_("year type \"%s\" is unsupported; use \"-\" instead"),
   1734  1.69  christos 			typep);
   1735  1.77  christos 		return;
   1736   1.1       jtc 	}
   1737   1.1       jtc 	/*
   1738   1.1       jtc 	** Day work.
   1739   1.1       jtc 	** Accept things such as:
   1740   1.1       jtc 	**	1
   1741  1.69  christos 	**	lastSunday
   1742  1.69  christos 	**	last-Sunday (undocumented; warn about this)
   1743   1.1       jtc 	**	Sun<=20
   1744   1.1       jtc 	**	Sun>=7
   1745   1.1       jtc 	*/
   1746   1.1       jtc 	dp = ecpyalloc(dayp);
   1747   1.1       jtc 	if ((lp = byword(dp, lasts)) != NULL) {
   1748   1.1       jtc 		rp->r_dycode = DC_DOWLEQ;
   1749   1.1       jtc 		rp->r_wday = lp->l_value;
   1750   1.1       jtc 		rp->r_dayofmonth = len_months[1][rp->r_month];
   1751   1.1       jtc 	} else {
   1752   1.1       jtc 		if ((ep = strchr(dp, '<')) != 0)
   1753   1.1       jtc 			rp->r_dycode = DC_DOWLEQ;
   1754   1.1       jtc 		else if ((ep = strchr(dp, '>')) != 0)
   1755   1.1       jtc 			rp->r_dycode = DC_DOWGEQ;
   1756   1.1       jtc 		else {
   1757   1.1       jtc 			ep = dp;
   1758   1.1       jtc 			rp->r_dycode = DC_DOM;
   1759   1.1       jtc 		}
   1760   1.1       jtc 		if (rp->r_dycode != DC_DOM) {
   1761   1.1       jtc 			*ep++ = 0;
   1762   1.1       jtc 			if (*ep++ != '=') {
   1763   1.5       jtc 				error(_("invalid day of month"));
   1764  1.31  christos 				free(dp);
   1765   1.1       jtc 				return;
   1766   1.1       jtc 			}
   1767   1.1       jtc 			if ((lp = byword(dp, wday_names)) == NULL) {
   1768   1.5       jtc 				error(_("invalid weekday name"));
   1769  1.31  christos 				free(dp);
   1770   1.1       jtc 				return;
   1771   1.1       jtc 			}
   1772   1.1       jtc 			rp->r_wday = lp->l_value;
   1773   1.1       jtc 		}
   1774  1.53  christos 		if (sscanf(ep, "%d%c", &rp->r_dayofmonth, &xs) != 1 ||
   1775   1.1       jtc 			rp->r_dayofmonth <= 0 ||
   1776   1.1       jtc 			(rp->r_dayofmonth > len_months[1][rp->r_month])) {
   1777   1.5       jtc 				error(_("invalid day of month"));
   1778  1.31  christos 				free(dp);
   1779   1.1       jtc 				return;
   1780   1.1       jtc 		}
   1781   1.1       jtc 	}
   1782  1.31  christos 	free(dp);
   1783   1.1       jtc }
   1784   1.1       jtc 
   1785   1.1       jtc static void
   1786  1.74  christos convert(const int_fast32_t val, char *const buf)
   1787   1.1       jtc {
   1788  1.31  christos 	int	i;
   1789  1.31  christos 	int	shift;
   1790  1.31  christos 	unsigned char *const b = (unsigned char *) buf;
   1791   1.1       jtc 
   1792   1.1       jtc 	for (i = 0, shift = 24; i < 4; ++i, shift -= 8)
   1793  1.31  christos 		b[i] = val >> shift;
   1794   1.1       jtc }
   1795   1.1       jtc 
   1796   1.1       jtc static void
   1797  1.31  christos convert64(const zic_t val, char *const buf)
   1798  1.25   mlelstv {
   1799  1.31  christos 	int	i;
   1800  1.31  christos 	int	shift;
   1801  1.31  christos 	unsigned char *const b = (unsigned char *) buf;
   1802  1.25   mlelstv 
   1803  1.25   mlelstv 	for (i = 0, shift = 56; i < 8; ++i, shift -= 8)
   1804  1.31  christos 		b[i] = val >> shift;
   1805  1.25   mlelstv }
   1806  1.25   mlelstv 
   1807  1.25   mlelstv static void
   1808  1.74  christos puttzcode(const int_fast32_t val, FILE *const fp)
   1809   1.1       jtc {
   1810   1.1       jtc 	char	buf[4];
   1811   1.1       jtc 
   1812   1.1       jtc 	convert(val, buf);
   1813  1.57  christos 	fwrite(buf, sizeof buf, (size_t) 1, fp);
   1814   1.1       jtc }
   1815   1.1       jtc 
   1816  1.25   mlelstv static void
   1817  1.74  christos puttzcodepass(zic_t val, FILE *fp, int pass)
   1818  1.25   mlelstv {
   1819  1.74  christos   if (pass == 1)
   1820  1.74  christos     puttzcode(val, fp);
   1821  1.74  christos   else {
   1822  1.25   mlelstv 	char	buf[8];
   1823  1.25   mlelstv 
   1824  1.25   mlelstv 	convert64(val, buf);
   1825  1.57  christos 	fwrite(buf, sizeof buf, (size_t) 1, fp);
   1826  1.74  christos     }
   1827  1.25   mlelstv }
   1828  1.25   mlelstv 
   1829   1.5       jtc static int
   1830  1.31  christos atcomp(const void *avp, const void *bvp)
   1831   1.5       jtc {
   1832  1.25   mlelstv 	const zic_t	a = ((const struct attype *) avp)->at;
   1833  1.25   mlelstv 	const zic_t	b = ((const struct attype *) bvp)->at;
   1834  1.25   mlelstv 
   1835  1.25   mlelstv 	return (a < b) ? -1 : (a > b);
   1836  1.25   mlelstv }
   1837  1.25   mlelstv 
   1838  1.74  christos struct timerange {
   1839  1.74  christos   int defaulttype;
   1840  1.74  christos   ptrdiff_t base, count;
   1841  1.74  christos   int leapbase, leapcount;
   1842  1.74  christos };
   1843  1.74  christos 
   1844  1.74  christos static struct timerange
   1845  1.74  christos limitrange(struct timerange r, zic_t lo, zic_t hi,
   1846  1.74  christos 	   zic_t const *ats, unsigned char const *types)
   1847  1.74  christos {
   1848  1.74  christos   while (0 < r.count && ats[r.base] < lo) {
   1849  1.74  christos     r.defaulttype = types[r.base];
   1850  1.74  christos     r.count--;
   1851  1.74  christos     r.base++;
   1852  1.74  christos   }
   1853  1.74  christos   while (0 < r.leapcount && trans[r.leapbase] < lo) {
   1854  1.74  christos     r.leapcount--;
   1855  1.74  christos     r.leapbase++;
   1856  1.74  christos   }
   1857  1.74  christos 
   1858  1.74  christos   if (hi < ZIC_MAX) {
   1859  1.74  christos     while (0 < r.count && hi + 1 < ats[r.base + r.count - 1])
   1860  1.74  christos       r.count--;
   1861  1.74  christos     while (0 < r.leapcount && hi + 1 < trans[r.leapbase + r.leapcount - 1])
   1862  1.74  christos       r.leapcount--;
   1863  1.74  christos   }
   1864  1.74  christos 
   1865  1.74  christos   return r;
   1866  1.74  christos }
   1867  1.74  christos 
   1868  1.74  christos static void
   1869  1.74  christos writezone(const char *const name, const char *const string, char version,
   1870  1.74  christos 	int defaulttype)
   1871  1.31  christos {
   1872  1.31  christos 	FILE *			fp;
   1873  1.65  christos 	ptrdiff_t		i, j;
   1874  1.31  christos 	int			pass;
   1875  1.25   mlelstv 	static const struct tzhead	tzh0;
   1876  1.25   mlelstv 	static struct tzhead		tzh;
   1877  1.63  christos 	bool dir_checked = false;
   1878  1.59  christos 	zic_t one = 1;
   1879  1.59  christos 	zic_t y2038_boundary = one << 31;
   1880  1.65  christos 	ptrdiff_t nats = timecnt + WORK_AROUND_QTBUG_53071;
   1881  1.72  christos 
   1882  1.72  christos 	/* Allocate the ATS and TYPES arrays via a single malloc,
   1883  1.72  christos 	   as this is a bit faster.  */
   1884  1.72  christos 	zic_t *ats = zic_malloc(align_to(size_product(nats, sizeof *ats + 1),
   1885  1.72  christos 				_Alignof(zic_t)));
   1886  1.59  christos 	void *typesptr = ats + nats;
   1887  1.45  christos 	unsigned char *types = typesptr;
   1888  1.74  christos 	struct timerange rangeall, range32, range64;
   1889   1.5       jtc 
   1890   1.5       jtc 	/*
   1891   1.5       jtc 	** Sort.
   1892   1.5       jtc 	*/
   1893   1.5       jtc 	if (timecnt > 1)
   1894  1.57  christos 		qsort(attypes, (size_t) timecnt, sizeof *attypes, atcomp);
   1895   1.5       jtc 	/*
   1896   1.5       jtc 	** Optimize.
   1897   1.5       jtc 	*/
   1898   1.5       jtc 	{
   1899  1.65  christos 		ptrdiff_t fromi, toi;
   1900   1.1       jtc 
   1901   1.5       jtc 		toi = 0;
   1902   1.5       jtc 		fromi = 0;
   1903   1.5       jtc 		for ( ; fromi < timecnt; ++fromi) {
   1904  1.75  christos 			if (toi != 0
   1905  1.75  christos 			    && ((attypes[fromi].at
   1906  1.75  christos 				 + utoffs[attypes[toi - 1].type])
   1907  1.75  christos 				<= (attypes[toi - 1].at
   1908  1.75  christos 				    + utoffs[toi == 1 ? 0
   1909  1.75  christos 					     : attypes[toi - 2].type]))) {
   1910  1.25   mlelstv 					attypes[toi - 1].type =
   1911  1.25   mlelstv 						attypes[fromi].type;
   1912  1.25   mlelstv 					continue;
   1913   1.5       jtc 			}
   1914  1.63  christos 			if (toi == 0
   1915  1.63  christos 			    || attypes[fromi].dontmerge
   1916  1.75  christos 			    || (utoffs[attypes[toi - 1].type]
   1917  1.75  christos 				!= utoffs[attypes[fromi].type])
   1918  1.75  christos 			    || (isdsts[attypes[toi - 1].type]
   1919  1.75  christos 				!= isdsts[attypes[fromi].type])
   1920  1.75  christos 			    || (desigidx[attypes[toi - 1].type]
   1921  1.75  christos 				!= desigidx[attypes[fromi].type]))
   1922   1.5       jtc 					attypes[toi++] = attypes[fromi];
   1923   1.5       jtc 		}
   1924   1.5       jtc 		timecnt = toi;
   1925   1.5       jtc 	}
   1926  1.65  christos 
   1927  1.65  christos 	if (noise && timecnt > 1200) {
   1928  1.65  christos 	  if (timecnt > TZ_MAX_TIMES)
   1929  1.65  christos 		warning(_("reference clients mishandle"
   1930  1.65  christos 			  " more than %d transition times"),
   1931  1.65  christos 			TZ_MAX_TIMES);
   1932  1.65  christos 	  else
   1933  1.45  christos 		warning(_("pre-2014 clients may mishandle"
   1934  1.45  christos 			  " more than 1200 transition times"));
   1935  1.65  christos 	}
   1936   1.5       jtc 	/*
   1937   1.5       jtc 	** Transfer.
   1938   1.5       jtc 	*/
   1939   1.5       jtc 	for (i = 0; i < timecnt; ++i) {
   1940   1.5       jtc 		ats[i] = attypes[i].at;
   1941   1.5       jtc 		types[i] = attypes[i].type;
   1942   1.5       jtc 	}
   1943  1.59  christos 
   1944  1.25   mlelstv 	/*
   1945  1.25   mlelstv 	** Correct for leap seconds.
   1946  1.25   mlelstv 	*/
   1947  1.25   mlelstv 	for (i = 0; i < timecnt; ++i) {
   1948  1.25   mlelstv 		j = leapcnt;
   1949  1.25   mlelstv 		while (--j >= 0)
   1950  1.25   mlelstv 			if (ats[i] > trans[j] - corr[j]) {
   1951  1.25   mlelstv 				ats[i] = tadd(ats[i], corr[j]);
   1952  1.25   mlelstv 				break;
   1953  1.25   mlelstv 			}
   1954  1.25   mlelstv 	}
   1955  1.72  christos 
   1956  1.72  christos 	/* Work around QTBUG-53071 for timestamps less than y2038_boundary - 1,
   1957  1.72  christos 	   by inserting a no-op transition at time y2038_boundary - 1.
   1958  1.72  christos 	   This works only for timestamps before the boundary, which
   1959  1.72  christos 	   should be good enough in practice as QTBUG-53071 should be
   1960  1.72  christos 	   long-dead by 2038.  Do this after correcting for leap
   1961  1.72  christos 	   seconds, as the idea is to insert a transition just before
   1962  1.72  christos 	   32-bit time_t rolls around, and this occurs at a slightly
   1963  1.72  christos 	   different moment if transitions are leap-second corrected.  */
   1964  1.75  christos 	if (WORK_AROUND_QTBUG_53071 && timecnt != 0 && want_bloat()
   1965  1.72  christos 	    && ats[timecnt - 1] < y2038_boundary - 1 && strchr(string, '<')) {
   1966  1.72  christos 	  ats[timecnt] = y2038_boundary - 1;
   1967  1.72  christos 	  types[timecnt] = types[timecnt - 1];
   1968  1.72  christos 	  timecnt++;
   1969  1.72  christos 	}
   1970  1.72  christos 
   1971  1.74  christos 	rangeall.defaulttype = defaulttype;
   1972  1.74  christos 	rangeall.base = rangeall.leapbase = 0;
   1973  1.74  christos 	rangeall.count = timecnt;
   1974  1.74  christos 	rangeall.leapcount = leapcnt;
   1975  1.74  christos 	range64 = limitrange(rangeall, lo_time, hi_time, ats, types);
   1976  1.74  christos 	range32 = limitrange(range64, INT32_MIN, INT32_MAX, ats, types);
   1977  1.74  christos 
   1978   1.7       jtc 	/*
   1979   1.7       jtc 	** Remove old file, if any, to snap links.
   1980   1.7       jtc 	*/
   1981  1.63  christos 	if (remove(name) == 0)
   1982  1.63  christos 		dir_checked = true;
   1983  1.63  christos 	else if (errno != ENOENT) {
   1984   1.7       jtc 		const char *e = strerror(errno);
   1985   1.7       jtc 
   1986  1.63  christos 		fprintf(stderr, _("%s: Can't remove %s/%s: %s\n"),
   1987  1.63  christos 			progname, directory, name, e);
   1988  1.25   mlelstv 		exit(EXIT_FAILURE);
   1989   1.7       jtc 	}
   1990  1.63  christos 	fp = fopen(name, "wb");
   1991  1.63  christos 	if (!fp) {
   1992  1.63  christos 	  int fopen_errno = errno;
   1993  1.63  christos 	  if (fopen_errno == ENOENT && !dir_checked) {
   1994  1.63  christos 	    mkdirs(name, true);
   1995  1.63  christos 	    fp = fopen(name, "wb");
   1996  1.63  christos 	    fopen_errno = errno;
   1997  1.63  christos 	  }
   1998  1.63  christos 	  if (!fp) {
   1999  1.63  christos 	    fprintf(stderr, _("%s: Can't create %s/%s: %s\n"),
   2000  1.63  christos 		    progname, directory, name, strerror(fopen_errno));
   2001  1.63  christos 	    exit(EXIT_FAILURE);
   2002  1.63  christos 	  }
   2003   1.1       jtc 	}
   2004  1.25   mlelstv 	for (pass = 1; pass <= 2; ++pass) {
   2005  1.65  christos 		ptrdiff_t	thistimei, thistimecnt, thistimelim;
   2006  1.65  christos 		int	thisleapi, thisleapcnt, thisleaplim;
   2007  1.74  christos 		int currenttype, thisdefaulttype;
   2008  1.74  christos 		bool locut, hicut;
   2009  1.74  christos 		zic_t lo;
   2010  1.74  christos 		int old0;
   2011  1.74  christos 		char		omittype[TZ_MAX_TYPES];
   2012  1.25   mlelstv 		int		typemap[TZ_MAX_TYPES];
   2013  1.75  christos 		int		thistypecnt, stdcnt, utcnt;
   2014  1.25   mlelstv 		char		thischars[TZ_MAX_CHARS];
   2015  1.65  christos 		int		thischarcnt;
   2016  1.65  christos 		bool		toomanytimes;
   2017  1.51  christos 		int		indmap[TZ_MAX_CHARS];
   2018  1.25   mlelstv 
   2019  1.25   mlelstv 		if (pass == 1) {
   2020  1.74  christos 			/* Arguably the default time type in the 32-bit data
   2021  1.74  christos 			   should be range32.defaulttype, which is suited for
   2022  1.74  christos 			   timestamps just before INT32_MIN.  However, zic
   2023  1.74  christos 			   traditionally used the time type of the indefinite
   2024  1.74  christos 			   past instead.  Internet RFC 8532 says readers should
   2025  1.74  christos 			   ignore 32-bit data, so this discrepancy matters only
   2026  1.74  christos 			   to obsolete readers where the traditional type might
   2027  1.74  christos 			   be more appropriate even if it's "wrong".  So, use
   2028  1.74  christos 			   the historical zic value, unless -r specifies a low
   2029  1.74  christos 			   cutoff that excludes some 32-bit timestamps.  */
   2030  1.74  christos 			thisdefaulttype = (lo_time <= INT32_MIN
   2031  1.74  christos 					   ? range64.defaulttype
   2032  1.74  christos 					   : range32.defaulttype);
   2033  1.74  christos 
   2034  1.74  christos 			thistimei = range32.base;
   2035  1.74  christos 			thistimecnt = range32.count;
   2036  1.65  christos 			toomanytimes = thistimecnt >> 31 >> 1 != 0;
   2037  1.74  christos 			thisleapi = range32.leapbase;
   2038  1.74  christos 			thisleapcnt = range32.leapcount;
   2039  1.74  christos 			locut = INT32_MIN < lo_time;
   2040  1.74  christos 			hicut = hi_time < INT32_MAX;
   2041  1.25   mlelstv 		} else {
   2042  1.74  christos 			thisdefaulttype = range64.defaulttype;
   2043  1.74  christos 			thistimei = range64.base;
   2044  1.74  christos 			thistimecnt = range64.count;
   2045  1.65  christos 			toomanytimes = thistimecnt >> 31 >> 31 >> 2 != 0;
   2046  1.74  christos 			thisleapi = range64.leapbase;
   2047  1.74  christos 			thisleapcnt = range64.leapcount;
   2048  1.74  christos 			locut = min_time < lo_time;
   2049  1.74  christos 			hicut = hi_time < max_time;
   2050  1.25   mlelstv 		}
   2051  1.65  christos 		if (toomanytimes)
   2052  1.65  christos 		  error(_("too many transition times"));
   2053  1.74  christos 
   2054  1.74  christos 		/* Keep the last too-low transition if no transition is
   2055  1.74  christos 		   exactly at LO.  The kept transition will be output as
   2056  1.74  christos 		   a LO "transition"; see "Output a LO_TIME transition"
   2057  1.74  christos 		   below.  This is needed when the output is truncated at
   2058  1.74  christos 		   the start, and is also useful when catering to buggy
   2059  1.74  christos 		   32-bit clients that do not use time type 0 for
   2060  1.74  christos 		   timestamps before the first transition.  */
   2061  1.74  christos 		if (0 < thistimei && ats[thistimei] != lo_time) {
   2062  1.74  christos 		  thistimei--;
   2063  1.74  christos 		  thistimecnt++;
   2064  1.74  christos 		  locut = false;
   2065  1.74  christos 		}
   2066  1.74  christos 
   2067  1.25   mlelstv 		thistimelim = thistimei + thistimecnt;
   2068  1.25   mlelstv 		thisleaplim = thisleapi + thisleapcnt;
   2069  1.74  christos 		if (thistimecnt != 0) {
   2070  1.74  christos 		  if (ats[thistimei] == lo_time)
   2071  1.74  christos 		    locut = false;
   2072  1.74  christos 		  if (hi_time < ZIC_MAX && ats[thistimelim - 1] == hi_time + 1)
   2073  1.74  christos 		    hicut = false;
   2074  1.74  christos 		}
   2075  1.74  christos 		memset(omittype, true, typecnt);
   2076  1.74  christos 		omittype[thisdefaulttype] = false;
   2077  1.74  christos 		for (i = thistimei; i < thistimelim; i++)
   2078  1.74  christos 		  omittype[types[i]] = false;
   2079  1.74  christos 
   2080  1.74  christos 		/* Reorder types to make THISDEFAULTTYPE type 0.
   2081  1.74  christos 		   Use TYPEMAP to swap OLD0 and THISDEFAULTTYPE so that
   2082  1.74  christos 		   THISDEFAULTTYPE appears as type 0 in the output instead
   2083  1.74  christos 		   of OLD0.  TYPEMAP also omits unused types.  */
   2084  1.74  christos 		old0 = strlen(omittype);
   2085  1.74  christos 
   2086  1.29  christos #ifndef LEAVE_SOME_PRE_2011_SYSTEMS_IN_THE_LURCH
   2087  1.29  christos 		/*
   2088  1.29  christos 		** For some pre-2011 systems: if the last-to-be-written
   2089  1.29  christos 		** standard (or daylight) type has an offset different from the
   2090  1.29  christos 		** most recently used offset,
   2091  1.29  christos 		** append an (unused) copy of the most recently used type
   2092  1.29  christos 		** (to help get global "altzone" and "timezone" variables
   2093  1.29  christos 		** set correctly).
   2094  1.29  christos 		*/
   2095  1.75  christos 		if (want_bloat()) {
   2096  1.31  christos 			int	mrudst, mrustd, hidst, histd, type;
   2097  1.29  christos 
   2098  1.29  christos 			hidst = histd = mrudst = mrustd = -1;
   2099  1.74  christos 			for (i = thistimei; i < thistimelim; ++i)
   2100  1.29  christos 				if (isdsts[types[i]])
   2101  1.29  christos 					mrudst = types[i];
   2102  1.29  christos 				else	mrustd = types[i];
   2103  1.75  christos 			for (i = old0; i < typecnt; i++) {
   2104  1.75  christos 			  int h = (i == old0 ? thisdefaulttype
   2105  1.75  christos 				   : i == thisdefaulttype ? old0 : i);
   2106  1.75  christos 			  if (!omittype[h]) {
   2107  1.75  christos 			    if (isdsts[h])
   2108  1.75  christos 			      hidst = i;
   2109  1.75  christos 			    else
   2110  1.75  christos 			      histd = i;
   2111  1.75  christos 			  }
   2112  1.75  christos 			}
   2113  1.29  christos 			if (hidst >= 0 && mrudst >= 0 && hidst != mrudst &&
   2114  1.75  christos 				utoffs[hidst] != utoffs[mrudst]) {
   2115  1.29  christos 					isdsts[mrudst] = -1;
   2116  1.75  christos 					type = addtype(utoffs[mrudst],
   2117  1.75  christos 						&chars[desigidx[mrudst]],
   2118  1.51  christos 						true,
   2119  1.29  christos 						ttisstds[mrudst],
   2120  1.75  christos 						ttisuts[mrudst]);
   2121  1.51  christos 					isdsts[mrudst] = 1;
   2122  1.74  christos 					omittype[type] = false;
   2123  1.29  christos 			}
   2124  1.29  christos 			if (histd >= 0 && mrustd >= 0 && histd != mrustd &&
   2125  1.75  christos 				utoffs[histd] != utoffs[mrustd]) {
   2126  1.29  christos 					isdsts[mrustd] = -1;
   2127  1.75  christos 					type = addtype(utoffs[mrustd],
   2128  1.75  christos 						&chars[desigidx[mrustd]],
   2129  1.51  christos 						false,
   2130  1.29  christos 						ttisstds[mrustd],
   2131  1.75  christos 						ttisuts[mrustd]);
   2132  1.51  christos 					isdsts[mrustd] = 0;
   2133  1.75  christos 					omittype[type] = false;
   2134  1.29  christos 			}
   2135  1.29  christos 		}
   2136  1.29  christos #endif /* !defined LEAVE_SOME_PRE_2011_SYSTEMS_IN_THE_LURCH */
   2137  1.74  christos  		thistypecnt = 0;
   2138  1.74  christos 		for (i = old0; i < typecnt; i++)
   2139  1.74  christos 		  if (!omittype[i])
   2140  1.74  christos 		    typemap[i == old0 ? thisdefaulttype
   2141  1.74  christos 			    : i == thisdefaulttype ? old0 : i]
   2142  1.74  christos 		      = thistypecnt++;
   2143  1.74  christos 
   2144  1.36  christos 		for (i = 0; i < (int)(sizeof indmap / sizeof indmap[0]); ++i)
   2145  1.25   mlelstv 			indmap[i] = -1;
   2146  1.75  christos 		thischarcnt = stdcnt = utcnt = 0;
   2147  1.74  christos 		for (i = old0; i < typecnt; i++) {
   2148  1.31  christos 			char *	thisabbr;
   2149  1.25   mlelstv 
   2150  1.74  christos 			if (omittype[i])
   2151  1.25   mlelstv 				continue;
   2152  1.75  christos 			if (ttisstds[i])
   2153  1.75  christos 			  stdcnt = thistypecnt;
   2154  1.75  christos 			if (ttisuts[i])
   2155  1.75  christos 			  utcnt = thistypecnt;
   2156  1.75  christos 			if (indmap[desigidx[i]] >= 0)
   2157  1.25   mlelstv 				continue;
   2158  1.75  christos 			thisabbr = &chars[desigidx[i]];
   2159  1.25   mlelstv 			for (j = 0; j < thischarcnt; ++j)
   2160  1.25   mlelstv 				if (strcmp(&thischars[j], thisabbr) == 0)
   2161  1.25   mlelstv 					break;
   2162  1.25   mlelstv 			if (j == thischarcnt) {
   2163  1.65  christos 				strcpy(&thischars[thischarcnt], thisabbr);
   2164  1.25   mlelstv 				thischarcnt += strlen(thisabbr) + 1;
   2165  1.25   mlelstv 			}
   2166  1.75  christos 			indmap[desigidx[i]] = j;
   2167  1.75  christos 		}
   2168  1.75  christos 		if (pass == 1 && !want_bloat()) {
   2169  1.75  christos 		  utcnt = stdcnt = thisleapcnt = 0;
   2170  1.76  christos 		  thistimecnt = - (locut + hicut);
   2171  1.75  christos 		  thistypecnt = thischarcnt = 1;
   2172  1.75  christos 		  thistimelim = thistimei;
   2173  1.25   mlelstv 		}
   2174  1.57  christos #define DO(field)	fwrite(tzh.field, sizeof tzh.field, (size_t) 1, fp)
   2175  1.25   mlelstv 		tzh = tzh0;
   2176  1.70  christos 		memcpy(tzh.tzh_magic, TZ_MAGIC, sizeof tzh.tzh_magic);
   2177  1.43  christos 		tzh.tzh_version[0] = version;
   2178  1.75  christos 		convert(utcnt, tzh.tzh_ttisutcnt);
   2179  1.75  christos 		convert(stdcnt, tzh.tzh_ttisstdcnt);
   2180  1.41  christos 		convert(thisleapcnt, tzh.tzh_leapcnt);
   2181  1.74  christos 		convert(locut + thistimecnt + hicut, tzh.tzh_timecnt);
   2182  1.41  christos 		convert(thistypecnt, tzh.tzh_typecnt);
   2183  1.41  christos 		convert(thischarcnt, tzh.tzh_charcnt);
   2184  1.25   mlelstv 		DO(tzh_magic);
   2185  1.25   mlelstv 		DO(tzh_version);
   2186  1.25   mlelstv 		DO(tzh_reserved);
   2187  1.75  christos 		DO(tzh_ttisutcnt);
   2188  1.25   mlelstv 		DO(tzh_ttisstdcnt);
   2189  1.25   mlelstv 		DO(tzh_leapcnt);
   2190  1.25   mlelstv 		DO(tzh_timecnt);
   2191  1.25   mlelstv 		DO(tzh_typecnt);
   2192  1.25   mlelstv 		DO(tzh_charcnt);
   2193   1.1       jtc #undef DO
   2194  1.75  christos 		if (pass == 1 && !want_bloat()) {
   2195  1.75  christos 		  /* Output a minimal data block with just one time type.  */
   2196  1.75  christos 		  puttzcode(0, fp);	/* utoff */
   2197  1.75  christos 		  putc(0, fp);		/* dst */
   2198  1.75  christos 		  putc(0, fp);		/* index of abbreviation */
   2199  1.75  christos 		  putc(0, fp);		/* empty-string abbreviation */
   2200  1.75  christos 		  continue;
   2201  1.75  christos 		}
   2202  1.75  christos 
   2203  1.74  christos 		/* Output a LO_TIME transition if needed; see limitrange.
   2204  1.74  christos 		   But do not go below the minimum representable value
   2205  1.74  christos 		   for this pass.  */
   2206  1.74  christos 		lo = pass == 1 && lo_time < INT32_MIN ? INT32_MIN : lo_time;
   2207  1.74  christos 
   2208  1.74  christos 		if (locut)
   2209  1.74  christos 		  puttzcodepass(lo, fp, pass);
   2210  1.74  christos 		for (i = thistimei; i < thistimelim; ++i) {
   2211  1.74  christos 		  zic_t at = ats[i] < lo ? lo : ats[i];
   2212  1.74  christos 		  puttzcodepass(at, fp, pass);
   2213  1.74  christos 		}
   2214  1.74  christos 		if (hicut)
   2215  1.74  christos 		  puttzcodepass(hi_time + 1, fp, pass);
   2216  1.74  christos 		currenttype = 0;
   2217  1.74  christos 		if (locut)
   2218  1.74  christos 		  putc(currenttype, fp);
   2219  1.25   mlelstv 		for (i = thistimei; i < thistimelim; ++i) {
   2220  1.74  christos 		  currenttype = typemap[types[i]];
   2221  1.74  christos 		  putc(currenttype, fp);
   2222  1.74  christos  		}
   2223  1.74  christos 		if (hicut)
   2224  1.74  christos 		  putc(currenttype, fp);
   2225  1.25   mlelstv 
   2226  1.75  christos 		for (i = old0; i < typecnt; i++) {
   2227  1.75  christos 		  int h = (i == old0 ? thisdefaulttype
   2228  1.75  christos 			   : i == thisdefaulttype ? old0 : i);
   2229  1.75  christos 		  if (!omittype[h]) {
   2230  1.75  christos 		    puttzcode(utoffs[h], fp);
   2231  1.75  christos 		    putc(isdsts[h], fp);
   2232  1.75  christos 		    putc(indmap[desigidx[h]], fp);
   2233  1.75  christos 		  }
   2234  1.75  christos 		}
   2235  1.25   mlelstv 		if (thischarcnt != 0)
   2236  1.57  christos 			fwrite(thischars, sizeof thischars[0],
   2237  1.25   mlelstv 				(size_t) thischarcnt, fp);
   2238  1.25   mlelstv 		for (i = thisleapi; i < thisleaplim; ++i) {
   2239  1.31  christos 			zic_t	todo;
   2240  1.25   mlelstv 
   2241  1.25   mlelstv 			if (roll[i]) {
   2242  1.25   mlelstv 				if (timecnt == 0 || trans[i] < ats[0]) {
   2243  1.25   mlelstv 					j = 0;
   2244  1.25   mlelstv 					while (isdsts[j])
   2245  1.25   mlelstv 						if (++j >= typecnt) {
   2246  1.25   mlelstv 							j = 0;
   2247  1.25   mlelstv 							break;
   2248  1.25   mlelstv 						}
   2249  1.25   mlelstv 				} else {
   2250  1.25   mlelstv 					j = 1;
   2251  1.25   mlelstv 					while (j < timecnt &&
   2252  1.25   mlelstv 						trans[i] >= ats[j])
   2253  1.25   mlelstv 							++j;
   2254  1.25   mlelstv 					j = types[j - 1];
   2255  1.25   mlelstv 				}
   2256  1.75  christos 				todo = tadd(trans[i], -utoffs[j]);
   2257  1.25   mlelstv 			} else	todo = trans[i];
   2258  1.74  christos 			puttzcodepass(todo, fp, pass);
   2259  1.25   mlelstv 			puttzcode(corr[i], fp);
   2260  1.25   mlelstv 		}
   2261  1.75  christos 		if (stdcnt != 0)
   2262  1.75  christos 		  for (i = old0; i < typecnt; i++)
   2263  1.74  christos 			if (!omittype[i])
   2264  1.57  christos 				putc(ttisstds[i], fp);
   2265  1.75  christos 		if (utcnt != 0)
   2266  1.75  christos 		  for (i = old0; i < typecnt; i++)
   2267  1.74  christos 			if (!omittype[i])
   2268  1.75  christos 				putc(ttisuts[i], fp);
   2269   1.1       jtc 	}
   2270  1.57  christos 	fprintf(fp, "\n%s\n", string);
   2271  1.63  christos 	close_file(fp, directory, name);
   2272  1.45  christos 	free(ats);
   2273   1.1       jtc }
   2274   1.1       jtc 
   2275  1.55  christos static char const *
   2276  1.55  christos abbroffset(char *buf, zic_t offset)
   2277  1.55  christos {
   2278  1.55  christos 	char sign = '+';
   2279  1.55  christos 	int seconds, minutes;
   2280  1.55  christos 
   2281  1.55  christos 	if (offset < 0) {
   2282  1.55  christos 		offset = -offset;
   2283  1.55  christos 		sign = '-';
   2284  1.55  christos 	}
   2285  1.55  christos 
   2286  1.55  christos 	seconds = offset % SECSPERMIN;
   2287  1.55  christos 	offset /= SECSPERMIN;
   2288  1.55  christos 	minutes = offset % MINSPERHOUR;
   2289  1.55  christos 	offset /= MINSPERHOUR;
   2290  1.55  christos 	if (100 <= offset) {
   2291  1.70  christos 		error(_("%%z UT offset magnitude exceeds 99:59:59"));
   2292  1.55  christos 		return "%z";
   2293  1.55  christos 	} else {
   2294  1.55  christos 		char *p = buf;
   2295  1.55  christos 		*p++ = sign;
   2296  1.55  christos 		*p++ = '0' + offset / 10;
   2297  1.55  christos 		*p++ = '0' + offset % 10;
   2298  1.55  christos 		if (minutes | seconds) {
   2299  1.55  christos 			*p++ = '0' + minutes / 10;
   2300  1.55  christos 			*p++ = '0' + minutes % 10;
   2301  1.55  christos 			if (seconds) {
   2302  1.55  christos 				*p++ = '0' + seconds / 10;
   2303  1.55  christos 				*p++ = '0' + seconds % 10;
   2304  1.55  christos 			}
   2305  1.55  christos 		}
   2306  1.55  christos 		*p = '\0';
   2307  1.55  christos 		return buf;
   2308  1.55  christos 	}
   2309  1.55  christos }
   2310  1.55  christos 
   2311  1.53  christos static size_t
   2312  1.55  christos doabbr(char *abbr, int abbrlen, struct zone const *zp, const char *letters,
   2313  1.75  christos     bool isdst, zic_t save, bool doquotes)
   2314  1.31  christos {
   2315  1.31  christos 	char *	cp;
   2316  1.31  christos 	char *	slashp;
   2317  1.53  christos 	size_t	len;
   2318  1.55  christos 	char const *format = zp->z_format;
   2319  1.25   mlelstv 
   2320  1.25   mlelstv 	slashp = strchr(format, '/');
   2321  1.25   mlelstv 	if (slashp == NULL) {
   2322  1.55  christos 		char letterbuf[PERCENT_Z_LEN_BOUND + 1];
   2323  1.55  christos 		if (zp->z_format_specifier == 'z')
   2324  1.75  christos 			letters = abbroffset(letterbuf, zp->z_stdoff + save);
   2325  1.55  christos 		else if (!letters)
   2326  1.55  christos 			letters = "%s";
   2327  1.57  christos 		snprintf(abbr, abbrlen, format, letters);
   2328  1.71  christos 	} else if (isdst) {
   2329  1.57  christos 		strlcpy(abbr, slashp + 1, abbrlen);
   2330  1.25   mlelstv 	} else {
   2331  1.57  christos 		memcpy(abbr, format, slashp - format);
   2332  1.25   mlelstv 		abbr[slashp - format] = '\0';
   2333  1.25   mlelstv 	}
   2334  1.53  christos 	len = strlen(abbr);
   2335  1.25   mlelstv 	if (!doquotes)
   2336  1.53  christos 		return len;
   2337  1.47  christos 	for (cp = abbr; is_alpha(*cp); cp++)
   2338  1.47  christos 		continue;
   2339  1.25   mlelstv 	if (len > 0 && *cp == '\0')
   2340  1.53  christos 		return len;
   2341  1.25   mlelstv 	abbr[len + 2] = '\0';
   2342  1.25   mlelstv 	abbr[len + 1] = '>';
   2343  1.53  christos 	memmove(abbr + 1, abbr, len);
   2344  1.25   mlelstv 	abbr[0] = '<';
   2345  1.53  christos 	return len + 2;
   2346  1.25   mlelstv }
   2347  1.25   mlelstv 
   2348  1.25   mlelstv static void
   2349  1.41  christos updateminmax(const zic_t x)
   2350  1.25   mlelstv {
   2351  1.25   mlelstv 	if (min_year > x)
   2352  1.25   mlelstv 		min_year = x;
   2353  1.25   mlelstv 	if (max_year < x)
   2354  1.25   mlelstv 		max_year = x;
   2355  1.25   mlelstv }
   2356  1.25   mlelstv 
   2357  1.53  christos static int
   2358  1.38  christos stringoffset(char *result, zic_t offset)
   2359  1.31  christos {
   2360  1.31  christos 	int	hours;
   2361  1.31  christos 	int	minutes;
   2362  1.31  christos 	int	seconds;
   2363  1.53  christos 	bool negative = offset < 0;
   2364  1.53  christos 	int len = negative;
   2365  1.25   mlelstv 
   2366  1.53  christos 	if (negative) {
   2367  1.25   mlelstv 		offset = -offset;
   2368  1.53  christos 		result[0] = '-';
   2369  1.25   mlelstv 	}
   2370  1.25   mlelstv 	seconds = offset % SECSPERMIN;
   2371  1.25   mlelstv 	offset /= SECSPERMIN;
   2372  1.25   mlelstv 	minutes = offset % MINSPERHOUR;
   2373  1.25   mlelstv 	offset /= MINSPERHOUR;
   2374  1.25   mlelstv 	hours = offset;
   2375  1.43  christos 	if (hours >= HOURSPERDAY * DAYSPERWEEK) {
   2376  1.25   mlelstv 		result[0] = '\0';
   2377  1.53  christos 		return 0;
   2378  1.25   mlelstv 	}
   2379  1.53  christos 	len += sprintf(result + len, "%d", hours);
   2380  1.25   mlelstv 	if (minutes != 0 || seconds != 0) {
   2381  1.53  christos 		len += sprintf(result + len, ":%02d", minutes);
   2382  1.25   mlelstv 		if (seconds != 0)
   2383  1.53  christos 			len += sprintf(result + len, ":%02d", seconds);
   2384  1.25   mlelstv 	}
   2385  1.53  christos 	return len;
   2386  1.25   mlelstv }
   2387  1.25   mlelstv 
   2388  1.25   mlelstv static int
   2389  1.75  christos stringrule(char *result, struct rule *const rp, zic_t save, const zic_t stdoff)
   2390  1.25   mlelstv {
   2391  1.43  christos 	zic_t	tod = rp->r_tod;
   2392  1.43  christos 	int	compat = 0;
   2393  1.25   mlelstv 
   2394  1.25   mlelstv 	if (rp->r_dycode == DC_DOM) {
   2395  1.31  christos 		int	month, total;
   2396  1.25   mlelstv 
   2397  1.25   mlelstv 		if (rp->r_dayofmonth == 29 && rp->r_month == TM_FEBRUARY)
   2398  1.25   mlelstv 			return -1;
   2399  1.25   mlelstv 		total = 0;
   2400  1.25   mlelstv 		for (month = 0; month < rp->r_month; ++month)
   2401  1.25   mlelstv 			total += len_months[0][month];
   2402  1.43  christos 		/* Omit the "J" in Jan and Feb, as that's shorter.  */
   2403  1.43  christos 		if (rp->r_month <= 1)
   2404  1.53  christos 		  result += sprintf(result, "%d", total + rp->r_dayofmonth - 1);
   2405  1.43  christos 		else
   2406  1.53  christos 		  result += sprintf(result, "J%d", total + rp->r_dayofmonth);
   2407  1.25   mlelstv 	} else {
   2408  1.31  christos 		int	week;
   2409  1.43  christos 		int	wday = rp->r_wday;
   2410  1.43  christos 		int	wdayoff;
   2411  1.25   mlelstv 
   2412  1.25   mlelstv 		if (rp->r_dycode == DC_DOWGEQ) {
   2413  1.43  christos 			wdayoff = (rp->r_dayofmonth - 1) % DAYSPERWEEK;
   2414  1.43  christos 			if (wdayoff)
   2415  1.43  christos 				compat = 2013;
   2416  1.43  christos 			wday -= wdayoff;
   2417  1.43  christos 			tod += wdayoff * SECSPERDAY;
   2418  1.43  christos 			week = 1 + (rp->r_dayofmonth - 1) / DAYSPERWEEK;
   2419  1.25   mlelstv 		} else if (rp->r_dycode == DC_DOWLEQ) {
   2420  1.25   mlelstv 			if (rp->r_dayofmonth == len_months[1][rp->r_month])
   2421  1.25   mlelstv 				week = 5;
   2422  1.25   mlelstv 			else {
   2423  1.43  christos 				wdayoff = rp->r_dayofmonth % DAYSPERWEEK;
   2424  1.43  christos 				if (wdayoff)
   2425  1.43  christos 					compat = 2013;
   2426  1.43  christos 				wday -= wdayoff;
   2427  1.43  christos 				tod += wdayoff * SECSPERDAY;
   2428  1.29  christos 				week = rp->r_dayofmonth / DAYSPERWEEK;
   2429  1.25   mlelstv 			}
   2430  1.25   mlelstv 		} else	return -1;	/* "cannot happen" */
   2431  1.43  christos 		if (wday < 0)
   2432  1.43  christos 			wday += DAYSPERWEEK;
   2433  1.53  christos 		result += sprintf(result, "M%d.%d.%d",
   2434  1.53  christos 				  rp->r_month + 1, week, wday);
   2435  1.25   mlelstv 	}
   2436  1.75  christos 	if (rp->r_todisut)
   2437  1.75  christos 	  tod += stdoff;
   2438  1.71  christos 	if (rp->r_todisstd && !rp->r_isdst)
   2439  1.75  christos 	  tod += save;
   2440  1.25   mlelstv 	if (tod != 2 * SECSPERMIN * MINSPERHOUR) {
   2441  1.53  christos 		*result++ = '/';
   2442  1.53  christos 		if (! stringoffset(result, tod))
   2443  1.25   mlelstv 			return -1;
   2444  1.43  christos 		if (tod < 0) {
   2445  1.43  christos 			if (compat < 2013)
   2446  1.43  christos 				compat = 2013;
   2447  1.43  christos 		} else if (SECSPERDAY <= tod) {
   2448  1.43  christos 			if (compat < 1994)
   2449  1.43  christos 				compat = 1994;
   2450  1.43  christos 		}
   2451  1.25   mlelstv 	}
   2452  1.43  christos 	return compat;
   2453  1.43  christos }
   2454  1.43  christos 
   2455  1.43  christos static int
   2456  1.43  christos rule_cmp(struct rule const *a, struct rule const *b)
   2457  1.43  christos {
   2458  1.43  christos 	if (!a)
   2459  1.43  christos 		return -!!b;
   2460  1.43  christos 	if (!b)
   2461  1.43  christos 		return 1;
   2462  1.43  christos 	if (a->r_hiyear != b->r_hiyear)
   2463  1.43  christos 		return a->r_hiyear < b->r_hiyear ? -1 : 1;
   2464  1.43  christos 	if (a->r_month - b->r_month != 0)
   2465  1.43  christos 		return a->r_month - b->r_month;
   2466  1.43  christos 	return a->r_dayofmonth - b->r_dayofmonth;
   2467  1.25   mlelstv }
   2468  1.25   mlelstv 
   2469  1.43  christos static int
   2470  1.75  christos stringzone(char *result, int resultlen, const struct zone *const zpfirst,
   2471  1.31  christos     const int zonecount)
   2472  1.31  christos {
   2473  1.31  christos 	const struct zone *	zp;
   2474  1.31  christos 	struct rule *		rp;
   2475  1.31  christos 	struct rule *		stdrp;
   2476  1.31  christos 	struct rule *		dstrp;
   2477  1.65  christos 	ptrdiff_t	i;
   2478  1.31  christos 	const char *		abbrvar;
   2479  1.43  christos 	int			compat = 0;
   2480  1.43  christos 	int			c;
   2481  1.53  christos 	size_t			len;
   2482  1.53  christos 	int			offsetlen;
   2483  1.43  christos 	struct rule		stdr, dstr;
   2484  1.25   mlelstv 
   2485  1.25   mlelstv 	result[0] = '\0';
   2486  1.74  christos 
   2487  1.74  christos 	/* Internet RFC 8536 section 5.1 says to use an empty TZ string if
   2488  1.74  christos 	   future timestamps are truncated.  */
   2489  1.74  christos 	if (hi_time < max_time)
   2490  1.74  christos 	  return -1;
   2491  1.74  christos 
   2492  1.25   mlelstv 	zp = zpfirst + zonecount - 1;
   2493  1.25   mlelstv 	stdrp = dstrp = NULL;
   2494  1.25   mlelstv 	for (i = 0; i < zp->z_nrules; ++i) {
   2495  1.25   mlelstv 		rp = &zp->z_rules[i];
   2496  1.41  christos 		if (rp->r_hiwasnum || rp->r_hiyear != ZIC_MAX)
   2497  1.25   mlelstv 			continue;
   2498  1.71  christos 		if (!rp->r_isdst) {
   2499  1.25   mlelstv 			if (stdrp == NULL)
   2500  1.25   mlelstv 				stdrp = rp;
   2501  1.43  christos 			else	return -1;
   2502  1.25   mlelstv 		} else {
   2503  1.25   mlelstv 			if (dstrp == NULL)
   2504  1.25   mlelstv 				dstrp = rp;
   2505  1.43  christos 			else	return -1;
   2506  1.25   mlelstv 		}
   2507  1.25   mlelstv 	}
   2508  1.25   mlelstv 	if (stdrp == NULL && dstrp == NULL) {
   2509  1.25   mlelstv 		/*
   2510  1.25   mlelstv 		** There are no rules running through "max".
   2511  1.43  christos 		** Find the latest std rule in stdabbrrp
   2512  1.43  christos 		** and latest rule of any type in stdrp.
   2513  1.25   mlelstv 		*/
   2514  1.43  christos 		struct rule *stdabbrrp = NULL;
   2515  1.25   mlelstv 		for (i = 0; i < zp->z_nrules; ++i) {
   2516  1.25   mlelstv 			rp = &zp->z_rules[i];
   2517  1.71  christos 			if (!rp->r_isdst && rule_cmp(stdabbrrp, rp) < 0)
   2518  1.43  christos 				stdabbrrp = rp;
   2519  1.43  christos 			if (rule_cmp(stdrp, rp) < 0)
   2520  1.43  christos 				stdrp = rp;
   2521  1.25   mlelstv 		}
   2522  1.71  christos 		if (stdrp != NULL && stdrp->r_isdst) {
   2523  1.43  christos 			/* Perpetual DST.  */
   2524  1.43  christos 			dstr.r_month = TM_JANUARY;
   2525  1.43  christos 			dstr.r_dycode = DC_DOM;
   2526  1.43  christos 			dstr.r_dayofmonth = 1;
   2527  1.43  christos 			dstr.r_tod = 0;
   2528  1.75  christos 			dstr.r_todisstd = dstr.r_todisut = false;
   2529  1.71  christos 			dstr.r_isdst = stdrp->r_isdst;
   2530  1.75  christos 			dstr.r_save = stdrp->r_save;
   2531  1.43  christos 			dstr.r_abbrvar = stdrp->r_abbrvar;
   2532  1.43  christos 			stdr.r_month = TM_DECEMBER;
   2533  1.43  christos 			stdr.r_dycode = DC_DOM;
   2534  1.43  christos 			stdr.r_dayofmonth = 31;
   2535  1.75  christos 			stdr.r_tod = SECSPERDAY + stdrp->r_save;
   2536  1.75  christos 			stdr.r_todisstd = stdr.r_todisut = false;
   2537  1.71  christos 			stdr.r_isdst = false;
   2538  1.75  christos 			stdr.r_save = 0;
   2539  1.43  christos 			stdr.r_abbrvar
   2540  1.43  christos 			  = (stdabbrrp ? stdabbrrp->r_abbrvar : "");
   2541  1.43  christos 			dstrp = &dstr;
   2542  1.43  christos 			stdrp = &stdr;
   2543  1.43  christos 		}
   2544  1.25   mlelstv 	}
   2545  1.71  christos 	if (stdrp == NULL && (zp->z_nrules != 0 || zp->z_isdst))
   2546  1.43  christos 		return -1;
   2547  1.25   mlelstv 	abbrvar = (stdrp == NULL) ? "" : stdrp->r_abbrvar;
   2548  1.71  christos 	len = doabbr(result, resultlen, zp, abbrvar, false, 0, true);
   2549  1.75  christos 	offsetlen = stringoffset(result + len, -zp->z_stdoff);
   2550  1.53  christos 	if (! offsetlen) {
   2551  1.25   mlelstv 		result[0] = '\0';
   2552  1.43  christos 		return -1;
   2553  1.25   mlelstv 	}
   2554  1.53  christos 	len += offsetlen;
   2555  1.25   mlelstv 	if (dstrp == NULL)
   2556  1.43  christos 		return compat;
   2557  1.71  christos 	len += doabbr(result + len, resultlen - len, zp, dstrp->r_abbrvar,
   2558  1.75  christos 		      dstrp->r_isdst, dstrp->r_save, true);
   2559  1.75  christos 	if (dstrp->r_save != SECSPERMIN * MINSPERHOUR) {
   2560  1.53  christos 		offsetlen = stringoffset(result + len,
   2561  1.75  christos 		   - (zp->z_stdoff + dstrp->r_save));
   2562  1.53  christos 		if (! offsetlen) {
   2563  1.51  christos 			result[0] = '\0';
   2564  1.51  christos 			return -1;
   2565  1.25   mlelstv 		}
   2566  1.53  christos 		len += offsetlen;
   2567  1.53  christos 	}
   2568  1.53  christos 	result[len++] = ',';
   2569  1.75  christos 	c = stringrule(result + len, dstrp, dstrp->r_save, zp->z_stdoff);
   2570  1.43  christos 	if (c < 0) {
   2571  1.25   mlelstv 		result[0] = '\0';
   2572  1.43  christos 		return -1;
   2573  1.25   mlelstv 	}
   2574  1.43  christos 	if (compat < c)
   2575  1.43  christos 		compat = c;
   2576  1.53  christos 	len += strlen(result + len);
   2577  1.53  christos 	result[len++] = ',';
   2578  1.75  christos 	c = stringrule(result + len, stdrp, dstrp->r_save, zp->z_stdoff);
   2579  1.43  christos 	if (c < 0) {
   2580  1.25   mlelstv 		result[0] = '\0';
   2581  1.43  christos 		return -1;
   2582   1.1       jtc 	}
   2583  1.43  christos 	if (compat < c)
   2584  1.43  christos 		compat = c;
   2585  1.43  christos 	return compat;
   2586   1.1       jtc }
   2587   1.1       jtc 
   2588   1.1       jtc static void
   2589  1.65  christos outzone(const struct zone *zpfirst, ptrdiff_t zonecount)
   2590  1.31  christos {
   2591  1.31  christos 	const struct zone *	zp;
   2592  1.31  christos 	struct rule *		rp;
   2593  1.65  christos 	ptrdiff_t		i, j;
   2594  1.51  christos 	bool			usestart, useuntil;
   2595  1.31  christos 	zic_t			starttime, untiltime;
   2596  1.38  christos 	zic_t			stdoff;
   2597  1.75  christos 	zic_t			save;
   2598  1.41  christos 	zic_t			year;
   2599  1.38  christos 	zic_t			startoff;
   2600  1.51  christos 	bool			startttisstd;
   2601  1.75  christos 	bool			startttisut;
   2602  1.31  christos 	int			type;
   2603  1.31  christos 	char *			startbuf;
   2604  1.31  christos 	char *			ab;
   2605  1.31  christos 	char *			envvar;
   2606  1.36  christos 	size_t			max_abbr_len;
   2607  1.36  christos 	size_t			max_envvar_len;
   2608  1.51  christos 	bool			prodstic; /* all rules are min to max */
   2609  1.43  christos 	int			compat;
   2610  1.51  christos 	bool			do_extend;
   2611  1.75  christos 	char			version;
   2612  1.65  christos 	ptrdiff_t lastatmax = -1;
   2613  1.68  christos 	zic_t one = 1;
   2614  1.68  christos 	zic_t y2038_boundary = one << 31;
   2615  1.68  christos 	zic_t max_year0;
   2616  1.74  christos 	int defaulttype = -1;
   2617  1.25   mlelstv 
   2618  1.25   mlelstv 	max_abbr_len = 2 + max_format_len + max_abbrvar_len;
   2619  1.25   mlelstv 	max_envvar_len = 2 * max_abbr_len + 5 * 9;
   2620  1.53  christos 	startbuf = zic_malloc(max_abbr_len + 1);
   2621  1.53  christos 	ab = zic_malloc(max_abbr_len + 1);
   2622  1.53  christos 	envvar = zic_malloc(max_envvar_len + 1);
   2623   1.1       jtc 	INITIALIZE(untiltime);
   2624   1.1       jtc 	INITIALIZE(starttime);
   2625   1.1       jtc 	/*
   2626   1.1       jtc 	** Now. . .finally. . .generate some useful data!
   2627   1.1       jtc 	*/
   2628   1.1       jtc 	timecnt = 0;
   2629   1.1       jtc 	typecnt = 0;
   2630   1.1       jtc 	charcnt = 0;
   2631  1.29  christos 	prodstic = zonecount == 1;
   2632   1.1       jtc 	/*
   2633  1.25   mlelstv 	** Thanks to Earl Chew
   2634   1.1       jtc 	** for noting the need to unconditionally initialize startttisstd.
   2635   1.1       jtc 	*/
   2636  1.51  christos 	startttisstd = false;
   2637  1.75  christos 	startttisut = false;
   2638  1.25   mlelstv 	min_year = max_year = EPOCH_YEAR;
   2639  1.25   mlelstv 	if (leapseen) {
   2640  1.25   mlelstv 		updateminmax(leapminyear);
   2641  1.41  christos 		updateminmax(leapmaxyear + (leapmaxyear < ZIC_MAX));
   2642  1.25   mlelstv 	}
   2643  1.25   mlelstv 	for (i = 0; i < zonecount; ++i) {
   2644  1.25   mlelstv 		zp = &zpfirst[i];
   2645  1.25   mlelstv 		if (i < zonecount - 1)
   2646  1.25   mlelstv 			updateminmax(zp->z_untilrule.r_loyear);
   2647  1.25   mlelstv 		for (j = 0; j < zp->z_nrules; ++j) {
   2648  1.25   mlelstv 			rp = &zp->z_rules[j];
   2649  1.25   mlelstv 			if (rp->r_lowasnum)
   2650  1.25   mlelstv 				updateminmax(rp->r_loyear);
   2651  1.25   mlelstv 			if (rp->r_hiwasnum)
   2652  1.25   mlelstv 				updateminmax(rp->r_hiyear);
   2653  1.41  christos 			if (rp->r_lowasnum || rp->r_hiwasnum)
   2654  1.51  christos 				prodstic = false;
   2655  1.25   mlelstv 		}
   2656  1.25   mlelstv 	}
   2657  1.25   mlelstv 	/*
   2658  1.25   mlelstv 	** Generate lots of data if a rule can't cover all future times.
   2659  1.25   mlelstv 	*/
   2660  1.43  christos 	compat = stringzone(envvar, max_envvar_len + 1, zpfirst, zonecount);
   2661  1.43  christos 	version = compat < 2013 ? ZIC_VERSION_PRE_2013 : ZIC_VERSION;
   2662  1.75  christos 	do_extend = compat < 0;
   2663  1.44  christos 	if (noise) {
   2664  1.44  christos 		if (!*envvar)
   2665  1.43  christos 			warning("%s %s",
   2666  1.43  christos 				_("no POSIX environment variable for zone"),
   2667  1.43  christos 				zpfirst->z_name);
   2668  1.75  christos 		else if (compat != 0) {
   2669  1.43  christos 			/* Circa-COMPAT clients, and earlier clients, might
   2670  1.43  christos 			   not work for this zone when given dates before
   2671  1.43  christos 			   1970 or after 2038.  */
   2672  1.43  christos 			warning(_("%s: pre-%d clients may mishandle"
   2673  1.43  christos 				  " distant timestamps"),
   2674  1.43  christos 				zpfirst->z_name, compat);
   2675  1.43  christos 		}
   2676  1.43  christos 	}
   2677  1.43  christos 	if (do_extend) {
   2678  1.43  christos 		/*
   2679  1.43  christos 		** Search through a couple of extra years past the obvious
   2680  1.43  christos 		** 400, to avoid edge cases.  For example, suppose a non-POSIX
   2681  1.43  christos 		** rule applies from 2012 onwards and has transitions in March
   2682  1.43  christos 		** and September, plus some one-off transitions in November
   2683  1.43  christos 		** 2013.  If zic looked only at the last 400 years, it would
   2684  1.43  christos 		** set max_year=2413, with the intent that the 400 years 2014
   2685  1.43  christos 		** through 2413 will be repeated.  The last transition listed
   2686  1.43  christos 		** in the tzfile would be in 2413-09, less than 400 years
   2687  1.43  christos 		** after the last one-off transition in 2013-11.  Two years
   2688  1.43  christos 		** might be overkill, but with the kind of edge cases
   2689  1.43  christos 		** available we're not sure that one year would suffice.
   2690  1.43  christos 		*/
   2691  1.43  christos 		enum { years_of_observations = YEARSPERREPEAT + 2 };
   2692  1.43  christos 
   2693  1.43  christos 		if (min_year >= ZIC_MIN + years_of_observations)
   2694  1.43  christos 			min_year -= years_of_observations;
   2695  1.41  christos 		else	min_year = ZIC_MIN;
   2696  1.43  christos 		if (max_year <= ZIC_MAX - years_of_observations)
   2697  1.43  christos 			max_year += years_of_observations;
   2698  1.41  christos 		else	max_year = ZIC_MAX;
   2699  1.29  christos 		/*
   2700  1.29  christos 		** Regardless of any of the above,
   2701  1.29  christos 		** for a "proDSTic" zone which specifies that its rules
   2702  1.29  christos 		** always have and always will be in effect,
   2703  1.29  christos 		** we only need one cycle to define the zone.
   2704  1.29  christos 		*/
   2705  1.29  christos 		if (prodstic) {
   2706  1.29  christos 			min_year = 1900;
   2707  1.43  christos 			max_year = min_year + years_of_observations;
   2708  1.29  christos 		}
   2709  1.25   mlelstv 	}
   2710  1.75  christos 	max_year0 = max_year;
   2711  1.75  christos 	if (want_bloat()) {
   2712  1.75  christos 	  /* For the benefit of older systems,
   2713  1.75  christos 	     generate data from 1900 through 2038.  */
   2714  1.75  christos 	  if (min_year > 1900)
   2715  1.25   mlelstv 		min_year = 1900;
   2716  1.75  christos 	  if (max_year < 2038)
   2717  1.68  christos 		max_year = 2038;
   2718  1.75  christos 	}
   2719  1.75  christos 
   2720   1.1       jtc 	for (i = 0; i < zonecount; ++i) {
   2721  1.75  christos 		struct rule *prevrp = NULL;
   2722  1.19    kleink 		/*
   2723  1.19    kleink 		** A guess that may well be corrected later.
   2724  1.19    kleink 		*/
   2725  1.75  christos 		save = 0;
   2726   1.1       jtc 		zp = &zpfirst[i];
   2727  1.74  christos 		usestart = i > 0 && (zp - 1)->z_untiltime > min_time;
   2728   1.1       jtc 		useuntil = i < (zonecount - 1);
   2729  1.74  christos 		if (useuntil && zp->z_untiltime <= min_time)
   2730   1.1       jtc 			continue;
   2731  1.75  christos 		stdoff = zp->z_stdoff;
   2732   1.1       jtc 		eat(zp->z_filename, zp->z_linenum);
   2733   1.5       jtc 		*startbuf = '\0';
   2734  1.75  christos 		startoff = zp->z_stdoff;
   2735   1.1       jtc 		if (zp->z_nrules == 0) {
   2736  1.75  christos 			save = zp->z_save;
   2737  1.75  christos 			doabbr(startbuf, max_abbr_len + 1,
   2738  1.75  christos 			    zp, NULL, zp->z_isdst, save, false);
   2739  1.75  christos 			type = addtype(oadd(zp->z_stdoff, save),
   2740  1.74  christos 				startbuf, zp->z_isdst, startttisstd,
   2741  1.75  christos 				startttisut);
   2742   1.5       jtc 			if (usestart) {
   2743   1.1       jtc 				addtt(starttime, type);
   2744  1.51  christos 				usestart = false;
   2745  1.74  christos 			} else
   2746  1.74  christos 				defaulttype = type;
   2747   1.1       jtc 		} else for (year = min_year; year <= max_year; ++year) {
   2748   1.1       jtc 			if (useuntil && year > zp->z_untilrule.r_hiyear)
   2749   1.1       jtc 				break;
   2750   1.1       jtc 			/*
   2751   1.1       jtc 			** Mark which rules to do in the current year.
   2752   1.1       jtc 			** For those to do, calculate rpytime(rp, year);
   2753  1.77  christos 			** The former TYPE field was also considered here.
   2754   1.1       jtc 			*/
   2755   1.1       jtc 			for (j = 0; j < zp->z_nrules; ++j) {
   2756   1.1       jtc 				rp = &zp->z_rules[j];
   2757   1.1       jtc 				eats(zp->z_filename, zp->z_linenum,
   2758   1.1       jtc 					rp->r_filename, rp->r_linenum);
   2759   1.1       jtc 				rp->r_todo = year >= rp->r_loyear &&
   2760  1.77  christos 						year <= rp->r_hiyear;
   2761  1.68  christos 				if (rp->r_todo) {
   2762   1.1       jtc 					rp->r_temp = rpytime(rp, year);
   2763  1.68  christos 					rp->r_todo
   2764  1.68  christos 					  = (rp->r_temp < y2038_boundary
   2765  1.68  christos 					     || year <= max_year0);
   2766  1.68  christos 				}
   2767   1.1       jtc 			}
   2768   1.1       jtc 			for ( ; ; ) {
   2769  1.65  christos 				ptrdiff_t	k;
   2770  1.31  christos 				zic_t	jtime, ktime;
   2771  1.38  christos 				zic_t	offset;
   2772   1.1       jtc 
   2773   1.1       jtc 				INITIALIZE(ktime);
   2774   1.1       jtc 				if (useuntil) {
   2775   1.1       jtc 					/*
   2776  1.43  christos 					** Turn untiltime into UT
   2777  1.75  christos 					** assuming the current stdoff and
   2778  1.75  christos 					** save values.
   2779   1.1       jtc 					*/
   2780   1.1       jtc 					untiltime = zp->z_untiltime;
   2781  1.75  christos 					if (!zp->z_untilrule.r_todisut)
   2782   1.1       jtc 						untiltime = tadd(untiltime,
   2783  1.75  christos 								 -stdoff);
   2784   1.1       jtc 					if (!zp->z_untilrule.r_todisstd)
   2785   1.1       jtc 						untiltime = tadd(untiltime,
   2786  1.75  christos 								 -save);
   2787  1.49  christos 				}
   2788   1.1       jtc 				/*
   2789   1.1       jtc 				** Find the rule (of those to do, if any)
   2790   1.1       jtc 				** that takes effect earliest in the year.
   2791   1.1       jtc 				*/
   2792   1.1       jtc 				k = -1;
   2793   1.1       jtc 				for (j = 0; j < zp->z_nrules; ++j) {
   2794   1.1       jtc 					rp = &zp->z_rules[j];
   2795   1.1       jtc 					if (!rp->r_todo)
   2796   1.1       jtc 						continue;
   2797   1.1       jtc 					eats(zp->z_filename, zp->z_linenum,
   2798   1.1       jtc 						rp->r_filename, rp->r_linenum);
   2799  1.75  christos 					offset = rp->r_todisut ? 0 : stdoff;
   2800   1.1       jtc 					if (!rp->r_todisstd)
   2801  1.75  christos 						offset = oadd(offset, save);
   2802   1.1       jtc 					jtime = rp->r_temp;
   2803   1.1       jtc 					if (jtime == min_time ||
   2804   1.1       jtc 						jtime == max_time)
   2805   1.1       jtc 							continue;
   2806   1.1       jtc 					jtime = tadd(jtime, -offset);
   2807   1.1       jtc 					if (k < 0 || jtime < ktime) {
   2808   1.1       jtc 						k = j;
   2809   1.1       jtc 						ktime = jtime;
   2810  1.55  christos 					} else if (jtime == ktime) {
   2811  1.55  christos 					  char const *dup_rules_msg =
   2812  1.55  christos 					    _("two rules for same instant");
   2813  1.55  christos 					  eats(zp->z_filename, zp->z_linenum,
   2814  1.55  christos 					       rp->r_filename, rp->r_linenum);
   2815  1.55  christos 					  warning("%s", dup_rules_msg);
   2816  1.55  christos 					  rp = &zp->z_rules[k];
   2817  1.55  christos 					  eats(zp->z_filename, zp->z_linenum,
   2818  1.55  christos 					       rp->r_filename, rp->r_linenum);
   2819  1.55  christos 					  error("%s", dup_rules_msg);
   2820   1.1       jtc 					}
   2821   1.1       jtc 				}
   2822   1.1       jtc 				if (k < 0)
   2823   1.1       jtc 					break;	/* go on to next year */
   2824   1.1       jtc 				rp = &zp->z_rules[k];
   2825  1.51  christos 				rp->r_todo = false;
   2826   1.1       jtc 				if (useuntil && ktime >= untiltime)
   2827   1.1       jtc 					break;
   2828  1.75  christos 				save = rp->r_save;
   2829   1.5       jtc 				if (usestart && ktime == starttime)
   2830  1.51  christos 					usestart = false;
   2831   1.1       jtc 				if (usestart) {
   2832   1.5       jtc 					if (ktime < starttime) {
   2833  1.75  christos 						startoff = oadd(zp->z_stdoff,
   2834  1.75  christos 								save);
   2835  1.25   mlelstv 						doabbr(startbuf,
   2836  1.25   mlelstv 							max_abbr_len + 1,
   2837  1.55  christos 							zp,
   2838   1.5       jtc 							rp->r_abbrvar,
   2839  1.71  christos 							rp->r_isdst,
   2840  1.75  christos 							rp->r_save,
   2841  1.51  christos 							false);
   2842   1.5       jtc 						continue;
   2843   1.5       jtc 					}
   2844  1.75  christos 					if (*startbuf == '\0'
   2845  1.75  christos 					    && startoff == oadd(zp->z_stdoff,
   2846  1.75  christos 								save)) {
   2847  1.25   mlelstv 							doabbr(startbuf,
   2848  1.25   mlelstv 								max_abbr_len + 1,
   2849  1.55  christos 								zp,
   2850  1.25   mlelstv 								rp->r_abbrvar,
   2851  1.71  christos 								rp->r_isdst,
   2852  1.75  christos 								rp->r_save,
   2853  1.51  christos 								false);
   2854   1.1       jtc 					}
   2855   1.1       jtc 				}
   2856   1.1       jtc 				eats(zp->z_filename, zp->z_linenum,
   2857   1.1       jtc 					rp->r_filename, rp->r_linenum);
   2858  1.55  christos 				doabbr(ab, max_abbr_len + 1, zp, rp->r_abbrvar,
   2859  1.75  christos 				       rp->r_isdst, rp->r_save, false);
   2860  1.75  christos 				offset = oadd(zp->z_stdoff, rp->r_save);
   2861  1.75  christos 				if (!want_bloat() && !useuntil && !do_extend
   2862  1.75  christos 				    && prevrp
   2863  1.75  christos 				    && rp->r_hiyear == ZIC_MAX
   2864  1.75  christos 				    && prevrp->r_hiyear == ZIC_MAX)
   2865  1.75  christos 				  break;
   2866  1.71  christos 				type = addtype(offset, ab, rp->r_isdst,
   2867  1.75  christos 					rp->r_todisstd, rp->r_todisut);
   2868  1.74  christos 				if (defaulttype < 0 && !rp->r_isdst)
   2869  1.74  christos 				  defaulttype = type;
   2870  1.63  christos 				if (rp->r_hiyear == ZIC_MAX
   2871  1.63  christos 				    && ! (0 <= lastatmax
   2872  1.63  christos 					  && ktime < attypes[lastatmax].at))
   2873  1.63  christos 				  lastatmax = timecnt;
   2874   1.1       jtc 				addtt(ktime, type);
   2875  1.75  christos 				prevrp = rp;
   2876   1.1       jtc 			}
   2877   1.1       jtc 		}
   2878   1.5       jtc 		if (usestart) {
   2879   1.5       jtc 			if (*startbuf == '\0' &&
   2880   1.5       jtc 				zp->z_format != NULL &&
   2881   1.5       jtc 				strchr(zp->z_format, '%') == NULL &&
   2882   1.5       jtc 				strchr(zp->z_format, '/') == NULL)
   2883  1.57  christos 					strncpy(startbuf, zp->z_format,
   2884  1.25   mlelstv 					    max_abbr_len + 1 - 1);
   2885   1.5       jtc 			eat(zp->z_filename, zp->z_linenum);
   2886   1.5       jtc 			if (*startbuf == '\0')
   2887   1.7       jtc error(_("can't determine time zone abbreviation to use just after until time"));
   2888  1.74  christos 			else {
   2889  1.75  christos 			  bool isdst = startoff != zp->z_stdoff;
   2890  1.74  christos 			  type = addtype(startoff, startbuf, isdst,
   2891  1.75  christos 					 startttisstd, startttisut);
   2892  1.74  christos 			  if (defaulttype < 0 && !isdst)
   2893  1.74  christos 			    defaulttype = type;
   2894  1.74  christos 			  addtt(starttime, type);
   2895  1.74  christos 			}
   2896   1.5       jtc 		}
   2897   1.1       jtc 		/*
   2898   1.1       jtc 		** Now we may get to set starttime for the next zone line.
   2899   1.1       jtc 		*/
   2900   1.1       jtc 		if (useuntil) {
   2901   1.1       jtc 			startttisstd = zp->z_untilrule.r_todisstd;
   2902  1.75  christos 			startttisut = zp->z_untilrule.r_todisut;
   2903   1.5       jtc 			starttime = zp->z_untiltime;
   2904   1.1       jtc 			if (!startttisstd)
   2905  1.75  christos 			  starttime = tadd(starttime, -save);
   2906  1.75  christos 			if (!startttisut)
   2907  1.75  christos 			  starttime = tadd(starttime, -stdoff);
   2908   1.1       jtc 		}
   2909   1.1       jtc 	}
   2910  1.74  christos 	if (defaulttype < 0)
   2911  1.74  christos 	  defaulttype = 0;
   2912  1.63  christos 	if (0 <= lastatmax)
   2913  1.63  christos 	  attypes[lastatmax].dontmerge = true;
   2914  1.43  christos 	if (do_extend) {
   2915  1.43  christos 		/*
   2916  1.43  christos 		** If we're extending the explicitly listed observations
   2917  1.43  christos 		** for 400 years because we can't fill the POSIX-TZ field,
   2918  1.43  christos 		** check whether we actually ended up explicitly listing
   2919  1.43  christos 		** observations through that period.  If there aren't any
   2920  1.43  christos 		** near the end of the 400-year period, add a redundant
   2921  1.43  christos 		** one at the end of the final year, to make it clear
   2922  1.43  christos 		** that we are claiming to have definite knowledge of
   2923  1.43  christos 		** the lack of transitions up to that point.
   2924  1.43  christos 		*/
   2925  1.43  christos 		struct rule xr;
   2926  1.43  christos 		struct attype *lastat;
   2927  1.58  dholland 		memset(&xr, 0, sizeof(xr));
   2928  1.43  christos 		xr.r_month = TM_JANUARY;
   2929  1.43  christos 		xr.r_dycode = DC_DOM;
   2930  1.43  christos 		xr.r_dayofmonth = 1;
   2931  1.43  christos 		xr.r_tod = 0;
   2932  1.74  christos 		for (lastat = attypes, i = 1; i < timecnt; i++)
   2933  1.43  christos 			if (attypes[i].at > lastat->at)
   2934  1.43  christos 				lastat = &attypes[i];
   2935  1.74  christos 		if (!lastat || lastat->at < rpytime(&xr, max_year - 1)) {
   2936  1.74  christos 			addtt(rpytime(&xr, max_year + 1),
   2937  1.74  christos 			      lastat ? lastat->type : defaulttype);
   2938  1.63  christos 			attypes[timecnt - 1].dontmerge = true;
   2939  1.43  christos 		}
   2940  1.43  christos 	}
   2941  1.74  christos 	writezone(zpfirst->z_name, envvar, version, defaulttype);
   2942  1.31  christos 	free(startbuf);
   2943  1.31  christos 	free(ab);
   2944  1.31  christos 	free(envvar);
   2945   1.1       jtc }
   2946   1.1       jtc 
   2947   1.1       jtc static void
   2948  1.55  christos addtt(zic_t starttime, int type)
   2949   1.1       jtc {
   2950  1.45  christos 	attypes = growalloc(attypes, sizeof *attypes, timecnt, &timecnt_alloc);
   2951   1.5       jtc 	attypes[timecnt].at = starttime;
   2952  1.63  christos 	attypes[timecnt].dontmerge = false;
   2953   1.5       jtc 	attypes[timecnt].type = type;
   2954   1.1       jtc 	++timecnt;
   2955   1.1       jtc }
   2956   1.1       jtc 
   2957   1.1       jtc static int
   2958  1.75  christos addtype(zic_t utoff, char const *abbr, bool isdst, bool ttisstd, bool ttisut)
   2959   1.1       jtc {
   2960  1.31  christos 	int	i, j;
   2961   1.1       jtc 
   2962  1.75  christos 	if (! (-1L - 2147483647L <= utoff && utoff <= 2147483647L)) {
   2963  1.75  christos 		error(_("UT offset out of range"));
   2964  1.75  christos 		exit(EXIT_FAILURE);
   2965  1.75  christos 	}
   2966  1.75  christos 	if (!want_bloat())
   2967  1.75  christos 	  ttisstd = ttisut = false;
   2968  1.75  christos 
   2969  1.75  christos 	for (j = 0; j < charcnt; ++j)
   2970  1.75  christos 		if (strcmp(&chars[j], abbr) == 0)
   2971  1.75  christos 			break;
   2972  1.75  christos 	if (j == charcnt)
   2973  1.75  christos 		newabbr(abbr);
   2974  1.75  christos 	else {
   2975  1.75  christos 	  /* If there's already an entry, return its index.  */
   2976  1.75  christos 	  for (i = 0; i < typecnt; i++)
   2977  1.75  christos 	    if (utoff == utoffs[i] && isdst == isdsts[i] && j == desigidx[i]
   2978  1.75  christos 		&& ttisstd == ttisstds[i] && ttisut == ttisuts[i])
   2979  1.75  christos 	      return i;
   2980   1.1       jtc 	}
   2981   1.1       jtc 	/*
   2982   1.1       jtc 	** There isn't one; add a new one, unless there are already too
   2983   1.1       jtc 	** many.
   2984   1.1       jtc 	*/
   2985   1.1       jtc 	if (typecnt >= TZ_MAX_TYPES) {
   2986   1.5       jtc 		error(_("too many local time types"));
   2987  1.25   mlelstv 		exit(EXIT_FAILURE);
   2988  1.25   mlelstv 	}
   2989  1.75  christos 	i = typecnt++;
   2990  1.75  christos 	utoffs[i] = utoff;
   2991   1.1       jtc 	isdsts[i] = isdst;
   2992   1.1       jtc 	ttisstds[i] = ttisstd;
   2993  1.75  christos 	ttisuts[i] = ttisut;
   2994  1.75  christos 	desigidx[i] = j;
   2995   1.1       jtc 	return i;
   2996   1.1       jtc }
   2997   1.1       jtc 
   2998   1.1       jtc static void
   2999  1.76  christos leapadd(zic_t t, int correction, int rolling)
   3000   1.1       jtc {
   3001  1.76  christos 	int	i;
   3002   1.1       jtc 
   3003  1.76  christos 	if (TZ_MAX_LEAPS <= leapcnt) {
   3004   1.5       jtc 		error(_("too many leap seconds"));
   3005  1.25   mlelstv 		exit(EXIT_FAILURE);
   3006   1.1       jtc 	}
   3007   1.1       jtc 	for (i = 0; i < leapcnt; ++i)
   3008  1.69  christos 		if (t <= trans[i])
   3009   1.1       jtc 			break;
   3010  1.76  christos 	memmove(&trans[i + 1], &trans[i], (leapcnt - i) * sizeof *trans);
   3011  1.76  christos 	memmove(&corr[i + 1], &corr[i], (leapcnt - i) * sizeof *corr);
   3012  1.76  christos 	memmove(&roll[i + 1], &roll[i], (leapcnt - i) * sizeof *roll);
   3013  1.76  christos 	trans[i] = t;
   3014  1.76  christos 	corr[i] = correction;
   3015  1.76  christos 	roll[i] = rolling;
   3016  1.76  christos 	++leapcnt;
   3017   1.1       jtc }
   3018   1.1       jtc 
   3019   1.1       jtc static void
   3020  1.25   mlelstv adjleap(void)
   3021   1.1       jtc {
   3022  1.31  christos 	int	i;
   3023  1.38  christos 	zic_t	last = 0;
   3024  1.69  christos 	zic_t	prevtrans = 0;
   3025   1.1       jtc 
   3026   1.1       jtc 	/*
   3027   1.1       jtc 	** propagate leap seconds forward
   3028   1.1       jtc 	*/
   3029   1.1       jtc 	for (i = 0; i < leapcnt; ++i) {
   3030  1.69  christos 		if (trans[i] - prevtrans < 28 * SECSPERDAY) {
   3031  1.69  christos 			error(_("Leap seconds too close together"));
   3032  1.69  christos 			exit(EXIT_FAILURE);
   3033  1.69  christos 		}
   3034  1.69  christos 		prevtrans = trans[i];
   3035   1.1       jtc 		trans[i] = tadd(trans[i], last);
   3036   1.1       jtc 		last = corr[i] += last;
   3037   1.1       jtc 	}
   3038  1.76  christos 
   3039  1.76  christos 	if (leapexpires < 0) {
   3040  1.76  christos 	  leapexpires = comment_leapexpires;
   3041  1.76  christos 	  if (0 <= leapexpires)
   3042  1.76  christos 	    warning(_("\"#expires\" is obsolescent; use \"Expires\""));
   3043  1.76  christos 	}
   3044  1.76  christos 
   3045  1.76  christos 	if (0 <= leapexpires) {
   3046  1.76  christos 	  leapexpires = oadd(leapexpires, last);
   3047  1.76  christos 	  if (! (leapcnt == 0 || (trans[leapcnt - 1] < leapexpires))) {
   3048  1.76  christos 	    error(_("last Leap time does not precede Expires time"));
   3049  1.76  christos 	    exit(EXIT_FAILURE);
   3050  1.76  christos 	  }
   3051  1.76  christos 	  if (leapexpires <= hi_time)
   3052  1.76  christos 	    hi_time = leapexpires - 1;
   3053  1.76  christos 	}
   3054   1.1       jtc }
   3055   1.1       jtc 
   3056  1.47  christos /* Is A a space character in the C locale?  */
   3057  1.51  christos static bool
   3058  1.47  christos is_space(char a)
   3059   1.1       jtc {
   3060  1.47  christos 	switch (a) {
   3061  1.47  christos 	  default:
   3062  1.51  christos 		return false;
   3063  1.47  christos 	  case ' ': case '\f': case '\n': case '\r': case '\t': case '\v':
   3064  1.51  christos 	  	return true;
   3065  1.47  christos 	}
   3066  1.47  christos }
   3067  1.47  christos 
   3068  1.47  christos /* Is A an alphabetic character in the C locale?  */
   3069  1.51  christos static bool
   3070  1.47  christos is_alpha(char a)
   3071  1.47  christos {
   3072  1.47  christos 	switch (a) {
   3073  1.47  christos 	  default:
   3074  1.74  christos 		return false;
   3075  1.47  christos 	  case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G':
   3076  1.47  christos 	  case 'H': case 'I': case 'J': case 'K': case 'L': case 'M': case 'N':
   3077  1.47  christos 	  case 'O': case 'P': case 'Q': case 'R': case 'S': case 'T': case 'U':
   3078  1.47  christos 	  case 'V': case 'W': case 'X': case 'Y': case 'Z':
   3079  1.47  christos 	  case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g':
   3080  1.47  christos 	  case 'h': case 'i': case 'j': case 'k': case 'l': case 'm': case 'n':
   3081  1.47  christos 	  case 'o': case 'p': case 'q': case 'r': case 's': case 't': case 'u':
   3082  1.47  christos 	  case 'v': case 'w': case 'x': case 'y': case 'z':
   3083  1.51  christos 		return true;
   3084  1.47  christos 	}
   3085  1.47  christos }
   3086  1.47  christos 
   3087  1.47  christos /* If A is an uppercase character in the C locale, return its lowercase
   3088  1.47  christos    counterpart.  Otherwise, return A.  */
   3089  1.47  christos static char
   3090  1.47  christos lowerit(char a)
   3091  1.47  christos {
   3092  1.47  christos 	switch (a) {
   3093  1.47  christos 	  default: return a;
   3094  1.47  christos 	  case 'A': return 'a'; case 'B': return 'b'; case 'C': return 'c';
   3095  1.47  christos 	  case 'D': return 'd'; case 'E': return 'e'; case 'F': return 'f';
   3096  1.47  christos 	  case 'G': return 'g'; case 'H': return 'h'; case 'I': return 'i';
   3097  1.47  christos 	  case 'J': return 'j'; case 'K': return 'k'; case 'L': return 'l';
   3098  1.47  christos 	  case 'M': return 'm'; case 'N': return 'n'; case 'O': return 'o';
   3099  1.47  christos 	  case 'P': return 'p'; case 'Q': return 'q'; case 'R': return 'r';
   3100  1.47  christos 	  case 'S': return 's'; case 'T': return 't'; case 'U': return 'u';
   3101  1.47  christos 	  case 'V': return 'v'; case 'W': return 'w'; case 'X': return 'x';
   3102  1.47  christos 	  case 'Y': return 'y'; case 'Z': return 'z';
   3103  1.47  christos 	}
   3104   1.1       jtc }
   3105   1.1       jtc 
   3106  1.31  christos /* case-insensitive equality */
   3107  1.73  christos static ATTRIBUTE_PURE bool
   3108  1.31  christos ciequal(const char *ap, const char *bp)
   3109   1.1       jtc {
   3110   1.1       jtc 	while (lowerit(*ap) == lowerit(*bp++))
   3111   1.1       jtc 		if (*ap++ == '\0')
   3112  1.51  christos 			return true;
   3113  1.51  christos 	return false;
   3114   1.1       jtc }
   3115   1.1       jtc 
   3116  1.73  christos static ATTRIBUTE_PURE bool
   3117  1.31  christos itsabbr(const char *abbr, const char *word)
   3118   1.1       jtc {
   3119   1.1       jtc 	if (lowerit(*abbr) != lowerit(*word))
   3120  1.51  christos 		return false;
   3121   1.1       jtc 	++word;
   3122   1.1       jtc 	while (*++abbr != '\0')
   3123   1.3       jtc 		do {
   3124   1.3       jtc 			if (*word == '\0')
   3125  1.51  christos 				return false;
   3126   1.3       jtc 		} while (lowerit(*word++) != lowerit(*abbr));
   3127  1.51  christos 	return true;
   3128   1.1       jtc }
   3129   1.1       jtc 
   3130  1.69  christos /* Return true if ABBR is an initial prefix of WORD, ignoring ASCII case.  */
   3131  1.69  christos 
   3132  1.73  christos static ATTRIBUTE_PURE bool
   3133  1.69  christos ciprefix(char const *abbr, char const *word)
   3134  1.69  christos {
   3135  1.69  christos   do
   3136  1.69  christos     if (!*abbr)
   3137  1.69  christos       return true;
   3138  1.69  christos   while (lowerit(*abbr++) == lowerit(*word++));
   3139  1.69  christos 
   3140  1.69  christos   return false;
   3141  1.69  christos }
   3142  1.69  christos 
   3143  1.69  christos static const struct lookup *
   3144  1.55  christos byword(const char *word, const struct lookup *table)
   3145   1.1       jtc {
   3146  1.31  christos 	const struct lookup *	foundlp;
   3147  1.31  christos 	const struct lookup *	lp;
   3148   1.1       jtc 
   3149   1.1       jtc 	if (word == NULL || table == NULL)
   3150   1.1       jtc 		return NULL;
   3151  1.69  christos 
   3152  1.69  christos 	/* If TABLE is LASTS and the word starts with "last" followed
   3153  1.69  christos 	   by a non-'-', skip the "last" and look in WDAY_NAMES instead.
   3154  1.69  christos 	   Warn about any usage of the undocumented prefix "last-".  */
   3155  1.69  christos 	if (table == lasts && ciprefix("last", word) && word[4]) {
   3156  1.69  christos 	  if (word[4] == '-')
   3157  1.69  christos 	    warning(_("\"%s\" is undocumented; use \"last%s\" instead"),
   3158  1.69  christos 		    word, word + 5);
   3159  1.69  christos 	  else {
   3160  1.69  christos 	    word += 4;
   3161  1.69  christos 	    table = wday_names;
   3162  1.69  christos 	  }
   3163  1.69  christos 	}
   3164  1.69  christos 
   3165   1.1       jtc 	/*
   3166   1.1       jtc 	** Look for exact match.
   3167   1.1       jtc 	*/
   3168   1.1       jtc 	for (lp = table; lp->l_word != NULL; ++lp)
   3169   1.1       jtc 		if (ciequal(word, lp->l_word))
   3170   1.1       jtc 			return lp;
   3171   1.1       jtc 	/*
   3172   1.1       jtc 	** Look for inexact match.
   3173   1.1       jtc 	*/
   3174   1.1       jtc 	foundlp = NULL;
   3175   1.1       jtc 	for (lp = table; lp->l_word != NULL; ++lp)
   3176  1.69  christos 		if (ciprefix(word, lp->l_word)) {
   3177   1.1       jtc 			if (foundlp == NULL)
   3178   1.1       jtc 				foundlp = lp;
   3179   1.1       jtc 			else	return NULL;	/* multiple inexact matches */
   3180  1.11       jtc 		}
   3181  1.69  christos 
   3182  1.75  christos 	if (foundlp && noise) {
   3183  1.75  christos 	  /* Warn about any backward-compatibility issue with pre-2017c zic.  */
   3184  1.69  christos 	  bool pre_2017c_match = false;
   3185  1.69  christos 	  for (lp = table; lp->l_word; lp++)
   3186  1.69  christos 	    if (itsabbr(word, lp->l_word)) {
   3187  1.69  christos 	      if (pre_2017c_match) {
   3188  1.69  christos 		warning(_("\"%s\" is ambiguous in pre-2017c zic"), word);
   3189  1.69  christos 		break;
   3190  1.69  christos 	      }
   3191  1.69  christos 	      pre_2017c_match = true;
   3192  1.69  christos 	    }
   3193  1.69  christos 	}
   3194  1.69  christos 
   3195   1.1       jtc 	return foundlp;
   3196   1.1       jtc }
   3197   1.1       jtc 
   3198   1.1       jtc static char **
   3199  1.31  christos getfields(char *cp)
   3200   1.1       jtc {
   3201  1.31  christos 	char *	dp;
   3202  1.31  christos 	char **	array;
   3203  1.31  christos 	int	nsubs;
   3204   1.1       jtc 
   3205   1.1       jtc 	if (cp == NULL)
   3206   1.1       jtc 		return NULL;
   3207  1.53  christos 	array = zic_malloc(size_product(strlen(cp) + 1, sizeof *array));
   3208   1.1       jtc 	nsubs = 0;
   3209   1.1       jtc 	for ( ; ; ) {
   3210  1.47  christos 		while (is_space(*cp))
   3211  1.25   mlelstv 				++cp;
   3212   1.1       jtc 		if (*cp == '\0' || *cp == '#')
   3213   1.1       jtc 			break;
   3214   1.1       jtc 		array[nsubs++] = dp = cp;
   3215   1.1       jtc 		do {
   3216   1.1       jtc 			if ((*dp = *cp++) != '"')
   3217   1.1       jtc 				++dp;
   3218   1.1       jtc 			else while ((*dp = *cp++) != '"')
   3219   1.1       jtc 				if (*dp != '\0')
   3220   1.1       jtc 					++dp;
   3221  1.25   mlelstv 				else {
   3222  1.65  christos 				  error(_("Odd number of quotation marks"));
   3223  1.65  christos 				  exit(EXIT_FAILURE);
   3224  1.25   mlelstv 				}
   3225  1.47  christos 		} while (*cp && *cp != '#' && !is_space(*cp));
   3226  1.47  christos 		if (is_space(*cp))
   3227   1.1       jtc 			++cp;
   3228   1.1       jtc 		*dp = '\0';
   3229   1.1       jtc 	}
   3230   1.1       jtc 	array[nsubs] = NULL;
   3231   1.1       jtc 	return array;
   3232   1.1       jtc }
   3233   1.1       jtc 
   3234  1.53  christos static _Noreturn void
   3235  1.53  christos time_overflow(void)
   3236  1.53  christos {
   3237  1.53  christos 	error(_("time overflow"));
   3238  1.53  christos 	exit(EXIT_FAILURE);
   3239  1.53  christos }
   3240  1.53  christos 
   3241  1.41  christos static ATTRIBUTE_PURE zic_t
   3242  1.55  christos oadd(zic_t t1, zic_t t2)
   3243   1.1       jtc {
   3244  1.53  christos 	if (t1 < 0 ? t2 < ZIC_MIN - t1 : ZIC_MAX - t1 < t2)
   3245  1.53  christos 		time_overflow();
   3246  1.31  christos 	return t1 + t2;
   3247   1.1       jtc }
   3248   1.1       jtc 
   3249  1.43  christos static ATTRIBUTE_PURE zic_t
   3250  1.55  christos tadd(zic_t t1, zic_t t2)
   3251   1.1       jtc {
   3252  1.53  christos 	if (t1 < 0) {
   3253  1.53  christos 		if (t2 < min_time - t1) {
   3254  1.53  christos 			if (t1 != min_time)
   3255  1.53  christos 				time_overflow();
   3256  1.53  christos 			return min_time;
   3257  1.53  christos 		}
   3258  1.53  christos 	} else {
   3259  1.53  christos 		if (max_time - t1 < t2) {
   3260  1.53  christos 			if (t1 != max_time)
   3261  1.53  christos 				time_overflow();
   3262  1.53  christos 			return max_time;
   3263  1.53  christos 		}
   3264   1.1       jtc 	}
   3265  1.31  christos 	return t1 + t2;
   3266   1.1       jtc }
   3267   1.1       jtc 
   3268   1.1       jtc /*
   3269  1.47  christos ** Given a rule, and a year, compute the date (in seconds since January 1,
   3270  1.47  christos ** 1970, 00:00 LOCAL time) in that year that the rule refers to.
   3271   1.1       jtc */
   3272   1.1       jtc 
   3273  1.25   mlelstv static zic_t
   3274  1.55  christos rpytime(const struct rule *rp, zic_t wantedy)
   3275  1.31  christos {
   3276  1.41  christos 	int	m, i;
   3277  1.38  christos 	zic_t	dayoff;			/* with a nod to Margaret O. */
   3278  1.41  christos 	zic_t	t, y;
   3279   1.1       jtc 
   3280  1.41  christos 	if (wantedy == ZIC_MIN)
   3281   1.1       jtc 		return min_time;
   3282  1.41  christos 	if (wantedy == ZIC_MAX)
   3283   1.1       jtc 		return max_time;
   3284   1.1       jtc 	dayoff = 0;
   3285   1.1       jtc 	m = TM_JANUARY;
   3286   1.1       jtc 	y = EPOCH_YEAR;
   3287  1.74  christos 	if (y < wantedy) {
   3288  1.74  christos 	  wantedy -= y;
   3289  1.74  christos 	  dayoff = (wantedy / YEARSPERREPEAT) * (SECSPERREPEAT / SECSPERDAY);
   3290  1.74  christos 	  wantedy %= YEARSPERREPEAT;
   3291  1.74  christos 	  wantedy += y;
   3292  1.74  christos 	} else if (wantedy < 0) {
   3293  1.74  christos 	  dayoff = (wantedy / YEARSPERREPEAT) * (SECSPERREPEAT / SECSPERDAY);
   3294  1.74  christos 	  wantedy %= YEARSPERREPEAT;
   3295  1.74  christos 	}
   3296   1.1       jtc 	while (wantedy != y) {
   3297   1.1       jtc 		if (wantedy > y) {
   3298   1.1       jtc 			i = len_years[isleap(y)];
   3299   1.1       jtc 			++y;
   3300   1.1       jtc 		} else {
   3301   1.1       jtc 			--y;
   3302   1.1       jtc 			i = -len_years[isleap(y)];
   3303   1.1       jtc 		}
   3304  1.41  christos 		dayoff = oadd(dayoff, i);
   3305   1.1       jtc 	}
   3306   1.1       jtc 	while (m != rp->r_month) {
   3307   1.1       jtc 		i = len_months[isleap(y)][m];
   3308  1.41  christos 		dayoff = oadd(dayoff, i);
   3309   1.1       jtc 		++m;
   3310   1.1       jtc 	}
   3311   1.1       jtc 	i = rp->r_dayofmonth;
   3312   1.1       jtc 	if (m == TM_FEBRUARY && i == 29 && !isleap(y)) {
   3313   1.1       jtc 		if (rp->r_dycode == DC_DOWLEQ)
   3314   1.1       jtc 			--i;
   3315   1.1       jtc 		else {
   3316   1.5       jtc 			error(_("use of 2/29 in non leap-year"));
   3317  1.25   mlelstv 			exit(EXIT_FAILURE);
   3318   1.1       jtc 		}
   3319   1.1       jtc 	}
   3320   1.1       jtc 	--i;
   3321  1.41  christos 	dayoff = oadd(dayoff, i);
   3322   1.1       jtc 	if (rp->r_dycode == DC_DOWGEQ || rp->r_dycode == DC_DOWLEQ) {
   3323  1.38  christos 		zic_t	wday;
   3324   1.1       jtc 
   3325  1.38  christos #define LDAYSPERWEEK	((zic_t) DAYSPERWEEK)
   3326  1.41  christos 		wday = EPOCH_WDAY;
   3327   1.1       jtc 		/*
   3328   1.1       jtc 		** Don't trust mod of negative numbers.
   3329   1.1       jtc 		*/
   3330   1.1       jtc 		if (dayoff >= 0)
   3331   1.1       jtc 			wday = (wday + dayoff) % LDAYSPERWEEK;
   3332   1.1       jtc 		else {
   3333   1.1       jtc 			wday -= ((-dayoff) % LDAYSPERWEEK);
   3334   1.1       jtc 			if (wday < 0)
   3335   1.1       jtc 				wday += LDAYSPERWEEK;
   3336   1.1       jtc 		}
   3337  1.41  christos 		while (wday != rp->r_wday)
   3338   1.1       jtc 			if (rp->r_dycode == DC_DOWGEQ) {
   3339  1.38  christos 				dayoff = oadd(dayoff, (zic_t) 1);
   3340   1.1       jtc 				if (++wday >= LDAYSPERWEEK)
   3341   1.1       jtc 					wday = 0;
   3342   1.1       jtc 				++i;
   3343   1.1       jtc 			} else {
   3344  1.38  christos 				dayoff = oadd(dayoff, (zic_t) -1);
   3345   1.1       jtc 				if (--wday < 0)
   3346   1.1       jtc 					wday = LDAYSPERWEEK - 1;
   3347   1.1       jtc 				--i;
   3348   1.1       jtc 			}
   3349   1.1       jtc 		if (i < 0 || i >= len_months[isleap(y)][m]) {
   3350  1.23    kleink 			if (noise)
   3351  1.47  christos 				warning(_("rule goes past start/end of month; \
   3352  1.25   mlelstv will not work with pre-2004 versions of zic"));
   3353   1.1       jtc 		}
   3354   1.1       jtc 	}
   3355  1.34    martin 	if (dayoff < min_time / SECSPERDAY)
   3356  1.20    kleink 		return min_time;
   3357  1.34    martin 	if (dayoff > max_time / SECSPERDAY)
   3358  1.20    kleink 		return max_time;
   3359  1.25   mlelstv 	t = (zic_t) dayoff * SECSPERDAY;
   3360   1.1       jtc 	return tadd(t, rp->r_tod);
   3361   1.1       jtc }
   3362   1.1       jtc 
   3363   1.1       jtc static void
   3364  1.55  christos newabbr(const char *string)
   3365   1.1       jtc {
   3366  1.31  christos 	int	i;
   3367   1.1       jtc 
   3368  1.25   mlelstv 	if (strcmp(string, GRANDPARENTED) != 0) {
   3369  1.31  christos 		const char *	cp;
   3370  1.31  christos 		const char *	mp;
   3371  1.25   mlelstv 
   3372  1.25   mlelstv 		cp = string;
   3373  1.31  christos 		mp = NULL;
   3374  1.55  christos 		while (is_alpha(*cp) || ('0' <= *cp && *cp <= '9')
   3375  1.55  christos 		       || *cp == '-' || *cp == '+')
   3376  1.25   mlelstv 				++cp;
   3377  1.35  christos 		if (noise && cp - string < 3)
   3378  1.55  christos 		  mp = _("time zone abbreviation has fewer than 3 characters");
   3379  1.25   mlelstv 		if (cp - string > ZIC_MAX_ABBR_LEN_WO_WARN)
   3380  1.55  christos 		  mp = _("time zone abbreviation has too many characters");
   3381  1.25   mlelstv 		if (*cp != '\0')
   3382  1.31  christos mp = _("time zone abbreviation differs from POSIX standard");
   3383  1.43  christos 		if (mp != NULL)
   3384  1.43  christos 			warning("%s (%s)", mp, string);
   3385  1.25   mlelstv 	}
   3386   1.1       jtc 	i = strlen(string) + 1;
   3387   1.1       jtc 	if (charcnt + i > TZ_MAX_CHARS) {
   3388  1.40  christos 		error(_("too many, or too long, time zone abbreviations"));
   3389  1.25   mlelstv 		exit(EXIT_FAILURE);
   3390   1.1       jtc 	}
   3391  1.57  christos 	strncpy(&chars[charcnt], string, sizeof(chars) - charcnt - 1);
   3392  1.41  christos 	charcnt += i;
   3393   1.1       jtc }
   3394  1.63  christos 
   3395  1.63  christos /* Ensure that the directories of ARGNAME exist, by making any missing
   3396  1.63  christos    ones.  If ANCESTORS, do this only for ARGNAME's ancestors; otherwise,
   3397  1.68  christos    do it for ARGNAME too.  Exit with failure if there is trouble.
   3398  1.68  christos    Do not consider an existing non-directory to be trouble.  */
   3399  1.63  christos static void
   3400  1.63  christos mkdirs(char const *argname, bool ancestors)
   3401   1.1       jtc {
   3402  1.31  christos 	char *	name;
   3403  1.31  christos 	char *	cp;
   3404   1.1       jtc 
   3405   1.1       jtc 	cp = name = ecpyalloc(argname);
   3406  1.63  christos 
   3407  1.69  christos 	/* On MS-Windows systems, do not worry about drive letters or
   3408  1.69  christos 	   backslashes, as this should suffice in practice.  Time zone
   3409  1.69  christos 	   names do not use drive letters and backslashes.  If the -d
   3410  1.69  christos 	   option of zic does not name an already-existing directory,
   3411  1.69  christos 	   it can use slashes to separate the already-existing
   3412  1.69  christos 	   ancestor prefix from the to-be-created subdirectories.  */
   3413  1.69  christos 
   3414  1.63  christos 	/* Do not mkdir a root directory, as it must exist.  */
   3415  1.63  christos 	while (*cp == '/')
   3416  1.63  christos 	  cp++;
   3417  1.63  christos 
   3418  1.63  christos 	while (cp && ((cp = strchr(cp, '/')) || !ancestors)) {
   3419  1.63  christos 		if (cp)
   3420  1.63  christos 		  *cp = '\0';
   3421  1.47  christos 		/*
   3422  1.47  christos 		** Try to create it.  It's OK if creation fails because
   3423  1.47  christos 		** the directory already exists, perhaps because some
   3424  1.63  christos 		** other process just created it.  For simplicity do
   3425  1.63  christos 		** not check first whether it already exists, as that
   3426  1.63  christos 		** is checked anyway if the mkdir fails.
   3427  1.47  christos 		*/
   3428  1.47  christos 		if (mkdir(name, MKDIR_UMASK) != 0) {
   3429  1.68  christos 			/* For speed, skip itsdir if errno == EEXIST.  Since
   3430  1.68  christos 			   mkdirs is called only after open fails with ENOENT
   3431  1.68  christos 			   on a subfile, EEXIST implies itsdir here.  */
   3432  1.47  christos 			int err = errno;
   3433  1.68  christos 			if (err != EEXIST && !itsdir(name)) {
   3434  1.63  christos 				error(_("%s: Can't create directory %s: %s"),
   3435  1.63  christos 				      progname, name, strerror(err));
   3436  1.63  christos 				exit(EXIT_FAILURE);
   3437  1.63  christos 			}
   3438   1.1       jtc 		}
   3439  1.63  christos 		if (cp)
   3440  1.63  christos 		  *cp++ = '/';
   3441   1.1       jtc 	}
   3442  1.31  christos 	free(name);
   3443   1.1       jtc }
   3444