1 /* Copyright (C) 1995-2015 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C 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 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>.
18 As a special exception, if you link the code in this file with
19 files compiled with a GNU compiler to produce an executable,
20 that does not cause the resulting executable to be covered by
21 the GNU Lesser General Public License. This exception does not
22 however invalidate any other reasons why the executable file
23 might be covered by the GNU Lesser General Public License.
24 This exception applies to code released by its copyright holders
25 in files containing the exception. */
30 #include <stdio_ext.h>
31 #include "../libio/libioP.h"
32 #include "../libio/strfile.h"
35 __vasprintf_chk (char **result_ptr
, int flags
, const char *format
,
38 /* Initial size of the buffer to be used. Will be doubled each time an
40 const _IO_size_t init_string_size
= 100;
46 /* No need to clear the memory here (unlike for open_memstream) since
47 we know we will never seek on the stream. */
48 string
= (char *) malloc (init_string_size
);
52 sf
._sbf
._f
._lock
= NULL
;
54 _IO_no_init (&sf
._sbf
._f
, _IO_USER_LOCK
, -1, NULL
, NULL
);
55 _IO_JUMPS (&sf
._sbf
) = &_IO_str_jumps
;
56 _IO_str_init_static_internal (&sf
, string
, init_string_size
, string
);
57 sf
._sbf
._f
._flags
&= ~_IO_USER_BUF
;
58 sf
._s
._allocate_buffer
= (_IO_alloc_type
) malloc
;
59 sf
._s
._free_buffer
= (_IO_free_type
) free
;
61 /* For flags > 0 (i.e. __USE_FORTIFY_LEVEL > 1) request that %n
62 can only come from read-only format strings. */
64 sf
._sbf
._f
._flags2
|= _IO_FLAGS2_FORTIFY
;
66 ret
= _IO_vfprintf (&sf
._sbf
._f
, format
, args
);
69 free (sf
._sbf
._f
._IO_buf_base
);
72 /* Only use realloc if the size we need is of the same (binary)
73 order of magnitude then the memory we allocated. */
74 needed
= sf
._sbf
._f
._IO_write_ptr
- sf
._sbf
._f
._IO_write_base
+ 1;
75 allocated
= sf
._sbf
._f
._IO_write_end
- sf
._sbf
._f
._IO_write_base
;
76 if ((allocated
>> 1) <= needed
)
77 *result_ptr
= (char *) realloc (sf
._sbf
._f
._IO_buf_base
, needed
);
80 *result_ptr
= (char *) malloc (needed
);
81 if (*result_ptr
!= NULL
)
83 memcpy (*result_ptr
, sf
._sbf
._f
._IO_buf_base
, needed
- 1);
84 free (sf
._sbf
._f
._IO_buf_base
);
87 /* We have no choice, use the buffer we already have. */
88 *result_ptr
= (char *) realloc (sf
._sbf
._f
._IO_buf_base
, needed
);
90 if (*result_ptr
== NULL
)
91 *result_ptr
= sf
._sbf
._f
._IO_buf_base
;
92 (*result_ptr
)[needed
- 1] = '\0';
95 libc_hidden_def (__vasprintf_chk
)