blob: 4b2f66add384cfc87b32eaf3d3bbb0922547df26 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersen2ce1edc1999-10-12 15:42:48 +00002/*
3 * Mini date implementation for busybox
4 *
Eric Andersenc4996011999-10-20 22:08:37 +00005 * by Matthew Grant <grantma@anathoth.gen.nz>
Eric Andersen2ce1edc1999-10-12 15:42:48 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21*/
22
Eric Andersencc8ed391999-10-05 16:24:54 +000023#include <stdlib.h>
24#include <errno.h>
25#include <sys/time.h>
26#include <unistd.h>
27#include <time.h>
28#include <stdio.h>
Eric Andersened3ef502001-01-27 08:24:39 +000029#include <string.h>
Eric Andersen88f50b62000-08-10 17:59:11 +000030#include <getopt.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000031#include "busybox.h"
32#define BB_DECLARE_EXTERN
33#define bb_need_invalid_date
34#define bb_need_memory_exhausted
35#include "messages.c"
Eric Andersencc8ed391999-10-05 16:24:54 +000036
37
38/* This 'date' command supports only 2 time setting formats,
39 all the GNU strftime stuff (its in libc, lets use it),
40 setting time using UTC and displaying int, as well as
41 an RFC 822 complient date output for shell scripting
42 mail commands */
43
Eric Andersencc8ed391999-10-05 16:24:54 +000044/* Input parsing code is always bulky - used heavy duty libc stuff as
45 much as possible, missed out a lot of bounds checking */
46
47/* Default input handling to save suprising some people */
48
Eric Andersen3e6ff902001-03-09 21:24:12 +000049static struct tm *date_conv_time(struct tm *tm_time, const char *t_string)
Erik Andersene49d5ec2000-02-08 19:58:47 +000050{
51 int nr;
Eric Andersencc8ed391999-10-05 16:24:54 +000052
Erik Andersene49d5ec2000-02-08 19:58:47 +000053 nr = sscanf(t_string, "%2d%2d%2d%2d%d",
54 &(tm_time->tm_mon),
55 &(tm_time->tm_mday),
56 &(tm_time->tm_hour),
57 &(tm_time->tm_min), &(tm_time->tm_year));
Eric Andersencc8ed391999-10-05 16:24:54 +000058
Erik Andersene49d5ec2000-02-08 19:58:47 +000059 if (nr < 4 || nr > 5) {
Mark Whitleyf57c9442000-12-07 19:56:48 +000060 error_msg_and_die(invalid_date, t_string);
Erik Andersene49d5ec2000-02-08 19:58:47 +000061 }
Eric Andersencc8ed391999-10-05 16:24:54 +000062
Erik Andersene49d5ec2000-02-08 19:58:47 +000063 /* correct for century - minor Y2K problem here? */
64 if (tm_time->tm_year >= 1900)
65 tm_time->tm_year -= 1900;
66 /* adjust date */
67 tm_time->tm_mon -= 1;
68
69 return (tm_time);
Eric Andersencc8ed391999-10-05 16:24:54 +000070
71}
72
73
74/* The new stuff for LRP */
75
Eric Andersen3e6ff902001-03-09 21:24:12 +000076static struct tm *date_conv_ftime(struct tm *tm_time, const char *t_string)
Erik Andersene49d5ec2000-02-08 19:58:47 +000077{
Eric Andersen7b5d5942000-11-29 22:01:42 +000078 struct tm t;
Eric Andersencc8ed391999-10-05 16:24:54 +000079
Erik Andersene49d5ec2000-02-08 19:58:47 +000080 /* Parse input and assign appropriately to tm_time */
Eric Andersencc8ed391999-10-05 16:24:54 +000081
Eric Andersen7b5d5942000-11-29 22:01:42 +000082 if (t=*tm_time,sscanf(t_string, "%d:%d:%d",
83 &t.tm_hour, &t.tm_min, &t.tm_sec) == 3) {
84 /* no adjustments needed */
Eric Andersencc8ed391999-10-05 16:24:54 +000085
Eric Andersen7b5d5942000-11-29 22:01:42 +000086 } else if (t=*tm_time,sscanf(t_string, "%d:%d",
87 &t.tm_hour, &t.tm_min) == 2) {
88 /* no adjustments needed */
Eric Andersencc8ed391999-10-05 16:24:54 +000089
Eric Andersencc8ed391999-10-05 16:24:54 +000090
Eric Andersen7b5d5942000-11-29 22:01:42 +000091 } else if (t=*tm_time,sscanf(t_string, "%d.%d-%d:%d:%d",
92 &t.tm_mon,
93 &t.tm_mday,
94 &t.tm_hour,
95 &t.tm_min, &t.tm_sec) == 5) {
Eric Andersencc8ed391999-10-05 16:24:54 +000096
Eric Andersen7b5d5942000-11-29 22:01:42 +000097 t.tm_mon -= 1; /* Adjust dates from 1-12 to 0-11 */
Eric Andersencc8ed391999-10-05 16:24:54 +000098
Eric Andersen7b5d5942000-11-29 22:01:42 +000099 } else if (t=*tm_time,sscanf(t_string, "%d.%d-%d:%d",
100 &t.tm_mon,
101 &t.tm_mday,
102 &t.tm_hour, &t.tm_min) == 4) {
Eric Andersencc8ed391999-10-05 16:24:54 +0000103
Eric Andersen7b5d5942000-11-29 22:01:42 +0000104 t.tm_mon -= 1; /* Adjust dates from 1-12 to 0-11 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000105
Eric Andersen7b5d5942000-11-29 22:01:42 +0000106 } else if (t=*tm_time,sscanf(t_string, "%d.%d.%d-%d:%d:%d",
107 &t.tm_year,
108 &t.tm_mon,
109 &t.tm_mday,
110 &t.tm_hour,
111 &t.tm_min, &t.tm_sec) == 6) {
Eric Andersencc8ed391999-10-05 16:24:54 +0000112
Eric Andersen7b5d5942000-11-29 22:01:42 +0000113 t.tm_year -= 1900; /* Adjust years */
114 t.tm_mon -= 1; /* Adjust dates from 1-12 to 0-11 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000115
Eric Andersen7b5d5942000-11-29 22:01:42 +0000116 } else if (t=*tm_time,sscanf(t_string, "%d.%d.%d-%d:%d",
117 &t.tm_year,
118 &t.tm_mon,
119 &t.tm_mday,
120 &t.tm_hour, &t.tm_min) == 5) {
121 t.tm_year -= 1900; /* Adjust years */
122 t.tm_mon -= 1; /* Adjust dates from 1-12 to 0-11 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000123
Eric Andersen7b5d5942000-11-29 22:01:42 +0000124 } else {
Mark Whitleyf57c9442000-12-07 19:56:48 +0000125 error_msg_and_die(invalid_date, t_string);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000126 }
Eric Andersen7b5d5942000-11-29 22:01:42 +0000127 *tm_time = t;
128 return (tm_time);
Eric Andersencc8ed391999-10-05 16:24:54 +0000129}
130
131
Erik Andersene49d5ec2000-02-08 19:58:47 +0000132int date_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +0000133{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000134 char *date_str = NULL;
135 char *date_fmt = NULL;
136 char *t_buff;
Pavel Roskin47d49262000-07-17 16:17:19 +0000137 int c;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000138 int set_time = 0;
139 int rfc822 = 0;
140 int utc = 0;
141 int use_arg = 0;
142 time_t tm;
143 struct tm tm_time;
144
145 /* Interpret command line args */
Eric Andersenadd09fd2000-07-14 18:39:08 +0000146 while ((c = getopt(argc, argv, "Rs:ud:")) != EOF) {
147 switch (c) {
Eric Andersena683ee82000-11-17 18:51:45 +0000148 case 'R':
149 rfc822 = 1;
150 break;
151 case 's':
152 set_time = 1;
153 if ((date_str != NULL) || ((date_str = optarg) == NULL)) {
Eric Andersen67991cf2001-02-14 21:23:06 +0000154 show_usage();
Eric Andersena683ee82000-11-17 18:51:45 +0000155 }
156 break;
157 case 'u':
158 utc = 1;
159 if (putenv("TZ=UTC0") != 0)
Mark Whitleyf57c9442000-12-07 19:56:48 +0000160 error_msg_and_die(memory_exhausted);
Eric Andersena683ee82000-11-17 18:51:45 +0000161 break;
162 case 'd':
163 use_arg = 1;
164 if ((date_str != NULL) || ((date_str = optarg) == NULL))
Eric Andersen67991cf2001-02-14 21:23:06 +0000165 show_usage();
Eric Andersena683ee82000-11-17 18:51:45 +0000166 break;
167 default:
Eric Andersen67991cf2001-02-14 21:23:06 +0000168 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000169 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000170 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000171
Eric Andersenadd09fd2000-07-14 18:39:08 +0000172 if ((date_fmt == NULL) && (optind < argc) && (argv[optind][0] == '+'))
173 date_fmt = &argv[optind][1]; /* Skip over the '+' */
174 else if (date_str == NULL) {
175 set_time = 1;
176 date_str = argv[optind];
Eric Andersena683ee82000-11-17 18:51:45 +0000177 }
178#if 0
179 else {
Mark Whitleyf57c9442000-12-07 19:56:48 +0000180 error_msg("date_str='%s' date_fmt='%s'\n", date_str, date_fmt);
Eric Andersen67991cf2001-02-14 21:23:06 +0000181 show_usage();
Eric Andersenadd09fd2000-07-14 18:39:08 +0000182 }
Eric Andersena683ee82000-11-17 18:51:45 +0000183#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000184
Erik Andersene49d5ec2000-02-08 19:58:47 +0000185 /* Now we have parsed all the information except the date format
186 which depends on whether the clock is being set or read */
Eric Andersencc8ed391999-10-05 16:24:54 +0000187
Erik Andersene49d5ec2000-02-08 19:58:47 +0000188 time(&tm);
189 memcpy(&tm_time, localtime(&tm), sizeof(tm_time));
190 /* Zero out fields - take her back to midnight! */
191 if (date_str != NULL) {
192 tm_time.tm_sec = 0;
193 tm_time.tm_min = 0;
194 tm_time.tm_hour = 0;
195 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000196
Erik Andersene49d5ec2000-02-08 19:58:47 +0000197 /* Process any date input to UNIX time since 1 Jan 1970 */
198 if (date_str != NULL) {
Eric Andersencc8ed391999-10-05 16:24:54 +0000199
Erik Andersene49d5ec2000-02-08 19:58:47 +0000200 if (strchr(date_str, ':') != NULL) {
201 date_conv_ftime(&tm_time, date_str);
202 } else {
203 date_conv_time(&tm_time, date_str);
204 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000205
Erik Andersene49d5ec2000-02-08 19:58:47 +0000206 /* Correct any day of week and day of year etc fields */
207 tm = mktime(&tm_time);
Erik Andersen1ad302a2000-03-24 00:54:46 +0000208 if (tm < 0)
Mark Whitleyf57c9442000-12-07 19:56:48 +0000209 error_msg_and_die(invalid_date, date_str);
Eric Andersena683ee82000-11-17 18:51:45 +0000210 if ( utc ) {
211 if (putenv("TZ=UTC0") != 0)
Mark Whitleyf57c9442000-12-07 19:56:48 +0000212 error_msg_and_die(memory_exhausted);
Eric Andersena683ee82000-11-17 18:51:45 +0000213 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000214
Erik Andersene49d5ec2000-02-08 19:58:47 +0000215 /* if setting time, set it */
216 if (set_time) {
217 if (stime(&tm) < 0) {
Mark Whitleyf57c9442000-12-07 19:56:48 +0000218 perror_msg("cannot set date");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000219 }
220 }
221 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000222
Erik Andersene49d5ec2000-02-08 19:58:47 +0000223 /* Display output */
Eric Andersencc8ed391999-10-05 16:24:54 +0000224
Erik Andersene49d5ec2000-02-08 19:58:47 +0000225 /* Deal with format string */
226 if (date_fmt == NULL) {
227 date_fmt = (rfc822
228 ? (utc
229 ? "%a, %_d %b %Y %H:%M:%S GMT"
230 : "%a, %_d %b %Y %H:%M:%S %z")
231 : "%a %b %e %H:%M:%S %Z %Y");
Eric Andersencc8ed391999-10-05 16:24:54 +0000232
Erik Andersene49d5ec2000-02-08 19:58:47 +0000233 } else if (*date_fmt == '\0') {
234 /* Imitate what GNU 'date' does with NO format string! */
235 printf("\n");
Matt Kraai3e856ce2000-12-01 02:55:13 +0000236 return EXIT_SUCCESS;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000237 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000238
Erik Andersene49d5ec2000-02-08 19:58:47 +0000239 /* Handle special conversions */
Eric Andersencc8ed391999-10-05 16:24:54 +0000240
Erik Andersene49d5ec2000-02-08 19:58:47 +0000241 if (strncmp(date_fmt, "%f", 2) == 0) {
242 date_fmt = "%Y.%m.%d-%H:%M:%S";
243 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000244
Erik Andersene49d5ec2000-02-08 19:58:47 +0000245 /* Print OUTPUT (after ALL that!) */
Erik Andersen0d068a22000-03-21 22:32:57 +0000246 t_buff = xmalloc(201);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000247 strftime(t_buff, 200, date_fmt, &tm_time);
248 printf("%s\n", t_buff);
249
Matt Kraai3e856ce2000-12-01 02:55:13 +0000250 return EXIT_SUCCESS;
Eric Andersencc8ed391999-10-05 16:24:54 +0000251}