1/* Copyright (C) 1995-2019 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3
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.
8
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.
13
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/>.
17
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. */
26
27#include <string.h>
28#include <stdlib.h>
29#include <strfile.h>
30
31int
32__vasprintf_internal (char **result_ptr, const char *format, va_list args,
33 unsigned int mode_flags)
34{
35 /* Initial size of the buffer to be used. Will be doubled each time an
36 overflow occurs. */
37 const size_t init_string_size = 100;
38 char *string;
39 _IO_strfile sf;
40 int ret;
41 size_t needed;
42 size_t allocated;
43 /* No need to clear the memory here (unlike for open_memstream) since
44 we know we will never seek on the stream. */
45 string = (char *) malloc (init_string_size);
46 if (string == NULL)
47 return -1;
48#ifdef _IO_MTSAFE_IO
49 sf._sbf._f._lock = NULL;
50#endif
51 _IO_no_init (&sf._sbf._f, _IO_USER_LOCK, -1, NULL, NULL);
52 _IO_JUMPS (&sf._sbf) = &_IO_str_jumps;
53 _IO_str_init_static_internal (&sf, string, init_string_size, string);
54 sf._sbf._f._flags &= ~_IO_USER_BUF;
55 sf._s._allocate_buffer_unused = (_IO_alloc_type) malloc;
56 sf._s._free_buffer_unused = (_IO_free_type) free;
57 ret = __vfprintf_internal (&sf._sbf._f, format, args, mode_flags);
58 if (ret < 0)
59 {
60 free (sf._sbf._f._IO_buf_base);
61 return ret;
62 }
63 /* Only use realloc if the size we need is of the same (binary)
64 order of magnitude then the memory we allocated. */
65 needed = sf._sbf._f._IO_write_ptr - sf._sbf._f._IO_write_base + 1;
66 allocated = sf._sbf._f._IO_write_end - sf._sbf._f._IO_write_base;
67 if ((allocated >> 1) <= needed)
68 *result_ptr = (char *) realloc (sf._sbf._f._IO_buf_base, needed);
69 else
70 {
71 *result_ptr = (char *) malloc (needed);
72 if (*result_ptr != NULL)
73 {
74 memcpy (*result_ptr, sf._sbf._f._IO_buf_base, needed - 1);
75 free (sf._sbf._f._IO_buf_base);
76 }
77 else
78 /* We have no choice, use the buffer we already have. */
79 *result_ptr = (char *) realloc (sf._sbf._f._IO_buf_base, needed);
80 }
81 if (*result_ptr == NULL)
82 *result_ptr = sf._sbf._f._IO_buf_base;
83 (*result_ptr)[needed - 1] = '\0';
84 return ret;
85}
86
87int
88__vasprintf (char **result_ptr, const char *format, va_list args)
89{
90 return __vasprintf_internal (result_ptr, format, args, 0);
91}
92ldbl_weak_alias (__vasprintf, vasprintf)
93