time.c 62 KB

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