2005-01-10 08:39:26 +00:00
|
|
|
/*-
|
1994-05-26 06:18:55 +00:00
|
|
|
* Copyright (c) 1985, 1987, 1988, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2017-02-28 23:42:47 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-26 06:18:55 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
1996-12-14 05:54:15 +00:00
|
|
|
static char const copyright[] =
|
1994-05-26 06:18:55 +00:00
|
|
|
"@(#) Copyright (c) 1985, 1987, 1988, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n";
|
|
|
|
#endif /* not lint */
|
|
|
|
|
1998-05-06 06:51:42 +00:00
|
|
|
#if 0
|
2003-02-05 12:56:40 +00:00
|
|
|
#ifndef lint
|
1998-05-13 07:31:42 +00:00
|
|
|
static char sccsid[] = "@(#)date.c 8.2 (Berkeley) 4/28/95";
|
1994-05-26 06:18:55 +00:00
|
|
|
#endif /* not lint */
|
2003-02-05 12:56:40 +00:00
|
|
|
#endif
|
|
|
|
|
2002-06-30 05:13:54 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1994-05-26 06:18:55 +00:00
|
|
|
|
1998-05-13 07:31:42 +00:00
|
|
|
#include <sys/param.h>
|
1994-05-26 06:18:55 +00:00
|
|
|
#include <sys/time.h>
|
2015-05-07 20:54:38 +00:00
|
|
|
#include <sys/stat.h>
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <err.h>
|
2002-02-22 20:51:00 +00:00
|
|
|
#include <locale.h>
|
1994-05-26 06:18:55 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
1998-10-03 16:29:59 +00:00
|
|
|
#include <string.h>
|
1994-05-26 06:18:55 +00:00
|
|
|
#include <syslog.h>
|
|
|
|
#include <unistd.h>
|
2010-01-13 17:56:54 +00:00
|
|
|
#include <utmpx.h>
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
#include "extern.h"
|
1997-08-04 03:37:07 +00:00
|
|
|
#include "vary.h"
|
1994-05-26 06:18:55 +00:00
|
|
|
|
1999-12-29 16:50:08 +00:00
|
|
|
#ifndef TM_YEAR_BASE
|
|
|
|
#define TM_YEAR_BASE 1900
|
|
|
|
#endif
|
|
|
|
|
2002-10-18 14:48:48 +00:00
|
|
|
static time_t tval;
|
1999-05-14 00:28:41 +00:00
|
|
|
int retval;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2002-02-02 06:24:13 +00:00
|
|
|
static void setthetime(const char *, const char *, int, int);
|
|
|
|
static void badformat(void);
|
|
|
|
static void usage(void);
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2014-04-26 13:05:56 +00:00
|
|
|
static const char *rfc2822_format = "%a, %d %b %Y %T %z";
|
|
|
|
|
1994-05-26 06:18:55 +00:00
|
|
|
int
|
2002-02-02 06:24:13 +00:00
|
|
|
main(int argc, char *argv[])
|
1994-05-26 06:18:55 +00:00
|
|
|
{
|
|
|
|
struct timezone tz;
|
1997-10-03 12:54:30 +00:00
|
|
|
int ch, rflag;
|
2014-04-26 13:05:56 +00:00
|
|
|
int jflag, nflag, Rflag;
|
2002-02-22 20:51:00 +00:00
|
|
|
const char *format;
|
|
|
|
char buf[1024];
|
1997-08-10 16:36:59 +00:00
|
|
|
char *endptr, *fmt;
|
2001-10-28 02:28:04 +00:00
|
|
|
char *tmp;
|
1994-12-26 12:59:28 +00:00
|
|
|
int set_timezone;
|
1997-08-04 03:37:07 +00:00
|
|
|
struct vary *v;
|
|
|
|
const struct vary *badv;
|
|
|
|
struct tm lt;
|
2015-05-07 20:54:38 +00:00
|
|
|
struct stat sb;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
1997-08-04 03:37:07 +00:00
|
|
|
v = NULL;
|
1997-08-10 16:36:59 +00:00
|
|
|
fmt = NULL;
|
1995-10-23 20:26:53 +00:00
|
|
|
(void) setlocale(LC_TIME, "");
|
1994-05-26 06:18:55 +00:00
|
|
|
tz.tz_dsttime = tz.tz_minuteswest = 0;
|
1997-10-03 12:54:30 +00:00
|
|
|
rflag = 0;
|
2014-04-26 13:05:56 +00:00
|
|
|
jflag = nflag = Rflag = 0;
|
1994-12-26 12:59:28 +00:00
|
|
|
set_timezone = 0;
|
2014-04-26 13:05:56 +00:00
|
|
|
while ((ch = getopt(argc, argv, "d:f:jnRr:t:uv:")) != -1)
|
1994-05-26 06:18:55 +00:00
|
|
|
switch((char)ch) {
|
|
|
|
case 'd': /* daylight savings time */
|
1994-12-26 12:59:28 +00:00
|
|
|
tz.tz_dsttime = strtol(optarg, &endptr, 10) ? 1 : 0;
|
|
|
|
if (endptr == optarg || *endptr != '\0')
|
|
|
|
usage();
|
|
|
|
set_timezone = 1;
|
1994-05-26 06:18:55 +00:00
|
|
|
break;
|
1997-08-10 16:36:59 +00:00
|
|
|
case 'f':
|
|
|
|
fmt = optarg;
|
|
|
|
break;
|
1999-05-14 00:28:41 +00:00
|
|
|
case 'j':
|
|
|
|
jflag = 1; /* don't set time */
|
|
|
|
break;
|
1994-05-26 06:18:55 +00:00
|
|
|
case 'n': /* don't set network */
|
|
|
|
nflag = 1;
|
|
|
|
break;
|
2014-04-26 13:05:56 +00:00
|
|
|
case 'R': /* RFC 2822 datetime format */
|
|
|
|
Rflag = 1;
|
|
|
|
break;
|
1994-05-26 06:18:55 +00:00
|
|
|
case 'r': /* user specified seconds */
|
|
|
|
rflag = 1;
|
2001-10-28 02:28:04 +00:00
|
|
|
tval = strtoq(optarg, &tmp, 0);
|
2015-05-07 20:54:38 +00:00
|
|
|
if (*tmp != 0) {
|
|
|
|
if (stat(optarg, &sb) == 0)
|
|
|
|
tval = sb.st_mtim.tv_sec;
|
|
|
|
else
|
|
|
|
usage();
|
|
|
|
}
|
1994-05-26 06:18:55 +00:00
|
|
|
break;
|
2000-05-19 18:02:25 +00:00
|
|
|
case 't': /* minutes west of UTC */
|
1994-05-26 06:18:55 +00:00
|
|
|
/* error check; don't allow "PST" */
|
1994-12-26 12:59:28 +00:00
|
|
|
tz.tz_minuteswest = strtol(optarg, &endptr, 10);
|
|
|
|
if (endptr == optarg || *endptr != '\0')
|
|
|
|
usage();
|
|
|
|
set_timezone = 1;
|
|
|
|
break;
|
2000-05-19 18:02:25 +00:00
|
|
|
case 'u': /* do everything in UTC */
|
|
|
|
(void)setenv("TZ", "UTC0", 1);
|
1997-08-10 16:36:59 +00:00
|
|
|
break;
|
1997-08-09 22:34:06 +00:00
|
|
|
case 'v':
|
|
|
|
v = vary_append(v, optarg);
|
1997-08-04 03:37:07 +00:00
|
|
|
break;
|
1994-05-26 06:18:55 +00:00
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If -d or -t, set the timezone or daylight savings time; this
|
1997-04-16 05:59:21 +00:00
|
|
|
* doesn't belong here; the kernel should not know about either.
|
1994-05-26 06:18:55 +00:00
|
|
|
*/
|
2012-09-01 14:45:15 +00:00
|
|
|
if (set_timezone && settimeofday(NULL, &tz) != 0)
|
1994-12-26 12:59:28 +00:00
|
|
|
err(1, "settimeofday (timezone)");
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
if (!rflag && time(&tval) == -1)
|
|
|
|
err(1, "time");
|
|
|
|
|
1995-08-05 23:08:17 +00:00
|
|
|
format = "%+";
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2014-04-26 13:05:56 +00:00
|
|
|
if (Rflag)
|
|
|
|
format = rfc2822_format;
|
|
|
|
|
1994-05-26 06:18:55 +00:00
|
|
|
/* allow the operands in any order */
|
|
|
|
if (*argv && **argv == '+') {
|
|
|
|
format = *argv + 1;
|
|
|
|
++argv;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*argv) {
|
1999-05-14 00:28:41 +00:00
|
|
|
setthetime(fmt, *argv, jflag, nflag);
|
1994-05-26 06:18:55 +00:00
|
|
|
++argv;
|
1997-08-10 16:36:59 +00:00
|
|
|
} else if (fmt != NULL)
|
|
|
|
usage();
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
if (*argv && **argv == '+')
|
|
|
|
format = *argv + 1;
|
|
|
|
|
1997-08-04 03:37:07 +00:00
|
|
|
lt = *localtime(&tval);
|
|
|
|
badv = vary_apply(v, <);
|
|
|
|
if (badv) {
|
1997-08-09 22:34:06 +00:00
|
|
|
fprintf(stderr, "%s: Cannot apply date adjustment\n",
|
|
|
|
badv->arg);
|
1997-08-04 03:37:07 +00:00
|
|
|
vary_destroy(v);
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
vary_destroy(v);
|
2014-04-26 13:05:56 +00:00
|
|
|
|
|
|
|
if (format == rfc2822_format)
|
|
|
|
/*
|
|
|
|
* When using RFC 2822 datetime format, don't honor the
|
|
|
|
* locale.
|
|
|
|
*/
|
|
|
|
setlocale(LC_TIME, "C");
|
|
|
|
|
1997-08-04 03:37:07 +00:00
|
|
|
(void)strftime(buf, sizeof(buf), format, <);
|
1997-10-03 12:54:30 +00:00
|
|
|
(void)printf("%s\n", buf);
|
2003-10-04 07:16:40 +00:00
|
|
|
if (fflush(stdout))
|
|
|
|
err(1, "stdout");
|
1994-05-26 06:18:55 +00:00
|
|
|
exit(retval);
|
|
|
|
}
|
|
|
|
|
1999-12-29 16:50:08 +00:00
|
|
|
#define ATOI2(s) ((s) += 2, ((s)[-2] - '0') * 10 + ((s)[-1] - '0'))
|
|
|
|
|
2002-10-18 14:48:48 +00:00
|
|
|
static void
|
2002-02-02 06:24:13 +00:00
|
|
|
setthetime(const char *fmt, const char *p, int jflag, int nflag)
|
1994-05-26 06:18:55 +00:00
|
|
|
{
|
2009-12-05 20:09:50 +00:00
|
|
|
struct utmpx utx;
|
2002-02-02 06:24:13 +00:00
|
|
|
struct tm *lt;
|
1994-05-26 06:18:55 +00:00
|
|
|
struct timeval tv;
|
1997-08-10 16:36:59 +00:00
|
|
|
const char *dot, *t;
|
1999-12-29 16:50:08 +00:00
|
|
|
int century;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2008-02-07 16:04:24 +00:00
|
|
|
lt = localtime(&tval);
|
|
|
|
lt->tm_isdst = -1; /* divine correct DST */
|
|
|
|
|
1997-08-10 16:36:59 +00:00
|
|
|
if (fmt != NULL) {
|
|
|
|
t = strptime(p, fmt, lt);
|
|
|
|
if (t == NULL) {
|
|
|
|
fprintf(stderr, "Failed conversion of ``%s''"
|
|
|
|
" using format ``%s''\n", p, fmt);
|
1999-06-25 09:04:48 +00:00
|
|
|
badformat();
|
1997-08-10 16:36:59 +00:00
|
|
|
} else if (*t != '\0')
|
1998-01-25 08:59:08 +00:00
|
|
|
fprintf(stderr, "Warning: Ignoring %ld extraneous"
|
1997-08-10 16:36:59 +00:00
|
|
|
" characters in date string (%s)\n",
|
1998-01-25 08:59:08 +00:00
|
|
|
(long) strlen(t), t);
|
1997-08-10 16:36:59 +00:00
|
|
|
} else {
|
|
|
|
for (t = p, dot = NULL; *t; ++t) {
|
|
|
|
if (isdigit(*t))
|
|
|
|
continue;
|
|
|
|
if (*t == '.' && dot == NULL) {
|
|
|
|
dot = t;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
badformat();
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
1997-08-10 16:36:59 +00:00
|
|
|
if (dot != NULL) { /* .ss */
|
|
|
|
dot++; /* *dot++ = '\0'; */
|
|
|
|
if (strlen(dot) != 2)
|
|
|
|
badformat();
|
|
|
|
lt->tm_sec = ATOI2(dot);
|
|
|
|
if (lt->tm_sec > 61)
|
|
|
|
badformat();
|
|
|
|
} else
|
|
|
|
lt->tm_sec = 0;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
1999-12-29 16:50:08 +00:00
|
|
|
century = 0;
|
1997-09-30 20:06:15 +00:00
|
|
|
/* if p has a ".ss" field then let's pretend it's not there */
|
|
|
|
switch (strlen(p) - ((dot != NULL) ? 3 : 0)) {
|
1999-11-10 13:34:39 +00:00
|
|
|
case 12: /* cc */
|
1999-12-29 16:50:08 +00:00
|
|
|
lt->tm_year = ATOI2(p) * 100 - TM_YEAR_BASE;
|
|
|
|
century = 1;
|
|
|
|
/* FALLTHROUGH */
|
1997-08-10 16:36:59 +00:00
|
|
|
case 10: /* yy */
|
1999-12-29 16:50:08 +00:00
|
|
|
if (century)
|
|
|
|
lt->tm_year += ATOI2(p);
|
2004-03-04 15:46:14 +00:00
|
|
|
else {
|
1999-12-29 16:50:08 +00:00
|
|
|
lt->tm_year = ATOI2(p);
|
2004-03-04 15:46:14 +00:00
|
|
|
if (lt->tm_year < 69) /* hack for 2000 ;-} */
|
1999-12-29 16:50:08 +00:00
|
|
|
lt->tm_year += 2000 - TM_YEAR_BASE;
|
|
|
|
else
|
|
|
|
lt->tm_year += 1900 - TM_YEAR_BASE;
|
|
|
|
}
|
|
|
|
/* FALLTHROUGH */
|
1997-08-10 16:36:59 +00:00
|
|
|
case 8: /* mm */
|
|
|
|
lt->tm_mon = ATOI2(p);
|
|
|
|
if (lt->tm_mon > 12)
|
|
|
|
badformat();
|
|
|
|
--lt->tm_mon; /* time struct is 0 - 11 */
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
case 6: /* dd */
|
|
|
|
lt->tm_mday = ATOI2(p);
|
|
|
|
if (lt->tm_mday > 31)
|
|
|
|
badformat();
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
case 4: /* HH */
|
|
|
|
lt->tm_hour = ATOI2(p);
|
|
|
|
if (lt->tm_hour > 23)
|
|
|
|
badformat();
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
case 2: /* MM */
|
|
|
|
lt->tm_min = ATOI2(p);
|
|
|
|
if (lt->tm_min > 59)
|
|
|
|
badformat();
|
|
|
|
break;
|
|
|
|
default:
|
1994-05-26 06:18:55 +00:00
|
|
|
badformat();
|
1997-08-10 16:36:59 +00:00
|
|
|
}
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* convert broken-down time to GMT clock time */
|
|
|
|
if ((tval = mktime(lt)) == -1)
|
1996-04-06 01:42:09 +00:00
|
|
|
errx(1, "nonexistent time");
|
1994-05-26 06:18:55 +00:00
|
|
|
|
1999-05-14 00:28:41 +00:00
|
|
|
if (!jflag) {
|
|
|
|
/* set the time */
|
|
|
|
if (nflag || netsettime(tval)) {
|
2009-12-05 20:09:50 +00:00
|
|
|
utx.ut_type = OLD_TIME;
|
2012-09-01 14:45:15 +00:00
|
|
|
(void)gettimeofday(&utx.ut_tv, NULL);
|
2009-12-05 20:09:50 +00:00
|
|
|
pututxline(&utx);
|
1999-05-14 00:28:41 +00:00
|
|
|
tv.tv_sec = tval;
|
|
|
|
tv.tv_usec = 0;
|
2012-09-01 14:45:15 +00:00
|
|
|
if (settimeofday(&tv, NULL) != 0)
|
1999-05-14 00:28:41 +00:00
|
|
|
err(1, "settimeofday (timeval)");
|
2009-12-05 20:09:50 +00:00
|
|
|
utx.ut_type = NEW_TIME;
|
2012-09-01 14:45:15 +00:00
|
|
|
(void)gettimeofday(&utx.ut_tv, NULL);
|
2009-12-05 20:09:50 +00:00
|
|
|
pututxline(&utx);
|
1999-05-14 00:28:41 +00:00
|
|
|
}
|
1994-05-26 06:18:55 +00:00
|
|
|
|
1999-05-14 00:28:41 +00:00
|
|
|
if ((p = getlogin()) == NULL)
|
|
|
|
p = "???";
|
|
|
|
syslog(LOG_AUTH | LOG_NOTICE, "date set by %s", p);
|
|
|
|
}
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-02-02 06:24:13 +00:00
|
|
|
badformat(void)
|
1994-05-26 06:18:55 +00:00
|
|
|
{
|
|
|
|
warnx("illegal time format");
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-02-02 06:24:13 +00:00
|
|
|
usage(void)
|
1994-05-26 06:18:55 +00:00
|
|
|
{
|
1997-06-06 06:40:06 +00:00
|
|
|
(void)fprintf(stderr, "%s\n%s\n",
|
2014-04-26 13:05:56 +00:00
|
|
|
"usage: date [-jnRu] [-d dst] [-r seconds] [-t west] "
|
1999-03-09 09:38:54 +00:00
|
|
|
"[-v[+|-]val[ymwdHMS]] ... ",
|
1999-11-10 13:34:39 +00:00
|
|
|
" "
|
|
|
|
"[-f fmt date | [[[[[cc]yy]mm]dd]HH]MM[.ss]] [+format]");
|
1994-05-26 06:18:55 +00:00
|
|
|
exit(1);
|
|
|
|
}
|