blob: e2b938471357a264e34ebe08dbf750a5d5080d1f [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,
Denys Vlasenko73b71f32009-07-18 03:40:35 +020026 &end) >= 2) {
27 /* no adjustments needed */
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +020028 } else
29 /* mm.dd-HH:MM */
30 if (sscanf(date_str, "%u.%u-%u:%u%c",
Denys Vlasenkodc698bb2010-01-09 19:10:49 +010031 &ptm->tm_mon, &ptm->tm_mday,
32 &ptm->tm_hour, &ptm->tm_min,
Denys Vlasenko73b71f32009-07-18 03:40:35 +020033 &end) >= 4) {
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +020034 /* Adjust month from 1-12 to 0-11 */
Denys Vlasenkodc698bb2010-01-09 19:10:49 +010035 ptm->tm_mon -= 1;
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +020036 } else
37 /* yyyy.mm.dd-HH:MM */
Denys Vlasenkodc698bb2010-01-09 19:10:49 +010038 if (sscanf(date_str, "%u.%u.%u-%u:%u%c", &ptm->tm_year,
39 &ptm->tm_mon, &ptm->tm_mday,
40 &ptm->tm_hour, &ptm->tm_min,
Denys Vlasenko73b71f32009-07-18 03:40:35 +020041 &end) >= 5) {
Denys Vlasenkodc698bb2010-01-09 19:10:49 +010042 ptm->tm_year -= 1900; /* Adjust years */
43 ptm->tm_mon -= 1; /* Adjust month from 1-12 to 0-11 */
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +020044 } else
45 /* yyyy-mm-dd HH:MM */
Denys Vlasenkodc698bb2010-01-09 19:10:49 +010046 if (sscanf(date_str, "%u-%u-%u %u:%u%c", &ptm->tm_year,
47 &ptm->tm_mon, &ptm->tm_mday,
48 &ptm->tm_hour, &ptm->tm_min,
Denys Vlasenko73b71f32009-07-18 03:40:35 +020049 &end) >= 5) {
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
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +020061//TODO: coreutils 6.9 also accepts "yyyy-mm-dd HH" (no minutes)
Alexander Shishkin85dbf192010-03-22 18:22:33 +010062 {
Denys Vlasenko73b71f32009-07-18 03:40:35 +020063 bb_error_msg_and_die(bb_msg_invalid_date, date_str);
64 }
65 if (end == ':') {
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +020066 /* xxx:SS */
Denys Vlasenkodc698bb2010-01-09 19:10:49 +010067 if (sscanf(last_colon + 1, "%u%c", &ptm->tm_sec, &end) == 1)
Denys Vlasenko73b71f32009-07-18 03:40:35 +020068 end = '\0';
69 /* else end != NUL and we error out */
70 }
Denys Vlasenko5f943462010-04-22 00:45:28 -040071 } else if (date_str[0] == '@') {
72 time_t t = bb_strtol(date_str + 1, NULL, 10);
73 if (!errno) {
74 struct tm *lt = localtime(&t);
75 if (lt) {
76 *ptm = *lt;
77 return;
78 }
79 }
80 end = '1';
Denys Vlasenko73b71f32009-07-18 03:40:35 +020081 } else {
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +020082 /* Googled the following on an old date manpage:
83 *
84 * The canonical representation for setting the date/time is:
85 * cc Century (either 19 or 20)
86 * yy Year in abbreviated form (e.g. 89, 06)
87 * mm Numeric month, a number from 1 to 12
88 * dd Day, a number from 1 to 31
89 * HH Hour, a number from 0 to 23
90 * MM Minutes, a number from 0 to 59
Denys Vlasenko4b624d02009-09-02 11:49:25 +020091 * .SS Seconds, a number from 0 to 61 (with leap seconds)
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +020092 * Everything but the minutes is optional
93 *
Denys Vlasenko10ee20b2011-01-17 14:23:42 +010094 * "touch -t DATETIME" format: [[[[[YY]YY]MM]DD]hh]mm[.ss]
95 * Some, but not all, Unix "date DATETIME" commands
96 * move [[YY]YY] past minutes mm field (!).
97 * Coreutils date does it, and SUS mandates it.
98 * (date -s DATETIME does not support this format. lovely!)
99 * In bbox, this format is special-cased in date applet
100 * (IOW: this function assumes "touch -t" format).
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200101 */
Denys Vlasenko92ffe052011-01-02 20:02:09 +0100102 unsigned cur_year = ptm->tm_year;
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200103 int len = strchrnul(date_str, '.') - date_str;
104
105 /* MM[.SS] */
Denys Vlasenkoff1822a2009-11-15 04:55:40 +0100106 if (len == 2 && sscanf(date_str, "%2u%2u%2u%2u""%2u%c" + 12,
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100107 &ptm->tm_min,
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200108 &end) >= 1) {
109 } else
110 /* HHMM[.SS] */
Denys Vlasenkoff1822a2009-11-15 04:55:40 +0100111 if (len == 4 && sscanf(date_str, "%2u%2u%2u""%2u%2u%c" + 9,
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100112 &ptm->tm_hour,
113 &ptm->tm_min,
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200114 &end) >= 2) {
115 } else
116 /* ddHHMM[.SS] */
Denys Vlasenkoff1822a2009-11-15 04:55:40 +0100117 if (len == 6 && sscanf(date_str, "%2u%2u""%2u%2u%2u%c" + 6,
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100118 &ptm->tm_mday,
119 &ptm->tm_hour,
120 &ptm->tm_min,
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200121 &end) >= 3) {
122 } else
123 /* mmddHHMM[.SS] */
Denys Vlasenkoff1822a2009-11-15 04:55:40 +0100124 if (len == 8 && sscanf(date_str, "%2u""%2u%2u%2u%2u%c" + 3,
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100125 &ptm->tm_mon,
126 &ptm->tm_mday,
127 &ptm->tm_hour,
128 &ptm->tm_min,
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200129 &end) >= 4) {
130 /* Adjust month from 1-12 to 0-11 */
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100131 ptm->tm_mon -= 1;
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200132 } else
133 /* yymmddHHMM[.SS] */
134 if (len == 10 && sscanf(date_str, "%2u%2u%2u%2u%2u%c",
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100135 &ptm->tm_year,
136 &ptm->tm_mon,
137 &ptm->tm_mday,
138 &ptm->tm_hour,
139 &ptm->tm_min,
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200140 &end) >= 5) {
141 /* Adjust month from 1-12 to 0-11 */
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100142 ptm->tm_mon -= 1;
Denys Vlasenko92ffe052011-01-02 20:02:09 +0100143 if ((int)cur_year >= 50) { /* >= 1950 */
144 /* Adjust year: */
145 /* 1. Put it in the current century */
146 ptm->tm_year += (cur_year / 100) * 100;
147 /* 2. If too far in the past, +100 years */
148 if (ptm->tm_year < cur_year - 50)
149 ptm->tm_year += 100;
150 /* 3. If too far in the future, -100 years */
151 if (ptm->tm_year > cur_year + 50)
152 ptm->tm_year -= 100;
153 }
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200154 } else
Denys Vlasenko4b624d02009-09-02 11:49:25 +0200155 /* ccyymmddHHMM[.SS] */
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200156 if (len == 12 && sscanf(date_str, "%4u%2u%2u%2u%2u%c",
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100157 &ptm->tm_year,
158 &ptm->tm_mon,
159 &ptm->tm_mday,
160 &ptm->tm_hour,
161 &ptm->tm_min,
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200162 &end) >= 5) {
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100163 ptm->tm_year -= 1900; /* Adjust years */
164 ptm->tm_mon -= 1; /* Adjust month from 1-12 to 0-11 */
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200165 } else {
Denys Vlasenko73b71f32009-07-18 03:40:35 +0200166 bb_error_msg_and_die(bb_msg_invalid_date, date_str);
Denys Vlasenko73b71f32009-07-18 03:40:35 +0200167 }
Denys Vlasenko73b71f32009-07-18 03:40:35 +0200168 if (end == '.') {
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200169 /* xxx.SS */
Denys Vlasenko73b71f32009-07-18 03:40:35 +0200170 if (sscanf(strchr(date_str, '.') + 1, "%u%c",
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100171 &ptm->tm_sec, &end) == 1)
Denys Vlasenko73b71f32009-07-18 03:40:35 +0200172 end = '\0';
173 /* else end != NUL and we error out */
174 }
175 }
176 if (end != '\0') {
177 bb_error_msg_and_die(bb_msg_invalid_date, date_str);
178 }
179}
180
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100181time_t FAST_FUNC validate_tm_time(const char *date_str, struct tm *ptm)
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200182{
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100183 time_t t = mktime(ptm);
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200184 if (t == (time_t) -1L) {
185 bb_error_msg_and_die(bb_msg_invalid_date, date_str);
186 }
187 return t;
188}
189
Denis Vlasenko459be352007-06-17 19:09:05 +0000190#if ENABLE_MONOTONIC_SYSCALL
Denis Vlasenko459be352007-06-17 19:09:05 +0000191
Denis Vlasenkoce13b762008-06-29 02:25:53 +0000192#include <sys/syscall.h>
Denis Vlasenko09c0a742008-06-07 23:43:43 +0000193/* Old glibc (< 2.3.4) does not provide this constant. We use syscall
194 * directly so this definition is safe. */
195#ifndef CLOCK_MONOTONIC
196#define CLOCK_MONOTONIC 1
197#endif
198
Denis Vlasenko459be352007-06-17 19:09:05 +0000199/* libc has incredibly messy way of doing this,
200 * typically requiring -lrt. We just skip all this mess */
Denis Vlasenkoce13b762008-06-29 02:25:53 +0000201static void get_mono(struct timespec *ts)
202{
203 if (syscall(__NR_clock_gettime, CLOCK_MONOTONIC, ts))
204 bb_error_msg_and_die("clock_gettime(MONOTONIC) failed");
205}
206unsigned long long FAST_FUNC monotonic_ns(void)
207{
208 struct timespec ts;
209 get_mono(&ts);
210 return ts.tv_sec * 1000000000ULL + ts.tv_nsec;
211}
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000212unsigned long long FAST_FUNC monotonic_us(void)
Denis Vlasenko459be352007-06-17 19:09:05 +0000213{
214 struct timespec ts;
Denis Vlasenkoce13b762008-06-29 02:25:53 +0000215 get_mono(&ts);
Denis Vlasenko459be352007-06-17 19:09:05 +0000216 return ts.tv_sec * 1000000ULL + ts.tv_nsec/1000;
217}
Denys Vlasenkof2c8aa62010-01-12 12:52:30 +0100218unsigned long long FAST_FUNC monotonic_ms(void)
219{
220 struct timespec ts;
221 get_mono(&ts);
222 return ts.tv_sec * 1000ULL + ts.tv_nsec/1000000;
223}
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000224unsigned FAST_FUNC monotonic_sec(void)
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000225{
226 struct timespec ts;
Denis Vlasenkoce13b762008-06-29 02:25:53 +0000227 get_mono(&ts);
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000228 return ts.tv_sec;
229}
Denis Vlasenkoce13b762008-06-29 02:25:53 +0000230
Denis Vlasenko459be352007-06-17 19:09:05 +0000231#else
Denis Vlasenkoce13b762008-06-29 02:25:53 +0000232
233unsigned long long FAST_FUNC monotonic_ns(void)
234{
235 struct timeval tv;
236 gettimeofday(&tv, NULL);
237 return tv.tv_sec * 1000000000ULL + tv.tv_usec * 1000;
238}
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000239unsigned long long FAST_FUNC monotonic_us(void)
Denis Vlasenko459be352007-06-17 19:09:05 +0000240{
241 struct timeval tv;
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000242 gettimeofday(&tv, NULL);
Mike Frysingerebd27aa2007-06-18 07:12:31 +0000243 return tv.tv_sec * 1000000ULL + tv.tv_usec;
Denis Vlasenko459be352007-06-17 19:09:05 +0000244}
Denys Vlasenkof2c8aa62010-01-12 12:52:30 +0100245unsigned long long FAST_FUNC monotonic_ms(void)
246{
247 struct timeval tv;
248 gettimeofday(&tv, NULL);
249 return tv.tv_sec * 1000ULL + tv.tv_usec / 1000;
250}
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000251unsigned FAST_FUNC monotonic_sec(void)
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000252{
253 return time(NULL);
254}
Denis Vlasenkoce13b762008-06-29 02:25:53 +0000255
Denis Vlasenko459be352007-06-17 19:09:05 +0000256#endif