blob: 23a6359898e8f9bd38c28454268cc54c1049e9ee [file] [log] [blame]
Damien Millerf18462f2003-04-01 21:31:56 +10001/*
2 * Copyright Patrick Powell 1995
3 * This code is based on code written by Patrick Powell (papowell@astart.com)
4 * It may be used for any purpose as long as this notice remains intact
5 * on all source code distributions
6 */
7
Damien Miller168e6ac2000-07-11 12:23:01 +10008/**************************************************************
9 * Original:
10 * Patrick Powell Tue Apr 11 09:48:21 PDT 1995
11 * A bombproof version of doprnt (dopr) included.
12 * Sigh. This sort of thing is always nasty do deal with. Note that
13 * the version here does not include floating point...
Damien Miller42b81ff1999-11-26 12:21:24 +110014 *
Damien Miller168e6ac2000-07-11 12:23:01 +100015 * snprintf() is used instead of sprintf() as it does limit checks
16 * for string length. This covers a nasty loophole.
Damien Miller42b81ff1999-11-26 12:21:24 +110017 *
Damien Miller168e6ac2000-07-11 12:23:01 +100018 * The other functions are there to prevent NULL pointers from
19 * causing nast effects.
Damien Miller42b81ff1999-11-26 12:21:24 +110020 *
Damien Miller168e6ac2000-07-11 12:23:01 +100021 * More Recently:
22 * Brandon Long <blong@fiction.net> 9/15/96 for mutt 0.43
23 * This was ugly. It is still ugly. I opted out of floating point
24 * numbers, but the formatter understands just about everything
25 * from the normal C string format, at least as far as I can tell from
26 * the Solaris 2.5 printf(3S) man page.
27 *
28 * Brandon Long <blong@fiction.net> 10/22/97 for mutt 0.87.1
29 * Ok, added some minimal floating point support, which means this
30 * probably requires libm on most operating systems. Don't yet
31 * support the exponent (e,E) and sigfig (g,G). Also, fmtint()
32 * was pretty badly broken, it just wasn't being exercised in ways
33 * which showed it, so that's been fixed. Also, formated the code
34 * to mutt conventions, and removed dead code left over from the
35 * original. Also, there is now a builtin-test, just compile with:
36 * gcc -DTEST_SNPRINTF -o snprintf snprintf.c -lm
37 * and run snprintf for results.
38 *
39 * Thomas Roessler <roessler@guug.de> 01/27/98 for mutt 0.89i
40 * The PGP code was using unsigned hexadecimal formats.
41 * Unfortunately, unsigned formats simply didn't work.
42 *
43 * Michael Elkins <me@cs.hmc.edu> 03/05/98 for mutt 0.90.8
44 * The original code assumed that both snprintf() and vsnprintf() were
45 * missing. Some systems only have snprintf() but not vsnprintf(), so
46 * the code is now broken down under HAVE_SNPRINTF and HAVE_VSNPRINTF.
47 *
Damien Miller57f39152005-11-24 19:58:19 +110048 * Andrew Tridgell (tridge@samba.org) Oct 1998
49 * fixed handling of %.0f
50 * added test for HAVE_LONG_DOUBLE
Ben Lindstrom6c92dab2001-02-13 02:18:50 +000051 *
Damien Miller57f39152005-11-24 19:58:19 +110052 * tridge@samba.org, idra@samba.org, April 2001
53 * got rid of fcvt code (twas buggy and made testing harder)
54 * added C99 semantics
55 *
56 * date: 2002/12/19 19:56:31; author: herb; state: Exp; lines: +2 -0
57 * actually print args for %g and %e
58 *
59 * date: 2002/06/03 13:37:52; author: jmcd; state: Exp; lines: +8 -0
60 * Since includes.h isn't included here, VA_COPY has to be defined here. I don't
61 * see any include file that is guaranteed to be here, so I'm defining it
62 * locally. Fixes AIX and Solaris builds.
63 *
64 * date: 2002/06/03 03:07:24; author: tridge; state: Exp; lines: +5 -13
65 * put the ifdef for HAVE_VA_COPY in one place rather than in lots of
66 * functions
67 *
68 * date: 2002/05/17 14:51:22; author: jmcd; state: Exp; lines: +21 -4
69 * Fix usage of va_list passed as an arg. Use __va_copy before using it
70 * when it exists.
71 *
72 * date: 2002/04/16 22:38:04; author: idra; state: Exp; lines: +20 -14
73 * Fix incorrect zpadlen handling in fmtfp.
74 * Thanks to Ollie Oldham <ollie.oldham@metro-optix.com> for spotting it.
75 * few mods to make it easier to compile the tests.
76 * addedd the "Ollie" test to the floating point ones.
77 *
78 * Martin Pool (mbp@samba.org) April 2003
79 * Remove NO_CONFIG_H so that the test case can be built within a source
80 * tree with less trouble.
81 * Remove unnecessary SAFE_FREE() definition.
82 *
83 * Martin Pool (mbp@samba.org) May 2003
84 * Put in a prototype for dummy_snprintf() to quiet compiler warnings.
85 *
86 * Move #endif to make sure VA_COPY, LDOUBLE, etc are defined even
87 * if the C library has some snprintf functions already.
Damien Miller742cc1c2007-01-14 21:20:30 +110088 *
89 * Damien Miller (djm@mindrot.org) Jan 2007
90 * Fix integer overflows in return value.
91 * Make formatting quite a bit faster by inlining dopr_outch()
92 *
Damien Miller168e6ac2000-07-11 12:23:01 +100093 **************************************************************/
Damien Miller42b81ff1999-11-26 12:21:24 +110094
Damien Millere9cf3572001-02-09 12:55:35 +110095#include "includes.h"
96
Ben Lindstrom63941f92001-02-25 23:20:40 +000097#if defined(BROKEN_SNPRINTF) /* For those with broken snprintf() */
98# undef HAVE_SNPRINTF
99# undef HAVE_VSNPRINTF
100#endif
Damien Miller42b81ff1999-11-26 12:21:24 +1100101
Damien Miller57f39152005-11-24 19:58:19 +1100102#ifndef VA_COPY
103# ifdef HAVE_VA_COPY
104# define VA_COPY(dest, src) va_copy(dest, src)
105# else
106# ifdef HAVE___VA_COPY
107# define VA_COPY(dest, src) __va_copy(dest, src)
108# else
109# define VA_COPY(dest, src) (dest) = (src)
110# endif
111# endif
112#endif
113
Damien Miller168e6ac2000-07-11 12:23:01 +1000114#if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF)
Damien Miller42b81ff1999-11-26 12:21:24 +1100115
Darren Tuckerf78fb542006-08-06 21:25:24 +1000116#include <ctype.h>
Darren Tucker08432d52006-09-09 15:59:43 +1000117#include <stdarg.h>
Darren Tuckerf78fb542006-08-06 21:25:24 +1000118#include <stdlib.h>
Damien Miller62da44f2006-07-24 15:08:35 +1000119#include <string.h>
Damien Miller742cc1c2007-01-14 21:20:30 +1100120#include <limits.h>
121#include <errno.h>
Damien Miller62da44f2006-07-24 15:08:35 +1000122
Damien Miller57f39152005-11-24 19:58:19 +1100123#ifdef HAVE_LONG_DOUBLE
124# define LDOUBLE long double
125#else
126# define LDOUBLE double
127#endif
Damien Miller168e6ac2000-07-11 12:23:01 +1000128
Damien Miller57f39152005-11-24 19:58:19 +1100129#ifdef HAVE_LONG_LONG
130# define LLONG long long
131#else
132# define LLONG long
133#endif
Ben Lindstrom116b6bd2001-02-13 14:05:59 +0000134
Damien Miller168e6ac2000-07-11 12:23:01 +1000135/*
136 * dopr(): poor man's version of doprintf
137 */
138
139/* format read states */
140#define DP_S_DEFAULT 0
141#define DP_S_FLAGS 1
142#define DP_S_MIN 2
143#define DP_S_DOT 3
144#define DP_S_MAX 4
145#define DP_S_MOD 5
146#define DP_S_CONV 6
147#define DP_S_DONE 7
148
149/* format flags - Bits */
150#define DP_F_MINUS (1 << 0)
151#define DP_F_PLUS (1 << 1)
152#define DP_F_SPACE (1 << 2)
153#define DP_F_NUM (1 << 3)
154#define DP_F_ZERO (1 << 4)
155#define DP_F_UP (1 << 5)
156#define DP_F_UNSIGNED (1 << 6)
157
158/* Conversion Flags */
Damien Miller57f39152005-11-24 19:58:19 +1100159#define DP_C_SHORT 1
160#define DP_C_LONG 2
161#define DP_C_LDOUBLE 3
162#define DP_C_LLONG 4
Damien Miller04be8b92013-08-28 12:49:43 +1000163#define DP_C_SIZE 5
164#define DP_C_INTMAX 6
Damien Miller168e6ac2000-07-11 12:23:01 +1000165
Damien Miller57f39152005-11-24 19:58:19 +1100166#define char_to_int(p) ((p)- '0')
167#ifndef MAX
168# define MAX(p,q) (((p) >= (q)) ? (p) : (q))
169#endif
Damien Miller168e6ac2000-07-11 12:23:01 +1000170
Damien Miller742cc1c2007-01-14 21:20:30 +1100171#define DOPR_OUTCH(buf, pos, buflen, thechar) \
172 do { \
Darren Tucker07877ca2007-01-24 00:07:29 +1100173 if (pos + 1 >= INT_MAX) { \
Damien Miller742cc1c2007-01-14 21:20:30 +1100174 errno = ERANGE; \
175 return -1; \
Darren Tucker07877ca2007-01-24 00:07:29 +1100176 } \
Damien Miller742cc1c2007-01-14 21:20:30 +1100177 if (pos < buflen) \
178 buf[pos] = thechar; \
Darren Tucker07877ca2007-01-24 00:07:29 +1100179 (pos)++; \
Damien Miller742cc1c2007-01-14 21:20:30 +1100180 } while (0)
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000181
Damien Miller742cc1c2007-01-14 21:20:30 +1100182static int dopr(char *buffer, size_t maxlen, const char *format,
183 va_list args_in);
184static int fmtstr(char *buffer, size_t *currlen, size_t maxlen,
185 char *value, int flags, int min, int max);
186static int fmtint(char *buffer, size_t *currlen, size_t maxlen,
Damien Miller04be8b92013-08-28 12:49:43 +1000187 intmax_t value, int base, int min, int max, int flags);
Damien Miller742cc1c2007-01-14 21:20:30 +1100188static int fmtfp(char *buffer, size_t *currlen, size_t maxlen,
189 LDOUBLE fvalue, int min, int max, int flags);
190
191static int
192dopr(char *buffer, size_t maxlen, const char *format, va_list args_in)
Damien Miller13bc0be1999-12-28 10:19:16 +1100193{
Damien Miller57f39152005-11-24 19:58:19 +1100194 char ch;
Damien Miller04be8b92013-08-28 12:49:43 +1000195 intmax_t value;
Damien Miller57f39152005-11-24 19:58:19 +1100196 LDOUBLE fvalue;
197 char *strvalue;
198 int min;
199 int max;
200 int state;
201 int flags;
202 int cflags;
203 size_t currlen;
204 va_list args;
Damien Miller13bc0be1999-12-28 10:19:16 +1100205
Damien Miller57f39152005-11-24 19:58:19 +1100206 VA_COPY(args, args_in);
207
208 state = DP_S_DEFAULT;
209 currlen = flags = cflags = min = 0;
210 max = -1;
211 ch = *format++;
212
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000213 while (state != DP_S_DONE) {
Damien Miller57f39152005-11-24 19:58:19 +1100214 if (ch == '\0')
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000215 state = DP_S_DONE;
Damien Miller42b81ff1999-11-26 12:21:24 +1100216
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000217 switch(state) {
Damien Miller31741252003-05-19 00:13:38 +1000218 case DP_S_DEFAULT:
219 if (ch == '%')
220 state = DP_S_FLAGS;
Damien Miller742cc1c2007-01-14 21:20:30 +1100221 else
222 DOPR_OUTCH(buffer, currlen, maxlen, ch);
Damien Miller31741252003-05-19 00:13:38 +1000223 ch = *format++;
224 break;
225 case DP_S_FLAGS:
226 switch (ch) {
227 case '-':
228 flags |= DP_F_MINUS;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000229 ch = *format++;
230 break;
Damien Miller31741252003-05-19 00:13:38 +1000231 case '+':
232 flags |= DP_F_PLUS;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000233 ch = *format++;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000234 break;
Damien Miller31741252003-05-19 00:13:38 +1000235 case ' ':
236 flags |= DP_F_SPACE;
237 ch = *format++;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000238 break;
Damien Miller31741252003-05-19 00:13:38 +1000239 case '#':
240 flags |= DP_F_NUM;
241 ch = *format++;
242 break;
243 case '0':
244 flags |= DP_F_ZERO;
245 ch = *format++;
246 break;
247 default:
248 state = DP_S_MIN;
249 break;
250 }
251 break;
252 case DP_S_MIN:
253 if (isdigit((unsigned char)ch)) {
Damien Miller57f39152005-11-24 19:58:19 +1100254 min = 10*min + char_to_int (ch);
Damien Miller31741252003-05-19 00:13:38 +1000255 ch = *format++;
256 } else if (ch == '*') {
257 min = va_arg (args, int);
258 ch = *format++;
259 state = DP_S_DOT;
Damien Miller57f39152005-11-24 19:58:19 +1100260 } else {
Damien Miller31741252003-05-19 00:13:38 +1000261 state = DP_S_DOT;
Damien Miller57f39152005-11-24 19:58:19 +1100262 }
Damien Miller31741252003-05-19 00:13:38 +1000263 break;
264 case DP_S_DOT:
265 if (ch == '.') {
266 state = DP_S_MAX;
267 ch = *format++;
Damien Miller57f39152005-11-24 19:58:19 +1100268 } else {
Damien Miller31741252003-05-19 00:13:38 +1000269 state = DP_S_MOD;
Damien Miller57f39152005-11-24 19:58:19 +1100270 }
Damien Miller31741252003-05-19 00:13:38 +1000271 break;
272 case DP_S_MAX:
273 if (isdigit((unsigned char)ch)) {
274 if (max < 0)
275 max = 0;
Damien Miller57f39152005-11-24 19:58:19 +1100276 max = 10*max + char_to_int (ch);
Damien Miller31741252003-05-19 00:13:38 +1000277 ch = *format++;
278 } else if (ch == '*') {
279 max = va_arg (args, int);
280 ch = *format++;
281 state = DP_S_MOD;
Damien Miller57f39152005-11-24 19:58:19 +1100282 } else {
Damien Miller31741252003-05-19 00:13:38 +1000283 state = DP_S_MOD;
Damien Miller57f39152005-11-24 19:58:19 +1100284 }
Damien Miller31741252003-05-19 00:13:38 +1000285 break;
286 case DP_S_MOD:
287 switch (ch) {
288 case 'h':
289 cflags = DP_C_SHORT;
290 ch = *format++;
291 break;
Damien Miller04be8b92013-08-28 12:49:43 +1000292 case 'j':
293 cflags = DP_C_INTMAX;
294 ch = *format++;
295 break;
Damien Miller31741252003-05-19 00:13:38 +1000296 case 'l':
297 cflags = DP_C_LONG;
298 ch = *format++;
Damien Miller57f39152005-11-24 19:58:19 +1100299 if (ch == 'l') { /* It's a long long */
300 cflags = DP_C_LLONG;
Damien Miller31741252003-05-19 00:13:38 +1000301 ch = *format++;
302 }
303 break;
Damien Miller31741252003-05-19 00:13:38 +1000304 case 'L':
305 cflags = DP_C_LDOUBLE;
306 ch = *format++;
307 break;
Damien Miller04be8b92013-08-28 12:49:43 +1000308 case 'z':
309 cflags = DP_C_SIZE;
310 ch = *format++;
311 break;
Damien Miller31741252003-05-19 00:13:38 +1000312 default:
313 break;
314 }
315 state = DP_S_CONV;
316 break;
317 case DP_S_CONV:
318 switch (ch) {
319 case 'd':
320 case 'i':
321 if (cflags == DP_C_SHORT)
Damien Miller57f39152005-11-24 19:58:19 +1100322 value = va_arg (args, int);
Damien Miller31741252003-05-19 00:13:38 +1000323 else if (cflags == DP_C_LONG)
Damien Miller57f39152005-11-24 19:58:19 +1100324 value = va_arg (args, long int);
325 else if (cflags == DP_C_LLONG)
326 value = va_arg (args, LLONG);
Damien Miller04be8b92013-08-28 12:49:43 +1000327 else if (cflags == DP_C_SIZE)
328 value = va_arg (args, ssize_t);
329 else if (cflags == DP_C_INTMAX)
330 value = va_arg (args, intmax_t);
Damien Miller31741252003-05-19 00:13:38 +1000331 else
332 value = va_arg (args, int);
Damien Miller742cc1c2007-01-14 21:20:30 +1100333 if (fmtint(buffer, &currlen, maxlen,
334 value, 10, min, max, flags) == -1)
335 return -1;
Damien Miller31741252003-05-19 00:13:38 +1000336 break;
337 case 'o':
338 flags |= DP_F_UNSIGNED;
339 if (cflags == DP_C_SHORT)
Damien Miller57f39152005-11-24 19:58:19 +1100340 value = va_arg (args, unsigned int);
Damien Miller31741252003-05-19 00:13:38 +1000341 else if (cflags == DP_C_LONG)
Damien Miller57f39152005-11-24 19:58:19 +1100342 value = (long)va_arg (args, unsigned long int);
343 else if (cflags == DP_C_LLONG)
344 value = (long)va_arg (args, unsigned LLONG);
Damien Miller04be8b92013-08-28 12:49:43 +1000345 else if (cflags == DP_C_SIZE)
346 value = va_arg (args, size_t);
Damien Miller43968a82013-08-28 14:00:54 +1000347#ifdef notyet
Damien Miller04be8b92013-08-28 12:49:43 +1000348 else if (cflags == DP_C_INTMAX)
349 value = va_arg (args, uintmax_t);
Damien Miller43968a82013-08-28 14:00:54 +1000350#endif
Damien Miller31741252003-05-19 00:13:38 +1000351 else
Damien Miller57f39152005-11-24 19:58:19 +1100352 value = (long)va_arg (args, unsigned int);
Damien Miller742cc1c2007-01-14 21:20:30 +1100353 if (fmtint(buffer, &currlen, maxlen, value,
354 8, min, max, flags) == -1)
355 return -1;
Damien Miller31741252003-05-19 00:13:38 +1000356 break;
357 case 'u':
358 flags |= DP_F_UNSIGNED;
359 if (cflags == DP_C_SHORT)
Damien Miller57f39152005-11-24 19:58:19 +1100360 value = va_arg (args, unsigned int);
Damien Miller31741252003-05-19 00:13:38 +1000361 else if (cflags == DP_C_LONG)
Damien Miller57f39152005-11-24 19:58:19 +1100362 value = (long)va_arg (args, unsigned long int);
363 else if (cflags == DP_C_LLONG)
364 value = (LLONG)va_arg (args, unsigned LLONG);
Damien Miller04be8b92013-08-28 12:49:43 +1000365 else if (cflags == DP_C_SIZE)
366 value = va_arg (args, size_t);
Damien Miller43968a82013-08-28 14:00:54 +1000367#ifdef notyet
Damien Miller04be8b92013-08-28 12:49:43 +1000368 else if (cflags == DP_C_INTMAX)
369 value = va_arg (args, uintmax_t);
Damien Miller43968a82013-08-28 14:00:54 +1000370#endif
Damien Miller31741252003-05-19 00:13:38 +1000371 else
Damien Miller57f39152005-11-24 19:58:19 +1100372 value = (long)va_arg (args, unsigned int);
Damien Miller742cc1c2007-01-14 21:20:30 +1100373 if (fmtint(buffer, &currlen, maxlen, value,
374 10, min, max, flags) == -1)
375 return -1;
Damien Miller31741252003-05-19 00:13:38 +1000376 break;
377 case 'X':
378 flags |= DP_F_UP;
379 case 'x':
380 flags |= DP_F_UNSIGNED;
381 if (cflags == DP_C_SHORT)
Damien Miller57f39152005-11-24 19:58:19 +1100382 value = va_arg (args, unsigned int);
Damien Miller31741252003-05-19 00:13:38 +1000383 else if (cflags == DP_C_LONG)
Damien Miller57f39152005-11-24 19:58:19 +1100384 value = (long)va_arg (args, unsigned long int);
385 else if (cflags == DP_C_LLONG)
386 value = (LLONG)va_arg (args, unsigned LLONG);
Damien Miller04be8b92013-08-28 12:49:43 +1000387 else if (cflags == DP_C_SIZE)
388 value = va_arg (args, size_t);
Damien Miller43968a82013-08-28 14:00:54 +1000389#ifdef notyet
Damien Miller04be8b92013-08-28 12:49:43 +1000390 else if (cflags == DP_C_INTMAX)
391 value = va_arg (args, uintmax_t);
Damien Miller43968a82013-08-28 14:00:54 +1000392#endif
Damien Miller31741252003-05-19 00:13:38 +1000393 else
Damien Miller57f39152005-11-24 19:58:19 +1100394 value = (long)va_arg (args, unsigned int);
Damien Miller742cc1c2007-01-14 21:20:30 +1100395 if (fmtint(buffer, &currlen, maxlen, value,
396 16, min, max, flags) == -1)
397 return -1;
Damien Miller31741252003-05-19 00:13:38 +1000398 break;
399 case 'f':
400 if (cflags == DP_C_LDOUBLE)
Damien Miller57f39152005-11-24 19:58:19 +1100401 fvalue = va_arg (args, LDOUBLE);
Damien Miller31741252003-05-19 00:13:38 +1000402 else
Damien Miller57f39152005-11-24 19:58:19 +1100403 fvalue = va_arg (args, double);
Damien Miller742cc1c2007-01-14 21:20:30 +1100404 if (fmtfp(buffer, &currlen, maxlen, fvalue,
405 min, max, flags) == -1)
406 return -1;
Damien Miller31741252003-05-19 00:13:38 +1000407 break;
408 case 'E':
409 flags |= DP_F_UP;
410 case 'e':
411 if (cflags == DP_C_LDOUBLE)
Damien Miller57f39152005-11-24 19:58:19 +1100412 fvalue = va_arg (args, LDOUBLE);
Damien Miller31741252003-05-19 00:13:38 +1000413 else
Damien Miller57f39152005-11-24 19:58:19 +1100414 fvalue = va_arg (args, double);
Damien Miller742cc1c2007-01-14 21:20:30 +1100415 if (fmtfp(buffer, &currlen, maxlen, fvalue,
416 min, max, flags) == -1)
417 return -1;
Damien Miller31741252003-05-19 00:13:38 +1000418 break;
419 case 'G':
420 flags |= DP_F_UP;
421 case 'g':
422 if (cflags == DP_C_LDOUBLE)
Damien Miller57f39152005-11-24 19:58:19 +1100423 fvalue = va_arg (args, LDOUBLE);
Damien Miller31741252003-05-19 00:13:38 +1000424 else
Damien Miller57f39152005-11-24 19:58:19 +1100425 fvalue = va_arg (args, double);
Damien Miller742cc1c2007-01-14 21:20:30 +1100426 if (fmtfp(buffer, &currlen, maxlen, fvalue,
427 min, max, flags) == -1)
428 return -1;
Damien Miller31741252003-05-19 00:13:38 +1000429 break;
430 case 'c':
Damien Miller742cc1c2007-01-14 21:20:30 +1100431 DOPR_OUTCH(buffer, currlen, maxlen,
432 va_arg (args, int));
Damien Miller31741252003-05-19 00:13:38 +1000433 break;
434 case 's':
Damien Miller57f39152005-11-24 19:58:19 +1100435 strvalue = va_arg (args, char *);
436 if (!strvalue) strvalue = "(NULL)";
437 if (max == -1) {
438 max = strlen(strvalue);
439 }
440 if (min > 0 && max >= 0 && min > max) max = min;
Damien Miller742cc1c2007-01-14 21:20:30 +1100441 if (fmtstr(buffer, &currlen, maxlen,
442 strvalue, flags, min, max) == -1)
443 return -1;
Damien Miller31741252003-05-19 00:13:38 +1000444 break;
445 case 'p':
Damien Miller57f39152005-11-24 19:58:19 +1100446 strvalue = va_arg (args, void *);
Damien Miller742cc1c2007-01-14 21:20:30 +1100447 if (fmtint(buffer, &currlen, maxlen,
448 (long) strvalue, 16, min, max, flags) == -1)
449 return -1;
Damien Miller31741252003-05-19 00:13:38 +1000450 break;
Damien Miller04be8b92013-08-28 12:49:43 +1000451#if we_dont_want_this_in_openssh
Damien Miller31741252003-05-19 00:13:38 +1000452 case 'n':
453 if (cflags == DP_C_SHORT) {
454 short int *num;
Damien Miller57f39152005-11-24 19:58:19 +1100455 num = va_arg (args, short int *);
Damien Miller31741252003-05-19 00:13:38 +1000456 *num = currlen;
457 } else if (cflags == DP_C_LONG) {
458 long int *num;
Damien Miller57f39152005-11-24 19:58:19 +1100459 num = va_arg (args, long int *);
460 *num = (long int)currlen;
461 } else if (cflags == DP_C_LLONG) {
462 LLONG *num;
463 num = va_arg (args, LLONG *);
464 *num = (LLONG)currlen;
Damien Miller04be8b92013-08-28 12:49:43 +1000465 } else if (cflags == DP_C_SIZE) {
466 ssize_t *num;
467 num = va_arg (args, ssize_t *);
468 *num = (ssize_t)currlen;
469 } else if (cflags == DP_C_INTMAX) {
470 intmax_t *num;
471 num = va_arg (args, intmax_t *);
472 *num = (intmax_t)currlen;
Damien Miller31741252003-05-19 00:13:38 +1000473 } else {
474 int *num;
Damien Miller57f39152005-11-24 19:58:19 +1100475 num = va_arg (args, int *);
Damien Miller31741252003-05-19 00:13:38 +1000476 *num = currlen;
477 }
478 break;
Damien Miller04be8b92013-08-28 12:49:43 +1000479#endif
Damien Miller31741252003-05-19 00:13:38 +1000480 case '%':
Damien Miller742cc1c2007-01-14 21:20:30 +1100481 DOPR_OUTCH(buffer, currlen, maxlen, ch);
Damien Miller31741252003-05-19 00:13:38 +1000482 break;
Damien Miller57f39152005-11-24 19:58:19 +1100483 case 'w':
484 /* not supported yet, treat as next char */
Damien Miller31741252003-05-19 00:13:38 +1000485 ch = *format++;
486 break;
Damien Miller57f39152005-11-24 19:58:19 +1100487 default:
488 /* Unknown, skip */
489 break;
Damien Miller31741252003-05-19 00:13:38 +1000490 }
491 ch = *format++;
492 state = DP_S_DEFAULT;
493 flags = cflags = min = 0;
494 max = -1;
495 break;
496 case DP_S_DONE:
497 break;
Damien Miller57f39152005-11-24 19:58:19 +1100498 default:
499 /* hmm? */
Damien Miller31741252003-05-19 00:13:38 +1000500 break; /* some picky compilers need this */
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000501 }
502 }
Damien Miller57f39152005-11-24 19:58:19 +1100503 if (maxlen != 0) {
504 if (currlen < maxlen - 1)
505 buffer[currlen] = '\0';
506 else if (maxlen > 0)
507 buffer[maxlen - 1] = '\0';
508 }
509
Damien Miller742cc1c2007-01-14 21:20:30 +1100510 return currlen < INT_MAX ? (int)currlen : -1;
Damien Miller42b81ff1999-11-26 12:21:24 +1100511}
512
Damien Miller742cc1c2007-01-14 21:20:30 +1100513static int
514fmtstr(char *buffer, size_t *currlen, size_t maxlen,
515 char *value, int flags, int min, int max)
Damien Miller42b81ff1999-11-26 12:21:24 +1100516{
Damien Miller57f39152005-11-24 19:58:19 +1100517 int padlen, strln; /* amount to pad */
518 int cnt = 0;
519
520#ifdef DEBUG_SNPRINTF
521 printf("fmtstr min=%d max=%d s=[%s]\n", min, max, value);
522#endif
523 if (value == 0) {
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000524 value = "<NULL>";
Damien Miller57f39152005-11-24 19:58:19 +1100525 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000526
Darren Tucker4127f552004-09-23 21:35:09 +1000527 for (strln = 0; strln < max && value[strln]; ++strln); /* strlen */
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000528 padlen = min - strln;
529 if (padlen < 0)
530 padlen = 0;
531 if (flags & DP_F_MINUS)
532 padlen = -padlen; /* Left Justify */
Damien Miller57f39152005-11-24 19:58:19 +1100533
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000534 while ((padlen > 0) && (cnt < max)) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100535 DOPR_OUTCH(buffer, *currlen, maxlen, ' ');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000536 --padlen;
537 ++cnt;
538 }
539 while (*value && (cnt < max)) {
Darren Tucker07877ca2007-01-24 00:07:29 +1100540 DOPR_OUTCH(buffer, *currlen, maxlen, *value);
Damien Miller4d69aea2014-08-22 17:48:27 +1000541 value++;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000542 ++cnt;
543 }
544 while ((padlen < 0) && (cnt < max)) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100545 DOPR_OUTCH(buffer, *currlen, maxlen, ' ');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000546 ++padlen;
547 ++cnt;
548 }
Damien Miller742cc1c2007-01-14 21:20:30 +1100549 return 0;
Damien Miller42b81ff1999-11-26 12:21:24 +1100550}
551
Damien Miller168e6ac2000-07-11 12:23:01 +1000552/* Have to handle DP_F_NUM (ie 0x and 0 alternates) */
553
Damien Miller742cc1c2007-01-14 21:20:30 +1100554static int
555fmtint(char *buffer, size_t *currlen, size_t maxlen,
Damien Miller4d69aea2014-08-22 17:48:27 +1000556 intmax_t value, int base, int min, int max, int flags)
Damien Miller42b81ff1999-11-26 12:21:24 +1100557{
Damien Miller57f39152005-11-24 19:58:19 +1100558 int signvalue = 0;
Darren Tucker9834cab2006-03-19 00:07:07 +1100559 unsigned LLONG uvalue;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000560 char convert[20];
Damien Miller57f39152005-11-24 19:58:19 +1100561 int place = 0;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000562 int spadlen = 0; /* amount to space pad */
563 int zpadlen = 0; /* amount to zero pad */
Damien Miller57f39152005-11-24 19:58:19 +1100564 int caps = 0;
565
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000566 if (max < 0)
567 max = 0;
Damien Miller57f39152005-11-24 19:58:19 +1100568
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000569 uvalue = value;
Damien Miller57f39152005-11-24 19:58:19 +1100570
571 if(!(flags & DP_F_UNSIGNED)) {
572 if( value < 0 ) {
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000573 signvalue = '-';
574 uvalue = -value;
Damien Miller57f39152005-11-24 19:58:19 +1100575 } else {
576 if (flags & DP_F_PLUS) /* Do a sign (+/i) */
577 signvalue = '+';
578 else if (flags & DP_F_SPACE)
579 signvalue = ' ';
580 }
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000581 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000582
Damien Miller57f39152005-11-24 19:58:19 +1100583 if (flags & DP_F_UP) caps = 1; /* Should characters be upper case? */
584
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000585 do {
586 convert[place++] =
Damien Miller57f39152005-11-24 19:58:19 +1100587 (caps? "0123456789ABCDEF":"0123456789abcdef")
588 [uvalue % (unsigned)base ];
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000589 uvalue = (uvalue / (unsigned)base );
Damien Miller57f39152005-11-24 19:58:19 +1100590 } while(uvalue && (place < 20));
591 if (place == 20) place--;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000592 convert[place] = 0;
Damien Miller168e6ac2000-07-11 12:23:01 +1000593
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000594 zpadlen = max - place;
595 spadlen = min - MAX (max, place) - (signvalue ? 1 : 0);
Damien Miller57f39152005-11-24 19:58:19 +1100596 if (zpadlen < 0) zpadlen = 0;
597 if (spadlen < 0) spadlen = 0;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000598 if (flags & DP_F_ZERO) {
599 zpadlen = MAX(zpadlen, spadlen);
600 spadlen = 0;
601 }
602 if (flags & DP_F_MINUS)
603 spadlen = -spadlen; /* Left Justifty */
Damien Miller168e6ac2000-07-11 12:23:01 +1000604
Damien Miller57f39152005-11-24 19:58:19 +1100605#ifdef DEBUG_SNPRINTF
606 printf("zpad: %d, spad: %d, min: %d, max: %d, place: %d\n",
607 zpadlen, spadlen, min, max, place);
608#endif
609
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000610 /* Spaces */
611 while (spadlen > 0) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100612 DOPR_OUTCH(buffer, *currlen, maxlen, ' ');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000613 --spadlen;
614 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000615
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000616 /* Sign */
617 if (signvalue)
Damien Miller742cc1c2007-01-14 21:20:30 +1100618 DOPR_OUTCH(buffer, *currlen, maxlen, signvalue);
Damien Miller168e6ac2000-07-11 12:23:01 +1000619
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000620 /* Zeros */
621 if (zpadlen > 0) {
622 while (zpadlen > 0) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100623 DOPR_OUTCH(buffer, *currlen, maxlen, '0');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000624 --zpadlen;
625 }
626 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000627
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000628 /* Digits */
Darren Tucker07877ca2007-01-24 00:07:29 +1100629 while (place > 0) {
630 --place;
631 DOPR_OUTCH(buffer, *currlen, maxlen, convert[place]);
632 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000633
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000634 /* Left Justified spaces */
635 while (spadlen < 0) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100636 DOPR_OUTCH(buffer, *currlen, maxlen, ' ');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000637 ++spadlen;
638 }
Damien Miller742cc1c2007-01-14 21:20:30 +1100639 return 0;
Damien Miller42b81ff1999-11-26 12:21:24 +1100640}
641
Damien Miller57f39152005-11-24 19:58:19 +1100642static LDOUBLE abs_val(LDOUBLE value)
Damien Miller42b81ff1999-11-26 12:21:24 +1100643{
Damien Miller57f39152005-11-24 19:58:19 +1100644 LDOUBLE result = value;
Damien Miller42b81ff1999-11-26 12:21:24 +1100645
Damien Miller57f39152005-11-24 19:58:19 +1100646 if (value < 0)
647 result = -value;
648
649 return result;
650}
651
Damien Miller742cc1c2007-01-14 21:20:30 +1100652static LDOUBLE POW10(int val)
Damien Miller57f39152005-11-24 19:58:19 +1100653{
654 LDOUBLE result = 1;
655
Damien Miller742cc1c2007-01-14 21:20:30 +1100656 while (val) {
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000657 result *= 10;
Damien Miller742cc1c2007-01-14 21:20:30 +1100658 val--;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000659 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000660
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000661 return result;
Damien Miller168e6ac2000-07-11 12:23:01 +1000662}
663
Damien Miller57f39152005-11-24 19:58:19 +1100664static LLONG ROUND(LDOUBLE value)
Damien Miller168e6ac2000-07-11 12:23:01 +1000665{
Damien Miller57f39152005-11-24 19:58:19 +1100666 LLONG intpart;
Damien Miller168e6ac2000-07-11 12:23:01 +1000667
Damien Miller57f39152005-11-24 19:58:19 +1100668 intpart = (LLONG)value;
669 value = value - intpart;
670 if (value >= 0.5) intpart++;
671
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000672 return intpart;
Damien Miller168e6ac2000-07-11 12:23:01 +1000673}
674
Damien Miller57f39152005-11-24 19:58:19 +1100675/* a replacement for modf that doesn't need the math library. Should
676 be portable, but slow */
677static double my_modf(double x0, double *iptr)
Damien Miller168e6ac2000-07-11 12:23:01 +1000678{
Damien Miller57f39152005-11-24 19:58:19 +1100679 int i;
680 long l;
681 double x = x0;
682 double f = 1.0;
683
684 for (i=0;i<100;i++) {
685 l = (long)x;
686 if (l <= (x+1) && l >= (x-1)) break;
687 x *= 0.1;
688 f *= 10.0;
689 }
690
691 if (i == 100) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100692 /*
693 * yikes! the number is beyond what we can handle.
694 * What do we do?
695 */
Damien Miller57f39152005-11-24 19:58:19 +1100696 (*iptr) = 0;
697 return 0;
698 }
699
700 if (i != 0) {
701 double i2;
702 double ret;
703
704 ret = my_modf(x0-l*f, &i2);
705 (*iptr) = l*f + i2;
706 return ret;
707 }
708
709 (*iptr) = l;
710 return x - (*iptr);
711}
712
713
Damien Miller742cc1c2007-01-14 21:20:30 +1100714static int
715fmtfp (char *buffer, size_t *currlen, size_t maxlen,
716 LDOUBLE fvalue, int min, int max, int flags)
Damien Miller57f39152005-11-24 19:58:19 +1100717{
718 int signvalue = 0;
719 double ufvalue;
720 char iconvert[311];
721 char fconvert[311];
722 int iplace = 0;
723 int fplace = 0;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000724 int padlen = 0; /* amount to pad */
Damien Miller57f39152005-11-24 19:58:19 +1100725 int zpadlen = 0;
726 int caps = 0;
727 int idx;
728 double intpart;
729 double fracpart;
730 double temp;
Damien Miller168e6ac2000-07-11 12:23:01 +1000731
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000732 /*
733 * AIX manpage says the default is 0, but Solaris says the default
734 * is 6, and sprintf on AIX defaults to 6
735 */
736 if (max < 0)
737 max = 6;
Damien Miller168e6ac2000-07-11 12:23:01 +1000738
Damien Miller57f39152005-11-24 19:58:19 +1100739 ufvalue = abs_val (fvalue);
Damien Miller168e6ac2000-07-11 12:23:01 +1000740
Damien Miller57f39152005-11-24 19:58:19 +1100741 if (fvalue < 0) {
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000742 signvalue = '-';
Damien Miller57f39152005-11-24 19:58:19 +1100743 } else {
744 if (flags & DP_F_PLUS) { /* Do a sign (+/i) */
745 signvalue = '+';
746 } else {
747 if (flags & DP_F_SPACE)
748 signvalue = ' ';
749 }
750 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000751
Damien Miller57f39152005-11-24 19:58:19 +1100752#if 0
753 if (flags & DP_F_UP) caps = 1; /* Should characters be upper case? */
754#endif
755
756#if 0
757 if (max == 0) ufvalue += 0.5; /* if max = 0 we must round */
758#endif
Damien Miller168e6ac2000-07-11 12:23:01 +1000759
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000760 /*
Damien Miller57f39152005-11-24 19:58:19 +1100761 * Sorry, we only support 16 digits past the decimal because of our
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000762 * conversion method
763 */
Damien Miller57f39152005-11-24 19:58:19 +1100764 if (max > 16)
765 max = 16;
Damien Miller168e6ac2000-07-11 12:23:01 +1000766
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000767 /* We "cheat" by converting the fractional part to integer by
768 * multiplying by a factor of 10
769 */
Damien Miller168e6ac2000-07-11 12:23:01 +1000770
Damien Miller57f39152005-11-24 19:58:19 +1100771 temp = ufvalue;
772 my_modf(temp, &intpart);
773
774 fracpart = ROUND((POW10(max)) * (ufvalue - intpart));
775
776 if (fracpart >= POW10(max)) {
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000777 intpart++;
Damien Miller57f39152005-11-24 19:58:19 +1100778 fracpart -= POW10(max);
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000779 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000780
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000781 /* Convert integer part */
782 do {
Damien Miller57f39152005-11-24 19:58:19 +1100783 temp = intpart*0.1;
784 my_modf(temp, &intpart);
785 idx = (int) ((temp -intpart +0.05)* 10.0);
786 /* idx = (int) (((double)(temp*0.1) -intpart +0.05) *10.0); */
787 /* printf ("%llf, %f, %x\n", temp, intpart, idx); */
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000788 iconvert[iplace++] =
Damien Miller57f39152005-11-24 19:58:19 +1100789 (caps? "0123456789ABCDEF":"0123456789abcdef")[idx];
790 } while (intpart && (iplace < 311));
791 if (iplace == 311) iplace--;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000792 iconvert[iplace] = 0;
Damien Miller168e6ac2000-07-11 12:23:01 +1000793
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000794 /* Convert fractional part */
Damien Miller57f39152005-11-24 19:58:19 +1100795 if (fracpart)
796 {
797 do {
798 temp = fracpart*0.1;
799 my_modf(temp, &fracpart);
800 idx = (int) ((temp -fracpart +0.05)* 10.0);
801 /* idx = (int) ((((temp/10) -fracpart) +0.05) *10); */
802 /* printf ("%lf, %lf, %ld\n", temp, fracpart, idx ); */
803 fconvert[fplace++] =
804 (caps? "0123456789ABCDEF":"0123456789abcdef")[idx];
805 } while(fracpart && (fplace < 311));
806 if (fplace == 311) fplace--;
807 }
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000808 fconvert[fplace] = 0;
Damien Miller57f39152005-11-24 19:58:19 +1100809
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000810 /* -1 for decimal point, another -1 if we are printing a sign */
811 padlen = min - iplace - max - 1 - ((signvalue) ? 1 : 0);
812 zpadlen = max - fplace;
Damien Miller57f39152005-11-24 19:58:19 +1100813 if (zpadlen < 0) zpadlen = 0;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000814 if (padlen < 0)
815 padlen = 0;
816 if (flags & DP_F_MINUS)
817 padlen = -padlen; /* Left Justifty */
Damien Miller57f39152005-11-24 19:58:19 +1100818
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000819 if ((flags & DP_F_ZERO) && (padlen > 0)) {
820 if (signvalue) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100821 DOPR_OUTCH(buffer, *currlen, maxlen, signvalue);
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000822 --padlen;
823 signvalue = 0;
824 }
825 while (padlen > 0) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100826 DOPR_OUTCH(buffer, *currlen, maxlen, '0');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000827 --padlen;
828 }
829 }
830 while (padlen > 0) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100831 DOPR_OUTCH(buffer, *currlen, maxlen, ' ');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000832 --padlen;
833 }
834 if (signvalue)
Damien Miller742cc1c2007-01-14 21:20:30 +1100835 DOPR_OUTCH(buffer, *currlen, maxlen, signvalue);
Damien Miller57f39152005-11-24 19:58:19 +1100836
Darren Tucker07877ca2007-01-24 00:07:29 +1100837 while (iplace > 0) {
838 --iplace;
839 DOPR_OUTCH(buffer, *currlen, maxlen, iconvert[iplace]);
840 }
Damien Miller57f39152005-11-24 19:58:19 +1100841
842#ifdef DEBUG_SNPRINTF
843 printf("fmtfp: fplace=%d zpadlen=%d\n", fplace, zpadlen);
844#endif
Damien Miller168e6ac2000-07-11 12:23:01 +1000845
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000846 /*
Damien Miller57f39152005-11-24 19:58:19 +1100847 * Decimal point. This should probably use locale to find the correct
848 * char to print out.
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000849 */
Damien Miller57f39152005-11-24 19:58:19 +1100850 if (max > 0) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100851 DOPR_OUTCH(buffer, *currlen, maxlen, '.');
Damien Miller57f39152005-11-24 19:58:19 +1100852
853 while (zpadlen > 0) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100854 DOPR_OUTCH(buffer, *currlen, maxlen, '0');
Damien Miller57f39152005-11-24 19:58:19 +1100855 --zpadlen;
856 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000857
Darren Tucker07877ca2007-01-24 00:07:29 +1100858 while (fplace > 0) {
859 --fplace;
860 DOPR_OUTCH(buffer, *currlen, maxlen, fconvert[fplace]);
861 }
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000862 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000863
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000864 while (padlen < 0) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100865 DOPR_OUTCH(buffer, *currlen, maxlen, ' ');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000866 ++padlen;
867 }
Damien Miller742cc1c2007-01-14 21:20:30 +1100868 return 0;
Damien Miller168e6ac2000-07-11 12:23:01 +1000869}
870#endif /* !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF) */
871
Damien Miller57f39152005-11-24 19:58:19 +1100872#if !defined(HAVE_VSNPRINTF)
Darren Tucker07877ca2007-01-24 00:07:29 +1100873int
Damien Miller742cc1c2007-01-14 21:20:30 +1100874vsnprintf (char *str, size_t count, const char *fmt, va_list args)
Damien Miller168e6ac2000-07-11 12:23:01 +1000875{
Damien Miller57f39152005-11-24 19:58:19 +1100876 return dopr(str, count, fmt, args);
Damien Miller168e6ac2000-07-11 12:23:01 +1000877}
Damien Miller57f39152005-11-24 19:58:19 +1100878#endif
Damien Miller168e6ac2000-07-11 12:23:01 +1000879
Damien Miller57f39152005-11-24 19:58:19 +1100880#if !defined(HAVE_SNPRINTF)
Darren Tucker07877ca2007-01-24 00:07:29 +1100881int
882snprintf(char *str, size_t count, SNPRINTF_CONST char *fmt, ...)
Damien Millerc6b3bbe1999-12-13 08:27:33 +1100883{
Damien Miller57f39152005-11-24 19:58:19 +1100884 size_t ret;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000885 va_list ap;
886
887 va_start(ap, fmt);
Damien Miller57f39152005-11-24 19:58:19 +1100888 ret = vsnprintf(str, count, fmt, ap);
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000889 va_end(ap);
Damien Miller57f39152005-11-24 19:58:19 +1100890 return ret;
Damien Millerc6b3bbe1999-12-13 08:27:33 +1100891}
Damien Miller57f39152005-11-24 19:58:19 +1100892#endif