]> git.ipfire.org Git - thirdparty/glibc.git/blame - include/stdio.h
Further harden glibc malloc metadata against 1-byte overflows.
[thirdparty/glibc.git] / include / stdio.h
CommitLineData
6796bc80 1#ifndef _STDIO_H
31341567 2# if defined __need_FILE || defined __need___FILE || defined _ISOMAC
848438d4 3# include <libio/stdio.h>
ab58d620 4# else
848438d4 5# include <libio/stdio.h>
bdbf022d
UD
6
7/* Now define the internal interfaces. */
b15549e6
UD
8__BEGIN_DECLS
9
aaa8d85c
UD
10extern int __fcloseall (void);
11extern int __snprintf (char *__restrict __s, size_t __maxlen,
a784e502 12 const char *__restrict __format, ...)
bdbf022d 13 __attribute__ ((__format__ (__printf__, 3, 4)));
61158ffa 14libc_hidden_proto (__snprintf)
bd7f30a9 15extern int __vsnprintf (char *__restrict __s, size_t __maxlen,
a784e502 16 const char *__restrict __format, _G_va_list __arg)
bd7f30a9 17 __attribute__ ((__format__ (__printf__, 3, 0)));
aaa8d85c 18extern int __vfscanf (FILE *__restrict __s,
a784e502 19 const char *__restrict __format,
aaa8d85c 20 _G_va_list __arg)
bdbf022d 21 __attribute__ ((__format__ (__scanf__, 2, 0)));
a20d8dbe 22libc_hidden_proto (__vfscanf)
a784e502 23extern int __vscanf (const char *__restrict __format,
aaa8d85c 24 _G_va_list __arg)
bdbf022d 25 __attribute__ ((__format__ (__scanf__, 1, 0)));
aaa8d85c
UD
26extern _IO_ssize_t __getline (char **__lineptr, size_t *__n,
27 FILE *__stream);
a784e502
UD
28extern int __vsscanf (const char *__restrict __s,
29 const char *__restrict __format,
aaa8d85c 30 _G_va_list __arg)
bfce746a 31 __attribute__ ((__format__ (__scanf__, 2, 0)));
bdbf022d 32
31341567 33# ifndef __cplusplus
b5cc329c
UD
34extern int __sprintf_chk (char *, int, size_t, const char *, ...) __THROW;
35extern int __snprintf_chk (char *, size_t, int, size_t, const char *, ...)
36 __THROW;
37extern int __vsprintf_chk (char *, int, size_t, const char *,
38 _G_va_list) __THROW;
39extern int __vsnprintf_chk (char *, size_t, int, size_t, const char *,
40 _G_va_list) __THROW;
41extern int __printf_chk (int, const char *, ...);
42extern int __fprintf_chk (FILE *, int, const char *, ...);
43extern int __vprintf_chk (int, const char *, _G_va_list);
44extern int __vfprintf_chk (FILE *, int, const char *, _G_va_list);
553cc5f9
UD
45extern char *__fgets_unlocked_chk (char *buf, size_t size, int n, FILE *fp);
46extern char *__fgets_chk (char *buf, size_t size, int n, FILE *fp);
dff37515
UD
47extern int __asprintf_chk (char **, int, const char *, ...) __THROW;
48extern int __vasprintf_chk (char **, int, const char *, _G_va_list) __THROW;
49extern int __dprintf_chk (int, int, const char *, ...);
50extern int __vdprintf_chk (int, int, const char *, _G_va_list);
51extern int __obstack_printf_chk (struct obstack *, int, const char *, ...)
52 __THROW;
53extern int __obstack_vprintf_chk (struct obstack *, int, const char *,
54 _G_va_list) __THROW;
31341567 55# endif
b5cc329c 56
874aa523 57extern int __isoc99_fscanf (FILE *__restrict __stream,
a784e502
UD
58 const char *__restrict __format, ...) __wur;
59extern int __isoc99_scanf (const char *__restrict __format, ...) __wur;
60extern int __isoc99_sscanf (const char *__restrict __s,
61 const char *__restrict __format, ...) __THROW;
874aa523 62extern int __isoc99_vfscanf (FILE *__restrict __s,
a784e502 63 const char *__restrict __format,
874aa523 64 _G_va_list __arg) __wur;
a784e502 65extern int __isoc99_vscanf (const char *__restrict __format,
874aa523 66 _G_va_list __arg) __wur;
a784e502
UD
67extern int __isoc99_vsscanf (const char *__restrict __s,
68 const char *__restrict __format,
874aa523
UD
69 _G_va_list __arg) __THROW;
70libc_hidden_proto (__isoc99_vsscanf)
71libc_hidden_proto (__isoc99_vfscanf)
72
ed073f0e
AJ
73/* Prototypes for compatibility functions. */
74extern FILE *__new_tmpfile (void);
75extern FILE *__old_tmpfile (void);
76
77
992af677 78
ab58d620 79# define __need_size_t
330fadfc 80# define __need_wint_t
ab58d620 81# include <stddef.h>
992af677 82/* Generate a unique file name (and possibly open it). */
aaa8d85c 83extern int __path_search (char *__tmpl, size_t __tmpl_len,
a784e502 84 const char *__dir, const char *__pfx,
aaa8d85c 85 int __try_tempdir);
992af677 86
7f3146e7
UD
87extern int __gen_tempname (char *__tmpl, int __suffixlen, int __flags,
88 int __kind);
2e65ca2b 89/* The __kind argument to __gen_tempname may be one of: */
ab58d620 90# define __GT_FILE 0 /* create a file */
d7e23b02
UD
91# define __GT_DIR 1 /* create a directory */
92# define __GT_NOCREATE 2 /* just find a name not currently in use */
992af677
UD
93
94/* Print out MESSAGE on the error output and abort. */
a784e502 95extern void __libc_fatal (const char *__message)
992af677 96 __attribute__ ((__noreturn__));
a784e502 97extern void __libc_message (int do_abort, const char *__fnt, ...);
b50f8e42
UD
98extern void __fortify_fail (const char *msg)
99 __attribute__ ((__noreturn__)) internal_function;
3a50811c 100libc_hidden_proto (__fortify_fail)
992af677 101
d4b0774f
AJ
102/* Acquire ownership of STREAM. */
103extern void __flockfile (FILE *__stream);
104
105/* Relinquish the ownership granted for STREAM. */
106extern void __funlockfile (FILE *__stream);
d1646309 107
dd040747
AJ
108/* Try to acquire ownership of STREAM but do not block if it is not
109 possible. */
110extern int __ftrylockfile (FILE *__stream);
111
03bac9ac
AJ
112extern int __getc_unlocked (FILE *__fp);
113extern wint_t __getwc_unlocked (FILE *__fp);
114
8a259a23
UD
115extern int __fxprintf (FILE *__fp, const char *__fmt, ...)
116 __attribute__ ((__format__ (__printf__, 2, 3)));
03bac9ac 117
a784e502 118extern const char *const _sys_errlist_internal[] attribute_hidden;
1897bc3f 119extern int _sys_nerr_internal attribute_hidden;
77fe0b9c 120
d18ea0c5 121libc_hidden_proto (__asprintf)
4f41c682 122# if IS_IN (libc)
79937577 123extern _IO_FILE *_IO_new_fopen (const char*, const char*);
3ba06713 124# define fopen(fname, mode) _IO_new_fopen (fname, mode)
79937577 125extern _IO_FILE *_IO_new_fdopen (int, const char*);
3ba06713 126# define fdopen(fd, mode) _IO_new_fdopen (fd, mode)
79937577 127extern int _IO_new_fclose (_IO_FILE*);
3ba06713 128# define fclose(fp) _IO_new_fclose (fp)
79937577 129extern int _IO_fputs (const char*, _IO_FILE*);
3ba06713
UD
130libc_hidden_proto (_IO_fputs)
131# define fputs(str, fp) _IO_fputs (str, fp)
79937577 132extern int _IO_new_fsetpos (_IO_FILE *, const _IO_fpos_t *);
3ba06713 133# define fsetpos(fp, posp) _IO_new_fsetpos (fp, posp)
79937577 134extern int _IO_new_fgetpos (_IO_FILE *, _IO_fpos_t *);
3ba06713 135# define fgetpos(fp, posp) _IO_new_fgetpos (fp, posp)
6b87a564
UD
136# endif
137
b9b91868 138libc_hidden_proto (dprintf)
be7dc2b7
JM
139extern __typeof (dprintf) __dprintf
140 __attribute__ ((__format__ (__printf__, 2, 3)));
141libc_hidden_proto (__dprintf)
b9b91868
RM
142libc_hidden_proto (fprintf)
143libc_hidden_proto (vfprintf)
144libc_hidden_proto (sprintf)
145libc_hidden_proto (sscanf)
146libc_hidden_proto (fwrite)
147libc_hidden_proto (perror)
148libc_hidden_proto (remove)
149libc_hidden_proto (rewind)
3ba06713 150libc_hidden_proto (fileno)
5a6fa4d7
JM
151extern __typeof (fileno) __fileno;
152libc_hidden_proto (__fileno)
3ba06713
UD
153libc_hidden_proto (fwrite)
154libc_hidden_proto (fseek)
5a6fa4d7
JM
155extern __typeof (ftello) __ftello;
156libc_hidden_proto (__ftello)
5182cbc5 157libc_hidden_proto (fflush)
3ba06713 158libc_hidden_proto (fflush_unlocked)
eb1fae6a
JM
159extern __typeof (fflush_unlocked) __fflush_unlocked;
160libc_hidden_proto (__fflush_unlocked)
5a6fa4d7
JM
161extern __typeof (fread_unlocked) __fread_unlocked;
162libc_hidden_proto (__fread_unlocked)
3ba06713
UD
163libc_hidden_proto (fwrite_unlocked)
164libc_hidden_proto (fgets_unlocked)
c4eae752
JM
165extern __typeof (fgets_unlocked) __fgets_unlocked;
166libc_hidden_proto (__fgets_unlocked)
3ba06713 167libc_hidden_proto (fputs_unlocked)
3164bf09
JM
168extern __typeof (fputs_unlocked) __fputs_unlocked;
169libc_hidden_proto (__fputs_unlocked)
a99e59d7 170libc_hidden_proto (fmemopen)
711f67a7 171/* The prototype needs repeating instead of using __typeof to use
3ac3ff32 172 __THROW in C++ tests. */
711f67a7
JM
173extern FILE *__open_memstream (char **, size_t *) __THROW __wur;
174libc_hidden_proto (__open_memstream)
9d79e037 175libc_hidden_proto (__libc_fatal)
2193ce87 176rtld_hidden_proto (__libc_fatal)
b5cc329c
UD
177libc_hidden_proto (__vsprintf_chk)
178libc_hidden_proto (__vsnprintf_chk)
a7c684a2 179libc_hidden_proto (__vfprintf_chk)
dff37515
UD
180libc_hidden_proto (__vasprintf_chk)
181libc_hidden_proto (__vdprintf_chk)
182libc_hidden_proto (__obstack_vprintf_chk)
b15549e6 183
fdb7d390
AZ
184extern FILE * __fmemopen (void *buf, size_t len, const char *mode);
185libc_hidden_proto (__fmemopen)
186
b15549e6 187__END_DECLS
ab58d620 188# endif
60876a75 189
6796bc80 190#endif