_stdio.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430
  1. /* Copyright (C) 2004-2005 Manuel Novoa III <mjn3@codepoet.org>
  2. *
  3. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  4. *
  5. * Dedicated to Toni. See uClibc/DEDICATION.mjn3 for details.
  6. */
  7. #include <features.h>
  8. #include <assert.h>
  9. #include <errno.h>
  10. #include <fcntl.h>
  11. #include <limits.h>
  12. #include <signal.h>
  13. #include <stdint.h>
  14. #include <stdio.h>
  15. #include <stdlib.h>
  16. #include <string.h>
  17. #include <unistd.h>
  18. #ifdef __UCLIBC_HAS_WCHAR__
  19. #include <wchar.h>
  20. #endif
  21. #include <bits/uClibc_mutex.h>
  22. #define __STDIO_THREADLOCK_OPENLIST_ADD \
  23. __UCLIBC_MUTEX_LOCK(_stdio_openlist_add_lock)
  24. #define __STDIO_THREADUNLOCK_OPENLIST_ADD \
  25. __UCLIBC_MUTEX_UNLOCK(_stdio_openlist_add_lock)
  26. #ifdef __STDIO_BUFFERS
  27. #define __STDIO_THREADLOCK_OPENLIST_DEL \
  28. __UCLIBC_MUTEX_LOCK(_stdio_openlist_del_lock)
  29. #define __STDIO_THREADUNLOCK_OPENLIST_DEL \
  30. __UCLIBC_MUTEX_UNLOCK(_stdio_openlist_del_lock)
  31. #define __STDIO_OPENLIST_INC_USE \
  32. do { \
  33. __STDIO_THREADLOCK_OPENLIST_DEL; \
  34. ++_stdio_openlist_use_count; \
  35. __STDIO_THREADUNLOCK_OPENLIST_DEL; \
  36. } while (0)
  37. extern void _stdio_openlist_dec_use(void);
  38. #define __STDIO_OPENLIST_DEC_USE \
  39. _stdio_openlist_dec_use()
  40. #define __STDIO_OPENLIST_INC_DEL_CNT \
  41. do { \
  42. __STDIO_THREADLOCK_OPENLIST_DEL; \
  43. ++_stdio_openlist_del_count; \
  44. __STDIO_THREADUNLOCK_OPENLIST_DEL; \
  45. } while (0)
  46. #define __STDIO_OPENLIST_DEC_DEL_CNT \
  47. do { \
  48. __STDIO_THREADLOCK_OPENLIST_DEL; \
  49. --_stdio_openlist_del_count; \
  50. __STDIO_THREADUNLOCK_OPENLIST_DEL; \
  51. } while (0)
  52. #endif /* __STDIO_BUFFERS */
  53. #ifndef __STDIO_THREADLOCK_OPENLIST_DEL
  54. #define __STDIO_THREADLOCK_OPENLIST_DEL ((void)0)
  55. #define __STDIO_THREADUNLOCK_OPENLIST_DEL ((void)0)
  56. #define __STDIO_OPENLIST_INC_USE ((void)0)
  57. #define __STDIO_OPENLIST_DEC_USE ((void)0)
  58. #define __STDIO_OPENLIST_INC_DEL_CNT ((void)0)
  59. #define __STDIO_OPENLIST_DEC_DEL_CNT ((void)0)
  60. #endif
  61. #define __UNDEFINED_OR_NONPORTABLE ((void)0)
  62. /**********************************************************************/
  63. #ifdef __UCLIBC_HAS_GLIBC_CUSTOM_STREAMS__
  64. extern __ssize_t _cs_read(void *cookie, char *buf, size_t bufsize) attribute_hidden;
  65. extern __ssize_t _cs_write(void *cookie, const char *buf, size_t bufsize) attribute_hidden;
  66. extern int _cs_seek(void *cookie, __offmax_t *pos, int whence) attribute_hidden;
  67. extern int _cs_close(void *cookie) attribute_hidden;
  68. #define __STDIO_STREAM_RESET_GCS(S) \
  69. (S)->__cookie = &((S)->__filedes); \
  70. (S)->__gcs.read = _cs_read; \
  71. (S)->__gcs.write = _cs_write; \
  72. (S)->__gcs.seek = _cs_seek; \
  73. (S)->__gcs.close = _cs_close
  74. #define __READ(STREAMPTR,BUF,SIZE) \
  75. ((((STREAMPTR)->__gcs.read) == NULL) ? -1 : \
  76. (((STREAMPTR)->__gcs.read)((STREAMPTR)->__cookie,(BUF),(SIZE))))
  77. #define __WRITE(STREAMPTR,BUF,SIZE) \
  78. ((((STREAMPTR)->__gcs.write) == NULL) ? -1 : \
  79. (((STREAMPTR)->__gcs.write)((STREAMPTR)->__cookie,(BUF),(SIZE))))
  80. #define __SEEK(STREAMPTR,PPOS,WHENCE) \
  81. ((((STREAMPTR)->__gcs.seek) == NULL) ? -1 : \
  82. (((STREAMPTR)->__gcs.seek)((STREAMPTR)->__cookie,(PPOS),(WHENCE))))
  83. #define __CLOSE(STREAMPTR) \
  84. ((((STREAMPTR)->__gcs.close) == NULL) ? 0 : \
  85. (((STREAMPTR)->__gcs.close)((STREAMPTR)->__cookie)))
  86. #else /* __UCLIBC_HAS_GLIBC_CUSTOM_STREAMS__ */
  87. extern int __stdio_seek(FILE *stream, register __offmax_t *pos, int whence) attribute_hidden;
  88. #define __STDIO_STREAM_RESET_GCS(S) ((void)0)
  89. #define __READ(STREAMPTR,BUF,SIZE) \
  90. (read((STREAMPTR)->__filedes,(BUF),(SIZE)))
  91. #define __WRITE(STREAMPTR,BUF,SIZE) \
  92. (write((STREAMPTR)->__filedes,(BUF),(SIZE)))
  93. #define __SEEK(STREAMPTR,PPOS,WHENCE) \
  94. (__stdio_seek((STREAMPTR),(PPOS),(WHENCE)))
  95. #define __CLOSE(STREAMPTR) \
  96. (close((STREAMPTR)->__filedes))
  97. #endif /* __UCLIBC_HAS_GLIBC_CUSTOM_STREAMS__ */
  98. /**********************************************************************/
  99. #ifdef __UCLIBC_HAS_WCHAR__
  100. #define __STDIO_STREAM_TRANS_TO_WRITE(S,O) __stdio_trans2w_o((S), (O))
  101. #define __STDIO_STREAM_TRANS_TO_READ(S,O) __stdio_trans2r_o((S), (O))
  102. #else
  103. #define __STDIO_STREAM_TRANS_TO_WRITE(S,O) __stdio_trans2w((S))
  104. #define __STDIO_STREAM_TRANS_TO_READ(S,O) __stdio_trans2r((S))
  105. #endif
  106. /**********************************************************************/
  107. #define __STDIO_STREAM_IS_READING(S) ((S)->__modeflags & __MASK_READING)
  108. #define __STDIO_STREAM_IS_WRITING(S) ((S)->__modeflags & __FLAG_WRITING)
  109. #define __STDIO_STREAM_SET_READING(S) ((S)->__modeflags |= __FLAG_READING)
  110. #define __STDIO_STREAM_SET_WRITING(S) ((S)->__modeflags |= __FLAG_WRITING)
  111. #define __STDIO_STREAM_IS_READING_OR_READONLY(S) \
  112. ((S)->__modeflags & (__MASK_READING|__FLAG_READONLY))
  113. #define __STDIO_STREAM_IS_WRITING_OR_WRITEONLY(S) \
  114. ((S)->__modeflags & (__FLAG_WRITING|__FLAG_WRITEONLY))
  115. #define __STDIO_STREAM_IS_READONLY(S) ((S)->__modeflags & __FLAG_READONLY)
  116. #define __STDIO_STREAM_IS_WRITEONLY(S) ((S)->__modeflags & __FLAG_WRITEONLY)
  117. /**********************************************************************/
  118. #ifdef __UCLIBC_HAS_WCHAR__
  119. #define __STDIO_STREAM_IS_NARROW_WRITING(S) \
  120. (((S)->__modeflags & (__FLAG_WRITING|__FLAG_NARROW)) \
  121. == (__FLAG_WRITING|__FLAG_NARROW))
  122. #define __STDIO_STREAM_IS_WIDE_WRITING(S) \
  123. (((S)->__modeflags & (__FLAG_WRITING|__FLAG_WIDE)) \
  124. == (__FLAG_WRITING|__FLAG_WIDE))
  125. #if (__FLAG_NARROW <= __MASK_READING)
  126. #error assumption violated regarding __FLAG_NARROW
  127. #endif
  128. #define __STDIO_STREAM_IS_NARROW_READING(S) \
  129. (((S)->__modeflags & (__MASK_READING|__FLAG_NARROW)) > __FLAG_NARROW)
  130. #define __STDIO_STREAM_IS_WIDE_READING(S) \
  131. (((S)->__modeflags & (__MASK_READING|__FLAG_WIDE)) > __FLAG_WIDE)
  132. #define __STDIO_STREAM_IS_NARROW(S) ((S)->__modeflags & __FLAG_NARROW)
  133. #define __STDIO_STREAM_IS_WIDE(S) ((S)->__modeflags & __FLAG_WIDE)
  134. #define __STDIO_STREAM_SET_NARROW(S) \
  135. ((void)((S)->__modeflags |= __FLAG_NARROW))
  136. #define __STDIO_STREAM_SET_WIDE(S) \
  137. ((void)((S)->__modeflags |= __FLAG_WIDE))
  138. #else
  139. #define __STDIO_STREAM_IS_NARROW_WRITING(S) __STDIO_STREAM_IS_WRITING(S)
  140. #define __STDIO_STREAM_IS_NARROW_READING(S) __STDIO_STREAM_IS_READING(S)
  141. #define __STDIO_STREAM_IS_NARROW(S) (1)
  142. #define __STDIO_STREAM_IS_WIDE(S) (0)
  143. #define __STDIO_STREAM_SET_NARROW(S) ((void)0)
  144. #define __STDIO_STREAM_SET_WIDE(S) ((void)0)
  145. #endif
  146. /**********************************************************************/
  147. #define __STDIO_STREAM_SET_EOF(S) \
  148. ((void)((S)->__modeflags |= __FLAG_EOF))
  149. #define __STDIO_STREAM_SET_ERROR(S) \
  150. ((void)((S)->__modeflags |= __FLAG_ERROR))
  151. #define __STDIO_STREAM_CLEAR_EOF(S) \
  152. ((void)((S)->__modeflags &= ~__FLAG_EOF))
  153. #define __STDIO_STREAM_CLEAR_ERROR(S) \
  154. ((void)((S)->__modeflags &= ~__FLAG_ERROR))
  155. #define __STDIO_STREAM_CLEAR_READING_AND_UNGOTS(S) \
  156. ((void)((S)->__modeflags &= ~__MASK_READING))
  157. #define __STDIO_STREAM_CLEAR_WRITING(S) \
  158. ((void)((S)->__modeflags &= ~__FLAG_WRITING))
  159. #ifdef __UCLIBC_HAS_STDIO_GETC_MACRO__
  160. # define __STDIO_STREAM_DISABLE_GETC(S) \
  161. ((void)((S)->__bufgetc_u = (S)->__bufstart))
  162. # define __STDIO_STREAM_ENABLE_GETC(S) \
  163. ((void)((S)->__bufgetc_u = (S)->__bufread))
  164. # define __STDIO_STREAM_CAN_USE_BUFFER_GET(S) \
  165. ((S)->__bufpos < (S)->__bufgetc_u)
  166. #else
  167. # define __STDIO_STREAM_DISABLE_GETC(S) ((void)0)
  168. # define __STDIO_STREAM_ENABLE_GETC(S) ((void)0)
  169. # define __STDIO_STREAM_CAN_USE_BUFFER_GET(S) (0)
  170. #endif
  171. #ifdef __UCLIBC_HAS_STDIO_PUTC_MACRO__
  172. # define __STDIO_STREAM_DISABLE_PUTC(S) \
  173. ((void)((S)->__bufputc_u = (S)->__bufstart))
  174. # define __STDIO_STREAM_ENABLE_PUTC(S) \
  175. ((void)((S)->__bufputc_u = (S)->__bufend))
  176. # define __STDIO_STREAM_CAN_USE_BUFFER_ADD(S) \
  177. ((S)->__bufpos < (S)->__bufputc_u)
  178. #else
  179. # define __STDIO_STREAM_DISABLE_PUTC(S) ((void)0)
  180. # define __STDIO_STREAM_ENABLE_PUTC(S) ((void)0)
  181. # define __STDIO_STREAM_CAN_USE_BUFFER_ADD(S) (0)
  182. #endif
  183. #ifdef __UCLIBC_HAS_GLIBC_CUSTOM_STREAMS__
  184. #define __STDIO_STREAM_IS_CUSTOM(S) ((S)->__cookie != &((S)->__filedes))
  185. #else
  186. #define __STDIO_STREAM_IS_CUSTOM(S) (0)
  187. #endif
  188. /**********************************************************************/
  189. #ifdef __STDIO_BUFFERS
  190. #define __STDIO_STREAM_FREE_BUFFER(S) \
  191. do { if ((S)->__modeflags & __FLAG_FREEBUF) \
  192. free((S)->__bufstart); } while (0)
  193. #else
  194. #define __STDIO_STREAM_FREE_BUFFER(S) ((void)0)
  195. #endif
  196. #define __STDIO_STREAM_FREE_FILE(S) \
  197. do { if ((S)->__modeflags & __FLAG_FREEFILE) \
  198. free((S)); } while (0)
  199. #ifdef __UCLIBC_HAS_LFS__
  200. #define __STDIO_WHEN_LFS(E) E
  201. #else
  202. #define __STDIO_WHEN_LFS(E) ((void)0)
  203. #endif
  204. /**********************************************************************/
  205. /* The following return 0 on success. */
  206. #ifdef __STDIO_BUFFERS
  207. /* Assume stream in valid writing state. Do not reset writing flag
  208. * or disble putc macro unless error. */
  209. /* Should we assume that buffer is not empty to avoid a check? */
  210. extern size_t __stdio_wcommit(FILE *__restrict stream) attribute_hidden;
  211. /* Remember to fail if at EOF! */
  212. extern size_t __stdio_rfill(FILE *__restrict stream) attribute_hidden;
  213. extern size_t __stdio_fwrite(const unsigned char *__restrict buffer,
  214. size_t bytes, FILE *__restrict stream) attribute_hidden;
  215. #else
  216. #define __stdio_fwrite(B,N,S) __stdio_WRITE((S),(B),(N))
  217. #endif
  218. extern size_t __stdio_WRITE(FILE *stream, const unsigned char *buf,
  219. size_t bufsize) attribute_hidden;
  220. extern size_t __stdio_READ(FILE *stream, unsigned char *buf,
  221. size_t bufsize) attribute_hidden;
  222. extern int __stdio_trans2r(FILE *__restrict stream) attribute_hidden;
  223. extern int __stdio_trans2w(FILE *__restrict stream) attribute_hidden;
  224. extern int __stdio_trans2r_o(FILE *__restrict stream, int oflag) attribute_hidden;
  225. extern int __stdio_trans2w_o(FILE *__restrict stream, int oflag) attribute_hidden;
  226. /**********************************************************************/
  227. #ifdef __STDIO_BUFFERS
  228. #define __STDIO_STREAM_IS_FBF(S) (!((S)->__modeflags & __MASK_BUFMODE))
  229. #define __STDIO_STREAM_IS_LBF(S) ((S)->__modeflags & __FLAG_LBF)
  230. #define __STDIO_STREAM_IS_NBF(S) ((S)->__modeflags & __FLAG_NBF)
  231. #define __STDIO_STREAM_BUFFER_SIZE(S) ((S)->__bufend - (S)->__bufstart)
  232. /* Valid when writing... */
  233. #define __STDIO_STREAM_BUFFER_ADD(S,C) (*(S)->__bufpos++ = (C))
  234. #define __STDIO_STREAM_BUFFER_UNADD(S) (--(S)->__bufpos)
  235. #define __STDIO_STREAM_BUFFER_WAVAIL(S) ((S)->__bufend - (S)->__bufpos)
  236. #define __STDIO_STREAM_BUFFER_WUSED(S) ((S)->__bufpos - (S)->__bufstart)
  237. #define __STDIO_COMMIT_WRITE_BUFFER(S) __stdio_wcommit((S))
  238. #ifdef __UCLIBC_HAS_WCHAR__
  239. #define __STDIO_STREAM_IS_NARROW_FBF(S) \
  240. (!((S)->__modeflags & (__MASK_BUFMODE|__FLAG_WIDE)))
  241. #else
  242. #define __STDIO_STREAM_IS_NARROW_FBF(S) __STDIO_STREAM_IS_FBF((S))
  243. #endif
  244. /* Valid when reading... */
  245. #define __STDIO_STREAM_BUFFER_RAVAIL(S) ((S)->__bufread - (S)->__bufpos)
  246. #define __STDIO_STREAM_BUFFER_GET(S) (*(S)->__bufpos++)
  247. #define __STDIO_FILL_READ_BUFFER(S) __stdio_rfill((S))
  248. #define __STDIO_STREAM_INIT_BUFREAD_BUFPOS(S) \
  249. (S)->__bufread = (S)->__bufpos = (S)->__bufstart
  250. #define __STDIO_STREAM_FAKE_VSNPRINTF_FILEDES (-2)
  251. #define __STDIO_STREAM_FAKE_VSSCANF_FILEDES (-2)
  252. #define __STDIO_STREAM_FAKE_VSWPRINTF_FILEDES (-3)
  253. #define __STDIO_STREAM_FAKE_VSWSCANF_FILEDES (-3)
  254. #define __STDIO_STREAM_IS_FAKE_VSNPRINTF(S) \
  255. ((S)->__filedes == __STDIO_STREAM_FAKE_VSNPRINTF_FILEDES)
  256. #define __STDIO_STREAM_IS_FAKE_VSSCANF(S) \
  257. ((S)->__filedes == __STDIO_STREAM_FAKE_VSSCANF_FILEDES)
  258. #define __STDIO_STREAM_IS_FAKE_VSWPRINTF(S) \
  259. ((S)->__filedes == __STDIO_STREAM_FAKE_VSWPRINTF_FILEDES)
  260. #define __STDIO_STREAM_IS_FAKE_VSWSCANF(S) \
  261. ((S)->__filedes == __STDIO_STREAM_FAKE_VSWSCANF_FILEDES)
  262. #else /* __STDIO_BUFFERS */
  263. #define __STDIO_STREAM_IS_FBF(S) (0)
  264. #define __STDIO_STREAM_IS_LBF(S) (0)
  265. #define __STDIO_STREAM_IS_NBF(S) (1)
  266. #define __STDIO_STREAM_BUFFER_SIZE(S) (0)
  267. #define __STDIO_STREAM_BUFFER_ADD(S,C) ((void)0)
  268. #define __STDIO_STREAM_BUFFER_UNADD(S) ((void)0)
  269. #define __STDIO_STREAM_BUFFER_WAVAIL(S) (0)
  270. #define __STDIO_STREAM_BUFFER_WUSED(S) (0)
  271. #define __STDIO_COMMIT_WRITE_BUFFER(S) (0)
  272. #define __STDIO_STREAM_IS_NARROW_FBF(S) (0)
  273. #define __STDIO_STREAM_BUFFER_RAVAIL(S) (0)
  274. #define __STDIO_STREAM_BUFFER_GET(S) (EOF)
  275. #define __STDIO_FILL_READ_BUFFER(S) (0)
  276. #define __STDIO_STREAM_INIT_BUFREAD_BUFPOS(S) ((void)0)
  277. #undef __STDIO_STREAM_FAKE_VSNPRINTF_FILEDES
  278. #undef __STDIO_STREAM_FAKE_VSSCANF_FILEDES
  279. #undef __STDIO_STREAM_FAKE_VSWPRINTF_FILEDES
  280. #define __STDIO_STREAM_IS_FAKE_VSNPRINTF(S) (0)
  281. #define __STDIO_STREAM_IS_FAKE_VSSCANF(S) (0)
  282. #undef __STDIO_STREAM_IS_FAKE_VSWPRINTF
  283. # ifdef __USE_OLD_VFPRINTF__
  284. # define __STDIO_STREAM_FAKE_VSNPRINTF_FILEDES_NB (-2)
  285. # define __STDIO_STREAM_IS_FAKE_VSNPRINTF_NB(S) \
  286. ((S)->__filedes == __STDIO_STREAM_FAKE_VSNPRINTF_FILEDES_NB)
  287. # endif
  288. # ifndef __UCLIBC_HAS_WCHAR__
  289. # define __STDIO_STREAM_FAKE_VSSCANF_FILEDES_NB (-2)
  290. # define __STDIO_STREAM_IS_FAKE_VSSCANF_NB(S) \
  291. ((S)->__filedes == __STDIO_STREAM_FAKE_VSSCANF_FILEDES_NB)
  292. # endif
  293. #endif /* __STDIO_BUFFERS */
  294. /**********************************************************************/
  295. extern int __stdio_adjust_position(FILE *__restrict stream, __offmax_t *pos) attribute_hidden;
  296. #ifdef __STDIO_HAS_OPENLIST
  297. /* Uses an implementation hack!!! */
  298. #define __STDIO_FLUSH_LBF_STREAMS \
  299. fflush_unlocked((FILE *) &_stdio_openlist)
  300. #else
  301. #define __STDIO_FLUSH_LBF_STREAMS ((void)0)
  302. #endif
  303. #ifdef NDEBUG
  304. #define __STDIO_STREAM_VALIDATE(S) ((void)0)
  305. #else
  306. extern void _stdio_validate_FILE(const FILE *stream);
  307. #define __STDIO_STREAM_VALIDATE(S) _stdio_validate_FILE((S))
  308. #endif
  309. #ifdef __STDIO_MBSTATE
  310. #define __COPY_MBSTATE(dest,src) \
  311. ((void)((dest)->__mask = (src)->__mask, (dest)->__wc = (src)->__wc))
  312. #define __INIT_MBSTATE(dest) ((void)((dest)->__mask = 0))
  313. #else
  314. #define __COPY_MBSTATE(dest,src) ((void)0)
  315. #define __INIT_MBSTATE(dest) ((void)0)
  316. #endif
  317. /**********************************************************************/
  318. extern FILE *_stdio_fopen(intptr_t fname_or_mode, const char *__restrict mode,
  319. FILE *__restrict stream, int filedes) attribute_hidden;
  320. #ifdef __UCLIBC_HAS_WCHAR__
  321. extern size_t _wstdio_fwrite(const wchar_t *__restrict ws,
  322. size_t n, FILE *__restrict stream) attribute_hidden;
  323. #endif
  324. /**********************************************************************/
  325. /* Only use the macro below if you know fp is a valid FILE for a valid fd.
  326. * This is _not_ true for custom streams! */
  327. #define __FILENO_UNLOCKED(fp) ((fp)->__filedes)
  328. #define __FEOF_OR_FERROR_UNLOCKED(stream) \
  329. ((stream)->__modeflags & (__FLAG_EOF|__FLAG_ERROR))
  330. #if defined(__STDIO_BUFFERS) || defined(__USE_OLD_VFPRINTF__) || defined(__UCLIBC_HAS_GLIBC_CUSTOM_STREAMS__)
  331. #define __STDIO_HAS_VSNPRINTF 1
  332. #endif