blob: 401d2ffb7d1c1490698c26ab5abbb1dba347d7e5 [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 *
Rob Landleyc5789a62006-02-21 05:06:42 +00009 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersen2ce1edc1999-10-12 15:42:48 +000010*/
11
Eric Andersencc8ed391999-10-05 16:24:54 +000012#include <stdlib.h>
13#include <errno.h>
14#include <sys/time.h>
15#include <unistd.h>
16#include <time.h>
17#include <stdio.h>
Eric Andersened3ef502001-01-27 08:24:39 +000018#include <string.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000019#include "busybox.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000020
Eric Andersenc7bda1c2004-03-15 08:29:22 +000021/* This 'date' command supports only 2 time setting formats,
Eric Andersencc8ed391999-10-05 16:24:54 +000022 all the GNU strftime stuff (its in libc, lets use it),
23 setting time using UTC and displaying int, as well as
24 an RFC 822 complient date output for shell scripting
25 mail commands */
26
Eric Andersencc8ed391999-10-05 16:24:54 +000027/* Input parsing code is always bulky - used heavy duty libc stuff as
28 much as possible, missed out a lot of bounds checking */
29
Eric Andersenaff114c2004-04-14 17:51:38 +000030/* Default input handling to save surprising some people */
Eric Andersencc8ed391999-10-05 16:24:54 +000031
Eric Andersen3e6ff902001-03-09 21:24:12 +000032static struct tm *date_conv_time(struct tm *tm_time, const char *t_string)
Erik Andersene49d5ec2000-02-08 19:58:47 +000033{
34 int nr;
Eric Andersen93158422004-10-11 20:52:16 +000035 char *cp;
Eric Andersencc8ed391999-10-05 16:24:54 +000036
Glenn L McGrath03195fc2002-08-23 05:58:38 +000037 nr = sscanf(t_string, "%2d%2d%2d%2d%d", &(tm_time->tm_mon),
38 &(tm_time->tm_mday), &(tm_time->tm_hour), &(tm_time->tm_min),
39 &(tm_time->tm_year));
Eric Andersencc8ed391999-10-05 16:24:54 +000040
Erik Andersene49d5ec2000-02-08 19:58:47 +000041 if (nr < 4 || nr > 5) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000042 bb_error_msg_and_die(bb_msg_invalid_date, t_string);
Erik Andersene49d5ec2000-02-08 19:58:47 +000043 }
Eric Andersencc8ed391999-10-05 16:24:54 +000044
Eric Andersen93158422004-10-11 20:52:16 +000045 cp = strchr(t_string, '.');
46 if (cp) {
47 nr = sscanf(cp + 1, "%2d", &(tm_time->tm_sec));
48 if (nr != 1) {
49 bb_error_msg_and_die(bb_msg_invalid_date, t_string);
50 }
51 }
52
Erik Andersene49d5ec2000-02-08 19:58:47 +000053 /* correct for century - minor Y2K problem here? */
Glenn L McGrath03195fc2002-08-23 05:58:38 +000054 if (tm_time->tm_year >= 1900) {
Erik Andersene49d5ec2000-02-08 19:58:47 +000055 tm_time->tm_year -= 1900;
Glenn L McGrath03195fc2002-08-23 05:58:38 +000056 }
Erik Andersene49d5ec2000-02-08 19:58:47 +000057 /* adjust date */
58 tm_time->tm_mon -= 1;
59
60 return (tm_time);
Eric Andersencc8ed391999-10-05 16:24:54 +000061
62}
63
64
65/* The new stuff for LRP */
66
Eric Andersen3e6ff902001-03-09 21:24:12 +000067static struct tm *date_conv_ftime(struct tm *tm_time, const char *t_string)
Erik Andersene49d5ec2000-02-08 19:58:47 +000068{
Eric Andersen7b5d5942000-11-29 22:01:42 +000069 struct tm t;
Eric Andersencc8ed391999-10-05 16:24:54 +000070
Erik Andersene49d5ec2000-02-08 19:58:47 +000071 /* Parse input and assign appropriately to tm_time */
Eric Andersencc8ed391999-10-05 16:24:54 +000072
"Vladimir N. Oleynik"3ade65f2005-10-12 14:36:42 +000073 if (t = *tm_time, sscanf(t_string, "%d:%d:%d", &t.tm_hour, &t.tm_min,
Glenn L McGrath03195fc2002-08-23 05:58:38 +000074 &t.tm_sec) == 3) {
75 /* no adjustments needed */
"Vladimir N. Oleynik"3ade65f2005-10-12 14:36:42 +000076 } else if (t = *tm_time, sscanf(t_string, "%d:%d", &t.tm_hour,
Glenn L McGrath03195fc2002-08-23 05:58:38 +000077 &t.tm_min) == 2) {
78 /* no adjustments needed */
"Vladimir N. Oleynik"3ade65f2005-10-12 14:36:42 +000079 } else if (t = *tm_time, sscanf(t_string, "%d.%d-%d:%d:%d", &t.tm_mon,
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000080 &t.tm_mday, &t.tm_hour,
"Vladimir N. Oleynik"3ade65f2005-10-12 14:36:42 +000081 &t.tm_min, &t.tm_sec) == 5) {
Glenn L McGrath03195fc2002-08-23 05:58:38 +000082 /* Adjust dates from 1-12 to 0-11 */
83 t.tm_mon -= 1;
"Vladimir N. Oleynik"3ade65f2005-10-12 14:36:42 +000084 } else if (t = *tm_time, sscanf(t_string, "%d.%d-%d:%d", &t.tm_mon,
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000085 &t.tm_mday,
"Vladimir N. Oleynik"3ade65f2005-10-12 14:36:42 +000086 &t.tm_hour, &t.tm_min) == 4) {
Glenn L McGrath03195fc2002-08-23 05:58:38 +000087 /* Adjust dates from 1-12 to 0-11 */
88 t.tm_mon -= 1;
"Vladimir N. Oleynik"3ade65f2005-10-12 14:36:42 +000089 } else if (t = *tm_time, sscanf(t_string, "%d.%d.%d-%d:%d:%d", &t.tm_year,
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000090 &t.tm_mon, &t.tm_mday,
"Vladimir N. Oleynik"3ade65f2005-10-12 14:36:42 +000091 &t.tm_hour, &t.tm_min,
92 &t.tm_sec) == 6) {
Eric Andersen7b5d5942000-11-29 22:01:42 +000093 t.tm_year -= 1900; /* Adjust years */
94 t.tm_mon -= 1; /* Adjust dates from 1-12 to 0-11 */
"Vladimir N. Oleynik"3ade65f2005-10-12 14:36:42 +000095 } else if (t = *tm_time, sscanf(t_string, "%d.%d.%d-%d:%d", &t.tm_year,
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000096 &t.tm_mon, &t.tm_mday,
"Vladimir N. Oleynik"3ade65f2005-10-12 14:36:42 +000097 &t.tm_hour, &t.tm_min) == 5) {
Eric Andersen7b5d5942000-11-29 22:01:42 +000098 t.tm_year -= 1900; /* Adjust years */
99 t.tm_mon -= 1; /* Adjust dates from 1-12 to 0-11 */
Eric Andersen7b5d5942000-11-29 22:01:42 +0000100 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000101 bb_error_msg_and_die(bb_msg_invalid_date, t_string);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000102 }
Eric Andersen7b5d5942000-11-29 22:01:42 +0000103 *tm_time = t;
104 return (tm_time);
Eric Andersencc8ed391999-10-05 16:24:54 +0000105}
106
Glenn L McGrath5f115412004-02-17 07:51:31 +0000107#define DATE_OPT_RFC2822 0x01
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000108#define DATE_OPT_SET 0x02
109#define DATE_OPT_UTC 0x04
110#define DATE_OPT_DATE 0x08
Glenn L McGrath01cdb662004-02-17 12:22:21 +0000111#define DATE_OPT_REFERENCE 0x10
Rob Landleyc5789a62006-02-21 05:06:42 +0000112#define DATE_OPT_TIMESPEC 0x20
113#define DATE_OPT_HINT 0x40
Eric Andersencc8ed391999-10-05 16:24:54 +0000114
Erik Andersene49d5ec2000-02-08 19:58:47 +0000115int date_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +0000116{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000117 char *date_str = NULL;
118 char *date_fmt = NULL;
Eric Andersen8876fb22003-06-20 09:01:58 +0000119 int set_time;
Eric Andersen8876fb22003-06-20 09:01:58 +0000120 int utc;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000121 time_t tm;
Eric Andersen8876fb22003-06-20 09:01:58 +0000122 unsigned long opt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000123 struct tm tm_time;
Glenn L McGrath01cdb662004-02-17 12:22:21 +0000124 char *filename = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000125
Robert Griebldf039322002-07-30 23:11:00 +0000126 int ifmt = 0;
Eric Andersen8876fb22003-06-20 09:01:58 +0000127 char *isofmt_arg;
Rob Landleyc5789a62006-02-21 05:06:42 +0000128 char *hintfmt_arg;
Glenn L McGrath03195fc2002-08-23 05:58:38 +0000129
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000130 bb_opt_complementally = "?:d--s:s--d";
Rob Landleyc5789a62006-02-21 05:06:42 +0000131 opt = bb_getopt_ulflags(argc, argv, "Rs:ud:r:"
132 USE_FEATURE_DATE_ISOFMT("I::D:"),
Glenn L McGrath01cdb662004-02-17 12:22:21 +0000133 &date_str, &date_str, &filename
Rob Landleyc5789a62006-02-21 05:06:42 +0000134 USE_FEATURE_DATE_ISOFMT(, &isofmt_arg, &hintfmt_arg));
Glenn L McGrath5f115412004-02-17 07:51:31 +0000135 set_time = opt & DATE_OPT_SET;
136 utc = opt & DATE_OPT_UTC;
"Vladimir N. Oleynik"3ade65f2005-10-12 14:36:42 +0000137 if (utc && putenv("TZ=UTC0") != 0) {
Glenn L McGrath5f115412004-02-17 07:51:31 +0000138 bb_error_msg_and_die(bb_msg_memory_exhausted);
Eric Andersen8876fb22003-06-20 09:01:58 +0000139 }
Rob Landleyc5789a62006-02-21 05:06:42 +0000140
141 if(ENABLE_FEATURE_DATE_ISOFMT && (opt & DATE_OPT_TIMESPEC)) {
Glenn L McGrath5f115412004-02-17 07:51:31 +0000142 if (!isofmt_arg) {
143 ifmt = 1;
144 } else {
Rob Landleyc5789a62006-02-21 05:06:42 +0000145 char *isoformats[]={"date","hours","minutes","seconds"};
146 for(ifmt = 4; ifmt;)
147 if(!strcmp(isofmt_arg,isoformats[--ifmt]))
148 break;
Glenn L McGrath5f115412004-02-17 07:51:31 +0000149 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000150 if (!ifmt) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000151 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000152 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000153 }
Robert Griebldf039322002-07-30 23:11:00 +0000154
"Vladimir N. Oleynik"3ade65f2005-10-12 14:36:42 +0000155 /* XXX, date_fmt == NULL from this always */
Glenn L McGrath03195fc2002-08-23 05:58:38 +0000156 if ((date_fmt == NULL) && (optind < argc) && (argv[optind][0] == '+')) {
157 date_fmt = &argv[optind][1]; /* Skip over the '+' */
158 } else if (date_str == NULL) {
Eric Andersenadd09fd2000-07-14 18:39:08 +0000159 set_time = 1;
160 date_str = argv[optind];
Eric Andersenadd09fd2000-07-14 18:39:08 +0000161 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000162
Erik Andersene49d5ec2000-02-08 19:58:47 +0000163 /* Now we have parsed all the information except the date format
164 which depends on whether the clock is being set or read */
Eric Andersencc8ed391999-10-05 16:24:54 +0000165
Glenn L McGrath01cdb662004-02-17 12:22:21 +0000166 if(filename) {
167 struct stat statbuf;
Rob Landleyc5b1d4d2006-03-13 15:45:16 +0000168 xstat(filename,&statbuf);
Glenn L McGrath01cdb662004-02-17 12:22:21 +0000169 tm=statbuf.st_mtime;
170 } else time(&tm);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000171 memcpy(&tm_time, localtime(&tm), sizeof(tm_time));
172 /* Zero out fields - take her back to midnight! */
173 if (date_str != NULL) {
174 tm_time.tm_sec = 0;
175 tm_time.tm_min = 0;
176 tm_time.tm_hour = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000177
Glenn L McGrath5f115412004-02-17 07:51:31 +0000178 /* Process any date input to UNIX time since 1 Jan 1970 */
Rob Landleyc5789a62006-02-21 05:06:42 +0000179 if (ENABLE_FEATURE_DATE_ISOFMT && (opt & DATE_OPT_HINT)) {
180 strptime(date_str, hintfmt_arg, &tm_time);
181 } else if (strchr(date_str, ':') != NULL) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000182 date_conv_ftime(&tm_time, date_str);
183 } else {
184 date_conv_time(&tm_time, date_str);
185 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000186
Eric Andersen77d92682001-05-23 20:32:09 +0000187 /* Correct any day of week and day of year etc. fields */
Manuel Novoa III b511f9c2003-07-23 23:24:31 +0000188 tm_time.tm_isdst = -1; /* Be sure to recheck dst. */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000189 tm = mktime(&tm_time);
Glenn L McGrath03195fc2002-08-23 05:58:38 +0000190 if (tm < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000191 bb_error_msg_and_die(bb_msg_invalid_date, date_str);
Glenn L McGrath03195fc2002-08-23 05:58:38 +0000192 }
"Vladimir N. Oleynik"3ade65f2005-10-12 14:36:42 +0000193 if (utc && putenv("TZ=UTC0") != 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000194 bb_error_msg_and_die(bb_msg_memory_exhausted);
Eric Andersena683ee82000-11-17 18:51:45 +0000195 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000196
Erik Andersene49d5ec2000-02-08 19:58:47 +0000197 /* if setting time, set it */
"Vladimir N. Oleynik"3ade65f2005-10-12 14:36:42 +0000198 if (set_time && stime(&tm) < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000199 bb_perror_msg("cannot set date");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000200 }
201 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000202
Erik Andersene49d5ec2000-02-08 19:58:47 +0000203 /* Display output */
Eric Andersencc8ed391999-10-05 16:24:54 +0000204
Erik Andersene49d5ec2000-02-08 19:58:47 +0000205 /* Deal with format string */
206 if (date_fmt == NULL) {
Rob Landleyc5789a62006-02-21 05:06:42 +0000207 /* Start with the default case */
208
209 date_fmt = (opt & DATE_OPT_RFC2822 ?
Eric Andersen39396b92004-04-06 09:38:18 +0000210 (utc ? "%a, %d %b %Y %H:%M:%S GMT" :
211 "%a, %d %b %Y %H:%M:%S %z") :
212 "%a %b %e %H:%M:%S %Z %Y");
Glenn L McGrath03195fc2002-08-23 05:58:38 +0000213
Rob Landleyc5789a62006-02-21 05:06:42 +0000214 if (ENABLE_FEATURE_DATE_ISOFMT) {
215 if (ifmt == 4)
216 date_fmt = utc ? "%Y-%m-%dT%H:%M:%SZ" : "%Y-%m-%dT%H:%M:%S%z";
217 else if (ifmt == 3)
218 date_fmt = utc ? "%Y-%m-%dT%H:%MZ" : "%Y-%m-%dT%H:%M%z";
219 else if (ifmt == 2)
220 date_fmt = utc ? "%Y-%m-%dT%HZ" : "%Y-%m-%dT%H%z";
221 else if (ifmt == 1)
222 date_fmt = "%Y-%m-%d";
Robert Griebldf039322002-07-30 23:11:00 +0000223 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000224 }
Rob Landleyc5789a62006-02-21 05:06:42 +0000225
226 if (*date_fmt == '\0') {
Eric Andersencc8ed391999-10-05 16:24:54 +0000227
Rob Landleyc5789a62006-02-21 05:06:42 +0000228 /* With no format string, just print a blank line */
229
230 *bb_common_bufsiz1=0;
231 } else {
Eric Andersencc8ed391999-10-05 16:24:54 +0000232
Rob Landleyc5789a62006-02-21 05:06:42 +0000233 /* Handle special conversions */
Eric Andersencc8ed391999-10-05 16:24:54 +0000234
Rob Landleyc5789a62006-02-21 05:06:42 +0000235 if (strncmp(date_fmt, "%f", 2) == 0) {
236 date_fmt = "%Y.%m.%d-%H:%M:%S";
237 }
238
239 /* Generate output string */
"Vladimir N. Oleynik"a2eec602005-10-15 13:45:32 +0000240 strftime(bb_common_bufsiz1, 200, date_fmt, &tm_time);
Rob Landleyf7662da2005-05-28 23:55:26 +0000241 }
Rob Landleyc5789a62006-02-21 05:06:42 +0000242 puts(bb_common_bufsiz1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000243
Matt Kraai3e856ce2000-12-01 02:55:13 +0000244 return EXIT_SUCCESS;
Eric Andersencc8ed391999-10-05 16:24:54 +0000245}