stdio.c 95 KB

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