1996-11-19 18:09:41 +00:00
|
|
|
/*
|
|
|
|
* Copyright 1996 Massachusetts Institute of Technology
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software and
|
|
|
|
* its documentation for any purpose and without fee is hereby
|
|
|
|
* granted, provided that both the above copyright notice and this
|
|
|
|
* permission notice appear in all copies, that both the above
|
|
|
|
* copyright notice and this permission notice appear in all
|
|
|
|
* supporting documentation, and that the name of M.I.T. not be used
|
|
|
|
* in advertising or publicity pertaining to distribution of the
|
|
|
|
* software without specific, written prior permission. M.I.T. makes
|
|
|
|
* no representations about the suitability of this software for any
|
|
|
|
* purpose. It is provided "as is" without express or implied
|
|
|
|
* warranty.
|
2008-06-03 22:34:52 +00:00
|
|
|
*
|
1996-11-19 18:09:41 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''. M.I.T. DISCLAIMS
|
|
|
|
* ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT
|
|
|
|
* SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
|
|
|
|
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Second attempt at a `tzmenu' program, using the separate description
|
|
|
|
* files provided in newer tzdata releases.
|
|
|
|
*/
|
|
|
|
|
2008-06-03 22:34:52 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1997-10-27 07:49:47 +00:00
|
|
|
|
1996-11-19 18:09:41 +00:00
|
|
|
#include <dialog.h>
|
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2000-10-10 01:50:26 +00:00
|
|
|
#include <time.h>
|
1996-11-19 18:09:41 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <sys/fcntl.h>
|
|
|
|
#include <sys/queue.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
2008-06-03 22:34:52 +00:00
|
|
|
#define _PATH_ZONETAB "/usr/share/zoneinfo/zone.tab"
|
|
|
|
#define _PATH_ISO3166 "/usr/share/misc/iso3166"
|
|
|
|
#define _PATH_ZONEINFO "/usr/share/zoneinfo"
|
|
|
|
#define _PATH_LOCALTIME "/etc/localtime"
|
|
|
|
#define _PATH_WALL_CMOS_CLOCK "/etc/wall_cmos_clock"
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
static int reallydoit = 1;
|
|
|
|
|
2008-06-03 22:34:52 +00:00
|
|
|
static void usage(void);
|
|
|
|
static int continent_country_menu(dialogMenuItem *);
|
|
|
|
static int set_zone_multi(dialogMenuItem *);
|
|
|
|
static int set_zone_whole_country(dialogMenuItem *);
|
|
|
|
static int set_zone_menu(dialogMenuItem *);
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
struct continent {
|
|
|
|
dialogMenuItem *menu;
|
2008-06-03 22:34:52 +00:00
|
|
|
int nitems;
|
|
|
|
int ch;
|
|
|
|
int sc;
|
1996-11-19 18:09:41 +00:00
|
|
|
};
|
|
|
|
|
2008-06-03 22:34:52 +00:00
|
|
|
static struct continent africa, america, antarctica, arctic, asia, atlantic;
|
|
|
|
static struct continent australia, europe, indian, pacific;
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
static struct continent_names {
|
2008-06-03 22:34:52 +00:00
|
|
|
const char *name;
|
1996-11-19 18:09:41 +00:00
|
|
|
struct continent *continent;
|
|
|
|
} continent_names[] = {
|
2008-06-03 22:34:52 +00:00
|
|
|
{ "Africa", &africa },
|
|
|
|
{ "America", &america },
|
|
|
|
{ "Antarctica", &antarctica },
|
|
|
|
{ "Arctic", &arctic },
|
|
|
|
{ "Asia", &asia },
|
|
|
|
{ "Atlantic", &atlantic },
|
|
|
|
{ "Australia", &australia },
|
|
|
|
{ "Europe", &europe },
|
|
|
|
{ "Indian", &indian },
|
|
|
|
{ "Pacific", &pacific }
|
1996-11-19 18:09:41 +00:00
|
|
|
};
|
|
|
|
|
2008-06-03 22:34:52 +00:00
|
|
|
static struct continent_items {
|
|
|
|
char prompt[2];
|
|
|
|
char title[30];
|
|
|
|
} continent_items[] = {
|
|
|
|
{ "1", "Africa" },
|
|
|
|
{ "2", "America -- North and South" },
|
|
|
|
{ "3", "Antarctica" },
|
|
|
|
{ "4", "Arctic Ocean" },
|
|
|
|
{ "5", "Asia" },
|
|
|
|
{ "6", "Atlantic Ocean" },
|
|
|
|
{ "7", "Australia" },
|
|
|
|
{ "8", "Europe" },
|
|
|
|
{ "9", "Indian Ocean" },
|
|
|
|
{ "0", "Pacific Ocean" }
|
1996-11-19 18:09:41 +00:00
|
|
|
};
|
2008-06-03 22:34:52 +00:00
|
|
|
|
|
|
|
#define NCONTINENTS \
|
|
|
|
(int)((sizeof(continent_items)) / (sizeof(continent_items[0])))
|
|
|
|
static dialogMenuItem continents[NCONTINENTS];
|
|
|
|
|
|
|
|
#define OCEANP(x) ((x) == 3 || (x) == 5 || (x) == 8 || (x) == 9)
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
static int
|
|
|
|
continent_country_menu(dialogMenuItem *continent)
|
|
|
|
{
|
2008-06-03 22:34:52 +00:00
|
|
|
char title[64], prompt[64];
|
1996-11-19 18:09:41 +00:00
|
|
|
struct continent *contp = continent->data;
|
2008-06-03 22:34:52 +00:00
|
|
|
int isocean = OCEANP(continent - continents);
|
|
|
|
int menulen;
|
|
|
|
int rv;
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
/* Short cut -- if there's only one country, don't post a menu. */
|
2008-06-02 23:37:33 +00:00
|
|
|
if (contp->nitems == 1)
|
|
|
|
return (contp->menu[0].fire(&contp->menu[0]));
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
/* It's amazing how much good grammar really matters... */
|
2008-06-03 22:34:52 +00:00
|
|
|
if (!isocean) {
|
|
|
|
snprintf(title, sizeof(title), "Countries in %s",
|
|
|
|
continent->title);
|
|
|
|
snprintf(prompt, sizeof(prompt), "Select a country or region");
|
|
|
|
} else {
|
|
|
|
snprintf(title, sizeof(title), "Islands and groups in the %s",
|
|
|
|
continent->title);
|
|
|
|
snprintf(prompt, sizeof(prompt), "Select an island or group");
|
|
|
|
}
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
menulen = contp->nitems < 16 ? contp->nitems : 16;
|
2008-06-03 22:34:52 +00:00
|
|
|
rv = dialog_menu(title, prompt, -1, -1, menulen, -contp->nitems,
|
|
|
|
contp->menu, 0, &contp->ch, &contp->sc);
|
1996-11-19 18:09:41 +00:00
|
|
|
if (rv == 0)
|
2008-06-03 22:34:52 +00:00
|
|
|
return (DITEM_LEAVE_MENU);
|
|
|
|
return (DITEM_RECREATE);
|
1996-11-19 18:09:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct continent *
|
|
|
|
find_continent(const char *name)
|
|
|
|
{
|
2008-06-03 22:34:52 +00:00
|
|
|
int i;
|
1996-11-19 18:09:41 +00:00
|
|
|
|
2008-06-03 22:34:52 +00:00
|
|
|
for (i = 0; i < NCONTINENTS; i++)
|
1996-11-19 18:09:41 +00:00
|
|
|
if (strcmp(name, continent_names[i].name) == 0)
|
2008-06-03 22:34:52 +00:00
|
|
|
return (continent_names[i].continent);
|
|
|
|
return (0);
|
1996-11-19 18:09:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct country {
|
2008-06-03 22:34:52 +00:00
|
|
|
char *name;
|
|
|
|
char *tlc;
|
|
|
|
int nzones;
|
|
|
|
char *filename; /* use iff nzones < 0 */
|
|
|
|
struct continent *continent; /* use iff nzones < 0 */
|
|
|
|
TAILQ_HEAD(, zone) zones; /* use iff nzones > 0 */
|
|
|
|
dialogMenuItem *submenu; /* use iff nzones > 0 */
|
1996-11-19 18:09:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct zone {
|
2000-05-26 02:09:24 +00:00
|
|
|
TAILQ_ENTRY(zone) link;
|
2008-06-03 22:34:52 +00:00
|
|
|
char *descr;
|
|
|
|
char *filename;
|
1996-11-19 18:09:41 +00:00
|
|
|
struct continent *continent;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is the easiest organization... we use ISO 3166 country codes,
|
|
|
|
* of the two-letter variety, so we just size this array to suit.
|
|
|
|
* Beats worrying about dynamic allocation.
|
|
|
|
*/
|
2008-06-03 22:34:52 +00:00
|
|
|
#define NCOUNTRIES (26 * 26)
|
1997-02-01 17:03:10 +00:00
|
|
|
static struct country countries[NCOUNTRIES];
|
2008-06-03 22:34:52 +00:00
|
|
|
|
|
|
|
#define CODE2INT(s) ((s[0] - 'A') * 26 + (s[1] - 'A'))
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Read the ISO 3166 country code database in _PATH_ISO3166
|
|
|
|
* (/usr/share/misc/iso3166). On error, exit via err(3).
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
read_iso3166_table(void)
|
|
|
|
{
|
2008-06-03 22:34:52 +00:00
|
|
|
FILE *fp;
|
|
|
|
struct country *cp;
|
|
|
|
size_t len;
|
|
|
|
char *s, *t, *name;
|
|
|
|
int lineno;
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
fp = fopen(_PATH_ISO3166, "r");
|
|
|
|
if (!fp)
|
|
|
|
err(1, _PATH_ISO3166);
|
|
|
|
lineno = 0;
|
|
|
|
|
|
|
|
while ((s = fgetln(fp, &len)) != 0) {
|
|
|
|
lineno++;
|
|
|
|
if (s[len - 1] != '\n')
|
|
|
|
errx(1, _PATH_ISO3166 ":%d: invalid format", lineno);
|
|
|
|
s[len - 1] = '\0';
|
1997-11-07 00:07:27 +00:00
|
|
|
if (s[0] == '#' || strspn(s, " \t") == len - 1)
|
1996-11-19 18:09:41 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Isolate the two-letter code. */
|
|
|
|
t = strsep(&s, "\t");
|
|
|
|
if (t == 0 || strlen(t) != 2)
|
|
|
|
errx(1, _PATH_ISO3166 ":%d: invalid format", lineno);
|
|
|
|
if (t[0] < 'A' || t[0] > 'Z' || t[1] < 'A' || t[1] > 'Z')
|
|
|
|
errx(1, _PATH_ISO3166 ":%d: invalid code `%s'",
|
2008-06-03 22:34:52 +00:00
|
|
|
lineno, t);
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
/* Now skip past the three-letter and numeric codes. */
|
2008-06-03 22:34:52 +00:00
|
|
|
name = strsep(&s, "\t"); /* 3-let */
|
1996-11-19 18:09:41 +00:00
|
|
|
if (name == 0 || strlen(name) != 3)
|
|
|
|
errx(1, _PATH_ISO3166 ":%d: invalid format", lineno);
|
2008-06-03 22:34:52 +00:00
|
|
|
name = strsep(&s, "\t"); /* numeric */
|
1996-11-19 18:09:41 +00:00
|
|
|
if (name == 0 || strlen(name) != 3)
|
|
|
|
errx(1, _PATH_ISO3166 ":%d: invalid format", lineno);
|
|
|
|
|
|
|
|
name = s;
|
|
|
|
|
|
|
|
cp = &countries[CODE2INT(t)];
|
|
|
|
if (cp->name)
|
2008-06-03 22:34:52 +00:00
|
|
|
errx(1, _PATH_ISO3166
|
|
|
|
":%d: country code `%s' multiply defined: %s",
|
|
|
|
lineno, t, cp->name);
|
1996-11-19 18:09:41 +00:00
|
|
|
cp->name = strdup(name);
|
2000-01-23 20:25:01 +00:00
|
|
|
if (cp->name == NULL)
|
|
|
|
errx(1, "malloc failed");
|
1996-11-19 18:09:41 +00:00
|
|
|
cp->tlc = strdup(t);
|
2000-01-23 20:25:01 +00:00
|
|
|
if (cp->tlc == NULL)
|
|
|
|
errx(1, "malloc failed");
|
1996-11-19 18:09:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
add_zone_to_country(int lineno, const char *tlc, const char *descr,
|
2008-06-03 22:34:52 +00:00
|
|
|
const char *file, struct continent *cont)
|
1996-11-19 18:09:41 +00:00
|
|
|
{
|
2008-06-03 22:34:52 +00:00
|
|
|
struct zone *zp;
|
|
|
|
struct country *cp;
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
if (tlc[0] < 'A' || tlc[0] > 'Z' || tlc[1] < 'A' || tlc[1] > 'Z')
|
|
|
|
errx(1, _PATH_ZONETAB ":%d: country code `%s' invalid",
|
2008-06-03 22:34:52 +00:00
|
|
|
lineno, tlc);
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
cp = &countries[CODE2INT(tlc)];
|
|
|
|
if (cp->name == 0)
|
|
|
|
errx(1, _PATH_ZONETAB ":%d: country code `%s' unknown",
|
2008-06-03 22:34:52 +00:00
|
|
|
lineno, tlc);
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
if (descr) {
|
|
|
|
if (cp->nzones < 0)
|
2008-06-03 22:34:52 +00:00
|
|
|
errx(1, _PATH_ZONETAB
|
|
|
|
":%d: conflicting zone definition", lineno);
|
1996-11-19 18:09:41 +00:00
|
|
|
|
2008-06-03 22:34:52 +00:00
|
|
|
zp = malloc(sizeof(*zp));
|
1996-11-19 18:09:41 +00:00
|
|
|
if (zp == 0)
|
2008-06-03 22:34:52 +00:00
|
|
|
errx(1, "malloc(%zu)", sizeof(*zp));
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
if (cp->nzones == 0)
|
|
|
|
TAILQ_INIT(&cp->zones);
|
|
|
|
|
|
|
|
zp->descr = strdup(descr);
|
2000-01-23 20:25:01 +00:00
|
|
|
if (zp->descr == NULL)
|
|
|
|
errx(1, "malloc failed");
|
1996-11-19 18:09:41 +00:00
|
|
|
zp->filename = strdup(file);
|
2000-01-23 20:25:01 +00:00
|
|
|
if (zp->filename == NULL)
|
|
|
|
errx(1, "malloc failed");
|
1996-11-19 18:09:41 +00:00
|
|
|
zp->continent = cont;
|
|
|
|
TAILQ_INSERT_TAIL(&cp->zones, zp, link);
|
|
|
|
cp->nzones++;
|
|
|
|
} else {
|
|
|
|
if (cp->nzones > 0)
|
2008-06-03 22:34:52 +00:00
|
|
|
errx(1, _PATH_ZONETAB
|
|
|
|
":%d: zone must have description", lineno);
|
1996-11-19 18:09:41 +00:00
|
|
|
if (cp->nzones < 0)
|
|
|
|
errx(1, _PATH_ZONETAB
|
2008-06-03 22:34:52 +00:00
|
|
|
":%d: zone multiply defined", lineno);
|
1996-11-19 18:09:41 +00:00
|
|
|
cp->nzones = -1;
|
|
|
|
cp->filename = strdup(file);
|
2000-01-23 20:25:01 +00:00
|
|
|
if (cp->filename == NULL)
|
|
|
|
errx(1, "malloc failed");
|
1996-11-19 18:09:41 +00:00
|
|
|
cp->continent = cont;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This comparison function intentionally sorts all of the null-named
|
|
|
|
* ``countries''---i.e., the codes that don't correspond to a real
|
|
|
|
* country---to the end. Everything else is lexical by country name.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
compare_countries(const void *xa, const void *xb)
|
|
|
|
{
|
|
|
|
const struct country *a = xa, *b = xb;
|
|
|
|
|
|
|
|
if (a->name == 0 && b->name == 0)
|
2008-06-03 22:34:52 +00:00
|
|
|
return (0);
|
1996-11-19 18:09:41 +00:00
|
|
|
if (a->name == 0 && b->name != 0)
|
2008-06-03 22:34:52 +00:00
|
|
|
return (1);
|
1996-11-19 18:09:41 +00:00
|
|
|
if (b->name == 0)
|
2008-06-03 22:34:52 +00:00
|
|
|
return (-1);
|
1996-11-19 18:09:41 +00:00
|
|
|
|
2008-06-03 22:34:52 +00:00
|
|
|
return (strcmp(a->name, b->name));
|
1996-11-19 18:09:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This must be done AFTER all zone descriptions are read, since it breaks
|
|
|
|
* CODE2INT().
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
sort_countries(void)
|
|
|
|
{
|
2008-06-03 22:34:52 +00:00
|
|
|
|
|
|
|
qsort(countries, NCOUNTRIES, sizeof(countries[0]), compare_countries);
|
1996-11-19 18:09:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
read_zones(void)
|
|
|
|
{
|
2008-06-03 22:34:52 +00:00
|
|
|
char contbuf[16];
|
|
|
|
FILE *fp;
|
1996-11-19 18:09:41 +00:00
|
|
|
struct continent *cont;
|
2008-06-03 22:34:52 +00:00
|
|
|
size_t len;
|
|
|
|
char *line, *tlc, *coord, *file, *descr, *p;
|
|
|
|
int lineno;
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
fp = fopen(_PATH_ZONETAB, "r");
|
|
|
|
if (!fp)
|
|
|
|
err(1, _PATH_ZONETAB);
|
|
|
|
lineno = 0;
|
|
|
|
|
|
|
|
while ((line = fgetln(fp, &len)) != 0) {
|
|
|
|
lineno++;
|
|
|
|
if (line[len - 1] != '\n')
|
|
|
|
errx(1, _PATH_ZONETAB ":%d: invalid format", lineno);
|
|
|
|
line[len - 1] = '\0';
|
|
|
|
if (line[0] == '#')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
tlc = strsep(&line, "\t");
|
|
|
|
if (strlen(tlc) != 2)
|
|
|
|
errx(1, _PATH_ZONETAB ":%d: invalid country code `%s'",
|
2008-06-03 22:34:52 +00:00
|
|
|
lineno, tlc);
|
1996-11-19 18:09:41 +00:00
|
|
|
coord = strsep(&line, "\t");
|
|
|
|
file = strsep(&line, "\t");
|
|
|
|
p = strchr(file, '/');
|
|
|
|
if (p == 0)
|
|
|
|
errx(1, _PATH_ZONETAB ":%d: invalid zone name `%s'",
|
2008-06-03 22:34:52 +00:00
|
|
|
lineno, file);
|
1996-11-19 18:09:41 +00:00
|
|
|
contbuf[0] = '\0';
|
|
|
|
strncat(contbuf, file, p - file);
|
|
|
|
cont = find_continent(contbuf);
|
|
|
|
if (!cont)
|
|
|
|
errx(1, _PATH_ZONETAB ":%d: invalid region `%s'",
|
2008-06-03 22:34:52 +00:00
|
|
|
lineno, contbuf);
|
1996-11-19 18:09:41 +00:00
|
|
|
|
2008-06-03 22:34:52 +00:00
|
|
|
descr = (line != NULL && *line != '\0') ? line : NULL;
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
add_zone_to_country(lineno, tlc, descr, file, cont);
|
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
make_menus(void)
|
|
|
|
{
|
2008-06-03 22:34:52 +00:00
|
|
|
struct country *cp;
|
|
|
|
struct zone *zp, *zp2;
|
1996-11-19 18:09:41 +00:00
|
|
|
struct continent *cont;
|
2008-06-03 22:34:52 +00:00
|
|
|
dialogMenuItem *dmi;
|
|
|
|
int i;
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* First, count up all the countries in each continent/ocean.
|
|
|
|
* Be careful to count those countries which have multiple zones
|
|
|
|
* only once for each. NB: some countries are in multiple
|
|
|
|
* continents/oceans.
|
|
|
|
*/
|
|
|
|
for (cp = countries; cp->name; cp++) {
|
|
|
|
if (cp->nzones == 0)
|
|
|
|
continue;
|
|
|
|
if (cp->nzones < 0) {
|
|
|
|
cp->continent->nitems++;
|
|
|
|
} else {
|
2000-12-29 18:04:54 +00:00
|
|
|
TAILQ_FOREACH(zp, &cp->zones, link) {
|
1996-11-19 18:09:41 +00:00
|
|
|
cont = zp->continent;
|
2000-12-29 18:04:54 +00:00
|
|
|
for (zp2 = TAILQ_FIRST(&cp->zones);
|
2008-06-03 22:34:52 +00:00
|
|
|
zp2->continent != cont;
|
|
|
|
zp2 = TAILQ_NEXT(zp2, link))
|
1996-11-19 18:09:41 +00:00
|
|
|
;
|
|
|
|
if (zp2 == zp)
|
|
|
|
zp->continent->nitems++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2008-06-03 22:34:52 +00:00
|
|
|
* Now allocate memory for the country menus and initialize
|
|
|
|
* continent menus. We set nitems back to zero so that we can
|
|
|
|
* use it for counting again when we actually build the menus.
|
1996-11-19 18:09:41 +00:00
|
|
|
*/
|
2008-06-03 22:34:52 +00:00
|
|
|
memset(continents, 0, sizeof(continents));
|
1996-11-19 18:09:41 +00:00
|
|
|
for (i = 0; i < NCONTINENTS; i++) {
|
|
|
|
continent_names[i].continent->menu =
|
2008-06-03 22:34:52 +00:00
|
|
|
malloc(sizeof(dialogMenuItem) *
|
|
|
|
continent_names[i].continent->nitems);
|
1996-11-19 18:09:41 +00:00
|
|
|
if (continent_names[i].continent->menu == 0)
|
2000-01-23 20:25:01 +00:00
|
|
|
errx(1, "malloc for continent menu");
|
1996-11-19 18:09:41 +00:00
|
|
|
continent_names[i].continent->nitems = 0;
|
2008-06-03 22:34:52 +00:00
|
|
|
continents[i].prompt = continent_items[i].prompt;
|
|
|
|
continents[i].title = continent_items[i].title;
|
|
|
|
continents[i].fire = continent_country_menu;
|
|
|
|
continents[i].data = continent_names[i].continent;
|
1996-11-19 18:09:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now that memory is allocated, create the menu items for
|
|
|
|
* each continent. For multiple-zone countries, also create
|
|
|
|
* the country's zone submenu.
|
|
|
|
*/
|
|
|
|
for (cp = countries; cp->name; cp++) {
|
|
|
|
if (cp->nzones == 0)
|
|
|
|
continue;
|
|
|
|
if (cp->nzones < 0) {
|
|
|
|
dmi = &cp->continent->menu[cp->continent->nitems];
|
2008-06-03 22:34:52 +00:00
|
|
|
memset(dmi, 0, sizeof(*dmi));
|
|
|
|
asprintf(&dmi->prompt, "%d", ++cp->continent->nitems);
|
1996-11-19 18:09:41 +00:00
|
|
|
dmi->title = cp->name;
|
|
|
|
dmi->checked = 0;
|
|
|
|
dmi->fire = set_zone_whole_country;
|
|
|
|
dmi->selected = 0;
|
|
|
|
dmi->data = cp;
|
|
|
|
} else {
|
2008-06-03 22:34:52 +00:00
|
|
|
cp->submenu = malloc(cp->nzones * sizeof(*dmi));
|
1996-11-19 18:09:41 +00:00
|
|
|
if (cp->submenu == 0)
|
2000-01-23 20:25:01 +00:00
|
|
|
errx(1, "malloc for submenu");
|
1996-11-19 18:09:41 +00:00
|
|
|
cp->nzones = 0;
|
2000-12-29 18:04:54 +00:00
|
|
|
TAILQ_FOREACH(zp, &cp->zones, link) {
|
1996-11-19 18:09:41 +00:00
|
|
|
cont = zp->continent;
|
|
|
|
dmi = &cp->submenu[cp->nzones];
|
2008-06-03 22:34:52 +00:00
|
|
|
memset(dmi, 0, sizeof(*dmi));
|
|
|
|
asprintf(&dmi->prompt, "%d", ++cp->nzones);
|
1996-11-19 18:09:41 +00:00
|
|
|
dmi->title = zp->descr;
|
|
|
|
dmi->checked = 0;
|
|
|
|
dmi->fire = set_zone_multi;
|
|
|
|
dmi->selected = 0;
|
|
|
|
dmi->data = zp;
|
|
|
|
|
2000-12-29 18:04:54 +00:00
|
|
|
for (zp2 = TAILQ_FIRST(&cp->zones);
|
2008-06-03 22:34:52 +00:00
|
|
|
zp2->continent != cont;
|
|
|
|
zp2 = TAILQ_NEXT(zp2, link))
|
1996-11-19 18:09:41 +00:00
|
|
|
;
|
|
|
|
if (zp2 != zp)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
dmi = &cont->menu[cont->nitems];
|
2008-06-03 22:34:52 +00:00
|
|
|
memset(dmi, 0, sizeof(*dmi));
|
1996-11-19 18:09:41 +00:00
|
|
|
asprintf(&dmi->prompt, "%d", ++cont->nitems);
|
|
|
|
dmi->title = cp->name;
|
|
|
|
dmi->checked = 0;
|
|
|
|
dmi->fire = set_zone_menu;
|
|
|
|
dmi->selected = 0;
|
|
|
|
dmi->data = cp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
set_zone_menu(dialogMenuItem *dmi)
|
|
|
|
{
|
2008-06-03 22:34:52 +00:00
|
|
|
char title[64], prompt[64];
|
|
|
|
struct country *cp = dmi->data;
|
|
|
|
int menulen;
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
snprintf(title, sizeof(title), "%s Time Zones", cp->name);
|
|
|
|
snprintf(prompt, sizeof(prompt),
|
|
|
|
"Select a zone which observes the same time as your locality.");
|
1996-11-19 18:09:41 +00:00
|
|
|
menulen = cp->nzones < 16 ? cp->nzones : 16;
|
2008-06-03 22:34:52 +00:00
|
|
|
rv = dialog_menu(title, prompt, -1, -1, menulen, -cp->nzones,
|
|
|
|
cp->submenu, 0, 0, 0);
|
1996-11-19 18:09:41 +00:00
|
|
|
if (rv != 0)
|
2008-06-03 22:34:52 +00:00
|
|
|
return (DITEM_RECREATE);
|
|
|
|
return (DITEM_LEAVE_MENU);
|
1996-11-19 18:09:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
install_zone_file(const char *filename)
|
|
|
|
{
|
2008-06-03 22:34:52 +00:00
|
|
|
char buf[1024];
|
|
|
|
char title[64], prompt[64];
|
|
|
|
struct stat sb;
|
|
|
|
ssize_t len;
|
|
|
|
int fd1, fd2, copymode;
|
|
|
|
|
|
|
|
if (lstat(_PATH_LOCALTIME, &sb) < 0) {
|
1996-11-19 18:09:41 +00:00
|
|
|
/* Nothing there yet... */
|
|
|
|
copymode = 1;
|
2008-06-03 22:34:52 +00:00
|
|
|
} else if (S_ISLNK(sb.st_mode))
|
1996-11-19 18:09:41 +00:00
|
|
|
copymode = 0;
|
|
|
|
else
|
|
|
|
copymode = 1;
|
|
|
|
|
1997-01-21 10:53:38 +00:00
|
|
|
#ifdef VERBOSE
|
1996-11-19 18:09:41 +00:00
|
|
|
if (copymode)
|
2008-06-03 22:34:52 +00:00
|
|
|
snprintf(prompt, sizeof(prompt),
|
|
|
|
"Copying %s to " _PATH_LOCALTIME, filename);
|
1996-11-19 18:09:41 +00:00
|
|
|
else
|
2008-06-03 22:34:52 +00:00
|
|
|
snprintf(prompt, sizeof(prompt),
|
|
|
|
"Creating symbolic link " _PATH_LOCALTIME " to %s",
|
|
|
|
filename);
|
|
|
|
dialog_notify(prompt);
|
1997-01-21 10:53:38 +00:00
|
|
|
#endif
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
if (reallydoit) {
|
|
|
|
if (copymode) {
|
|
|
|
fd1 = open(filename, O_RDONLY, 0);
|
|
|
|
if (fd1 < 0) {
|
2008-06-03 22:34:52 +00:00
|
|
|
snprintf(title, sizeof(title), "Error");
|
|
|
|
snprintf(prompt, sizeof(prompt),
|
|
|
|
"Could not open %s: %s", filename,
|
|
|
|
strerror(errno));
|
|
|
|
dialog_mesgbox(title, prompt, 8, 72);
|
|
|
|
return (DITEM_FAILURE | DITEM_RECREATE);
|
1996-11-19 18:09:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unlink(_PATH_LOCALTIME);
|
2008-06-03 22:34:52 +00:00
|
|
|
fd2 = open(_PATH_LOCALTIME, O_CREAT | O_EXCL | O_WRONLY,
|
|
|
|
S_IRUSR | S_IRGRP | S_IROTH);
|
1996-11-19 18:09:41 +00:00
|
|
|
if (fd2 < 0) {
|
2008-06-03 22:34:52 +00:00
|
|
|
snprintf(title, sizeof(title), "Error");
|
|
|
|
snprintf(prompt, sizeof(prompt),
|
|
|
|
"Could not open " _PATH_LOCALTIME ": %s",
|
|
|
|
strerror(errno));
|
|
|
|
dialog_mesgbox(title, prompt, 8, 72);
|
|
|
|
return (DITEM_FAILURE | DITEM_RECREATE);
|
1996-11-19 18:09:41 +00:00
|
|
|
}
|
|
|
|
|
2008-06-03 22:34:52 +00:00
|
|
|
while ((len = read(fd1, buf, sizeof(buf))) > 0)
|
1996-11-19 18:09:41 +00:00
|
|
|
len = write(fd2, buf, len);
|
|
|
|
|
|
|
|
if (len == -1) {
|
2008-06-03 22:34:52 +00:00
|
|
|
snprintf(title, sizeof(title), "Error");
|
|
|
|
snprintf(prompt, sizeof(prompt),
|
|
|
|
"Error copying %s to " _PATH_LOCALTIME
|
|
|
|
": %s", filename, strerror(errno));
|
|
|
|
dialog_mesgbox(title, prompt, 8, 72);
|
1996-11-19 18:09:41 +00:00
|
|
|
/* Better to leave none than a corrupt one. */
|
|
|
|
unlink(_PATH_LOCALTIME);
|
2008-06-03 22:34:52 +00:00
|
|
|
return (DITEM_FAILURE | DITEM_RECREATE);
|
1996-11-19 18:09:41 +00:00
|
|
|
}
|
|
|
|
close(fd1);
|
|
|
|
close(fd2);
|
|
|
|
} else {
|
|
|
|
if (access(filename, R_OK) != 0) {
|
2008-06-03 22:34:52 +00:00
|
|
|
snprintf(title, sizeof(title), "Error");
|
|
|
|
snprintf(prompt, sizeof(prompt),
|
|
|
|
"Cannot access %s: %s", filename,
|
|
|
|
strerror(errno));
|
|
|
|
dialog_mesgbox(title, prompt, 8, 72);
|
|
|
|
return (DITEM_FAILURE | DITEM_RECREATE);
|
1996-11-19 18:09:41 +00:00
|
|
|
}
|
|
|
|
unlink(_PATH_LOCALTIME);
|
|
|
|
if (symlink(filename, _PATH_LOCALTIME) < 0) {
|
2008-06-03 22:34:52 +00:00
|
|
|
snprintf(title, sizeof(title), "Error");
|
|
|
|
snprintf(prompt, sizeof(prompt),
|
|
|
|
"Cannot create symbolic link "
|
|
|
|
_PATH_LOCALTIME " to %s: %s", filename,
|
|
|
|
strerror(errno));
|
|
|
|
dialog_mesgbox(title, prompt, 8, 72);
|
|
|
|
return (DITEM_FAILURE | DITEM_RECREATE);
|
1996-11-19 18:09:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-01-21 10:53:38 +00:00
|
|
|
#ifdef VERBOSE
|
2008-06-03 22:34:52 +00:00
|
|
|
snprintf(title, sizeof(title), "Done");
|
1996-11-19 18:09:41 +00:00
|
|
|
if (copymode)
|
2008-06-03 22:34:52 +00:00
|
|
|
snprintf(prompt, sizeof(prompt),
|
|
|
|
"Copied timezone file from %s to " _PATH_LOCALTIME,
|
|
|
|
filename);
|
1996-11-19 18:09:41 +00:00
|
|
|
else
|
2008-06-03 22:34:52 +00:00
|
|
|
snprintf(prompt, sizeof(prompt), "Created symbolic link from "
|
|
|
|
_PATH_LOCALTIME " to %s", filename);
|
|
|
|
dialog_mesgbox(title, prompt, 8, 72);
|
1997-01-21 10:53:38 +00:00
|
|
|
#endif
|
2008-06-03 22:34:52 +00:00
|
|
|
return (DITEM_LEAVE_MENU);
|
1996-11-19 18:09:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
confirm_zone(const char *filename)
|
|
|
|
{
|
2008-06-03 22:34:52 +00:00
|
|
|
char title[64], prompt[64];
|
|
|
|
time_t t = time(0);
|
|
|
|
struct tm *tm;
|
|
|
|
int rv;
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
setenv("TZ", filename, 1);
|
|
|
|
tzset();
|
|
|
|
tm = localtime(&t);
|
|
|
|
|
2008-06-03 22:34:52 +00:00
|
|
|
snprintf(title, sizeof(title), "Confirmation");
|
|
|
|
snprintf(prompt, sizeof(prompt),
|
|
|
|
"Does the abbreviation `%s' look reasonable?", tm->tm_zone);
|
|
|
|
rv = !dialog_yesno(title, prompt, 5, 72);
|
|
|
|
return (rv);
|
1996-11-19 18:09:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
set_zone_multi(dialogMenuItem *dmi)
|
|
|
|
{
|
2008-06-03 22:34:52 +00:00
|
|
|
struct zone *zp = dmi->data;
|
|
|
|
char *fn;
|
|
|
|
int rv;
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
if (!confirm_zone(zp->filename))
|
2008-06-03 22:34:52 +00:00
|
|
|
return (DITEM_FAILURE | DITEM_RECREATE);
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
asprintf(&fn, "%s/%s", _PATH_ZONEINFO, zp->filename);
|
|
|
|
rv = install_zone_file(fn);
|
|
|
|
free(fn);
|
2008-06-03 22:34:52 +00:00
|
|
|
return (rv);
|
1996-11-19 18:09:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
set_zone_whole_country(dialogMenuItem *dmi)
|
|
|
|
{
|
2008-06-03 22:34:52 +00:00
|
|
|
struct country *cp = dmi->data;
|
|
|
|
char *fn;
|
|
|
|
int rv;
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
if (!confirm_zone(cp->filename))
|
2008-06-03 22:34:52 +00:00
|
|
|
return (DITEM_FAILURE | DITEM_RECREATE);
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
asprintf(&fn, "%s/%s", _PATH_ZONEINFO, cp->filename);
|
|
|
|
rv = install_zone_file(fn);
|
|
|
|
free(fn);
|
2008-06-03 22:34:52 +00:00
|
|
|
return (rv);
|
1996-11-19 18:09:41 +00:00
|
|
|
}
|
|
|
|
|
1997-10-27 07:49:47 +00:00
|
|
|
static void
|
2008-06-03 22:34:52 +00:00
|
|
|
usage(void)
|
1997-10-27 07:49:47 +00:00
|
|
|
{
|
2008-06-03 22:34:52 +00:00
|
|
|
|
1997-10-27 07:49:47 +00:00
|
|
|
fprintf(stderr, "usage: tzsetup [-n]\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2008-06-03 22:34:52 +00:00
|
|
|
#if defined(__sparc64__)
|
|
|
|
#define DIALOG_UTC dialog_yesno
|
|
|
|
#else
|
|
|
|
#define DIALOG_UTC dialog_noyes
|
|
|
|
#endif
|
|
|
|
|
1996-11-19 18:09:41 +00:00
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
2008-06-03 22:34:52 +00:00
|
|
|
char title[64], prompt[128];
|
|
|
|
int c, fd;
|
1996-11-19 18:09:41 +00:00
|
|
|
|
|
|
|
while ((c = getopt(argc, argv, "n")) != -1) {
|
|
|
|
switch(c) {
|
|
|
|
case 'n':
|
|
|
|
reallydoit = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
1997-10-27 07:49:47 +00:00
|
|
|
usage();
|
1996-11-19 18:09:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-02-02 20:26:31 +00:00
|
|
|
if (argc - optind > 1)
|
1997-10-27 07:49:47 +00:00
|
|
|
usage();
|
1996-11-19 18:09:41 +00:00
|
|
|
|
1999-08-05 11:48:47 +00:00
|
|
|
/* Override the user-supplied umask. */
|
2008-06-03 22:34:52 +00:00
|
|
|
(void)umask(S_IWGRP | S_IWOTH);
|
1999-08-05 11:48:47 +00:00
|
|
|
|
1996-11-19 18:09:41 +00:00
|
|
|
read_iso3166_table();
|
|
|
|
read_zones();
|
|
|
|
sort_countries();
|
|
|
|
make_menus();
|
|
|
|
|
2008-06-03 22:34:52 +00:00
|
|
|
snprintf(title, sizeof(title),
|
|
|
|
"Select local or UTC (Greenwich Mean Time) clock");
|
|
|
|
snprintf(prompt, sizeof(prompt),
|
|
|
|
"Is this machine's CMOS clock set to UTC? "
|
|
|
|
"If it is set to local time,\n"
|
|
|
|
"or you don't know, please choose NO here!");
|
1996-11-19 18:09:41 +00:00
|
|
|
init_dialog();
|
2008-06-03 22:34:52 +00:00
|
|
|
if (!DIALOG_UTC(title, prompt, 7, 72)) {
|
1997-10-27 07:49:47 +00:00
|
|
|
if (reallydoit)
|
1998-12-16 05:34:49 +00:00
|
|
|
unlink(_PATH_WALL_CMOS_CLOCK);
|
1998-01-10 15:55:11 +00:00
|
|
|
} else {
|
1998-12-16 05:34:49 +00:00
|
|
|
if (reallydoit) {
|
|
|
|
fd = open(_PATH_WALL_CMOS_CLOCK,
|
2008-06-03 22:34:52 +00:00
|
|
|
O_WRONLY | O_CREAT | O_TRUNC,
|
|
|
|
S_IRUSR | S_IRGRP | S_IROTH);
|
1998-12-16 05:34:49 +00:00
|
|
|
if (fd < 0)
|
|
|
|
err(1, "create %s", _PATH_WALL_CMOS_CLOCK);
|
|
|
|
close(fd);
|
|
|
|
}
|
1998-01-10 15:55:11 +00:00
|
|
|
}
|
1997-02-16 23:51:03 +00:00
|
|
|
dialog_clear_norefresh();
|
1999-02-02 20:26:31 +00:00
|
|
|
if (optind == argc - 1) {
|
2008-06-03 22:34:52 +00:00
|
|
|
snprintf(title, sizeof(title), "Default timezone provided");
|
|
|
|
snprintf(prompt, sizeof(prompt),
|
|
|
|
"\nUse the default `%s' zone?", argv[optind]);
|
|
|
|
if (!dialog_yesno(title, prompt, 7, 72)) {
|
1999-02-02 20:26:31 +00:00
|
|
|
install_zone_file(argv[optind]);
|
|
|
|
dialog_clear();
|
|
|
|
end_dialog();
|
2008-06-03 22:34:52 +00:00
|
|
|
return (0);
|
1999-02-02 20:26:31 +00:00
|
|
|
}
|
|
|
|
dialog_clear_norefresh();
|
|
|
|
}
|
2008-06-03 22:34:52 +00:00
|
|
|
snprintf(title, sizeof(title), "Time Zone Selector");
|
|
|
|
snprintf(prompt, sizeof(prompt), "Select a region");
|
|
|
|
dialog_menu(title, prompt, -1, -1, NCONTINENTS, -NCONTINENTS,
|
|
|
|
continents, 0, NULL, NULL);
|
1999-02-02 20:26:31 +00:00
|
|
|
|
1997-02-16 23:51:03 +00:00
|
|
|
dialog_clear();
|
1996-11-19 18:09:41 +00:00
|
|
|
end_dialog();
|
2008-06-03 22:34:52 +00:00
|
|
|
return (0);
|
1996-11-19 18:09:41 +00:00
|
|
|
}
|