stdio.c 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195
  1. /* Copyright (C) 2002 Manuel Novoa III
  2. * My stdio library for linux and (soon) elks.
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Library General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2 of the License, or (at your option) any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Library General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Library General Public
  15. * License along with this library; if not, write to the Free
  16. * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. */
  18. /* ATTENTION! ATTENTION! ATTENTION! ATTENTION! ATTENTION!
  19. *
  20. * This code is currently under development. Also, I plan to port
  21. * it to elks which is a 16-bit environment with a fairly limited
  22. * compiler. Therefore, please refrain from modifying this code
  23. * and, instead, pass any bug-fixes, etc. to me. Thanks. Manuel
  24. *
  25. * ATTENTION! ATTENTION! ATTENTION! ATTENTION! ATTENTION! */
  26. #define _ISOC99_SOURCE /* for ULLONG primarily... */
  27. #define _GNU_SOURCE
  28. #define _STDIO_UTILITY /* for _stdio_fdout and _uintmaxtostr. */
  29. #include <stdio.h>
  30. #include <stddef.h>
  31. #include <stdlib.h>
  32. #include <string.h>
  33. #include <limits.h>
  34. #include <stdint.h>
  35. #include <stdarg.h>
  36. #include <errno.h>
  37. #include <assert.h>
  38. #include <stdio_ext.h>
  39. #include <unistd.h>
  40. #include <fcntl.h>
  41. #ifndef O_LARGEFILE /* uClibc undefines this if no large file support. */
  42. #ifdef __STDIO_LARGE_FILES
  43. #error missing define for O_LARGEFILE!
  44. #endif
  45. #define O_LARGEFILE 0
  46. #endif
  47. /**********************************************************************/
  48. /* First deal with some build issues... */
  49. #ifndef __STDIO_THREADSAFE
  50. /* Just build empty object files if any of these were defined. */
  51. /* Note though that we do keep the various *_unlocked names as aliases. */
  52. #undef L___fsetlocking
  53. #undef L___flockfile
  54. #undef L___ftrylockfile
  55. #undef L___funlockfile
  56. #endif
  57. #ifndef __STDIO_LARGE_FILES
  58. /* Just build empty object files if any of these were defined. */
  59. #undef L_fopen64
  60. #undef L_freopen64
  61. #undef L_ftello64
  62. #undef L_fseeko64
  63. #undef L_fsetpos64
  64. #undef L_fgetpos64
  65. #endif
  66. /**********************************************************************/
  67. /* TODO -- make this the default except for bcc with it's broken preproc? */
  68. #ifdef __UCLIBC__
  69. #define _stdin stdin
  70. #define _stdout stdout
  71. #define _stderr stderr
  72. #endif /* __UCLIBC__ */
  73. /**********************************************************************/
  74. #ifndef __STDIO_THREADSAFE
  75. #define UNLOCKED_STREAM(RETURNTYPE,NAME,PARAMS,ARGS,STREAM) \
  76. strong_alias(NAME,NAME##_unlocked) \
  77. RETURNTYPE NAME PARAMS
  78. #define UNLOCKED(RETURNTYPE,NAME,PARAMS,ARGS) \
  79. UNLOCKED_STREAM(RETURNTYPE,NAME,PARAMS,ARGS,stream)
  80. #define UNLOCKED_VOID_RETURN(NAME,PARAMS,ARGS) \
  81. strong_alias(NAME,NAME##_unlocked) \
  82. void NAME PARAMS
  83. #define __STDIO_THREADLOCK_OPENLIST
  84. #define __STDIO_THREADUNLOCK_OPENLIST
  85. #else /* __STDIO_THREADSAFE */
  86. #include <pthread.h>
  87. #define UNLOCKED_STREAM(RETURNTYPE,NAME,PARAMS,ARGS,STREAM) \
  88. RETURNTYPE NAME PARAMS \
  89. { \
  90. RETURNTYPE retval; \
  91. __STDIO_THREADLOCK(STREAM); \
  92. retval = NAME##_unlocked ARGS ; \
  93. __STDIO_THREADUNLOCK(STREAM); \
  94. return retval; \
  95. } \
  96. RETURNTYPE NAME##_unlocked PARAMS
  97. #define UNLOCKED(RETURNTYPE,NAME,PARAMS,ARGS) \
  98. UNLOCKED_STREAM(RETURNTYPE,NAME,PARAMS,ARGS,stream)
  99. #define UNLOCKED_VOID_RETURN(NAME,PARAMS,ARGS) \
  100. void NAME PARAMS \
  101. { \
  102. __STDIO_THREADLOCK(stream); \
  103. NAME##_unlocked ARGS ; \
  104. __STDIO_THREADUNLOCK(stream); \
  105. } \
  106. void NAME##_unlocked PARAMS
  107. #define __STDIO_THREADLOCK_OPENLIST \
  108. pthread_mutex_lock(&_stdio_openlist_lock)
  109. #define __STDIO_THREADUNLOCK_OPENLIST \
  110. pthread_mutex_unlock(&_stdio_openlist_lock)
  111. #define __STDIO_THREADTRYLOCK_OPENLIST \
  112. pthread_mutex_trylock(&_stdio_openlist_lock)
  113. #endif /* __STDIO_THREADSAFE */
  114. /**********************************************************************/
  115. #ifdef __STDIO_WIDE
  116. #define __STDIO_FILE_INIT_UNGOT { 0, 0 }, { 0, 0 },
  117. #else
  118. #define __STDIO_FILE_INIT_UNGOT { 0, 0 },
  119. #endif
  120. #ifdef __STDIO_GETC_MACRO
  121. #define __STDIO_FILE_INIT_BUFGETC(x) x,
  122. #else
  123. #define __STDIO_FILE_INIT_BUFGETC(x)
  124. #endif
  125. #ifdef __STDIO_PUTC_MACRO
  126. #define __STDIO_FILE_INIT_BUFPUTC(x) x,
  127. #else
  128. #define __STDIO_FILE_INIT_BUFPUTC(x)
  129. #endif
  130. #if defined(__STDIO_BUFFERS) || defined(__STDIO_GLIBC_CUSTOM_STREAMS)
  131. #define __STDIO_FILE_INIT_NEXT(next) (next),
  132. #else /* defined(__STDIO_BUFFERS) || defined(__STDIO_GLIBC_CUSTOM_STREAMS) */
  133. #define __STDIO_FILE_INIT_NEXT(next)
  134. #endif /* defined(__STDIO_BUFFERS) || defined(__STDIO_GLIBC_CUSTOM_STREAMS) */
  135. #ifdef __STDIO_BUFFERS
  136. #define __STDIO_FILE_INIT_BUFFERS(buf,bufsize) \
  137. (buf), (buf)+(bufsize), (buf), (buf),
  138. #else
  139. #define __STDIO_FILE_INIT_BUFFERS(buf,bufsize)
  140. #endif
  141. #ifdef __STDIO_GLIBC_CUSTOM_STREAMS
  142. #define __STDIO_FILE_INIT_CUSTOM_STREAM(stream) \
  143. &((stream).filedes), { _cs_read, _cs_write, NULL, _cs_close },
  144. #else
  145. #define __STDIO_FILE_INIT_CUSTOM_STREAM(stream)
  146. #endif
  147. #ifdef __STDIO_THREADSAFE
  148. #define __STDIO_FILE_INIT_THREADSAFE \
  149. 0, PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP,
  150. #else
  151. #define __STDIO_FILE_INIT_THREADSAFE
  152. #endif
  153. #define __STDIO_INIT_FILE_STRUCT(stream, flags, filedes, next, buf, bufsize) \
  154. { (flags), \
  155. __STDIO_FILE_INIT_UNGOT \
  156. (filedes), \
  157. __STDIO_FILE_INIT_NEXT(next) \
  158. __STDIO_FILE_INIT_BUFFERS(buf,bufsize) \
  159. __STDIO_FILE_INIT_BUFGETC((buf)) \
  160. __STDIO_FILE_INIT_BUFPUTC((buf)) \
  161. __STDIO_FILE_INIT_CUSTOM_STREAM(stream) \
  162. __STDIO_FILE_INIT_THREADSAFE \
  163. } /* TODO: mbstate and builtin buf */
  164. #ifdef __STDIO_MBSTATE_DATA
  165. extern void _init_mbstate(mbstate_t *dest);
  166. #define __COMMA_CLEAN_MBSTATE , 0
  167. #define __COPY_MBSTATE(dest,src) memcpy(dest, src, sizeof(mbstate_t))
  168. #define __INIT_MBSTATE(dest) _init_mbstate(dest)
  169. #else
  170. #define __COMMA_CLEAN_MBSTATE
  171. #define __COPY_MBSTATE(dest,src)
  172. #define __INIT_MBSTATE(dest)
  173. #endif
  174. #ifdef __STDIO_GLIBC_CUSTOM_STREAMS
  175. /* TODO -- what does glibc do for undefined funcs? errno set? */
  176. #define __READ(STREAMPTR,BUF,SIZE) \
  177. ((((STREAMPTR)->gcs.read) == NULL) ? -1 : \
  178. (((STREAMPTR)->gcs.read)((STREAMPTR)->cookie,(BUF),(SIZE))))
  179. #define __WRITE(STREAMPTR,BUF,SIZE) \
  180. ((((STREAMPTR)->gcs.write) == NULL) ? -1 : \
  181. (((STREAMPTR)->gcs.write)((STREAMPTR)->cookie,(BUF),(SIZE))))
  182. #define __CLOSE(STREAMPTR) \
  183. ((((STREAMPTR)->gcs.close) == NULL) ? 0 : \
  184. (((STREAMPTR)->gcs.close)((STREAMPTR)->cookie)))
  185. #else /* __STDIO_GLIBC_CUSTOM_STREAMS */
  186. #define __READ(STREAMPTR,BUF,SIZE) \
  187. (read((STREAMPTR)->filedes,(BUF),(SIZE)))
  188. #define __WRITE(STREAMPTR,BUF,SIZE) \
  189. (write((STREAMPTR)->filedes,(BUF),(SIZE)))
  190. #define __CLOSE(STREAMPTR) \
  191. (close((STREAMPTR)->filedes))
  192. #endif /* __STDIO_GLIBC_CUSTOM_STREAMS */
  193. /**********************************************************************/
  194. /* POSIX functions */
  195. /**********************************************************************/
  196. #ifdef L_getw
  197. /* SUSv2 Legacy function -- need not be reentrant. */
  198. int getw (register FILE *stream)
  199. {
  200. int aw[1];
  201. #ifdef __STDIO_WIDE
  202. return (fread((void *)aw, sizeof(int), 1, stream) > 0) ? (*aw) : EOF;
  203. #else /* __STDIO_WIDE */
  204. return (_stdio_fread((unsigned char *)(aw), sizeof(int), stream)
  205. == sizeof(int)) ? (*aw) : EOF;
  206. #endif /* __STDIO_WIDE */
  207. }
  208. #endif
  209. /**********************************************************************/
  210. #ifdef L_putw
  211. /* SUSv2 Legacy function -- need not be reentrant. */
  212. int putw (int w, register FILE *stream)
  213. {
  214. int aw[1];
  215. *aw = w; /* In case 'w' is in a register... */
  216. #ifdef __STDIO_WIDE
  217. return (fwrite((void *)aw, sizeof(int), 1, stream) == 1) ? 0 : EOF;
  218. #else /* __STDIO_WIDE */
  219. return (_stdio_fwrite((unsigned char *)aw, sizeof(int), stream)
  220. == sizeof(int)) ? 0 : EOF;
  221. #endif /* __STDIO_WIDE */
  222. }
  223. #endif
  224. /**********************************************************************/
  225. #ifdef L_fileno
  226. /* Reentrancy handled by UNLOCKED() macro. */
  227. UNLOCKED(int,fileno,(register FILE *stream),(stream))
  228. {
  229. #ifdef __STDIO_GLIBC_CUSTOM_STREAMS
  230. return ( ((stream->cookie == &(stream->filedes)) && (stream->filedes >= 0))
  231. ? stream->filedes
  232. : (__set_errno(EBADF), -1) );
  233. #else /* __STDIO_GLIBC_CUSTOM_STREAMS */
  234. return (stream->filedes >= 0) ? stream->filedes : (__set_errno(EBADF), -1);
  235. #endif /* __STDIO_GLIBC_CUSTOM_STREAMS */
  236. }
  237. #endif
  238. /**********************************************************************/
  239. #ifdef L_fdopen
  240. /* No reentrancy issues. */
  241. FILE *fdopen(int filedes, const char *mode)
  242. {
  243. register char *cur_mode; /* TODO -- replace by intptr_t?? */
  244. return (((int)(cur_mode = (char *) fcntl(filedes, F_GETFL))) != -1)
  245. ? _stdio_fopen(cur_mode, mode, NULL, filedes)
  246. : NULL;
  247. }
  248. #endif
  249. /**********************************************************************/
  250. #ifdef L_fopen64
  251. /* No reentrancy issues. */
  252. FILE *fopen64(const char * __restrict filename, const char * __restrict mode)
  253. {
  254. return _stdio_fopen(filename, mode, NULL, -2);
  255. }
  256. #endif
  257. /**********************************************************************/
  258. /* BSD functions */
  259. /**********************************************************************/
  260. #ifdef L_setbuffer
  261. /* No reentrancy issues. */
  262. void setbuffer(FILE * __restrict stream, register char * __restrict buf,
  263. size_t size)
  264. {
  265. #ifdef __STDIO_BUFFERS
  266. setvbuf(stream, buf, (buf ? _IOFBF : _IONBF), size);
  267. #else /* __STDIO_BUFFERS */
  268. /* Nothing to do. */
  269. #endif /* __STDIO_BUFFERS */
  270. }
  271. #endif
  272. /**********************************************************************/
  273. #ifdef L_setlinebuf
  274. /* No reentrancy issues. */
  275. void setlinebuf(FILE * __restrict stream)
  276. {
  277. #ifdef __STDIO_BUFFERS
  278. setvbuf(stream, NULL, _IOLBF, (size_t) BUFSIZ);
  279. #else /* __STDIO_BUFFERS */
  280. /* Nothing to do. */
  281. #endif /* __STDIO_BUFFERS */
  282. }
  283. #endif
  284. /**********************************************************************/
  285. /* GLIBC functions */
  286. /**********************************************************************/
  287. #ifdef L_fcloseall
  288. /* NOTE: GLIBC difference!!! -- fcloseall
  289. * According to the info pages, glibc actually fclose()s all open files.
  290. * Apparently, glibc's new version only fflush()s and unbuffers all
  291. * writing streams to cope with unordered destruction of c++ static
  292. * objects. Here we implement the old behavior as default.
  293. */
  294. /* Not reentrant. */
  295. int fcloseall (void)
  296. {
  297. #if defined(__STDIO_BUFFERS) || defined(__STDIO_GLIBC_CUSTOM_STREAMS)
  298. register FILE *stream;
  299. int rv;
  300. _stdio_term(); /* Let _stdio_term() do all the work. */
  301. rv = 0;
  302. for (stream = _stdio_openlist ; stream ; stream = stream->nextopen) {
  303. if (stream->modeflags & (__FLAG_WRITING|__FLAG_ERROR)) {
  304. /* TODO -- is this correct? Maybe ferror set before flush...
  305. * could check if pending writable but what if term unbuffers?
  306. * in that case, could clear error flag... */
  307. rv = EOF; /* Only care about failed writes. */
  308. }
  309. }
  310. /* Make sure _stdio_term() does nothing on exit. */
  311. _stdio_openlist = NULL;
  312. return rv;
  313. #else /* defined(__STDIO_BUFFERS) || defined(__STDIO_GLIBC_CUSTOM_STREAMS) */
  314. return 0;
  315. #endif /* defined(__STDIO_BUFFERS) || defined(__STDIO_GLIBC_CUSTOM_STREAMS) */
  316. }
  317. #endif
  318. /**********************************************************************/
  319. #ifdef L_fmemopen
  320. #ifdef __STDIO_GLIBC_CUSTOM_STREAMS
  321. typedef struct {
  322. size_t pos;
  323. size_t len;
  324. size_t eof;
  325. int dynbuf;
  326. unsigned char *buf;
  327. FILE *fp;
  328. } __fmo_cookie;
  329. #define COOKIE ((__fmo_cookie *) cookie)
  330. static ssize_t fmo_read(void *cookie, register char *buf, size_t bufsize)
  331. {
  332. size_t count = COOKIE->len - COOKIE->pos;
  333. /* Note: bufsize < SSIZE_MAX because of _stdio_READ. */
  334. if (bufsize > count) {
  335. bufsize = count;
  336. }
  337. #if 1 /* TODO - choose code option */
  338. memcpy(buf, COOKIE->buf + COOKIE->pos, bufsize);
  339. COOKIE->pos += bufsize;
  340. #else
  341. {
  342. register char *p = COOKIE->buf + COOKIE->pos;
  343. count = bufsize;
  344. while (count) {
  345. *buf++ = *p++;
  346. --count;
  347. }
  348. COOKIE->pos += bufsize;
  349. }
  350. #endif
  351. return bufsize;
  352. }
  353. static ssize_t fmo_write(void *cookie, register const char *buf, size_t bufsize)
  354. {
  355. size_t count;
  356. /* Note: bufsize < SSIZE_MAX because of _stdio_WRITE. */
  357. /* If appending, need to seek to end of file!!!! */
  358. if (COOKIE->fp->modeflags & __FLAG_APPEND) {
  359. COOKIE->pos = COOKIE->eof;
  360. }
  361. count = COOKIE->len - COOKIE->pos;
  362. if (bufsize > count) {
  363. bufsize = count;
  364. if (count == 0) { /* We're at the end of the buffer... */
  365. errno = EFBIG;
  366. return -1;
  367. }
  368. }
  369. #if 1 /* TODO - choose code option */
  370. memcpy(COOKIE->buf + COOKIE->pos, buf, bufsize);
  371. COOKIE->pos += bufsize;
  372. if (COOKIE->pos > COOKIE->eof) {
  373. COOKIE->eof = COOKIE->pos;
  374. if (bufsize < count) { /* New eof and still room in buffer? */
  375. *(COOKIE->buf + COOKIE->pos) = 0;
  376. }
  377. }
  378. #else
  379. {
  380. register char *p = COOKIE->buf + COOKIE->pos;
  381. size_t i = bufsize;
  382. while (i > 0) {
  383. *p++ = *buf++;
  384. --i;
  385. }
  386. COOKIE->pos += bufsize;
  387. if (COOKIE->pos > COOKIE->eof) {
  388. COOKIE->eof = COOKIE->pos;
  389. if (bufsize < count) { /* New eof and still room in buffer? */
  390. *p = 0;
  391. }
  392. }
  393. }
  394. #endif
  395. return bufsize;
  396. }
  397. /* glibc doesn't allow seeking, but it has in-buffer seeks... we don't. */
  398. static int fmo_seek(void *cookie, __offmax_t *pos, int whence)
  399. {
  400. __offmax_t p = *pos;
  401. /* Note: fseek already checks that whence is legal, so don't check here
  402. * unless debugging. */
  403. assert(((unsigned int) whence) <= 2);
  404. if (whence != SEEK_SET) {
  405. p += (whence == SEEK_CUR) ? COOKIE->pos : /* SEEK_END */ COOKIE->eof;
  406. }
  407. /* Note: glibc only allows seeking in the buffer. We'll actually restrict
  408. * to the data. */
  409. /* Check for offset < 0, offset > eof, or offset overflow... */
  410. if (((uintmax_t) p) > COOKIE->eof) {
  411. return -1;
  412. }
  413. COOKIE->pos = *pos = p;
  414. return 0;
  415. }
  416. static int fmo_close(void *cookie)
  417. {
  418. if (COOKIE->dynbuf) {
  419. free(COOKIE->buf);
  420. }
  421. free(cookie);
  422. return 0;
  423. }
  424. #undef COOKIE
  425. static const cookie_io_functions_t _fmo_io_funcs = {
  426. fmo_read, fmo_write, fmo_seek, fmo_close
  427. };
  428. /* TODO: If we have buffers enabled, it might be worthwile to add a pointer
  429. * to the FILE in the cookie and have read, write, and seek operate directly
  430. * on the buffer itself (ie replace the FILE buffer with the cookie buffer
  431. * and update FILE bufstart, etc. whenever we seek). */
  432. FILE *fmemopen(void *s, size_t len, const char *modes)
  433. {
  434. FILE *fp;
  435. __fmo_cookie *cookie;
  436. size_t i;
  437. if ((cookie = malloc(sizeof(__fmo_cookie))) != NULL) {
  438. cookie->len = len;
  439. cookie->eof = cookie->pos = 0; /* pos and eof adjusted below. */
  440. cookie->dynbuf = 0;
  441. if (((cookie->buf = s) == NULL) && (len > 0)) {
  442. if ((cookie->buf = malloc(len)) == NULL) {
  443. goto EXIT_cookie;
  444. }
  445. cookie->dynbuf = 1;
  446. *cookie->buf = 0; /* If we're appending, treat as empty file. */
  447. }
  448. #ifndef __BCC__
  449. fp = fopencookie(cookie, modes, _fmo_io_funcs);
  450. #else
  451. fp = fopencookie(cookie, modes, &_fmo_io_funcs);
  452. #endif
  453. /* Note: We don't need to worry about locking fp in the thread case
  454. * as the only possible access would be a close or flush with
  455. * nothing currently in the FILE's write buffer. */
  456. if (fp != NULL) {
  457. cookie->fp = fp;
  458. if ((fp->modeflags & __FLAG_APPEND) && (len > 0)) {
  459. for (i = 0 ; i < len ; i++) {
  460. if (cookie->buf[i] == 0) {
  461. break;
  462. }
  463. }
  464. cookie->eof = cookie->pos = i; /* Adjust eof and pos. */
  465. }
  466. return fp;
  467. }
  468. }
  469. if (!s) {
  470. free(cookie->buf);
  471. }
  472. EXIT_cookie:
  473. free(cookie);
  474. return NULL;
  475. }
  476. #endif /* __STDIO_GLIBC_CUSTOM_STREAMS */
  477. #endif
  478. /**********************************************************************/
  479. #ifdef L_open_memstream
  480. #ifdef __STDIO_GLIBC_CUSTOM_STREAMS
  481. #define COOKIE ((__oms_cookie *) cookie)
  482. typedef struct {
  483. char *buf;
  484. size_t len;
  485. size_t pos;
  486. size_t eof;
  487. char **bufloc;
  488. size_t *sizeloc;
  489. } __oms_cookie;
  490. /* Nothing to do here, as memstreams are write-only. */
  491. /* static ssize_t oms_read(void *cookie, char *buf, size_t bufsize) */
  492. /* { */
  493. /* } */
  494. static ssize_t oms_write(void *cookie, const char *buf, size_t bufsize)
  495. {
  496. char *newbuf;
  497. size_t count;
  498. /* Note: we already know bufsize < SSIZE_MAX... */
  499. count = COOKIE->len - COOKIE->pos - 1;
  500. assert(COOKIE->pos < COOKIE->len); /* Always nul-terminate! */
  501. if (bufsize > count) {
  502. newbuf = realloc(COOKIE->buf, COOKIE->len + bufsize - count);
  503. if (newbuf) {
  504. *COOKIE->bufloc = COOKIE->buf = newbuf;
  505. COOKIE->len += (bufsize - count);
  506. } else {
  507. bufsize = count;
  508. if (count == 0) {
  509. errno = EFBIG; /* TODO: check glibc errno setting... */
  510. return -1;
  511. }
  512. }
  513. }
  514. memcpy(COOKIE->buf + COOKIE->pos, buf, bufsize);
  515. COOKIE->pos += bufsize;
  516. if (COOKIE->pos > COOKIE->eof) {
  517. *COOKIE->sizeloc = COOKIE->eof = COOKIE->pos;
  518. }
  519. return bufsize;
  520. }
  521. static int oms_seek(void *cookie, __offmax_t *pos, int whence)
  522. {
  523. __offmax_t p = *pos;
  524. char *buf;
  525. size_t leastlen;
  526. /* Note: fseek already checks that whence is legal, so don't check here
  527. * unless debugging. */
  528. assert(((unsigned int) whence) <= 2);
  529. if (whence != SEEK_SET) {
  530. p += (whence == SEEK_CUR) ? COOKIE->pos : /* SEEK_END */ COOKIE->eof;
  531. }
  532. /* Note: glibc only allows seeking in the buffer. We'll actually restrict
  533. * to the data. */
  534. /* Check for offset < 0, offset >= too big (need nul), or overflow... */
  535. if (((uintmax_t) p) >= SIZE_MAX - 1) {
  536. return -1;
  537. }
  538. leastlen = ((size_t) p) + 1; /* New pos + 1 for nul if necessary. */
  539. if (leastlen >= COOKIE->len) { /* Need to grow buffer... */
  540. buf = realloc(COOKIE->buf, leastlen);
  541. if (buf) {
  542. *COOKIE->bufloc = COOKIE->buf = buf;
  543. COOKIE->len = leastlen;
  544. memset(buf + COOKIE->eof, leastlen - COOKIE->eof, 0); /* 0-fill */
  545. } else {
  546. /* TODO: check glibc errno setting... */
  547. return -1;
  548. }
  549. }
  550. *pos = COOKIE->pos = --leastlen;
  551. if (leastlen > COOKIE->eof) {
  552. memset(COOKIE->buf + COOKIE->eof, leastlen - COOKIE->eof, 0);
  553. *COOKIE->sizeloc = COOKIE->eof;
  554. }
  555. return 0;
  556. }
  557. static int oms_close(void *cookie)
  558. {
  559. free(cookie);
  560. return 0;
  561. }
  562. #undef COOKIE
  563. static const cookie_io_functions_t _oms_io_funcs = {
  564. NULL, oms_write, oms_seek, oms_close
  565. };
  566. /* TODO: If we have buffers enabled, it might be worthwile to add a pointer
  567. * to the FILE in the cookie and operate directly on the buffer itself
  568. * (ie replace the FILE buffer with the cookie buffer and update FILE bufstart,
  569. * etc. whenever we seek). */
  570. FILE *open_memstream(char **__restrict bufloc, size_t *__restrict sizeloc)
  571. {
  572. __oms_cookie *cookie;
  573. FILE *fp;
  574. if ((cookie = malloc(sizeof(__oms_cookie))) != NULL) {
  575. if ((cookie->buf = malloc(cookie->len = BUFSIZ)) == NULL) {
  576. goto EXIT_cookie;
  577. }
  578. *cookie->buf = 0; /* Set nul terminator for buffer. */
  579. *(cookie->bufloc = bufloc) = cookie->buf;
  580. *(cookie->sizeloc = sizeloc) = cookie->eof = cookie->pos = 0;
  581. #ifndef __BCC__
  582. fp = fopencookie(cookie, "w", _oms_io_funcs);
  583. #else
  584. fp = fopencookie(cookie, "w", &_oms_io_funcs);
  585. #endif
  586. /* Note: We don't need to worry about locking fp in the thread case
  587. * as the only possible access would be a close or flush with
  588. * nothing currently in the FILE's write buffer. */
  589. if (fp != NULL) {
  590. return fp;
  591. }
  592. }
  593. if (cookie->buf != NULL) {
  594. free(cookie->buf);
  595. }
  596. EXIT_cookie:
  597. free(cookie);
  598. return NULL;
  599. }
  600. #endif /* __STDIO_GLIBC_CUSTOM_STREAMS */
  601. #endif
  602. /**********************************************************************/
  603. #ifdef L_fopencookie
  604. #ifdef __STDIO_GLIBC_CUSTOM_STREAMS
  605. /* NOTE: GLIBC difference!!! -- fopencookie
  606. * According to the info pages, glibc allows seeking within buffers even if
  607. * no seek function is supplied. We don't. */
  608. /* NOTE: GLIBC difference!!! -- fopencookie
  609. * When compiled without large file support, the offset pointer for the
  610. * cookie_seek function is off_t * and not off64_t * as for glibc. */
  611. /* TODO: rewrite _stdio_fopen() to avoid the fopencookie() kludge. */
  612. /* Currently no real reentrancy issues other than a possible double close(). */
  613. #ifndef __BCC__
  614. FILE *fopencookie (void * __restrict cookie, const char * __restrict mode,
  615. cookie_io_functions_t io_functions)
  616. {
  617. FILE *stream;
  618. int fd;
  619. if ((stream = _stdio_fopen("/dev/null", mode, NULL, -1)) != NULL) {
  620. fd = stream->filedes;
  621. stream->filedes = -1;
  622. close(fd);
  623. stream->gcs = io_functions;
  624. stream->cookie = cookie;
  625. }
  626. #if !defined(__STDIO_BUFFERS) && !defined(__STDIO_THREADSAFE)
  627. /* I we don't have buffers or threads, we only need to worry about
  628. * custom streams on the open list, as no flushing is necessary and
  629. * no locking of possible underlying normal streams need be done.
  630. * We do need to explicitly close custom streams on termination of stdio,
  631. * and we need to lock the list as it can be modified by fclose(). */
  632. __STDIO_THREADLOCK_OPENLIST;
  633. stream->nextopen = _stdio_openlist; /* New files are inserted at */
  634. _stdio_openlist = stream; /* the head of the list. */
  635. __STDIO_THREADUNLOCK_OPENLIST;
  636. #endif /* !defined(__STDIO_BUFFERS) && !defined(__STDIO_THREADSAFE) */
  637. return stream;
  638. }
  639. #else /* __BCC__ */
  640. /* NOTE: GLIBC difference!!! -- fopencookie (bcc only)
  641. * Since bcc doesn't support passing of structs, we define fopencookie as a
  642. * macro in terms of _fopencookie which takes a struct * for the io functions
  643. * instead.
  644. */
  645. FILE *_fopencookie (void * __restrict cookie, const char * __restrict mode,
  646. cookie_io_functions_t *io_functions)
  647. {
  648. FILE *stream;
  649. if ((stream = _stdio_fopen("/dev/null", mode, NULL, -1)) != NULL) {
  650. int fd = stream->filedes;
  651. stream->filedes = -1;
  652. close(fd);
  653. stream->gcs.read = io_functions->read;
  654. stream->gcs.write = io_functions->write;
  655. stream->gcs.seek = io_functions->seek;
  656. stream->gcs.close = io_functions->close;
  657. stream->cookie = cookie;
  658. }
  659. #if !defined(__STDIO_BUFFERS) && !defined(__STDIO_THREADSAFE)
  660. /* I we don't have buffers or threads, we only need to worry about
  661. * custom streams on the open list, as no flushing is necessary and
  662. * no locking of possible underlying normal streams need be done.
  663. * We do need to explicitly close custom streams on termination of stdio,
  664. * and we need to lock the list as it can be modified by fclose(). */
  665. __STDIO_THREADLOCK_OPENLIST;
  666. stream->nextopen = _stdio_openlist; /* New files are inserted at */
  667. _stdio_openlist = stream; /* the head of the list. */
  668. __STDIO_THREADUNLOCK_OPENLIST;
  669. #endif /* !defined(__STDIO_BUFFERS) && !defined(__STDIO_THREADSAFE) */
  670. return stream;
  671. }
  672. #endif /* __BCC__ */
  673. #endif /* __STDIO_GLIBC_CUSTOM_STREAMS */
  674. #endif
  675. /**********************************************************************/
  676. #ifdef L___fbufsize
  677. /* Not reentrant. */
  678. size_t __fbufsize(register FILE * __restrict stream)
  679. {
  680. #ifdef __STDIO_BUFFERS
  681. return (stream->modeflags & __FLAG_NBF)
  682. ? 0 : (stream->bufend - stream->bufstart);
  683. #else /* __STDIO_BUFFERS */
  684. return 0;
  685. #endif /* __STDIO_BUFFERS */
  686. }
  687. #endif
  688. /**********************************************************************/
  689. #ifdef L___freading
  690. /* No reentrancy issues. */
  691. int __freading(FILE * __restrict stream)
  692. {
  693. return stream->modeflags & (__FLAG_READING|__FLAG_READONLY);
  694. }
  695. #endif
  696. /**********************************************************************/
  697. #ifdef L___fwriting
  698. /* No reentrancy issues. */
  699. int __fwriting(FILE * __restrict stream)
  700. {
  701. return stream->modeflags & (__FLAG_WRITING|__FLAG_WRITEONLY);
  702. }
  703. #endif
  704. /**********************************************************************/
  705. #ifdef L___freadable
  706. /* No reentrancy issues. */
  707. int __freadable(FILE * __restrict stream)
  708. {
  709. return ~(stream->modeflags & __FLAG_WRITEONLY);
  710. }
  711. #endif
  712. /**********************************************************************/
  713. #ifdef L___fwritable
  714. /* No reentrancy issues. */
  715. int __fwritable(FILE * __restrict stream)
  716. {
  717. return ~(stream->modeflags & __FLAG_READONLY);
  718. }
  719. #endif
  720. /**********************************************************************/
  721. #ifdef L___flbf
  722. /* No reentrancy issues. */
  723. int __flbf(FILE * __restrict stream)
  724. {
  725. #ifdef __STDIO_BUFFERS
  726. return (stream->modeflags & __FLAG_LBF);
  727. #else /* __STDIO_BUFFERS */
  728. /* TODO -- Even though there is no buffer, return flag setting? */
  729. return __FLAG_NBF;
  730. #endif /* __STDIO_BUFFERS */
  731. }
  732. #endif
  733. /**********************************************************************/
  734. #ifdef L___fpurge
  735. /* Not reentrant. */
  736. void __fpurge(register FILE * __restrict stream)
  737. {
  738. #ifdef __STDIO_BUFFERS
  739. #ifdef __STDIO_PUTC_MACRO
  740. stream->bufputc = /* Must disable putc. */
  741. #endif /* __STDIO_PUTC_MACRO */
  742. #ifdef __STDIO_GETC_MACRO
  743. stream->bufgetc = /* Must disable getc. */
  744. #endif
  745. stream->bufwpos = stream->bufrpos = stream->bufstart; /* Reset pointers. */
  746. #endif /* __STDIO_BUFFERS */
  747. /* Reset r/w flags and clear ungots. */
  748. stream->modeflags &= ~(__FLAG_READING|__FLAG_WRITING|__MASK_UNGOT);
  749. }
  750. #endif
  751. /**********************************************************************/
  752. #ifdef L___fpending
  753. /* Not reentrant. */
  754. #ifdef __STDIO_WIDE
  755. #warning TODO -- implement __fpending for wide streams! */
  756. #else /* __STDIO_WIDE */
  757. size_t __fpending(register FILE * __restrict stream)
  758. {
  759. #ifdef __STDIO_BUFFERS
  760. /* TODO -- should we check this? should we set errno? just assert? */
  761. return (stream->modeflags & (__FLAG_READING|__FLAG_READONLY))
  762. ? 0 : (stream->bufwpos - stream->bufstart);
  763. #else /* __STDIO_BUFFERS */
  764. return 0;
  765. #endif /* __STDIO_BUFFERS */
  766. }
  767. #endif /* __STDIO_WIDE */
  768. #endif
  769. /**********************************************************************/
  770. #ifdef L__flushlbf
  771. /* No reentrancy issues. */
  772. void _flushlbf(void)
  773. {
  774. #ifdef __STDIO_BUFFERS
  775. fflush((FILE *) &_stdio_openlist); /* Uses an implementation hack!!! */
  776. #else /* __STDIO_BUFFERS */
  777. /* Nothing to do. */
  778. #endif /* __STDIO_BUFFERS */
  779. }
  780. #endif
  781. /**********************************************************************/
  782. #ifdef L___fsetlocking
  783. /* No (serious) reentrancy issues -- return value could be incorrect. */
  784. /* TODO -- fix race */
  785. int __fsetlocking(FILE *stream, int locking_mode)
  786. {
  787. int old_mode;
  788. assert((FSETLOCKING_QUERY == 0) && (FSETLOCKING_INTERNAL == 1)
  789. && (FSETLOCKING_BYCALLER == 2));
  790. assert(((unsigned int) locking_mode) <= 2);
  791. /* Note: don't even bother locking here... */
  792. old_mode = stream->user_locking;
  793. if (locking_mode != FSETLOCKING_QUERY) {
  794. /* In case we're not debugging, treat any unknown as a request to
  795. * set internal locking, in order to match glibc behavior. */
  796. stream->user_locking = ((locking_mode == FSETLOCKING_BYCALLER)
  797. ? FSETLOCKING_BYCALLER
  798. : FSETLOCKING_INTERNAL);
  799. }
  800. return old_mode;
  801. }
  802. #endif
  803. /**********************************************************************/
  804. #ifdef L_flockfile
  805. void flockfile(FILE *stream)
  806. {
  807. pthread_mutex_lock(&stream->lock);
  808. }
  809. #endif
  810. /**********************************************************************/
  811. #ifdef L_ftrylockfile
  812. int ftrylockfile(FILE *stream)
  813. {
  814. return pthread_mutex_trylock(&stream->lock);
  815. }
  816. #endif
  817. /**********************************************************************/
  818. #ifdef L_funlockfile
  819. void funlockfile(FILE *stream)
  820. {
  821. pthread_mutex_unlock(&stream->lock);
  822. }
  823. #endif
  824. /**********************************************************************/
  825. /* my extension functions */
  826. /**********************************************************************/
  827. #ifdef L__stdio_fsfopen
  828. /*
  829. * Stack|Static File open -- open a file where the FILE is either
  830. * stack or staticly allocated.
  831. */
  832. /* No reentrancy issues. */
  833. FILE *_stdio_fsfopen(const char * __restrict filename,
  834. const char * __restrict mode,
  835. register FILE * __restrict stream)
  836. {
  837. #ifdef __STDIO_BUFFERS
  838. stream->modeflags = __FLAG_FBF;
  839. #if __STDIO_BUILTIN_BUF_SIZE > 0
  840. stream->bufstart = stream->builtinbuf;
  841. stream->bufend = stream->builtinbuf + sizeof(stream->builtinbuf);
  842. #else /* __STDIO_BUILTIN_BUF_SIZE > 0 */
  843. stream->bufend = stream->bufstart = NULL;
  844. #endif /* __STDIO_BUILTIN_BUF_SIZE > 0 */
  845. #endif /* __STDIO_BUFFERS */
  846. return _stdio_fopen(filename, mode, stream, -1);
  847. }
  848. #endif
  849. /**********************************************************************/
  850. /* stdio internal functions */
  851. /**********************************************************************/
  852. #ifdef L__stdio_adjpos
  853. /*
  854. * ANSI/ISO p. 370: The file positioning indicator is unspecified after
  855. * a successful call to ungetwc.
  856. * Note however, that this applies only to _user_ calls to ungetwc. We
  857. * need to allow for internal calls by scanf. So we store the byte count
  858. * of the first ungot wide char in ungot0_bytes. If it is 0 (user case)
  859. * then the file position is treated as unknown.
  860. */
  861. /* Internal function -- not reentrant. */
  862. int _stdio_adjpos(register FILE * __restrict stream,
  863. register __offmax_t *pos)
  864. {
  865. __offmax_t r;
  866. int cor = stream->modeflags & __MASK_UNGOT; /* handle ungots */
  867. #ifdef __STDIO_WIDE
  868. /* Assumed narrow stream so correct if wide. */
  869. if (cor && (stream->modeflags & __FLAG_WIDE)) {
  870. cor = cor - 1 + stream->ungot_width[0];
  871. if ((stream->ungot_width[0] == 0) /* don't know byte count or */
  872. || ((stream->modeflags & __MASK_UNGOT) > 1)) { /* app case */
  873. return -1;
  874. }
  875. }
  876. #endif /* __STDIO_WIDE */
  877. #ifdef __STDIO_BUFFERS
  878. if (stream->modeflags & __FLAG_WRITING) {
  879. cor -= (stream->bufwpos - stream->bufstart); /* pending writes */
  880. }
  881. if (stream->modeflags & __FLAG_READING) {
  882. cor += (stream->bufwpos - stream->bufrpos); /* extra's read */
  883. }
  884. #endif /* __STDIO_BUFFERS */
  885. r = *pos;
  886. return ((*pos -= cor) > r) ? -cor : cor;
  887. }
  888. #endif
  889. /**********************************************************************/
  890. #ifdef L__stdio_lseek
  891. /*
  892. * This function is only called by fseek and ftell.
  893. * fseek -- doesn't care about pos val, just success or failure.
  894. * ftell -- needs pos val but offset == 0 and whence == SET_CUR.
  895. */
  896. /* Internal function -- not reentrant. */
  897. int _stdio_lseek(FILE *stream, __offmax_t *pos, int whence)
  898. {
  899. __offmax_t res;
  900. #ifdef __STDIO_GLIBC_CUSTOM_STREAMS
  901. if (stream->cookie != &stream->filedes) {
  902. return (((stream->gcs.seek == NULL)
  903. || ((stream->gcs.seek)(stream->cookie, pos, whence) < 0))
  904. ? -1 : 0);
  905. }
  906. #endif /* __STDIO_GLIBC_CUSTOM_STREAMS */
  907. #ifdef __STDIO_LARGE_FILES
  908. res = lseek64(stream->filedes, *pos, whence);
  909. #else
  910. res = lseek(stream->filedes, *pos, whence);
  911. #endif /* __STDIO_LARGE_FILES */
  912. return (res >= 0) ? ((*pos = res), 0) : -1;
  913. }
  914. #endif
  915. /**********************************************************************/
  916. #ifdef L__stdio_fread
  917. /*
  918. * NOTE!!! This routine is meant to be callable by both narrow and wide
  919. * functions. However, if called by a wide function, there must be
  920. * NO pending ungetwc()s!!!
  921. */
  922. /* Unlike write, it's ok for read to return fewer than bufsize, since
  923. * we may not need all of them. */
  924. static ssize_t _stdio_READ(FILE *stream, void *buf, size_t bufsize)
  925. {
  926. ssize_t rv;
  927. if (bufsize == 0) {
  928. return 0;
  929. }
  930. if (bufsize > SSIZE_MAX) {
  931. bufsize = SSIZE_MAX;
  932. }
  933. #ifdef __BCC__
  934. TRY_READ:
  935. #endif
  936. rv = __READ(stream, buf, bufsize);
  937. if (rv > 0) {
  938. #ifdef __STDIO_GLIBC_CUSTOM_STREAMS
  939. assert(rv <= bufsize); /* buggy user handler... TODO: check? */
  940. if (rv > bufsize) { /* Num reported written > number requested */
  941. rv = bufsize; /* Treat as a full read??? */
  942. }
  943. #endif
  944. } else if (rv == 0) {
  945. stream->modeflags |= __FLAG_EOF;
  946. } else {
  947. #ifdef __BCC__
  948. if (errno == EINTR) {
  949. goto TRY_READ;
  950. }
  951. #endif
  952. stream->modeflags |= __FLAG_ERROR;
  953. rv = 0;
  954. }
  955. return rv;
  956. }
  957. /* Internal function -- not reentrant. */
  958. size_t _stdio_fread(unsigned char *buffer, size_t bytes,
  959. register FILE *stream)
  960. {
  961. __stdio_validate_FILE(stream); /* debugging only */
  962. #ifdef __STDIO_BUFFERS
  963. if (stream->modeflags
  964. #ifdef __STDIO_AUTO_RW_TRANSITION
  965. & (__FLAG_WRITEONLY)
  966. #else /* __STDIO_AUTO_RW_TRANSITION */
  967. /* ANSI/ISO and SUSv3 require not currently writing. */
  968. & (__FLAG_WRITEONLY|__FLAG_WRITING)
  969. #endif /* __STDIO_AUTO_RW_TRANSITION */
  970. ) {
  971. #ifdef __STDIO_PUTC_MACRO
  972. stream->bufputc = stream->bufstart; /* Must disable putc. */
  973. #endif /* __STDIO_PUTC_MACRO */
  974. stream->modeflags |= __FLAG_ERROR;
  975. /* TODO: This is for posix behavior if writeonly. To save space, we
  976. * use this errno for read attempt while writing, as no errno is
  977. * specified by posix for this case, even though the restriction is
  978. * mentioned in fopen(). */
  979. errno = EBADF;
  980. return 0;
  981. }
  982. /* We need to disable putc and getc macros in case of error */
  983. #if defined(__STDIO_PUTC_MACRO) || defined(__STDIO_GETC_MACRO)
  984. #ifdef __STDIO_PUTC_MACRO
  985. stream->bufputc =
  986. #endif /* __STDIO_GETC_MACRO */
  987. #ifdef __STDIO_GETC_MACRO
  988. stream->bufgetc =
  989. #endif /* __STDIO_GETC_MACRO */
  990. stream->bufstart;
  991. #endif /* defined(__STDIO_PUTC_MACRO) || defined(__STDIO_GETC_MACRO) */
  992. if (stream->modeflags & __MASK_BUFMODE) {
  993. /* If the stream is readable and not fully buffered, we must first
  994. * flush all line buffered output streams. Do this before the
  995. * error check as this may be a read/write line-buffered stream. */
  996. fflush((FILE *) &_stdio_openlist); /* Uses an implementation hack!!! */
  997. }
  998. #ifdef __STDIO_AUTO_RW_TRANSITION
  999. if (stream->modeflags & __FLAG_WRITING) {
  1000. /* TODO -- return if error? Test glibc behavior with a custom r/w. */
  1001. fflush(stream);
  1002. }
  1003. #endif /* __STDIO_AUTO_RW_TRANSITION */
  1004. stream->modeflags |= __FLAG_READING; /* Make sure Reading flag is set. */
  1005. {
  1006. register unsigned char *p = (unsigned char *) buffer;
  1007. /* First, grab appropriate ungetc() chars. NOT FOR WIDE ORIENTATED! */
  1008. while (bytes && (stream->modeflags & __MASK_UNGOT)) {
  1009. #ifdef __STDIO_WIDE
  1010. assert(stream->modeflags & __FLAG_NARROW);
  1011. #endif /* __STDIO_WIDE */
  1012. *p++ = stream->ungot[(--stream->modeflags) & __MASK_UNGOT];
  1013. stream->ungot[1] = 0;
  1014. --bytes;
  1015. }
  1016. /* Now get any other needed chars from the buffer or the file. */
  1017. FROM_BUF:
  1018. while (bytes && (stream->bufrpos < stream->bufwpos)) {
  1019. --bytes;
  1020. *p++ = *stream->bufrpos++;
  1021. }
  1022. if (bytes > 0) {
  1023. ssize_t len;
  1024. /* The buffer is exhausted, but we still need chars. */
  1025. stream->bufrpos = stream->bufwpos = stream->bufstart;
  1026. if (bytes <= stream->bufend - stream->bufwpos) {
  1027. /* We have sufficient space in the buffer. */
  1028. len = _stdio_READ(stream, stream->bufwpos,
  1029. stream->bufend - stream->bufwpos);
  1030. if (len > 0) {
  1031. stream->bufwpos += len;
  1032. goto FROM_BUF;
  1033. }
  1034. } else {
  1035. /* More bytes needed than fit in the buffer, so read */
  1036. /* directly into caller's buffer. */
  1037. len = _stdio_READ(stream, p, bytes);
  1038. if (len > 0) {
  1039. p += len;
  1040. bytes -= len;
  1041. goto FROM_BUF; /* Redundant work, but stops extra read. */
  1042. }
  1043. }
  1044. }
  1045. #ifdef __STDIO_GETC_MACRO
  1046. if (!(stream->modeflags & (__FLAG_WIDE|__MASK_UNGOT|__MASK_BUFMODE))) {
  1047. stream->bufgetc = stream->bufwpos; /* Enable getc macro. */
  1048. }
  1049. #endif
  1050. __stdio_validate_FILE(stream); /* debugging only */
  1051. return (p - (unsigned char *)buffer);
  1052. }
  1053. #else /* __STDIO_BUFFERS --------------------------------------- */
  1054. if (stream->modeflags
  1055. #ifdef __STDIO_AUTO_RW_TRANSITION
  1056. & (__FLAG_WRITEONLY)
  1057. #else /* __STDIO_AUTO_RW_TRANSITION */
  1058. /* ANSI/ISO and SUSv3 require not currently writing. */
  1059. & (__FLAG_WRITEONLY|__FLAG_WRITING)
  1060. #endif /* __STDIO_AUTO_RW_TRANSITION */
  1061. ) {
  1062. stream->modeflags |= __FLAG_ERROR;
  1063. /* TODO: This is for posix behavior if writeonly. To save space, we
  1064. * use this errno for read attempt while writing, as no errno is
  1065. * specified by posix for this case, even though the restriction is
  1066. * mentioned in fopen(). */
  1067. errno = EBADF;
  1068. return 0;
  1069. }
  1070. #ifdef __STDIO_AUTO_RW_TRANSITION
  1071. stream->modeflags &= ~(__FLAG_WRITING); /* Make sure Writing flag clear. */
  1072. #endif /* __STDIO_AUTO_RW_TRANSITION */
  1073. stream->modeflags |= __FLAG_READING; /* Make sure Reading flag is set. */
  1074. {
  1075. register unsigned char *p = (unsigned char *) buffer;
  1076. /* First, grab appropriate ungetc() chars. NOT FOR WIDE ORIENTATED! */
  1077. while (bytes && (stream->modeflags & __MASK_UNGOT)) {
  1078. #ifdef __STDIO_WIDE
  1079. assert(stream->modeflags & __FLAG_NARROW);
  1080. #endif /* __STDIO_WIDE */
  1081. *p++ = stream->ungot[(--stream->modeflags) & __MASK_UNGOT];
  1082. stream->ungot[1] = 0;
  1083. --bytes;
  1084. }
  1085. while (bytes > 0) {
  1086. ssize_t len = _stdio_READ(stream, p, (unsigned) bytes);
  1087. if (len == 0) {
  1088. break;
  1089. }
  1090. p += len;
  1091. bytes -= len;
  1092. }
  1093. __stdio_validate_FILE(stream); /* debugging only */
  1094. return (p - (unsigned char *)buffer);
  1095. }
  1096. #endif /* __STDIO_BUFFERS */
  1097. }
  1098. #endif
  1099. /**********************************************************************/
  1100. #ifdef L__stdio_fwrite
  1101. /*
  1102. * If buffer == NULL, attempt to fflush and return number of chars
  1103. * remaining in buffer (0 if successful fflush).
  1104. */
  1105. /* WARNING!!!! Current standards say that termination due to an asyncronous
  1106. * signal may not result in stdio streams being flushed. This libary makes
  1107. * an effort to do so but there is no way, short of blocking signals for
  1108. * each _stdio_fwrite call, that we can maintain the correct state if a
  1109. * signal is recieved mid-call. So any stream in mid-_stdio_fwrite could
  1110. * not some flush data or even duplicate-flush some data. It is possible
  1111. * to avoid the duplicate-flush case by setting/clearing the stream
  1112. * error flag before/after the write process, but it doesn't seem worth
  1113. * the trouble. */
  1114. /* Like standard write, but always does a full write unless error plus
  1115. *deals correctly with bufsize > SSIZE_MAX... not much on an issue on linux
  1116. * but definitly could be on Elks. Also on Elks, always loops for EINTR..
  1117. * Returns number of bytes written, so a short write indicates an error */
  1118. static size_t _stdio_WRITE(FILE *stream, const void *buf, size_t bufsize)
  1119. {
  1120. size_t todo;
  1121. ssize_t rv, stodo;
  1122. todo = bufsize;
  1123. while (todo) {
  1124. stodo = (todo <= SSIZE_MAX) ? todo : SSIZE_MAX;
  1125. rv = __WRITE(stream, buf, stodo);
  1126. if (rv >= 0) {
  1127. #ifdef __STDIO_GLIBC_CUSTOM_STREAMS
  1128. assert(rv <= stodo); /* buggy user handler... TODO: check? */
  1129. if (rv > stodo) { /* Num reported written > number requested */
  1130. rv = stodo; /* Treat as a full write??? */
  1131. }
  1132. #endif
  1133. todo -= rv;
  1134. buf += rv;
  1135. } else
  1136. #ifdef __BCC__
  1137. if (errno != EINTR)
  1138. #endif
  1139. {
  1140. stream->modeflags |= __FLAG_ERROR;
  1141. break;
  1142. }
  1143. }
  1144. return bufsize - todo;
  1145. }
  1146. /* Internal function -- not reentrant. */
  1147. size_t _stdio_fwrite(const unsigned char *buffer, size_t bytes,
  1148. register FILE *stream)
  1149. {
  1150. #ifdef __STDIO_BUFFERS
  1151. register const unsigned char *p;
  1152. __stdio_validate_FILE(stream); /* debugging only */
  1153. if ((stream->modeflags & __FLAG_READONLY)
  1154. #ifndef __STDIO_AUTO_RW_TRANSITION
  1155. /* ANSI/ISO requires either at EOF or currently not reading. */
  1156. || ((stream->modeflags & (__FLAG_READING|__FLAG_EOF))
  1157. == __FLAG_READING)
  1158. #endif /* __STDIO_AUTO_RW_TRANSITION */
  1159. ) {
  1160. stream->modeflags |= __FLAG_ERROR;
  1161. /* TODO: This is for posix behavior if readonly. To save space, we
  1162. * use this errno for write attempt while reading, as no errno is
  1163. * specified by posix for this case, even though the restriction is
  1164. * mentioned in fopen(). */
  1165. errno = EBADF;
  1166. return 0;
  1167. }
  1168. #ifdef __STDIO_AUTO_RW_TRANSITION
  1169. /* If we were reading, deal with ungots and buffered chars. */
  1170. if ((stream->modeflags & (__FLAG_EOF|__FLAG_WRITING|__FLAG_WRITEONLY))
  1171. == 0) {
  1172. /* If appending, we might as well seek to end to save a seek. */
  1173. fseek(stream, 0L,
  1174. ((stream->modeflags & __FLAG_APPEND) ? SEEK_END : SEEK_CUR));
  1175. /* TODO: set EOF in fseek when appropriate? */
  1176. }
  1177. #endif
  1178. /* We need to disable putc and getc macros in case of error */
  1179. #if defined(__STDIO_AUTO_RW_TRANSITION) \
  1180. || defined(__STDIO_PUTC_MACRO) || defined(__STDIO_GETC_MACRO)
  1181. #ifdef __STDIO_AUTO_RW_TRANSITION
  1182. stream->bufrpos = /* TODO -- necessary? */
  1183. #endif /* __STDIO_AUTO_RW_TRANSITION */
  1184. #ifdef __STDIO_PUTC_MACRO
  1185. stream->bufputc =
  1186. #endif /* __STDIO_GETC_MACRO */
  1187. #ifdef __STDIO_GETC_MACRO
  1188. stream->bufgetc =
  1189. #endif /* __STDIO_GETC_MACRO */
  1190. stream->bufstart;
  1191. #endif /* not using ansi restrictions ; or using putc and/or getc macro */
  1192. /* Clear both reading and writing flags. We need to clear the writing
  1193. * flag in case we're fflush()ing or in case of an error. */
  1194. stream->modeflags &= ~(__FLAG_READING|__FLAG_WRITING);
  1195. {
  1196. const unsigned char *buf0 = buffer;
  1197. if (!buffer) { /* fflush the stream */
  1198. FFLUSH:
  1199. {
  1200. size_t count = stream->bufwpos - stream->bufstart;
  1201. p = stream->bufstart;
  1202. if (stream->filedes == -2) { /* TODO -- document this hack! */
  1203. stream->modeflags |= __FLAG_WRITING;
  1204. return (!buffer) ? 0 : ((buffer - buf0) + bytes);
  1205. }
  1206. {
  1207. size_t rv = _stdio_WRITE(stream, p, count);
  1208. p += rv;
  1209. count -= rv;
  1210. }
  1211. stream->bufwpos = stream->bufstart;
  1212. while (count) {
  1213. *stream->bufwpos++ = *p++;
  1214. --count;
  1215. }
  1216. if (!buffer) { /* fflush case... */
  1217. __stdio_validate_FILE(stream); /* debugging only */
  1218. return stream->bufwpos - stream->bufstart;
  1219. }
  1220. }
  1221. }
  1222. #if 1
  1223. /* TODO: If the stream is buffered, we may be able to omit. */
  1224. if ((stream->bufwpos == stream->bufstart) /* buf empty */
  1225. && (stream->bufend - stream->bufstart <= bytes) /* fills */
  1226. && (stream->filedes != -2)) { /* not strinf fake file */
  1227. /* so want to do a direct write of supplied buffer */
  1228. {
  1229. size_t rv = _stdio_WRITE(stream, buffer, bytes);
  1230. buffer += rv;
  1231. bytes -= rv;
  1232. }
  1233. } else
  1234. #endif
  1235. /* otherwise buffer not empty and/or data fits */
  1236. {
  1237. size_t count = stream->bufend - stream->bufwpos;
  1238. p = buffer;
  1239. if (count > bytes) {
  1240. count = bytes;
  1241. }
  1242. bytes -= count;
  1243. while (count) {
  1244. *stream->bufwpos++ = *buffer++;
  1245. --count;
  1246. }
  1247. if (bytes) {
  1248. goto FFLUSH;
  1249. }
  1250. if (stream->modeflags & __FLAG_LBF) {
  1251. while (p < buffer) { /* check for newline. */
  1252. if (*p++ == '\n') {
  1253. goto FFLUSH;
  1254. }
  1255. }
  1256. }
  1257. }
  1258. #ifdef __STDIO_PUTC_MACRO
  1259. if (!(stream->modeflags & (__FLAG_WIDE|__MASK_BUFMODE))) {
  1260. /* Not wide, no errors and fully buffered, so enable putc macro. */
  1261. stream->bufputc = stream->bufend;
  1262. }
  1263. #endif /* __STDIO_GETC_MACRO */
  1264. stream->modeflags |= __FLAG_WRITING; /* Ensure Writing flag is set. */
  1265. __stdio_validate_FILE(stream); /* debugging only */
  1266. return buffer - buf0;
  1267. }
  1268. #else /* __STDIO_BUFFERS --------------------------------------- */
  1269. __stdio_validate_FILE(stream); /* debugging only */
  1270. if ((stream->modeflags & __FLAG_READONLY)
  1271. #ifndef __STDIO_AUTO_RW_TRANSITION
  1272. /* ANSI/ISO requires either at EOF or currently not reading. */
  1273. || ((stream->modeflags & (__FLAG_READING|__FLAG_EOF))
  1274. == __FLAG_READING)
  1275. #endif /* __STDIO_AUTO_RW_TRANSITION */
  1276. ) {
  1277. stream->modeflags |= __FLAG_ERROR;
  1278. /* TODO: This is for posix behavior if readonly. To save space, we
  1279. * use this errno for write attempt while reading, as no errno is
  1280. * specified by posix for this case, even though the restriction is
  1281. * mentioned in fopen(). */
  1282. errno = EBADF;
  1283. return 0;
  1284. }
  1285. /* We always clear the reading flag in case at EOF. */
  1286. stream->modeflags &= ~(__FLAG_READING);
  1287. /* Unlike the buffered case, we set the writing flag now since we don't
  1288. * need to do anything here for fflush(). */
  1289. stream->modeflags |= __FLAG_WRITING;
  1290. {
  1291. register unsigned char *p = (unsigned char *) buffer;
  1292. ssize_t rv = _stdio_WRITE(stream, p, bytes);
  1293. p += rv;
  1294. bytes -= rv;
  1295. __stdio_validate_FILE(stream); /* debugging only */
  1296. return (p - (unsigned char *)buffer);
  1297. }
  1298. #endif /* __STDIO_BUFFERS *****************************************/
  1299. }
  1300. #endif
  1301. /**********************************************************************/
  1302. #ifdef L__stdio_init
  1303. /* Internal functions -- _stdio_init() and __stdio_validate_FILE
  1304. * are not reentrant, but _stdio_term() is through fflush().
  1305. * Also, the _cs_{read|write|close} functions are not reentrant. */
  1306. #ifndef NDEBUG
  1307. void __stdio_validate_FILE(FILE *stream)
  1308. {
  1309. if (stream->filedes == -2) { /* fake FILE for sprintf, scanf, etc. */
  1310. return;
  1311. }
  1312. __STDIO_THREADLOCK(stream);
  1313. #ifdef __STDIO_BUFFERS
  1314. assert(stream->bufstart <= stream->bufrpos);
  1315. assert(stream->bufrpos <= stream->bufwpos);
  1316. assert(stream->bufwpos <= stream->bufend);
  1317. assert(stream->bufwpos <= stream->bufend);
  1318. if ((stream->modeflags & __MASK_BUFMODE) == __FLAG_NBF) {
  1319. assert(stream->bufstart == stream->bufend);
  1320. }
  1321. assert((stream->modeflags & __MASK_BUFMODE) <= __FLAG_NBF);
  1322. #endif
  1323. #ifdef __STDIO_PUTC_MACRO
  1324. assert(stream->bufstart <= stream->bufputc);
  1325. assert(stream->bufputc <= stream->bufend);
  1326. if (stream->bufstart < stream->bufputc) {
  1327. assert(stream->bufputc == stream->bufend);
  1328. assert(stream->modeflags & (__FLAG_WRITING));
  1329. assert(!(stream->modeflags
  1330. & (__FLAG_WIDE|__MASK_BUFMODE|__MASK_UNGOT|__FLAG_READONLY))
  1331. );
  1332. }
  1333. #endif
  1334. #ifdef __STDIO_GETC_MACRO
  1335. assert(stream->bufstart <= stream->bufgetc);
  1336. assert(stream->bufgetc <= stream->bufwpos);
  1337. if (stream->bufstart < stream->bufgetc) {
  1338. assert(stream->modeflags & (__FLAG_READING));
  1339. assert(!(stream->modeflags
  1340. & (__FLAG_WIDE|__MASK_BUFMODE|__MASK_UNGOT|__FLAG_WRITEONLY))
  1341. );
  1342. }
  1343. #endif
  1344. assert((stream->modeflags & __MASK_UNGOT) != __MASK_UNGOT);
  1345. if (stream->modeflags & __MASK_UNGOT1) {
  1346. assert(stream->ungot[1] <= 1);
  1347. }
  1348. if (stream->modeflags & __MASK_UNGOT) {
  1349. assert(!(stream->modeflags & __FLAG_EOF));
  1350. }
  1351. assert((stream->modeflags & (__FLAG_READONLY|__FLAG_WRITEONLY))
  1352. != (__FLAG_READONLY|__FLAG_WRITEONLY));
  1353. /* TODO -- filepos? ungot_width? filedes? nextopen? */
  1354. __STDIO_THREADUNLOCK(stream);
  1355. }
  1356. #endif
  1357. #ifdef __STDIO_GLIBC_CUSTOM_STREAMS
  1358. ssize_t _cs_read(void *cookie, char *buf, size_t bufsize)
  1359. {
  1360. return read(*((int *) cookie), buf, bufsize);
  1361. }
  1362. ssize_t _cs_write(void *cookie, const char *buf, size_t bufsize)
  1363. {
  1364. return write(*((int *) cookie), (char *) buf, bufsize);
  1365. }
  1366. int _cs_close(void *cookie)
  1367. {
  1368. return close(*((int *) cookie));
  1369. }
  1370. #endif /* __STDIO_GLIBC_CUSTOM_STREAMS */
  1371. #ifdef __STDIO_BUFFERS
  1372. static unsigned char _fixed_buffers[2 * BUFSIZ];
  1373. #define bufin (_fixed_buffers)
  1374. #define bufout (_fixed_buffers + BUFSIZ)
  1375. #endif /* __STDIO_BUFFERS */
  1376. static FILE _stdio_streams[] = {
  1377. __STDIO_INIT_FILE_STRUCT(_stdio_streams[0], __FLAG_LBF|__FLAG_READONLY, \
  1378. 0, _stdio_streams + 1, bufin, BUFSIZ ),
  1379. __STDIO_INIT_FILE_STRUCT(_stdio_streams[1], __FLAG_LBF|__FLAG_WRITEONLY, \
  1380. 1, _stdio_streams + 2, bufout, BUFSIZ ),
  1381. __STDIO_INIT_FILE_STRUCT(_stdio_streams[2], __FLAG_NBF|__FLAG_WRITEONLY, \
  1382. 2, 0, 0, 0 )
  1383. };
  1384. FILE *_stdin = _stdio_streams + 0;
  1385. FILE *_stdout = _stdio_streams + 1;
  1386. FILE *_stderr = _stdio_streams + 2;
  1387. #if defined(__STDIO_BUFFERS) || defined(__STDIO_GLIBC_CUSTOM_STREAMS)
  1388. #ifdef __STDIO_BUFFERS
  1389. FILE *_stdio_openlist = _stdio_streams;
  1390. #else /* __STDIO_BUFFERS */
  1391. FILE *_stdio_openlist = NULL;
  1392. #endif /* __STDIO_BUFFERS */
  1393. #ifdef __STDIO_THREADSAFE
  1394. pthread_mutex_t _stdio_openlist_lock = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
  1395. void __stdio_init_mutex(pthread_mutex_t *m)
  1396. {
  1397. static const pthread_mutex_t __stdio_mutex_initializer
  1398. = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
  1399. memcpy(m, &__stdio_mutex_initializer, sizeof(__stdio_mutex_initializer));
  1400. }
  1401. #endif /* __STDIO_THREADSAFE */
  1402. /* TODO - do we need to lock things, or do we just assume we're the only
  1403. * remaining thread? */
  1404. /* Note: We assume here that we are the only remaining thread. */
  1405. void _stdio_term(void)
  1406. {
  1407. #if defined(__STDIO_GLIBC_CUSTOM_STREAMS) || defined(__STDIO_THREADSAFE)
  1408. FILE *ptr;
  1409. #endif
  1410. /* TODO: if called via a signal handler for a signal mid _stdio_fwrite,
  1411. * the stream may be in an unstable state... what do we do?
  1412. * perhaps set error flag before and clear when done if successful? */
  1413. #ifdef __STDIO_THREADSAFE
  1414. /* First, forceably unlock the open file list and all files.
  1415. * Note: Set locking mode to "by caller" to save some overhead later. */
  1416. __stdio_init_mutex(&_stdio_openlist_lock);
  1417. for (ptr = _stdio_openlist ; ptr ; ptr = ptr->nextopen ) {
  1418. ptr->user_locking = FSETLOCKING_BYCALLER;
  1419. __stdio_init_mutex(&ptr->lock);
  1420. }
  1421. #endif /* __STDIO_THREADSAFE */
  1422. #ifdef __STDIO_BUFFERS
  1423. /* TODO -- set an alarm and flush each file "by hand"? to avoid blocking? */
  1424. /* Now flush all streams. */
  1425. fflush(NULL);
  1426. #endif /* __STDIO_BUFFERS */
  1427. /* Next close all custom streams in case of any special cleanup, but
  1428. * don't use fclose() because that pulls in free and malloc. Also,
  1429. * don't worry about removing them from the list. Just set the cookie
  1430. * pointer to NULL so that an error will be generated if someone tries
  1431. * to use the stream. */
  1432. #ifdef __STDIO_GLIBC_CUSTOM_STREAMS
  1433. for (ptr = _stdio_openlist ; ptr ; ptr = ptr->nextopen ) {
  1434. if (ptr->cookie != &ptr->filedes) { /* custom stream */
  1435. __CLOSE(ptr);
  1436. ptr->cookie = NULL; /* Generate an error if used later. */
  1437. #if 0
  1438. /* #ifdef __STDIO_BUFFERS */
  1439. } else {
  1440. /* TODO: "unbuffer" files like glibc does? Inconsistent with
  1441. * custom stream handling above, but that's necessary to deal
  1442. * with special user-defined close behavior. */
  1443. stream->bufwpos = stream->bufrpos = stream->bufend
  1444. #ifdef __STDIO_GETC_MACRO
  1445. = stream->bufgetc
  1446. #endif
  1447. #ifdef __STDIO_PUTC_MACRO
  1448. = stream->bufputc
  1449. #endif
  1450. = stream->bufstart;
  1451. #endif /* __STDIO_BUFFERS */
  1452. }
  1453. }
  1454. #endif /* __STDIO_GLIBC_CUSTOM_STREAMS */
  1455. }
  1456. #if defined(__STDIO_BUFFERS) || !defined(__UCLIBC__)
  1457. void _stdio_init(void)
  1458. {
  1459. #ifdef __STDIO_BUFFERS
  1460. /* stdin and stdout uses line buffering when connected to a tty. */
  1461. _stdio_streams[0].modeflags ^= (1-isatty(0)) * __FLAG_LBF;
  1462. _stdio_streams[1].modeflags ^= (1-isatty(1)) * __FLAG_LBF;
  1463. #endif /* __STDIO_BUFFERS */
  1464. #ifndef __UCLIBC__
  1465. /* __stdio_term is automatically when exiting if stdio is used.
  1466. * See misc/internals/__uClibc_main.c and and stdlib/atexit.c. */
  1467. atexit(_stdio_term);
  1468. #endif /* __UCLIBC__ */
  1469. }
  1470. #endif /* defined(__STDIO_BUFFERS) || !defined(__UCLIBC__) */
  1471. #endif /* defined(__STDIO_BUFFERS) || defined(__STDIO_GLIBC_CUSTOM_STREAMS) */
  1472. #endif
  1473. /**********************************************************************/
  1474. /* ANSI/ISO functions. */
  1475. /**********************************************************************/
  1476. #ifdef L_remove
  1477. #include <unistd.h>
  1478. #include <errno.h>
  1479. /* No reentrancy issues. */
  1480. int remove(register const char *filename)
  1481. {
  1482. int old_errno = errno;
  1483. /* SUSv3 says equivalent to rmdir() if a directory, and unlink()
  1484. * otherwise. Hence, we need to try rmdir() first. */
  1485. return (((rmdir(filename) == 0)
  1486. || ((errno == ENOTDIR)
  1487. && ((__set_errno(old_errno), unlink(filename)) == 0)))
  1488. ? 0 : -1);
  1489. }
  1490. #endif
  1491. /**********************************************************************/
  1492. /* rename is a syscall
  1493. #ifdef L_rename
  1494. int rename(const char *old, const char *new);
  1495. #endif
  1496. */
  1497. /**********************************************************************/
  1498. /* TODO: tmpfile */
  1499. /* #ifdef L_tmpfile */
  1500. /* FILE *tmpfile(void); */
  1501. /* #endif */
  1502. /**********************************************************************/
  1503. /* TODO: tmpname */
  1504. /* #ifdef L_tmpname */
  1505. /* char *tmpname(char *s); */
  1506. /* #endif */
  1507. /**********************************************************************/
  1508. #ifdef L_fclose
  1509. /* We need to be careful here to avoid deadlock when threading, as we
  1510. * need to lock both the file and the open file list. This can clash
  1511. * with fflush. Since fflush is much more common, we do the extra
  1512. * work here. */
  1513. int fclose(register FILE *stream)
  1514. {
  1515. #if defined(__STDIO_BUFFERS) || defined(__STDIO_GLIBC_CUSTOM_STREAMS)
  1516. register FILE *ptr;
  1517. int rv = 0;
  1518. #ifdef __STDIO_THREADSAFE
  1519. /* Need two non-heirchal mutexs... be careful to avoid deadlock*/
  1520. do {
  1521. __STDIO_THREADLOCK(stream);
  1522. if (__STDIO_THREADTRYLOCK_OPENLIST == 0) {
  1523. break;
  1524. }
  1525. __STDIO_THREADUNLOCK(stream);
  1526. usleep(10000);
  1527. } while (1);
  1528. #endif /* __STDIO_THREADSAFE */
  1529. __stdio_validate_FILE(stream); /* debugging only */
  1530. #ifdef __STDIO_BUFFERS
  1531. if (stream->modeflags & __FLAG_WRITING) {
  1532. rv = fflush(stream); /* Write any pending buffered chars. */
  1533. } /* Also disables putc macro if used. */
  1534. #ifdef __STDIO_GETC_MACRO
  1535. /* Not necessary after fflush, but always do this to reduce size. */
  1536. stream->bufgetc = stream->bufstart; /* Disable getc macro for safety. */
  1537. #endif /* __STDIO_GETC_MACRO */
  1538. #endif /* __STDIO_BUFFERS */
  1539. /* Remove file from open list before closing file descriptor. */
  1540. ptr = _stdio_openlist;
  1541. if (ptr == stream) {
  1542. _stdio_openlist = stream->nextopen;
  1543. } else {
  1544. while (ptr) {
  1545. if (ptr->nextopen == stream) {
  1546. ptr->nextopen = stream->nextopen;
  1547. break;
  1548. }
  1549. ptr = ptr->nextopen;
  1550. }
  1551. }
  1552. __STDIO_THREADUNLOCK_OPENLIST; /* We're done with the open file list. */
  1553. if (__CLOSE(stream) < 0) { /* Must close even if fflush failed. */
  1554. rv = EOF;
  1555. }
  1556. #ifdef __STDIO_GLIBC_CUSTOM_STREAMS
  1557. stream->cookie = NULL; /* To aid debugging... */
  1558. #endif
  1559. stream->filedes = -1; /* To aid debugging... */
  1560. #ifdef __STDIO_BUFFERS
  1561. if (stream->modeflags & __FLAG_FREEBUF) {
  1562. free(stream->bufstart);
  1563. }
  1564. #endif /* __STDIO_BUFFERS */
  1565. /* TODO -- leave the stream locked to catch any dangling refs? */
  1566. __STDIO_THREADUNLOCK(stream);
  1567. /* At this point, any dangling refs to the stream are the result of
  1568. * a programming bug... so free the unlocked stream. */
  1569. if (stream->modeflags & __FLAG_FREEFILE) {
  1570. free(stream);
  1571. }
  1572. return rv;
  1573. #else /* defined(__STDIO_BUFFERS) || defined(__STDIO_GLIBC_CUSTOM_STREAMS) */
  1574. int rv = 0;
  1575. __STDIO_THREADLOCK(stream);
  1576. __stdio_validate_FILE(stream); /* debugging only */
  1577. if (__CLOSE(stream) < 0) { /* Must close even if fflush failed. */
  1578. rv = EOF;
  1579. }
  1580. #ifdef __STDIO_GLIBC_CUSTOM_STREAMS
  1581. stream->cookie = NULL; /* To aid debugging... */
  1582. #endif
  1583. stream->filedes = -1; /* To aid debugging... */
  1584. __STDIO_THREADUNLOCK(stream);
  1585. /* At this point, any dangling refs to the stream are the result of
  1586. * a programming bug... so free the unlocked stream. */
  1587. if (stream->modeflags & __FLAG_FREEFILE) {
  1588. free(stream);
  1589. }
  1590. return rv;
  1591. #endif /* defined(__STDIO_BUFFERS) || defined(__STDIO_GLIBC_CUSTOM_STREAMS )*/
  1592. }
  1593. #endif
  1594. /**********************************************************************/
  1595. #ifdef L_fflush
  1596. /*
  1597. * Special cases:
  1598. * stream == NULL means fflush all writing streams (ANSI/ISO).
  1599. * stream == (FILE *) &_stdio_openlist -- implementation-specific hack
  1600. * meaning fflush all line buffered writing streams
  1601. */
  1602. /*
  1603. * NOTE: ANSI/ISO difference!!! According to the standard, fflush is only
  1604. * defined for write-only streams, or read/write streams whose last op
  1605. * was a write. However, reading is allowed for a read/write stream if
  1606. * a file positioning operation was done (fseek, fsetpos) even though there
  1607. * is no guarantee of flushing the write data in that case. Hence, for
  1608. * this case we keep a flag to indicate whether or not the buffer needs to
  1609. * be flushed even if the last operation was a read. This falls under the
  1610. * implementation-defined behavior. Otherwise, we would need to flush
  1611. * every time we did fseek, etc. even if we were still in the buffer's range.
  1612. */
  1613. /* Since the stream pointer arg is allowed to be NULL, or the address of the
  1614. * stdio open file list if stdio is buffered in this implementation, we can't
  1615. * use the UNLOCKED() macro here. */
  1616. #ifndef __STDIO_THREADSAFE
  1617. strong_alias(fflush_unlocked,fflush)
  1618. #else /* __STDIO_THREADSAFE */
  1619. int fflush(register FILE *stream)
  1620. {
  1621. int retval;
  1622. if ((stream != NULL)
  1623. #ifdef __STDIO_BUFFERS
  1624. && (stream != (FILE *) &_stdio_openlist)
  1625. #endif /* __STDIO_BUFFERS */
  1626. ) {
  1627. __STDIO_THREADLOCK(stream);
  1628. retval = fflush_unlocked(stream);
  1629. __STDIO_THREADUNLOCK(stream);
  1630. } else {
  1631. retval = fflush_unlocked(stream);
  1632. }
  1633. return retval;
  1634. }
  1635. #endif /* __STDIO_THREADSAFE */
  1636. int fflush_unlocked(register FILE *stream)
  1637. {
  1638. #ifdef __STDIO_BUFFERS
  1639. int rv = 0;
  1640. unsigned short mask = (__FLAG_NBF|__FLAG_LBF);
  1641. #ifndef NDEBUG
  1642. if ((stream != NULL) && (stream != (FILE *) &_stdio_openlist)) {
  1643. __stdio_validate_FILE(stream); /* debugging only */
  1644. }
  1645. #endif
  1646. if (stream == (FILE *) &_stdio_openlist) { /* fflush all line-buffered */
  1647. stream = NULL;
  1648. mask = __FLAG_LBF;
  1649. }
  1650. if (stream == NULL) { /* flush all (line) buffered writing streams */
  1651. /* Note -- We have to lock the list even in the unlocked function. */
  1652. __STDIO_THREADLOCK_OPENLIST;
  1653. /* TODO -- Can we work around locking the list to avoid keeping it
  1654. * locked if the write blocks? */
  1655. for (stream = _stdio_openlist; stream; stream = stream->nextopen) {
  1656. if (((stream->modeflags ^ __FLAG_NBF) & mask)
  1657. && (stream->modeflags & __FLAG_WRITING)
  1658. && fflush(stream)) {
  1659. rv = EOF;
  1660. }
  1661. }
  1662. __STDIO_THREADUNLOCK_OPENLIST;
  1663. } else if (stream->modeflags & __FLAG_WRITING) {
  1664. if (_stdio_fwrite(NULL, 0, stream) > 0) { /* flush buffer contents. */
  1665. rv = -1; /* Not all chars written. */
  1666. }
  1667. } else if (stream->modeflags & (__FLAG_READONLY|__FLAG_READING)) {
  1668. /* TODO - __FLAG_READING too? check glibc behavior */
  1669. /* According to info, glibc returns an error when the file is opened
  1670. * in read-only mode.
  1671. * ANSI/ISO says behavior in this case is undefined but also says you
  1672. * shouldn't flush a stream you were reading from.
  1673. */
  1674. stream->modeflags |= __FLAG_ERROR; /* TODO - check glibc behavior */
  1675. __set_errno(EBADF);
  1676. rv = -1;
  1677. }
  1678. #ifndef NDEBUG
  1679. if ((stream != NULL) && (stream != (FILE *) &_stdio_openlist)) {
  1680. __stdio_validate_FILE(stream); /* debugging only */
  1681. }
  1682. #endif
  1683. return rv;
  1684. #else /* __STDIO_BUFFERS --------------------------------------- */
  1685. #ifndef NDEBUG
  1686. if ((stream != NULL) && (stream != (FILE *) &_stdio_openlist)) {
  1687. __stdio_validate_FILE(stream); /* debugging only */
  1688. }
  1689. #endif
  1690. /* TODO -- check glibc behavior regarding error indicator */
  1691. return ((stream != NULL)
  1692. && (stream->modeflags & (__FLAG_READONLY|__FLAG_READING))
  1693. ? ((stream->modeflags |= __FLAG_ERROR), __set_errno(EBADF), EOF)
  1694. : 0 );
  1695. #endif /* __STDIO_BUFFERS */
  1696. }
  1697. #endif
  1698. /**********************************************************************/
  1699. #ifdef L_fopen
  1700. /* No reentrancy issues. */
  1701. FILE *fopen(const char * __restrict filename, const char * __restrict mode)
  1702. {
  1703. return _stdio_fopen(filename, mode, NULL, -1);
  1704. }
  1705. #endif
  1706. /**********************************************************************/
  1707. #ifdef L__stdio_fopen
  1708. /*
  1709. * Cases:
  1710. * fopen : filename != NULL, stream == NULL, filedes == -1
  1711. * freopen : filename != NULL, stream != NULL, filedes == -1
  1712. * fdopen : filename == NULL, stream == NULL, filedes valid
  1713. * fsfopen : filename != NULL, stream != NULL, filedes == -1
  1714. * fopen64 : filename != NULL, stream == NULL, filedes == -2
  1715. */
  1716. #if O_ACCMODE != 3 || O_RDONLY != 0 || O_WRONLY != 1 || O_RDWR != 2
  1717. #error Assumption violated - mode constants
  1718. #endif
  1719. /* Internal function -- reentrant (locks open file list) */
  1720. FILE *_stdio_fopen(const char * __restrict filename,
  1721. register const char * __restrict mode,
  1722. register FILE * __restrict stream, int filedes)
  1723. {
  1724. __mode_t open_mode;
  1725. /* parse mode */
  1726. open_mode = O_RDONLY;
  1727. if (*mode != 'r') { /* not read */
  1728. open_mode = (O_WRONLY | O_CREAT | O_TRUNC);
  1729. if (*mode != 'w') { /* not write (create or truncate)*/
  1730. open_mode = (O_WRONLY | O_CREAT | O_APPEND);
  1731. if (*mode != 'a') { /* not write (create or append) */
  1732. __set_errno(EINVAL); /* then illegal mode */
  1733. if (stream) { /* If this is freopen, free the stream. */
  1734. goto FREE_STREAM;
  1735. }
  1736. return NULL;
  1737. }
  1738. }
  1739. }
  1740. if ((*++mode == 'b')) { /* binary mode (NOP currently) */
  1741. ++mode;
  1742. }
  1743. if (*mode == '+') { /* read-write */
  1744. ++mode;
  1745. open_mode &= ~(O_RDONLY | O_WRONLY);
  1746. open_mode |= O_RDWR;
  1747. }
  1748. #if defined(__STDIO_GNU_FEATURE) || defined(__STDIO_FOPEN_LARGEFILE_MODE)
  1749. while (*mode) { /* ignore everything else except ... */
  1750. #ifdef __STDIO_FOPEN_EXCLUSIVE_MODE
  1751. if (*mode++ == 'x') { /* open exclusive -- glibc extension */
  1752. open_mode |= O_EXCL;
  1753. }
  1754. #endif /* __STDIO_FOPEN_EXCLUSIVE_MODE */
  1755. #ifdef __STDIO_FOPEN_LARGEFILE_MODE
  1756. if (*mode++ == 'F') { /* open large file */
  1757. open_mode |= O_LARGEFILE;
  1758. }
  1759. #endif /* __STDIO_FOPEN_LARGEFILE_MODE */
  1760. }
  1761. #endif /* __STDIO_FOPEN_EXCLUSIVE_MODE or __STDIO_FOPEN_LARGEFILE_MODE def'd */
  1762. #ifdef __BCC__
  1763. mode = filename; /* TODO: help BCC with register allocation. */
  1764. #define filename mode
  1765. #endif /* __BCC__ */
  1766. if (!stream) { /* Need to allocate a FILE. */
  1767. #ifdef __STDIO_BUFFERS
  1768. if ((stream = malloc(sizeof(FILE))) == NULL) {
  1769. return stream;
  1770. }
  1771. stream->modeflags = __FLAG_FREEFILE;
  1772. if ((stream->bufstart = malloc(BUFSIZ)) != 0) {
  1773. stream->bufend = stream->bufstart + BUFSIZ;
  1774. stream->modeflags |= __FLAG_FREEBUF;
  1775. } else {
  1776. #if __STDIO_BUILTIN_BUF_SIZE > 0
  1777. stream->bufstart = stream->unbuf;
  1778. stream->bufend = stream->unbuf + sizeof(stream->unbuf);
  1779. #else /* __STDIO_BUILTIN_BUF_SIZE > 0 */
  1780. stream->bufstart = stream->bufend = NULL;
  1781. #endif /* __STDIO_BUILTIN_BUF_SIZE > 0 */
  1782. }
  1783. #else /* __STDIO_BUFFERS */
  1784. if ((stream = malloc(sizeof(FILE))) == NULL) {
  1785. return stream;
  1786. }
  1787. stream->modeflags = __FLAG_FREEFILE;
  1788. #endif /* __STDIO_BUFFERS */
  1789. }
  1790. if (filedes >= 0) { /* Handle fdopen trickery. */
  1791. /*
  1792. * NOTE: it is insufficient to just check R/W/RW agreement.
  1793. * We must also check for append mode agreement, as well as
  1794. * largefile agreement if applicable.
  1795. */
  1796. int i = (open_mode & (O_ACCMODE|O_APPEND|O_LARGEFILE)) + 1;
  1797. if ((i & (((int) filename) + 1)) != i) {
  1798. __set_errno(EINVAL);
  1799. filedes = -1;
  1800. }
  1801. stream->filedes = filedes;
  1802. } else {
  1803. #ifdef __STDIO_LARGE_FILES
  1804. if (filedes < -1) {
  1805. open_mode |= O_LARGEFILE;
  1806. }
  1807. #endif /* __STDIO_LARGE_FILES */
  1808. stream->filedes = open(filename, open_mode, 0666);
  1809. }
  1810. if (stream->filedes < 0) {
  1811. FREE_STREAM:
  1812. #ifdef __STDIO_BUFFERS
  1813. if (stream->modeflags & __FLAG_FREEBUF) {
  1814. free(stream->bufstart);
  1815. }
  1816. #endif /* __STDIO_BUFFERS */
  1817. if (stream->modeflags & __FLAG_FREEFILE) {
  1818. free(stream);
  1819. }
  1820. return NULL;
  1821. }
  1822. stream->modeflags |=
  1823. #ifdef __STDIO_BUFFERS
  1824. (isatty(stream->filedes) * __FLAG_LBF) |
  1825. #endif /* __STDIO_BUFFERS */
  1826. #if (O_APPEND == __FLAG_APPEND) \
  1827. && ((O_LARGEFILE == __FLAG_LARGEFILE) || (O_LARGEFILE == 0))
  1828. (open_mode & (O_APPEND|O_LARGEFILE)) | /* i386 linux and elks */
  1829. #else /* (O_APPEND == __FLAG_APPEND) && (O_LARGEFILE == __FLAG_LARGEFILE) */
  1830. ((open_mode & O_APPEND) ? __FLAG_APPEND : 0) |
  1831. #ifdef __STDIO_LARGE_FILES
  1832. ((open_mode & O_LARGEFILE) ? __FLAG_LARGEFILE : 0) |
  1833. #endif /* __STDIO_LARGE_FILES */
  1834. #endif /* (O_APPEND == __FLAG_APPEND) && (O_LARGEFILE == __FLAG_LARGEFILE) */
  1835. ((((open_mode & O_ACCMODE) + 1) ^ 0x03) * __FLAG_WRITEONLY);
  1836. #ifdef __STDIO_BUFFERS
  1837. #ifdef __STDIO_GETC_MACRO
  1838. stream->bufgetc =
  1839. #endif
  1840. #ifdef __STDIO_PUTC_MACRO
  1841. stream->bufputc =
  1842. #endif
  1843. stream->bufwpos = stream->bufrpos = stream->bufstart;
  1844. #endif /* __STDIO_BUFFERS */
  1845. #ifdef __STDIO_GLIBC_CUSTOM_STREAMS
  1846. stream->cookie = &(stream->filedes);
  1847. stream->gcs.read = _cs_read;
  1848. stream->gcs.write = _cs_write;
  1849. stream->gcs.seek = 0; /* The internal seek func handles normals. */
  1850. stream->gcs.close = _cs_close;
  1851. #endif /* __STDIO_GLIBC_CUSTOM_STREAMS */
  1852. #ifdef __STDIO_THREADSAFE
  1853. __stdio_init_mutex(&stream->lock);
  1854. #endif /* __STDIO_THREADSAFE */
  1855. #if defined(__STDIO_BUFFERS) \
  1856. || (defined(__STDIO_THREADSAFE) && defined(__STDIO_GLIBC_CUSTOM_STREAMS))
  1857. __STDIO_THREADLOCK_OPENLIST;
  1858. stream->nextopen = _stdio_openlist; /* New files are inserted at */
  1859. _stdio_openlist = stream; /* the head of the list. */
  1860. __STDIO_THREADUNLOCK_OPENLIST;
  1861. #endif
  1862. __stdio_validate_FILE(stream); /* debugging only */
  1863. return stream;
  1864. #ifdef __BCC__
  1865. #undef filename
  1866. #endif /* __BCC__ */
  1867. }
  1868. #endif
  1869. /**********************************************************************/
  1870. #ifdef L_freopen
  1871. /* Reentrant. */
  1872. FILE *freopen(const char * __restrict filename, const char * __restrict mode,
  1873. register FILE * __restrict stream)
  1874. {
  1875. /*
  1876. * ANSI/ISO allow (implementation-defined) change of mode for an
  1877. * existing file if filename is NULL. It doesn't look like Linux
  1878. * supports this, so we don't here.
  1879. *
  1880. * NOTE: Whether or not the stream is free'd on failure is unclear
  1881. * w.r.t. ANSI/ISO. This implementation chooses to free the
  1882. * stream and associated buffer if they were dynamically
  1883. * allocated.
  1884. * TODO: Check the above.
  1885. * TODO: Apparently linux allows setting append mode. Implement?
  1886. */
  1887. unsigned short dynmode;
  1888. FILE *fp;
  1889. __STDIO_THREADLOCK(stream);
  1890. /* First, flush and close, but don't deallocate, the stream. */
  1891. /* This also removes the stream for the open file list. */
  1892. dynmode =
  1893. #ifdef __STDIO_BUFFERS
  1894. // __MASK_BUFMODE | /* TODO: check */
  1895. #endif /* __STDIO_BUFFERS */
  1896. (stream->modeflags & (__FLAG_FREEBUF|__FLAG_FREEFILE));
  1897. stream->modeflags &= ~(__FLAG_FREEBUF|__FLAG_FREEFILE);
  1898. fclose(stream); /* Failures are ignored. */
  1899. stream->modeflags = dynmode;
  1900. fp = _stdio_fopen(filename, mode, stream, -1);
  1901. __STDIO_THREADUNLOCK(stream);
  1902. return fp;
  1903. }
  1904. #endif
  1905. /**********************************************************************/
  1906. #ifdef L_freopen64
  1907. /* Reentrant. */
  1908. /* TODO -- is it collecting the common work (40 bytes) into a function? */
  1909. FILE *freopen64(const char * __restrict filename, const char * __restrict mode,
  1910. register FILE * __restrict stream)
  1911. {
  1912. unsigned short dynmode;
  1913. FILE *fp;
  1914. __STDIO_THREADLOCK(stream);
  1915. /* First, flush and close, but don't deallocate, the stream. */
  1916. /* This also removes the stream for the open file list. */
  1917. dynmode =
  1918. #ifdef __STDIO_BUFFERS
  1919. // __MASK_BUFMODE | /* TODO: check */
  1920. #endif /* __STDIO_BUFFERS */
  1921. (stream->modeflags & (__FLAG_FREEBUF|__FLAG_FREEFILE));
  1922. stream->modeflags &= ~(__FLAG_FREEBUF|__FLAG_FREEFILE);
  1923. fclose(stream); /* Failures are ignored. */
  1924. stream->modeflags = dynmode;
  1925. fp = _stdio_fopen(filename, mode, stream, -2); /* TODO -- magic const */
  1926. __STDIO_THREADUNLOCK(stream);
  1927. return fp;
  1928. }
  1929. #endif
  1930. /**********************************************************************/
  1931. #ifdef L_setbuf
  1932. /* Reentrant through setvbuf(). */
  1933. void setbuf(FILE * __restrict stream, register char * __restrict buf)
  1934. {
  1935. #ifdef __STDIO_BUFFERS
  1936. int mode;
  1937. mode = (buf != NULL) ? _IOFBF : _IONBF;
  1938. setvbuf(stream, buf, mode, BUFSIZ);
  1939. #else /* __STDIO_BUFFERS */
  1940. /* TODO -- assert on stream? */
  1941. /* Nothing to do. */
  1942. #endif /* __STDIO_BUFFERS */
  1943. }
  1944. #endif
  1945. /**********************************************************************/
  1946. #ifdef L_setvbuf
  1947. /* Reentrant. */
  1948. int setvbuf(register FILE * __restrict stream, register char * __restrict buf,
  1949. int mode, size_t size)
  1950. {
  1951. #ifdef __STDIO_BUFFERS
  1952. int allocated_buf_flag;
  1953. int rv = EOF;
  1954. __STDIO_THREADLOCK(stream);
  1955. __stdio_validate_FILE(stream); /* debugging only */
  1956. if (((unsigned int) mode) > 2) { /* Illegal mode. */
  1957. /* TODO -- set an errno? */
  1958. goto DONE;
  1959. }
  1960. #ifdef __STDIO_FLEXIBLE_SETVBUF
  1961. /* C89 standard requires no ops before setvbuf, but we can be flexible. */
  1962. /* NOTE: This will trash any chars ungetc'd!!! */
  1963. /* TODO: hmm could preserve unget count since ungot slots aren't changed (true?)
  1964. * but this will fail when buffered chars read from a pipe unless the user buf
  1965. * is big enough to copy everything over. */
  1966. if (fseek(stream, 0L, SEEK_CUR)) {
  1967. goto DONE;
  1968. }
  1969. #else /* __STDIO_FLEXIBLE_SETVBUF */
  1970. /*
  1971. * Note: ANSI/ISO requires setvbuf to be called after opening the file
  1972. * but before any other operation other than a failed setvbuf call.
  1973. * We'll cheat here and only test if the wide or narrow mode flag has
  1974. * been set; i.e. no read or write (or unget or fwide) operations have
  1975. * taken place.
  1976. */
  1977. #ifdef __STDIO_WIDE
  1978. if (stream->modeflags & (__FLAG_WIDE|__FLAG_NARROW)) {
  1979. goto DONE;
  1980. }
  1981. #else /* __STDIO_WIDE */
  1982. /* Note: This only checks if not currently reading or writing. */
  1983. if (stream->modeflags & (__FLAG_READING|__FLAG_WRITING)) {
  1984. goto DONE;
  1985. }
  1986. #endif /* __STDIO_WIDE */
  1987. #endif /* __STDIO_FLEXIBLE_SETVBUF */
  1988. if (mode == _IONBF) {
  1989. size = 0;
  1990. buf = NULL;
  1991. }
  1992. stream->modeflags &= ~(__MASK_BUFMODE); /* Clear current mode */
  1993. stream->modeflags |= mode * __FLAG_LBF; /* and set new one. */
  1994. allocated_buf_flag = 0;
  1995. if ((!buf) && (size != (stream->bufend - stream->bufstart))) {
  1996. /* No buffer supplied and requested size different from current. */
  1997. /* If size == 0, create a (hopefully) bogus non-null pointer... */
  1998. if (!(buf = ((size > 0)
  1999. ? ((allocated_buf_flag = __FLAG_FREEBUF), malloc(size))
  2000. : ((char *)NULL) + 1))
  2001. ) {
  2002. /* TODO -- should we really keep current buffer if it was passed
  2003. * to us earlier by the app? */
  2004. goto DONE; /* Keep current buffer. */
  2005. }
  2006. }
  2007. /* TODO: setvbuf "signal" safety */
  2008. if (buf && (buf != (char *) stream->bufstart)) { /* Want new buffer. */
  2009. if (stream->modeflags & __FLAG_FREEBUF) {
  2010. stream->modeflags &= ~(__FLAG_FREEBUF);
  2011. free(stream->bufstart);
  2012. }
  2013. stream->modeflags |= allocated_buf_flag; /* Free-able buffer? */
  2014. #ifdef __STDIO_GETC_MACRO
  2015. stream->bufgetc =
  2016. #endif
  2017. #ifdef __STDIO_PUTC_MACRO
  2018. stream->bufputc =
  2019. #endif
  2020. stream->bufwpos = stream->bufrpos = stream->bufstart = buf;
  2021. stream->bufend = buf + size;
  2022. }
  2023. __stdio_validate_FILE(stream); /* debugging only */
  2024. rv = 0;
  2025. DONE:
  2026. __STDIO_THREADUNLOCK(stream);
  2027. return rv;
  2028. #else /* __STDIO_BUFFERS */
  2029. __stdio_validate_FILE(stream); /* debugging only */
  2030. /* TODO -- set errno for illegal mode? */
  2031. return EOF;
  2032. #endif /* __STDIO_BUFFERS */
  2033. }
  2034. #endif
  2035. /**********************************************************************
  2036. int fprintf(FILE * __restrict stream, const char * __restrict format, ...);
  2037. int fscanf(FILE * __restrict stream, const char * __restrict format, ...);
  2038. int printf(const char * __restrict format, ...);
  2039. int scanf(const char * __restrict format, ...);
  2040. int snprintf(char * __restrict s, size_t n,
  2041. const char * __restrict format, ...);
  2042. int sprintf(char * __restrict s, const char * __restrict format, ...);
  2043. int sscanf(char * __restrict s, const char * __restrict format, ...);
  2044. int vfprintf(FILE * __restrict stream, const char * __restrict format,
  2045. va_list arg);
  2046. int vfscanf(FILE * __restrict stream, const char * __restrict format,
  2047. va_list arg);
  2048. int vprintf(const char * __restrict format, va_list arg);
  2049. int vscanf(const char * __restrict format, va_list arg);
  2050. int vsnprintf(char * __restrict s, size_t n,
  2051. const char * __restrict format, va_list arg);
  2052. int vsprintf(char * __restrict s, const char * __restrict format,
  2053. va_list arg);
  2054. int vsscanf(char * __restrict s, const char * __restrict format,
  2055. va_list arg);
  2056. **********************************************************************/
  2057. #ifdef L_fgetc
  2058. /* Reentrancy handled by UNLOCKED() macro. */
  2059. UNLOCKED(int,fgetc,(FILE *stream),(stream))
  2060. {
  2061. unsigned char buf[1];
  2062. #ifdef __STDIO_WIDE
  2063. return (fread(buf, (size_t) 1, (size_t) 1, stream) > 0) ? *buf : EOF;
  2064. #else /* __STDIO_WIDE */
  2065. return (_stdio_fread(buf, (size_t) 1, stream) > 0) ? *buf : EOF;
  2066. #endif /* __STDIO_WIDE */
  2067. }
  2068. #endif
  2069. /**********************************************************************/
  2070. #ifdef L_fgets
  2071. /* Reentrancy handled by UNLOCKED() macro. */
  2072. UNLOCKED(char *,fgets,
  2073. (char *__restrict s, int n, register FILE * __restrict stream),
  2074. (s, n, stream))
  2075. {
  2076. register char *p;
  2077. int c;
  2078. p = s;
  2079. while ((n > 1) && ((c = getc(stream)) != EOF) && ((*p++ = c) != '\n')) {
  2080. --n;
  2081. }
  2082. if (p == s) {
  2083. /* TODO -- should we set errno? */
  2084. /* if (n <= 0) { */
  2085. /* errno = EINVAL; */
  2086. /* } */
  2087. return NULL;
  2088. }
  2089. *p = 0;
  2090. return s;
  2091. }
  2092. #endif
  2093. /**********************************************************************/
  2094. #ifdef L_fputc
  2095. /* Reentrancy handled by UNLOCKED() macro. */
  2096. UNLOCKED(int,fputc,(int c, FILE *stream),(c,stream))
  2097. {
  2098. unsigned char buf[1];
  2099. *buf = (unsigned char) c;
  2100. #ifdef __STDIO_WIDE
  2101. return (fwrite(buf, (size_t) 1, (size_t) 1, stream) > 0) ? (*buf) : EOF;
  2102. #else /* __STDIO_WIDE */
  2103. return (_stdio_fwrite(buf, (size_t) 1, stream) > 0) ? (*buf) : EOF;
  2104. #endif /* __STDIO_WIDE */
  2105. }
  2106. #endif
  2107. /**********************************************************************/
  2108. #ifdef L_fputs
  2109. /* Reentrancy handled by UNLOCKED() macro. */
  2110. UNLOCKED(int,fputs,
  2111. (register const char * __restrict s, FILE * __restrict stream),
  2112. (s, stream))
  2113. {
  2114. size_t n = strlen(s);
  2115. #ifdef __STDIO_WIDE
  2116. return (fwrite(s, n, (size_t) 1, stream) > 0) ? n : EOF;
  2117. #else /* __STDIO_WIDE */
  2118. return (_stdio_fwrite(s, n, stream) == n) ? n : EOF;
  2119. #endif /* __STDIO_WIDE */
  2120. }
  2121. #endif
  2122. /**********************************************************************/
  2123. #ifdef L_getc
  2124. #undef getc
  2125. /* Reentrancy handled by UNLOCKED() macro. */
  2126. UNLOCKED(int,getc,(register FILE *stream),(stream))
  2127. {
  2128. return __GETC(stream); /* Invoke the macro. */
  2129. }
  2130. #endif
  2131. /**********************************************************************/
  2132. #ifdef L_getchar
  2133. #undef getchar /* Just in case. */
  2134. /* Reentrancy handled by UNLOCKED() macro. */
  2135. UNLOCKED_STREAM(int,getchar,(void),(),_stdin)
  2136. {
  2137. register FILE *stream = _stdin; /* This helps bcc optimize. */
  2138. return __GETC(stream);
  2139. }
  2140. #endif
  2141. /**********************************************************************/
  2142. #ifdef L_gets
  2143. link_warning(gets, "the 'gets' function is dangerous and should not be used.")
  2144. /* Reentrant. */
  2145. char *gets(char *s) /* WARNING!!! UNSAFE FUNCTION!!! */
  2146. {
  2147. register FILE *stream = _stdin; /* This helps bcc optimize. */
  2148. register char *p = s;
  2149. int c;
  2150. __STDIO_THREADLOCK(stream);
  2151. /* Note: don't worry about performance here... this shouldn't be used!
  2152. * Therefore, force actual function call. */
  2153. while (((c = (*getc)(stream)) != EOF) && ((*p = c) != '\n')) {
  2154. ++p;
  2155. }
  2156. if ((c == EOF) || (s == p)) {
  2157. s = NULL;
  2158. } else {
  2159. *p = 0;
  2160. }
  2161. __STDIO_THREADUNLOCK(stream);
  2162. return s;
  2163. }
  2164. #endif
  2165. /**********************************************************************/
  2166. #ifdef L_putc
  2167. #undef putc
  2168. /* Reentrancy handled by UNLOCKED() macro. */
  2169. UNLOCKED(int,putc,(int c, register FILE *stream),(c,stream))
  2170. {
  2171. return __PUTC(c, stream); /* Invoke the macro. */
  2172. }
  2173. #endif
  2174. /**********************************************************************/
  2175. #ifdef L_putchar
  2176. #undef putchar /* Just in case. */
  2177. /* Reentrancy handled by UNLOCKED() macro. */
  2178. UNLOCKED_STREAM(int,putchar,(int c),(c),_stdout)
  2179. {
  2180. register FILE *stream = _stdout; /* This helps bcc optimize. */
  2181. return __PUTC(c, stream);
  2182. }
  2183. #endif
  2184. /**********************************************************************/
  2185. #ifdef L_puts
  2186. /* Reentrant. */
  2187. int puts(register const char *s)
  2188. {
  2189. register FILE *stream = _stdout; /* This helps bcc optimize. */
  2190. int n;
  2191. __STDIO_THREADLOCK(stream);
  2192. n = fputs(s,stream) + 1;
  2193. if (
  2194. #if 1
  2195. fputc('\n',stream)
  2196. #else
  2197. fputs("\n",stream)
  2198. #endif
  2199. == EOF) {
  2200. n = EOF;
  2201. }
  2202. __STDIO_THREADUNLOCK(stream);
  2203. return n;
  2204. }
  2205. #endif
  2206. /**********************************************************************/
  2207. #ifdef L_ungetc
  2208. /*
  2209. * Note: This is the application-callable ungetc. If scanf calls this, it
  2210. * should also set stream->ungot[1] to 0 if this is the only ungot.
  2211. */
  2212. /* Reentrant. */
  2213. int ungetc(int c, register FILE *stream)
  2214. {
  2215. __STDIO_THREADLOCK(stream);
  2216. __stdio_validate_FILE(stream); /* debugging only */
  2217. #ifdef __STDIO_WIDE
  2218. if (stream->modeflags & __FLAG_WIDE) {
  2219. stream->modeflags |= __FLAG_ERROR;
  2220. c = EOF;
  2221. goto DONE;
  2222. }
  2223. stream->modeflags |= __FLAG_NARROW;
  2224. #endif /* __STDIO_WIDE */
  2225. /* If can't read or there's been an error, or c == EOF, or ungot slots
  2226. * already filled, then return EOF */
  2227. if ((stream->modeflags
  2228. & (__MASK_UNGOT2|__FLAG_WRITEONLY
  2229. #ifndef __STDIO_AUTO_RW_TRANSITION
  2230. |__FLAG_WRITING /* Note: technically no, but yes in spirit */
  2231. #endif /* __STDIO_AUTO_RW_TRANSITION */
  2232. ))
  2233. || ((stream->modeflags & __MASK_UNGOT1) && (stream->ungot[1]))
  2234. || (c == EOF) ) {
  2235. c = EOF;
  2236. goto DONE;;
  2237. }
  2238. #ifdef __STDIO_BUFFERS
  2239. /* TODO: shouldn't allow writing??? */
  2240. if (stream->modeflags & __FLAG_WRITING) {
  2241. fflush(stream); /* Commit any write-buffered chars. */
  2242. }
  2243. #endif /* __STDIO_BUFFERS */
  2244. /* Clear EOF and WRITING flags, and set READING FLAG */
  2245. stream->modeflags &= ~(__FLAG_EOF|__FLAG_WRITING);
  2246. stream->modeflags |= __FLAG_READING;
  2247. stream->ungot[1] = 1; /* Flag as app ungetc call; scanf fixes up. */
  2248. stream->ungot[(stream->modeflags++) & __MASK_UNGOT] = c;
  2249. #ifdef __STDIO_GETC_MACRO
  2250. stream->bufgetc = stream->bufstart; /* Must disable getc macro. */
  2251. #endif
  2252. __stdio_validate_FILE(stream); /* debugging only */
  2253. DONE:
  2254. __STDIO_THREADUNLOCK(stream);
  2255. return c;
  2256. }
  2257. #endif
  2258. /**********************************************************************/
  2259. #ifdef L_fread
  2260. /* NOTE: Surely ptr cannot point to a buffer of size > SIZE_MAX.
  2261. * Therefore, we treat the case size * nmemb > SIZE_MAX as an error,
  2262. * and include an assert() for it. */
  2263. /* Reentrancy handled by UNLOCKED() macro. */
  2264. UNLOCKED(size_t,fread,
  2265. (void * __restrict ptr, size_t size, size_t nmemb,
  2266. FILE * __restrict stream),
  2267. (ptr,size,nmemb,stream))
  2268. {
  2269. #ifdef __STDIO_WIDE
  2270. if (stream->modeflags & __FLAG_WIDE) {
  2271. stream->modeflags |= __FLAG_ERROR;
  2272. /* TODO -- errno? it this correct? */
  2273. return 0;
  2274. }
  2275. stream->modeflags |= __FLAG_NARROW;
  2276. #endif /* __STDIO_WIDE */
  2277. return (size == 0)
  2278. ? 0
  2279. : ( assert( ((size_t)(-1)) / size >= nmemb ),
  2280. _stdio_fread(ptr, nmemb * size, stream) / size );
  2281. }
  2282. #endif
  2283. /**********************************************************************/
  2284. #ifdef L_fwrite
  2285. /* NOTE: Surely ptr cannot point to a buffer of size > SIZE_MAX.
  2286. * Therefore, we treat the case size * nmemb > SIZE_MAX as an error,
  2287. * and include an assert() for it. */
  2288. /* Reentrancy handled by UNLOCKED() macro. */
  2289. UNLOCKED(size_t,fwrite,
  2290. (const void * __restrict ptr, size_t size, size_t nmemb,
  2291. FILE * __restrict stream),
  2292. (ptr,size,nmemb,stream))
  2293. {
  2294. #ifdef __STDIO_WIDE
  2295. if (stream->modeflags & __FLAG_WIDE) {
  2296. stream->modeflags |= __FLAG_ERROR;
  2297. /* TODO -- errno? it this correct? */
  2298. return 0;
  2299. }
  2300. stream->modeflags |= __FLAG_NARROW;
  2301. #endif /* __STDIO_WIDE */
  2302. return (size == 0)
  2303. ? 0
  2304. : ( assert( ((size_t)(-1)) / size >= nmemb ),
  2305. _stdio_fwrite(ptr, nmemb * size, stream) / size );
  2306. }
  2307. #endif
  2308. /**********************************************************************/
  2309. #if defined(L_fgetpos) || defined(L_fgetpos64)
  2310. /* Reentrant -- fgetpos() and fgetpos64(). */
  2311. #if defined(L_fgetpos) && defined(L_fgetpos64)
  2312. #error L_fgetpos and L_fgetpos64 are defined simultaneously!
  2313. #endif
  2314. #ifndef L_fgetpos64
  2315. #define fgetpos64 fgetpos
  2316. #define fpos64_t fpos_t
  2317. #define ftello64 ftell
  2318. #endif
  2319. int fgetpos64(FILE * __restrict stream, register fpos64_t * __restrict pos)
  2320. {
  2321. int retval;
  2322. __STDIO_THREADLOCK(stream);
  2323. retval = ((pos != NULL) && ((pos->__pos = ftello64(stream)) >= 0))
  2324. ? (
  2325. #ifdef __STDIO_MBSTATE_DATA
  2326. __COPY_MBSTATE(&(pos->__mbstate), &(stream->mbstate)),
  2327. #endif /* __STDIO_MBSTATE_DATA */
  2328. 0)
  2329. : (__set_errno(EINVAL), -1);
  2330. __STDIO_THREADUNLOCK(stream);
  2331. return retval;
  2332. }
  2333. #ifndef L_fgetpos64
  2334. #undef fgetpos64
  2335. #undef fpos64_t
  2336. #undef ftello64
  2337. #endif
  2338. #endif
  2339. /**********************************************************************/
  2340. #ifdef L_fseek
  2341. strong_alias(fseek, fseeko);
  2342. #endif
  2343. #if defined(L_fseek) && defined(__STDIO_LARGE_FILES)
  2344. int fseek(register FILE *stream, long int offset, int whence)
  2345. {
  2346. return fseeko64(stream, offset, whence);
  2347. }
  2348. #endif
  2349. #if defined(L_fseeko64) || (defined(L_fseek) && !defined(__STDIO_LARGE_FILES))
  2350. #ifndef L_fseeko64
  2351. #define fseeko64 fseek
  2352. #define __off64_t long int
  2353. #endif
  2354. /* Reentrant -- fseek(), fseeko(), fseeko64() */
  2355. int fseeko64(register FILE *stream, __off64_t offset, int whence)
  2356. {
  2357. #if SEEK_SET != 0 || SEEK_CUR != 1 || SEEK_END != 2
  2358. #error Assumption violated -- values of SEEK_SET, SEEK_CUR, SEEK_END
  2359. #endif
  2360. __offmax_t pos[1];
  2361. int retval;
  2362. if ( ((unsigned int) whence) > 2 ) {
  2363. __set_errno(EINVAL);
  2364. return -1;
  2365. }
  2366. __STDIO_THREADLOCK(stream);
  2367. __stdio_validate_FILE(stream); /* debugging only */
  2368. retval = -1;
  2369. *pos = offset;
  2370. if (
  2371. #ifdef __STDIO_BUFFERS
  2372. /* First commit any pending buffered writes. */
  2373. ((stream->modeflags & __FLAG_WRITING) && fflush(stream)) ||
  2374. #endif /* __STDIO_BUFFERS */
  2375. ((whence == SEEK_CUR) && (_stdio_adjpos(stream, pos) < 0))
  2376. || (_stdio_lseek(stream, pos, whence) < 0)
  2377. ) {
  2378. __stdio_validate_FILE(stream); /* debugging only */
  2379. goto DONE;
  2380. }
  2381. #ifdef __STDIO_BUFFERS
  2382. /* only needed if reading but do it anyway to avoid test */
  2383. #ifdef __STDIO_GETC_MACRO
  2384. stream->bufgetc = /* Must disable getc. */
  2385. #endif
  2386. stream->bufwpos = stream->bufrpos = stream->bufstart;
  2387. #endif /* __STDIO_BUFFERS */
  2388. stream->modeflags &=
  2389. ~(__FLAG_READING|__FLAG_WRITING|__FLAG_EOF|__MASK_UNGOT);
  2390. #ifdef __STDIO_MBSTATE_DATA
  2391. /* TODO: don't clear state if don't move? */
  2392. __INIT_MBSTATE(&(stream->mbstate));
  2393. #endif /* __STDIO_MBSTATE_DATA */
  2394. __stdio_validate_FILE(stream); /* debugging only */
  2395. retval = 0;
  2396. DONE:
  2397. __STDIO_THREADUNLOCK(stream);
  2398. return retval;
  2399. }
  2400. #ifndef L_fseeko64
  2401. #undef fseeko64
  2402. #undef __off64_t
  2403. #endif
  2404. #endif
  2405. /**********************************************************************/
  2406. #if defined(L_fsetpos) || defined(L_fsetpos64)
  2407. #if defined(L_fsetpos) && defined(L_fsetpos64)
  2408. #error L_fsetpos and L_fsetpos64 are defined simultaneously!
  2409. #endif
  2410. #ifndef L_fsetpos64
  2411. #define fsetpos64 fsetpos
  2412. #define fpos64_t fpos_t
  2413. #define fseeko64 fseek
  2414. #endif
  2415. /* Reentrant -- fgetpos{64}() through fseek{64}(). */
  2416. int fsetpos64(FILE *stream, register const fpos64_t *pos)
  2417. {
  2418. if (!pos) {
  2419. __set_errno(EINVAL);
  2420. return EOF;
  2421. }
  2422. #ifdef __STDIO_MBSTATE_DATA
  2423. #error unimplemented and non-reentrant besides!
  2424. {
  2425. int retval;
  2426. if ((retval = fseeko64(stream, pos->__pos, SEEK_SET)) == 0) {
  2427. __COPY_MBSTATE(&(stream->mbstate), &(pos->__mbstate));
  2428. }
  2429. return retval;
  2430. }
  2431. #else /* __STDIO_MBSTATE_DATA */
  2432. return fseeko64(stream, pos->__pos, SEEK_SET);
  2433. #endif /* __STDIO_MBSTATE_DATA */
  2434. }
  2435. #ifndef L_fsetpos64
  2436. #undef fsetpos64
  2437. #undef fpos64_t
  2438. #undef fseeko64
  2439. #endif
  2440. #endif
  2441. /**********************************************************************/
  2442. #ifdef L_ftell
  2443. strong_alias(ftell, ftello);
  2444. #endif
  2445. #if defined(L_ftell) && defined(__STDIO_LARGE_FILES)
  2446. long int ftell(register FILE *stream)
  2447. {
  2448. __offmax_t pos = ftello64(stream);
  2449. return (pos == ((long int) pos)) ? pos : (__set_errno(EOVERFLOW), -1);
  2450. }
  2451. #endif
  2452. #if defined(L_ftello64) || (defined(L_ftell) && !defined(__STDIO_LARGE_FILES))
  2453. #ifndef L_ftello64
  2454. #define ftello64 ftell
  2455. #define __off64_t long int
  2456. #endif
  2457. /* Reentrant -- ftell, ftello, ftello64. */
  2458. __off64_t ftello64(register FILE *stream)
  2459. {
  2460. __offmax_t pos[1];
  2461. __off64_t retval;
  2462. __STDIO_THREADLOCK(stream);
  2463. retval = (((*pos = 0), (_stdio_lseek(stream, pos, SEEK_CUR) < 0))
  2464. || (_stdio_adjpos(stream, pos) < 0)) ? -1 : *pos;
  2465. __STDIO_THREADUNLOCK(stream);
  2466. return retval;
  2467. }
  2468. #ifndef L_ftello64
  2469. #undef ftello64
  2470. #undef __off64_t
  2471. #endif
  2472. #endif
  2473. /**********************************************************************/
  2474. #ifdef L_rewind
  2475. void rewind(register FILE *stream)
  2476. {
  2477. __STDIO_THREADLOCK(stream);
  2478. __CLEARERR(stream); /* Clear errors first and then seek */
  2479. fseek(stream, 0L, SEEK_SET); /* in case there is an error seeking. */
  2480. __STDIO_THREADUNLOCK(stream);
  2481. }
  2482. #endif
  2483. /**********************************************************************/
  2484. #ifdef L_clearerr
  2485. #undef clearerr
  2486. /* Reentrancy handled by UNLOCKED_VOID_RETURN() macro. */
  2487. UNLOCKED_VOID_RETURN(clearerr,(FILE *stream),(stream))
  2488. {
  2489. __CLEARERR(stream);
  2490. }
  2491. #endif
  2492. /**********************************************************************/
  2493. #ifdef L_feof
  2494. #undef feof
  2495. /* Reentrancy handled by UNLOCKED() macro. */
  2496. UNLOCKED(int,feof,(FILE *stream),(stream))
  2497. {
  2498. return __FEOF(stream);
  2499. }
  2500. #endif
  2501. /**********************************************************************/
  2502. #ifdef L_ferror
  2503. #undef ferror
  2504. /* Reentrancy handled by UNLOCKED() macro. */
  2505. UNLOCKED(int,ferror,(FILE *stream),(stream))
  2506. {
  2507. return __FERROR(stream);
  2508. }
  2509. #endif
  2510. /**********************************************************************/
  2511. #ifdef L_perror
  2512. /* TODO -- not allowed to interfere with static storage of strerror(). */
  2513. void perror(register const char *s)
  2514. {
  2515. /* If the program is calling perror, it's a safe bet that printf and
  2516. * friends are used as well. It is also possible that the calling
  2517. * program could buffer stderr, or reassign it. */
  2518. register const char *sep;
  2519. sep = ": ";
  2520. if (!(s && *s)) { /* Caller did not supply a prefix message */
  2521. s = (sep += 2); /* or passed an empty string. */
  2522. }
  2523. #if 1
  2524. #ifdef __STDIO_PRINTF_M_SPEC
  2525. fprintf(_stderr, "%s%s%m\n", s, sep); /* Use the gnu %m feature. */
  2526. #else
  2527. /* TODO: use strerror_r instead? */
  2528. fprintf(_stderr, "%s%s%s\n", s, sep, strerror(errno));
  2529. #endif
  2530. #else
  2531. /* Note: Assumes stderr not closed or buffered. */
  2532. __STDIO_THREADLOCK(stderr);
  2533. _stdio_fdout(STDERR_FILENO, s, sep, strerror(errno));
  2534. __STDIO_THREADUNLOCK(stderr);
  2535. #endif
  2536. }
  2537. #endif
  2538. /**********************************************************************/
  2539. /* UTILITY funcs */
  2540. /**********************************************************************/
  2541. #ifdef L__stdio_fdout
  2542. /* Not reentrant -- TODO: lock associated stream if a know file descriptor? */
  2543. void _stdio_fdout(int fd, ...)
  2544. {
  2545. va_list arg;
  2546. const char *p;
  2547. va_start(arg, fd);
  2548. while ((p = va_arg(arg, const char *)) != NULL) {
  2549. write(fd, p, strlen(p));
  2550. }
  2551. va_end(arg);
  2552. }
  2553. #endif
  2554. /**********************************************************************/
  2555. #ifdef L__uintmaxtostr
  2556. /* Avoid using long long / and % operations to cut down dependencies on
  2557. * libgcc.a. Definitely helps on i386 at least. */
  2558. #if (UINTMAX_MAX > UINT_MAX) && ((UINTMAX_MAX/UINT_MAX) - 2 <= UINT_MAX)
  2559. #define INTERNAL_DIV_MOD
  2560. #endif
  2561. char *_uintmaxtostr(char * __restrict bufend, uintmax_t uval,
  2562. int base, __UIM_CASE alphacase)
  2563. {
  2564. int negative;
  2565. unsigned int digit;
  2566. #ifdef INTERNAL_DIV_MOD
  2567. unsigned int H, L, high, low, rh;
  2568. #endif
  2569. negative = 0;
  2570. if (base < 0) { /* signed value */
  2571. base = -base;
  2572. if (uval > INTMAX_MAX) {
  2573. uval = -uval;
  2574. negative = 1;
  2575. }
  2576. }
  2577. /* this is an internal routine -- we shouldn't need to check this */
  2578. assert(!((base < 2) || (base > 36)));
  2579. *bufend = '\0';
  2580. #ifndef INTERNAL_DIV_MOD
  2581. do {
  2582. digit = uval % base;
  2583. uval /= base;
  2584. *--bufend = ( (digit < 10) ? digit + '0' : digit + alphacase );
  2585. } while (uval);
  2586. #else /* ************************************************** */
  2587. H = (UINT_MAX / base);
  2588. L = UINT_MAX % base + 1;
  2589. if (L == base) {
  2590. ++H;
  2591. L = 0;
  2592. }
  2593. low = (unsigned int) uval;
  2594. high = (unsigned int) (uval >> (sizeof(unsigned int) * CHAR_BIT));
  2595. do {
  2596. rh = high % base;
  2597. high /= base;
  2598. digit = (low % base) + (L * rh);
  2599. low = (low / base) + (H * rh) + (digit / base);
  2600. digit %= base;
  2601. *--bufend = ( (digit < 10) ? digit + '0' : digit + alphacase );
  2602. } while (low | high);
  2603. #endif /******************************************************/
  2604. if (negative) {
  2605. *--bufend = '-';
  2606. }
  2607. return bufend;
  2608. }
  2609. #undef INTERNAL_DIV_MOD
  2610. #endif