time.c 62 KB

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