blob: 571c61fc02dd0fc4a406000a0b09249d621d561f [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 Miller168e6ac2000-07-11 12:23:01 +100088 **************************************************************/
Damien Miller42b81ff1999-11-26 12:21:24 +110089
Damien Millere9cf3572001-02-09 12:55:35 +110090#include "includes.h"
91
Darren Tucker9834cab2006-03-19 00:07:07 +110092RCSID("$Id: bsd-snprintf.c,v 1.12 2006/03/18 13:07:07 dtucker Exp $");
Ben Lindstrom63941f92001-02-25 23:20:40 +000093
94#if defined(BROKEN_SNPRINTF) /* For those with broken snprintf() */
95# undef HAVE_SNPRINTF
96# undef HAVE_VSNPRINTF
97#endif
Damien Miller42b81ff1999-11-26 12:21:24 +110098
Damien Miller57f39152005-11-24 19:58:19 +110099#ifndef VA_COPY
100# ifdef HAVE_VA_COPY
101# define VA_COPY(dest, src) va_copy(dest, src)
102# else
103# ifdef HAVE___VA_COPY
104# define VA_COPY(dest, src) __va_copy(dest, src)
105# else
106# define VA_COPY(dest, src) (dest) = (src)
107# endif
108# endif
109#endif
110
Damien Miller168e6ac2000-07-11 12:23:01 +1000111#if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF)
Damien Miller42b81ff1999-11-26 12:21:24 +1100112
Damien Miller57f39152005-11-24 19:58:19 +1100113#ifdef HAVE_LONG_DOUBLE
114# define LDOUBLE long double
115#else
116# define LDOUBLE double
117#endif
Damien Miller168e6ac2000-07-11 12:23:01 +1000118
Damien Miller57f39152005-11-24 19:58:19 +1100119#ifdef HAVE_LONG_LONG
120# define LLONG long long
121#else
122# define LLONG long
123#endif
Ben Lindstrom116b6bd2001-02-13 14:05:59 +0000124
Damien Miller168e6ac2000-07-11 12:23:01 +1000125/*
126 * dopr(): poor man's version of doprintf
127 */
128
129/* format read states */
130#define DP_S_DEFAULT 0
131#define DP_S_FLAGS 1
132#define DP_S_MIN 2
133#define DP_S_DOT 3
134#define DP_S_MAX 4
135#define DP_S_MOD 5
136#define DP_S_CONV 6
137#define DP_S_DONE 7
138
139/* format flags - Bits */
140#define DP_F_MINUS (1 << 0)
141#define DP_F_PLUS (1 << 1)
142#define DP_F_SPACE (1 << 2)
143#define DP_F_NUM (1 << 3)
144#define DP_F_ZERO (1 << 4)
145#define DP_F_UP (1 << 5)
146#define DP_F_UNSIGNED (1 << 6)
147
148/* Conversion Flags */
Damien Miller57f39152005-11-24 19:58:19 +1100149#define DP_C_SHORT 1
150#define DP_C_LONG 2
151#define DP_C_LDOUBLE 3
152#define DP_C_LLONG 4
Damien Miller168e6ac2000-07-11 12:23:01 +1000153
Damien Miller57f39152005-11-24 19:58:19 +1100154#define char_to_int(p) ((p)- '0')
155#ifndef MAX
156# define MAX(p,q) (((p) >= (q)) ? (p) : (q))
157#endif
Damien Miller168e6ac2000-07-11 12:23:01 +1000158
Damien Miller57f39152005-11-24 19:58:19 +1100159static size_t dopr(char *buffer, size_t maxlen, const char *format,
160 va_list args_in);
161static void fmtstr(char *buffer, size_t *currlen, size_t maxlen,
162 char *value, int flags, int min, int max);
163static void fmtint(char *buffer, size_t *currlen, size_t maxlen,
Darren Tucker9834cab2006-03-19 00:07:07 +1100164 LLONG value, int base, int min, int max, int flags);
Damien Miller57f39152005-11-24 19:58:19 +1100165static void fmtfp(char *buffer, size_t *currlen, size_t maxlen,
166 LDOUBLE fvalue, int min, int max, int flags);
167static void dopr_outch(char *buffer, size_t *currlen, size_t maxlen, char c);
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000168
Damien Miller57f39152005-11-24 19:58:19 +1100169static size_t dopr(char *buffer, size_t maxlen, const char *format, va_list args_in)
Damien Miller13bc0be1999-12-28 10:19:16 +1100170{
Damien Miller57f39152005-11-24 19:58:19 +1100171 char ch;
172 LLONG value;
173 LDOUBLE fvalue;
174 char *strvalue;
175 int min;
176 int max;
177 int state;
178 int flags;
179 int cflags;
180 size_t currlen;
181 va_list args;
Damien Miller13bc0be1999-12-28 10:19:16 +1100182
Damien Miller57f39152005-11-24 19:58:19 +1100183 VA_COPY(args, args_in);
184
185 state = DP_S_DEFAULT;
186 currlen = flags = cflags = min = 0;
187 max = -1;
188 ch = *format++;
189
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000190 while (state != DP_S_DONE) {
Damien Miller57f39152005-11-24 19:58:19 +1100191 if (ch == '\0')
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000192 state = DP_S_DONE;
Damien Miller42b81ff1999-11-26 12:21:24 +1100193
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000194 switch(state) {
Damien Miller31741252003-05-19 00:13:38 +1000195 case DP_S_DEFAULT:
196 if (ch == '%')
197 state = DP_S_FLAGS;
198 else
Damien Miller57f39152005-11-24 19:58:19 +1100199 dopr_outch (buffer, &currlen, maxlen, ch);
Damien Miller31741252003-05-19 00:13:38 +1000200 ch = *format++;
201 break;
202 case DP_S_FLAGS:
203 switch (ch) {
204 case '-':
205 flags |= DP_F_MINUS;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000206 ch = *format++;
207 break;
Damien Miller31741252003-05-19 00:13:38 +1000208 case '+':
209 flags |= DP_F_PLUS;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000210 ch = *format++;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000211 break;
Damien Miller31741252003-05-19 00:13:38 +1000212 case ' ':
213 flags |= DP_F_SPACE;
214 ch = *format++;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000215 break;
Damien Miller31741252003-05-19 00:13:38 +1000216 case '#':
217 flags |= DP_F_NUM;
218 ch = *format++;
219 break;
220 case '0':
221 flags |= DP_F_ZERO;
222 ch = *format++;
223 break;
224 default:
225 state = DP_S_MIN;
226 break;
227 }
228 break;
229 case DP_S_MIN:
230 if (isdigit((unsigned char)ch)) {
Damien Miller57f39152005-11-24 19:58:19 +1100231 min = 10*min + char_to_int (ch);
Damien Miller31741252003-05-19 00:13:38 +1000232 ch = *format++;
233 } else if (ch == '*') {
234 min = va_arg (args, int);
235 ch = *format++;
236 state = DP_S_DOT;
Damien Miller57f39152005-11-24 19:58:19 +1100237 } else {
Damien Miller31741252003-05-19 00:13:38 +1000238 state = DP_S_DOT;
Damien Miller57f39152005-11-24 19:58:19 +1100239 }
Damien Miller31741252003-05-19 00:13:38 +1000240 break;
241 case DP_S_DOT:
242 if (ch == '.') {
243 state = DP_S_MAX;
244 ch = *format++;
Damien Miller57f39152005-11-24 19:58:19 +1100245 } else {
Damien Miller31741252003-05-19 00:13:38 +1000246 state = DP_S_MOD;
Damien Miller57f39152005-11-24 19:58:19 +1100247 }
Damien Miller31741252003-05-19 00:13:38 +1000248 break;
249 case DP_S_MAX:
250 if (isdigit((unsigned char)ch)) {
251 if (max < 0)
252 max = 0;
Damien Miller57f39152005-11-24 19:58:19 +1100253 max = 10*max + char_to_int (ch);
Damien Miller31741252003-05-19 00:13:38 +1000254 ch = *format++;
255 } else if (ch == '*') {
256 max = va_arg (args, int);
257 ch = *format++;
258 state = DP_S_MOD;
Damien Miller57f39152005-11-24 19:58:19 +1100259 } else {
Damien Miller31741252003-05-19 00:13:38 +1000260 state = DP_S_MOD;
Damien Miller57f39152005-11-24 19:58:19 +1100261 }
Damien Miller31741252003-05-19 00:13:38 +1000262 break;
263 case DP_S_MOD:
264 switch (ch) {
265 case 'h':
266 cflags = DP_C_SHORT;
267 ch = *format++;
268 break;
269 case 'l':
270 cflags = DP_C_LONG;
271 ch = *format++;
Damien Miller57f39152005-11-24 19:58:19 +1100272 if (ch == 'l') { /* It's a long long */
273 cflags = DP_C_LLONG;
Damien Miller31741252003-05-19 00:13:38 +1000274 ch = *format++;
275 }
276 break;
Damien Miller31741252003-05-19 00:13:38 +1000277 case 'L':
278 cflags = DP_C_LDOUBLE;
279 ch = *format++;
280 break;
281 default:
282 break;
283 }
284 state = DP_S_CONV;
285 break;
286 case DP_S_CONV:
287 switch (ch) {
288 case 'd':
289 case 'i':
290 if (cflags == DP_C_SHORT)
Damien Miller57f39152005-11-24 19:58:19 +1100291 value = va_arg (args, int);
Damien Miller31741252003-05-19 00:13:38 +1000292 else if (cflags == DP_C_LONG)
Damien Miller57f39152005-11-24 19:58:19 +1100293 value = va_arg (args, long int);
294 else if (cflags == DP_C_LLONG)
295 value = va_arg (args, LLONG);
Damien Miller31741252003-05-19 00:13:38 +1000296 else
297 value = va_arg (args, int);
Damien Miller57f39152005-11-24 19:58:19 +1100298 fmtint (buffer, &currlen, maxlen, value, 10, min, max, flags);
Damien Miller31741252003-05-19 00:13:38 +1000299 break;
300 case 'o':
301 flags |= DP_F_UNSIGNED;
302 if (cflags == DP_C_SHORT)
Damien Miller57f39152005-11-24 19:58:19 +1100303 value = va_arg (args, unsigned int);
Damien Miller31741252003-05-19 00:13:38 +1000304 else if (cflags == DP_C_LONG)
Damien Miller57f39152005-11-24 19:58:19 +1100305 value = (long)va_arg (args, unsigned long int);
306 else if (cflags == DP_C_LLONG)
307 value = (long)va_arg (args, unsigned LLONG);
Damien Miller31741252003-05-19 00:13:38 +1000308 else
Damien Miller57f39152005-11-24 19:58:19 +1100309 value = (long)va_arg (args, unsigned int);
310 fmtint (buffer, &currlen, maxlen, value, 8, min, max, flags);
Damien Miller31741252003-05-19 00:13:38 +1000311 break;
312 case 'u':
313 flags |= DP_F_UNSIGNED;
314 if (cflags == DP_C_SHORT)
Damien Miller57f39152005-11-24 19:58:19 +1100315 value = va_arg (args, unsigned int);
Damien Miller31741252003-05-19 00:13:38 +1000316 else if (cflags == DP_C_LONG)
Damien Miller57f39152005-11-24 19:58:19 +1100317 value = (long)va_arg (args, unsigned long int);
318 else if (cflags == DP_C_LLONG)
319 value = (LLONG)va_arg (args, unsigned LLONG);
Damien Miller31741252003-05-19 00:13:38 +1000320 else
Damien Miller57f39152005-11-24 19:58:19 +1100321 value = (long)va_arg (args, unsigned int);
Damien Miller31741252003-05-19 00:13:38 +1000322 fmtint (buffer, &currlen, maxlen, value, 10, min, max, flags);
323 break;
324 case 'X':
325 flags |= DP_F_UP;
326 case 'x':
327 flags |= DP_F_UNSIGNED;
328 if (cflags == DP_C_SHORT)
Damien Miller57f39152005-11-24 19:58:19 +1100329 value = va_arg (args, unsigned int);
Damien Miller31741252003-05-19 00:13:38 +1000330 else if (cflags == DP_C_LONG)
Damien Miller57f39152005-11-24 19:58:19 +1100331 value = (long)va_arg (args, unsigned long int);
332 else if (cflags == DP_C_LLONG)
333 value = (LLONG)va_arg (args, unsigned LLONG);
Damien Miller31741252003-05-19 00:13:38 +1000334 else
Damien Miller57f39152005-11-24 19:58:19 +1100335 value = (long)va_arg (args, unsigned int);
336 fmtint (buffer, &currlen, maxlen, value, 16, min, max, flags);
Damien Miller31741252003-05-19 00:13:38 +1000337 break;
338 case 'f':
339 if (cflags == DP_C_LDOUBLE)
Damien Miller57f39152005-11-24 19:58:19 +1100340 fvalue = va_arg (args, LDOUBLE);
Damien Miller31741252003-05-19 00:13:38 +1000341 else
Damien Miller57f39152005-11-24 19:58:19 +1100342 fvalue = va_arg (args, double);
Damien Miller31741252003-05-19 00:13:38 +1000343 /* um, floating point? */
Damien Miller57f39152005-11-24 19:58:19 +1100344 fmtfp (buffer, &currlen, maxlen, fvalue, min, max, flags);
Damien Miller31741252003-05-19 00:13:38 +1000345 break;
346 case 'E':
347 flags |= DP_F_UP;
348 case 'e':
349 if (cflags == DP_C_LDOUBLE)
Damien Miller57f39152005-11-24 19:58:19 +1100350 fvalue = va_arg (args, LDOUBLE);
Damien Miller31741252003-05-19 00:13:38 +1000351 else
Damien Miller57f39152005-11-24 19:58:19 +1100352 fvalue = va_arg (args, double);
353 fmtfp (buffer, &currlen, maxlen, fvalue, min, max, flags);
Damien Miller31741252003-05-19 00:13:38 +1000354 break;
355 case 'G':
356 flags |= DP_F_UP;
357 case 'g':
358 if (cflags == DP_C_LDOUBLE)
Damien Miller57f39152005-11-24 19:58:19 +1100359 fvalue = va_arg (args, LDOUBLE);
Damien Miller31741252003-05-19 00:13:38 +1000360 else
Damien Miller57f39152005-11-24 19:58:19 +1100361 fvalue = va_arg (args, double);
362 fmtfp (buffer, &currlen, maxlen, fvalue, min, max, flags);
Damien Miller31741252003-05-19 00:13:38 +1000363 break;
364 case 'c':
Damien Miller57f39152005-11-24 19:58:19 +1100365 dopr_outch (buffer, &currlen, maxlen, va_arg (args, int));
Damien Miller31741252003-05-19 00:13:38 +1000366 break;
367 case 's':
Damien Miller57f39152005-11-24 19:58:19 +1100368 strvalue = va_arg (args, char *);
369 if (!strvalue) strvalue = "(NULL)";
370 if (max == -1) {
371 max = strlen(strvalue);
372 }
373 if (min > 0 && max >= 0 && min > max) max = min;
374 fmtstr (buffer, &currlen, maxlen, strvalue, flags, min, max);
Damien Miller31741252003-05-19 00:13:38 +1000375 break;
376 case 'p':
Damien Miller57f39152005-11-24 19:58:19 +1100377 strvalue = va_arg (args, void *);
378 fmtint (buffer, &currlen, maxlen, (long) strvalue, 16, min, max, flags);
Damien Miller31741252003-05-19 00:13:38 +1000379 break;
380 case 'n':
381 if (cflags == DP_C_SHORT) {
382 short int *num;
Damien Miller57f39152005-11-24 19:58:19 +1100383 num = va_arg (args, short int *);
Damien Miller31741252003-05-19 00:13:38 +1000384 *num = currlen;
385 } else if (cflags == DP_C_LONG) {
386 long int *num;
Damien Miller57f39152005-11-24 19:58:19 +1100387 num = va_arg (args, long int *);
388 *num = (long int)currlen;
389 } else if (cflags == DP_C_LLONG) {
390 LLONG *num;
391 num = va_arg (args, LLONG *);
392 *num = (LLONG)currlen;
Damien Miller31741252003-05-19 00:13:38 +1000393 } else {
394 int *num;
Damien Miller57f39152005-11-24 19:58:19 +1100395 num = va_arg (args, int *);
Damien Miller31741252003-05-19 00:13:38 +1000396 *num = currlen;
397 }
398 break;
399 case '%':
Damien Miller57f39152005-11-24 19:58:19 +1100400 dopr_outch (buffer, &currlen, maxlen, ch);
Damien Miller31741252003-05-19 00:13:38 +1000401 break;
Damien Miller57f39152005-11-24 19:58:19 +1100402 case 'w':
403 /* not supported yet, treat as next char */
Damien Miller31741252003-05-19 00:13:38 +1000404 ch = *format++;
405 break;
Damien Miller57f39152005-11-24 19:58:19 +1100406 default:
407 /* Unknown, skip */
408 break;
Damien Miller31741252003-05-19 00:13:38 +1000409 }
410 ch = *format++;
411 state = DP_S_DEFAULT;
412 flags = cflags = min = 0;
413 max = -1;
414 break;
415 case DP_S_DONE:
416 break;
Damien Miller57f39152005-11-24 19:58:19 +1100417 default:
418 /* hmm? */
Damien Miller31741252003-05-19 00:13:38 +1000419 break; /* some picky compilers need this */
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000420 }
421 }
Damien Miller57f39152005-11-24 19:58:19 +1100422 if (maxlen != 0) {
423 if (currlen < maxlen - 1)
424 buffer[currlen] = '\0';
425 else if (maxlen > 0)
426 buffer[maxlen - 1] = '\0';
427 }
428
429 return currlen;
Damien Miller42b81ff1999-11-26 12:21:24 +1100430}
431
Damien Miller57f39152005-11-24 19:58:19 +1100432static void fmtstr(char *buffer, size_t *currlen, size_t maxlen,
433 char *value, int flags, int min, int max)
Damien Miller42b81ff1999-11-26 12:21:24 +1100434{
Damien Miller57f39152005-11-24 19:58:19 +1100435 int padlen, strln; /* amount to pad */
436 int cnt = 0;
437
438#ifdef DEBUG_SNPRINTF
439 printf("fmtstr min=%d max=%d s=[%s]\n", min, max, value);
440#endif
441 if (value == 0) {
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000442 value = "<NULL>";
Damien Miller57f39152005-11-24 19:58:19 +1100443 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000444
Darren Tucker4127f552004-09-23 21:35:09 +1000445 for (strln = 0; strln < max && value[strln]; ++strln); /* strlen */
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000446 padlen = min - strln;
447 if (padlen < 0)
448 padlen = 0;
449 if (flags & DP_F_MINUS)
450 padlen = -padlen; /* Left Justify */
Damien Miller57f39152005-11-24 19:58:19 +1100451
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000452 while ((padlen > 0) && (cnt < max)) {
Damien Miller57f39152005-11-24 19:58:19 +1100453 dopr_outch (buffer, currlen, maxlen, ' ');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000454 --padlen;
455 ++cnt;
456 }
457 while (*value && (cnt < max)) {
Damien Miller57f39152005-11-24 19:58:19 +1100458 dopr_outch (buffer, currlen, maxlen, *value++);
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000459 ++cnt;
460 }
461 while ((padlen < 0) && (cnt < max)) {
Damien Miller57f39152005-11-24 19:58:19 +1100462 dopr_outch (buffer, currlen, maxlen, ' ');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000463 ++padlen;
464 ++cnt;
465 }
Damien Miller42b81ff1999-11-26 12:21:24 +1100466}
467
Damien Miller168e6ac2000-07-11 12:23:01 +1000468/* Have to handle DP_F_NUM (ie 0x and 0 alternates) */
469
Damien Miller57f39152005-11-24 19:58:19 +1100470static void fmtint(char *buffer, size_t *currlen, size_t maxlen,
Darren Tucker9834cab2006-03-19 00:07:07 +1100471 LLONG value, int base, int min, int max, int flags)
Damien Miller42b81ff1999-11-26 12:21:24 +1100472{
Damien Miller57f39152005-11-24 19:58:19 +1100473 int signvalue = 0;
Darren Tucker9834cab2006-03-19 00:07:07 +1100474 unsigned LLONG uvalue;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000475 char convert[20];
Damien Miller57f39152005-11-24 19:58:19 +1100476 int place = 0;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000477 int spadlen = 0; /* amount to space pad */
478 int zpadlen = 0; /* amount to zero pad */
Damien Miller57f39152005-11-24 19:58:19 +1100479 int caps = 0;
480
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000481 if (max < 0)
482 max = 0;
Damien Miller57f39152005-11-24 19:58:19 +1100483
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000484 uvalue = value;
Damien Miller57f39152005-11-24 19:58:19 +1100485
486 if(!(flags & DP_F_UNSIGNED)) {
487 if( value < 0 ) {
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000488 signvalue = '-';
489 uvalue = -value;
Damien Miller57f39152005-11-24 19:58:19 +1100490 } else {
491 if (flags & DP_F_PLUS) /* Do a sign (+/i) */
492 signvalue = '+';
493 else if (flags & DP_F_SPACE)
494 signvalue = ' ';
495 }
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000496 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000497
Damien Miller57f39152005-11-24 19:58:19 +1100498 if (flags & DP_F_UP) caps = 1; /* Should characters be upper case? */
499
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000500 do {
501 convert[place++] =
Damien Miller57f39152005-11-24 19:58:19 +1100502 (caps? "0123456789ABCDEF":"0123456789abcdef")
503 [uvalue % (unsigned)base ];
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000504 uvalue = (uvalue / (unsigned)base );
Damien Miller57f39152005-11-24 19:58:19 +1100505 } while(uvalue && (place < 20));
506 if (place == 20) place--;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000507 convert[place] = 0;
Damien Miller168e6ac2000-07-11 12:23:01 +1000508
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000509 zpadlen = max - place;
510 spadlen = min - MAX (max, place) - (signvalue ? 1 : 0);
Damien Miller57f39152005-11-24 19:58:19 +1100511 if (zpadlen < 0) zpadlen = 0;
512 if (spadlen < 0) spadlen = 0;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000513 if (flags & DP_F_ZERO) {
514 zpadlen = MAX(zpadlen, spadlen);
515 spadlen = 0;
516 }
517 if (flags & DP_F_MINUS)
518 spadlen = -spadlen; /* Left Justifty */
Damien Miller168e6ac2000-07-11 12:23:01 +1000519
Damien Miller57f39152005-11-24 19:58:19 +1100520#ifdef DEBUG_SNPRINTF
521 printf("zpad: %d, spad: %d, min: %d, max: %d, place: %d\n",
522 zpadlen, spadlen, min, max, place);
523#endif
524
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000525 /* Spaces */
526 while (spadlen > 0) {
Damien Miller57f39152005-11-24 19:58:19 +1100527 dopr_outch (buffer, currlen, maxlen, ' ');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000528 --spadlen;
529 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000530
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000531 /* Sign */
532 if (signvalue)
Damien Miller57f39152005-11-24 19:58:19 +1100533 dopr_outch (buffer, currlen, maxlen, signvalue);
Damien Miller168e6ac2000-07-11 12:23:01 +1000534
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000535 /* Zeros */
536 if (zpadlen > 0) {
537 while (zpadlen > 0) {
Damien Miller57f39152005-11-24 19:58:19 +1100538 dopr_outch (buffer, currlen, maxlen, '0');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000539 --zpadlen;
540 }
541 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000542
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000543 /* Digits */
544 while (place > 0)
Damien Miller57f39152005-11-24 19:58:19 +1100545 dopr_outch (buffer, currlen, maxlen, convert[--place]);
Damien Miller168e6ac2000-07-11 12:23:01 +1000546
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000547 /* Left Justified spaces */
548 while (spadlen < 0) {
549 dopr_outch (buffer, currlen, maxlen, ' ');
550 ++spadlen;
551 }
Damien Miller42b81ff1999-11-26 12:21:24 +1100552}
553
Damien Miller57f39152005-11-24 19:58:19 +1100554static LDOUBLE abs_val(LDOUBLE value)
Damien Miller42b81ff1999-11-26 12:21:24 +1100555{
Damien Miller57f39152005-11-24 19:58:19 +1100556 LDOUBLE result = value;
Damien Miller42b81ff1999-11-26 12:21:24 +1100557
Damien Miller57f39152005-11-24 19:58:19 +1100558 if (value < 0)
559 result = -value;
560
561 return result;
562}
563
564static LDOUBLE POW10(int exp)
565{
566 LDOUBLE result = 1;
567
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000568 while (exp) {
569 result *= 10;
570 exp--;
571 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000572
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000573 return result;
Damien Miller168e6ac2000-07-11 12:23:01 +1000574}
575
Damien Miller57f39152005-11-24 19:58:19 +1100576static LLONG ROUND(LDOUBLE value)
Damien Miller168e6ac2000-07-11 12:23:01 +1000577{
Damien Miller57f39152005-11-24 19:58:19 +1100578 LLONG intpart;
Damien Miller168e6ac2000-07-11 12:23:01 +1000579
Damien Miller57f39152005-11-24 19:58:19 +1100580 intpart = (LLONG)value;
581 value = value - intpart;
582 if (value >= 0.5) intpart++;
583
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000584 return intpart;
Damien Miller168e6ac2000-07-11 12:23:01 +1000585}
586
Damien Miller57f39152005-11-24 19:58:19 +1100587/* a replacement for modf that doesn't need the math library. Should
588 be portable, but slow */
589static double my_modf(double x0, double *iptr)
Damien Miller168e6ac2000-07-11 12:23:01 +1000590{
Damien Miller57f39152005-11-24 19:58:19 +1100591 int i;
592 long l;
593 double x = x0;
594 double f = 1.0;
595
596 for (i=0;i<100;i++) {
597 l = (long)x;
598 if (l <= (x+1) && l >= (x-1)) break;
599 x *= 0.1;
600 f *= 10.0;
601 }
602
603 if (i == 100) {
604 /* yikes! the number is beyond what we can handle. What do we do? */
605 (*iptr) = 0;
606 return 0;
607 }
608
609 if (i != 0) {
610 double i2;
611 double ret;
612
613 ret = my_modf(x0-l*f, &i2);
614 (*iptr) = l*f + i2;
615 return ret;
616 }
617
618 (*iptr) = l;
619 return x - (*iptr);
620}
621
622
623static void fmtfp (char *buffer, size_t *currlen, size_t maxlen,
624 LDOUBLE fvalue, int min, int max, int flags)
625{
626 int signvalue = 0;
627 double ufvalue;
628 char iconvert[311];
629 char fconvert[311];
630 int iplace = 0;
631 int fplace = 0;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000632 int padlen = 0; /* amount to pad */
Damien Miller57f39152005-11-24 19:58:19 +1100633 int zpadlen = 0;
634 int caps = 0;
635 int idx;
636 double intpart;
637 double fracpart;
638 double temp;
Damien Miller168e6ac2000-07-11 12:23:01 +1000639
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000640 /*
641 * AIX manpage says the default is 0, but Solaris says the default
642 * is 6, and sprintf on AIX defaults to 6
643 */
644 if (max < 0)
645 max = 6;
Damien Miller168e6ac2000-07-11 12:23:01 +1000646
Damien Miller57f39152005-11-24 19:58:19 +1100647 ufvalue = abs_val (fvalue);
Damien Miller168e6ac2000-07-11 12:23:01 +1000648
Damien Miller57f39152005-11-24 19:58:19 +1100649 if (fvalue < 0) {
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000650 signvalue = '-';
Damien Miller57f39152005-11-24 19:58:19 +1100651 } else {
652 if (flags & DP_F_PLUS) { /* Do a sign (+/i) */
653 signvalue = '+';
654 } else {
655 if (flags & DP_F_SPACE)
656 signvalue = ' ';
657 }
658 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000659
Damien Miller57f39152005-11-24 19:58:19 +1100660#if 0
661 if (flags & DP_F_UP) caps = 1; /* Should characters be upper case? */
662#endif
663
664#if 0
665 if (max == 0) ufvalue += 0.5; /* if max = 0 we must round */
666#endif
Damien Miller168e6ac2000-07-11 12:23:01 +1000667
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000668 /*
Damien Miller57f39152005-11-24 19:58:19 +1100669 * Sorry, we only support 16 digits past the decimal because of our
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000670 * conversion method
671 */
Damien Miller57f39152005-11-24 19:58:19 +1100672 if (max > 16)
673 max = 16;
Damien Miller168e6ac2000-07-11 12:23:01 +1000674
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000675 /* We "cheat" by converting the fractional part to integer by
676 * multiplying by a factor of 10
677 */
Damien Miller168e6ac2000-07-11 12:23:01 +1000678
Damien Miller57f39152005-11-24 19:58:19 +1100679 temp = ufvalue;
680 my_modf(temp, &intpart);
681
682 fracpart = ROUND((POW10(max)) * (ufvalue - intpart));
683
684 if (fracpart >= POW10(max)) {
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000685 intpart++;
Damien Miller57f39152005-11-24 19:58:19 +1100686 fracpart -= POW10(max);
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000687 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000688
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000689 /* Convert integer part */
690 do {
Damien Miller57f39152005-11-24 19:58:19 +1100691 temp = intpart*0.1;
692 my_modf(temp, &intpart);
693 idx = (int) ((temp -intpart +0.05)* 10.0);
694 /* idx = (int) (((double)(temp*0.1) -intpart +0.05) *10.0); */
695 /* printf ("%llf, %f, %x\n", temp, intpart, idx); */
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000696 iconvert[iplace++] =
Damien Miller57f39152005-11-24 19:58:19 +1100697 (caps? "0123456789ABCDEF":"0123456789abcdef")[idx];
698 } while (intpart && (iplace < 311));
699 if (iplace == 311) iplace--;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000700 iconvert[iplace] = 0;
Damien Miller168e6ac2000-07-11 12:23:01 +1000701
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000702 /* Convert fractional part */
Damien Miller57f39152005-11-24 19:58:19 +1100703 if (fracpart)
704 {
705 do {
706 temp = fracpart*0.1;
707 my_modf(temp, &fracpart);
708 idx = (int) ((temp -fracpart +0.05)* 10.0);
709 /* idx = (int) ((((temp/10) -fracpart) +0.05) *10); */
710 /* printf ("%lf, %lf, %ld\n", temp, fracpart, idx ); */
711 fconvert[fplace++] =
712 (caps? "0123456789ABCDEF":"0123456789abcdef")[idx];
713 } while(fracpart && (fplace < 311));
714 if (fplace == 311) fplace--;
715 }
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000716 fconvert[fplace] = 0;
Damien Miller57f39152005-11-24 19:58:19 +1100717
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000718 /* -1 for decimal point, another -1 if we are printing a sign */
719 padlen = min - iplace - max - 1 - ((signvalue) ? 1 : 0);
720 zpadlen = max - fplace;
Damien Miller57f39152005-11-24 19:58:19 +1100721 if (zpadlen < 0) zpadlen = 0;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000722 if (padlen < 0)
723 padlen = 0;
724 if (flags & DP_F_MINUS)
725 padlen = -padlen; /* Left Justifty */
Damien Miller57f39152005-11-24 19:58:19 +1100726
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000727 if ((flags & DP_F_ZERO) && (padlen > 0)) {
728 if (signvalue) {
Damien Miller57f39152005-11-24 19:58:19 +1100729 dopr_outch (buffer, currlen, maxlen, signvalue);
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000730 --padlen;
731 signvalue = 0;
732 }
733 while (padlen > 0) {
Damien Miller57f39152005-11-24 19:58:19 +1100734 dopr_outch (buffer, currlen, maxlen, '0');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000735 --padlen;
736 }
737 }
738 while (padlen > 0) {
Damien Miller57f39152005-11-24 19:58:19 +1100739 dopr_outch (buffer, currlen, maxlen, ' ');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000740 --padlen;
741 }
742 if (signvalue)
Damien Miller57f39152005-11-24 19:58:19 +1100743 dopr_outch (buffer, currlen, maxlen, signvalue);
744
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000745 while (iplace > 0)
Damien Miller57f39152005-11-24 19:58:19 +1100746 dopr_outch (buffer, currlen, maxlen, iconvert[--iplace]);
747
748#ifdef DEBUG_SNPRINTF
749 printf("fmtfp: fplace=%d zpadlen=%d\n", fplace, zpadlen);
750#endif
Damien Miller168e6ac2000-07-11 12:23:01 +1000751
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000752 /*
Damien Miller57f39152005-11-24 19:58:19 +1100753 * Decimal point. This should probably use locale to find the correct
754 * char to print out.
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000755 */
Damien Miller57f39152005-11-24 19:58:19 +1100756 if (max > 0) {
757 dopr_outch (buffer, currlen, maxlen, '.');
758
759 while (zpadlen > 0) {
760 dopr_outch (buffer, currlen, maxlen, '0');
761 --zpadlen;
762 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000763
Damien Miller57f39152005-11-24 19:58:19 +1100764 while (fplace > 0)
765 dopr_outch (buffer, currlen, maxlen, fconvert[--fplace]);
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000766 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000767
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000768 while (padlen < 0) {
Damien Miller57f39152005-11-24 19:58:19 +1100769 dopr_outch (buffer, currlen, maxlen, ' ');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000770 ++padlen;
771 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000772}
773
Damien Miller57f39152005-11-24 19:58:19 +1100774static void dopr_outch(char *buffer, size_t *currlen, size_t maxlen, char c)
Damien Miller168e6ac2000-07-11 12:23:01 +1000775{
Damien Miller57f39152005-11-24 19:58:19 +1100776 if (*currlen < maxlen) {
777 buffer[(*currlen)] = c;
778 }
779 (*currlen)++;
Damien Miller168e6ac2000-07-11 12:23:01 +1000780}
781#endif /* !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF) */
782
Damien Miller57f39152005-11-24 19:58:19 +1100783#if !defined(HAVE_VSNPRINTF)
784int vsnprintf (char *str, size_t count, const char *fmt, va_list args)
Damien Miller168e6ac2000-07-11 12:23:01 +1000785{
Damien Miller57f39152005-11-24 19:58:19 +1100786 return dopr(str, count, fmt, args);
Damien Miller168e6ac2000-07-11 12:23:01 +1000787}
Damien Miller57f39152005-11-24 19:58:19 +1100788#endif
Damien Miller168e6ac2000-07-11 12:23:01 +1000789
Damien Miller57f39152005-11-24 19:58:19 +1100790#if !defined(HAVE_SNPRINTF)
Darren Tuckerd40c66c2005-12-17 22:32:03 +1100791int snprintf(char *str, size_t count, SNPRINTF_CONST char *fmt, ...)
Damien Millerc6b3bbe1999-12-13 08:27:33 +1100792{
Damien Miller57f39152005-11-24 19:58:19 +1100793 size_t ret;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000794 va_list ap;
795
796 va_start(ap, fmt);
Damien Miller57f39152005-11-24 19:58:19 +1100797 ret = vsnprintf(str, count, fmt, ap);
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000798 va_end(ap);
Damien Miller57f39152005-11-24 19:58:19 +1100799 return ret;
Damien Millerc6b3bbe1999-12-13 08:27:33 +1100800}
Damien Miller57f39152005-11-24 19:58:19 +1100801#endif
Damien Millerc6b3bbe1999-12-13 08:27:33 +1100802