2.9
[glibc/nacl-glibc.git] / debug / vdprintf_chk.c
blob8f3d332a40d362050591e912d542dc2d7e5e43f1
1 /* Copyright (C) 1995, 1997-2000, 2001, 2002, 2003, 2006, 2008
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA.
20 As a special exception, if you link the code in this file with
21 files compiled with a GNU compiler to produce an executable,
22 that does not cause the resulting executable to be covered by
23 the GNU Lesser General Public License. This exception does not
24 however invalidate any other reasons why the executable file
25 might be covered by the GNU Lesser General Public License.
26 This exception applies to code released by its copyright holders
27 in files containing the exception. */
29 #include <libioP.h>
30 #include <stdio_ext.h>
32 int
33 __vdprintf_chk (int d, int flags, const char *format, va_list arg)
35 struct _IO_FILE_plus tmpfil;
36 struct _IO_wide_data wd;
37 int done;
39 #ifdef _IO_MTSAFE_IO
40 tmpfil.file._lock = NULL;
41 #endif
42 _IO_no_init (&tmpfil.file, _IO_USER_LOCK, 0, &wd, &_IO_wfile_jumps);
43 _IO_JUMPS (&tmpfil) = &_IO_file_jumps;
44 INTUSE(_IO_file_init) (&tmpfil);
45 #if !_IO_UNIFIED_JUMPTABLES
46 tmpfil.vtable = NULL;
47 #endif
48 if (INTUSE(_IO_file_attach) (&tmpfil.file, d) == NULL)
50 INTUSE(_IO_un_link) (&tmpfil);
51 return EOF;
53 tmpfil.file._IO_file_flags =
54 (_IO_mask_flags (&tmpfil.file, _IO_NO_READS,
55 _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING)
56 | _IO_DELETE_DONT_CLOSE);
58 /* For flags > 0 (i.e. __USE_FORTIFY_LEVEL > 1) request that %n
59 can only come from read-only format strings. */
60 if (flags > 0)
61 tmpfil.file._flags2 |= _IO_FLAGS2_FORTIFY;
63 done = INTUSE(_IO_vfprintf) (&tmpfil.file, format, arg);
65 _IO_FINISH (&tmpfil.file);
67 return done;
69 libc_hidden_def (__vdprintf_chk)