parsedate.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2019, Daniel Stenberg, <[email protected]>, et al.
  9. *
  10. * This software is licensed as described in the file COPYING, which
  11. * you should have received as part of this distribution. The terms
  12. * are also available at https://curl.haxx.se/docs/copyright.html.
  13. *
  14. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. * copies of the Software, and permit persons to whom the Software is
  16. * furnished to do so, under the terms of the COPYING file.
  17. *
  18. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. * KIND, either express or implied.
  20. *
  21. ***************************************************************************/
  22. /*
  23. A brief summary of the date string formats this parser groks:
  24. RFC 2616 3.3.1
  25. Sun, 06 Nov 1994 08:49:37 GMT ; RFC 822, updated by RFC 1123
  26. Sunday, 06-Nov-94 08:49:37 GMT ; RFC 850, obsoleted by RFC 1036
  27. Sun Nov 6 08:49:37 1994 ; ANSI C's asctime() format
  28. we support dates without week day name:
  29. 06 Nov 1994 08:49:37 GMT
  30. 06-Nov-94 08:49:37 GMT
  31. Nov 6 08:49:37 1994
  32. without the time zone:
  33. 06 Nov 1994 08:49:37
  34. 06-Nov-94 08:49:37
  35. weird order:
  36. 1994 Nov 6 08:49:37 (GNU date fails)
  37. GMT 08:49:37 06-Nov-94 Sunday
  38. 94 6 Nov 08:49:37 (GNU date fails)
  39. time left out:
  40. 1994 Nov 6
  41. 06-Nov-94
  42. Sun Nov 6 94
  43. unusual separators:
  44. 1994.Nov.6
  45. Sun/Nov/6/94/GMT
  46. commonly used time zone names:
  47. Sun, 06 Nov 1994 08:49:37 CET
  48. 06 Nov 1994 08:49:37 EST
  49. time zones specified using RFC822 style:
  50. Sun, 12 Sep 2004 15:05:58 -0700
  51. Sat, 11 Sep 2004 21:32:11 +0200
  52. compact numerical date strings:
  53. 20040912 15:05:58 -0700
  54. 20040911 +0200
  55. */
  56. #include "curl_setup.h"
  57. #include <limits.h>
  58. #include <curl/curl.h>
  59. #include "strcase.h"
  60. #include "warnless.h"
  61. #include "parsedate.h"
  62. /*
  63. * parsedate()
  64. *
  65. * Returns:
  66. *
  67. * PARSEDATE_OK - a fine conversion
  68. * PARSEDATE_FAIL - failed to convert
  69. * PARSEDATE_LATER - time overflow at the far end of time_t
  70. * PARSEDATE_SOONER - time underflow at the low end of time_t
  71. */
  72. static int parsedate(const char *date, time_t *output);
  73. #define PARSEDATE_OK 0
  74. #define PARSEDATE_FAIL -1
  75. #define PARSEDATE_LATER 1
  76. #define PARSEDATE_SOONER 2
  77. #ifndef CURL_DISABLE_PARSEDATE
  78. const char * const Curl_wkday[] =
  79. {"Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"};
  80. static const char * const weekday[] =
  81. { "Monday", "Tuesday", "Wednesday", "Thursday",
  82. "Friday", "Saturday", "Sunday" };
  83. const char * const Curl_month[]=
  84. { "Jan", "Feb", "Mar", "Apr", "May", "Jun",
  85. "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
  86. struct tzinfo {
  87. char name[5];
  88. int offset; /* +/- in minutes */
  89. };
  90. /* Here's a bunch of frequently used time zone names. These were supported
  91. by the old getdate parser. */
  92. #define tDAYZONE -60 /* offset for daylight savings time */
  93. static const struct tzinfo tz[]= {
  94. {"GMT", 0}, /* Greenwich Mean */
  95. {"UT", 0}, /* Universal Time */
  96. {"UTC", 0}, /* Universal (Coordinated) */
  97. {"WET", 0}, /* Western European */
  98. {"BST", 0 tDAYZONE}, /* British Summer */
  99. {"WAT", 60}, /* West Africa */
  100. {"AST", 240}, /* Atlantic Standard */
  101. {"ADT", 240 tDAYZONE}, /* Atlantic Daylight */
  102. {"EST", 300}, /* Eastern Standard */
  103. {"EDT", 300 tDAYZONE}, /* Eastern Daylight */
  104. {"CST", 360}, /* Central Standard */
  105. {"CDT", 360 tDAYZONE}, /* Central Daylight */
  106. {"MST", 420}, /* Mountain Standard */
  107. {"MDT", 420 tDAYZONE}, /* Mountain Daylight */
  108. {"PST", 480}, /* Pacific Standard */
  109. {"PDT", 480 tDAYZONE}, /* Pacific Daylight */
  110. {"YST", 540}, /* Yukon Standard */
  111. {"YDT", 540 tDAYZONE}, /* Yukon Daylight */
  112. {"HST", 600}, /* Hawaii Standard */
  113. {"HDT", 600 tDAYZONE}, /* Hawaii Daylight */
  114. {"CAT", 600}, /* Central Alaska */
  115. {"AHST", 600}, /* Alaska-Hawaii Standard */
  116. {"NT", 660}, /* Nome */
  117. {"IDLW", 720}, /* International Date Line West */
  118. {"CET", -60}, /* Central European */
  119. {"MET", -60}, /* Middle European */
  120. {"MEWT", -60}, /* Middle European Winter */
  121. {"MEST", -60 tDAYZONE}, /* Middle European Summer */
  122. {"CEST", -60 tDAYZONE}, /* Central European Summer */
  123. {"MESZ", -60 tDAYZONE}, /* Middle European Summer */
  124. {"FWT", -60}, /* French Winter */
  125. {"FST", -60 tDAYZONE}, /* French Summer */
  126. {"EET", -120}, /* Eastern Europe, USSR Zone 1 */
  127. {"WAST", -420}, /* West Australian Standard */
  128. {"WADT", -420 tDAYZONE}, /* West Australian Daylight */
  129. {"CCT", -480}, /* China Coast, USSR Zone 7 */
  130. {"JST", -540}, /* Japan Standard, USSR Zone 8 */
  131. {"EAST", -600}, /* Eastern Australian Standard */
  132. {"EADT", -600 tDAYZONE}, /* Eastern Australian Daylight */
  133. {"GST", -600}, /* Guam Standard, USSR Zone 9 */
  134. {"NZT", -720}, /* New Zealand */
  135. {"NZST", -720}, /* New Zealand Standard */
  136. {"NZDT", -720 tDAYZONE}, /* New Zealand Daylight */
  137. {"IDLE", -720}, /* International Date Line East */
  138. /* Next up: Military timezone names. RFC822 allowed these, but (as noted in
  139. RFC 1123) had their signs wrong. Here we use the correct signs to match
  140. actual military usage.
  141. */
  142. {"A", 1 * 60}, /* Alpha */
  143. {"B", 2 * 60}, /* Bravo */
  144. {"C", 3 * 60}, /* Charlie */
  145. {"D", 4 * 60}, /* Delta */
  146. {"E", 5 * 60}, /* Echo */
  147. {"F", 6 * 60}, /* Foxtrot */
  148. {"G", 7 * 60}, /* Golf */
  149. {"H", 8 * 60}, /* Hotel */
  150. {"I", 9 * 60}, /* India */
  151. /* "J", Juliet is not used as a timezone, to indicate the observer's local
  152. time */
  153. {"K", 10 * 60}, /* Kilo */
  154. {"L", 11 * 60}, /* Lima */
  155. {"M", 12 * 60}, /* Mike */
  156. {"N", -1 * 60}, /* November */
  157. {"O", -2 * 60}, /* Oscar */
  158. {"P", -3 * 60}, /* Papa */
  159. {"Q", -4 * 60}, /* Quebec */
  160. {"R", -5 * 60}, /* Romeo */
  161. {"S", -6 * 60}, /* Sierra */
  162. {"T", -7 * 60}, /* Tango */
  163. {"U", -8 * 60}, /* Uniform */
  164. {"V", -9 * 60}, /* Victor */
  165. {"W", -10 * 60}, /* Whiskey */
  166. {"X", -11 * 60}, /* X-ray */
  167. {"Y", -12 * 60}, /* Yankee */
  168. {"Z", 0}, /* Zulu, zero meridian, a.k.a. UTC */
  169. };
  170. /* returns:
  171. -1 no day
  172. 0 monday - 6 sunday
  173. */
  174. static int checkday(const char *check, size_t len)
  175. {
  176. int i;
  177. const char * const *what;
  178. bool found = FALSE;
  179. if(len > 3)
  180. what = &weekday[0];
  181. else
  182. what = &Curl_wkday[0];
  183. for(i = 0; i<7; i++) {
  184. if(strcasecompare(check, what[0])) {
  185. found = TRUE;
  186. break;
  187. }
  188. what++;
  189. }
  190. return found?i:-1;
  191. }
  192. static int checkmonth(const char *check)
  193. {
  194. int i;
  195. const char * const *what;
  196. bool found = FALSE;
  197. what = &Curl_month[0];
  198. for(i = 0; i<12; i++) {
  199. if(strcasecompare(check, what[0])) {
  200. found = TRUE;
  201. break;
  202. }
  203. what++;
  204. }
  205. return found?i:-1; /* return the offset or -1, no real offset is -1 */
  206. }
  207. /* return the time zone offset between GMT and the input one, in number
  208. of seconds or -1 if the timezone wasn't found/legal */
  209. static int checktz(const char *check)
  210. {
  211. unsigned int i;
  212. const struct tzinfo *what;
  213. bool found = FALSE;
  214. what = tz;
  215. for(i = 0; i< sizeof(tz)/sizeof(tz[0]); i++) {
  216. if(strcasecompare(check, what->name)) {
  217. found = TRUE;
  218. break;
  219. }
  220. what++;
  221. }
  222. return found?what->offset*60:-1;
  223. }
  224. static void skip(const char **date)
  225. {
  226. /* skip everything that aren't letters or digits */
  227. while(**date && !ISALNUM(**date))
  228. (*date)++;
  229. }
  230. enum assume {
  231. DATE_MDAY,
  232. DATE_YEAR,
  233. DATE_TIME
  234. };
  235. /* this is a clone of 'struct tm' but with all fields we don't need or use
  236. cut out */
  237. struct my_tm {
  238. int tm_sec;
  239. int tm_min;
  240. int tm_hour;
  241. int tm_mday;
  242. int tm_mon;
  243. int tm_year; /* full year */
  244. };
  245. /* struct tm to time since epoch in GMT time zone.
  246. * This is similar to the standard mktime function but for GMT only, and
  247. * doesn't suffer from the various bugs and portability problems that
  248. * some systems' implementations have.
  249. *
  250. * Returns 0 on success, otherwise non-zero.
  251. */
  252. static void my_timegm(struct my_tm *tm, time_t *t)
  253. {
  254. static const int month_days_cumulative [12] =
  255. { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 };
  256. int month, year, leap_days;
  257. year = tm->tm_year;
  258. month = tm->tm_mon;
  259. if(month < 0) {
  260. year += (11 - month) / 12;
  261. month = 11 - (11 - month) % 12;
  262. }
  263. else if(month >= 12) {
  264. year -= month / 12;
  265. month = month % 12;
  266. }
  267. leap_days = year - (tm->tm_mon <= 1);
  268. leap_days = ((leap_days / 4) - (leap_days / 100) + (leap_days / 400)
  269. - (1969 / 4) + (1969 / 100) - (1969 / 400));
  270. *t = ((((time_t) (year - 1970) * 365
  271. + leap_days + month_days_cumulative[month] + tm->tm_mday - 1) * 24
  272. + tm->tm_hour) * 60 + tm->tm_min) * 60 + tm->tm_sec;
  273. }
  274. /*
  275. * parsedate()
  276. *
  277. * Returns:
  278. *
  279. * PARSEDATE_OK - a fine conversion
  280. * PARSEDATE_FAIL - failed to convert
  281. * PARSEDATE_LATER - time overflow at the far end of time_t
  282. * PARSEDATE_SOONER - time underflow at the low end of time_t
  283. */
  284. static int parsedate(const char *date, time_t *output)
  285. {
  286. time_t t = 0;
  287. int wdaynum = -1; /* day of the week number, 0-6 (mon-sun) */
  288. int monnum = -1; /* month of the year number, 0-11 */
  289. int mdaynum = -1; /* day of month, 1 - 31 */
  290. int hournum = -1;
  291. int minnum = -1;
  292. int secnum = -1;
  293. int yearnum = -1;
  294. int tzoff = -1;
  295. struct my_tm tm;
  296. enum assume dignext = DATE_MDAY;
  297. const char *indate = date; /* save the original pointer */
  298. int part = 0; /* max 6 parts */
  299. while(*date && (part < 6)) {
  300. bool found = FALSE;
  301. skip(&date);
  302. if(ISALPHA(*date)) {
  303. /* a name coming up */
  304. char buf[32]="";
  305. size_t len;
  306. if(sscanf(date, "%31[ABCDEFGHIJKLMNOPQRSTUVWXYZ"
  307. "abcdefghijklmnopqrstuvwxyz]", buf))
  308. len = strlen(buf);
  309. else
  310. len = 0;
  311. if(wdaynum == -1) {
  312. wdaynum = checkday(buf, len);
  313. if(wdaynum != -1)
  314. found = TRUE;
  315. }
  316. if(!found && (monnum == -1)) {
  317. monnum = checkmonth(buf);
  318. if(monnum != -1)
  319. found = TRUE;
  320. }
  321. if(!found && (tzoff == -1)) {
  322. /* this just must be a time zone string */
  323. tzoff = checktz(buf);
  324. if(tzoff != -1)
  325. found = TRUE;
  326. }
  327. if(!found)
  328. return PARSEDATE_FAIL; /* bad string */
  329. date += len;
  330. }
  331. else if(ISDIGIT(*date)) {
  332. /* a digit */
  333. int val;
  334. char *end;
  335. int len = 0;
  336. if((secnum == -1) &&
  337. (3 == sscanf(date, "%02d:%02d:%02d%n",
  338. &hournum, &minnum, &secnum, &len))) {
  339. /* time stamp! */
  340. date += len;
  341. }
  342. else if((secnum == -1) &&
  343. (2 == sscanf(date, "%02d:%02d%n", &hournum, &minnum, &len))) {
  344. /* time stamp without seconds */
  345. date += len;
  346. secnum = 0;
  347. }
  348. else {
  349. long lval;
  350. int error;
  351. int old_errno;
  352. old_errno = errno;
  353. errno = 0;
  354. lval = strtol(date, &end, 10);
  355. error = errno;
  356. if(errno != old_errno)
  357. errno = old_errno;
  358. if(error)
  359. return PARSEDATE_FAIL;
  360. #if LONG_MAX != INT_MAX
  361. if((lval > (long)INT_MAX) || (lval < (long)INT_MIN))
  362. return PARSEDATE_FAIL;
  363. #endif
  364. val = curlx_sltosi(lval);
  365. if((tzoff == -1) &&
  366. ((end - date) == 4) &&
  367. (val <= 1400) &&
  368. (indate< date) &&
  369. ((date[-1] == '+' || date[-1] == '-'))) {
  370. /* four digits and a value less than or equal to 1400 (to take into
  371. account all sorts of funny time zone diffs) and it is preceded
  372. with a plus or minus. This is a time zone indication. 1400 is
  373. picked since +1300 is frequently used and +1400 is mentioned as
  374. an edge number in the document "ISO C 200X Proposal: Timezone
  375. Functions" at http://david.tribble.com/text/c0xtimezone.html If
  376. anyone has a more authoritative source for the exact maximum time
  377. zone offsets, please speak up! */
  378. found = TRUE;
  379. tzoff = (val/100 * 60 + val%100)*60;
  380. /* the + and - prefix indicates the local time compared to GMT,
  381. this we need their reversed math to get what we want */
  382. tzoff = date[-1]=='+'?-tzoff:tzoff;
  383. }
  384. if(((end - date) == 8) &&
  385. (yearnum == -1) &&
  386. (monnum == -1) &&
  387. (mdaynum == -1)) {
  388. /* 8 digits, no year, month or day yet. This is YYYYMMDD */
  389. found = TRUE;
  390. yearnum = val/10000;
  391. monnum = (val%10000)/100-1; /* month is 0 - 11 */
  392. mdaynum = val%100;
  393. }
  394. if(!found && (dignext == DATE_MDAY) && (mdaynum == -1)) {
  395. if((val > 0) && (val<32)) {
  396. mdaynum = val;
  397. found = TRUE;
  398. }
  399. dignext = DATE_YEAR;
  400. }
  401. if(!found && (dignext == DATE_YEAR) && (yearnum == -1)) {
  402. yearnum = val;
  403. found = TRUE;
  404. if(yearnum < 100) {
  405. if(yearnum > 70)
  406. yearnum += 1900;
  407. else
  408. yearnum += 2000;
  409. }
  410. if(mdaynum == -1)
  411. dignext = DATE_MDAY;
  412. }
  413. if(!found)
  414. return PARSEDATE_FAIL;
  415. date = end;
  416. }
  417. }
  418. part++;
  419. }
  420. if(-1 == secnum)
  421. secnum = minnum = hournum = 0; /* no time, make it zero */
  422. if((-1 == mdaynum) ||
  423. (-1 == monnum) ||
  424. (-1 == yearnum))
  425. /* lacks vital info, fail */
  426. return PARSEDATE_FAIL;
  427. #ifdef HAVE_TIME_T_UNSIGNED
  428. if(yearnum < 1970) {
  429. /* only positive numbers cannot return earlier */
  430. *output = TIME_T_MIN;
  431. return PARSEDATE_SOONER;
  432. }
  433. #endif
  434. #if (SIZEOF_TIME_T < 5)
  435. #ifdef HAVE_TIME_T_UNSIGNED
  436. /* an unsigned 32 bit time_t can only hold dates to 2106 */
  437. if(yearnum > 2105) {
  438. *output = TIME_T_MAX;
  439. return PARSEDATE_LATER;
  440. }
  441. #else
  442. /* a signed 32 bit time_t can only hold dates to the beginning of 2038 */
  443. if(yearnum > 2037) {
  444. *output = TIME_T_MAX;
  445. return PARSEDATE_LATER;
  446. }
  447. if(yearnum < 1903) {
  448. *output = TIME_T_MIN;
  449. return PARSEDATE_SOONER;
  450. }
  451. #endif
  452. #else
  453. /* The Gregorian calendar was introduced 1582 */
  454. if(yearnum < 1583)
  455. return PARSEDATE_FAIL;
  456. #endif
  457. if((mdaynum > 31) || (monnum > 11) ||
  458. (hournum > 23) || (minnum > 59) || (secnum > 60))
  459. return PARSEDATE_FAIL; /* clearly an illegal date */
  460. tm.tm_sec = secnum;
  461. tm.tm_min = minnum;
  462. tm.tm_hour = hournum;
  463. tm.tm_mday = mdaynum;
  464. tm.tm_mon = monnum;
  465. tm.tm_year = yearnum;
  466. /* my_timegm() returns a time_t. time_t is often 32 bits, sometimes even on
  467. architectures that feature 64 bit 'long' but ultimately time_t is the
  468. correct data type to use.
  469. */
  470. my_timegm(&tm, &t);
  471. /* Add the time zone diff between local time zone and GMT. */
  472. if(tzoff == -1)
  473. tzoff = 0;
  474. if((tzoff > 0) && (t > TIME_T_MAX - tzoff)) {
  475. *output = TIME_T_MAX;
  476. return PARSEDATE_LATER; /* time_t overflow */
  477. }
  478. t += tzoff;
  479. *output = t;
  480. return PARSEDATE_OK;
  481. }
  482. #else
  483. /* disabled */
  484. static int parsedate(const char *date, time_t *output)
  485. {
  486. (void)date;
  487. *output = 0;
  488. return PARSEDATE_OK; /* a lie */
  489. }
  490. #endif
  491. time_t curl_getdate(const char *p, const time_t *now)
  492. {
  493. time_t parsed = -1;
  494. int rc = parsedate(p, &parsed);
  495. (void)now; /* legacy argument from the past that we ignore */
  496. if(rc == PARSEDATE_OK) {
  497. if(parsed == -1)
  498. /* avoid returning -1 for a working scenario */
  499. parsed++;
  500. return parsed;
  501. }
  502. /* everything else is fail */
  503. return -1;
  504. }
  505. /*
  506. * Curl_gmtime() is a gmtime() replacement for portability. Do not use the
  507. * gmtime_r() or gmtime() functions anywhere else but here.
  508. *
  509. */
  510. CURLcode Curl_gmtime(time_t intime, struct tm *store)
  511. {
  512. const struct tm *tm;
  513. #ifdef HAVE_GMTIME_R
  514. /* thread-safe version */
  515. tm = (struct tm *)gmtime_r(&intime, store);
  516. #else
  517. tm = gmtime(&intime);
  518. if(tm)
  519. *store = *tm; /* copy the pointed struct to the local copy */
  520. #endif
  521. if(!tm)
  522. return CURLE_BAD_FUNCTION_ARGUMENT;
  523. return CURLE_OK;
  524. }