time.c 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Utility routines.
  4. *
  5. * Copyright (C) 2007 Denys Vlasenko
  6. *
  7. * Licensed under GPLv2, see file LICENSE in this source tree.
  8. */
  9. #include "libbb.h"
  10. void FAST_FUNC parse_datestr(const char *date_str, struct tm *ptm)
  11. {
  12. char end = '\0';
  13. const char *last_colon = strrchr(date_str, ':');
  14. if (last_colon != NULL) {
  15. /* Parse input and assign appropriately to ptm */
  16. #if ENABLE_DESKTOP
  17. const char *endp;
  18. #endif
  19. /* HH:MM */
  20. if (sscanf(date_str, "%u:%u%c",
  21. &ptm->tm_hour,
  22. &ptm->tm_min,
  23. &end) >= 2
  24. ) {
  25. /* no adjustments needed */
  26. } else
  27. /* mm.dd-HH:MM */
  28. if (sscanf(date_str, "%u.%u-%u:%u%c",
  29. &ptm->tm_mon, &ptm->tm_mday,
  30. &ptm->tm_hour, &ptm->tm_min,
  31. &end) >= 4
  32. ) {
  33. /* Adjust month from 1-12 to 0-11 */
  34. ptm->tm_mon -= 1;
  35. } else
  36. /* yyyy.mm.dd-HH:MM */
  37. if (sscanf(date_str, "%u.%u.%u-%u:%u%c", &ptm->tm_year,
  38. &ptm->tm_mon, &ptm->tm_mday,
  39. &ptm->tm_hour, &ptm->tm_min,
  40. &end) >= 5
  41. /* yyyy-mm-dd HH:MM */
  42. || sscanf(date_str, "%u-%u-%u %u:%u%c", &ptm->tm_year,
  43. &ptm->tm_mon, &ptm->tm_mday,
  44. &ptm->tm_hour, &ptm->tm_min,
  45. &end) >= 5
  46. ) {
  47. ptm->tm_year -= 1900; /* Adjust years */
  48. ptm->tm_mon -= 1; /* Adjust month from 1-12 to 0-11 */
  49. } else
  50. #if ENABLE_DESKTOP /* strptime is BIG: ~1k in uclibc, ~10k in glibc */
  51. /* month_name d HH:MM:SS YYYY. Supported by GNU date */
  52. if ((endp = strptime(date_str, "%b %d %T %Y", ptm)) != NULL
  53. && *endp == '\0'
  54. ) {
  55. return; /* don't fall through to end == ":" check */
  56. } else
  57. #endif
  58. {
  59. bb_error_msg_and_die(bb_msg_invalid_date, date_str);
  60. }
  61. if (end == ':') {
  62. /* xxx:SS */
  63. if (sscanf(last_colon + 1, "%u%c", &ptm->tm_sec, &end) == 1)
  64. end = '\0';
  65. /* else end != NUL and we error out */
  66. }
  67. } else
  68. /* yyyy-mm-dd HH */
  69. if (sscanf(date_str, "%u-%u-%u %u%c", &ptm->tm_year,
  70. &ptm->tm_mon, &ptm->tm_mday,
  71. &ptm->tm_hour,
  72. &end) >= 4
  73. /* yyyy-mm-dd */
  74. || sscanf(date_str, "%u-%u-%u%c", &ptm->tm_year,
  75. &ptm->tm_mon, &ptm->tm_mday,
  76. &end) >= 3
  77. ) {
  78. ptm->tm_year -= 1900; /* Adjust years */
  79. ptm->tm_mon -= 1; /* Adjust month from 1-12 to 0-11 */
  80. } else
  81. if (date_str[0] == '@') {
  82. time_t t = bb_strtol(date_str + 1, NULL, 10);
  83. if (!errno) {
  84. struct tm *lt = localtime(&t);
  85. if (lt) {
  86. *ptm = *lt;
  87. return;
  88. }
  89. }
  90. end = '1';
  91. } else {
  92. /* Googled the following on an old date manpage:
  93. *
  94. * The canonical representation for setting the date/time is:
  95. * cc Century (either 19 or 20)
  96. * yy Year in abbreviated form (e.g. 89, 06)
  97. * mm Numeric month, a number from 1 to 12
  98. * dd Day, a number from 1 to 31
  99. * HH Hour, a number from 0 to 23
  100. * MM Minutes, a number from 0 to 59
  101. * .SS Seconds, a number from 0 to 61 (with leap seconds)
  102. * Everything but the minutes is optional
  103. *
  104. * "touch -t DATETIME" format: [[[[[YY]YY]MM]DD]hh]mm[.ss]
  105. * Some, but not all, Unix "date DATETIME" commands
  106. * move [[YY]YY] past minutes mm field (!).
  107. * Coreutils date does it, and SUS mandates it.
  108. * (date -s DATETIME does not support this format. lovely!)
  109. * In bbox, this format is special-cased in date applet
  110. * (IOW: this function assumes "touch -t" format).
  111. */
  112. unsigned cur_year = ptm->tm_year;
  113. int len = strchrnul(date_str, '.') - date_str;
  114. /* MM[.SS] */
  115. if (len == 2 && sscanf(date_str, "%2u%2u%2u%2u""%2u%c" + 12,
  116. &ptm->tm_min,
  117. &end) >= 1) {
  118. } else
  119. /* HHMM[.SS] */
  120. if (len == 4 && sscanf(date_str, "%2u%2u%2u""%2u%2u%c" + 9,
  121. &ptm->tm_hour,
  122. &ptm->tm_min,
  123. &end) >= 2) {
  124. } else
  125. /* ddHHMM[.SS] */
  126. if (len == 6 && sscanf(date_str, "%2u%2u""%2u%2u%2u%c" + 6,
  127. &ptm->tm_mday,
  128. &ptm->tm_hour,
  129. &ptm->tm_min,
  130. &end) >= 3) {
  131. } else
  132. /* mmddHHMM[.SS] */
  133. if (len == 8 && sscanf(date_str, "%2u""%2u%2u%2u%2u%c" + 3,
  134. &ptm->tm_mon,
  135. &ptm->tm_mday,
  136. &ptm->tm_hour,
  137. &ptm->tm_min,
  138. &end) >= 4) {
  139. /* Adjust month from 1-12 to 0-11 */
  140. ptm->tm_mon -= 1;
  141. } else
  142. /* yymmddHHMM[.SS] */
  143. if (len == 10 && sscanf(date_str, "%2u%2u%2u%2u%2u%c",
  144. &ptm->tm_year,
  145. &ptm->tm_mon,
  146. &ptm->tm_mday,
  147. &ptm->tm_hour,
  148. &ptm->tm_min,
  149. &end) >= 5) {
  150. /* Adjust month from 1-12 to 0-11 */
  151. ptm->tm_mon -= 1;
  152. if ((int)cur_year >= 50) { /* >= 1950 */
  153. /* Adjust year: */
  154. /* 1. Put it in the current century */
  155. ptm->tm_year += (cur_year / 100) * 100;
  156. /* 2. If too far in the past, +100 years */
  157. if (ptm->tm_year < cur_year - 50)
  158. ptm->tm_year += 100;
  159. /* 3. If too far in the future, -100 years */
  160. if (ptm->tm_year > cur_year + 50)
  161. ptm->tm_year -= 100;
  162. }
  163. } else
  164. /* ccyymmddHHMM[.SS] */
  165. if (len == 12 && sscanf(date_str, "%4u%2u%2u%2u%2u%c",
  166. &ptm->tm_year,
  167. &ptm->tm_mon,
  168. &ptm->tm_mday,
  169. &ptm->tm_hour,
  170. &ptm->tm_min,
  171. &end) >= 5) {
  172. ptm->tm_year -= 1900; /* Adjust years */
  173. ptm->tm_mon -= 1; /* Adjust month from 1-12 to 0-11 */
  174. } else {
  175. bb_error_msg_and_die(bb_msg_invalid_date, date_str);
  176. }
  177. if (end == '.') {
  178. /* xxx.SS */
  179. if (sscanf(strchr(date_str, '.') + 1, "%u%c",
  180. &ptm->tm_sec, &end) == 1)
  181. end = '\0';
  182. /* else end != NUL and we error out */
  183. }
  184. }
  185. if (end != '\0') {
  186. bb_error_msg_and_die(bb_msg_invalid_date, date_str);
  187. }
  188. }
  189. time_t FAST_FUNC validate_tm_time(const char *date_str, struct tm *ptm)
  190. {
  191. time_t t = mktime(ptm);
  192. if (t == (time_t) -1L) {
  193. bb_error_msg_and_die(bb_msg_invalid_date, date_str);
  194. }
  195. return t;
  196. }
  197. static char* strftime_fmt(char *buf, unsigned len, time_t *tp, const char *fmt)
  198. {
  199. time_t t;
  200. if (!tp) {
  201. tp = &t;
  202. time(tp);
  203. }
  204. /* Returns pointer to NUL */
  205. return buf + strftime(buf, len, fmt, localtime(tp));
  206. }
  207. char* FAST_FUNC strftime_HHMMSS(char *buf, unsigned len, time_t *tp)
  208. {
  209. return strftime_fmt(buf, len, tp, "%H:%M:%S");
  210. }
  211. char* FAST_FUNC strftime_YYYYMMDDHHMMSS(char *buf, unsigned len, time_t *tp)
  212. {
  213. return strftime_fmt(buf, len, tp, "%Y-%m-%d %H:%M:%S");
  214. }
  215. #if ENABLE_MONOTONIC_SYSCALL
  216. #include <sys/syscall.h>
  217. /* Old glibc (< 2.3.4) does not provide this constant. We use syscall
  218. * directly so this definition is safe. */
  219. #ifndef CLOCK_MONOTONIC
  220. #define CLOCK_MONOTONIC 1
  221. #endif
  222. /* libc has incredibly messy way of doing this,
  223. * typically requiring -lrt. We just skip all this mess */
  224. static void get_mono(struct timespec *ts)
  225. {
  226. if (syscall(__NR_clock_gettime, CLOCK_MONOTONIC, ts))
  227. bb_error_msg_and_die("clock_gettime(MONOTONIC) failed");
  228. }
  229. unsigned long long FAST_FUNC monotonic_ns(void)
  230. {
  231. struct timespec ts;
  232. get_mono(&ts);
  233. return ts.tv_sec * 1000000000ULL + ts.tv_nsec;
  234. }
  235. unsigned long long FAST_FUNC monotonic_us(void)
  236. {
  237. struct timespec ts;
  238. get_mono(&ts);
  239. return ts.tv_sec * 1000000ULL + ts.tv_nsec/1000;
  240. }
  241. unsigned long long FAST_FUNC monotonic_ms(void)
  242. {
  243. struct timespec ts;
  244. get_mono(&ts);
  245. return ts.tv_sec * 1000ULL + ts.tv_nsec/1000000;
  246. }
  247. unsigned FAST_FUNC monotonic_sec(void)
  248. {
  249. struct timespec ts;
  250. get_mono(&ts);
  251. return ts.tv_sec;
  252. }
  253. #else
  254. unsigned long long FAST_FUNC monotonic_ns(void)
  255. {
  256. struct timeval tv;
  257. gettimeofday(&tv, NULL);
  258. return tv.tv_sec * 1000000000ULL + tv.tv_usec * 1000;
  259. }
  260. unsigned long long FAST_FUNC monotonic_us(void)
  261. {
  262. struct timeval tv;
  263. gettimeofday(&tv, NULL);
  264. return tv.tv_sec * 1000000ULL + tv.tv_usec;
  265. }
  266. unsigned long long FAST_FUNC monotonic_ms(void)
  267. {
  268. struct timeval tv;
  269. gettimeofday(&tv, NULL);
  270. return tv.tv_sec * 1000ULL + tv.tv_usec / 1000;
  271. }
  272. unsigned FAST_FUNC monotonic_sec(void)
  273. {
  274. return time(NULL);
  275. }
  276. #endif