#include <sys/types.h>
#include <sys/time.h>
#include <ctype.h>
#include <err.h>
#include <fcntl.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
#include <time.h>
#include <unistd.h>
#include <util.h>
extern char *__progname;
time_t tval;
int jflag;
int slidetime;
static void setthetime(char *, const char *);
static void badformat(void);
static void __dead usage(void);
int
main(int argc, char *argv[])
{
const char *errstr;
struct tm *tp;
int ch, rflag;
char *format, buf[1024], *outzone = NULL;
const char *pformat = NULL;
rflag = 0;
while ((ch = getopt(argc, argv, "af:jr:uz:")) != -1)
switch(ch) {
case 'a':
slidetime = 1;
break;
case 'f':
pformat = optarg;
break;
case 'j':
jflag = 1;
break;
case 'r':
rflag = 1;
tval = strtonum(optarg, LLONG_MIN, LLONG_MAX, &errstr);
if (errstr)
errx(1, "seconds is %s: %s", errstr, optarg);
break;
case 'u':
if (setenv("TZ", "UTC", 1) == -1)
err(1, "cannot unsetenv TZ");
break;
case 'z':
outzone = optarg;
break;
default:
usage();
}
argc -= optind;
argv += optind;
if (!rflag && time(&tval) == -1)
err(1, "time");
format = "%a %b %e %H:%M:%S %Z %Y";
if (*argv && **argv == '+') {
format = *argv + 1;
argv++;
argc--;
}
if (*argv) {
setthetime(*argv, pformat);
argv++;
argc--;
}
if (pledge("stdio", NULL) == -1)
err(1, "pledge");
if (*argv && **argv == '+') {
format = *argv + 1;
argc--;
}
if (argc > 0)
errx(1, "too many arguments");
if (outzone)
setenv("TZ", outzone, 1);
tp = localtime(&tval);
if (tp == NULL)
errx(1, "conversion error");
(void)strftime(buf, sizeof(buf), format, tp);
(void)printf("%s\n", buf);
return 0;
}
#define ATOI2(ar) ((ar) += 2, ((ar)[-2] - '0') * 10 + ((ar)[-1] - '0'))
void
setthetime(char *p, const char *pformat)
{
struct tm *lt, tm;
struct timeval tv;
char *dot, *t;
time_t now;
int yearset = 0;
unveil("/var/log/wtmp", "w");
if (pledge("stdio settime wpath", NULL) == -1)
err(1, "pledge");
lt = localtime(&tval);
if (lt == NULL)
errx(1, "conversion error");
lt->tm_isdst = -1;
if (pformat) {
tm = *lt;
if (strptime(p, pformat, &tm) == NULL) {
fprintf(stderr, "trouble %s %s\n", p, pformat);
badformat();
}
lt = &tm;
} else {
for (t = p, dot = NULL; *t; ++t) {
if (isdigit((unsigned char)*t))
continue;
if (*t == '.' && dot == NULL) {
dot = t;
continue;
}
badformat();
}
if (dot != NULL) {
*dot++ = '\0';
if (strlen(dot) != 2)
badformat();
lt->tm_sec = ATOI2(dot);
if (lt->tm_sec > 61)
badformat();
} else
lt->tm_sec = 0;
switch (strlen(p)) {
case 12:
lt->tm_year = (ATOI2(p) * 100) - 1900;
yearset = 1;
case 10:
if (!yearset) {
lt->tm_year = ((lt->tm_year / 100) * 100);
}
lt->tm_year += ATOI2(p);
case 8:
lt->tm_mon = ATOI2(p);
if ((lt->tm_mon > 12) || !lt->tm_mon)
badformat();
--lt->tm_mon;
case 6:
lt->tm_mday = ATOI2(p);
if ((lt->tm_mday > 31) || !lt->tm_mday)
badformat();
case 4:
lt->tm_hour = ATOI2(p);
if (lt->tm_hour > 23)
badformat();
case 2:
lt->tm_min = ATOI2(p);
if (lt->tm_min > 59)
badformat();
break;
default:
badformat();
}
}
if (pformat != NULL && strstr(pformat, "%s") != NULL)
tval = timegm(lt);
else
tval = mktime(lt);
if (tval == -1)
errx(1, "specified date is outside allowed range");
if (jflag)
return;
if (slidetime) {
if ((now = time(NULL)) == -1)
err(1, "time");
tv.tv_sec = tval - now;
tv.tv_usec = 0;
if (adjtime(&tv, NULL) == -1)
err(1, "adjtime");
} else {
#ifndef SMALL
logwtmp("|", "date", "");
#endif
tv.tv_sec = tval;
tv.tv_usec = 0;
if (settimeofday(&tv, NULL))
err(1, "settimeofday");
#ifndef SMALL
logwtmp("{", "date", "");
#endif
}
if ((p = getlogin()) == NULL)
p = "???";
syslog(LOG_AUTH | LOG_NOTICE, "date set by %s", p);
}
static void
badformat(void)
{
warnx("illegal time format");
usage();
}
static void __dead
usage(void)
{
fprintf(stderr,
"usage: %s [-aju] [-f pformat] [-r seconds]\n"
"\t[-z output_zone] [+format] [[[[[[cc]yy]mm]dd]HH]MM[.SS]]\n",
__progname);
exit(1);
}