time.c 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  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. /* no adjustments needed */
  25. } else
  26. /* mm.dd-HH:MM */
  27. if (sscanf(date_str, "%u.%u-%u:%u%c",
  28. &ptm->tm_mon, &ptm->tm_mday,
  29. &ptm->tm_hour, &ptm->tm_min,
  30. &end) >= 4) {
  31. /* Adjust month from 1-12 to 0-11 */
  32. ptm->tm_mon -= 1;
  33. } else
  34. /* yyyy.mm.dd-HH:MM */
  35. if (sscanf(date_str, "%u.%u.%u-%u:%u%c", &ptm->tm_year,
  36. &ptm->tm_mon, &ptm->tm_mday,
  37. &ptm->tm_hour, &ptm->tm_min,
  38. &end) >= 5) {
  39. ptm->tm_year -= 1900; /* Adjust years */
  40. ptm->tm_mon -= 1; /* Adjust month from 1-12 to 0-11 */
  41. } else
  42. /* yyyy-mm-dd HH:MM */
  43. if (sscanf(date_str, "%u-%u-%u %u:%u%c", &ptm->tm_year,
  44. &ptm->tm_mon, &ptm->tm_mday,
  45. &ptm->tm_hour, &ptm->tm_min,
  46. &end) >= 5) {
  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. //TODO: coreutils 6.9 also accepts "yyyy-mm-dd HH" (no minutes)
  59. {
  60. bb_error_msg_and_die(bb_msg_invalid_date, date_str);
  61. }
  62. if (end == ':') {
  63. /* xxx:SS */
  64. if (sscanf(last_colon + 1, "%u%c", &ptm->tm_sec, &end) == 1)
  65. end = '\0';
  66. /* else end != NUL and we error out */
  67. }
  68. } else if (date_str[0] == '@') {
  69. time_t t = bb_strtol(date_str + 1, NULL, 10);
  70. if (!errno) {
  71. struct tm *lt = localtime(&t);
  72. if (lt) {
  73. *ptm = *lt;
  74. return;
  75. }
  76. }
  77. end = '1';
  78. } else {
  79. /* Googled the following on an old date manpage:
  80. *
  81. * The canonical representation for setting the date/time is:
  82. * cc Century (either 19 or 20)
  83. * yy Year in abbreviated form (e.g. 89, 06)
  84. * mm Numeric month, a number from 1 to 12
  85. * dd Day, a number from 1 to 31
  86. * HH Hour, a number from 0 to 23
  87. * MM Minutes, a number from 0 to 59
  88. * .SS Seconds, a number from 0 to 61 (with leap seconds)
  89. * Everything but the minutes is optional
  90. *
  91. * "touch -t DATETIME" format: [[[[[YY]YY]MM]DD]hh]mm[.ss]
  92. * Some, but not all, Unix "date DATETIME" commands
  93. * move [[YY]YY] past minutes mm field (!).
  94. * Coreutils date does it, and SUS mandates it.
  95. * (date -s DATETIME does not support this format. lovely!)
  96. * In bbox, this format is special-cased in date applet
  97. * (IOW: this function assumes "touch -t" format).
  98. */
  99. unsigned cur_year = ptm->tm_year;
  100. int len = strchrnul(date_str, '.') - date_str;
  101. /* MM[.SS] */
  102. if (len == 2 && sscanf(date_str, "%2u%2u%2u%2u""%2u%c" + 12,
  103. &ptm->tm_min,
  104. &end) >= 1) {
  105. } else
  106. /* HHMM[.SS] */
  107. if (len == 4 && sscanf(date_str, "%2u%2u%2u""%2u%2u%c" + 9,
  108. &ptm->tm_hour,
  109. &ptm->tm_min,
  110. &end) >= 2) {
  111. } else
  112. /* ddHHMM[.SS] */
  113. if (len == 6 && sscanf(date_str, "%2u%2u""%2u%2u%2u%c" + 6,
  114. &ptm->tm_mday,
  115. &ptm->tm_hour,
  116. &ptm->tm_min,
  117. &end) >= 3) {
  118. } else
  119. /* mmddHHMM[.SS] */
  120. if (len == 8 && sscanf(date_str, "%2u""%2u%2u%2u%2u%c" + 3,
  121. &ptm->tm_mon,
  122. &ptm->tm_mday,
  123. &ptm->tm_hour,
  124. &ptm->tm_min,
  125. &end) >= 4) {
  126. /* Adjust month from 1-12 to 0-11 */
  127. ptm->tm_mon -= 1;
  128. } else
  129. /* yymmddHHMM[.SS] */
  130. if (len == 10 && sscanf(date_str, "%2u%2u%2u%2u%2u%c",
  131. &ptm->tm_year,
  132. &ptm->tm_mon,
  133. &ptm->tm_mday,
  134. &ptm->tm_hour,
  135. &ptm->tm_min,
  136. &end) >= 5) {
  137. /* Adjust month from 1-12 to 0-11 */
  138. ptm->tm_mon -= 1;
  139. if ((int)cur_year >= 50) { /* >= 1950 */
  140. /* Adjust year: */
  141. /* 1. Put it in the current century */
  142. ptm->tm_year += (cur_year / 100) * 100;
  143. /* 2. If too far in the past, +100 years */
  144. if (ptm->tm_year < cur_year - 50)
  145. ptm->tm_year += 100;
  146. /* 3. If too far in the future, -100 years */
  147. if (ptm->tm_year > cur_year + 50)
  148. ptm->tm_year -= 100;
  149. }
  150. } else
  151. /* ccyymmddHHMM[.SS] */
  152. if (len == 12 && sscanf(date_str, "%4u%2u%2u%2u%2u%c",
  153. &ptm->tm_year,
  154. &ptm->tm_mon,
  155. &ptm->tm_mday,
  156. &ptm->tm_hour,
  157. &ptm->tm_min,
  158. &end) >= 5) {
  159. ptm->tm_year -= 1900; /* Adjust years */
  160. ptm->tm_mon -= 1; /* Adjust month from 1-12 to 0-11 */
  161. } else {
  162. bb_error_msg_and_die(bb_msg_invalid_date, date_str);
  163. }
  164. if (end == '.') {
  165. /* xxx.SS */
  166. if (sscanf(strchr(date_str, '.') + 1, "%u%c",
  167. &ptm->tm_sec, &end) == 1)
  168. end = '\0';
  169. /* else end != NUL and we error out */
  170. }
  171. }
  172. if (end != '\0') {
  173. bb_error_msg_and_die(bb_msg_invalid_date, date_str);
  174. }
  175. }
  176. time_t FAST_FUNC validate_tm_time(const char *date_str, struct tm *ptm)
  177. {
  178. time_t t = mktime(ptm);
  179. if (t == (time_t) -1L) {
  180. bb_error_msg_and_die(bb_msg_invalid_date, date_str);
  181. }
  182. return t;
  183. }
  184. #if ENABLE_MONOTONIC_SYSCALL
  185. #include <sys/syscall.h>
  186. /* Old glibc (< 2.3.4) does not provide this constant. We use syscall
  187. * directly so this definition is safe. */
  188. #ifndef CLOCK_MONOTONIC
  189. #define CLOCK_MONOTONIC 1
  190. #endif
  191. /* libc has incredibly messy way of doing this,
  192. * typically requiring -lrt. We just skip all this mess */
  193. static void get_mono(struct timespec *ts)
  194. {
  195. if (syscall(__NR_clock_gettime, CLOCK_MONOTONIC, ts))
  196. bb_error_msg_and_die("clock_gettime(MONOTONIC) failed");
  197. }
  198. unsigned long long FAST_FUNC monotonic_ns(void)
  199. {
  200. struct timespec ts;
  201. get_mono(&ts);
  202. return ts.tv_sec * 1000000000ULL + ts.tv_nsec;
  203. }
  204. unsigned long long FAST_FUNC monotonic_us(void)
  205. {
  206. struct timespec ts;
  207. get_mono(&ts);
  208. return ts.tv_sec * 1000000ULL + ts.tv_nsec/1000;
  209. }
  210. unsigned long long FAST_FUNC monotonic_ms(void)
  211. {
  212. struct timespec ts;
  213. get_mono(&ts);
  214. return ts.tv_sec * 1000ULL + ts.tv_nsec/1000000;
  215. }
  216. unsigned FAST_FUNC monotonic_sec(void)
  217. {
  218. struct timespec ts;
  219. get_mono(&ts);
  220. return ts.tv_sec;
  221. }
  222. #else
  223. unsigned long long FAST_FUNC monotonic_ns(void)
  224. {
  225. struct timeval tv;
  226. gettimeofday(&tv, NULL);
  227. return tv.tv_sec * 1000000000ULL + tv.tv_usec * 1000;
  228. }
  229. unsigned long long FAST_FUNC monotonic_us(void)
  230. {
  231. struct timeval tv;
  232. gettimeofday(&tv, NULL);
  233. return tv.tv_sec * 1000000ULL + tv.tv_usec;
  234. }
  235. unsigned long long FAST_FUNC monotonic_ms(void)
  236. {
  237. struct timeval tv;
  238. gettimeofday(&tv, NULL);
  239. return tv.tv_sec * 1000ULL + tv.tv_usec / 1000;
  240. }
  241. unsigned FAST_FUNC monotonic_sec(void)
  242. {
  243. return time(NULL);
  244. }
  245. #endif