1*6d38604fSBaptiste Daroussin /* $Id: compat_vasprintf.c,v 1.4 2020/06/15 01:37:15 schwarze Exp $ */
261d06d6bSBaptiste Daroussin /*
361d06d6bSBaptiste Daroussin * Copyright (c) 2015 Ingo Schwarze <schwarze@openbsd.org>
461d06d6bSBaptiste Daroussin *
561d06d6bSBaptiste Daroussin * Permission to use, copy, modify, and distribute this software for any
661d06d6bSBaptiste Daroussin * purpose with or without fee is hereby granted, provided that the above
761d06d6bSBaptiste Daroussin * copyright notice and this permission notice appear in all copies.
861d06d6bSBaptiste Daroussin *
961d06d6bSBaptiste Daroussin * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1061d06d6bSBaptiste Daroussin * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1161d06d6bSBaptiste Daroussin * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1261d06d6bSBaptiste Daroussin * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1361d06d6bSBaptiste Daroussin * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1461d06d6bSBaptiste Daroussin * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
1561d06d6bSBaptiste Daroussin * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1661d06d6bSBaptiste Daroussin *
1761d06d6bSBaptiste Daroussin * This fallback implementation is not efficient:
1861d06d6bSBaptiste Daroussin * It does the formatting twice.
1961d06d6bSBaptiste Daroussin * Short of fiddling with the unknown internals of the system's
2061d06d6bSBaptiste Daroussin * printf(3) or completely reimplementing printf(3), i can't think
2161d06d6bSBaptiste Daroussin * of another portable solution.
2261d06d6bSBaptiste Daroussin */
23*6d38604fSBaptiste Daroussin #include "config.h"
2461d06d6bSBaptiste Daroussin
2561d06d6bSBaptiste Daroussin #include <stdarg.h>
2661d06d6bSBaptiste Daroussin #include <stdio.h>
2761d06d6bSBaptiste Daroussin #include <stdlib.h>
2861d06d6bSBaptiste Daroussin
2961d06d6bSBaptiste Daroussin int
vasprintf(char ** ret,const char * format,va_list ap)3061d06d6bSBaptiste Daroussin vasprintf(char **ret, const char *format, va_list ap)
3161d06d6bSBaptiste Daroussin {
3261d06d6bSBaptiste Daroussin char buf[2];
3361d06d6bSBaptiste Daroussin va_list ap2;
3461d06d6bSBaptiste Daroussin int sz;
3561d06d6bSBaptiste Daroussin
3661d06d6bSBaptiste Daroussin va_copy(ap2, ap);
3761d06d6bSBaptiste Daroussin sz = vsnprintf(buf, sizeof(buf), format, ap2);
3861d06d6bSBaptiste Daroussin va_end(ap2);
3961d06d6bSBaptiste Daroussin
4061d06d6bSBaptiste Daroussin if (sz != -1 && (*ret = malloc(sz + 1)) != NULL) {
4161d06d6bSBaptiste Daroussin if (vsnprintf(*ret, sz + 1, format, ap) == sz)
4261d06d6bSBaptiste Daroussin return sz;
4361d06d6bSBaptiste Daroussin free(*ret);
4461d06d6bSBaptiste Daroussin }
4561d06d6bSBaptiste Daroussin *ret = NULL;
4661d06d6bSBaptiste Daroussin return -1;
4761d06d6bSBaptiste Daroussin }
48