date.c revision 1.13 1 /* $NetBSD: date.c,v 1.13 1997/01/24 18:17:17 perry Exp $ */
2
3 /*
4 * Copyright (c) 1985, 1987, 1988, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by the University of
18 * California, Berkeley and its contributors.
19 * 4. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 */
35
36 #ifndef lint
37 static char copyright[] =
38 "@(#) Copyright (c) 1985, 1987, 1988, 1993\n\
39 The Regents of the University of California. All rights reserved.\n";
40 #endif /* not lint */
41
42 #ifndef lint
43 #if 0
44 static char sccsid[] = "@(#)date.c 8.2 (Berkeley) 4/28/95";
45 #else
46 static char rcsid[] = "$NetBSD: date.c,v 1.13 1997/01/24 18:17:17 perry Exp $";
47 #endif
48 #endif /* not lint */
49
50 #include <sys/param.h>
51 #include <sys/time.h>
52
53 #include <ctype.h>
54 #include <err.h>
55 #include <fcntl.h>
56 #include <stdio.h>
57 #include <stdlib.h>
58 #include <string.h>
59 #include <locale.h>
60 #include <syslog.h>
61 #include <unistd.h>
62
63 #include "extern.h"
64
65 time_t tval;
66 int retval, nflag;
67
68 static void setthetime __P((char *));
69 static void badformat __P((void));
70 static void usage __P((void));
71
72 int logwtmp __P((char *, char *, char *));
73
74 int
75 main(argc, argv)
76 int argc;
77 char **argv;
78 {
79 extern int optind;
80 extern char *optarg;
81 int ch, rflag;
82 char *format, buf[1024];
83
84 setlocale(LC_ALL, "");
85
86 rflag = 0;
87 while ((ch = getopt(argc, argv, "nr:u")) != -1)
88 switch((char)ch) {
89 case 'n': /* don't set network */
90 nflag = 1;
91 break;
92 case 'r': /* user specified seconds */
93 rflag = 1;
94 tval = atol(optarg);
95 break;
96 case 'u': /* do everything in GMT */
97 (void)setenv("TZ", "GMT0", 1);
98 break;
99 default:
100 usage();
101 }
102 argc -= optind;
103 argv += optind;
104
105 if (!rflag && time(&tval) == -1)
106 err(1, "time");
107
108 format = "%a %b %e %H:%M:%S %Z %Y";
109
110 /* allow the operands in any order */
111 if (*argv && **argv == '+') {
112 format = *argv + 1;
113 ++argv;
114 }
115
116 if (*argv) {
117 setthetime(*argv);
118 ++argv;
119 }
120
121 if (*argv && **argv == '+')
122 format = *argv + 1;
123
124 (void)strftime(buf, sizeof(buf), format, localtime(&tval));
125 (void)printf("%s\n", buf);
126 exit(retval);
127 }
128
129 #define ATOI2(ar) ((ar)[0] - '0') * 10 + ((ar)[1] - '0'); (ar) += 2;
130 void
131 setthetime(p)
132 char *p;
133 {
134 struct tm *lt;
135 struct timeval tv;
136 char *dot, *t;
137
138 for (t = p, dot = NULL; *t; ++t) {
139 if (isdigit(*t))
140 continue;
141 if (*t == '.' && dot == NULL) {
142 dot = t;
143 continue;
144 }
145 badformat();
146 }
147
148 lt = localtime(&tval);
149
150 if (dot != NULL) { /* .ss */
151 *dot++ = '\0';
152 if (strlen(dot) != 2)
153 badformat();
154 lt->tm_sec = ATOI2(dot);
155 if (lt->tm_sec > 61)
156 badformat();
157 } else
158 lt->tm_sec = 0;
159
160 switch (strlen(p)) {
161 case 10: /* yy */
162 lt->tm_year = ATOI2(p);
163 if (lt->tm_year < 69) /* hack for 2000 ;-} */
164 lt->tm_year += 100;
165 /* FALLTHROUGH */
166 case 8: /* mm */
167 lt->tm_mon = ATOI2(p);
168 if (lt->tm_mon > 12)
169 badformat();
170 --lt->tm_mon; /* time struct is 0 - 11 */
171 /* FALLTHROUGH */
172 case 6: /* dd */
173 lt->tm_mday = ATOI2(p);
174 if (lt->tm_mday > 31)
175 badformat();
176 /* FALLTHROUGH */
177 case 4: /* hh */
178 lt->tm_hour = ATOI2(p);
179 if (lt->tm_hour > 23)
180 badformat();
181 /* FALLTHROUGH */
182 case 2: /* mm */
183 lt->tm_min = ATOI2(p);
184 if (lt->tm_min > 59)
185 badformat();
186 break;
187 default:
188 badformat();
189 }
190
191 /* convert broken-down time to GMT clock time */
192 if ((tval = mktime(lt)) == -1)
193 badformat();
194
195 /* set the time */
196 if (nflag || netsettime(tval)) {
197 logwtmp("|", "date", "");
198 tv.tv_sec = tval;
199 tv.tv_usec = 0;
200 if (settimeofday(&tv, NULL)) {
201 perror("date: settimeofday");
202 exit(1);
203 }
204 logwtmp("{", "date", "");
205 }
206
207 if ((p = getlogin()) == NULL)
208 p = "???";
209 syslog(LOG_AUTH | LOG_NOTICE, "date set by %s", p);
210 }
211
212 static void
213 badformat()
214 {
215 warnx("illegal time format");
216 usage();
217 }
218
219 static void
220 usage()
221 {
222 (void)fprintf(stderr,
223 "usage: date [-nu] [-r seconds] [+format]\n");
224 (void)fprintf(stderr, " [yy[mm[dd[hh]]]]mm[.ss]]\n");
225 exit(1);
226 }
227