time.c 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487
  1. /* Copyright (C) 2002-2004 Manuel Novoa III <mjn3@codepoet.org>
  2. *
  3. * GNU Library General Public License (LGPL) version 2 or later.
  4. *
  5. * Dedicated to Toni. See uClibc/DEDICATION.mjn3 for details.
  6. */
  7. /* June 15, 2002 Initial Notes:
  8. *
  9. * Note: It is assumed throught that time_t is either long or unsigned long.
  10. * Similarly, clock_t is assumed to be long int.
  11. *
  12. * Warning: Assumptions are made about the layout of struct tm! It is
  13. * assumed that the initial fields of struct tm are (in order):
  14. * tm_sec, tm_min, tm_hour, tm_mday, tm_mon, tm_year, tm_wday, tm_yday
  15. *
  16. * Reached the inital goal of supporting the ANSI/ISO C99 time functions
  17. * as well as SUSv3's strptime. All timezone info is obtained from the
  18. * TZ env variable.
  19. *
  20. * Differences from glibc worth noting:
  21. *
  22. * Leap seconds are not considered here.
  23. *
  24. * glibc stores additional timezone info the struct tm, whereas we don't.
  25. *
  26. * Alternate digits and era handling are not currently implemented.
  27. * The modifiers are accepted, and tested for validity with the following
  28. * specifier, but are ignored otherwise.
  29. *
  30. * strftime does not implement glibc extension modifiers or widths for
  31. * conversion specifiers. However it does implement the glibc
  32. * extension specifiers %l, %k, and %s. It also recognizes %P, but
  33. * treats it as a synonym for %p; i.e. doesn't convert to lower case.
  34. *
  35. * strptime implements the glibc extension specifiers. However, it follows
  36. * SUSv3 in requiring at least one non-alphanumeric char between
  37. * conversion specifiers. Also, strptime only sets struct tm fields
  38. * for which format specifiers appear and does not try to infer other
  39. * fields (such as wday) as glibc's version does.
  40. *
  41. * TODO - Since glibc's %l and %k can space-pad their output in strftime,
  42. * it might be reasonable to eat whitespace first for those specifiers.
  43. * This could be done by pushing " %I" and " %H" respectively so that
  44. * leading whitespace is consumed. This is really only an issue if %l
  45. * or %k occurs at the start of the format string.
  46. *
  47. * TODO - Implement getdate? tzfile? struct tm extensions?
  48. *
  49. * TODO - Rework _time_mktime to remove the dependency on long long.
  50. */
  51. /* Oct 28, 2002
  52. *
  53. * Fixed allowed char check for std and dst TZ fields.
  54. *
  55. * Added several options concerned with timezone support. The names will
  56. * probably change once Erik gets the new config system in place.
  57. *
  58. * Defining __TIME_TZ_FILE causes tzset() to attempt to read the TZ value
  59. * from the file /etc/TZ if the TZ env variable isn't set. The file contents
  60. * must be the intended value of TZ, followed by a newline. No other chars,
  61. * spacing, etc is allowed. As an example, an easy way for me to init
  62. * /etc/TZ appropriately would be: echo CST6CDT > /etc/TZ
  63. *
  64. * Defining __TIME_TZ_FILE_ONCE will cause all further accesses of /etc/TZ
  65. * to be skipped once a legal value has been read.
  66. *
  67. * Defining __TIME_TZ_OPT_SPEED will cause a tzset() to keep a copy of the
  68. * last TZ setting string and do a "fast out" if the current string is the
  69. * same.
  70. *
  71. * Nov 21, 2002 Fix an error return case in _time_mktime.
  72. *
  73. * Nov 26, 2002 Fix bug in setting daylight and timezone when no (valid) TZ.
  74. * Bug reported by Arne Bernin <arne@alamut.de> in regards to freeswan.
  75. *
  76. * July 27, 2003 Adjust the struct tm extension field support.
  77. * Change __tm_zone back to a ptr and add the __tm_tzname[] buffer for
  78. * __tm_zone to point to. This gets around complaints from g++.
  79. * Who knows... it might even fix the PPC timezone init problem.
  80. *
  81. * July 29, 2003 Fix a bug in mktime behavior when tm_isdst was -1.
  82. * Bug reported by "Sid Wade" <sid@vivato.net> in regards to busybox.
  83. *
  84. * NOTE: uClibc mktime behavior is different than glibc's when
  85. * the struct tm has tm_isdst == -1 and also had fields outside of
  86. * the normal ranges.
  87. *
  88. * Apparently, glibc examines (at least) tm_sec and guesses the app's
  89. * intention of assuming increasing or decreasing time when entering an
  90. * ambiguous time period at the dst<->st boundaries.
  91. *
  92. * The uClibc behavior is to always normalize the struct tm and then
  93. * try to determing the dst setting.
  94. *
  95. * As long as tm_isdst != -1 or the time specifiec by struct tm is
  96. * unambiguous (not falling in the dst<->st transition region) both
  97. * uClibc and glibc should produce the same result for mktime.
  98. *
  99. * Oct 31, 2003 Kill the seperate __tm_zone and __tm_tzname[] and which
  100. * doesn't work if you want the memcpy the struct. Sigh... I didn't
  101. * think about that. So now, when the extensions are enabled, we
  102. * malloc space when necessary and keep the timezone names in a linked
  103. * list.
  104. *
  105. * Fix a dst-related bug which resulted in use of uninitialized data.
  106. *
  107. * Nov 15, 2003 I forgot to update the thread locking in the last dst fix.
  108. *
  109. * Dec 14, 2003 Fix some dst issues in _time_mktime().
  110. * Normalize the tm_isdst value to -1, 0, or 1.
  111. * If no dst for this timezone, then reset tm_isdst to 0.
  112. *
  113. * May 7, 2004
  114. * Change clock() to allow wrapping.
  115. * Add timegm() function.
  116. * Make lookup_tzname() static (as it should have been).
  117. * Have strftime() get timezone information from the passed struct
  118. * for the %z and %Z conversions when using struct tm extensions.
  119. *
  120. * Jul 24, 2004
  121. * Fix 2 bugs in strftime related to glibc struct tm extensions.
  122. * 1) Need to negate tm_gmtoff field value when used. (bug 336).
  123. * 2) Deal with NULL ptr case for tm_zone field, which was causing
  124. * segfaults in both the NIST/PCTS tests and the Python 2.4.1
  125. * self-test suite.
  126. * NOTE: We set uninitialized timezone names to "???", and this
  127. * differs (intentionally) from glibc's behavior.
  128. */
  129. #include <stdio.h>
  130. #include <stdlib.h>
  131. #include <stddef.h>
  132. #include <string.h>
  133. #include <time.h>
  134. #include <sys/time.h>
  135. #include <limits.h>
  136. #include <assert.h>
  137. #include <errno.h>
  138. #include <ctype.h>
  139. #include <langinfo.h>
  140. #include <locale.h>
  141. #include <fcntl.h>
  142. #include <unistd.h>
  143. #include <bits/uClibc_uintmaxtostr.h>
  144. #include <bits/uClibc_mutex.h>
  145. #ifdef __UCLIBC_HAS_WCHAR__
  146. #include <wchar.h>
  147. #endif
  148. #ifdef __UCLIBC_HAS_XLOCALE__
  149. #include <xlocale.h>
  150. #endif
  151. #ifndef __isleap
  152. #define __isleap(y) ( !((y) % 4) && ( ((y) % 100) || !((y) % 400) ) )
  153. #endif
  154. #ifndef TZNAME_MAX
  155. #define TZNAME_MAX _POSIX_TZNAME_MAX
  156. #endif
  157. #if defined (L_tzset) || defined (L_localtime_r) || defined(L_strftime) || \
  158. defined(L__time_mktime) || defined(L__time_mktime_tzi) || \
  159. ((defined(L_strftime) || defined(L_strftime_l)) && \
  160. defined(__UCLIBC_HAS_XLOCALE__))
  161. void _time_tzset(int use_old_rules) attribute_hidden;
  162. #ifndef L__time_mktime
  163. /* Jan 1, 2007 Z - tm = 0,0,0,1,0,107,1,0,0 */
  164. static const time_t new_rule_starts = 1167609600;
  165. #endif
  166. #endif
  167. /**********************************************************************/
  168. /* The era code is currently unfinished. */
  169. /* #define ENABLE_ERA_CODE */
  170. #define TZ_BUFLEN (2*TZNAME_MAX + 56)
  171. #ifdef __UCLIBC_HAS_TZ_FILE__
  172. #include <sys/stat.h>
  173. #include "paths.h"
  174. /* ":<tzname>+hh:mm:ss<tzname>+hh:mm:ss,Mmm.w.d/hh:mm:ss,Mmm.w.d/hh:mm:ss" + nul */
  175. /* 1 + 2*(1+TZNAME_MAX+1 + 9 + 7 + 9) + 1 = 2*TZNAME_MAX + 56 */
  176. #else /* __UCLIBC_HAS_TZ_FILE__ */
  177. /* Probably no longer needed. */
  178. #undef __UCLIBC_HAS_TZ_FILE_READ_MANY__
  179. #endif /* __UCLIBC_HAS_TZ_FILE__ */
  180. /**********************************************************************/
  181. extern struct tm __time_tm attribute_hidden;
  182. typedef struct {
  183. long gmt_offset;
  184. long dst_offset;
  185. short day; /* for J or normal */
  186. short week;
  187. short month;
  188. short rule_type; /* J, M, \0 */
  189. char tzname[TZNAME_MAX+1];
  190. } rule_struct;
  191. __UCLIBC_MUTEX_EXTERN(_time_tzlock);
  192. extern rule_struct _time_tzinfo[2] attribute_hidden;
  193. extern struct tm *_time_t2tm(const time_t *__restrict timer,
  194. int offset, struct tm *__restrict result) attribute_hidden;
  195. extern time_t _time_mktime(struct tm *timeptr, int store_on_success) attribute_hidden;
  196. extern struct tm *__time_localtime_tzi(const time_t *__restrict timer,
  197. struct tm *__restrict result,
  198. rule_struct *tzi) attribute_hidden;
  199. extern time_t _time_mktime_tzi(struct tm *timeptr, int store_on_success,
  200. rule_struct *tzi) attribute_hidden;
  201. /**********************************************************************/
  202. #ifdef L_asctime
  203. static char __time_str[26];
  204. char *asctime(const struct tm *ptm)
  205. {
  206. return asctime_r(ptm, __time_str);
  207. }
  208. libc_hidden_def(asctime)
  209. #endif
  210. /**********************************************************************/
  211. #ifdef L_asctime_r
  212. /* Strictly speaking, this implementation isn't correct. ANSI/ISO specifies
  213. * that the implementation of asctime() be equivalent to
  214. *
  215. * char *asctime(const struct tm *timeptr)
  216. * {
  217. * static char wday_name[7][3] = {
  218. * "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
  219. * };
  220. * static char mon_name[12][3] = {
  221. * "Jan", "Feb", "Mar", "Apr", "May", "Jun",
  222. * "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
  223. * };
  224. * static char result[26];
  225. *
  226. * sprintf(result, "%.3s %.3s%3d %.2d:%.2d:%.2d %d\n",
  227. * wday_name[timeptr->tm_wday],
  228. * mon_name[timeptr->tm_mon],
  229. * timeptr->tm_mday, timeptr->tm_hour,
  230. * timeptr->tm_min, timeptr->tm_sec,
  231. * 1900 + timeptr->tm_year);
  232. * return result;
  233. * }
  234. *
  235. * but the above is either inherently unsafe, or carries with it the implicit
  236. * assumption that all fields of timeptr fall within their usual ranges, and
  237. * that the tm_year value falls in the range [-2899,8099] to avoid overflowing
  238. * the static buffer.
  239. *
  240. * If we take the implicit assumption as given, then the implementation below
  241. * is still incorrect for tm_year values < -900, as there will be either
  242. * 0-padding and/or a missing negative sign for the year conversion . But given
  243. * the usual use of asctime(), I think it isn't unreasonable to restrict correct
  244. * operation to the domain of years between 1000 and 9999.
  245. */
  246. /* This is generally a good thing, but if you're _sure_ any data passed will be
  247. * in range, you can #undef this. */
  248. #define SAFE_ASCTIME_R 1
  249. static const unsigned char at_data[] = {
  250. 'S', 'u', 'n', 'M', 'o', 'n', 'T', 'u', 'e', 'W', 'e', 'd',
  251. 'T', 'h', 'u', 'F', 'r', 'i', 'S', 'a', 't',
  252. 'J', 'a', 'n', 'F', 'e', 'b', 'M', 'a', 'r', 'A', 'p', 'r',
  253. 'M', 'a', 'y', 'J', 'u', 'n', 'J', 'u', 'l', 'A', 'u', 'g',
  254. 'S', 'e', 'p', 'O', 'c', 't', 'N', 'o', 'v', 'D', 'e', 'c',
  255. #ifdef SAFE_ASCTIME_R
  256. '?', '?', '?',
  257. #endif
  258. ' ', '?', '?', '?',
  259. ' ', '0',
  260. offsetof(struct tm, tm_mday),
  261. ' ', '0',
  262. offsetof(struct tm, tm_hour),
  263. ':', '0',
  264. offsetof(struct tm, tm_min),
  265. ':', '0',
  266. offsetof(struct tm, tm_sec),
  267. ' ', '?', '?', '?', '?', '\n', 0
  268. };
  269. char *asctime_r(register const struct tm *__restrict ptm,
  270. register char *__restrict buffer)
  271. {
  272. int tmp;
  273. assert(ptm);
  274. assert(buffer);
  275. #ifdef SAFE_ASCTIME_R
  276. memcpy(buffer, at_data + 3*(7 + 12), sizeof(at_data) - 3*(7 + 12));
  277. if (((unsigned int)(ptm->tm_wday)) <= 6) {
  278. memcpy(buffer, at_data + 3 * ptm->tm_wday, 3);
  279. }
  280. if (((unsigned int)(ptm->tm_mon)) <= 11) {
  281. memcpy(buffer + 4, at_data + 3*7 + 3 * ptm->tm_mon, 3);
  282. }
  283. #else
  284. assert(((unsigned int)(ptm->tm_wday)) <= 6);
  285. assert(((unsigned int)(ptm->tm_mon)) <= 11);
  286. memcpy(buffer, at_data + 3*(7 + 12) - 3, sizeof(at_data) + 3 - 3*(7 + 12));
  287. memcpy(buffer, at_data + 3 * ptm->tm_wday, 3);
  288. memcpy(buffer + 4, at_data + 3*7 + 3 * ptm->tm_mon, 3);
  289. #endif
  290. #ifdef SAFE_ASCTIME_R
  291. buffer += 19;
  292. tmp = ptm->tm_year + 1900;
  293. if (((unsigned int) tmp) < 10000) {
  294. buffer += 4;
  295. do {
  296. *buffer = '0' + (tmp % 10);
  297. tmp /= 10;
  298. } while (*--buffer == '?');
  299. }
  300. /* Not sure if we should even bother ...
  301. } else {
  302. __set_errno(EOVERFLOW);
  303. return NULL;
  304. }
  305. */
  306. #else /* SAFE_ASCTIME_R */
  307. buffer += 23;
  308. tmp = ptm->tm_year + 1900;
  309. assert( ((unsigned int) tmp) < 10000 );
  310. /* Not sure if we should even bother ...
  311. if ( ((unsigned int) tmp) >= 10000 ) {
  312. __set_errno(EOVERFLOW);
  313. return NULL;
  314. }
  315. */
  316. do {
  317. *buffer = '0' + (tmp % 10);
  318. tmp /= 10;
  319. } while (*--buffer == '?');
  320. #endif /* SAFE_ASCTIME_R */
  321. do {
  322. --buffer;
  323. tmp = *((int *)(((const char *) ptm) + (int) *buffer));
  324. #ifdef SAFE_ASCTIME_R
  325. if (((unsigned int) tmp) >= 100) { /* Just check 2 digit non-neg. */
  326. buffer[-1] = *buffer = '?';
  327. } else
  328. #else
  329. assert(((unsigned int) tmp) < 100); /* Just check 2 digit non-neg. */
  330. #endif
  331. {
  332. *buffer = '0' + (tmp % 10);
  333. #ifdef __BCC__
  334. buffer[-1] = '0' + (tmp/10);
  335. #else
  336. buffer[-1] += (tmp/10);
  337. #endif
  338. }
  339. } while ((buffer -= 2)[-2] == '0');
  340. if (*++buffer == '0') { /* Space-pad day of month. */
  341. *buffer = ' ';
  342. }
  343. return buffer - 8;
  344. }
  345. libc_hidden_def(asctime_r)
  346. #endif
  347. /**********************************************************************/
  348. #ifdef L_clock
  349. #include <sys/times.h>
  350. #ifndef __BCC__
  351. #if CLOCKS_PER_SEC != 1000000L
  352. #error unexpected value for CLOCKS_PER_SEC!
  353. #endif
  354. #endif
  355. #ifdef __UCLIBC_CLK_TCK_CONST
  356. # if __UCLIBC_CLK_TCK_CONST > CLOCKS_PER_SEC
  357. # error __UCLIBC_CLK_TCK_CONST > CLOCKS_PER_SEC!
  358. # elif __UCLIBC_CLK_TCK_CONST < 1
  359. # error __UCLIBC_CLK_TCK_CONST < 1!
  360. # endif
  361. #endif
  362. /* Note: SUSv3 notes
  363. *
  364. * On XSI-conformant systems, CLOCKS_PER_SEC is defined to be one million.
  365. *
  366. * The value returned by clock() may wrap around on some implementations.
  367. * For example, on a machine with 32-bit values for clock_t, it wraps
  368. * after 2147 seconds.
  369. *
  370. * This implies that we should bitwise and with LONG_MAX.
  371. */
  372. clock_t clock(void)
  373. {
  374. struct tms xtms;
  375. unsigned long t;
  376. times(&xtms);
  377. t = ((unsigned long) xtms.tms_utime) + xtms.tms_stime;
  378. #ifndef __UCLIBC_CLK_TCK_CONST
  379. # error __UCLIBC_CLK_TCK_CONST not defined!
  380. #elif ((CLOCKS_PER_SEC % __UCLIBC_CLK_TCK_CONST) == 0)
  381. /* CLOCKS_PER_SEC == k * __UCLIBC_CLK_TCK_CONST for some integer k >= 1. */
  382. return ((t * (CLOCKS_PER_SEC/__UCLIBC_CLK_TCK_CONST)) & LONG_MAX);
  383. #else
  384. /* Unlike the previous case, the scaling factor is not an integer.
  385. * So when tms_utime, tms_stime, or their sum wraps, some of the
  386. * "visible" bits in the return value are affected. Nothing we
  387. * can really do about this though other than handle tms_utime and
  388. * tms_stime seperately and then sum. But since that doesn't really
  389. * buy us much, we don't bother. */
  390. return ((((t / __UCLIBC_CLK_TCK_CONST) * CLOCKS_PER_SEC)
  391. + ((((t % __UCLIBC_CLK_TCK_CONST) * CLOCKS_PER_SEC)
  392. / __UCLIBC_CLK_TCK_CONST))
  393. ) & LONG_MAX);
  394. #endif
  395. }
  396. #endif
  397. /**********************************************************************/
  398. #ifdef L_ctime
  399. char *ctime(const time_t *t)
  400. {
  401. /* ANSI/ISO/SUSv3 say that ctime is equivalent to the following:
  402. * return asctime(localtime(t));
  403. * I don't think "equivalent" means "it uses the same internal buffer",
  404. * it means "gives the same resultant string".
  405. *
  406. * I doubt anyone ever uses weird code like:
  407. * struct tm *ptm = localtime(t1); ...; ctime(t2); use(ptm);
  408. * which relies on the assumption that ctime's and localtime's
  409. * internal static struct tm is the same.
  410. *
  411. * Using localtime_r instead of localtime avoids linking in
  412. * localtime's static buffer:
  413. */
  414. struct tm xtm;
  415. memset(&xtm, 0, sizeof(xtm));
  416. return asctime(localtime_r(t, &xtm));
  417. }
  418. libc_hidden_def(ctime)
  419. #endif
  420. /**********************************************************************/
  421. #ifdef L_ctime_r
  422. char *ctime_r(const time_t *t, char *buf)
  423. {
  424. struct tm xtm;
  425. return asctime_r(localtime_r(t, &xtm), buf);
  426. }
  427. #endif
  428. /**********************************************************************/
  429. #ifdef L_difftime
  430. #include <float.h>
  431. #if FLT_RADIX != 2
  432. #error difftime implementation assumptions violated for you arch!
  433. #endif
  434. double difftime(time_t time1, time_t time0)
  435. {
  436. #if (LONG_MAX >> DBL_MANT_DIG) == 0
  437. /* time_t fits in the mantissa of a double. */
  438. return (double)time1 - (double)time0;
  439. #elif ((LONG_MAX >> DBL_MANT_DIG) >> DBL_MANT_DIG) == 0
  440. /* time_t can overflow the mantissa of a double. */
  441. time_t t1, t0, d;
  442. d = ((time_t) 1) << DBL_MANT_DIG;
  443. t1 = time1 / d;
  444. time1 -= (t1 * d);
  445. t0 = time0 / d;
  446. time0 -= (t0*d);
  447. /* Since FLT_RADIX==2 and d is a power of 2, the only possible
  448. * rounding error in the expression below would occur from the
  449. * addition. */
  450. return (((double) t1) - t0) * d + (((double) time1) - time0);
  451. #else
  452. #error difftime needs special implementation on your arch.
  453. #endif
  454. }
  455. #endif
  456. /**********************************************************************/
  457. #ifdef L_gmtime
  458. struct tm *gmtime(const time_t *timer)
  459. {
  460. register struct tm *ptm = &__time_tm;
  461. _time_t2tm(timer, 0, ptm); /* Can return NULL... */
  462. return ptm;
  463. }
  464. #endif
  465. /**********************************************************************/
  466. #ifdef L_gmtime_r
  467. struct tm *gmtime_r(const time_t *__restrict timer,
  468. struct tm *__restrict result)
  469. {
  470. return _time_t2tm(timer, 0, result);
  471. }
  472. #endif
  473. /**********************************************************************/
  474. #ifdef L_localtime
  475. struct tm *localtime(const time_t *timer)
  476. {
  477. register struct tm *ptm = &__time_tm;
  478. /* In this implementation, tzset() is called by localtime_r(). */
  479. localtime_r(timer, ptm); /* Can return NULL... */
  480. return ptm;
  481. }
  482. libc_hidden_def(localtime)
  483. #endif
  484. /**********************************************************************/
  485. #ifdef L_localtime_r
  486. struct tm *localtime_r(register const time_t *__restrict timer,
  487. register struct tm *__restrict result)
  488. {
  489. __UCLIBC_MUTEX_LOCK(_time_tzlock);
  490. _time_tzset(*timer < new_rule_starts);
  491. __time_localtime_tzi(timer, result, _time_tzinfo);
  492. __UCLIBC_MUTEX_UNLOCK(_time_tzlock);
  493. return result;
  494. }
  495. libc_hidden_def(localtime_r)
  496. #endif
  497. /**********************************************************************/
  498. #ifdef L__time_localtime_tzi
  499. #ifdef __UCLIBC_HAS_TM_EXTENSIONS__
  500. struct ll_tzname_item;
  501. typedef struct ll_tzname_item {
  502. struct ll_tzname_item *next;
  503. char tzname[1];
  504. } ll_tzname_item_t;
  505. /* Structures form a list "UTC" -> "???" -> "tzname1" -> "tzname2"... */
  506. struct {
  507. struct ll_tzname_item *next;
  508. char tzname[4];
  509. } ll_tzname_UNKNOWN = { NULL, "???" };
  510. const struct {
  511. struct ll_tzname_item *next;
  512. char tzname[4];
  513. } ll_tzname_UTC = { (void*)&ll_tzname_UNKNOWN, "UTC" };
  514. static const char *lookup_tzname(const char *key)
  515. {
  516. int len;
  517. ll_tzname_item_t *p = (void*) &ll_tzname_UTC;
  518. do {
  519. if (strcmp(p->tzname, key) == 0)
  520. return p->tzname;
  521. p = p->next;
  522. } while (p != NULL);
  523. /* Hmm... a new name. */
  524. len = strnlen(key, TZNAME_MAX+1);
  525. if (len < TZNAME_MAX+1) { /* Verify legal length */
  526. p = malloc(sizeof(ll_tzname_item_t) + len);
  527. if (p != NULL) {
  528. /* Insert as 3rd item in the list. */
  529. p->next = ll_tzname_UNKNOWN.next;
  530. ll_tzname_UNKNOWN.next = p;
  531. return strcpy(p->tzname, key);
  532. }
  533. }
  534. /* Either invalid or couldn't alloc. */
  535. return ll_tzname_UNKNOWN.tzname;
  536. }
  537. #endif /* __UCLIBC_HAS_TM_EXTENSIONS__ */
  538. static const unsigned char day_cor[] = { /* non-leap */
  539. 31, 31, 34, 34, 35, 35, 36, 36, 36, 37, 37, 38, 38
  540. /* 0, 0, 3, 3, 4, 4, 5, 5, 5, 6, 6, 7, 7 */
  541. /* 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 */
  542. };
  543. /* Note: timezone locking is done by localtime_r. */
  544. static int tm_isdst(register const struct tm *__restrict ptm,
  545. register rule_struct *r)
  546. {
  547. long sec;
  548. int i, isdst, isleap, day, day0, monlen, mday;
  549. int oday = oday; /* ok to be uninitialized, shutting up compiler warning */
  550. isdst = 0;
  551. if (r[1].tzname[0] != 0) {
  552. /* First, get the current seconds offset from the start of the year.
  553. * Fields of ptm are assumed to be in their normal ranges. */
  554. sec = ptm->tm_sec
  555. + 60 * (ptm->tm_min
  556. + 60 * (long)(ptm->tm_hour
  557. + 24 * ptm->tm_yday));
  558. /* Do some prep work. */
  559. i = (ptm->tm_year % 400) + 1900; /* Make sure we don't overflow. */
  560. isleap = __isleap(i);
  561. --i;
  562. day0 = (1
  563. + i /* Normal years increment 1 wday. */
  564. + (i/4)
  565. - (i/100)
  566. + (i/400) ) % 7;
  567. i = 0;
  568. do {
  569. day = r->day; /* Common for 'J' and # case. */
  570. if (r->rule_type == 'J') {
  571. if (!isleap || (day < (31+29))) {
  572. --day;
  573. }
  574. } else if (r->rule_type == 'M') {
  575. /* Find 0-based day number for 1st of the month. */
  576. day = 31 * r->month - day_cor[r->month - 1];
  577. if (isleap && (day >= 59)) {
  578. ++day;
  579. }
  580. monlen = 31 + day_cor[r->month - 1] - day_cor[r->month];
  581. if (isleap && (r->month == 2)) {
  582. ++monlen;
  583. }
  584. /* Weekday (0 is Sunday) of 1st of the month
  585. * is (day0 + day) % 7. */
  586. mday = r->day - ((day0 + day) % 7);
  587. if (mday >= 0) {
  588. mday -= 7; /* Back up into prev month since r->week > 0. */
  589. }
  590. mday += 7 * r->week;
  591. if (mday >= monlen) {
  592. mday -= 7;
  593. }
  594. /* So, 0-based day number is... */
  595. day += mday;
  596. }
  597. if (i != 0) {
  598. /* Adjust sec since dst->std change time is in dst. */
  599. sec += (r[-1].gmt_offset - r->gmt_offset);
  600. if (oday > day) {
  601. ++isdst; /* Year starts in dst. */
  602. }
  603. }
  604. oday = day;
  605. /* Now convert day to seconds and add offset and compare. */
  606. if (sec >= (day * 86400L) + r->dst_offset) {
  607. ++isdst;
  608. }
  609. ++r;
  610. } while (++i < 2);
  611. }
  612. return (isdst & 1);
  613. }
  614. struct tm attribute_hidden *__time_localtime_tzi(register const time_t *__restrict timer,
  615. register struct tm *__restrict result,
  616. rule_struct *tzi)
  617. {
  618. time_t x[1];
  619. long offset;
  620. int days, dst;
  621. dst = 0;
  622. do {
  623. days = -7;
  624. offset = 604800L - tzi[dst].gmt_offset;
  625. if (*timer > (LONG_MAX - 604800L)) {
  626. days = -days;
  627. offset = -offset;
  628. }
  629. *x = *timer + offset;
  630. _time_t2tm(x, days, result);
  631. result->tm_isdst = dst;
  632. #ifdef __UCLIBC_HAS_TM_EXTENSIONS__
  633. # ifdef __USE_BSD
  634. result->tm_gmtoff = - tzi[dst].gmt_offset;
  635. result->tm_zone = lookup_tzname(tzi[dst].tzname);
  636. # else
  637. result->__tm_gmtoff = - tzi[dst].gmt_offset;
  638. result->__tm_zone = lookup_tzname(tzi[dst].tzname);
  639. # endif
  640. #endif /* __UCLIBC_HAS_TM_EXTENSIONS__ */
  641. } while ((++dst < 2)
  642. && ((result->tm_isdst = tm_isdst(result, tzi)) != 0));
  643. return result;
  644. }
  645. #endif
  646. /**********************************************************************/
  647. #ifdef L_mktime
  648. time_t mktime(struct tm *timeptr)
  649. {
  650. return _time_mktime(timeptr, 1);
  651. }
  652. /* Another name for `mktime'. */
  653. /* time_t timelocal(struct tm *tp) */
  654. strong_alias(mktime,timelocal)
  655. #endif
  656. /**********************************************************************/
  657. #ifdef L_timegm
  658. /* Like `mktime' but timeptr represents Universal Time, not local time. */
  659. time_t timegm(struct tm *timeptr)
  660. {
  661. rule_struct gmt_tzinfo[2];
  662. memset(gmt_tzinfo, 0, sizeof(gmt_tzinfo));
  663. strcpy(gmt_tzinfo[0].tzname, "GMT"); /* Match glibc behavior here. */
  664. return _time_mktime_tzi(timeptr, 1, gmt_tzinfo);
  665. }
  666. #endif
  667. /**********************************************************************/
  668. #if defined(L_strftime) || defined(L_strftime_l)
  669. #if defined(__UCLIBC_HAS_XLOCALE__) && !defined(__UCLIBC_DO_XLOCALE)
  670. size_t strftime(char *__restrict s, size_t maxsize,
  671. const char *__restrict format,
  672. const struct tm *__restrict timeptr)
  673. {
  674. return strftime_l(s, maxsize, format, timeptr, __UCLIBC_CURLOCALE);
  675. }
  676. #else /* defined(__UCLIBC_HAS_XLOCALE__) && !defined(__UCLIBC_DO_XLOCALE) */
  677. #define NO_E_MOD 0x80
  678. #define NO_O_MOD 0x40
  679. #define ILLEGAL_SPEC 0x3f
  680. #define INT_SPEC 0x00 /* must be 0x00!! */
  681. #define STRING_SPEC 0x10 /* must be 0x10!! */
  682. #define CALC_SPEC 0x20
  683. #define STACKED_SPEC 0x30
  684. #define MASK_SPEC 0x30
  685. /* Compatibility:
  686. *
  687. * No alternate digit (%O?) handling. Always uses 0-9.
  688. * Alternate locale format (%E?) handling is broken for nontrivial ERAs.
  689. * glibc's %P is currently faked by %p. This means it doesn't do lower case.
  690. * glibc's %k, %l, and %s are handled.
  691. * glibc apparently allows (and ignores) extraneous 'E' and 'O' modifiers,
  692. * while they are flagged as illegal conversions here.
  693. */
  694. /* Warning: Assumes ASCII values! (as do lots of other things in the lib...) */
  695. static const unsigned char spec[] = {
  696. /* A */ 0x03 | STRING_SPEC | NO_E_MOD | NO_O_MOD,
  697. /* B */ 0x04 | STRING_SPEC | NO_E_MOD | NO_O_MOD,
  698. /* C */ 0x0a | INT_SPEC | NO_O_MOD,
  699. /* D */ 0x02 | STACKED_SPEC | NO_E_MOD | NO_O_MOD,
  700. /* E */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  701. /* F */ 0x03 | STACKED_SPEC | NO_E_MOD | NO_O_MOD,
  702. /* G */ 0x03 | CALC_SPEC | NO_E_MOD | NO_O_MOD,
  703. /* H */ 0x0b | INT_SPEC | NO_E_MOD,
  704. /* I */ 0x0c | INT_SPEC | NO_E_MOD,
  705. /* J */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  706. /* K */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  707. /* L */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  708. /* M */ 0x0d | INT_SPEC | NO_E_MOD,
  709. /* N */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  710. /* O */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  711. /* P */ 0x05 | STRING_SPEC | NO_E_MOD | NO_O_MOD, /* glibc ; use %p */
  712. /* Q */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  713. /* R */ 0x04 | STACKED_SPEC | NO_E_MOD | NO_O_MOD,
  714. /* S */ 0x0e | INT_SPEC | NO_E_MOD,
  715. /* T */ 0x05 | STACKED_SPEC | NO_E_MOD | NO_O_MOD,
  716. /* U */ 0x04 | CALC_SPEC | NO_E_MOD,
  717. /* V */ 0x05 | CALC_SPEC | NO_E_MOD,
  718. /* W */ 0x06 | CALC_SPEC | NO_E_MOD,
  719. /* X */ 0x0a | STACKED_SPEC | NO_O_MOD,
  720. /* Y */ 0x0f | INT_SPEC | NO_O_MOD,
  721. /* Z */ 0x01 | CALC_SPEC | NO_E_MOD | NO_O_MOD,
  722. '?', /* 26 */
  723. '?', /* 27 */
  724. '?', /* 28 */
  725. '?', /* 29 */
  726. 0, /* 30 */
  727. 0, /* 31 */
  728. /* a */ 0x00 | STRING_SPEC | NO_E_MOD | NO_O_MOD,
  729. /* b */ 0x01 | STRING_SPEC | NO_E_MOD | NO_O_MOD,
  730. /* c */ 0x08 | STACKED_SPEC | NO_O_MOD,
  731. /* d */ 0x00 | INT_SPEC | NO_E_MOD,
  732. /* e */ 0x01 | INT_SPEC | NO_E_MOD,
  733. /* f */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  734. /* g */ 0x02 | CALC_SPEC | NO_E_MOD | NO_O_MOD,
  735. /* h */ 0x01 | STRING_SPEC | NO_E_MOD | NO_O_MOD, /* same as b */
  736. /* i */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  737. /* j */ 0x08 | INT_SPEC | NO_E_MOD | NO_O_MOD,
  738. /* k */ 0x03 | INT_SPEC | NO_E_MOD | NO_O_MOD, /* glibc */
  739. /* l */ 0x04 | INT_SPEC | NO_E_MOD | NO_O_MOD, /* glibc */
  740. /* m */ 0x05 | INT_SPEC | NO_E_MOD,
  741. /* n */ 0x00 | STACKED_SPEC | NO_E_MOD | NO_O_MOD,
  742. /* o */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  743. /* p */ 0x02 | STRING_SPEC | NO_E_MOD | NO_O_MOD,
  744. /* q */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  745. /* r */ 0x0b | STACKED_SPEC | NO_E_MOD | NO_O_MOD,
  746. /* s */ 0x07 | CALC_SPEC | NO_E_MOD | NO_O_MOD, /* glibc */
  747. /* t */ 0x01 | STACKED_SPEC | NO_E_MOD | NO_O_MOD,
  748. /* u */ 0x07 | INT_SPEC | NO_E_MOD,
  749. /* v */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  750. /* w */ 0x02 | INT_SPEC | NO_E_MOD,
  751. /* x */ 0x09 | STACKED_SPEC | NO_O_MOD,
  752. /* y */ 0x09 | INT_SPEC,
  753. /* z */ 0x00 | CALC_SPEC | NO_E_MOD | NO_O_MOD,
  754. /* WARNING!!! These are dependent on the layout of struct tm!!! */
  755. #define FIELD_MAX (26+6+26)
  756. 60 /* 61? */, 59, 23, 31, 11, 0 /* 9999 */, 6, 0 /* 365 */,
  757. #define TP_OFFSETS (FIELD_MAX+8)
  758. 3, /* d */
  759. 3, /* e */
  760. 6, /* w */
  761. 2, /* k */
  762. 2, /* l */
  763. 4, /* m */
  764. 0, /* CURRENTLY UNUSED */
  765. /* NOTE: u,j,y order must be preserved as 6,7,5 seq is used in the code! */
  766. #define CALC_OFFSETS (TP_OFFSETS + 7)
  767. 6, /* u */
  768. 7, /* j */
  769. 5, /* y */
  770. 5, /* C */
  771. 2, /* H */
  772. 2, /* I */
  773. 1, /* M */
  774. 0, /* S */
  775. 5, /* Y */
  776. 6, /* a */
  777. 4, /* b, h */
  778. 2, /* p */
  779. 6, /* A */
  780. 4, /* B */
  781. 2, /* P */
  782. #define TP_CODES (TP_OFFSETS + 16 + 6)
  783. 2 | 16, /* d */
  784. 2, /* e */
  785. 0 | 16, /* w */
  786. 2, /* k */
  787. 2 | 32 | 0, /* l */
  788. 2 | 16 | 1, /* m */
  789. 0, /* CURRENTLY UNUSED */
  790. 0 | 16 | 8 , /* u */
  791. 4 | 16 | 1, /* j */
  792. 2 | 128 | 32 | 16 , /* y */
  793. 2 | 128 | 64 | 32 | 16 , /* C */
  794. 2 | 16, /* H */
  795. 2 | 32 | 16 | 0, /* I */
  796. 2 | 16, /* M */
  797. 2 | 16, /* S */
  798. 6 | 16, /* Y */
  799. 2, /* a */
  800. 2, /* b, h */
  801. 2 | 64, /* p */
  802. 2, /* A */
  803. 2, /* B */
  804. 2 | 64, /* P */
  805. #define STRINGS_NL_ITEM_START (TP_CODES + 16 + 6)
  806. _NL_ITEM_INDEX(ABDAY_1), /* a */
  807. _NL_ITEM_INDEX(ABMON_1), /* b, h */
  808. _NL_ITEM_INDEX(AM_STR), /* p */
  809. _NL_ITEM_INDEX(DAY_1), /* A */
  810. _NL_ITEM_INDEX(MON_1), /* B */
  811. _NL_ITEM_INDEX(AM_STR), /* P -- wrong! need lower case */
  812. #define STACKED_STRINGS_START (STRINGS_NL_ITEM_START+6)
  813. 6, 7, 8, 16, 24, 29, /* 6 - offsets from offset-count to strings */
  814. '\n', 0, /* 2 */
  815. '\t', 0, /* 2 */
  816. '%', 'm', '/', '%', 'd', '/', '%', 'y', 0, /* 9 - %D */
  817. '%', 'Y', '-', '%', 'm', '-', '%', 'd', 0, /* 9 - %F (glibc extension) */
  818. '%', 'H', ':', '%', 'M', 0, /* 6 - %R*/
  819. '%', 'H', ':', '%', 'M', ':', '%', 'S', 0, /* 9 - %T */
  820. #define STACKED_STRINGS_NL_ITEM_START (STACKED_STRINGS_START + 43)
  821. _NL_ITEM_INDEX(D_T_FMT), /* c */
  822. _NL_ITEM_INDEX(D_FMT), /* x */
  823. _NL_ITEM_INDEX(T_FMT), /* X */
  824. _NL_ITEM_INDEX(T_FMT_AMPM), /* r */
  825. #ifdef ENABLE_ERA_CODE
  826. _NL_ITEM_INDEX(ERA_D_T_FMT), /* Ec */
  827. _NL_ITEM_INDEX(ERA_D_FMT), /* Ex */
  828. _NL_ITEM_INDEX(ERA_T_FMT), /* EX */
  829. #endif
  830. };
  831. static int load_field(int k, const struct tm *__restrict timeptr)
  832. {
  833. int r;
  834. int r_max;
  835. r = ((int *) timeptr)[k];
  836. r_max = spec[FIELD_MAX + k];
  837. if (k == 7) {
  838. r_max = 365;
  839. } else if (k == 5) {
  840. r += 1900;
  841. r_max = 9999;
  842. }
  843. if ((((unsigned int) r) > r_max) || ((k == 3) && !r)) {
  844. r = -1;
  845. }
  846. return r;
  847. }
  848. #define MAX_PUSH 4
  849. #ifdef __UCLIBC_MJN3_ONLY__
  850. #warning TODO: Check multibyte format string validity.
  851. #endif
  852. size_t __XL_NPP(strftime)(char *__restrict s, size_t maxsize,
  853. const char *__restrict format,
  854. const struct tm *__restrict timeptr __LOCALE_PARAM )
  855. {
  856. long tzo;
  857. register const char *p;
  858. register const char *o;
  859. #ifndef __UCLIBC_HAS_TM_EXTENSIONS__
  860. const rule_struct *rsp;
  861. #endif
  862. const char *stack[MAX_PUSH];
  863. size_t count;
  864. size_t o_count;
  865. int field_val = 0, i = 0, j, lvl;
  866. int x[3]; /* wday, yday, year */
  867. int isofm, days;
  868. char buf[__UIM_BUFLEN_LONG];
  869. unsigned char mod;
  870. unsigned char code;
  871. /* We'll, let's get this out of the way. */
  872. _time_tzset(_time_mktime((struct tm *) timeptr, 0) < new_rule_starts);
  873. lvl = 0;
  874. p = format;
  875. count = maxsize;
  876. LOOP:
  877. if (!count) {
  878. return 0;
  879. }
  880. if (!*p) {
  881. if (lvl == 0) {
  882. *s = 0; /* nul-terminate */
  883. return maxsize - count;
  884. }
  885. p = stack[--lvl];
  886. goto LOOP;
  887. }
  888. o_count = 1;
  889. if ((*(o = p) == '%') && (*++p != '%')) {
  890. o_count = 2;
  891. mod = ILLEGAL_SPEC;
  892. if ((*p == 'O') || (*p == 'E')) { /* modifier */
  893. mod |= ((*p == 'O') ? NO_O_MOD : NO_E_MOD);
  894. ++o_count;
  895. ++p;
  896. }
  897. if ((((unsigned char)(((*p) | 0x20) - 'a')) >= 26)
  898. || (((code = spec[(int)(*p - 'A')]) & mod) >= ILLEGAL_SPEC)
  899. ) {
  900. if (!*p) {
  901. --p;
  902. --o_count;
  903. }
  904. goto OUTPUT;
  905. }
  906. code &= ILLEGAL_SPEC; /* modifiers are preserved in mod var. */
  907. if ((code & MASK_SPEC) == STACKED_SPEC) {
  908. if (lvl == MAX_PUSH) {
  909. goto OUTPUT; /* Stack full so treat as illegal spec. */
  910. }
  911. stack[lvl++] = ++p;
  912. if ((code &= 0xf) < 8) {
  913. p = ((const char *) spec) + STACKED_STRINGS_START + code;
  914. p += *((unsigned char *)p);
  915. goto LOOP;
  916. }
  917. p = ((const char *) spec) + STACKED_STRINGS_NL_ITEM_START
  918. + (code & 7);
  919. #ifdef ENABLE_ERA_CODE
  920. if ((mod & NO_E_MOD) /* Actually, this means E modifier present. */
  921. && (*(o = __XL_NPP(nl_langinfo)(_NL_ITEM(LC_TIME,
  922. (int)(((unsigned char *)p)[4]))
  923. __LOCALE_ARG
  924. )))
  925. ) {
  926. p = o;
  927. goto LOOP;
  928. }
  929. #endif
  930. p = __XL_NPP(nl_langinfo)(_NL_ITEM(LC_TIME,
  931. (int)(*((unsigned char *)p)))
  932. __LOCALE_ARG
  933. );
  934. goto LOOP;
  935. }
  936. o = ((const char *) spec) + 26; /* set to "????" */
  937. if ((code & MASK_SPEC) == CALC_SPEC) {
  938. if (*p == 's') {
  939. time_t t;
  940. /* Use a cast to silence the warning since *timeptr won't
  941. * be changed. */
  942. if ((t = _time_mktime((struct tm *) timeptr, 0))
  943. == ((time_t) -1)
  944. ) {
  945. o_count = 1;
  946. goto OUTPUT;
  947. }
  948. #ifdef TIME_T_IS_UNSIGNED
  949. o = _uintmaxtostr(buf + sizeof(buf) - 1,
  950. (uintmax_t) t,
  951. 10, __UIM_DECIMAL);
  952. #else
  953. o = _uintmaxtostr(buf + sizeof(buf) - 1,
  954. (uintmax_t) t,
  955. -10, __UIM_DECIMAL);
  956. #endif
  957. o_count = sizeof(buf);
  958. goto OUTPUT;
  959. } else if (((*p) | 0x20) == 'z') { /* 'z' or 'Z' */
  960. if (timeptr->tm_isdst < 0) {
  961. /* SUSv3 specifies this behavior for 'z', but we'll also
  962. * treat it as "no timezone info" for 'Z' too. */
  963. o_count = 0;
  964. goto OUTPUT;
  965. }
  966. #ifdef __UCLIBC_HAS_TM_EXTENSIONS__
  967. # ifdef __USE_BSD
  968. # define RSP_TZNAME timeptr->tm_zone
  969. # define RSP_GMT_OFFSET (-timeptr->tm_gmtoff)
  970. # else
  971. # define RSP_TZNAME timeptr->__tm_zone
  972. # define RSP_GMT_OFFSET (-timeptr->__tm_gmtoff)
  973. # endif
  974. #else
  975. #define RSP_TZNAME rsp->tzname
  976. #define RSP_GMT_OFFSET rsp->gmt_offset
  977. __UCLIBC_MUTEX_LOCK(_time_tzlock);
  978. rsp = _time_tzinfo;
  979. if (timeptr->tm_isdst > 0) {
  980. ++rsp;
  981. }
  982. #endif
  983. if (*p == 'Z') {
  984. o = RSP_TZNAME;
  985. #ifdef __UCLIBC_HAS_TM_EXTENSIONS__
  986. /* Sigh... blasted glibc extensions. Of course we can't
  987. * count on the pointer being valid. Best we can do is
  988. * handle NULL, which looks to be all that glibc does.
  989. * At least that catches the memset() with 0 case.
  990. * NOTE: We handle this case differently than glibc!
  991. * It uses system timezone name (based on tm_isdst) in this
  992. * case... although it always seems to use the embedded
  993. * tm_gmtoff value. What we'll do instead is treat the
  994. * timezone name as unknown/invalid and return "???". */
  995. if (!o) {
  996. o = "???";
  997. }
  998. #endif
  999. assert(o != NULL);
  1000. #if 0
  1001. if (!o) { /* PARANOIA */
  1002. o = spec+30; /* empty string */
  1003. }
  1004. #endif
  1005. o_count = SIZE_MAX;
  1006. #ifdef __UCLIBC_HAS_TM_EXTENSIONS__
  1007. goto OUTPUT;
  1008. #endif
  1009. } else { /* z */
  1010. *s = '+';
  1011. if ((tzo = -RSP_GMT_OFFSET) < 0) {
  1012. tzo = -tzo;
  1013. *s = '-';
  1014. }
  1015. ++s;
  1016. --count;
  1017. i = tzo / 60;
  1018. field_val = ((i / 60) * 100) + (i % 60);
  1019. i = 16 + 6; /* 0-fill, width = 4 */
  1020. }
  1021. #ifndef __UCLIBC_HAS_TM_EXTENSIONS__
  1022. __UCLIBC_MUTEX_UNLOCK(_time_tzlock);
  1023. if (*p == 'Z') {
  1024. goto OUTPUT;
  1025. }
  1026. #endif
  1027. } else {
  1028. /* TODO: don't need year for U, W */
  1029. for (i=0 ; i < 3 ; i++) {
  1030. if ((x[i] = load_field(spec[CALC_OFFSETS+i],timeptr)) < 0) {
  1031. goto OUTPUT;
  1032. }
  1033. }
  1034. i = 16 + 2; /* 0-fill, width = 2 */
  1035. if ((*p == 'U') || (*p == 'W')) {
  1036. field_val = ((x[1] - x[0]) + 7);
  1037. if (*p == 'W') {
  1038. ++field_val;
  1039. }
  1040. field_val /= 7;
  1041. if ((*p == 'W') && !x[0]) {
  1042. --field_val;
  1043. }
  1044. } else { /* ((*p == 'g') || (*p == 'G') || (*p == 'V')) */
  1045. ISO_LOOP:
  1046. isofm = (((x[1] - x[0]) + 11) % 7) - 3; /* [-3,3] */
  1047. if (x[1] < isofm) { /* belongs to previous year */
  1048. --x[2];
  1049. x[1] += 365 + __isleap(x[2]);
  1050. goto ISO_LOOP;
  1051. }
  1052. field_val = ((x[1] - isofm) / 7) + 1; /* week # */
  1053. days = 365 + __isleap(x[2]);
  1054. isofm = ((isofm + 7*53 + 3 - days)) % 7 + days - 3; /* next year */
  1055. if (x[1] >= isofm) { /* next year */
  1056. x[1] -= days;
  1057. ++x[2];
  1058. goto ISO_LOOP;
  1059. }
  1060. if (*p != 'V') { /* need year */
  1061. field_val = x[2]; /* TODO: what if x[2] now 10000 ?? */
  1062. if (*p == 'g') {
  1063. field_val %= 100;
  1064. } else {
  1065. i = 16 + 6; /* 0-fill, width = 4 */
  1066. }
  1067. }
  1068. }
  1069. }
  1070. } else {
  1071. i = TP_OFFSETS + (code & 0x1f);
  1072. if ((field_val = load_field(spec[i], timeptr)) < 0) {
  1073. goto OUTPUT;
  1074. }
  1075. i = spec[i+(TP_CODES - TP_OFFSETS)];
  1076. j = (i & 128) ? 100: 12;
  1077. if (i & 64) {
  1078. field_val /= j;;
  1079. }
  1080. if (i & 32) {
  1081. field_val %= j;
  1082. if (((i & 128) + field_val) == 0) { /* mod 12? == 0 */
  1083. field_val = j; /* set to 12 */
  1084. }
  1085. }
  1086. field_val += (i & 1);
  1087. if ((i & 8) && !field_val) {
  1088. field_val += 7;
  1089. }
  1090. }
  1091. if ((code & MASK_SPEC) == STRING_SPEC) {
  1092. o_count = SIZE_MAX;
  1093. field_val += spec[STRINGS_NL_ITEM_START + (code & 0xf)];
  1094. o = __XL_NPP(nl_langinfo)(_NL_ITEM(LC_TIME, field_val) __LOCALE_ARG);
  1095. } else {
  1096. o_count = ((i >> 1) & 3) + 1;
  1097. o = buf + o_count;
  1098. do {
  1099. *(char *)(--o) = '0' + (field_val % 10);
  1100. field_val /= 10;
  1101. } while (o > buf);
  1102. if (*buf == '0') {
  1103. *buf = ' ' + (i & 16);
  1104. }
  1105. }
  1106. }
  1107. OUTPUT:
  1108. ++p;
  1109. while (o_count && count && *o) {
  1110. *s++ = *o++;
  1111. --o_count;
  1112. --count;
  1113. }
  1114. goto LOOP;
  1115. }
  1116. # ifdef L_strftime_l
  1117. libc_hidden_def(strftime_l)
  1118. # endif
  1119. #endif /* defined(__UCLIBC_HAS_XLOCALE__) && !defined(__UCLIBC_DO_XLOCALE) */
  1120. #endif
  1121. /**********************************************************************/
  1122. #if defined(L_strptime) || defined(L_strptime_l)
  1123. #define ISDIGIT(C) __isdigit_char((C))
  1124. #ifdef __UCLIBC_DO_XLOCALE
  1125. #define ISSPACE(C) isspace_l((C), locale_arg)
  1126. #else
  1127. #define ISSPACE(C) isspace((C))
  1128. #endif
  1129. #if defined(__UCLIBC_HAS_XLOCALE__) && !defined(__UCLIBC_DO_XLOCALE)
  1130. char *strptime(const char *__restrict buf, const char *__restrict format,
  1131. struct tm *__restrict tm)
  1132. {
  1133. return strptime_l(buf, format, tm, __UCLIBC_CURLOCALE);
  1134. }
  1135. #else /* defined(__UCLIBC_HAS_XLOCALE__) && !defined(__UCLIBC_DO_XLOCALE) */
  1136. /* TODO:
  1137. * 1) %l and %k are space-padded, so "%l" by itself fails while " %l" succeeds.
  1138. * Both work for glibc. So, should we always strip spaces?
  1139. * 2) %Z
  1140. */
  1141. /* Notes:
  1142. * There are several differences between this strptime and glibc's strptime.
  1143. * 1) glibc strips leading space before numeric conversions.
  1144. * 2) glibc will read fields without whitespace in between. SUSv3 states
  1145. * that you must have whitespace between conversion operators. Besides,
  1146. * how do you know how long a number should be if there are leading 0s?
  1147. * 3) glibc attempts to compute some the struct tm fields based on the
  1148. * data retrieved; tm_wday in particular. I don't as I consider it
  1149. * another glibc attempt at mind-reading...
  1150. */
  1151. #define NO_E_MOD 0x80
  1152. #define NO_O_MOD 0x40
  1153. #define ILLEGAL_SPEC 0x3f
  1154. #define INT_SPEC 0x00 /* must be 0x00!! */
  1155. #define STRING_SPEC 0x10 /* must be 0x10!! */
  1156. #define CALC_SPEC 0x20
  1157. #define STACKED_SPEC 0x30
  1158. #define MASK_SPEC 0x30
  1159. /* Warning: Assumes ASCII values! (as do lots of other things in the lib...) */
  1160. static const unsigned char spec[] = {
  1161. /* A */ 0x02 | STRING_SPEC | NO_E_MOD | NO_O_MOD,
  1162. /* B */ 0x01 | STRING_SPEC | NO_E_MOD | NO_O_MOD,
  1163. /* C */ 0x08 | INT_SPEC | NO_O_MOD,
  1164. /* D */ 0x01 | STACKED_SPEC | NO_E_MOD | NO_O_MOD,
  1165. /* E */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  1166. /* F */ 0x02 | STACKED_SPEC | NO_E_MOD | NO_O_MOD, /* glibc */
  1167. /* G */ 0x0f | INT_SPEC | NO_E_MOD | NO_O_MOD, /* glibc */
  1168. /* H */ 0x06 | INT_SPEC | NO_E_MOD,
  1169. /* I */ 0x07 | INT_SPEC | NO_E_MOD,
  1170. /* J */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  1171. /* K */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  1172. /* L */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  1173. /* M */ 0x04 | INT_SPEC | NO_E_MOD,
  1174. /* N */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  1175. /* O */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  1176. /* P */ 0x00 | STRING_SPEC | NO_E_MOD | NO_O_MOD, /* glibc */
  1177. /* Q */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  1178. /* R */ 0x03 | STACKED_SPEC | NO_E_MOD | NO_O_MOD,
  1179. /* S */ 0x05 | INT_SPEC | NO_E_MOD,
  1180. /* T */ 0x04 | STACKED_SPEC | NO_E_MOD | NO_O_MOD,
  1181. /* U */ 0x0c | INT_SPEC | NO_E_MOD,
  1182. /* V */ 0x0d | INT_SPEC | NO_E_MOD | NO_O_MOD, /* glibc */
  1183. /* W */ 0x0c | INT_SPEC | NO_E_MOD,
  1184. /* X */ 0x0a | STACKED_SPEC | NO_O_MOD,
  1185. /* Y */ 0x0a | INT_SPEC | NO_O_MOD,
  1186. /* Z */ 0x02 | CALC_SPEC | NO_E_MOD | NO_O_MOD, /* glibc */
  1187. /* WARNING! This assumes orderings:
  1188. * AM,PM
  1189. * ABDAY_1-ABDAY-7,DAY_1-DAY_7
  1190. * ABMON_1-ABMON_12,MON_1-MON12
  1191. * Also, there are exactly 6 bytes between 'Z' and 'a'.
  1192. */
  1193. #define STRINGS_NL_ITEM_START (26)
  1194. _NL_ITEM_INDEX(AM_STR), /* p (P) */
  1195. _NL_ITEM_INDEX(ABMON_1), /* B, b */
  1196. _NL_ITEM_INDEX(ABDAY_1), /* A, a */
  1197. 2,
  1198. 24,
  1199. 14,
  1200. /* a */ 0x02 | STRING_SPEC | NO_E_MOD | NO_O_MOD,
  1201. /* b */ 0x01 | STRING_SPEC | NO_E_MOD | NO_O_MOD,
  1202. /* c */ 0x08 | STACKED_SPEC | NO_O_MOD,
  1203. /* d */ 0x00 | INT_SPEC | NO_E_MOD,
  1204. /* e */ 0x00 | INT_SPEC | NO_E_MOD,
  1205. /* f */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  1206. /* g */ 0x0e | INT_SPEC | NO_E_MOD | NO_O_MOD, /* glibc */
  1207. /* h */ 0x01 | STRING_SPEC | NO_E_MOD | NO_O_MOD,
  1208. /* i */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  1209. /* j */ 0x01 | INT_SPEC | NO_E_MOD | NO_O_MOD,
  1210. /* k */ 0x06 | INT_SPEC | NO_E_MOD, /* glibc */
  1211. /* l */ 0x07 | INT_SPEC | NO_E_MOD, /* glibc */
  1212. /* m */ 0x02 | INT_SPEC | NO_E_MOD,
  1213. /* n */ 0x00 | STACKED_SPEC | NO_E_MOD | NO_O_MOD,
  1214. /* o */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  1215. /* p */ 0x00 | STRING_SPEC | NO_E_MOD | NO_O_MOD,
  1216. /* q */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  1217. /* r */ 0x0b | STACKED_SPEC | NO_E_MOD | NO_O_MOD,
  1218. /* s */ 0x00 | CALC_SPEC | NO_E_MOD | NO_O_MOD, /* glibc */
  1219. /* t */ 0x00 | STACKED_SPEC | NO_E_MOD | NO_O_MOD,
  1220. /* u */ 0x0b | INT_SPEC | NO_E_MOD | NO_O_MOD, /* glibc */
  1221. /* v */ ILLEGAL_SPEC | NO_E_MOD | NO_O_MOD,
  1222. /* w */ 0x03 | INT_SPEC | NO_E_MOD,
  1223. /* x */ 0x09 | STACKED_SPEC | NO_O_MOD,
  1224. /* y */ 0x09 | INT_SPEC,
  1225. /* z */ 0x01 | CALC_SPEC | NO_E_MOD | NO_O_MOD, /* glibc */
  1226. #define INT_FIELD_START (26+6+26)
  1227. /* (field #) << 3 + lower bound (0|1) + correction 0:none, 2:-1, 4:-1900
  1228. * followed by upper bound prior to correction with 1=>366 and 2=>9999. */
  1229. /* d, e */ (3 << 3) + 1 + 0, 31,
  1230. /* j */ (7 << 3) + 1 + 2, /* 366 */ 1,
  1231. /* m */ (4 << 3) + 1 + 2, 12,
  1232. /* w */ (6 << 3) + 0 + 0, 6,
  1233. /* M */ (1 << 3) + 0 + 0, 59,
  1234. /* S */ 0 + 0 + 0, 60,
  1235. /* H (k) */ (2 << 3) + 0 + 0, 23,
  1236. /* I (l) */ (9 << 3) + 1 + 0, 12, /* goes with 8 -- am/pm */
  1237. /* C */ (10<< 3) + 0 + 0, 99,
  1238. /* y */ (11<< 3) + 0 + 0, 99,
  1239. /* Y */ (5 << 3) + 0 + 4, /* 9999 */ 2,
  1240. /* u */ (6 << 3) + 1 + 0, 7,
  1241. /* The following are processed and range-checked, but ignored otherwise. */
  1242. /* U, W */ (12<< 3) + 0 + 0, 53,
  1243. /* V */ (12<< 3) + 1 + 0, 53,
  1244. /* g */ (12<< 3) + 0 + 0, 99,
  1245. /* G */ (12<< 3) + 0 /*+ 4*/, /* 9999 */ 2, /* Note: -1 or 10000? */
  1246. #define STACKED_STRINGS_START (INT_FIELD_START+32)
  1247. 5, 6, 14, 22, 27, /* 5 - offsets from offset-count to strings */
  1248. ' ', 0, /* 2 - %n or %t */
  1249. '%', 'm', '/', '%', 'd', '/', '%', 'y', 0, /* 9 - %D */
  1250. '%', 'Y', '-', '%', 'm', '-', '%', 'd', 0, /* 9 - %F (glibc extension) */
  1251. '%', 'H', ':', '%', 'M', 0, /* 6 - %R*/
  1252. '%', 'H', ':', '%', 'M', ':', '%', 'S', 0, /* 9 - %T */
  1253. #define STACKED_STRINGS_NL_ITEM_START (STACKED_STRINGS_START + 40)
  1254. _NL_ITEM_INDEX(D_T_FMT), /* c */
  1255. _NL_ITEM_INDEX(D_FMT), /* x */
  1256. _NL_ITEM_INDEX(T_FMT), /* X */
  1257. _NL_ITEM_INDEX(T_FMT_AMPM), /* r */
  1258. #ifdef ENABLE_ERA_CODE
  1259. _NL_ITEM_INDEX(ERA_D_T_FMT), /* Ec */
  1260. _NL_ITEM_INDEX(ERA_D_FMT), /* Ex */
  1261. _NL_ITEM_INDEX(ERA_T_FMT), /* EX */
  1262. #endif
  1263. };
  1264. #define MAX_PUSH 4
  1265. char *__XL_NPP(strptime)(const char *__restrict buf, const char *__restrict format,
  1266. struct tm *__restrict tm __LOCALE_PARAM)
  1267. {
  1268. register const char *p;
  1269. char *o;
  1270. const char *stack[MAX_PUSH];
  1271. int i, j, lvl;
  1272. int fields[13];
  1273. unsigned char mod;
  1274. unsigned char code;
  1275. i = 0;
  1276. do {
  1277. fields[i] = INT_MIN;
  1278. } while (++i < 13);
  1279. lvl = 0;
  1280. p = format;
  1281. LOOP:
  1282. if (!*p) {
  1283. if (lvl == 0) { /* Done. */
  1284. if (fields[6] == 7) { /* Cleanup for %u here since just once. */
  1285. fields[6] = 0; /* Don't use mod in case unset. */
  1286. }
  1287. i = 0;
  1288. do { /* Store the values into tm. */
  1289. if (fields[i] != INT_MIN) {
  1290. ((int *) tm)[i] = fields[i];
  1291. }
  1292. } while (++i < 8);
  1293. return (char *) buf; /* Success. */
  1294. }
  1295. p = stack[--lvl];
  1296. goto LOOP;
  1297. }
  1298. if ((*p == '%') && (*++p != '%')) {
  1299. mod = ILLEGAL_SPEC;
  1300. if ((*p == 'O') || (*p == 'E')) { /* Modifier? */
  1301. mod |= ((*p == 'O') ? NO_O_MOD : NO_E_MOD);
  1302. ++p;
  1303. }
  1304. if (!*p
  1305. || (((unsigned char)(((*p) | 0x20) - 'a')) >= 26)
  1306. || (((code = spec[(int)(*p - 'A')]) & mod) >= ILLEGAL_SPEC)
  1307. ) {
  1308. return NULL; /* Illegal spec. */
  1309. }
  1310. if ((code & MASK_SPEC) == STACKED_SPEC) {
  1311. if (lvl == MAX_PUSH) {
  1312. return NULL; /* Stack full so treat as illegal spec. */
  1313. }
  1314. stack[lvl++] = ++p;
  1315. if ((code &= 0xf) < 8) {
  1316. p = ((const char *) spec) + STACKED_STRINGS_START + code;
  1317. p += *((unsigned char *)p);
  1318. goto LOOP;
  1319. }
  1320. p = ((const char *) spec) + STACKED_STRINGS_NL_ITEM_START
  1321. + (code & 7);
  1322. #ifdef ENABLE_ERA_CODE
  1323. if ((mod & NO_E_MOD) /* Actually, this means E modifier present. */
  1324. && (*(o = __XL_NPP(nl_langinfo)(_NL_ITEM(LC_TIME,
  1325. (int)(((unsigned char *)p)[4]))
  1326. __LOCALE_ARG
  1327. )))
  1328. ) {
  1329. p = o;
  1330. goto LOOP;
  1331. }
  1332. #endif
  1333. p = __XL_NPP(nl_langinfo)(_NL_ITEM(LC_TIME,
  1334. (int)(*((unsigned char *)p)))
  1335. __LOCALE_ARG
  1336. );
  1337. goto LOOP;
  1338. }
  1339. ++p;
  1340. if ((code & MASK_SPEC) == STRING_SPEC) {
  1341. code &= 0xf;
  1342. j = spec[STRINGS_NL_ITEM_START + 3 + code];
  1343. i = _NL_ITEM(LC_TIME, spec[STRINGS_NL_ITEM_START + code]);
  1344. /* Go backwards to check full names before abreviations. */
  1345. do {
  1346. --j;
  1347. o = __XL_NPP(nl_langinfo)(i+j __LOCALE_ARG);
  1348. if (!__XL_NPP(strncasecmp)(buf, o, strlen(o) __LOCALE_ARG) && *o) {
  1349. do { /* Found a match. */
  1350. ++buf;
  1351. } while (*++o);
  1352. if (!code) { /* am/pm */
  1353. fields[8] = j * 12;
  1354. if (fields[9] >= 0) { /* We have a previous %I or %l. */
  1355. fields[2] = fields[9] + fields[8];
  1356. }
  1357. } else { /* day (4) or month (6) */
  1358. fields[2 + (code << 1)]
  1359. = j % (spec[STRINGS_NL_ITEM_START + 3 + code] >> 1);
  1360. }
  1361. goto LOOP;
  1362. }
  1363. } while (j);
  1364. return NULL; /* Failed to match. */
  1365. }
  1366. if ((code & MASK_SPEC) == CALC_SPEC) {
  1367. if ((code &= 0xf) < 1) { /* s or z*/
  1368. time_t t;
  1369. o = (char *) buf;
  1370. i = errno;
  1371. __set_errno(0);
  1372. if (!ISSPACE(*buf)) { /* Signal an error if whitespace. */
  1373. #ifdef TIME_T_IS_UNSIGNED
  1374. t = __XL_NPP(strtoul)(buf, &o, 10 __LOCALE_ARG);
  1375. #else
  1376. t = __XL_NPP(strtol)(buf, &o, 10 __LOCALE_ARG);
  1377. #endif
  1378. }
  1379. if ((o == buf) || errno) { /* Not a number or overflow. */
  1380. return NULL;
  1381. }
  1382. __set_errno(i); /* Restore errno. */
  1383. buf = o;
  1384. if (!code) { /* s */
  1385. localtime_r(&t, tm); /* TODO: check for failure? */
  1386. i = 0;
  1387. do { /* Now copy values from tm to fields. */
  1388. fields[i] = ((int *) tm)[i];
  1389. } while (++i < 8);
  1390. }
  1391. }
  1392. /* TODO: glibc treats %Z as a nop. For now, do the same. */
  1393. goto LOOP;
  1394. }
  1395. assert((code & MASK_SPEC) == INT_SPEC);
  1396. {
  1397. register const unsigned char *x;
  1398. code &= 0xf;
  1399. x = spec + INT_FIELD_START + (code << 1);
  1400. if ((j = x[1]) < 3) { /* upper bound (inclusive) */
  1401. j = ((j==1) ? 366 : 9999);
  1402. }
  1403. i = -1;
  1404. while (ISDIGIT(*buf)) {
  1405. if (i < 0) {
  1406. i = 0;
  1407. }
  1408. if ((i = 10*i + (*buf - '0')) > j) { /* Overflow. */
  1409. return NULL;
  1410. }
  1411. ++buf;
  1412. }
  1413. if (i < (*x & 1)) { /* This catches no-digit case too. */
  1414. return NULL;
  1415. }
  1416. if (*x & 2) {
  1417. --i;
  1418. }
  1419. if (*x & 4) {
  1420. i -= 1900;
  1421. }
  1422. if (*x == (9 << 3) + 1 + 0) { /* %I or %l */
  1423. if (i == 12) {
  1424. i = 0;
  1425. }
  1426. if (fields[8] >= 0) { /* We have a previous %p or %P. */
  1427. fields[2] = i + fields[8];
  1428. }
  1429. }
  1430. fields[(*x) >> 3] = i;
  1431. if (((unsigned char)(*x - (10 << 3) + 0 + 0)) <= 8) { /* %C or %y */
  1432. if ((j = fields[10]) < 0) { /* No %C, so i must be %y data. */
  1433. if (i <= 68) { /* Map [0-68] to 2000+i */
  1434. i += 100;
  1435. }
  1436. } else { /* Have %C data, but what about %y? */
  1437. if ((i = fields[11]) < 0) { /* No %y data. */
  1438. i = 0; /* Treat %y val as 0 following glibc's example. */
  1439. }
  1440. i += 100*(j - 19);
  1441. }
  1442. fields[5] = i;
  1443. }
  1444. }
  1445. goto LOOP;
  1446. } else if (ISSPACE(*p)) {
  1447. ++p;
  1448. while (ISSPACE(*buf)) {
  1449. ++buf;
  1450. }
  1451. goto LOOP;
  1452. } else if (*buf++ == *p++) {
  1453. goto LOOP;
  1454. }
  1455. return NULL;
  1456. }
  1457. # ifdef L_strptime_l
  1458. libc_hidden_def(strptime_l)
  1459. # endif
  1460. #endif /* defined(__UCLIBC_HAS_XLOCALE__) && !defined(__UCLIBC_DO_XLOCALE) */
  1461. #endif
  1462. /**********************************************************************/
  1463. #ifdef L_time
  1464. #ifndef __BCC__
  1465. #error The uClibc version of time is in sysdeps/linux/common.
  1466. #endif
  1467. time_t time(register time_t *tloc)
  1468. {
  1469. struct timeval tv;
  1470. register struct timeval *p = &tv;
  1471. gettimeofday(p, NULL); /* This should never fail... */
  1472. if (tloc) {
  1473. *tloc = p->tv_sec;
  1474. }
  1475. return p->tv_sec;
  1476. }
  1477. #endif
  1478. /**********************************************************************/
  1479. #ifdef L_tzset
  1480. static const char vals[] = {
  1481. 'T', 'Z', 0, /* 3 */
  1482. 'U', 'T', 'C', 0, /* 4 */
  1483. 25, 60, 60, 1, /* 4 */
  1484. '.', 1, /* M */
  1485. 5, '.', 1,
  1486. 6, 0, 0, /* Note: overloaded for non-M non-J case... */
  1487. 0, 1, 0, /* J */
  1488. ',', 'M', '4', '.', '1', '.', '0',
  1489. ',', 'M', '1', '0', '.', '5', '.', '0', 0,
  1490. ',', 'M', '3', '.', '2', '.', '0',
  1491. ',', 'M', '1', '1', '.', '1', '.', '0', 0
  1492. };
  1493. #define TZ vals
  1494. #define UTC (vals + 3)
  1495. #define RANGE (vals + 7)
  1496. #define RULE (vals + 11 - 1)
  1497. #define DEFAULT_RULES (vals + 22)
  1498. #define DEFAULT_2007_RULES (vals + 38)
  1499. /* Initialize to UTC. */
  1500. int daylight = 0;
  1501. long timezone = 0;
  1502. char *tzname[2] = { (char *) UTC, (char *) (UTC-1) };
  1503. __UCLIBC_MUTEX_INIT(_time_tzlock, PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP);
  1504. rule_struct _time_tzinfo[2];
  1505. static const char *getoffset(register const char *e, long *pn)
  1506. {
  1507. register const char *s = RANGE-1;
  1508. long n;
  1509. int f;
  1510. n = 0;
  1511. f = -1;
  1512. do {
  1513. ++s;
  1514. if (__isdigit_char(*e)) {
  1515. f = *e++ - '0';
  1516. }
  1517. if (__isdigit_char(*e)) {
  1518. f = 10 * f + (*e++ - '0');
  1519. }
  1520. if (((unsigned int)f) >= *s) {
  1521. return NULL;
  1522. }
  1523. n = (*s) * n + f;
  1524. f = 0;
  1525. if (*e == ':') {
  1526. ++e;
  1527. --f;
  1528. }
  1529. } while (*s > 1);
  1530. *pn = n;
  1531. return e;
  1532. }
  1533. static const char *getnumber(register const char *e, int *pn)
  1534. {
  1535. #ifdef __BCC__
  1536. /* bcc can optimize the counter if it thinks it is a pointer... */
  1537. register const char *n = (const char *) 3;
  1538. int f;
  1539. f = 0;
  1540. while (n && __isdigit_char(*e)) {
  1541. f = 10 * f + (*e++ - '0');
  1542. --n;
  1543. }
  1544. *pn = f;
  1545. return (n == (const char *) 3) ? NULL : e;
  1546. #else /* __BCC__ */
  1547. int n, f;
  1548. n = 3;
  1549. f = 0;
  1550. while (n && __isdigit_char(*e)) {
  1551. f = 10 * f + (*e++ - '0');
  1552. --n;
  1553. }
  1554. *pn = f;
  1555. return (n == 3) ? NULL : e;
  1556. #endif /* __BCC__ */
  1557. }
  1558. #ifdef __UCLIBC_MJN3_ONLY__
  1559. #warning CONSIDER: Should we preserve errno from open/read/close errors re TZ file?
  1560. #endif
  1561. #ifdef __UCLIBC_HAS_TZ_FILE__
  1562. #ifndef __UCLIBC_HAS_TZ_FILE_READ_MANY__
  1563. static smallint TZ_file_read; /* Let BSS initialization set this to 0. */
  1564. #endif
  1565. static char *read_TZ_file(char *buf)
  1566. {
  1567. int r;
  1568. int fd;
  1569. char *p = NULL;
  1570. fd = open(__UCLIBC_TZ_FILE_PATH__, O_RDONLY);
  1571. if (fd >= 0) {
  1572. #if 0
  1573. /* TZ are small *files*. On files, short reads
  1574. * only occur on EOF (unlike, say, pipes).
  1575. * The code below is pedanticallly more correct,
  1576. * but this way we always read at least twice:
  1577. * 1st read is short, 2nd one is zero bytes.
  1578. */
  1579. size_t todo = TZ_BUFLEN;
  1580. p = buf;
  1581. do {
  1582. r = read(fd, p, todo);
  1583. if (r < 0)
  1584. goto ERROR;
  1585. if (r == 0)
  1586. break;
  1587. p += r;
  1588. todo -= r;
  1589. } while (todo);
  1590. #else
  1591. /* Shorter, and does one fewer read syscall */
  1592. r = read(fd, buf, TZ_BUFLEN);
  1593. if (r < 0)
  1594. goto ERROR;
  1595. p = buf + r;
  1596. #endif
  1597. if ((p > buf) && (p[-1] == '\n')) { /* Must end with newline */
  1598. p[-1] = 0;
  1599. p = buf;
  1600. #ifndef __UCLIBC_HAS_TZ_FILE_READ_MANY__
  1601. TZ_file_read = 1;
  1602. #endif
  1603. } else {
  1604. ERROR:
  1605. p = NULL;
  1606. }
  1607. close(fd);
  1608. }
  1609. #ifdef __UCLIBC_FALLBACK_TO_ETC_LOCALTIME__
  1610. else {
  1611. fd = open("/etc/localtime", O_RDONLY);
  1612. if (fd >= 0) {
  1613. r = read(fd, buf, TZ_BUFLEN);
  1614. if (r != TZ_BUFLEN
  1615. || strncmp(buf, "TZif", 4) != 0
  1616. || (unsigned char)buf[4] < 2
  1617. || lseek(fd, -TZ_BUFLEN, SEEK_END) < 0
  1618. ) {
  1619. goto ERROR;
  1620. }
  1621. /* tzfile.h from tzcode database says about TZif2+ files:
  1622. **
  1623. ** If tzh_version is '2' or greater, the above is followed by a second instance
  1624. ** of tzhead and a second instance of the data in which each coded transition
  1625. ** time uses 8 rather than 4 chars,
  1626. ** then a POSIX-TZ-environment-variable-style string for use in handling
  1627. ** instants after the last transition time stored in the file
  1628. ** (with nothing between the newlines if there is no POSIX representation for
  1629. ** such instants).
  1630. */
  1631. r = read(fd, buf, TZ_BUFLEN);
  1632. if (r <= 0 || buf[--r] != '\n')
  1633. goto ERROR;
  1634. buf[r] = 0;
  1635. while (r != 0) {
  1636. if (buf[--r] == '\n') {
  1637. p = buf + r + 1;
  1638. #ifndef __UCLIBC_HAS_TZ_FILE_READ_MANY__
  1639. TZ_file_read = 1;
  1640. #endif
  1641. break;
  1642. }
  1643. } /* else ('\n' not found): p remains NULL */
  1644. close(fd);
  1645. }
  1646. }
  1647. #endif /* __UCLIBC_FALLBACK_TO_ETC_LOCALTIME__ */
  1648. return p;
  1649. }
  1650. #endif /* __UCLIBC_HAS_TZ_FILE__ */
  1651. void tzset(void)
  1652. {
  1653. _time_tzset((time(NULL)) < new_rule_starts);
  1654. }
  1655. void _time_tzset(int use_old_rules)
  1656. {
  1657. register const char *e;
  1658. register char *s;
  1659. long off = 0;
  1660. short *p;
  1661. rule_struct new_rules[2];
  1662. int n, count, f;
  1663. char c;
  1664. #ifdef __UCLIBC_HAS_TZ_FILE__
  1665. char buf[TZ_BUFLEN];
  1666. #endif
  1667. #ifdef __UCLIBC_HAS_TZ_CACHING__
  1668. static char oldval[TZ_BUFLEN]; /* BSS-zero'd. */
  1669. #endif
  1670. /* Put this inside the lock to prevent the possibility of two different
  1671. * timezones being used in a threaded app. */
  1672. __UCLIBC_MUTEX_LOCK(_time_tzlock);
  1673. e = getenv(TZ); /* TZ env var always takes precedence. */
  1674. #if defined(__UCLIBC_HAS_TZ_FILE__) && !defined(__UCLIBC_HAS_TZ_FILE_READ_MANY__)
  1675. if (e) {
  1676. /* Never use TZfile if TZ env var is set. */
  1677. TZ_file_read = 0;
  1678. }
  1679. if (TZ_file_read) {
  1680. /* We already parsed TZfile before, skip everything. */
  1681. goto FAST_DONE;
  1682. }
  1683. #endif
  1684. /* Warning!!! Since uClibc doesn't do lib locking, the following is
  1685. * potentially unsafe in a multi-threaded program since it is remotely
  1686. * possible that another thread could call setenv() for TZ and overwrite
  1687. * the string being parsed. So, don't do that... */
  1688. #ifdef __UCLIBC_HAS_TZ_FILE__
  1689. if (!e)
  1690. e = read_TZ_file(buf);
  1691. #endif
  1692. if (!e /* TZ env var not set and no TZfile (or bad TZfile) */
  1693. || !*e /* or set to empty string. */
  1694. ) {
  1695. goto ILLEGAL;
  1696. }
  1697. if (*e == ':') { /* Ignore leading ':'. */
  1698. ++e;
  1699. }
  1700. #ifdef __UCLIBC_HAS_TZ_CACHING__
  1701. if (strcmp(e, oldval) == 0) {
  1702. /* Same string as last time... nothing to do. */
  1703. goto FAST_DONE;
  1704. }
  1705. /* Make a copy of the TZ env string. It won't be nul-terminated if
  1706. * it is too long, but it that case it will be illegal and will be reset
  1707. * to the empty string anyway. */
  1708. strncpy(oldval, e, TZ_BUFLEN);
  1709. #endif
  1710. count = 0;
  1711. new_rules[1].tzname[0] = 0;
  1712. LOOP:
  1713. /* Get std or dst name. */
  1714. c = 0;
  1715. if (*e == '<') {
  1716. ++e;
  1717. c = '>';
  1718. }
  1719. s = new_rules[count].tzname;
  1720. n = 0;
  1721. while (*e
  1722. && isascii(*e) /* SUSv3 requires char in portable char set. */
  1723. && (isalpha(*e)
  1724. || (c && (isalnum(*e) || (*e == '+') || (*e == '-')))
  1725. )
  1726. ) {
  1727. *s++ = *e++;
  1728. if (++n > TZNAME_MAX) {
  1729. goto ILLEGAL;
  1730. }
  1731. }
  1732. *s = 0;
  1733. if ((n < 3) /* Check for minimum length. */
  1734. || (c && (*e++ != c)) /* Match any quoting '<'. */
  1735. ) {
  1736. goto ILLEGAL;
  1737. }
  1738. /* Get offset */
  1739. s = (char *) e;
  1740. if ((*e != '-') && (*e != '+')) {
  1741. if (count && !__isdigit_char(*e)) {
  1742. off -= 3600; /* Default to 1 hour ahead of std. */
  1743. goto SKIP_OFFSET;
  1744. }
  1745. --e;
  1746. }
  1747. ++e;
  1748. e = getoffset(e, &off);
  1749. if (!e) {
  1750. goto ILLEGAL;
  1751. }
  1752. if (*s == '-') {
  1753. off = -off; /* Save off in case needed for dst default. */
  1754. }
  1755. SKIP_OFFSET:
  1756. new_rules[count].gmt_offset = off;
  1757. if (!count) {
  1758. new_rules[1].gmt_offset = off; /* Shouldn't be needed... */
  1759. if (*e) {
  1760. ++count;
  1761. goto LOOP;
  1762. }
  1763. } else { /* OK, we have dst, so get some rules. */
  1764. count = 0;
  1765. if (!*e) { /* No rules so default to US rules. */
  1766. e = use_old_rules ? DEFAULT_RULES : DEFAULT_2007_RULES;
  1767. #ifdef DEBUG_TZSET
  1768. if (e == DEFAULT_RULES)
  1769. printf("tzset: Using old rules.\n");
  1770. else if (e == DEFAULT_2007_RULES)
  1771. printf("tzset: Using new rules\n");
  1772. else
  1773. printf("tzset: Using undefined rules\n");
  1774. #endif
  1775. }
  1776. do {
  1777. if (*e++ != ',') {
  1778. goto ILLEGAL;
  1779. }
  1780. n = 365;
  1781. s = (char *) RULE;
  1782. c = *e++;
  1783. if (c == 'M') {
  1784. n = 12;
  1785. } else if (c == 'J') {
  1786. s += 8;
  1787. } else {
  1788. --e;
  1789. c = 0;
  1790. s += 6;
  1791. }
  1792. p = &new_rules[count].rule_type;
  1793. *p = c;
  1794. if (c != 'M') {
  1795. p -= 2;
  1796. }
  1797. do {
  1798. ++s;
  1799. e = getnumber(e, &f);
  1800. if (!e
  1801. || ((unsigned int)(f - s[1]) > n)
  1802. || (*s && (*e++ != *s))
  1803. ) {
  1804. goto ILLEGAL;
  1805. }
  1806. *--p = f;
  1807. s += 2;
  1808. n = *s;
  1809. } while (n > 0);
  1810. off = 2 * 60 * 60; /* Default to 2:00:00 */
  1811. if (*e == '/') {
  1812. ++e;
  1813. e = getoffset(e, &off);
  1814. if (!e) {
  1815. goto ILLEGAL;
  1816. }
  1817. }
  1818. new_rules[count].dst_offset = off;
  1819. } while (++count < 2);
  1820. if (*e) {
  1821. ILLEGAL:
  1822. #ifdef __UCLIBC_HAS_TZ_CACHING__
  1823. oldval[0] = 0; /* oldval = "" */
  1824. #endif
  1825. memset(_time_tzinfo, 0, sizeof(_time_tzinfo));
  1826. strcpy(_time_tzinfo[0].tzname, UTC);
  1827. goto DONE;
  1828. }
  1829. }
  1830. memcpy(_time_tzinfo, new_rules, sizeof(new_rules));
  1831. DONE:
  1832. tzname[0] = _time_tzinfo[0].tzname;
  1833. tzname[1] = _time_tzinfo[1].tzname;
  1834. daylight = !!_time_tzinfo[1].tzname[0];
  1835. timezone = _time_tzinfo[0].gmt_offset;
  1836. #if defined(__UCLIBC_HAS_TZ_FILE__) || defined(__UCLIBC_HAS_TZ_CACHING__)
  1837. FAST_DONE:
  1838. #endif
  1839. __UCLIBC_MUTEX_UNLOCK(_time_tzlock);
  1840. }
  1841. libc_hidden_def(tzset)
  1842. #endif
  1843. /**********************************************************************/
  1844. /* #ifdef L_utime */
  1845. /* utime is a syscall in both linux and elks. */
  1846. /* int utime(const char *path, const struct utimbuf *times) */
  1847. /* #endif */
  1848. /**********************************************************************/
  1849. /* Non-SUSv3 */
  1850. /**********************************************************************/
  1851. #ifdef L_utimes
  1852. #ifndef __BCC__
  1853. #error The uClibc version of utimes is in sysdeps/linux/common.
  1854. #endif
  1855. #include <utime.h>
  1856. int utimes(const char *filename, register const struct timeval *tvp)
  1857. {
  1858. register struct utimbuf *p = NULL;
  1859. struct utimbuf utb;
  1860. if (tvp) {
  1861. p = &utb;
  1862. p->actime = tvp[0].tv_sec;
  1863. p->modtime = tvp[1].tv_sec;
  1864. }
  1865. return utime(filename, p);
  1866. }
  1867. #endif
  1868. /**********************************************************************/
  1869. #ifdef L__time_t2tm
  1870. static const uint16_t _vals[] = {
  1871. 60, 60, 24, 7 /* special */, 36524, 1461, 365, 0
  1872. };
  1873. static const unsigned char days[] = {
  1874. 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31, /* non-leap */
  1875. 29,
  1876. };
  1877. #ifdef __UCLIBC_HAS_TM_EXTENSIONS__
  1878. static const char utc_string[] = "UTC";
  1879. #endif
  1880. /* Notes:
  1881. * If time_t is 32 bits, then no overflow is possible.
  1882. * It time_t is > 32 bits, this needs to be adjusted to deal with overflow.
  1883. */
  1884. /* Note: offset is the correction in _days_ to *timer! */
  1885. struct tm attribute_hidden *_time_t2tm(const time_t *__restrict timer,
  1886. int offset, struct tm *__restrict result)
  1887. {
  1888. register int *p;
  1889. time_t t1, t, v;
  1890. int wday = wday; /* ok to be uninitialized, shutting up warning */
  1891. {
  1892. register const uint16_t *vp;
  1893. t = *timer;
  1894. p = (int *) result;
  1895. p[7] = 0;
  1896. vp = _vals;
  1897. do {
  1898. if ((v = *vp) == 7) {
  1899. /* Overflow checking, assuming time_t is long int... */
  1900. #if (LONG_MAX > INT_MAX) && (LONG_MAX > 2147483647L)
  1901. #if (INT_MAX == 2147483647L) && (LONG_MAX == 9223372036854775807L)
  1902. /* Valid range for t is [-784223472856L, 784223421720L].
  1903. * Outside of this range, the tm_year field will overflow. */
  1904. if (((unsigned long)(t + offset- -784223472856L))
  1905. > (784223421720L - -784223472856L)
  1906. ) {
  1907. return NULL;
  1908. }
  1909. #else
  1910. #error overflow conditions unknown
  1911. #endif
  1912. #endif
  1913. /* We have days since the epoch, so caluclate the weekday. */
  1914. #if defined(__BCC__) && TIME_T_IS_UNSIGNED
  1915. wday = (t + 4) % (*vp); /* t is unsigned */
  1916. #else
  1917. wday = ((int)((t % (*vp)) + 11)) % ((int)(*vp)); /* help bcc */
  1918. #endif
  1919. /* Set divisor to days in 400 years. Be kind to bcc... */
  1920. v = ((time_t)(vp[1])) << 2;
  1921. ++v;
  1922. /* Change to days since 1/1/1601 so that for 32 bit time_t
  1923. * values, we'll have t >= 0. This should be changed for
  1924. * archs with larger time_t types.
  1925. * Also, correct for offset since a multiple of 7. */
  1926. /* TODO: Does this still work on archs with time_t > 32 bits? */
  1927. t += (135140L - 366) + offset; /* 146097 - (365*30 + 7) -366 */
  1928. }
  1929. #if defined(__BCC__) && TIME_T_IS_UNSIGNED
  1930. t -= ((t1 = t / v) * v);
  1931. #else
  1932. if ((t -= ((t1 = t / v) * v)) < 0) {
  1933. t += v;
  1934. --t1;
  1935. }
  1936. #endif
  1937. if ((*vp == 7) && (t == v-1)) {
  1938. --t; /* Correct for 400th year leap case */
  1939. ++p[4]; /* Stash the extra day... */
  1940. }
  1941. #if defined(__BCC__) && 0
  1942. *p = t1;
  1943. if (v <= 60) {
  1944. *p = t;
  1945. t = t1;
  1946. }
  1947. ++p;
  1948. #else
  1949. if (v <= 60) {
  1950. *p++ = t;
  1951. t = t1;
  1952. } else {
  1953. *p++ = t1;
  1954. }
  1955. #endif
  1956. } while (*++vp);
  1957. }
  1958. if (p[-1] == 4) {
  1959. --p[-1];
  1960. t = 365;
  1961. }
  1962. *p += ((int) t); /* result[7] .. tm_yday */
  1963. p -= 2; /* at result[5] */
  1964. #if (LONG_MAX > INT_MAX) && (LONG_MAX > 2147483647L)
  1965. /* Protect against overflow. TODO: Unecessary if int arith wraps? */
  1966. *p = ((((p[-2]<<2) + p[-1])*25 + p[0])<< 2) + (p[1] - 299); /* tm_year */
  1967. #else
  1968. *p = ((((p[-2]<<2) + p[-1])*25 + p[0])<< 2) + p[1] - 299; /* tm_year */
  1969. #endif
  1970. p[1] = wday; /* result[6] .. tm_wday */
  1971. {
  1972. register const unsigned char *d = days;
  1973. wday = 1900 + *p;
  1974. if (__isleap(wday)) {
  1975. d += 11;
  1976. }
  1977. wday = p[2] + 1; /* result[7] .. tm_yday */
  1978. *--p = 0; /* at result[4] .. tm_mon */
  1979. while (wday > *d) {
  1980. wday -= *d;
  1981. if (*d == 29) {
  1982. d -= 11; /* Backup to non-leap Feb. */
  1983. }
  1984. ++d;
  1985. ++*p; /* Increment tm_mon. */
  1986. }
  1987. p[-1] = wday; /* result[3] .. tm_mday */
  1988. }
  1989. /* TODO -- should this be 0? */
  1990. p[4] = 0; /* result[8] .. tm_isdst */
  1991. #ifdef __UCLIBC_HAS_TM_EXTENSIONS__
  1992. # ifdef __USE_BSD
  1993. result->tm_gmtoff = 0;
  1994. result->tm_zone = utc_string;
  1995. # else
  1996. result->__tm_gmtoff = 0;
  1997. result->__tm_zone = utc_string;
  1998. # endif
  1999. #endif /* __UCLIBC_HAS_TM_EXTENSIONS__ */
  2000. return result;
  2001. }
  2002. #endif
  2003. /**********************************************************************/
  2004. #ifdef L___time_tm
  2005. struct tm __time_tm; /* Global shared by gmtime() and localtime(). */
  2006. #endif
  2007. /**********************************************************************/
  2008. #ifdef L__time_mktime
  2009. time_t attribute_hidden _time_mktime(struct tm *timeptr, int store_on_success)
  2010. {
  2011. time_t t;
  2012. __UCLIBC_MUTEX_LOCK(_time_tzlock);
  2013. tzset();
  2014. t = _time_mktime_tzi(timeptr, store_on_success, _time_tzinfo);
  2015. __UCLIBC_MUTEX_UNLOCK(_time_tzlock);
  2016. return t;
  2017. }
  2018. #endif
  2019. /**********************************************************************/
  2020. #ifdef L__time_mktime_tzi
  2021. static const unsigned char __vals[] = {
  2022. 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31, /* non-leap */
  2023. 29,
  2024. };
  2025. time_t attribute_hidden _time_mktime_tzi(struct tm *timeptr, int store_on_success,
  2026. rule_struct *tzi)
  2027. {
  2028. #ifdef __BCC__
  2029. long days, secs;
  2030. #else
  2031. long long secs;
  2032. #endif
  2033. time_t t;
  2034. struct tm x;
  2035. /* 0:sec 1:min 2:hour 3:mday 4:mon 5:year 6:wday 7:yday 8:isdst */
  2036. register int *p = (int *) &x;
  2037. register const unsigned char *s;
  2038. int d, default_dst;
  2039. memcpy(p, timeptr, sizeof(struct tm));
  2040. if (!tzi[1].tzname[0]) { /* No dst in this timezone, */
  2041. p[8] = 0; /* so set tm_isdst to 0. */
  2042. }
  2043. default_dst = 0;
  2044. if (p[8]) { /* Either dst or unknown? */
  2045. default_dst = 1; /* Assume advancing (even if unknown). */
  2046. p[8] = ((p[8] > 0) ? 1 : -1); /* Normalize so abs() <= 1. */
  2047. }
  2048. d = 400;
  2049. p[5] = (p[5] - ((p[6] = p[5]/d) * d)) + (p[7] = p[4]/12);
  2050. if ((p[4] -= 12 * p[7]) < 0) {
  2051. p[4] += 12;
  2052. --p[5];
  2053. }
  2054. s = __vals;
  2055. d = (p[5] += 1900); /* Correct year. Now between 1900 and 2300. */
  2056. if (__isleap(d)) {
  2057. s += 11;
  2058. }
  2059. p[7] = 0;
  2060. d = p[4];
  2061. while (d) {
  2062. p[7] += *s;
  2063. if (*s == 29) {
  2064. s -= 11; /* Backup to non-leap Feb. */
  2065. }
  2066. ++s;
  2067. --d;
  2068. }
  2069. _time_tzset (x.tm_year < 2007); /* tm_year was expanded above */
  2070. #ifdef __BCC__
  2071. d = p[5] - 1;
  2072. days = -719163L + ((long)d)*365 + ((d/4) - (d/100) + (d/400) + p[3] + p[7]);
  2073. secs = p[0] + 60*( p[1] + 60*((long)(p[2])) )
  2074. + tzi[default_dst].gmt_offset;
  2075. DST_CORRECT:
  2076. if (secs < 0) {
  2077. secs += 120009600L;
  2078. days -= 1389;
  2079. }
  2080. if ( ((unsigned long)(days + secs/86400L)) > 49710L) {
  2081. t = ((time_t)(-1));
  2082. goto DONE;
  2083. }
  2084. secs += (days * 86400L);
  2085. #else
  2086. d = p[5] - 1;
  2087. d = -719163L + d*365 + (d/4) - (d/100) + (d/400);
  2088. secs = p[0]
  2089. + tzi[default_dst].gmt_offset
  2090. + 60*( p[1]
  2091. + 60*(p[2]
  2092. + 24*(((146073L * ((long long)(p[6])) + d)
  2093. + p[3]) + p[7])));
  2094. DST_CORRECT:
  2095. if (((unsigned long long)(secs - LONG_MIN))
  2096. > (((unsigned long long)LONG_MAX) - LONG_MIN)
  2097. ) {
  2098. t = ((time_t)(-1));
  2099. goto DONE;
  2100. }
  2101. #endif
  2102. d = ((struct tm *)p)->tm_isdst;
  2103. t = secs;
  2104. __time_localtime_tzi(&t, (struct tm *)p, tzi);
  2105. if (t == ((time_t)(-1))) { /* Remember, time_t can be unsigned. */
  2106. goto DONE;
  2107. }
  2108. if ((d < 0) && (((struct tm *)p)->tm_isdst != default_dst)) {
  2109. #ifdef __BCC__
  2110. secs -= (days * 86400L);
  2111. #endif
  2112. secs += (tzi[1-default_dst].gmt_offset
  2113. - tzi[default_dst].gmt_offset);
  2114. goto DST_CORRECT;
  2115. }
  2116. if (store_on_success) {
  2117. memcpy(timeptr, p, sizeof(struct tm));
  2118. }
  2119. DONE:
  2120. return t;
  2121. }
  2122. #endif
  2123. /**********************************************************************/
  2124. #if defined(L_wcsftime) || defined(L_wcsftime_l)
  2125. #if defined(__UCLIBC_HAS_XLOCALE__) && !defined(__UCLIBC_DO_XLOCALE)
  2126. size_t wcsftime(wchar_t *__restrict s, size_t maxsize,
  2127. const wchar_t *__restrict format,
  2128. const struct tm *__restrict timeptr)
  2129. {
  2130. return wcsftime_l(s, maxsize, format, timeptr, __UCLIBC_CURLOCALE);
  2131. }
  2132. #else /* defined(__UCLIBC_HAS_XLOCALE__) && !defined(__UCLIBC_DO_XLOCALE) */
  2133. size_t __XL_NPP(wcsftime)(wchar_t *__restrict s, size_t maxsize,
  2134. const wchar_t *__restrict format,
  2135. const struct tm *__restrict timeptr __LOCALE_PARAM )
  2136. {
  2137. #warning wcsftime always fails
  2138. return 0; /* always fail */
  2139. }
  2140. #ifdef L_wcsftime_l
  2141. libc_hidden_def(wcsftime_l)
  2142. #endif
  2143. #endif /* defined(__UCLIBC_HAS_XLOCALE__) && !defined(__UCLIBC_DO_XLOCALE) */
  2144. #endif
  2145. /**********************************************************************/
  2146. #ifdef L_dysize
  2147. /* Return the number of days in YEAR. */
  2148. int dysize(int year)
  2149. {
  2150. return __isleap(year) ? 366 : 365;
  2151. }
  2152. #endif
  2153. /**********************************************************************/