time.c 64 KB

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