stdio.h revision 319430
1/*-
2 * Copyright (c) 1990, 1993
3 *	The Regents of the University of California.  All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Chris Torek.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 *    notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 *    notice, this list of conditions and the following disclaimer in the
15 *    documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the University nor the names of its contributors
17 *    may be used to endorse or promote products derived from this software
18 *    without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 *	@(#)stdio.h	8.5 (Berkeley) 4/29/95
33 * $FreeBSD: stable/11/include/stdio.h 319430 2017-06-01 14:49:53Z vangyzen $
34 */
35
36#ifndef	_STDIO_H_
37#define	_STDIO_H_
38
39#include <sys/cdefs.h>
40#include <sys/_null.h>
41#include <sys/_types.h>
42
43__NULLABILITY_PRAGMA_PUSH
44
45typedef	__off_t		fpos_t;
46
47#ifndef _SIZE_T_DECLARED
48typedef	__size_t	size_t;
49#define	_SIZE_T_DECLARED
50#endif
51
52#if __POSIX_VISIBLE >= 200809
53#ifndef _OFF_T_DECLARED
54#define	_OFF_T_DECLARED
55typedef	__off_t		off_t;
56#endif
57#ifndef _SSIZE_T_DECLARED
58#define	_SSIZE_T_DECLARED
59typedef	__ssize_t	ssize_t;
60#endif
61#endif
62
63#ifndef _OFF64_T_DECLARED
64#define	_OFF64_T_DECLARED
65typedef	__off64_t	off64_t;
66#endif
67
68#if __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE
69#ifndef _VA_LIST_DECLARED
70typedef	__va_list	va_list;
71#define	_VA_LIST_DECLARED
72#endif
73#endif
74
75#define	_FSTDIO			/* Define for new stdio with functions. */
76
77/*
78 * NB: to fit things in six character monocase externals, the stdio
79 * code uses the prefix `__s' for stdio objects, typically followed
80 * by a three-character attempt at a mnemonic.
81 */
82
83/* stdio buffers */
84struct __sbuf {
85	unsigned char *_base;
86	int	_size;
87};
88
89/*
90 * stdio state variables.
91 *
92 * The following always hold:
93 *
94 *	if (_flags&(__SLBF|__SWR)) == (__SLBF|__SWR),
95 *		_lbfsize is -_bf._size, else _lbfsize is 0
96 *	if _flags&__SRD, _w is 0
97 *	if _flags&__SWR, _r is 0
98 *
99 * This ensures that the getc and putc macros (or inline functions) never
100 * try to write or read from a file that is in `read' or `write' mode.
101 * (Moreover, they can, and do, automatically switch from read mode to
102 * write mode, and back, on "r+" and "w+" files.)
103 *
104 * _lbfsize is used only to make the inline line-buffered output stream
105 * code as compact as possible.
106 *
107 * _ub, _up, and _ur are used when ungetc() pushes back more characters
108 * than fit in the current _bf, or when ungetc() pushes back a character
109 * that does not match the previous one in _bf.  When this happens,
110 * _ub._base becomes non-nil (i.e., a stream has ungetc() data iff
111 * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
112 *
113 * Certain members of __sFILE are accessed directly via macros or
114 * inline functions.  To preserve ABI compat, these members must not
115 * be disturbed.  These members are marked below with (*).
116 */
117struct __sFILE {
118	unsigned char *_p;	/* (*) current position in (some) buffer */
119	int	_r;		/* (*) read space left for getc() */
120	int	_w;		/* (*) write space left for putc() */
121	short	_flags;		/* (*) flags, below; this FILE is free if 0 */
122	short	_file;		/* (*) fileno, if Unix descriptor, else -1 */
123	struct	__sbuf _bf;	/* (*) the buffer (at least 1 byte, if !NULL) */
124	int	_lbfsize;	/* (*) 0 or -_bf._size, for inline putc */
125
126	/* operations */
127	void	*_cookie;	/* (*) cookie passed to io functions */
128	int	(* _Nullable _close)(void *);
129	int	(* _Nullable _read)(void *, char *, int);
130	fpos_t	(* _Nullable _seek)(void *, fpos_t, int);
131	int	(* _Nullable _write)(void *, const char *, int);
132
133	/* separate buffer for long sequences of ungetc() */
134	struct	__sbuf _ub;	/* ungetc buffer */
135	unsigned char	*_up;	/* saved _p when _p is doing ungetc data */
136	int	_ur;		/* saved _r when _r is counting ungetc data */
137
138	/* tricks to meet minimum requirements even when malloc() fails */
139	unsigned char _ubuf[3];	/* guarantee an ungetc() buffer */
140	unsigned char _nbuf[1];	/* guarantee a getc() buffer */
141
142	/* separate buffer for fgetln() when line crosses buffer boundary */
143	struct	__sbuf _lb;	/* buffer for fgetln() */
144
145	/* Unix stdio files get aligned to block boundaries on fseek() */
146	int	_blksize;	/* stat.st_blksize (may be != _bf._size) */
147	fpos_t	_offset;	/* current lseek offset */
148
149	struct pthread_mutex *_fl_mutex;	/* used for MT-safety */
150	struct pthread *_fl_owner;	/* current owner */
151	int	_fl_count;	/* recursive lock count */
152	int	_orientation;	/* orientation for fwide() */
153	__mbstate_t _mbstate;	/* multibyte conversion state */
154	int	_flags2;	/* additional flags */
155};
156#ifndef _STDFILE_DECLARED
157#define _STDFILE_DECLARED
158typedef struct __sFILE FILE;
159#endif
160#ifndef _STDSTREAM_DECLARED
161__BEGIN_DECLS
162extern FILE *__stdinp;
163extern FILE *__stdoutp;
164extern FILE *__stderrp;
165__END_DECLS
166#define	_STDSTREAM_DECLARED
167#endif
168
169#define	__SLBF	0x0001		/* line buffered */
170#define	__SNBF	0x0002		/* unbuffered */
171#define	__SRD	0x0004		/* OK to read */
172#define	__SWR	0x0008		/* OK to write */
173	/* RD and WR are never simultaneously asserted */
174#define	__SRW	0x0010		/* open for reading & writing */
175#define	__SEOF	0x0020		/* found EOF */
176#define	__SERR	0x0040		/* found error */
177#define	__SMBF	0x0080		/* _bf._base is from malloc */
178#define	__SAPP	0x0100		/* fdopen()ed in append mode */
179#define	__SSTR	0x0200		/* this is an sprintf/snprintf string */
180#define	__SOPT	0x0400		/* do fseek() optimization */
181#define	__SNPT	0x0800		/* do not do fseek() optimization */
182#define	__SOFF	0x1000		/* set iff _offset is in fact correct */
183#define	__SMOD	0x2000		/* true => fgetln modified _p text */
184#define	__SALC	0x4000		/* allocate string space dynamically */
185#define	__SIGN	0x8000		/* ignore this file in _fwalk */
186
187#define	__S2OAP	0x0001		/* O_APPEND mode is set */
188
189/*
190 * The following three definitions are for ANSI C, which took them
191 * from System V, which brilliantly took internal interface macros and
192 * made them official arguments to setvbuf(), without renaming them.
193 * Hence, these ugly _IOxxx names are *supposed* to appear in user code.
194 *
195 * Although numbered as their counterparts above, the implementation
196 * does not rely on this.
197 */
198#define	_IOFBF	0		/* setvbuf should set fully buffered */
199#define	_IOLBF	1		/* setvbuf should set line buffered */
200#define	_IONBF	2		/* setvbuf should set unbuffered */
201
202#define	BUFSIZ	1024		/* size of buffer used by setbuf */
203#define	EOF	(-1)
204
205/*
206 * FOPEN_MAX is a minimum maximum, and is the number of streams that
207 * stdio can provide without attempting to allocate further resources
208 * (which could fail).  Do not use this for anything.
209 */
210				/* must be == _POSIX_STREAM_MAX <limits.h> */
211#ifndef FOPEN_MAX
212#define	FOPEN_MAX	20	/* must be <= OPEN_MAX <sys/syslimits.h> */
213#endif
214#define	FILENAME_MAX	1024	/* must be <= PATH_MAX <sys/syslimits.h> */
215
216/* System V/ANSI C; this is the wrong way to do this, do *not* use these. */
217#if __XSI_VISIBLE
218#define	P_tmpdir	"/tmp/"
219#endif
220#define	L_tmpnam	1024	/* XXX must be == PATH_MAX */
221#define	TMP_MAX		308915776
222
223#ifndef SEEK_SET
224#define	SEEK_SET	0	/* set file offset to offset */
225#endif
226#ifndef SEEK_CUR
227#define	SEEK_CUR	1	/* set file offset to current plus offset */
228#endif
229#ifndef SEEK_END
230#define	SEEK_END	2	/* set file offset to EOF plus offset */
231#endif
232
233#define	stdin	__stdinp
234#define	stdout	__stdoutp
235#define	stderr	__stderrp
236
237__BEGIN_DECLS
238#ifdef _XLOCALE_H_
239#include <xlocale/_stdio.h>
240#endif
241/*
242 * Functions defined in ANSI C standard.
243 */
244void	 clearerr(FILE *);
245int	 fclose(FILE *);
246int	 feof(FILE *);
247int	 ferror(FILE *);
248int	 fflush(FILE *);
249int	 fgetc(FILE *);
250int	 fgetpos(FILE * __restrict, fpos_t * __restrict);
251char	*fgets(char * __restrict, int, FILE * __restrict);
252FILE	*fopen(const char * __restrict, const char * __restrict);
253int	 fprintf(FILE * __restrict, const char * __restrict, ...);
254int	 fputc(int, FILE *);
255int	 fputs(const char * __restrict, FILE * __restrict);
256size_t	 fread(void * __restrict, size_t, size_t, FILE * __restrict);
257FILE	*freopen(const char * __restrict, const char * __restrict, FILE * __restrict);
258int	 fscanf(FILE * __restrict, const char * __restrict, ...);
259int	 fseek(FILE *, long, int);
260int	 fsetpos(FILE *, const fpos_t *);
261long	 ftell(FILE *);
262size_t	 fwrite(const void * __restrict, size_t, size_t, FILE * __restrict);
263int	 getc(FILE *);
264int	 getchar(void);
265char	*gets(char *);
266void	 perror(const char *);
267int	 printf(const char * __restrict, ...);
268int	 putc(int, FILE *);
269int	 putchar(int);
270int	 puts(const char *);
271int	 remove(const char *);
272int	 rename(const char *, const char *);
273void	 rewind(FILE *);
274int	 scanf(const char * __restrict, ...);
275void	 setbuf(FILE * __restrict, char * __restrict);
276int	 setvbuf(FILE * __restrict, char * __restrict, int, size_t);
277int	 sprintf(char * __restrict, const char * __restrict, ...);
278int	 sscanf(const char * __restrict, const char * __restrict, ...);
279FILE	*tmpfile(void);
280char	*tmpnam(char *);
281int	 ungetc(int, FILE *);
282int	 vfprintf(FILE * __restrict, const char * __restrict,
283	    __va_list);
284int	 vprintf(const char * __restrict, __va_list);
285int	 vsprintf(char * __restrict, const char * __restrict,
286	    __va_list);
287
288#if __ISO_C_VISIBLE >= 1999
289int	 snprintf(char * __restrict, size_t, const char * __restrict,
290	    ...) __printflike(3, 4);
291int	 vfscanf(FILE * __restrict, const char * __restrict, __va_list)
292	    __scanflike(2, 0);
293int	 vscanf(const char * __restrict, __va_list) __scanflike(1, 0);
294int	 vsnprintf(char * __restrict, size_t, const char * __restrict,
295	    __va_list) __printflike(3, 0);
296int	 vsscanf(const char * __restrict, const char * __restrict, __va_list)
297	    __scanflike(2, 0);
298#endif
299
300/*
301 * Functions defined in all versions of POSIX 1003.1.
302 */
303#if __BSD_VISIBLE || (__POSIX_VISIBLE && __POSIX_VISIBLE <= 199506)
304#define	L_cuserid	17	/* size for cuserid(3); MAXLOGNAME, legacy */
305#endif
306
307#if __POSIX_VISIBLE
308#define	L_ctermid	1024	/* size for ctermid(3); PATH_MAX */
309
310char	*ctermid(char *);
311FILE	*fdopen(int, const char *);
312int	 fileno(FILE *);
313#endif /* __POSIX_VISIBLE */
314
315#if __POSIX_VISIBLE >= 199209
316int	 pclose(FILE *);
317FILE	*popen(const char *, const char *);
318#endif
319
320#if __POSIX_VISIBLE >= 199506
321int	 ftrylockfile(FILE *);
322void	 flockfile(FILE *);
323void	 funlockfile(FILE *);
324
325/*
326 * These are normally used through macros as defined below, but POSIX
327 * requires functions as well.
328 */
329int	 getc_unlocked(FILE *);
330int	 getchar_unlocked(void);
331int	 putc_unlocked(int, FILE *);
332int	 putchar_unlocked(int);
333#endif
334#if __BSD_VISIBLE
335void	 clearerr_unlocked(FILE *);
336int	 feof_unlocked(FILE *);
337int	 ferror_unlocked(FILE *);
338int	 fileno_unlocked(FILE *);
339#endif
340
341#if __POSIX_VISIBLE >= 200112
342int	 fseeko(FILE *, __off_t, int);
343__off_t	 ftello(FILE *);
344#endif
345
346#if __BSD_VISIBLE || __XSI_VISIBLE > 0 && __XSI_VISIBLE < 600
347int	 getw(FILE *);
348int	 putw(int, FILE *);
349#endif /* BSD or X/Open before issue 6 */
350
351#if __XSI_VISIBLE
352char	*tempnam(const char *, const char *);
353#endif
354
355#if __POSIX_VISIBLE >= 200809
356FILE	*fmemopen(void * __restrict, size_t, const char * __restrict);
357ssize_t	 getdelim(char ** __restrict, size_t * __restrict, int,
358	    FILE * __restrict);
359FILE	*open_memstream(char **, size_t *);
360int	 renameat(int, const char *, int, const char *);
361int	 vdprintf(int, const char * __restrict, __va_list) __printflike(2, 0);
362
363/*
364 * Every programmer and his dog wrote functions called getline() and dprintf()
365 * before POSIX.1-2008 came along and decided to usurp the names, so we
366 * don't prototype them by default unless one of the following is true:
367 *   a) the app has requested them specifically by defining _WITH_GETLINE or
368 *      _WITH_DPRINTF, respectively
369 *   b) the app has requested a POSIX.1-2008 environment via _POSIX_C_SOURCE
370 *   c) the app defines a GNUism such as _BSD_SOURCE or _GNU_SOURCE
371 */
372#ifndef _WITH_GETLINE
373#if defined(_BSD_SOURCE) || defined(_GNU_SOURCE)
374#define	_WITH_GETLINE
375#elif defined(_POSIX_C_SOURCE)
376#if _POSIX_C_SOURCE >= 200809
377#define	_WITH_GETLINE
378#endif
379#endif
380#endif
381
382#ifdef _WITH_GETLINE
383ssize_t	 getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
384#endif
385
386#ifndef _WITH_DPRINTF
387#if defined(_BSD_SOURCE) || defined(_GNU_SOURCE)
388#define	_WITH_DPRINTF
389#elif defined(_POSIX_C_SOURCE)
390#if _POSIX_C_SOURCE >= 200809
391#define	_WITH_DPRINTF
392#endif
393#endif
394#endif
395
396#ifdef _WITH_DPRINTF
397int	 (dprintf)(int, const char * __restrict, ...) __printflike(2, 3);
398#endif
399
400#endif /* __POSIX_VISIBLE >= 200809 */
401
402/*
403 * Routines that are purely local.
404 */
405#if __BSD_VISIBLE
406int	 asprintf(char **, const char *, ...) __printflike(2, 3);
407char	*ctermid_r(char *);
408void	 fcloseall(void);
409int	 fdclose(FILE *, int *);
410char	*fgetln(FILE *, size_t *);
411const char *fmtcheck(const char *, const char *) __format_arg(2);
412int	 fpurge(FILE *);
413void	 setbuffer(FILE *, char *, int);
414int	 setlinebuf(FILE *);
415int	 vasprintf(char **, const char *, __va_list)
416	    __printflike(2, 0);
417
418/*
419 * The system error table contains messages for the first sys_nerr
420 * positive errno values.  Use strerror() or strerror_r() from <string.h>
421 * instead.
422 */
423extern const int sys_nerr;
424extern const char * const sys_errlist[];
425
426/*
427 * Stdio function-access interface.
428 */
429FILE	*funopen(const void *,
430	    int (* _Nullable)(void *, char *, int),
431	    int (* _Nullable)(void *, const char *, int),
432	    fpos_t (* _Nullable)(void *, fpos_t, int),
433	    int (* _Nullable)(void *));
434#define	fropen(cookie, fn) funopen(cookie, fn, 0, 0, 0)
435#define	fwopen(cookie, fn) funopen(cookie, 0, fn, 0, 0)
436
437typedef __ssize_t cookie_read_function_t(void *, char *, size_t);
438typedef __ssize_t cookie_write_function_t(void *, const char *, size_t);
439typedef int cookie_seek_function_t(void *, off64_t *, int);
440typedef int cookie_close_function_t(void *);
441typedef struct {
442	cookie_read_function_t	*read;
443	cookie_write_function_t	*write;
444	cookie_seek_function_t	*seek;
445	cookie_close_function_t	*close;
446} cookie_io_functions_t;
447FILE	*fopencookie(void *, const char *, cookie_io_functions_t);
448
449/*
450 * Portability hacks.  See <sys/types.h>.
451 */
452#ifndef _FTRUNCATE_DECLARED
453#define	_FTRUNCATE_DECLARED
454int	 ftruncate(int, __off_t);
455#endif
456#ifndef _LSEEK_DECLARED
457#define	_LSEEK_DECLARED
458__off_t	 lseek(int, __off_t, int);
459#endif
460#ifndef _MMAP_DECLARED
461#define	_MMAP_DECLARED
462void	*mmap(void *, size_t, int, int, int, __off_t);
463#endif
464#ifndef _TRUNCATE_DECLARED
465#define	_TRUNCATE_DECLARED
466int	 truncate(const char *, __off_t);
467#endif
468#endif /* __BSD_VISIBLE */
469
470/*
471 * Functions internal to the implementation.
472 */
473int	__srget(FILE *);
474int	__swbuf(int, FILE *);
475
476/*
477 * The __sfoo macros are here so that we can
478 * define function versions in the C library.
479 */
480#define	__sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
481#if defined(__GNUC__) && defined(__STDC__)
482static __inline int __sputc(int _c, FILE *_p) {
483	if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n'))
484		return (*_p->_p++ = _c);
485	else
486		return (__swbuf(_c, _p));
487}
488#else
489/*
490 * This has been tuned to generate reasonable code on the vax using pcc.
491 */
492#define	__sputc(c, p) \
493	(--(p)->_w < 0 ? \
494		(p)->_w >= (p)->_lbfsize ? \
495			(*(p)->_p = (c)), *(p)->_p != '\n' ? \
496				(int)*(p)->_p++ : \
497				__swbuf('\n', p) : \
498			__swbuf((int)(c), p) : \
499		(*(p)->_p = (c), (int)*(p)->_p++))
500#endif
501
502#ifndef __LIBC_ISTHREADED_DECLARED
503#define __LIBC_ISTHREADED_DECLARED
504extern int __isthreaded;
505#endif
506
507#ifndef __cplusplus
508
509#define	__sfeof(p)	(((p)->_flags & __SEOF) != 0)
510#define	__sferror(p)	(((p)->_flags & __SERR) != 0)
511#define	__sclearerr(p)	((void)((p)->_flags &= ~(__SERR|__SEOF)))
512#define	__sfileno(p)	((p)->_file)
513
514
515#define	feof(p)		(!__isthreaded ? __sfeof(p) : (feof)(p))
516#define	ferror(p)	(!__isthreaded ? __sferror(p) : (ferror)(p))
517#define	clearerr(p)	(!__isthreaded ? __sclearerr(p) : (clearerr)(p))
518
519#if __POSIX_VISIBLE
520#define	fileno(p)	(!__isthreaded ? __sfileno(p) : (fileno)(p))
521#endif
522
523#define	getc(fp)	(!__isthreaded ? __sgetc(fp) : (getc)(fp))
524#define	putc(x, fp)	(!__isthreaded ? __sputc(x, fp) : (putc)(x, fp))
525
526#define	getchar()	getc(stdin)
527#define	putchar(x)	putc(x, stdout)
528
529#if __BSD_VISIBLE
530/*
531 * See ISO/IEC 9945-1 ANSI/IEEE Std 1003.1 Second Edition 1996-07-12
532 * B.8.2.7 for the rationale behind the *_unlocked() macros.
533 */
534#define	feof_unlocked(p)	__sfeof(p)
535#define	ferror_unlocked(p)	__sferror(p)
536#define	clearerr_unlocked(p)	__sclearerr(p)
537#define	fileno_unlocked(p)	__sfileno(p)
538#endif
539#if __POSIX_VISIBLE >= 199506
540#define	getc_unlocked(fp)	__sgetc(fp)
541#define	putc_unlocked(x, fp)	__sputc(x, fp)
542
543#define	getchar_unlocked()	getc_unlocked(stdin)
544#define	putchar_unlocked(x)	putc_unlocked(x, stdout)
545#endif
546#endif /* __cplusplus */
547
548__END_DECLS
549__NULLABILITY_PRAGMA_POP
550
551#endif /* !_STDIO_H_ */
552