2 * NOTE: If you change this file, please merge it into rsync, samba, etc.
6 * Copyright Patrick Powell 1995
7 * This code is based on code written by Patrick Powell (papowell@astart.com)
8 * It may be used for any purpose as long as this notice remains intact
9 * on all source code distributions
12 /**************************************************************
14 * Patrick Powell Tue Apr 11 09:48:21 PDT 1995
15 * A bombproof version of doprnt (dopr) included.
16 * Sigh. This sort of thing is always nasty do deal with. Note that
17 * the version here does not include floating point...
19 * snprintf() is used instead of sprintf() as it does limit checks
20 * for string length. This covers a nasty loophole.
22 * The other functions are there to prevent NULL pointers from
23 * causing nast effects.
26 * Brandon Long <blong@fiction.net> 9/15/96 for mutt 0.43
27 * This was ugly. It is still ugly. I opted out of floating point
28 * numbers, but the formatter understands just about everything
29 * from the normal C string format, at least as far as I can tell from
30 * the Solaris 2.5 printf(3S) man page.
32 * Brandon Long <blong@fiction.net> 10/22/97 for mutt 0.87.1
33 * Ok, added some minimal floating point support, which means this
34 * probably requires libm on most operating systems. Don't yet
35 * support the exponent (e,E) and sigfig (g,G). Also, fmtint()
36 * was pretty badly broken, it just wasn't being exercised in ways
37 * which showed it, so that's been fixed. Also, formated the code
38 * to mutt conventions, and removed dead code left over from the
39 * original. Also, there is now a builtin-test, just compile with:
40 * gcc -DTEST_SNPRINTF -o snprintf snprintf.c -lm
41 * and run snprintf for results.
43 * Thomas Roessler <roessler@guug.de> 01/27/98 for mutt 0.89i
44 * The PGP code was using unsigned hexadecimal formats.
45 * Unfortunately, unsigned formats simply didn't work.
47 * Michael Elkins <me@cs.hmc.edu> 03/05/98 for mutt 0.90.8
48 * The original code assumed that both snprintf() and vsnprintf() were
49 * missing. Some systems only have snprintf() but not vsnprintf(), so
50 * the code is now broken down under HAVE_SNPRINTF and HAVE_VSNPRINTF.
52 * Andrew Tridgell (tridge@samba.org) Oct 1998
53 * fixed handling of %.0f
54 * added test for HAVE_LONG_DOUBLE
56 * tridge@samba.org, idra@samba.org, April 2001
57 * got rid of fcvt code (twas buggy and made testing harder)
60 * date: 2002/12/19 19:56:31; author: herb; state: Exp; lines: +2 -0
61 * actually print args for %g and %e
63 * date: 2002/06/03 13:37:52; author: jmcd; state: Exp; lines: +8 -0
64 * Since includes.h isn't included here, VA_COPY has to be defined here. I don't
65 * see any include file that is guaranteed to be here, so I'm defining it
66 * locally. Fixes AIX and Solaris builds.
68 * date: 2002/06/03 03:07:24; author: tridge; state: Exp; lines: +5 -13
69 * put the ifdef for HAVE_VA_COPY in one place rather than in lots of
72 * date: 2002/05/17 14:51:22; author: jmcd; state: Exp; lines: +21 -4
73 * Fix usage of va_list passed as an arg. Use __va_copy before using it
76 * date: 2002/04/16 22:38:04; author: idra; state: Exp; lines: +20 -14
77 * Fix incorrect zpadlen handling in fmtfp.
78 * Thanks to Ollie Oldham <ollie.oldham@metro-optix.com> for spotting it.
79 * few mods to make it easier to compile the tests.
80 * addedd the "Ollie" test to the floating point ones.
82 * Martin Pool (mbp@samba.org) April 2003
83 * Remove NO_CONFIG_H so that the test case can be built within a source
84 * tree with less trouble.
85 * Remove unnecessary SAFE_FREE() definition.
87 * Martin Pool (mbp@samba.org) May 2003
88 * Put in a prototype for dummy_snprintf() to quiet compiler warnings.
90 * Move #endif to make sure VA_COPY, LDOUBLE, etc are defined even
91 * if the C library has some snprintf functions already.
93 * Darren Tucker (dtucker@zip.com.au) 2005
94 * Fix bug allowing read overruns of the source string with "%.*s"
95 * Usually harmless unless the read runs outside the process' allocation
96 * (eg if your malloc does guard pages) in which case it will segfault.
97 * From OpenSSH. Also added test for same.
99 * Simo Sorce (idra@samba.org) Jan 2006
101 * Add support for position independent parameters
102 * fix fmtstr now it conforms to sprintf wrt min.max
104 **************************************************************/
112 #ifdef TEST_SNPRINTF /* need math library headers for testing */
114 /* In test mode, we pretend that this system doesn't have any snprintf
115 * functions, regardless of what config.h says. */
116 # undef HAVE_SNPRINTF
117 # undef HAVE_VSNPRINTF
118 # undef HAVE_C99_VSNPRINTF
119 # undef HAVE_ASPRINTF
120 # undef HAVE_VASPRINTF
122 #endif /* TEST_SNPRINTF */
128 #ifdef HAVE_STRINGS_H
134 #include <sys/types.h>
140 #if defined(HAVE_SNPRINTF) && defined(HAVE_VSNPRINTF) && defined(HAVE_C99_VSNPRINTF)
141 /* only include stdio.h if we are not re-defining snprintf or vsnprintf */
143 /* make the compiler happy with an empty file */
144 void dummy_snprintf(void);
145 void dummy_snprintf(void) {}
146 #endif /* HAVE_SNPRINTF, etc */
148 /* yes this really must be a ||. Don't muck with this (tridge) */
149 #if !defined(HAVE_VSNPRINTF) || !defined(HAVE_C99_VSNPRINTF)
151 #ifdef HAVE_LONG_DOUBLE
152 #define LDOUBLE long double
154 #define LDOUBLE double
157 #ifdef HAVE_LONG_LONG
158 #define LLONG long long
165 #define VA_COPY(dest, src) va_copy(dest, src)
167 #ifdef HAVE___VA_COPY
168 #define VA_COPY(dest, src) __va_copy(dest, src)
170 #define VA_COPY(dest, src) (dest) = (src)
175 * dopr(): poor man's version of doprintf
178 /* format read states */
179 #define DP_S_DEFAULT 0
188 /* format flags - Bits */
189 #define DP_F_MINUS (1 << 0)
190 #define DP_F_PLUS (1 << 1)
191 #define DP_F_SPACE (1 << 2)
192 #define DP_F_NUM (1 << 3)
193 #define DP_F_ZERO (1 << 4)
194 #define DP_F_UP (1 << 5)
195 #define DP_F_UNSIGNED (1 << 6)
197 /* Conversion Flags */
201 #define DP_C_LDOUBLE 4
205 #define CNK_FMT_STR 0
217 #define char_to_int(p) ((p)- '0')
219 #define MAX(p,q) (((p) >= (q)) ? (p) : (q))
223 int type
; /* chunk type */
224 int num
; /* parameter number */
235 struct pr_chunk
*min_star
;
236 struct pr_chunk
*max_star
;
237 struct pr_chunk
*next
;
241 struct pr_chunk
**chunks
;
245 static size_t dopr(char *buffer
, size_t maxlen
, const char *format
,
247 static void fmtstr(char *buffer
, size_t *currlen
, size_t maxlen
,
248 char *value
, int flags
, int min
, int max
);
249 static void fmtint(char *buffer
, size_t *currlen
, size_t maxlen
,
250 LLONG value
, int base
, int min
, int max
, int flags
);
251 static void fmtfp(char *buffer
, size_t *currlen
, size_t maxlen
,
252 LDOUBLE fvalue
, int min
, int max
, int flags
);
253 static void dopr_outch(char *buffer
, size_t *currlen
, size_t maxlen
, char c
);
254 static struct pr_chunk
*new_chunk(void);
255 static int add_cnk_list_entry(struct pr_chunk_x
**list
,
256 int max_num
, struct pr_chunk
*chunk
);
258 static size_t dopr(char *buffer
, size_t maxlen
, const char *format
, va_list args_in
)
268 struct pr_chunk
*chunks
= NULL
;
269 struct pr_chunk
*cnk
= NULL
;
270 struct pr_chunk_x
*clist
= NULL
;
274 VA_COPY(args
, args_in
);
276 state
= DP_S_DEFAULT
;
285 /* retrieve the string structure as chunks */
286 while (state
!= DP_S_DONE
) {
294 cnk
->next
= new_chunk();
300 if (!chunks
) chunks
= cnk
;
306 cnk
->type
= CNK_FMT_STR
;
307 cnk
->start
= format
- base
-1;
308 while ((ch
!= '\0') && (ch
!= '%')) ch
= *format
++;
309 cnk
->len
= format
- base
- cnk
->start
-1;
315 cnk
->flags
|= DP_F_MINUS
;
319 cnk
->flags
|= DP_F_PLUS
;
323 cnk
->flags
|= DP_F_SPACE
;
327 cnk
->flags
|= DP_F_NUM
;
331 cnk
->flags
|= DP_F_ZERO
;
335 /* internationalization not supported yet */
344 if (isdigit((unsigned char)ch
)) {
345 cnk
->min
= 10 * cnk
->min
+ char_to_int (ch
);
347 } else if (ch
== '$') {
348 if (!pfirst
&& !pflag
) {
349 /* parameters must be all positioned or none */
356 if (cnk
->min
== 0) /* what ?? */
361 } else if (ch
== '*') {
362 if (pfirst
) pfirst
= 0;
363 cnk
->min_star
= new_chunk();
364 if (!cnk
->min_star
) /* out of memory :-( */
366 cnk
->min_star
->type
= CNK_INT
;
370 if (!isdigit((unsigned char)ch
)) {
371 /* parameters must be all positioned or none */
374 for (num
= 0; isdigit((unsigned char)ch
); ch
= *format
++) {
375 num
= 10 * num
+ char_to_int(ch
);
377 cnk
->min_star
->num
= num
;
378 if (ch
!= '$') /* what ?? */
381 cnk
->min_star
->num
= ++pnum
;
383 max_pos
= add_cnk_list_entry(&clist
, max_pos
, cnk
->min_star
);
384 if (max_pos
== 0) /* out of memory :-( */
389 if (pfirst
) pfirst
= 0;
402 if (isdigit((unsigned char)ch
)) {
405 cnk
->max
= 10 * cnk
->max
+ char_to_int (ch
);
407 } else if (ch
== '$') {
408 if (!pfirst
&& !pflag
) {
409 /* parameters must be all positioned or none */
412 if (cnk
->max
<= 0) /* what ?? */
417 } else if (ch
== '*') {
418 cnk
->max_star
= new_chunk();
419 if (!cnk
->max_star
) /* out of memory :-( */
421 cnk
->max_star
->type
= CNK_INT
;
425 if (!isdigit((unsigned char)ch
)) {
426 /* parameters must be all positioned or none */
429 for (num
= 0; isdigit((unsigned char)ch
); ch
= *format
++) {
430 num
= 10 * num
+ char_to_int(ch
);
432 cnk
->max_star
->num
= num
;
433 if (ch
!= '$') /* what ?? */
436 cnk
->max_star
->num
= ++pnum
;
438 max_pos
= add_cnk_list_entry(&clist
, max_pos
, cnk
->max_star
);
439 if (max_pos
== 0) /* out of memory :-( */
451 cnk
->cflags
= DP_C_SHORT
;
454 cnk
->cflags
= DP_C_CHAR
;
459 cnk
->cflags
= DP_C_LONG
;
461 if (ch
== 'l') { /* It's a long long */
462 cnk
->cflags
= DP_C_LLONG
;
467 cnk
->cflags
= DP_C_LDOUBLE
;
476 if (cnk
->num
== 0) cnk
->num
= ++pnum
;
477 max_pos
= add_cnk_list_entry(&clist
, max_pos
, cnk
);
478 if (max_pos
== 0) /* out of memory :-( */
487 cnk
->type
= CNK_OCTAL
;
488 cnk
->flags
|= DP_F_UNSIGNED
;
491 cnk
->type
= CNK_UINT
;
492 cnk
->flags
|= DP_F_UNSIGNED
;
495 cnk
->flags
|= DP_F_UP
;
498 cnk
->flags
|= DP_F_UNSIGNED
;
501 /* hex float not supported yet */
505 cnk
->flags
|= DP_F_UP
;
507 /* hex float not supported yet */
511 cnk
->type
= CNK_FLOAT
;
514 cnk
->type
= CNK_CHAR
;
517 cnk
->type
= CNK_STRING
;
526 cnk
->type
= CNK_PRCNT
;
529 /* Unknown, bail out*/
533 state
= DP_S_DEFAULT
;
539 break; /* some picky compilers need this */
543 /* retieve the format arguments */
544 for (pnum
= 0; pnum
< max_pos
; pnum
++) {
547 if (clist
[pnum
].num
== 0) {
548 /* ignoring a parameter should not be permitted
549 * all parameters must be matched at least once
550 * BUT seem some system ignore this rule ...
551 * at least my glibc based system does --SSS
553 #ifdef DEBUG_SNPRINTF
554 printf("parameter at position %d not used\n", pnum
+1);
556 /* eat the parameter */
560 for (i
= 1; i
< clist
[pnum
].num
; i
++) {
561 if (clist
[pnum
].chunks
[0]->type
!= clist
[pnum
].chunks
[i
]->type
) {
563 * all the references to a parameter
564 * must be of the same type
569 cnk
= clist
[pnum
].chunks
[0];
572 if (cnk
->cflags
== DP_C_SHORT
)
573 cnk
->value
= va_arg (args
, int);
574 else if (cnk
->cflags
== DP_C_LONG
)
575 cnk
->value
= va_arg (args
, long int);
576 else if (cnk
->cflags
== DP_C_LLONG
)
577 cnk
->value
= va_arg (args
, LLONG
);
579 cnk
->value
= va_arg (args
, int);
581 for (i
= 1; i
< clist
[pnum
].num
; i
++) {
582 clist
[pnum
].chunks
[i
]->value
= cnk
->value
;
589 if (cnk
->cflags
== DP_C_SHORT
)
590 cnk
->value
= va_arg (args
, unsigned int);
591 else if (cnk
->cflags
== DP_C_LONG
)
592 cnk
->value
= (unsigned long int)va_arg (args
, unsigned long int);
593 else if (cnk
->cflags
== DP_C_LLONG
)
594 cnk
->value
= (LLONG
)va_arg (args
, unsigned LLONG
);
596 cnk
->value
= (unsigned int)va_arg (args
, unsigned int);
598 for (i
= 1; i
< clist
[pnum
].num
; i
++) {
599 clist
[pnum
].chunks
[i
]->value
= cnk
->value
;
604 if (cnk
->cflags
== DP_C_LDOUBLE
)
605 cnk
->fvalue
= va_arg (args
, LDOUBLE
);
607 cnk
->fvalue
= va_arg (args
, double);
609 for (i
= 1; i
< clist
[pnum
].num
; i
++) {
610 clist
[pnum
].chunks
[i
]->fvalue
= cnk
->fvalue
;
615 cnk
->value
= va_arg (args
, int);
617 for (i
= 1; i
< clist
[pnum
].num
; i
++) {
618 clist
[pnum
].chunks
[i
]->value
= cnk
->value
;
623 cnk
->strvalue
= va_arg (args
, char *);
624 if (!cnk
->strvalue
) cnk
->strvalue
= "(NULL)";
626 for (i
= 1; i
< clist
[pnum
].num
; i
++) {
627 clist
[pnum
].chunks
[i
]->strvalue
= cnk
->strvalue
;
632 cnk
->strvalue
= va_arg (args
, void *);
633 for (i
= 1; i
< clist
[pnum
].num
; i
++) {
634 clist
[pnum
].chunks
[i
]->strvalue
= cnk
->strvalue
;
639 if (cnk
->cflags
== DP_C_CHAR
)
640 cnk
->pnum
= va_arg (args
, char *);
641 else if (cnk
->cflags
== DP_C_SHORT
)
642 cnk
->pnum
= va_arg (args
, short int *);
643 else if (cnk
->cflags
== DP_C_LONG
)
644 cnk
->pnum
= va_arg (args
, long int *);
645 else if (cnk
->cflags
== DP_C_LLONG
)
646 cnk
->pnum
= va_arg (args
, LLONG
*);
648 cnk
->pnum
= va_arg (args
, int *);
650 for (i
= 1; i
< clist
[pnum
].num
; i
++) {
651 clist
[pnum
].chunks
[i
]->pnum
= cnk
->pnum
;
663 /* print out the actual string from chunks */
669 if (cnk
->min_star
) min
= cnk
->min_star
->value
;
671 if (cnk
->max_star
) max
= cnk
->max_star
->value
;
677 if (maxlen
!= 0 && maxlen
> currlen
) {
678 if (maxlen
> (currlen
+ cnk
->len
)) len
= cnk
->len
;
679 else len
= maxlen
- currlen
;
681 memcpy(&(buffer
[currlen
]), &(base
[cnk
->start
]), len
);
689 fmtint (buffer
, &currlen
, maxlen
, cnk
->value
, 10, min
, max
, cnk
->flags
);
693 fmtint (buffer
, &currlen
, maxlen
, cnk
->value
, 8, min
, max
, cnk
->flags
);
697 fmtint (buffer
, &currlen
, maxlen
, cnk
->value
, 16, min
, max
, cnk
->flags
);
701 fmtfp (buffer
, &currlen
, maxlen
, cnk
->fvalue
, min
, max
, cnk
->flags
);
705 dopr_outch (buffer
, &currlen
, maxlen
, cnk
->value
);
710 max
= strlen(cnk
->strvalue
);
712 fmtstr (buffer
, &currlen
, maxlen
, cnk
->strvalue
, cnk
->flags
, min
, max
);
716 fmtint (buffer
, &currlen
, maxlen
, (long)(cnk
->strvalue
), 16, min
, max
, cnk
->flags
);
720 if (cnk
->cflags
== DP_C_CHAR
)
721 *((char *)(cnk
->pnum
)) = (char)currlen
;
722 else if (cnk
->cflags
== DP_C_SHORT
)
723 *((short int *)(cnk
->pnum
)) = (short int)currlen
;
724 else if (cnk
->cflags
== DP_C_LONG
)
725 *((long int *)(cnk
->pnum
)) = (long int)currlen
;
726 else if (cnk
->cflags
== DP_C_LLONG
)
727 *((LLONG
*)(cnk
->pnum
)) = (LLONG
)currlen
;
729 *((int *)(cnk
->pnum
)) = (int)currlen
;
733 dopr_outch (buffer
, &currlen
, maxlen
, '%');
743 if (currlen
< maxlen
- 1)
744 buffer
[currlen
] = '\0';
746 buffer
[maxlen
- 1] = '\0';
757 for (pnum
= 0; pnum
< max_pos
; pnum
++) {
758 if (clist
[pnum
].chunks
) free(clist
[pnum
].chunks
);
765 static void fmtstr(char *buffer
, size_t *currlen
, size_t maxlen
,
766 char *value
, int flags
, int min
, int max
)
768 int padlen
, strln
; /* amount to pad */
771 #ifdef DEBUG_SNPRINTF
772 printf("fmtstr min=%d max=%d s=[%s]\n", min
, max
, value
);
778 for (strln
= 0; strln
< max
&& value
[strln
]; ++strln
); /* strlen */
779 padlen
= min
- strln
;
782 if (flags
& DP_F_MINUS
)
783 padlen
= -padlen
; /* Left Justify */
786 dopr_outch (buffer
, currlen
, maxlen
, ' ');
789 while (*value
&& (cnt
< max
)) {
790 dopr_outch (buffer
, currlen
, maxlen
, *value
++);
794 dopr_outch (buffer
, currlen
, maxlen
, ' ');
799 /* Have to handle DP_F_NUM (ie 0x and 0 alternates) */
801 static void fmtint(char *buffer
, size_t *currlen
, size_t maxlen
,
802 LLONG value
, int base
, int min
, int max
, int flags
)
805 unsigned LLONG uvalue
;
808 int spadlen
= 0; /* amount to space pad */
809 int zpadlen
= 0; /* amount to zero pad */
817 if(!(flags
& DP_F_UNSIGNED
)) {
822 if (flags
& DP_F_PLUS
) /* Do a sign (+/i) */
824 else if (flags
& DP_F_SPACE
)
829 if (flags
& DP_F_UP
) caps
= 1; /* Should characters be upper case? */
833 (caps
? "0123456789ABCDEF":"0123456789abcdef")
834 [uvalue
% (unsigned)base
];
835 uvalue
= (uvalue
/ (unsigned)base
);
836 } while(uvalue
&& (place
< 20));
837 if (place
== 20) place
--;
840 zpadlen
= max
- place
;
841 spadlen
= min
- MAX (max
, place
) - (signvalue
? 1 : 0);
842 if (zpadlen
< 0) zpadlen
= 0;
843 if (spadlen
< 0) spadlen
= 0;
844 if (flags
& DP_F_ZERO
) {
845 zpadlen
= MAX(zpadlen
, spadlen
);
848 if (flags
& DP_F_MINUS
)
849 spadlen
= -spadlen
; /* Left Justifty */
851 #ifdef DEBUG_SNPRINTF
852 printf("zpad: %d, spad: %d, min: %d, max: %d, place: %d\n",
853 zpadlen
, spadlen
, min
, max
, place
);
857 while (spadlen
> 0) {
858 dopr_outch (buffer
, currlen
, maxlen
, ' ');
864 dopr_outch (buffer
, currlen
, maxlen
, signvalue
);
868 while (zpadlen
> 0) {
869 dopr_outch (buffer
, currlen
, maxlen
, '0');
876 dopr_outch (buffer
, currlen
, maxlen
, convert
[--place
]);
878 /* Left Justified spaces */
879 while (spadlen
< 0) {
880 dopr_outch (buffer
, currlen
, maxlen
, ' ');
885 static LDOUBLE
abs_val(LDOUBLE value
)
887 LDOUBLE result
= value
;
895 static LDOUBLE
POW10(int exp
)
907 static LLONG
ROUND(LDOUBLE value
)
911 intpart
= (LLONG
)value
;
912 value
= value
- intpart
;
913 if (value
>= 0.5) intpart
++;
918 /* a replacement for modf that doesn't need the math library. Should
919 be portable, but slow */
920 static double my_modf(double x0
, double *iptr
)
927 for (i
=0;i
<100;i
++) {
929 if (l
<= (x
+1) && l
>= (x
-1)) break;
935 /* yikes! the number is beyond what we can handle. What do we do? */
944 ret
= my_modf(x0
-l
*f
, &i2
);
954 static void fmtfp (char *buffer
, size_t *currlen
, size_t maxlen
,
955 LDOUBLE fvalue
, int min
, int max
, int flags
)
963 int padlen
= 0; /* amount to pad */
972 * AIX manpage says the default is 0, but Solaris says the default
973 * is 6, and sprintf on AIX defaults to 6
978 ufvalue
= abs_val (fvalue
);
983 if (flags
& DP_F_PLUS
) { /* Do a sign (+/i) */
986 if (flags
& DP_F_SPACE
)
992 if (flags
& DP_F_UP
) caps
= 1; /* Should characters be upper case? */
996 if (max
== 0) ufvalue
+= 0.5; /* if max = 0 we must round */
1000 * Sorry, we only support 9 digits past the decimal because of our
1006 /* We "cheat" by converting the fractional part to integer by
1007 * multiplying by a factor of 10
1011 my_modf(temp
, &intpart
);
1013 fracpart
= ROUND((POW10(max
)) * (ufvalue
- intpart
));
1015 if (fracpart
>= POW10(max
)) {
1017 fracpart
-= POW10(max
);
1021 /* Convert integer part */
1024 my_modf(temp
, &intpart
);
1025 idx
= (int) ((temp
-intpart
+0.05)* 10.0);
1026 /* idx = (int) (((double)(temp*0.1) -intpart +0.05) *10.0); */
1027 /* printf ("%llf, %f, %x\n", temp, intpart, idx); */
1028 iconvert
[iplace
++] =
1029 (caps
? "0123456789ABCDEF":"0123456789abcdef")[idx
];
1030 } while (intpart
&& (iplace
< 311));
1031 if (iplace
== 311) iplace
--;
1032 iconvert
[iplace
] = 0;
1034 /* Convert fractional part */
1038 temp
= fracpart
*0.1;
1039 my_modf(temp
, &fracpart
);
1040 idx
= (int) ((temp
-fracpart
+0.05)* 10.0);
1041 /* idx = (int) ((((temp/10) -fracpart) +0.05) *10); */
1042 /* printf ("%lf, %lf, %ld\n", temp, fracpart, idx ); */
1043 fconvert
[fplace
++] =
1044 (caps
? "0123456789ABCDEF":"0123456789abcdef")[idx
];
1045 } while(fracpart
&& (fplace
< 311));
1046 if (fplace
== 311) fplace
--;
1048 fconvert
[fplace
] = 0;
1050 /* -1 for decimal point, another -1 if we are printing a sign */
1051 padlen
= min
- iplace
- max
- 1 - ((signvalue
) ? 1 : 0);
1052 zpadlen
= max
- fplace
;
1053 if (zpadlen
< 0) zpadlen
= 0;
1056 if (flags
& DP_F_MINUS
)
1057 padlen
= -padlen
; /* Left Justifty */
1059 if ((flags
& DP_F_ZERO
) && (padlen
> 0)) {
1061 dopr_outch (buffer
, currlen
, maxlen
, signvalue
);
1065 while (padlen
> 0) {
1066 dopr_outch (buffer
, currlen
, maxlen
, '0');
1070 while (padlen
> 0) {
1071 dopr_outch (buffer
, currlen
, maxlen
, ' ');
1075 dopr_outch (buffer
, currlen
, maxlen
, signvalue
);
1078 dopr_outch (buffer
, currlen
, maxlen
, iconvert
[--iplace
]);
1080 #ifdef DEBUG_SNPRINTF
1081 printf("fmtfp: fplace=%d zpadlen=%d\n", fplace
, zpadlen
);
1085 * Decimal point. This should probably use locale to find the correct
1086 * char to print out.
1089 dopr_outch (buffer
, currlen
, maxlen
, '.');
1091 while (zpadlen
> 0) {
1092 dopr_outch (buffer
, currlen
, maxlen
, '0');
1097 dopr_outch (buffer
, currlen
, maxlen
, fconvert
[--fplace
]);
1100 while (padlen
< 0) {
1101 dopr_outch (buffer
, currlen
, maxlen
, ' ');
1106 static void dopr_outch(char *buffer
, size_t *currlen
, size_t maxlen
, char c
)
1108 if (*currlen
< maxlen
) {
1109 buffer
[(*currlen
)] = c
;
1114 static struct pr_chunk
*new_chunk(void) {
1115 struct pr_chunk
*new_c
= (struct pr_chunk
*)malloc(sizeof(struct pr_chunk
));
1123 new_c
->min_star
= NULL
;
1125 new_c
->max_star
= NULL
;
1132 new_c
->strvalue
= NULL
;
1139 static int add_cnk_list_entry(struct pr_chunk_x
**list
,
1140 int max_num
, struct pr_chunk
*chunk
) {
1141 struct pr_chunk_x
*l
;
1142 struct pr_chunk
**c
;
1147 if (chunk
->num
> max_num
) {
1150 if (*list
== NULL
) {
1151 l
= (struct pr_chunk_x
*)malloc(sizeof(struct pr_chunk_x
) * max
);
1154 l
= (struct pr_chunk_x
*)realloc(*list
, sizeof(struct pr_chunk_x
) * max
);
1158 for (i
= 0; i
< max
; i
++) {
1159 if ((*list
)[i
].chunks
) free((*list
)[i
].chunks
);
1163 for (i
= pos
; i
< max
; i
++) {
1173 cnum
= l
[i
].num
+ 1;
1174 if (l
[i
].chunks
== NULL
) {
1175 c
= (struct pr_chunk
**)malloc(sizeof(struct pr_chunk
*) * cnum
);
1177 c
= (struct pr_chunk
**)realloc(l
[i
].chunks
, sizeof(struct pr_chunk
*) * cnum
);
1180 for (i
= 0; i
< max
; i
++) {
1181 if (l
[i
].chunks
) free(l
[i
].chunks
);
1185 c
[l
[i
].num
] = chunk
;
1193 int vsnprintf (char *str
, size_t count
, const char *fmt
, va_list args
)
1195 return dopr(str
, count
, fmt
, args
);
1199 /* yes this really must be a ||. Don't muck with this (tridge)
1201 * The logic for these two is that we need our own definition if the
1202 * OS *either* has no definition of *sprintf, or if it does have one
1203 * that doesn't work properly according to the autoconf test.
1205 #if !defined(HAVE_SNPRINTF) || !defined(HAVE_C99_VSNPRINTF)
1206 int snprintf(char *str
,size_t count
,const char *fmt
,...)
1212 ret
= vsnprintf(str
, count
, fmt
, ap
);
1220 #ifndef HAVE_VASPRINTF
1221 int vasprintf(char **ptr
, const char *format
, va_list ap
)
1228 ret
= vsnprintf(NULL
, 0, format
, ap2
);
1229 if (ret
<= 0) return ret
;
1231 (*ptr
) = (char *)malloc(ret
+1);
1232 if (!*ptr
) return -1;
1236 ret
= vsnprintf(*ptr
, ret
+1, format
, ap2
);
1243 #ifndef HAVE_ASPRINTF
1244 int asprintf(char **ptr
, const char *format
, ...)
1250 va_start(ap
, format
);
1251 ret
= vasprintf(ptr
, format
, ap
);
1258 #ifdef TEST_SNPRINTF
1260 int sprintf(char *str
,const char *fmt
,...);
1286 double fp_nums
[] = { 6442452944.1234, -1.5, 134.21, 91340.2, 341.1234, 203.9, 0.96, 0.996,
1287 0.9996, 1.996, 4.136, 5.030201, 0.00205,
1302 long int_nums
[] = { -1, 134, 91340, 341, 0203, 1234567890, 0};
1318 char *str_vals
[] = {"hello", "a", "", "a longer string", NULL
};
1319 #ifdef HAVE_LONG_LONG
1324 LLONG ll_nums
[] = { 134, 91340, 341, 0203, 1234567890, 128006186140000000LL, 0};
1331 printf ("Testing snprintf format codes against system sprintf...\n");
1333 for (x
= 0; fp_fmt
[x
] ; x
++) {
1334 for (y
= 0; fp_nums
[y
] != 0 ; y
++) {
1335 buf1
[0] = buf2
[0] = '\0';
1336 l1
= snprintf(NULL
, 0, fp_fmt
[x
], fp_nums
[y
]);
1337 l2
= sprintf(buf1
, fp_fmt
[x
], fp_nums
[y
]);
1338 sprintf (buf2
, fp_fmt
[x
], fp_nums
[y
]);
1339 buf1
[1023] = buf2
[1023] = '\0';
1340 if (strcmp (buf1
, buf2
) || (l1
!= l2
)) {
1341 printf("snprintf doesn't match Format: %s\n\tsnprintf(%d) = [%s]\n\t sprintf(%d) = [%s]\n",
1342 fp_fmt
[x
], l1
, buf1
, l2
, buf2
);
1349 for (x
= 0; int_fmt
[x
] ; x
++) {
1350 for (y
= 0; int_nums
[y
] != 0 ; y
++) {
1351 buf1
[0] = buf2
[0] = '\0';
1352 l1
= snprintf(NULL
, 0, int_fmt
[x
], int_nums
[y
]);
1353 l2
= sprintf(buf1
, int_fmt
[x
], int_nums
[y
]);
1354 sprintf (buf2
, int_fmt
[x
], int_nums
[y
]);
1355 buf1
[1023] = buf2
[1023] = '\0';
1356 if (strcmp (buf1
, buf2
) || (l1
!= l2
)) {
1357 printf("snprintf doesn't match Format: %s\n\tsnprintf(%d) = [%s]\n\t sprintf(%d) = [%s]\n",
1358 int_fmt
[x
], l1
, buf1
, l2
, buf2
);
1365 for (x
= 0; str_fmt
[x
] ; x
++) {
1366 for (y
= 0; str_vals
[y
] != 0 ; y
++) {
1367 buf1
[0] = buf2
[0] = '\0';
1368 l1
= snprintf(NULL
, 0, str_fmt
[x
], str_vals
[y
]);
1369 l2
= sprintf(buf1
, str_fmt
[x
], str_vals
[y
]);
1370 sprintf (buf2
, str_fmt
[x
], str_vals
[y
]);
1371 buf1
[1023] = buf2
[1023] = '\0';
1372 if (strcmp (buf1
, buf2
) || (l1
!= l2
)) {
1373 printf("snprintf doesn't match Format: %s\n\tsnprintf(%d) = [%s]\n\t sprintf(%d) = [%s]\n",
1374 str_fmt
[x
], l1
, buf1
, l2
, buf2
);
1381 #ifdef HAVE_LONG_LONG
1382 for (x
= 0; ll_fmt
[x
] ; x
++) {
1383 for (y
= 0; ll_nums
[y
] != 0 ; y
++) {
1384 buf1
[0] = buf2
[0] = '\0';
1385 l1
= snprintf(NULL
, 0, ll_fmt
[x
], ll_nums
[y
]);
1386 l2
= sprintf(buf1
, ll_fmt
[x
], ll_nums
[y
]);
1387 sprintf (buf2
, ll_fmt
[x
], ll_nums
[y
]);
1388 buf1
[1023] = buf2
[1023] = '\0';
1389 if (strcmp (buf1
, buf2
) || (l1
!= l2
)) {
1390 printf("snprintf doesn't match Format: %s\n\tsnprintf(%d) = [%s]\n\t sprintf(%d) = [%s]\n",
1391 ll_fmt
[x
], l1
, buf1
, l2
, buf2
);
1401 buf1
[0] = buf2
[0] = '\0';
1402 if ((buf3
= malloc(BUFSZ
)) == NULL
) {
1406 memset(buf3
, 'a', BUFSZ
);
1407 snprintf(buf1
, sizeof(buf1
), "%.*s", 1, buf3
);
1409 if (strcmp(buf1
, "a") != 0) {
1410 printf("length limit buf1 '%s' expected 'a'\n", buf1
);
1415 buf1
[0] = buf2
[0] = '\0';
1416 l1
= snprintf(buf1
, sizeof(buf1
), "%4$*1$d %2$s %3$*1$.*1$f", 3, "pos test", 12.3456, 9);
1417 l2
= sprintf(buf2
, "%4$*1$d %2$s %3$*1$.*1$f", 3, "pos test", 12.3456, 9);
1418 buf1
[1023] = buf2
[1023] = '\0';
1419 if (strcmp(buf1
, buf2
) || (l1
!= l2
)) {
1420 printf("snprintf doesn't match Format: %s\n\tsnprintf(%d) = [%s]\n\t sprintf(%d) = [%s]\n",
1421 "%4$*1$d %2$s %3$*1$.*1$f", l1
, buf1
, l2
, buf2
);
1425 buf1
[0] = buf2
[0] = '\0';
1426 l1
= snprintf(buf1
, sizeof(buf1
), "%4$*4$d %2$s %3$*4$.*4$f", 3, "pos test", 12.3456, 9);
1427 l2
= sprintf(buf2
, "%4$*4$d %2$s %3$*4$.*4$f", 3, "pos test", 12.3456, 9);
1428 buf1
[1023] = buf2
[1023] = '\0';
1429 if (strcmp(buf1
, buf2
)) {
1430 printf("snprintf doesn't match Format: %s\n\tsnprintf(%d) = [%s]\n\t sprintf(%d) = [%s]\n",
1431 "%4$*1$d %2$s %3$*1$.*1$f", l1
, buf1
, l2
, buf2
);
1435 buf1
[0] = buf2
[0] = '\0';
1436 l1
= snprintf(buf1
, sizeof(buf1
), "%lld", (LLONG
)1234567890);
1437 l2
= sprintf(buf2
, "%lld", (LLONG
)1234567890);
1438 buf1
[1023] = buf2
[1023] = '\0';
1439 if (strcmp(buf1
, buf2
)) {
1440 printf("snprintf doesn't match Format: %s\n\tsnprintf(%d) = [%s]\n\t sprintf(%d) = [%s]\n",
1441 "%lld", l1
, buf1
, l2
, buf2
);
1445 buf1
[0] = buf2
[0] = '\0';
1446 l1
= snprintf(buf1
, sizeof(buf1
), "%Lf", (LDOUBLE
)890.1234567890123);
1447 l2
= sprintf(buf2
, "%Lf", (LDOUBLE
)890.1234567890123);
1448 buf1
[1023] = buf2
[1023] = '\0';
1449 if (strcmp(buf1
, buf2
)) {
1450 printf("snprintf doesn't match Format: %s\n\tsnprintf(%d) = [%s]\n\t sprintf(%d) = [%s]\n",
1451 "%Lf", l1
, buf1
, l2
, buf2
);
1455 printf ("%d tests failed out of %d.\n", fail
, num
);
1457 printf("seeing how many digits we support\n");
1459 double v0
= 0.12345678901234567890123456789012345678901;
1460 for (x
=0; x
<100; x
++) {
1461 double p
= pow(10, x
);
1463 snprintf(buf1
, sizeof(buf1
), "%1.1f", r
);
1464 sprintf(buf2
, "%1.1f", r
);
1465 if (strcmp(buf1
, buf2
)) {
1466 printf("we seem to support %d digits\n", x
-1);
1474 #endif /* TEST_SNPRINTF */