time.c 64 KB

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