Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | 2ce1edc | 1999-10-12 15:42:48 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Mini date implementation for busybox |
| 4 | * |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 5 | * by Matthew Grant <grantma@anathoth.gen.nz> |
Eric Andersen | 2ce1edc | 1999-10-12 15:42:48 +0000 | [diff] [blame] | 6 | * |
| 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 Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 23 | #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 Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 29 | #include <string.h> |
Eric Andersen | 88f50b6 | 2000-08-10 17:59:11 +0000 | [diff] [blame] | 30 | #include <getopt.h> |
Eric Andersen | cbe31da | 2001-02-20 06:14:08 +0000 | [diff] [blame] | 31 | #include "busybox.h" |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 32 | |
| 33 | |
| 34 | /* This 'date' command supports only 2 time setting formats, |
| 35 | all the GNU strftime stuff (its in libc, lets use it), |
| 36 | setting time using UTC and displaying int, as well as |
| 37 | an RFC 822 complient date output for shell scripting |
| 38 | mail commands */ |
| 39 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 40 | /* Input parsing code is always bulky - used heavy duty libc stuff as |
| 41 | much as possible, missed out a lot of bounds checking */ |
| 42 | |
| 43 | /* Default input handling to save suprising some people */ |
| 44 | |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 45 | static struct tm *date_conv_time(struct tm *tm_time, const char *t_string) |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 46 | { |
| 47 | int nr; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 48 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 49 | nr = sscanf(t_string, "%2d%2d%2d%2d%d", |
| 50 | &(tm_time->tm_mon), |
| 51 | &(tm_time->tm_mday), |
| 52 | &(tm_time->tm_hour), |
| 53 | &(tm_time->tm_min), &(tm_time->tm_year)); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 54 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 55 | if (nr < 4 || nr > 5) { |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 56 | error_msg_and_die(invalid_date, t_string); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 57 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 58 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 59 | /* correct for century - minor Y2K problem here? */ |
| 60 | if (tm_time->tm_year >= 1900) |
| 61 | tm_time->tm_year -= 1900; |
| 62 | /* adjust date */ |
| 63 | tm_time->tm_mon -= 1; |
| 64 | |
| 65 | return (tm_time); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 66 | |
| 67 | } |
| 68 | |
| 69 | |
| 70 | /* The new stuff for LRP */ |
| 71 | |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 72 | static struct tm *date_conv_ftime(struct tm *tm_time, const char *t_string) |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 73 | { |
Eric Andersen | 7b5d594 | 2000-11-29 22:01:42 +0000 | [diff] [blame] | 74 | struct tm t; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 75 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 76 | /* Parse input and assign appropriately to tm_time */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 77 | |
Eric Andersen | 7b5d594 | 2000-11-29 22:01:42 +0000 | [diff] [blame] | 78 | if (t=*tm_time,sscanf(t_string, "%d:%d:%d", |
| 79 | &t.tm_hour, &t.tm_min, &t.tm_sec) == 3) { |
| 80 | /* no adjustments needed */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 81 | |
Eric Andersen | 7b5d594 | 2000-11-29 22:01:42 +0000 | [diff] [blame] | 82 | } else if (t=*tm_time,sscanf(t_string, "%d:%d", |
| 83 | &t.tm_hour, &t.tm_min) == 2) { |
| 84 | /* no adjustments needed */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 85 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 86 | |
Eric Andersen | 7b5d594 | 2000-11-29 22:01:42 +0000 | [diff] [blame] | 87 | } else if (t=*tm_time,sscanf(t_string, "%d.%d-%d:%d:%d", |
| 88 | &t.tm_mon, |
| 89 | &t.tm_mday, |
| 90 | &t.tm_hour, |
| 91 | &t.tm_min, &t.tm_sec) == 5) { |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 92 | |
Eric Andersen | 7b5d594 | 2000-11-29 22:01:42 +0000 | [diff] [blame] | 93 | t.tm_mon -= 1; /* Adjust dates from 1-12 to 0-11 */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 94 | |
Eric Andersen | 7b5d594 | 2000-11-29 22:01:42 +0000 | [diff] [blame] | 95 | } else if (t=*tm_time,sscanf(t_string, "%d.%d-%d:%d", |
| 96 | &t.tm_mon, |
| 97 | &t.tm_mday, |
| 98 | &t.tm_hour, &t.tm_min) == 4) { |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 99 | |
Eric Andersen | 7b5d594 | 2000-11-29 22:01:42 +0000 | [diff] [blame] | 100 | t.tm_mon -= 1; /* Adjust dates from 1-12 to 0-11 */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 101 | |
Eric Andersen | 7b5d594 | 2000-11-29 22:01:42 +0000 | [diff] [blame] | 102 | } else if (t=*tm_time,sscanf(t_string, "%d.%d.%d-%d:%d:%d", |
| 103 | &t.tm_year, |
| 104 | &t.tm_mon, |
| 105 | &t.tm_mday, |
| 106 | &t.tm_hour, |
| 107 | &t.tm_min, &t.tm_sec) == 6) { |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 108 | |
Eric Andersen | 7b5d594 | 2000-11-29 22:01:42 +0000 | [diff] [blame] | 109 | t.tm_year -= 1900; /* Adjust years */ |
| 110 | t.tm_mon -= 1; /* Adjust dates from 1-12 to 0-11 */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 111 | |
Eric Andersen | 7b5d594 | 2000-11-29 22:01:42 +0000 | [diff] [blame] | 112 | } else if (t=*tm_time,sscanf(t_string, "%d.%d.%d-%d:%d", |
| 113 | &t.tm_year, |
| 114 | &t.tm_mon, |
| 115 | &t.tm_mday, |
| 116 | &t.tm_hour, &t.tm_min) == 5) { |
| 117 | t.tm_year -= 1900; /* Adjust years */ |
| 118 | t.tm_mon -= 1; /* Adjust dates from 1-12 to 0-11 */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 119 | |
Eric Andersen | 7b5d594 | 2000-11-29 22:01:42 +0000 | [diff] [blame] | 120 | } else { |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 121 | error_msg_and_die(invalid_date, t_string); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 122 | } |
Eric Andersen | 7b5d594 | 2000-11-29 22:01:42 +0000 | [diff] [blame] | 123 | *tm_time = t; |
| 124 | return (tm_time); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 128 | int date_main(int argc, char **argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 129 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 130 | char *date_str = NULL; |
| 131 | char *date_fmt = NULL; |
| 132 | char *t_buff; |
Pavel Roskin | 47d4926 | 2000-07-17 16:17:19 +0000 | [diff] [blame] | 133 | int c; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 134 | int set_time = 0; |
| 135 | int rfc822 = 0; |
| 136 | int utc = 0; |
| 137 | int use_arg = 0; |
| 138 | time_t tm; |
| 139 | struct tm tm_time; |
| 140 | |
| 141 | /* Interpret command line args */ |
Eric Andersen | add09fd | 2000-07-14 18:39:08 +0000 | [diff] [blame] | 142 | while ((c = getopt(argc, argv, "Rs:ud:")) != EOF) { |
| 143 | switch (c) { |
Eric Andersen | a683ee8 | 2000-11-17 18:51:45 +0000 | [diff] [blame] | 144 | case 'R': |
| 145 | rfc822 = 1; |
| 146 | break; |
| 147 | case 's': |
| 148 | set_time = 1; |
| 149 | if ((date_str != NULL) || ((date_str = optarg) == NULL)) { |
Eric Andersen | 67991cf | 2001-02-14 21:23:06 +0000 | [diff] [blame] | 150 | show_usage(); |
Eric Andersen | a683ee8 | 2000-11-17 18:51:45 +0000 | [diff] [blame] | 151 | } |
| 152 | break; |
| 153 | case 'u': |
| 154 | utc = 1; |
| 155 | if (putenv("TZ=UTC0") != 0) |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 156 | error_msg_and_die(memory_exhausted); |
Eric Andersen | a683ee8 | 2000-11-17 18:51:45 +0000 | [diff] [blame] | 157 | break; |
| 158 | case 'd': |
| 159 | use_arg = 1; |
| 160 | if ((date_str != NULL) || ((date_str = optarg) == NULL)) |
Eric Andersen | 67991cf | 2001-02-14 21:23:06 +0000 | [diff] [blame] | 161 | show_usage(); |
Eric Andersen | a683ee8 | 2000-11-17 18:51:45 +0000 | [diff] [blame] | 162 | break; |
| 163 | default: |
Eric Andersen | 67991cf | 2001-02-14 21:23:06 +0000 | [diff] [blame] | 164 | show_usage(); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 165 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 166 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 167 | |
Eric Andersen | add09fd | 2000-07-14 18:39:08 +0000 | [diff] [blame] | 168 | if ((date_fmt == NULL) && (optind < argc) && (argv[optind][0] == '+')) |
| 169 | date_fmt = &argv[optind][1]; /* Skip over the '+' */ |
| 170 | else if (date_str == NULL) { |
| 171 | set_time = 1; |
| 172 | date_str = argv[optind]; |
Eric Andersen | a683ee8 | 2000-11-17 18:51:45 +0000 | [diff] [blame] | 173 | } |
| 174 | #if 0 |
| 175 | else { |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 176 | error_msg("date_str='%s' date_fmt='%s'\n", date_str, date_fmt); |
Eric Andersen | 67991cf | 2001-02-14 21:23:06 +0000 | [diff] [blame] | 177 | show_usage(); |
Eric Andersen | add09fd | 2000-07-14 18:39:08 +0000 | [diff] [blame] | 178 | } |
Eric Andersen | a683ee8 | 2000-11-17 18:51:45 +0000 | [diff] [blame] | 179 | #endif |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 180 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 181 | /* Now we have parsed all the information except the date format |
| 182 | which depends on whether the clock is being set or read */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 183 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 184 | time(&tm); |
| 185 | memcpy(&tm_time, localtime(&tm), sizeof(tm_time)); |
| 186 | /* Zero out fields - take her back to midnight! */ |
| 187 | if (date_str != NULL) { |
| 188 | tm_time.tm_sec = 0; |
| 189 | tm_time.tm_min = 0; |
| 190 | tm_time.tm_hour = 0; |
| 191 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 192 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 193 | /* Process any date input to UNIX time since 1 Jan 1970 */ |
| 194 | if (date_str != NULL) { |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 195 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 196 | if (strchr(date_str, ':') != NULL) { |
| 197 | date_conv_ftime(&tm_time, date_str); |
| 198 | } else { |
| 199 | date_conv_time(&tm_time, date_str); |
| 200 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 201 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 202 | /* Correct any day of week and day of year etc fields */ |
| 203 | tm = mktime(&tm_time); |
Erik Andersen | 1ad302a | 2000-03-24 00:54:46 +0000 | [diff] [blame] | 204 | if (tm < 0) |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 205 | error_msg_and_die(invalid_date, date_str); |
Eric Andersen | a683ee8 | 2000-11-17 18:51:45 +0000 | [diff] [blame] | 206 | if ( utc ) { |
| 207 | if (putenv("TZ=UTC0") != 0) |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 208 | error_msg_and_die(memory_exhausted); |
Eric Andersen | a683ee8 | 2000-11-17 18:51:45 +0000 | [diff] [blame] | 209 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 210 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 211 | /* if setting time, set it */ |
| 212 | if (set_time) { |
| 213 | if (stime(&tm) < 0) { |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 214 | perror_msg("cannot set date"); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 215 | } |
| 216 | } |
| 217 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 218 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 219 | /* Display output */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 220 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 221 | /* Deal with format string */ |
| 222 | if (date_fmt == NULL) { |
| 223 | date_fmt = (rfc822 |
| 224 | ? (utc |
| 225 | ? "%a, %_d %b %Y %H:%M:%S GMT" |
| 226 | : "%a, %_d %b %Y %H:%M:%S %z") |
| 227 | : "%a %b %e %H:%M:%S %Z %Y"); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 228 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 229 | } else if (*date_fmt == '\0') { |
| 230 | /* Imitate what GNU 'date' does with NO format string! */ |
| 231 | printf("\n"); |
Matt Kraai | 3e856ce | 2000-12-01 02:55:13 +0000 | [diff] [blame] | 232 | return EXIT_SUCCESS; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 233 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 234 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 235 | /* Handle special conversions */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 236 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 237 | if (strncmp(date_fmt, "%f", 2) == 0) { |
| 238 | date_fmt = "%Y.%m.%d-%H:%M:%S"; |
| 239 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 240 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 241 | /* Print OUTPUT (after ALL that!) */ |
Erik Andersen | 0d068a2 | 2000-03-21 22:32:57 +0000 | [diff] [blame] | 242 | t_buff = xmalloc(201); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 243 | strftime(t_buff, 200, date_fmt, &tm_time); |
| 244 | printf("%s\n", t_buff); |
| 245 | |
Matt Kraai | 3e856ce | 2000-12-01 02:55:13 +0000 | [diff] [blame] | 246 | return EXIT_SUCCESS; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 247 | } |