blob: 9583a003653d6859000cb98bd6ee8034249d18a6 [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 Andersenc7bda1c2004-03-15 08:29:22 +00006 *
Robert Griebl6859d762002-08-05 02:57:12 +00007 * iso-format handling added by Robert Griebl <griebl@gmx.de>
Eric Andersen2ce1edc1999-10-12 15:42:48 +00008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23*/
24
Eric Andersencc8ed391999-10-05 16:24:54 +000025#include <stdlib.h>
26#include <errno.h>
27#include <sys/time.h>
28#include <unistd.h>
29#include <time.h>
30#include <stdio.h>
Eric Andersened3ef502001-01-27 08:24:39 +000031#include <string.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000032#include "busybox.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000033
34
Eric Andersenc7bda1c2004-03-15 08:29:22 +000035/* This 'date' command supports only 2 time setting formats,
Eric Andersencc8ed391999-10-05 16:24:54 +000036 all the GNU strftime stuff (its in libc, lets use it),
37 setting time using UTC and displaying int, as well as
38 an RFC 822 complient date output for shell scripting
39 mail commands */
40
Eric Andersencc8ed391999-10-05 16:24:54 +000041/* Input parsing code is always bulky - used heavy duty libc stuff as
42 much as possible, missed out a lot of bounds checking */
43
Eric Andersenaff114c2004-04-14 17:51:38 +000044/* Default input handling to save surprising some people */
Eric Andersencc8ed391999-10-05 16:24:54 +000045
Eric Andersen3e6ff902001-03-09 21:24:12 +000046static struct tm *date_conv_time(struct tm *tm_time, const char *t_string)
Erik Andersene49d5ec2000-02-08 19:58:47 +000047{
48 int nr;
Eric Andersen93158422004-10-11 20:52:16 +000049 char *cp;
Eric Andersencc8ed391999-10-05 16:24:54 +000050
Glenn L McGrath03195fc2002-08-23 05:58:38 +000051 nr = sscanf(t_string, "%2d%2d%2d%2d%d", &(tm_time->tm_mon),
52 &(tm_time->tm_mday), &(tm_time->tm_hour), &(tm_time->tm_min),
53 &(tm_time->tm_year));
Eric Andersencc8ed391999-10-05 16:24:54 +000054
Erik Andersene49d5ec2000-02-08 19:58:47 +000055 if (nr < 4 || nr > 5) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000056 bb_error_msg_and_die(bb_msg_invalid_date, t_string);
Erik Andersene49d5ec2000-02-08 19:58:47 +000057 }
Eric Andersencc8ed391999-10-05 16:24:54 +000058
Eric Andersen93158422004-10-11 20:52:16 +000059 cp = strchr(t_string, '.');
60 if (cp) {
61 nr = sscanf(cp + 1, "%2d", &(tm_time->tm_sec));
62 if (nr != 1) {
63 bb_error_msg_and_die(bb_msg_invalid_date, t_string);
64 }
65 }
66
Erik Andersene49d5ec2000-02-08 19:58:47 +000067 /* correct for century - minor Y2K problem here? */
Glenn L McGrath03195fc2002-08-23 05:58:38 +000068 if (tm_time->tm_year >= 1900) {
Erik Andersene49d5ec2000-02-08 19:58:47 +000069 tm_time->tm_year -= 1900;
Glenn L McGrath03195fc2002-08-23 05:58:38 +000070 }
Erik Andersene49d5ec2000-02-08 19:58:47 +000071 /* adjust date */
72 tm_time->tm_mon -= 1;
73
74 return (tm_time);
Eric Andersencc8ed391999-10-05 16:24:54 +000075
76}
77
78
79/* The new stuff for LRP */
80
Eric Andersen3e6ff902001-03-09 21:24:12 +000081static struct tm *date_conv_ftime(struct tm *tm_time, const char *t_string)
Erik Andersene49d5ec2000-02-08 19:58:47 +000082{
Eric Andersen7b5d5942000-11-29 22:01:42 +000083 struct tm t;
Eric Andersencc8ed391999-10-05 16:24:54 +000084
Erik Andersene49d5ec2000-02-08 19:58:47 +000085 /* Parse input and assign appropriately to tm_time */
Eric Andersencc8ed391999-10-05 16:24:54 +000086
Glenn L McGrath03195fc2002-08-23 05:58:38 +000087 if (t =
88 *tm_time, sscanf(t_string, "%d:%d:%d", &t.tm_hour, &t.tm_min,
89 &t.tm_sec) == 3) {
90 /* no adjustments needed */
91 } else if (t =
92 *tm_time, sscanf(t_string, "%d:%d", &t.tm_hour,
93 &t.tm_min) == 2) {
94 /* no adjustments needed */
95 } else if (t =
96 *tm_time, sscanf(t_string, "%d.%d-%d:%d:%d", &t.tm_mon,
97 &t.tm_mday, &t.tm_hour, &t.tm_min,
98 &t.tm_sec) == 5) {
99 /* Adjust dates from 1-12 to 0-11 */
100 t.tm_mon -= 1;
101 } else if (t =
102 *tm_time, sscanf(t_string, "%d.%d-%d:%d", &t.tm_mon,
103 &t.tm_mday, &t.tm_hour, &t.tm_min) == 4) {
104 /* Adjust dates from 1-12 to 0-11 */
105 t.tm_mon -= 1;
106 } else if (t =
107 *tm_time, sscanf(t_string, "%d.%d.%d-%d:%d:%d", &t.tm_year,
108 &t.tm_mon, &t.tm_mday, &t.tm_hour, &t.tm_min,
109 &t.tm_sec) == 6) {
Eric Andersen7b5d5942000-11-29 22:01:42 +0000110 t.tm_year -= 1900; /* Adjust years */
111 t.tm_mon -= 1; /* Adjust dates from 1-12 to 0-11 */
Glenn L McGrath03195fc2002-08-23 05:58:38 +0000112 } else if (t =
113 *tm_time, sscanf(t_string, "%d.%d.%d-%d:%d", &t.tm_year,
114 &t.tm_mon, &t.tm_mday, &t.tm_hour,
115 &t.tm_min) == 5) {
Eric Andersen7b5d5942000-11-29 22:01:42 +0000116 t.tm_year -= 1900; /* Adjust years */
117 t.tm_mon -= 1; /* Adjust dates from 1-12 to 0-11 */
Eric Andersen7b5d5942000-11-29 22:01:42 +0000118 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000119 bb_error_msg_and_die(bb_msg_invalid_date, t_string);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000120 }
Eric Andersen7b5d5942000-11-29 22:01:42 +0000121 *tm_time = t;
122 return (tm_time);
Eric Andersencc8ed391999-10-05 16:24:54 +0000123}
124
Glenn L McGrath5f115412004-02-17 07:51:31 +0000125#define DATE_OPT_RFC2822 0x01
126#define DATE_OPT_SET 0x02
127#define DATE_OPT_UTC 0x04
128#define DATE_OPT_DATE 0x08
Glenn L McGrath01cdb662004-02-17 12:22:21 +0000129#define DATE_OPT_REFERENCE 0x10
Glenn L McGrathc2266bd2004-02-17 07:58:04 +0000130#ifdef CONFIG_FEATURE_DATE_ISOFMT
Glenn L McGrath01cdb662004-02-17 12:22:21 +0000131# define DATE_OPT_TIMESPEC 0x20
Glenn L McGrathc2266bd2004-02-17 07:58:04 +0000132#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000133
Erik Andersene49d5ec2000-02-08 19:58:47 +0000134int date_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +0000135{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000136 char *date_str = NULL;
137 char *date_fmt = NULL;
Eric Andersen8876fb22003-06-20 09:01:58 +0000138 int set_time;
Eric Andersen8876fb22003-06-20 09:01:58 +0000139 int utc;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000140 int use_arg = 0;
141 time_t tm;
Eric Andersen8876fb22003-06-20 09:01:58 +0000142 unsigned long opt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000143 struct tm tm_time;
Glenn L McGrath01cdb662004-02-17 12:22:21 +0000144 char *filename = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000145
Robert Griebldf039322002-07-30 23:11:00 +0000146#ifdef CONFIG_FEATURE_DATE_ISOFMT
147 int ifmt = 0;
Eric Andersen8876fb22003-06-20 09:01:58 +0000148 char *isofmt_arg;
Glenn L McGrath03195fc2002-08-23 05:58:38 +0000149
150# define GETOPT_ISOFMT "I::"
Robert Griebldf039322002-07-30 23:11:00 +0000151#else
Glenn L McGrath03195fc2002-08-23 05:58:38 +0000152# define GETOPT_ISOFMT
Robert Griebldf039322002-07-30 23:11:00 +0000153#endif
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000154 bb_opt_complementally = "!d~ds:s~ds";
Glenn L McGrath01cdb662004-02-17 12:22:21 +0000155 opt = bb_getopt_ulflags(argc, argv, "Rs:ud:r:" GETOPT_ISOFMT,
156 &date_str, &date_str, &filename
Eric Andersen8876fb22003-06-20 09:01:58 +0000157#ifdef CONFIG_FEATURE_DATE_ISOFMT
158 , &isofmt_arg
159#endif
160 );
Glenn L McGrath5f115412004-02-17 07:51:31 +0000161 set_time = opt & DATE_OPT_SET;
162 utc = opt & DATE_OPT_UTC;
163 if ((utc) && (putenv("TZ=UTC0") != 0)) {
164 bb_error_msg_and_die(bb_msg_memory_exhausted);
Eric Andersen8876fb22003-06-20 09:01:58 +0000165 }
Glenn L McGrath5f115412004-02-17 07:51:31 +0000166 use_arg = opt & DATE_OPT_DATE;
Glenn L McGrath03195fc2002-08-23 05:58:38 +0000167#ifdef CONFIG_FEATURE_DATE_ISOFMT
Glenn L McGrathc2266bd2004-02-17 07:58:04 +0000168 if(opt & DATE_OPT_TIMESPEC) {
Glenn L McGrath5f115412004-02-17 07:51:31 +0000169 if (!isofmt_arg) {
170 ifmt = 1;
171 } else {
Eric Andersen8876fb22003-06-20 09:01:58 +0000172 int ifmt_len = bb_strlen(isofmt_arg);
Glenn L McGrath03195fc2002-08-23 05:58:38 +0000173
Glenn L McGrath5f115412004-02-17 07:51:31 +0000174 if ((ifmt_len <= 4)
Eric Andersen8876fb22003-06-20 09:01:58 +0000175 && (strncmp(isofmt_arg, "date", ifmt_len) == 0)) {
Glenn L McGrath5f115412004-02-17 07:51:31 +0000176 ifmt = 1;
177 } else if ((ifmt_len <= 5)
178 && (strncmp(isofmt_arg, "hours", ifmt_len) == 0)) {
179 ifmt = 2;
180 } else if ((ifmt_len <= 7)
181 && (strncmp(isofmt_arg, "minutes", ifmt_len) == 0)) {
182 ifmt = 3;
183 } else if ((ifmt_len <= 7)
184 && (strncmp(isofmt_arg, "seconds", ifmt_len) == 0)) {
185 ifmt = 4;
Glenn L McGrath03195fc2002-08-23 05:58:38 +0000186 }
Glenn L McGrath5f115412004-02-17 07:51:31 +0000187 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000188 if (!ifmt) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000189 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000190 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000191 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000192#endif
Robert Griebldf039322002-07-30 23:11:00 +0000193
Glenn L McGrath03195fc2002-08-23 05:58:38 +0000194 if ((date_fmt == NULL) && (optind < argc) && (argv[optind][0] == '+')) {
195 date_fmt = &argv[optind][1]; /* Skip over the '+' */
196 } else if (date_str == NULL) {
Eric Andersenadd09fd2000-07-14 18:39:08 +0000197 set_time = 1;
198 date_str = argv[optind];
Eric Andersenadd09fd2000-07-14 18:39:08 +0000199 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000200
Erik Andersene49d5ec2000-02-08 19:58:47 +0000201 /* Now we have parsed all the information except the date format
202 which depends on whether the clock is being set or read */
Eric Andersencc8ed391999-10-05 16:24:54 +0000203
Glenn L McGrath01cdb662004-02-17 12:22:21 +0000204 if(filename) {
205 struct stat statbuf;
206 if(stat(filename,&statbuf))
207 bb_perror_msg_and_die("File '%s' not found.\n",filename);
208 tm=statbuf.st_mtime;
209 } else time(&tm);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000210 memcpy(&tm_time, localtime(&tm), sizeof(tm_time));
211 /* Zero out fields - take her back to midnight! */
212 if (date_str != NULL) {
213 tm_time.tm_sec = 0;
214 tm_time.tm_min = 0;
215 tm_time.tm_hour = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000216
Glenn L McGrath5f115412004-02-17 07:51:31 +0000217 /* Process any date input to UNIX time since 1 Jan 1970 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000218 if (strchr(date_str, ':') != NULL) {
219 date_conv_ftime(&tm_time, date_str);
220 } else {
221 date_conv_time(&tm_time, date_str);
222 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000223
Eric Andersen77d92682001-05-23 20:32:09 +0000224 /* Correct any day of week and day of year etc. fields */
Manuel Novoa III b511f9c2003-07-23 23:24:31 +0000225 tm_time.tm_isdst = -1; /* Be sure to recheck dst. */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000226 tm = mktime(&tm_time);
Glenn L McGrath03195fc2002-08-23 05:58:38 +0000227 if (tm < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000228 bb_error_msg_and_die(bb_msg_invalid_date, date_str);
Glenn L McGrath03195fc2002-08-23 05:58:38 +0000229 }
230 if (utc && (putenv("TZ=UTC0") != 0)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000231 bb_error_msg_and_die(bb_msg_memory_exhausted);
Eric Andersena683ee82000-11-17 18:51:45 +0000232 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000233
Erik Andersene49d5ec2000-02-08 19:58:47 +0000234 /* if setting time, set it */
Glenn L McGrath03195fc2002-08-23 05:58:38 +0000235 if (set_time && (stime(&tm) < 0)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000236 bb_perror_msg("cannot set date");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000237 }
238 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000239
Erik Andersene49d5ec2000-02-08 19:58:47 +0000240 /* Display output */
Eric Andersencc8ed391999-10-05 16:24:54 +0000241
Erik Andersene49d5ec2000-02-08 19:58:47 +0000242 /* Deal with format string */
243 if (date_fmt == NULL) {
Robert Griebldf039322002-07-30 23:11:00 +0000244#ifdef CONFIG_FEATURE_DATE_ISOFMT
Glenn L McGrath03195fc2002-08-23 05:58:38 +0000245 switch (ifmt) {
246 case 4:
247 date_fmt = utc ? "%Y-%m-%dT%H:%M:%SZ" : "%Y-%m-%dT%H:%M:%S%z";
248 break;
249 case 3:
250 date_fmt = utc ? "%Y-%m-%dT%H:%MZ" : "%Y-%m-%dT%H:%M%z";
251 break;
252 case 2:
253 date_fmt = utc ? "%Y-%m-%dT%HZ" : "%Y-%m-%dT%H%z";
254 break;
255 case 1:
256 date_fmt = "%Y-%m-%d";
257 break;
258 case 0:
259 default:
Robert Griebldf039322002-07-30 23:11:00 +0000260#endif
Eric Andersen39396b92004-04-06 09:38:18 +0000261 date_fmt = (opt & DATE_OPT_RFC2822 ?
262 (utc ? "%a, %d %b %Y %H:%M:%S GMT" :
263 "%a, %d %b %Y %H:%M:%S %z") :
264 "%a %b %e %H:%M:%S %Z %Y");
Glenn L McGrath03195fc2002-08-23 05:58:38 +0000265
Robert Griebldf039322002-07-30 23:11:00 +0000266#ifdef CONFIG_FEATURE_DATE_ISOFMT
Glenn L McGrath03195fc2002-08-23 05:58:38 +0000267 break;
Robert Griebldf039322002-07-30 23:11:00 +0000268 }
269#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000270 } else if (*date_fmt == '\0') {
271 /* Imitate what GNU 'date' does with NO format string! */
272 printf("\n");
Matt Kraai3e856ce2000-12-01 02:55:13 +0000273 return EXIT_SUCCESS;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000274 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000275
Erik Andersene49d5ec2000-02-08 19:58:47 +0000276 /* Handle special conversions */
Eric Andersencc8ed391999-10-05 16:24:54 +0000277
Erik Andersene49d5ec2000-02-08 19:58:47 +0000278 if (strncmp(date_fmt, "%f", 2) == 0) {
279 date_fmt = "%Y.%m.%d-%H:%M:%S";
280 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000281
Rob Landleyf7662da2005-05-28 23:55:26 +0000282 {
283 /* Print OUTPUT (after ALL that!) */
284 RESERVE_CONFIG_BUFFER(t_buff, 201);
285 strftime(t_buff, 200, date_fmt, &tm_time);
286 puts(t_buff);
287 RELEASE_CONFIG_BUFFER(t_buff);
288 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000289
Matt Kraai3e856ce2000-12-01 02:55:13 +0000290 return EXIT_SUCCESS;
Eric Andersencc8ed391999-10-05 16:24:54 +0000291}