Override elf_nacl.xr linker script so that libc_pic.os links correctly
[glibc/nacl-glibc.git] / libio / vasprintf.c
blob2fdb9f6ed28700f5bbf68d373aaf60e7370a24fb
1 /* Copyright (C) 1995,1997,1999-2002,2004,2006 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, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 02111-1307 USA.
19 As a special exception, if you link the code in this file with
20 files compiled with a GNU compiler to produce an executable,
21 that does not cause the resulting executable to be covered by
22 the GNU Lesser General Public License. This exception does not
23 however invalidate any other reasons why the executable file
24 might be covered by the GNU Lesser General Public License.
25 This exception applies to code released by its copyright holders
26 in files containing the exception. */
28 #include <malloc.h>
29 #include <string.h>
30 #include "libioP.h"
31 #include "stdio.h"
32 #include <stdio_ext.h>
33 #include "strfile.h"
35 int
36 _IO_vasprintf (result_ptr, format, args)
37 char **result_ptr;
38 const char *format;
39 _IO_va_list args;
41 /* Initial size of the buffer to be used. Will be doubled each time an
42 overflow occurs. */
43 const _IO_size_t init_string_size = 100;
44 char *string;
45 _IO_strfile sf;
46 int ret;
47 _IO_size_t needed;
48 _IO_size_t allocated;
49 /* No need to clear the memory here (unlike for open_memstream) since
50 we know we will never seek on the stream. */
51 string = (char *) malloc (init_string_size);
52 if (string == NULL)
53 return -1;
54 #ifdef _IO_MTSAFE_IO
55 sf._sbf._f._lock = NULL;
56 #endif
57 _IO_no_init ((_IO_FILE *) &sf._sbf, _IO_USER_LOCK, -1, NULL, NULL);
58 _IO_JUMPS ((struct _IO_FILE_plus *) &sf._sbf) = &_IO_str_jumps;
59 _IO_str_init_static_internal (&sf, string, init_string_size, string);
60 sf._sbf._f._flags &= ~_IO_USER_BUF;
61 sf._s._allocate_buffer = (_IO_alloc_type) malloc;
62 sf._s._free_buffer = (_IO_free_type) free;
63 ret = INTUSE(_IO_vfprintf) (&sf._sbf._f, format, args);
64 if (ret < 0)
66 free (sf._sbf._f._IO_buf_base);
67 return ret;
69 /* Only use realloc if the size we need is of the same (binary)
70 order of magnitude then the memory we allocated. */
71 needed = sf._sbf._f._IO_write_ptr - sf._sbf._f._IO_write_base + 1;
72 allocated = sf._sbf._f._IO_write_end - sf._sbf._f._IO_write_base;
73 if ((allocated >> 1) <= needed)
74 *result_ptr = (char *) realloc (sf._sbf._f._IO_buf_base, needed);
75 else
77 *result_ptr = (char *) malloc (needed);
78 if (*result_ptr != NULL)
80 memcpy (*result_ptr, sf._sbf._f._IO_buf_base, needed - 1);
81 free (sf._sbf._f._IO_buf_base);
83 else
84 /* We have no choice, use the buffer we already have. */
85 *result_ptr = (char *) realloc (sf._sbf._f._IO_buf_base, needed);
87 if (*result_ptr == NULL)
88 *result_ptr = sf._sbf._f._IO_buf_base;
89 (*result_ptr)[needed - 1] = '\0';
90 return ret;
92 ldbl_weak_alias (_IO_vasprintf, vasprintf)