blob: 74a69eefbdd118a90d18632902fc7966e0f9ee5a [file] [log] [blame]
Denis Vlasenko459be352007-06-17 19:09:05 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Denis Vlasenkod18f52b2008-03-02 12:53:15 +00005 * Copyright (C) 2007 Denys Vlasenko
Denis Vlasenko459be352007-06-17 19:09:05 +00006 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2, see file LICENSE in this source tree.
Denis Vlasenko459be352007-06-17 19:09:05 +00008 */
Denis Vlasenko459be352007-06-17 19:09:05 +00009#include "libbb.h"
10
Denys Vlasenkodc698bb2010-01-09 19:10:49 +010011void FAST_FUNC parse_datestr(const char *date_str, struct tm *ptm)
Denys Vlasenko73b71f32009-07-18 03:40:35 +020012{
13 char end = '\0';
14 const char *last_colon = strrchr(date_str, ':');
15
16 if (last_colon != NULL) {
Denys Vlasenkodc698bb2010-01-09 19:10:49 +010017 /* Parse input and assign appropriately to ptm */
Alexander Shishkin85dbf192010-03-22 18:22:33 +010018#if ENABLE_DESKTOP
19 const char *endp;
20#endif
Denys Vlasenko73b71f32009-07-18 03:40:35 +020021
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +020022 /* HH:MM */
Denys Vlasenko73b71f32009-07-18 03:40:35 +020023 if (sscanf(date_str, "%u:%u%c",
Denys Vlasenkodc698bb2010-01-09 19:10:49 +010024 &ptm->tm_hour,
25 &ptm->tm_min,
Bartosz Golaszewski688a7e32013-07-25 04:59:46 +020026 &end) >= 2
27 ) {
Denys Vlasenko73b71f32009-07-18 03:40:35 +020028 /* no adjustments needed */
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +020029 } else
30 /* mm.dd-HH:MM */
31 if (sscanf(date_str, "%u.%u-%u:%u%c",
Denys Vlasenkodc698bb2010-01-09 19:10:49 +010032 &ptm->tm_mon, &ptm->tm_mday,
33 &ptm->tm_hour, &ptm->tm_min,
Bartosz Golaszewski688a7e32013-07-25 04:59:46 +020034 &end) >= 4
35 ) {
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +020036 /* Adjust month from 1-12 to 0-11 */
Denys Vlasenkodc698bb2010-01-09 19:10:49 +010037 ptm->tm_mon -= 1;
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +020038 } else
39 /* yyyy.mm.dd-HH:MM */
Denys Vlasenkodc698bb2010-01-09 19:10:49 +010040 if (sscanf(date_str, "%u.%u.%u-%u:%u%c", &ptm->tm_year,
41 &ptm->tm_mon, &ptm->tm_mday,
42 &ptm->tm_hour, &ptm->tm_min,
Bartosz Golaszewski688a7e32013-07-25 04:59:46 +020043 &end) >= 5
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +020044 /* yyyy-mm-dd HH:MM */
Bartosz Golaszewski688a7e32013-07-25 04:59:46 +020045 || sscanf(date_str, "%u-%u-%u %u:%u%c", &ptm->tm_year,
Denys Vlasenkodc698bb2010-01-09 19:10:49 +010046 &ptm->tm_mon, &ptm->tm_mday,
47 &ptm->tm_hour, &ptm->tm_min,
Bartosz Golaszewski688a7e32013-07-25 04:59:46 +020048 &end) >= 5
49 ) {
Denys Vlasenkodc698bb2010-01-09 19:10:49 +010050 ptm->tm_year -= 1900; /* Adjust years */
51 ptm->tm_mon -= 1; /* Adjust month from 1-12 to 0-11 */
Alexander Shishkin85dbf192010-03-22 18:22:33 +010052 } else
53#if ENABLE_DESKTOP /* strptime is BIG: ~1k in uclibc, ~10k in glibc */
54 /* month_name d HH:MM:SS YYYY. Supported by GNU date */
55 if ((endp = strptime(date_str, "%b %d %T %Y", ptm)) != NULL
56 && *endp == '\0'
57 ) {
58 return; /* don't fall through to end == ":" check */
59 } else
60#endif
Alexander Shishkin85dbf192010-03-22 18:22:33 +010061 {
Denys Vlasenko73b71f32009-07-18 03:40:35 +020062 bb_error_msg_and_die(bb_msg_invalid_date, date_str);
63 }
64 if (end == ':') {
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +020065 /* xxx:SS */
Denys Vlasenkodc698bb2010-01-09 19:10:49 +010066 if (sscanf(last_colon + 1, "%u%c", &ptm->tm_sec, &end) == 1)
Denys Vlasenko73b71f32009-07-18 03:40:35 +020067 end = '\0';
68 /* else end != NUL and we error out */
69 }
Bartosz Golaszewski688a7e32013-07-25 04:59:46 +020070 } else
Denys Vlasenko3b394782014-01-21 07:58:18 +010071 if (strchr(date_str, '-')
72 /* Why strchr('-') check?
73 * sscanf below will trash ptm->tm_year, this breaks
74 * if parse_str is "10101010" (iow, "MMddhhmm" form)
75 * because we destroy year. Do these sscanf
76 * only if we saw a dash in parse_str.
77 */
78 /* yyyy-mm-dd HH */
79 && (sscanf(date_str, "%u-%u-%u %u%c", &ptm->tm_year,
Bartosz Golaszewski688a7e32013-07-25 04:59:46 +020080 &ptm->tm_mon, &ptm->tm_mday,
81 &ptm->tm_hour,
82 &end) >= 4
Denys Vlasenko3b394782014-01-21 07:58:18 +010083 /* yyyy-mm-dd */
84 || sscanf(date_str, "%u-%u-%u%c", &ptm->tm_year,
Bartosz Golaszewski688a7e32013-07-25 04:59:46 +020085 &ptm->tm_mon, &ptm->tm_mday,
86 &end) >= 3
Denys Vlasenko3b394782014-01-21 07:58:18 +010087 )
Bartosz Golaszewski688a7e32013-07-25 04:59:46 +020088 ) {
89 ptm->tm_year -= 1900; /* Adjust years */
90 ptm->tm_mon -= 1; /* Adjust month from 1-12 to 0-11 */
91 } else
92 if (date_str[0] == '@') {
Denys Vlasenko32a8f702020-11-28 23:21:13 +010093 time_t t;
94 if (sizeof(t) <= sizeof(long))
95 t = bb_strtol(date_str + 1, NULL, 10);
96 else /* time_t is 64 bits but longs are smaller */
97 t = bb_strtoll(date_str + 1, NULL, 10);
Denys Vlasenko5f943462010-04-22 00:45:28 -040098 if (!errno) {
99 struct tm *lt = localtime(&t);
100 if (lt) {
101 *ptm = *lt;
102 return;
103 }
104 }
105 end = '1';
Denys Vlasenko73b71f32009-07-18 03:40:35 +0200106 } else {
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200107 /* Googled the following on an old date manpage:
108 *
109 * The canonical representation for setting the date/time is:
110 * cc Century (either 19 or 20)
111 * yy Year in abbreviated form (e.g. 89, 06)
112 * mm Numeric month, a number from 1 to 12
113 * dd Day, a number from 1 to 31
114 * HH Hour, a number from 0 to 23
115 * MM Minutes, a number from 0 to 59
Denys Vlasenko4b624d02009-09-02 11:49:25 +0200116 * .SS Seconds, a number from 0 to 61 (with leap seconds)
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200117 * Everything but the minutes is optional
118 *
Denys Vlasenko10ee20b2011-01-17 14:23:42 +0100119 * "touch -t DATETIME" format: [[[[[YY]YY]MM]DD]hh]mm[.ss]
120 * Some, but not all, Unix "date DATETIME" commands
121 * move [[YY]YY] past minutes mm field (!).
122 * Coreutils date does it, and SUS mandates it.
123 * (date -s DATETIME does not support this format. lovely!)
124 * In bbox, this format is special-cased in date applet
125 * (IOW: this function assumes "touch -t" format).
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200126 */
Denys Vlasenko92ffe052011-01-02 20:02:09 +0100127 unsigned cur_year = ptm->tm_year;
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200128 int len = strchrnul(date_str, '.') - date_str;
129
130 /* MM[.SS] */
Denys Vlasenkoff1822a2009-11-15 04:55:40 +0100131 if (len == 2 && sscanf(date_str, "%2u%2u%2u%2u""%2u%c" + 12,
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100132 &ptm->tm_min,
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200133 &end) >= 1) {
134 } else
135 /* HHMM[.SS] */
Denys Vlasenkoff1822a2009-11-15 04:55:40 +0100136 if (len == 4 && sscanf(date_str, "%2u%2u%2u""%2u%2u%c" + 9,
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100137 &ptm->tm_hour,
138 &ptm->tm_min,
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200139 &end) >= 2) {
140 } else
141 /* ddHHMM[.SS] */
Denys Vlasenkoff1822a2009-11-15 04:55:40 +0100142 if (len == 6 && sscanf(date_str, "%2u%2u""%2u%2u%2u%c" + 6,
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100143 &ptm->tm_mday,
144 &ptm->tm_hour,
145 &ptm->tm_min,
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200146 &end) >= 3) {
147 } else
148 /* mmddHHMM[.SS] */
Denys Vlasenkoff1822a2009-11-15 04:55:40 +0100149 if (len == 8 && sscanf(date_str, "%2u""%2u%2u%2u%2u%c" + 3,
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100150 &ptm->tm_mon,
151 &ptm->tm_mday,
152 &ptm->tm_hour,
153 &ptm->tm_min,
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200154 &end) >= 4) {
155 /* Adjust month from 1-12 to 0-11 */
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100156 ptm->tm_mon -= 1;
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200157 } else
158 /* yymmddHHMM[.SS] */
159 if (len == 10 && sscanf(date_str, "%2u%2u%2u%2u%2u%c",
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100160 &ptm->tm_year,
161 &ptm->tm_mon,
162 &ptm->tm_mday,
163 &ptm->tm_hour,
164 &ptm->tm_min,
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200165 &end) >= 5) {
166 /* Adjust month from 1-12 to 0-11 */
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100167 ptm->tm_mon -= 1;
Denys Vlasenko92ffe052011-01-02 20:02:09 +0100168 if ((int)cur_year >= 50) { /* >= 1950 */
169 /* Adjust year: */
170 /* 1. Put it in the current century */
171 ptm->tm_year += (cur_year / 100) * 100;
172 /* 2. If too far in the past, +100 years */
173 if (ptm->tm_year < cur_year - 50)
174 ptm->tm_year += 100;
175 /* 3. If too far in the future, -100 years */
176 if (ptm->tm_year > cur_year + 50)
177 ptm->tm_year -= 100;
178 }
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200179 } else
Denys Vlasenko4b624d02009-09-02 11:49:25 +0200180 /* ccyymmddHHMM[.SS] */
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200181 if (len == 12 && sscanf(date_str, "%4u%2u%2u%2u%2u%c",
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100182 &ptm->tm_year,
183 &ptm->tm_mon,
184 &ptm->tm_mday,
185 &ptm->tm_hour,
186 &ptm->tm_min,
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200187 &end) >= 5) {
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100188 ptm->tm_year -= 1900; /* Adjust years */
189 ptm->tm_mon -= 1; /* Adjust month from 1-12 to 0-11 */
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200190 } else {
Denys Vlasenko76832ff2018-09-23 20:27:32 +0200191 err:
Denys Vlasenko73b71f32009-07-18 03:40:35 +0200192 bb_error_msg_and_die(bb_msg_invalid_date, date_str);
Denys Vlasenko73b71f32009-07-18 03:40:35 +0200193 }
Natanael Copab684d1b2016-05-19 17:31:59 +0200194 ptm->tm_sec = 0; /* assume zero if [.SS] is not given */
Denys Vlasenko73b71f32009-07-18 03:40:35 +0200195 if (end == '.') {
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200196 /* xxx.SS */
Denys Vlasenko73b71f32009-07-18 03:40:35 +0200197 if (sscanf(strchr(date_str, '.') + 1, "%u%c",
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100198 &ptm->tm_sec, &end) == 1)
Denys Vlasenko73b71f32009-07-18 03:40:35 +0200199 end = '\0';
200 /* else end != NUL and we error out */
201 }
Denys Vlasenko76832ff2018-09-23 20:27:32 +0200202 /* Users were confused by "date -s 20180923"
203 * working (not in the way they were expecting).
204 * It was interpreted as MMDDhhmm, and not bothered by
205 * "month #20" in the least. Prevent such cases:
206 */
207 if (ptm->tm_sec > 60 /* allow "23:60" leap second */
208 || ptm->tm_min > 59
209 || ptm->tm_hour > 23
210 || ptm->tm_mday > 31
211 || ptm->tm_mon > 11 /* month# is 0..11, not 1..12 */
212 ) {
213 goto err;
214 }
Denys Vlasenko73b71f32009-07-18 03:40:35 +0200215 }
216 if (end != '\0') {
217 bb_error_msg_and_die(bb_msg_invalid_date, date_str);
218 }
219}
220
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100221time_t FAST_FUNC validate_tm_time(const char *date_str, struct tm *ptm)
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200222{
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100223 time_t t = mktime(ptm);
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200224 if (t == (time_t) -1L) {
225 bb_error_msg_and_die(bb_msg_invalid_date, date_str);
226 }
227 return t;
228}
229
Denys Vlasenko8f2cb7a2013-03-29 12:30:33 +0100230static char* strftime_fmt(char *buf, unsigned len, time_t *tp, const char *fmt)
231{
232 time_t t;
233 if (!tp) {
234 tp = &t;
235 time(tp);
236 }
237 /* Returns pointer to NUL */
238 return buf + strftime(buf, len, fmt, localtime(tp));
239}
240
241char* FAST_FUNC strftime_HHMMSS(char *buf, unsigned len, time_t *tp)
242{
243 return strftime_fmt(buf, len, tp, "%H:%M:%S");
244}
245
246char* FAST_FUNC strftime_YYYYMMDDHHMMSS(char *buf, unsigned len, time_t *tp)
247{
248 return strftime_fmt(buf, len, tp, "%Y-%m-%d %H:%M:%S");
249}
250
Denis Vlasenko459be352007-06-17 19:09:05 +0000251#if ENABLE_MONOTONIC_SYSCALL
Denis Vlasenko459be352007-06-17 19:09:05 +0000252
Denis Vlasenko09c0a742008-06-07 23:43:43 +0000253/* Old glibc (< 2.3.4) does not provide this constant. We use syscall
254 * directly so this definition is safe. */
255#ifndef CLOCK_MONOTONIC
256#define CLOCK_MONOTONIC 1
257#endif
258
Denis Vlasenkoce13b762008-06-29 02:25:53 +0000259static void get_mono(struct timespec *ts)
260{
Denys Vlasenkobe5a5052019-10-24 16:26:55 +0200261 if (clock_gettime(CLOCK_MONOTONIC, ts))
James Byrne69374872019-07-02 11:35:03 +0200262 bb_simple_error_msg_and_die("clock_gettime(MONOTONIC) failed");
Denis Vlasenkoce13b762008-06-29 02:25:53 +0000263}
264unsigned long long FAST_FUNC monotonic_ns(void)
265{
266 struct timespec ts;
267 get_mono(&ts);
268 return ts.tv_sec * 1000000000ULL + ts.tv_nsec;
269}
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000270unsigned long long FAST_FUNC monotonic_us(void)
Denis Vlasenko459be352007-06-17 19:09:05 +0000271{
272 struct timespec ts;
Denis Vlasenkoce13b762008-06-29 02:25:53 +0000273 get_mono(&ts);
Denis Vlasenko459be352007-06-17 19:09:05 +0000274 return ts.tv_sec * 1000000ULL + ts.tv_nsec/1000;
275}
Denys Vlasenkof2c8aa62010-01-12 12:52:30 +0100276unsigned long long FAST_FUNC monotonic_ms(void)
277{
278 struct timespec ts;
279 get_mono(&ts);
280 return ts.tv_sec * 1000ULL + ts.tv_nsec/1000000;
281}
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000282unsigned FAST_FUNC monotonic_sec(void)
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000283{
284 struct timespec ts;
Denis Vlasenkoce13b762008-06-29 02:25:53 +0000285 get_mono(&ts);
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000286 return ts.tv_sec;
287}
Denis Vlasenkoce13b762008-06-29 02:25:53 +0000288
Denis Vlasenko459be352007-06-17 19:09:05 +0000289#else
Denis Vlasenkoce13b762008-06-29 02:25:53 +0000290
291unsigned long long FAST_FUNC monotonic_ns(void)
292{
293 struct timeval tv;
294 gettimeofday(&tv, NULL);
295 return tv.tv_sec * 1000000000ULL + tv.tv_usec * 1000;
296}
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000297unsigned long long FAST_FUNC monotonic_us(void)
Denis Vlasenko459be352007-06-17 19:09:05 +0000298{
299 struct timeval tv;
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000300 gettimeofday(&tv, NULL);
Mike Frysingerebd27aa2007-06-18 07:12:31 +0000301 return tv.tv_sec * 1000000ULL + tv.tv_usec;
Denis Vlasenko459be352007-06-17 19:09:05 +0000302}
Denys Vlasenkof2c8aa62010-01-12 12:52:30 +0100303unsigned long long FAST_FUNC monotonic_ms(void)
304{
305 struct timeval tv;
306 gettimeofday(&tv, NULL);
307 return tv.tv_sec * 1000ULL + tv.tv_usec / 1000;
308}
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000309unsigned FAST_FUNC monotonic_sec(void)
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000310{
311 return time(NULL);
312}
Denis Vlasenkoce13b762008-06-29 02:25:53 +0000313
Denis Vlasenko459be352007-06-17 19:09:05 +0000314#endif