localtime.c 37 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496
  1. /*
  2. * Asterisk -- A telephony toolkit for Linux.
  3. *
  4. * Multi-timezone Localtime code
  5. *
  6. * Copyright (C) 2003, Mark Spencer
  7. *
  8. * This program is free software, distributed under the terms of
  9. * the GNU General Public License
  10. *
  11. * Most of this code is in the public domain, so clarified as of
  12. * June 5, 1996 by Arthur David Olson (arthur_david_olson@nih.gov).
  13. *
  14. * All modifications to this code to abstract timezones away from
  15. * the environment are by Tilghman Lesher, <tlesher@vcch.com>, with
  16. * the copyright assigned to Digium.
  17. */
  18. /*
  19. * Asterisk defines
  20. *
  21. * Don't mess with these unless you're really sure you know what you're doing.
  22. */
  23. #define _THREAD_SAFE
  24. #define TZ_STRLEN_MAX 255
  25. /* #define DEBUG */
  26. #include <asterisk/lock.h>
  27. #include <asterisk/localtime.h>
  28. #ifndef lint
  29. #ifndef NOID
  30. static const char elsieid[] = "@(#)localtime.c 7.57";
  31. #endif /* !defined NOID */
  32. #endif /* !defined lint */
  33. /*
  34. ** Leap second handling from Bradley White (bww@k.gp.cs.cmu.edu).
  35. ** POSIX-style TZ environment variable handling from Guy Harris
  36. ** (guy@auspex.com).
  37. */
  38. /*LINTLIBRARY*/
  39. #include <sys/types.h>
  40. #include <sys/stat.h>
  41. #include "private.h"
  42. #include "tzfile.h"
  43. #include <fcntl.h>
  44. #ifdef DEBUG
  45. #include <stdio.h>
  46. #endif
  47. /*
  48. ** SunOS 4.1.1 headers lack O_BINARY.
  49. */
  50. #ifdef O_BINARY
  51. #define OPEN_MODE (O_RDONLY | O_BINARY)
  52. #endif /* defined O_BINARY */
  53. #ifndef O_BINARY
  54. #define OPEN_MODE O_RDONLY
  55. #endif /* !defined O_BINARY */
  56. #ifndef WILDABBR
  57. /*
  58. ** Someone might make incorrect use of a time zone abbreviation:
  59. ** 1. They might reference tzname[0] before calling ast_tzset (explicitly
  60. ** or implicitly).
  61. ** 2. They might reference tzname[1] before calling ast_tzset (explicitly
  62. ** or implicitly).
  63. ** 3. They might reference tzname[1] after setting to a time zone
  64. ** in which Daylight Saving Time is never observed.
  65. ** 4. They might reference tzname[0] after setting to a time zone
  66. ** in which Standard Time is never observed.
  67. ** 5. They might reference tm.TM_ZONE after calling offtime.
  68. ** What's best to do in the above cases is open to debate;
  69. ** for now, we just set things up so that in any of the five cases
  70. ** WILDABBR is used. Another possibility: initialize tzname[0] to the
  71. ** string "tzname[0] used before set", and similarly for the other cases.
  72. ** And another: initialize tzname[0] to "ERA", with an explanation in the
  73. ** manual page of what this "time zone abbreviation" means (doing this so
  74. ** that tzname[0] has the "normal" length of three characters).
  75. */
  76. #define WILDABBR " "
  77. #endif /* !defined WILDABBR */
  78. static char wildabbr[] = "WILDABBR";
  79. static const char gmt[] = "GMT";
  80. struct ttinfo { /* time type information */
  81. long tt_gmtoff; /* GMT offset in seconds */
  82. int tt_isdst; /* used to set tm_isdst */
  83. int tt_abbrind; /* abbreviation list index */
  84. int tt_ttisstd; /* TRUE if transition is std time */
  85. int tt_ttisgmt; /* TRUE if transition is GMT */
  86. };
  87. struct lsinfo { /* leap second information */
  88. time_t ls_trans; /* transition time */
  89. long ls_corr; /* correction to apply */
  90. };
  91. #define BIGGEST(a, b) (((a) > (b)) ? (a) : (b))
  92. #ifdef TZNAME_MAX
  93. #define MY_TZNAME_MAX TZNAME_MAX
  94. #endif /* defined TZNAME_MAX */
  95. #ifndef TZNAME_MAX
  96. #define MY_TZNAME_MAX 255
  97. #endif /* !defined TZNAME_MAX */
  98. struct state {
  99. char name[TZ_STRLEN_MAX + 1];
  100. int leapcnt;
  101. int timecnt;
  102. int typecnt;
  103. int charcnt;
  104. time_t ats[TZ_MAX_TIMES];
  105. unsigned char types[TZ_MAX_TIMES];
  106. struct ttinfo ttis[TZ_MAX_TYPES];
  107. char chars[BIGGEST(BIGGEST(TZ_MAX_CHARS + 1, sizeof gmt),
  108. (2 * (MY_TZNAME_MAX + 1)))];
  109. struct lsinfo lsis[TZ_MAX_LEAPS];
  110. struct state *next;
  111. };
  112. struct rule {
  113. int r_type; /* type of rule--see below */
  114. int r_day; /* day number of rule */
  115. int r_week; /* week number of rule */
  116. int r_mon; /* month number of rule */
  117. long r_time; /* transition time of rule */
  118. };
  119. #define JULIAN_DAY 0 /* Jn - Julian day */
  120. #define DAY_OF_YEAR 1 /* n - day of year */
  121. #define MONTH_NTH_DAY_OF_WEEK 2 /* Mm.n.d - month, week, day of week */
  122. /*
  123. ** Prototypes for static functions.
  124. */
  125. static long detzcode P((const char * codep));
  126. static const char * getnum P((const char * strp, int * nump, int min,
  127. int max));
  128. static const char * getsecs P((const char * strp, long * secsp));
  129. static const char * getoffset P((const char * strp, long * offsetp));
  130. static const char * getrule P((const char * strp, struct rule * rulep));
  131. static void gmtload P((struct state * sp));
  132. static void gmtsub P((const time_t * timep, long offset,
  133. struct tm * tmp, const char * zone));
  134. static void localsub P((const time_t * timep, long offset,
  135. struct tm * tmp, const char * zone));
  136. static int increment_overflow P((int * number, int delta));
  137. static int normalize_overflow P((int * tensptr, int * unitsptr,
  138. int base));
  139. static time_t time1 P((struct tm * tmp,
  140. void(*funcp) P((const time_t *,
  141. long, struct tm *, const char*)),
  142. long offset, const char * zone));
  143. static time_t time2 P((struct tm *tmp,
  144. void(*funcp) P((const time_t *,
  145. long, struct tm*, const char*)),
  146. long offset, int * okayp, const char * zone));
  147. static void timesub P((const time_t * timep, long offset,
  148. const struct state * sp, struct tm * tmp));
  149. static int tmcomp P((const struct tm * atmp,
  150. const struct tm * btmp));
  151. static time_t transtime P((time_t janfirst, int year,
  152. const struct rule * rulep, long offset));
  153. static int tzload P((const char * name, struct state * sp));
  154. static int tzparse P((const char * name, struct state * sp,
  155. int lastditch));
  156. static struct state * lclptr = NULL;
  157. static struct state * last_lclptr = NULL;
  158. static struct state * gmtptr = NULL;
  159. #ifndef TZ_STRLEN_MAX
  160. #define TZ_STRLEN_MAX 255
  161. #endif /* !defined TZ_STRLEN_MAX */
  162. static int gmt_is_set;
  163. #ifdef _THREAD_SAFE
  164. static ast_mutex_t lcl_mutex = AST_MUTEX_INITIALIZER;
  165. static ast_mutex_t tzset_mutex = AST_MUTEX_INITIALIZER;
  166. static ast_mutex_t tzsetwall_mutex = AST_MUTEX_INITIALIZER;
  167. static ast_mutex_t gmt_mutex = AST_MUTEX_INITIALIZER;
  168. #endif
  169. /*
  170. ** Section 4.12.3 of X3.159-1989 requires that
  171. ** Except for the strftime function, these functions [asctime,
  172. ** ctime, gmtime, localtime] return values in one of two static
  173. ** objects: a broken-down time structure and an array of char.
  174. ** Thanks to Paul Eggert (eggert@twinsun.com) for noting this.
  175. */
  176. static long
  177. detzcode(codep)
  178. const char * const codep;
  179. {
  180. register long result;
  181. register int i;
  182. result = (codep[0] & 0x80) ? ~0L : 0L;
  183. for (i = 0; i < 4; ++i)
  184. result = (result << 8) | (codep[i] & 0xff);
  185. return result;
  186. }
  187. static int
  188. tzload(name, sp)
  189. register const char * name;
  190. register struct state * const sp;
  191. {
  192. register const char * p;
  193. register int i;
  194. register int fid;
  195. #ifdef DEBUG
  196. fprintf(stderr,"tzload called with name=%s, sp=%d\n", name, sp);
  197. #endif
  198. if (name == NULL && (name = TZDEFAULT) == NULL)
  199. return -1;
  200. {
  201. register int doaccess;
  202. struct stat stab;
  203. /*
  204. ** Section 4.9.1 of the C standard says that
  205. ** "FILENAME_MAX expands to an integral constant expression
  206. ** that is the size needed for an array of char large enough
  207. ** to hold the longest file name string that the implementation
  208. ** guarantees can be opened."
  209. */
  210. char fullname[FILENAME_MAX + 1];
  211. if (name[0] == ':')
  212. ++name;
  213. doaccess = name[0] == '/';
  214. if (!doaccess) {
  215. if ((p = TZDIR) == NULL)
  216. return -1;
  217. if ((strlen(p) + 1 + strlen(name) + 1) >= sizeof fullname)
  218. return -1;
  219. (void) strcpy(fullname, p);
  220. (void) strcat(fullname, "/");
  221. (void) strcat(fullname, name);
  222. /*
  223. ** Set doaccess if '.' (as in "../") shows up in name.
  224. */
  225. if (strchr(name, '.') != NULL)
  226. doaccess = TRUE;
  227. name = fullname;
  228. }
  229. if (doaccess && access(name, R_OK) != 0)
  230. return -1;
  231. if ((fid = open(name, OPEN_MODE)) == -1)
  232. return -1;
  233. if ((fstat(fid, &stab) < 0) || !S_ISREG(stab.st_mode)) {
  234. close(fid);
  235. return -1;
  236. }
  237. }
  238. {
  239. struct tzhead * tzhp;
  240. char buf[sizeof *sp + sizeof *tzhp];
  241. int ttisstdcnt;
  242. int ttisgmtcnt;
  243. i = read(fid, buf, sizeof buf);
  244. if (close(fid) != 0)
  245. return -1;
  246. p = buf;
  247. p += (sizeof tzhp->tzh_magic) + (sizeof tzhp->tzh_reserved);
  248. ttisstdcnt = (int) detzcode(p);
  249. p += 4;
  250. ttisgmtcnt = (int) detzcode(p);
  251. p += 4;
  252. sp->leapcnt = (int) detzcode(p);
  253. p += 4;
  254. sp->timecnt = (int) detzcode(p);
  255. p += 4;
  256. sp->typecnt = (int) detzcode(p);
  257. p += 4;
  258. sp->charcnt = (int) detzcode(p);
  259. p += 4;
  260. if (sp->leapcnt < 0 || sp->leapcnt > TZ_MAX_LEAPS ||
  261. sp->typecnt <= 0 || sp->typecnt > TZ_MAX_TYPES ||
  262. sp->timecnt < 0 || sp->timecnt > TZ_MAX_TIMES ||
  263. sp->charcnt < 0 || sp->charcnt > TZ_MAX_CHARS ||
  264. (ttisstdcnt != sp->typecnt && ttisstdcnt != 0) ||
  265. (ttisgmtcnt != sp->typecnt && ttisgmtcnt != 0))
  266. return -1;
  267. if (i - (p - buf) < sp->timecnt * 4 + /* ats */
  268. sp->timecnt + /* types */
  269. sp->typecnt * (4 + 2) + /* ttinfos */
  270. sp->charcnt + /* chars */
  271. sp->leapcnt * (4 + 4) + /* lsinfos */
  272. ttisstdcnt + /* ttisstds */
  273. ttisgmtcnt) /* ttisgmts */
  274. return -1;
  275. for (i = 0; i < sp->timecnt; ++i) {
  276. sp->ats[i] = detzcode(p);
  277. p += 4;
  278. }
  279. for (i = 0; i < sp->timecnt; ++i) {
  280. sp->types[i] = (unsigned char) *p++;
  281. if (sp->types[i] >= sp->typecnt)
  282. return -1;
  283. }
  284. for (i = 0; i < sp->typecnt; ++i) {
  285. register struct ttinfo * ttisp;
  286. ttisp = &sp->ttis[i];
  287. ttisp->tt_gmtoff = detzcode(p);
  288. p += 4;
  289. ttisp->tt_isdst = (unsigned char) *p++;
  290. if (ttisp->tt_isdst != 0 && ttisp->tt_isdst != 1)
  291. return -1;
  292. ttisp->tt_abbrind = (unsigned char) *p++;
  293. if (ttisp->tt_abbrind < 0 ||
  294. ttisp->tt_abbrind > sp->charcnt)
  295. return -1;
  296. }
  297. for (i = 0; i < sp->charcnt; ++i)
  298. sp->chars[i] = *p++;
  299. sp->chars[i] = '\0'; /* ensure '\0' at end */
  300. for (i = 0; i < sp->leapcnt; ++i) {
  301. register struct lsinfo * lsisp;
  302. lsisp = &sp->lsis[i];
  303. lsisp->ls_trans = detzcode(p);
  304. p += 4;
  305. lsisp->ls_corr = detzcode(p);
  306. p += 4;
  307. }
  308. for (i = 0; i < sp->typecnt; ++i) {
  309. register struct ttinfo * ttisp;
  310. ttisp = &sp->ttis[i];
  311. if (ttisstdcnt == 0)
  312. ttisp->tt_ttisstd = FALSE;
  313. else {
  314. ttisp->tt_ttisstd = *p++;
  315. if (ttisp->tt_ttisstd != TRUE &&
  316. ttisp->tt_ttisstd != FALSE)
  317. return -1;
  318. }
  319. }
  320. for (i = 0; i < sp->typecnt; ++i) {
  321. register struct ttinfo * ttisp;
  322. ttisp = &sp->ttis[i];
  323. if (ttisgmtcnt == 0)
  324. ttisp->tt_ttisgmt = FALSE;
  325. else {
  326. ttisp->tt_ttisgmt = *p++;
  327. if (ttisp->tt_ttisgmt != TRUE &&
  328. ttisp->tt_ttisgmt != FALSE)
  329. return -1;
  330. }
  331. }
  332. }
  333. return 0;
  334. }
  335. static const int mon_lengths[2][MONSPERYEAR] = {
  336. { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 },
  337. { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
  338. };
  339. static const int year_lengths[2] = {
  340. DAYSPERNYEAR, DAYSPERLYEAR
  341. };
  342. /*
  343. ** Given a pointer into a time zone string, extract a number from that string.
  344. ** Check that the number is within a specified range; if it is not, return
  345. ** NULL.
  346. ** Otherwise, return a pointer to the first character not part of the number.
  347. */
  348. static const char *
  349. getnum(strp, nump, min, max)
  350. register const char * strp;
  351. int * const nump;
  352. const int min;
  353. const int max;
  354. {
  355. register char c;
  356. register int num;
  357. if (strp == NULL || !is_digit(c = *strp))
  358. return NULL;
  359. num = 0;
  360. do {
  361. num = num * 10 + (c - '0');
  362. if (num > max)
  363. return NULL; /* illegal value */
  364. c = *++strp;
  365. } while (is_digit(c));
  366. if (num < min)
  367. return NULL; /* illegal value */
  368. *nump = num;
  369. return strp;
  370. }
  371. /*
  372. ** Given a pointer into a time zone string, extract a number of seconds,
  373. ** in hh[:mm[:ss]] form, from the string.
  374. ** If any error occurs, return NULL.
  375. ** Otherwise, return a pointer to the first character not part of the number
  376. ** of seconds.
  377. */
  378. static const char *
  379. getsecs(strp, secsp)
  380. register const char * strp;
  381. long * const secsp;
  382. {
  383. int num;
  384. /*
  385. ** `HOURSPERDAY * DAYSPERWEEK - 1' allows quasi-Posix rules like
  386. ** "M10.4.6/26", which does not conform to Posix,
  387. ** but which specifies the equivalent of
  388. ** ``02:00 on the first Sunday on or after 23 Oct''.
  389. */
  390. strp = getnum(strp, &num, 0, HOURSPERDAY * DAYSPERWEEK - 1);
  391. if (strp == NULL)
  392. return NULL;
  393. *secsp = num * (long) SECSPERHOUR;
  394. if (*strp == ':') {
  395. ++strp;
  396. strp = getnum(strp, &num, 0, MINSPERHOUR - 1);
  397. if (strp == NULL)
  398. return NULL;
  399. *secsp += num * SECSPERMIN;
  400. if (*strp == ':') {
  401. ++strp;
  402. /* `SECSPERMIN' allows for leap seconds. */
  403. strp = getnum(strp, &num, 0, SECSPERMIN);
  404. if (strp == NULL)
  405. return NULL;
  406. *secsp += num;
  407. }
  408. }
  409. return strp;
  410. }
  411. /*
  412. ** Given a pointer into a time zone string, extract an offset, in
  413. ** [+-]hh[:mm[:ss]] form, from the string.
  414. ** If any error occurs, return NULL.
  415. ** Otherwise, return a pointer to the first character not part of the time.
  416. */
  417. static const char *
  418. getoffset(strp, offsetp)
  419. register const char * strp;
  420. long * const offsetp;
  421. {
  422. register int neg = 0;
  423. if (*strp == '-') {
  424. neg = 1;
  425. ++strp;
  426. } else if (*strp == '+')
  427. ++strp;
  428. strp = getsecs(strp, offsetp);
  429. if (strp == NULL)
  430. return NULL; /* illegal time */
  431. if (neg)
  432. *offsetp = -*offsetp;
  433. return strp;
  434. }
  435. /*
  436. ** Given a pointer into a time zone string, extract a rule in the form
  437. ** date[/time]. See POSIX section 8 for the format of "date" and "time".
  438. ** If a valid rule is not found, return NULL.
  439. ** Otherwise, return a pointer to the first character not part of the rule.
  440. */
  441. static const char *
  442. getrule(strp, rulep)
  443. const char * strp;
  444. register struct rule * const rulep;
  445. {
  446. if (*strp == 'J') {
  447. /*
  448. ** Julian day.
  449. */
  450. rulep->r_type = JULIAN_DAY;
  451. ++strp;
  452. strp = getnum(strp, &rulep->r_day, 1, DAYSPERNYEAR);
  453. } else if (*strp == 'M') {
  454. /*
  455. ** Month, week, day.
  456. */
  457. rulep->r_type = MONTH_NTH_DAY_OF_WEEK;
  458. ++strp;
  459. strp = getnum(strp, &rulep->r_mon, 1, MONSPERYEAR);
  460. if (strp == NULL)
  461. return NULL;
  462. if (*strp++ != '.')
  463. return NULL;
  464. strp = getnum(strp, &rulep->r_week, 1, 5);
  465. if (strp == NULL)
  466. return NULL;
  467. if (*strp++ != '.')
  468. return NULL;
  469. strp = getnum(strp, &rulep->r_day, 0, DAYSPERWEEK - 1);
  470. } else if (is_digit(*strp)) {
  471. /*
  472. ** Day of year.
  473. */
  474. rulep->r_type = DAY_OF_YEAR;
  475. strp = getnum(strp, &rulep->r_day, 0, DAYSPERLYEAR - 1);
  476. } else return NULL; /* invalid format */
  477. if (strp == NULL)
  478. return NULL;
  479. if (*strp == '/') {
  480. /*
  481. ** Time specified.
  482. */
  483. ++strp;
  484. strp = getsecs(strp, &rulep->r_time);
  485. } else rulep->r_time = 2 * SECSPERHOUR; /* default = 2:00:00 */
  486. return strp;
  487. }
  488. /*
  489. ** Given the Epoch-relative time of January 1, 00:00:00 GMT, in a year, the
  490. ** year, a rule, and the offset from GMT at the time that rule takes effect,
  491. ** calculate the Epoch-relative time that rule takes effect.
  492. */
  493. static time_t
  494. transtime(janfirst, year, rulep, offset)
  495. const time_t janfirst;
  496. const int year;
  497. register const struct rule * const rulep;
  498. const long offset;
  499. {
  500. register int leapyear;
  501. register time_t value = 0;
  502. register int i;
  503. int d, m1, yy0, yy1, yy2, dow;
  504. leapyear = isleap(year);
  505. switch (rulep->r_type) {
  506. case JULIAN_DAY:
  507. /*
  508. ** Jn - Julian day, 1 == January 1, 60 == March 1 even in leap
  509. ** years.
  510. ** In non-leap years, or if the day number is 59 or less, just
  511. ** add SECSPERDAY times the day number-1 to the time of
  512. ** January 1, midnight, to get the day.
  513. */
  514. value = janfirst + (rulep->r_day - 1) * SECSPERDAY;
  515. if (leapyear && rulep->r_day >= 60)
  516. value += SECSPERDAY;
  517. break;
  518. case DAY_OF_YEAR:
  519. /*
  520. ** n - day of year.
  521. ** Just add SECSPERDAY times the day number to the time of
  522. ** January 1, midnight, to get the day.
  523. */
  524. value = janfirst + rulep->r_day * SECSPERDAY;
  525. break;
  526. case MONTH_NTH_DAY_OF_WEEK:
  527. /*
  528. ** Mm.n.d - nth "dth day" of month m.
  529. */
  530. value = janfirst;
  531. for (i = 0; i < rulep->r_mon - 1; ++i)
  532. value += mon_lengths[leapyear][i] * SECSPERDAY;
  533. /*
  534. ** Use Zeller's Congruence to get day-of-week of first day of
  535. ** month.
  536. */
  537. m1 = (rulep->r_mon + 9) % 12 + 1;
  538. yy0 = (rulep->r_mon <= 2) ? (year - 1) : year;
  539. yy1 = yy0 / 100;
  540. yy2 = yy0 % 100;
  541. dow = ((26 * m1 - 2) / 10 +
  542. 1 + yy2 + yy2 / 4 + yy1 / 4 - 2 * yy1) % 7;
  543. if (dow < 0)
  544. dow += DAYSPERWEEK;
  545. /*
  546. ** "dow" is the day-of-week of the first day of the month. Get
  547. ** the day-of-month (zero-origin) of the first "dow" day of the
  548. ** month.
  549. */
  550. d = rulep->r_day - dow;
  551. if (d < 0)
  552. d += DAYSPERWEEK;
  553. for (i = 1; i < rulep->r_week; ++i) {
  554. if (d + DAYSPERWEEK >=
  555. mon_lengths[leapyear][rulep->r_mon - 1])
  556. break;
  557. d += DAYSPERWEEK;
  558. }
  559. /*
  560. ** "d" is the day-of-month (zero-origin) of the day we want.
  561. */
  562. value += d * SECSPERDAY;
  563. break;
  564. }
  565. /*
  566. ** "value" is the Epoch-relative time of 00:00:00 GMT on the day in
  567. ** question. To get the Epoch-relative time of the specified local
  568. ** time on that day, add the transition time and the current offset
  569. ** from GMT.
  570. */
  571. return value + rulep->r_time + offset;
  572. }
  573. /*
  574. ** Given a POSIX section 8-style TZ string, fill in the rule tables as
  575. ** appropriate.
  576. */
  577. static int
  578. tzparse(name, sp, lastditch)
  579. const char * name;
  580. register struct state * const sp;
  581. const int lastditch;
  582. {
  583. const char * stdname;
  584. const char * dstname = NULL;
  585. size_t stdlen = 0;
  586. size_t dstlen = 0;
  587. long stdoffset = 0L;
  588. long dstoffset = 0L;
  589. register time_t * atp;
  590. register unsigned char * typep;
  591. register char * cp;
  592. register int load_result;
  593. stdname = name;
  594. #ifdef DEBUG
  595. fprintf(stderr, "tzparse(): loading default rules\n");
  596. #endif
  597. load_result = tzload(TZDEFRULES, sp);
  598. if (load_result != 0)
  599. sp->leapcnt = 0; /* so, we're off a little */
  600. if (*name != '\0') {
  601. if (*name != '\0' && *name != ',' && *name != ';') {
  602. name = getoffset(name, &dstoffset);
  603. if (name == NULL)
  604. return -1;
  605. } else dstoffset = stdoffset - SECSPERHOUR;
  606. if (*name == ',' || *name == ';') {
  607. struct rule start;
  608. struct rule end;
  609. register int year;
  610. register time_t janfirst;
  611. time_t starttime;
  612. time_t endtime;
  613. ++name;
  614. if ((name = getrule(name, &start)) == NULL)
  615. return -1;
  616. if (*name++ != ',')
  617. return -1;
  618. if ((name = getrule(name, &end)) == NULL)
  619. return -1;
  620. if (*name != '\0')
  621. return -1;
  622. sp->typecnt = 2; /* standard time and DST */
  623. /*
  624. ** Two transitions per year, from EPOCH_YEAR to 2037.
  625. */
  626. sp->timecnt = 2 * (2037 - EPOCH_YEAR + 1);
  627. if (sp->timecnt > TZ_MAX_TIMES)
  628. return -1;
  629. sp->ttis[0].tt_gmtoff = -dstoffset;
  630. sp->ttis[0].tt_isdst = 1;
  631. sp->ttis[0].tt_abbrind = stdlen + 1;
  632. sp->ttis[1].tt_gmtoff = -stdoffset;
  633. sp->ttis[1].tt_isdst = 0;
  634. sp->ttis[1].tt_abbrind = 0;
  635. atp = sp->ats;
  636. typep = sp->types;
  637. janfirst = 0;
  638. for (year = EPOCH_YEAR; year <= 2037; ++year) {
  639. starttime = transtime(janfirst, year, &start,
  640. stdoffset);
  641. endtime = transtime(janfirst, year, &end,
  642. dstoffset);
  643. if (starttime > endtime) {
  644. *atp++ = endtime;
  645. *typep++ = 1; /* DST ends */
  646. *atp++ = starttime;
  647. *typep++ = 0; /* DST begins */
  648. } else {
  649. *atp++ = starttime;
  650. *typep++ = 0; /* DST begins */
  651. *atp++ = endtime;
  652. *typep++ = 1; /* DST ends */
  653. }
  654. janfirst += year_lengths[isleap(year)] *
  655. SECSPERDAY;
  656. }
  657. } else {
  658. register long theirstdoffset;
  659. register long theirdstoffset;
  660. register long theiroffset;
  661. register int isdst;
  662. register int i;
  663. register int j;
  664. if (*name != '\0')
  665. return -1;
  666. if (load_result != 0)
  667. return -1;
  668. /*
  669. ** Initial values of theirstdoffset and theirdstoffset.
  670. */
  671. theirstdoffset = 0;
  672. for (i = 0; i < sp->timecnt; ++i) {
  673. j = sp->types[i];
  674. if (!sp->ttis[j].tt_isdst) {
  675. theirstdoffset =
  676. -sp->ttis[j].tt_gmtoff;
  677. break;
  678. }
  679. }
  680. theirdstoffset = 0;
  681. for (i = 0; i < sp->timecnt; ++i) {
  682. j = sp->types[i];
  683. if (sp->ttis[j].tt_isdst) {
  684. theirdstoffset =
  685. -sp->ttis[j].tt_gmtoff;
  686. break;
  687. }
  688. }
  689. /*
  690. ** Initially we're assumed to be in standard time.
  691. */
  692. isdst = FALSE;
  693. theiroffset = theirstdoffset;
  694. /*
  695. ** Now juggle transition times and types
  696. ** tracking offsets as you do.
  697. */
  698. for (i = 0; i < sp->timecnt; ++i) {
  699. j = sp->types[i];
  700. sp->types[i] = sp->ttis[j].tt_isdst;
  701. if (sp->ttis[j].tt_ttisgmt) {
  702. /* No adjustment to transition time */
  703. } else {
  704. /*
  705. ** If summer time is in effect, and the
  706. ** transition time was not specified as
  707. ** standard time, add the summer time
  708. ** offset to the transition time;
  709. ** otherwise, add the standard time
  710. ** offset to the transition time.
  711. */
  712. /*
  713. ** Transitions from DST to DDST
  714. ** will effectively disappear since
  715. ** POSIX provides for only one DST
  716. ** offset.
  717. */
  718. if (isdst && !sp->ttis[j].tt_ttisstd) {
  719. sp->ats[i] += dstoffset -
  720. theirdstoffset;
  721. } else {
  722. sp->ats[i] += stdoffset -
  723. theirstdoffset;
  724. }
  725. }
  726. theiroffset = -sp->ttis[j].tt_gmtoff;
  727. if (sp->ttis[j].tt_isdst)
  728. theirdstoffset = theiroffset;
  729. else theirstdoffset = theiroffset;
  730. }
  731. /*
  732. ** Finally, fill in ttis.
  733. ** ttisstd and ttisgmt need not be handled.
  734. */
  735. sp->ttis[0].tt_gmtoff = -stdoffset;
  736. sp->ttis[0].tt_isdst = FALSE;
  737. sp->ttis[0].tt_abbrind = 0;
  738. sp->ttis[1].tt_gmtoff = -dstoffset;
  739. sp->ttis[1].tt_isdst = TRUE;
  740. sp->ttis[1].tt_abbrind = stdlen + 1;
  741. }
  742. } else {
  743. dstlen = 0;
  744. sp->typecnt = 1; /* only standard time */
  745. sp->timecnt = 0;
  746. sp->ttis[0].tt_gmtoff = -stdoffset;
  747. sp->ttis[0].tt_isdst = 0;
  748. sp->ttis[0].tt_abbrind = 0;
  749. }
  750. sp->charcnt = stdlen + 1;
  751. if (dstlen != 0)
  752. sp->charcnt += dstlen + 1;
  753. if (sp->charcnt > sizeof sp->chars)
  754. return -1;
  755. cp = sp->chars;
  756. (void) strncpy(cp, stdname, stdlen);
  757. cp += stdlen;
  758. *cp++ = '\0';
  759. if (dstlen != 0) {
  760. (void) strncpy(cp, dstname, dstlen);
  761. *(cp + dstlen) = '\0';
  762. }
  763. return 0;
  764. }
  765. static void
  766. gmtload(sp)
  767. struct state * const sp;
  768. {
  769. if (tzload(gmt, sp) != 0)
  770. (void) tzparse(gmt, sp, TRUE);
  771. }
  772. /*
  773. ** A non-static declaration of ast_tzsetwall in a system header file
  774. ** may cause a warning about this upcoming static declaration...
  775. */
  776. static
  777. #ifdef _THREAD_SAFE
  778. int
  779. ast_tzsetwall_basic P((void))
  780. #else
  781. int
  782. ast_tzsetwall P((void))
  783. #endif
  784. {
  785. struct state *cur_state = lclptr;
  786. /* Find the appropriate structure, if already parsed */
  787. while (cur_state != NULL) {
  788. if (cur_state->name[0] == '\0')
  789. break;
  790. cur_state = cur_state->next;
  791. }
  792. if (cur_state != NULL)
  793. return 0;
  794. cur_state = malloc(sizeof(struct state));
  795. if (cur_state == NULL) {
  796. return -1;
  797. }
  798. memset(cur_state,0,sizeof(struct state));
  799. if (tzload((char *) NULL, cur_state) != 0)
  800. #ifdef DEBUG
  801. {
  802. fprintf(stderr, "ast_tzsetwall: calling gmtload()\n");
  803. #endif
  804. gmtload(cur_state);
  805. #ifdef DEBUG
  806. }
  807. #endif
  808. if (last_lclptr)
  809. last_lclptr->next = cur_state;
  810. else
  811. lclptr = cur_state;
  812. last_lclptr = cur_state;
  813. return 0;
  814. }
  815. #ifdef _THREAD_SAFE
  816. int
  817. ast_tzsetwall P((void))
  818. {
  819. ast_mutex_lock(&tzsetwall_mutex);
  820. ast_tzsetwall_basic();
  821. ast_mutex_unlock(&tzsetwall_mutex);
  822. return 0;
  823. }
  824. #endif
  825. #ifdef _THREAD_SAFE
  826. static int
  827. ast_tzset_basic P((const char *name))
  828. #else
  829. int
  830. ast_tzset P((const char *name))
  831. #endif
  832. {
  833. struct state *cur_state = lclptr;
  834. /* Not set at all */
  835. if (name == NULL) {
  836. return ast_tzsetwall();
  837. }
  838. /* Find the appropriate structure, if already parsed */
  839. while (cur_state != NULL) {
  840. if (!strcmp(cur_state->name,name))
  841. break;
  842. cur_state = cur_state->next;
  843. }
  844. if (cur_state != NULL)
  845. return 0;
  846. cur_state = malloc(sizeof(struct state));
  847. if (cur_state == NULL) {
  848. return -1;
  849. }
  850. memset(cur_state,0,sizeof(*cur_state));
  851. /* Name is set, but set to the empty string == no adjustments */
  852. if (name[0] == '\0') {
  853. /*
  854. ** User wants it fast rather than right.
  855. */
  856. cur_state->leapcnt = 0; /* so, we're off a little */
  857. cur_state->timecnt = 0;
  858. cur_state->ttis[0].tt_gmtoff = 0;
  859. cur_state->ttis[0].tt_abbrind = 0;
  860. (void) strcpy(cur_state->chars, gmt);
  861. } else if (tzload(name, cur_state) != 0) {
  862. if (name[0] == ':') {
  863. (void) gmtload(cur_state);
  864. } else if (tzparse(name, cur_state, FALSE) != 0) {
  865. /* If not found, load localtime */
  866. if (tzload("/etc/localtime", cur_state) != 0)
  867. /* Last ditch, get GMT */
  868. (void) gmtload(cur_state);
  869. }
  870. }
  871. strncpy(cur_state->name,name,sizeof(cur_state->name));
  872. if (last_lclptr)
  873. last_lclptr->next = cur_state;
  874. else
  875. lclptr = cur_state;
  876. last_lclptr = cur_state;
  877. return 0;
  878. }
  879. #ifdef _THREAD_SAFE
  880. void
  881. ast_tzset P((const char *name))
  882. {
  883. ast_mutex_lock(&tzset_mutex);
  884. ast_tzset_basic(name);
  885. ast_mutex_unlock(&tzset_mutex);
  886. }
  887. #endif
  888. /*
  889. ** The easy way to behave "as if no library function calls" localtime
  890. ** is to not call it--so we drop its guts into "localsub", which can be
  891. ** freely called. (And no, the PANS doesn't require the above behavior--
  892. ** but it *is* desirable.)
  893. **
  894. ** The unused offset argument is for the benefit of mktime variants.
  895. */
  896. /*ARGSUSED*/
  897. static void
  898. localsub(timep, offset, tmp, zone)
  899. const time_t * const timep;
  900. const long offset;
  901. struct tm * const tmp;
  902. const char * const zone;
  903. {
  904. register struct state * sp;
  905. register const struct ttinfo * ttisp;
  906. register int i;
  907. const time_t t = *timep;
  908. sp = lclptr;
  909. /* Find the right zone record */
  910. if (zone == NULL)
  911. sp = NULL;
  912. else
  913. while (sp != NULL) {
  914. if (!strcmp(sp->name,zone))
  915. break;
  916. sp = sp->next;
  917. }
  918. if (sp == NULL) {
  919. ast_tzsetwall();
  920. sp = lclptr;
  921. /* Find the default zone record */
  922. while (sp != NULL) {
  923. if (sp->name[0] == '\0')
  924. break;
  925. sp = sp->next;
  926. }
  927. }
  928. /* Last ditch effort, use GMT */
  929. if (sp == NULL) {
  930. gmtsub(timep, offset, tmp, zone);
  931. return;
  932. }
  933. if (sp->timecnt == 0 || t < sp->ats[0]) {
  934. i = 0;
  935. while (sp->ttis[i].tt_isdst)
  936. if (++i >= sp->typecnt) {
  937. i = 0;
  938. break;
  939. }
  940. } else {
  941. for (i = 1; i < sp->timecnt; ++i)
  942. if (t < sp->ats[i])
  943. break;
  944. i = sp->types[i - 1];
  945. }
  946. ttisp = &sp->ttis[i];
  947. /*
  948. ** To get (wrong) behavior that's compatible with System V Release 2.0
  949. ** you'd replace the statement below with
  950. ** t += ttisp->tt_gmtoff;
  951. ** timesub(&t, 0L, sp, tmp);
  952. */
  953. timesub(&t, ttisp->tt_gmtoff, sp, tmp);
  954. tmp->tm_isdst = ttisp->tt_isdst;
  955. tzname[tmp->tm_isdst] = &sp->chars[ttisp->tt_abbrind];
  956. #ifdef TM_ZONE
  957. tmp->TM_ZONE = &sp->chars[ttisp->tt_abbrind];
  958. #endif /* defined TM_ZONE */
  959. }
  960. struct tm *
  961. ast_localtime(timep, p_tm, zone)
  962. const time_t * const timep;
  963. struct tm *p_tm;
  964. const char * const zone;
  965. {
  966. #ifdef _THREAD_SAFE
  967. ast_mutex_lock(&lcl_mutex);
  968. #endif
  969. ast_tzset(zone);
  970. localsub(timep, 0L, p_tm, zone);
  971. #ifdef _THREAD_SAFE
  972. ast_mutex_unlock(&lcl_mutex);
  973. #endif
  974. return(p_tm);
  975. }
  976. /*
  977. ** gmtsub is to gmtime as localsub is to localtime.
  978. */
  979. static void
  980. gmtsub(timep, offset, tmp, zone)
  981. const time_t * const timep;
  982. const long offset;
  983. struct tm * const tmp;
  984. const char * const zone;
  985. {
  986. #ifdef _THREAD_SAFE
  987. ast_mutex_lock(&gmt_mutex);
  988. #endif
  989. if (!gmt_is_set) {
  990. gmt_is_set = TRUE;
  991. gmtptr = (struct state *) malloc(sizeof *gmtptr);
  992. if (gmtptr != NULL)
  993. gmtload(gmtptr);
  994. }
  995. ast_mutex_unlock(&gmt_mutex);
  996. timesub(timep, offset, gmtptr, tmp);
  997. #ifdef TM_ZONE
  998. /*
  999. ** Could get fancy here and deliver something such as
  1000. ** "GMT+xxxx" or "GMT-xxxx" if offset is non-zero,
  1001. ** but this is no time for a treasure hunt.
  1002. */
  1003. if (offset != 0)
  1004. tmp->TM_ZONE = wildabbr;
  1005. else {
  1006. if (gmtptr == NULL)
  1007. tmp->TM_ZONE = gmt;
  1008. else tmp->TM_ZONE = gmtptr->chars;
  1009. }
  1010. #endif /* defined TM_ZONE */
  1011. }
  1012. static void
  1013. timesub(timep, offset, sp, tmp)
  1014. const time_t * const timep;
  1015. const long offset;
  1016. register const struct state * const sp;
  1017. register struct tm * const tmp;
  1018. {
  1019. register const struct lsinfo * lp;
  1020. register long days;
  1021. register long rem;
  1022. register int y;
  1023. register int yleap;
  1024. register const int * ip;
  1025. register long corr;
  1026. register int hit;
  1027. register int i;
  1028. corr = 0;
  1029. hit = 0;
  1030. i = (sp == NULL) ? 0 : sp->leapcnt;
  1031. while (--i >= 0) {
  1032. lp = &sp->lsis[i];
  1033. if (*timep >= lp->ls_trans) {
  1034. if (*timep == lp->ls_trans) {
  1035. hit = ((i == 0 && lp->ls_corr > 0) ||
  1036. lp->ls_corr > sp->lsis[i - 1].ls_corr);
  1037. if (hit)
  1038. while (i > 0 &&
  1039. sp->lsis[i].ls_trans ==
  1040. sp->lsis[i - 1].ls_trans + 1 &&
  1041. sp->lsis[i].ls_corr ==
  1042. sp->lsis[i - 1].ls_corr + 1) {
  1043. ++hit;
  1044. --i;
  1045. }
  1046. }
  1047. corr = lp->ls_corr;
  1048. break;
  1049. }
  1050. }
  1051. days = *timep / SECSPERDAY;
  1052. rem = *timep % SECSPERDAY;
  1053. #ifdef mc68k
  1054. if (*timep == 0x80000000) {
  1055. /*
  1056. ** A 3B1 muffs the division on the most negative number.
  1057. */
  1058. days = -24855;
  1059. rem = -11648;
  1060. }
  1061. #endif /* defined mc68k */
  1062. rem += (offset - corr);
  1063. while (rem < 0) {
  1064. rem += SECSPERDAY;
  1065. --days;
  1066. }
  1067. while (rem >= SECSPERDAY) {
  1068. rem -= SECSPERDAY;
  1069. ++days;
  1070. }
  1071. tmp->tm_hour = (int) (rem / SECSPERHOUR);
  1072. rem = rem % SECSPERHOUR;
  1073. tmp->tm_min = (int) (rem / SECSPERMIN);
  1074. /*
  1075. ** A positive leap second requires a special
  1076. ** representation. This uses "... ??:59:60" et seq.
  1077. */
  1078. tmp->tm_sec = (int) (rem % SECSPERMIN) + hit;
  1079. tmp->tm_wday = (int) ((EPOCH_WDAY + days) % DAYSPERWEEK);
  1080. if (tmp->tm_wday < 0)
  1081. tmp->tm_wday += DAYSPERWEEK;
  1082. y = EPOCH_YEAR;
  1083. #define LEAPS_THRU_END_OF(y) ((y) / 4 - (y) / 100 + (y) / 400)
  1084. while (days < 0 || days >= (long) year_lengths[yleap = isleap(y)]) {
  1085. register int newy;
  1086. newy = y + days / DAYSPERNYEAR;
  1087. if (days < 0)
  1088. --newy;
  1089. days -= (newy - y) * DAYSPERNYEAR +
  1090. LEAPS_THRU_END_OF(newy - 1) -
  1091. LEAPS_THRU_END_OF(y - 1);
  1092. y = newy;
  1093. }
  1094. tmp->tm_year = y - TM_YEAR_BASE;
  1095. tmp->tm_yday = (int) days;
  1096. ip = mon_lengths[yleap];
  1097. for (tmp->tm_mon = 0; days >= (long) ip[tmp->tm_mon]; ++(tmp->tm_mon))
  1098. days = days - (long) ip[tmp->tm_mon];
  1099. tmp->tm_mday = (int) (days + 1);
  1100. tmp->tm_isdst = 0;
  1101. #ifdef TM_GMTOFF
  1102. tmp->TM_GMTOFF = offset;
  1103. #endif /* defined TM_GMTOFF */
  1104. }
  1105. char *
  1106. ast_ctime(timep)
  1107. const time_t * const timep;
  1108. {
  1109. /*
  1110. ** Section 4.12.3.2 of X3.159-1989 requires that
  1111. ** The ctime funciton converts the calendar time pointed to by timer
  1112. ** to local time in the form of a string. It is equivalent to
  1113. ** asctime(localtime(timer))
  1114. */
  1115. return asctime(localtime(timep));
  1116. }
  1117. char *
  1118. ast_ctime_r(timep, buf)
  1119. const time_t * const timep;
  1120. char *buf;
  1121. {
  1122. struct tm tm;
  1123. return asctime_r(localtime_r(timep, &tm), buf);
  1124. }
  1125. /*
  1126. ** Adapted from code provided by Robert Elz, who writes:
  1127. ** The "best" way to do mktime I think is based on an idea of Bob
  1128. ** Kridle's (so its said...) from a long time ago.
  1129. ** [kridle@xinet.com as of 1996-01-16.]
  1130. ** It does a binary search of the time_t space. Since time_t's are
  1131. ** just 32 bits, its a max of 32 iterations (even at 64 bits it
  1132. ** would still be very reasonable).
  1133. */
  1134. #ifndef WRONG
  1135. #define WRONG (-1)
  1136. #endif /* !defined WRONG */
  1137. /*
  1138. ** Simplified normalize logic courtesy Paul Eggert (eggert@twinsun.com).
  1139. */
  1140. static int
  1141. increment_overflow(number, delta)
  1142. int * number;
  1143. int delta;
  1144. {
  1145. int number0;
  1146. number0 = *number;
  1147. *number += delta;
  1148. return (*number < number0) != (delta < 0);
  1149. }
  1150. static int
  1151. normalize_overflow(tensptr, unitsptr, base)
  1152. int * const tensptr;
  1153. int * const unitsptr;
  1154. const int base;
  1155. {
  1156. register int tensdelta;
  1157. tensdelta = (*unitsptr >= 0) ?
  1158. (*unitsptr / base) :
  1159. (-1 - (-1 - *unitsptr) / base);
  1160. *unitsptr -= tensdelta * base;
  1161. return increment_overflow(tensptr, tensdelta);
  1162. }
  1163. static int
  1164. tmcomp(atmp, btmp)
  1165. register const struct tm * const atmp;
  1166. register const struct tm * const btmp;
  1167. {
  1168. register int result;
  1169. if ((result = (atmp->tm_year - btmp->tm_year)) == 0 &&
  1170. (result = (atmp->tm_mon - btmp->tm_mon)) == 0 &&
  1171. (result = (atmp->tm_mday - btmp->tm_mday)) == 0 &&
  1172. (result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
  1173. (result = (atmp->tm_min - btmp->tm_min)) == 0)
  1174. result = atmp->tm_sec - btmp->tm_sec;
  1175. return result;
  1176. }
  1177. static time_t
  1178. time2(tmp, funcp, offset, okayp, zone)
  1179. struct tm * const tmp;
  1180. void (* const funcp) P((const time_t*, long, struct tm*, const char*));
  1181. const long offset;
  1182. int * const okayp;
  1183. const char * const zone;
  1184. {
  1185. register const struct state * sp;
  1186. register int dir;
  1187. register int bits;
  1188. register int i, j ;
  1189. register int saved_seconds;
  1190. time_t newt;
  1191. time_t t;
  1192. struct tm yourtm, mytm;
  1193. *okayp = FALSE;
  1194. yourtm = *tmp;
  1195. if (normalize_overflow(&yourtm.tm_hour, &yourtm.tm_min, MINSPERHOUR))
  1196. return WRONG;
  1197. if (normalize_overflow(&yourtm.tm_mday, &yourtm.tm_hour, HOURSPERDAY))
  1198. return WRONG;
  1199. if (normalize_overflow(&yourtm.tm_year, &yourtm.tm_mon, MONSPERYEAR))
  1200. return WRONG;
  1201. /*
  1202. ** Turn yourtm.tm_year into an actual year number for now.
  1203. ** It is converted back to an offset from TM_YEAR_BASE later.
  1204. */
  1205. if (increment_overflow(&yourtm.tm_year, TM_YEAR_BASE))
  1206. return WRONG;
  1207. while (yourtm.tm_mday <= 0) {
  1208. if (increment_overflow(&yourtm.tm_year, -1))
  1209. return WRONG;
  1210. i = yourtm.tm_year + (1 < yourtm.tm_mon);
  1211. yourtm.tm_mday += year_lengths[isleap(i)];
  1212. }
  1213. while (yourtm.tm_mday > DAYSPERLYEAR) {
  1214. i = yourtm.tm_year + (1 < yourtm.tm_mon);
  1215. yourtm.tm_mday -= year_lengths[isleap(i)];
  1216. if (increment_overflow(&yourtm.tm_year, 1))
  1217. return WRONG;
  1218. }
  1219. for ( ; ; ) {
  1220. i = mon_lengths[isleap(yourtm.tm_year)][yourtm.tm_mon];
  1221. if (yourtm.tm_mday <= i)
  1222. break;
  1223. yourtm.tm_mday -= i;
  1224. if (++yourtm.tm_mon >= MONSPERYEAR) {
  1225. yourtm.tm_mon = 0;
  1226. if (increment_overflow(&yourtm.tm_year, 1))
  1227. return WRONG;
  1228. }
  1229. }
  1230. if (increment_overflow(&yourtm.tm_year, -TM_YEAR_BASE))
  1231. return WRONG;
  1232. if (yourtm.tm_year + TM_YEAR_BASE < EPOCH_YEAR) {
  1233. /*
  1234. ** We can't set tm_sec to 0, because that might push the
  1235. ** time below the minimum representable time.
  1236. ** Set tm_sec to 59 instead.
  1237. ** This assumes that the minimum representable time is
  1238. ** not in the same minute that a leap second was deleted from,
  1239. ** which is a safer assumption than using 58 would be.
  1240. */
  1241. if (increment_overflow(&yourtm.tm_sec, 1 - SECSPERMIN))
  1242. return WRONG;
  1243. saved_seconds = yourtm.tm_sec;
  1244. yourtm.tm_sec = SECSPERMIN - 1;
  1245. } else {
  1246. saved_seconds = yourtm.tm_sec;
  1247. yourtm.tm_sec = 0;
  1248. }
  1249. /*
  1250. ** Divide the search space in half
  1251. ** (this works whether time_t is signed or unsigned).
  1252. */
  1253. bits = TYPE_BIT(time_t) - 1;
  1254. /*
  1255. ** If time_t is signed, then 0 is just above the median,
  1256. ** assuming two's complement arithmetic.
  1257. ** If time_t is unsigned, then (1 << bits) is just above the median.
  1258. */
  1259. t = TYPE_SIGNED(time_t) ? 0 : (((time_t) 1) << bits);
  1260. for ( ; ; ) {
  1261. (*funcp)(&t, offset, &mytm, zone);
  1262. dir = tmcomp(&mytm, &yourtm);
  1263. if (dir != 0) {
  1264. if (bits-- < 0)
  1265. return WRONG;
  1266. if (bits < 0)
  1267. --t; /* may be needed if new t is minimal */
  1268. else if (dir > 0)
  1269. t -= ((time_t) 1) << bits;
  1270. else t += ((time_t) 1) << bits;
  1271. continue;
  1272. }
  1273. if (yourtm.tm_isdst < 0 || mytm.tm_isdst == yourtm.tm_isdst)
  1274. break;
  1275. /*
  1276. ** Right time, wrong type.
  1277. ** Hunt for right time, right type.
  1278. ** It's okay to guess wrong since the guess
  1279. ** gets checked.
  1280. */
  1281. /*
  1282. ** The (void *) casts are the benefit of SunOS 3.3 on Sun 2's.
  1283. */
  1284. sp = (const struct state *)
  1285. (((void *) funcp == (void *) localsub) ?
  1286. lclptr : gmtptr);
  1287. if (sp == NULL)
  1288. return WRONG;
  1289. for (i = sp->typecnt - 1; i >= 0; --i) {
  1290. if (sp->ttis[i].tt_isdst != yourtm.tm_isdst)
  1291. continue;
  1292. for (j = sp->typecnt - 1; j >= 0; --j) {
  1293. if (sp->ttis[j].tt_isdst == yourtm.tm_isdst)
  1294. continue;
  1295. newt = t + sp->ttis[j].tt_gmtoff -
  1296. sp->ttis[i].tt_gmtoff;
  1297. (*funcp)(&newt, offset, &mytm, zone);
  1298. if (tmcomp(&mytm, &yourtm) != 0)
  1299. continue;
  1300. if (mytm.tm_isdst != yourtm.tm_isdst)
  1301. continue;
  1302. /*
  1303. ** We have a match.
  1304. */
  1305. t = newt;
  1306. goto label;
  1307. }
  1308. }
  1309. return WRONG;
  1310. }
  1311. label:
  1312. newt = t + saved_seconds;
  1313. if ((newt < t) != (saved_seconds < 0))
  1314. return WRONG;
  1315. t = newt;
  1316. (*funcp)(&t, offset, tmp, zone);
  1317. *okayp = TRUE;
  1318. return t;
  1319. }
  1320. static time_t
  1321. time1(tmp, funcp, offset, zone)
  1322. struct tm * const tmp;
  1323. void (* const funcp) P((const time_t *, long, struct tm *, const char*));
  1324. const long offset;
  1325. const char * const zone;
  1326. {
  1327. register time_t t;
  1328. register const struct state * sp;
  1329. register int samei, otheri;
  1330. int okay;
  1331. if (tmp->tm_isdst > 1)
  1332. tmp->tm_isdst = 1;
  1333. t = time2(tmp, funcp, offset, &okay, zone);
  1334. #ifdef PCTS
  1335. /*
  1336. ** PCTS code courtesy Grant Sullivan (grant@osf.org).
  1337. */
  1338. if (okay)
  1339. return t;
  1340. if (tmp->tm_isdst < 0)
  1341. tmp->tm_isdst = 0; /* reset to std and try again */
  1342. #endif /* defined PCTS */
  1343. #ifndef PCTS
  1344. if (okay || tmp->tm_isdst < 0)
  1345. return t;
  1346. #endif /* !defined PCTS */
  1347. /*
  1348. ** We're supposed to assume that somebody took a time of one type
  1349. ** and did some math on it that yielded a "struct tm" that's bad.
  1350. ** We try to divine the type they started from and adjust to the
  1351. ** type they need.
  1352. */
  1353. /*
  1354. ** The (void *) casts are the benefit of SunOS 3.3 on Sun 2's.
  1355. */
  1356. sp = (const struct state *) (((void *) funcp == (void *) localsub) ?
  1357. lclptr : gmtptr);
  1358. if (sp == NULL)
  1359. return WRONG;
  1360. for (samei = sp->typecnt - 1; samei >= 0; --samei) {
  1361. if (sp->ttis[samei].tt_isdst != tmp->tm_isdst)
  1362. continue;
  1363. for (otheri = sp->typecnt - 1; otheri >= 0; --otheri) {
  1364. if (sp->ttis[otheri].tt_isdst == tmp->tm_isdst)
  1365. continue;
  1366. tmp->tm_sec += sp->ttis[otheri].tt_gmtoff -
  1367. sp->ttis[samei].tt_gmtoff;
  1368. tmp->tm_isdst = !tmp->tm_isdst;
  1369. t = time2(tmp, funcp, offset, &okay, zone);
  1370. if (okay)
  1371. return t;
  1372. tmp->tm_sec -= sp->ttis[otheri].tt_gmtoff -
  1373. sp->ttis[samei].tt_gmtoff;
  1374. tmp->tm_isdst = !tmp->tm_isdst;
  1375. }
  1376. }
  1377. return WRONG;
  1378. }
  1379. time_t
  1380. ast_mktime(tmp,zone)
  1381. struct tm * const tmp;
  1382. const char * const zone;
  1383. {
  1384. time_t mktime_return_value;
  1385. #ifdef _THREAD_SAFE
  1386. ast_mutex_lock(&lcl_mutex);
  1387. #endif
  1388. ast_tzset(zone);
  1389. mktime_return_value = time1(tmp, localsub, 0L, zone);
  1390. #ifdef _THREAD_SAFE
  1391. ast_mutex_unlock(&lcl_mutex);
  1392. #endif
  1393. return(mktime_return_value);
  1394. }