protect against long double type mismatches (mainly powerpc for now)
[musl] / src / stdio / vfprintf.c
1 #include "stdio_impl.h"
2 #include <errno.h>
3 #include <ctype.h>
4 #include <limits.h>
5 #include <string.h>
6 #include <stdarg.h>
7 #include <wchar.h>
8 #include <inttypes.h>
9 #include <math.h>
10 #include <float.h>
11
12 /* Some useful macros */
13
14 #define MAX(a,b) ((a)>(b) ? (a) : (b))
15 #define MIN(a,b) ((a)<(b) ? (a) : (b))
16 #define CONCAT2(x,y) x ## y
17 #define CONCAT(x,y) CONCAT2(x,y)
18
19 /* Convenient bit representation for modifier flags, which all fall
20  * within 31 codepoints of the space character. */
21
22 #define ALT_FORM   (1U<<'#'-' ')
23 #define ZERO_PAD   (1U<<'0'-' ')
24 #define LEFT_ADJ   (1U<<'-'-' ')
25 #define PAD_POS    (1U<<' '-' ')
26 #define MARK_POS   (1U<<'+'-' ')
27 #define GROUPED    (1U<<'\''-' ')
28
29 #define FLAGMASK (ALT_FORM|ZERO_PAD|LEFT_ADJ|PAD_POS|MARK_POS|GROUPED)
30
31 #if UINT_MAX == ULONG_MAX
32 #define LONG_IS_INT
33 #endif
34
35 #if SIZE_MAX != ULONG_MAX || UINTMAX_MAX != ULLONG_MAX
36 #define ODD_TYPES
37 #endif
38
39 /* State machine to accept length modifiers + conversion specifiers.
40  * Result is 0 on failure, or an argument type to pop on success. */
41
42 enum {
43         BARE, LPRE, LLPRE, HPRE, HHPRE, BIGLPRE,
44         ZTPRE, JPRE,
45         STOP,
46         PTR, INT, UINT, ULLONG,
47 #ifndef LONG_IS_INT
48         LONG, ULONG,
49 #else
50 #define LONG INT
51 #define ULONG UINT
52 #endif
53         SHORT, USHORT, CHAR, UCHAR,
54 #ifdef ODD_TYPES
55         LLONG, SIZET, IMAX, UMAX, PDIFF, UIPTR,
56 #else
57 #define LLONG ULLONG
58 #define SIZET ULONG
59 #define IMAX LLONG
60 #define UMAX ULLONG
61 #define PDIFF LONG
62 #define UIPTR ULONG
63 #endif
64         DBL, LDBL,
65         NOARG,
66         MAXSTATE
67 };
68
69 #define S(x) [(x)-'A']
70
71 static const unsigned char states[]['z'-'A'+1] = {
72         { /* 0: bare types */
73                 S('d') = INT, S('i') = INT,
74                 S('o') = UINT, S('u') = UINT, S('x') = UINT, S('X') = UINT,
75                 S('e') = DBL, S('f') = DBL, S('g') = DBL, S('a') = DBL,
76                 S('E') = DBL, S('F') = DBL, S('G') = DBL, S('A') = DBL,
77                 S('c') = CHAR, S('C') = INT,
78                 S('s') = PTR, S('S') = PTR, S('p') = UIPTR, S('n') = PTR,
79                 S('m') = NOARG,
80                 S('l') = LPRE, S('h') = HPRE, S('L') = BIGLPRE,
81                 S('z') = ZTPRE, S('j') = JPRE, S('t') = ZTPRE,
82         }, { /* 1: l-prefixed */
83                 S('d') = LONG, S('i') = LONG,
84                 S('o') = ULONG, S('u') = ULONG, S('x') = ULONG, S('X') = ULONG,
85                 S('e') = DBL, S('f') = DBL, S('g') = DBL, S('a') = DBL,
86                 S('E') = DBL, S('F') = DBL, S('G') = DBL, S('A') = DBL,
87                 S('c') = INT, S('s') = PTR, S('n') = PTR,
88                 S('l') = LLPRE,
89         }, { /* 2: ll-prefixed */
90                 S('d') = LLONG, S('i') = LLONG,
91                 S('o') = ULLONG, S('u') = ULLONG,
92                 S('x') = ULLONG, S('X') = ULLONG,
93                 S('n') = PTR,
94         }, { /* 3: h-prefixed */
95                 S('d') = SHORT, S('i') = SHORT,
96                 S('o') = USHORT, S('u') = USHORT,
97                 S('x') = USHORT, S('X') = USHORT,
98                 S('n') = PTR,
99                 S('h') = HHPRE,
100         }, { /* 4: hh-prefixed */
101                 S('d') = CHAR, S('i') = CHAR,
102                 S('o') = UCHAR, S('u') = UCHAR,
103                 S('x') = UCHAR, S('X') = UCHAR,
104                 S('n') = PTR,
105         }, { /* 5: L-prefixed */
106                 S('e') = LDBL, S('f') = LDBL, S('g') = LDBL, S('a') = LDBL,
107                 S('E') = LDBL, S('F') = LDBL, S('G') = LDBL, S('A') = LDBL,
108                 S('n') = PTR,
109         }, { /* 6: z- or t-prefixed (assumed to be same size) */
110                 S('d') = PDIFF, S('i') = PDIFF,
111                 S('o') = SIZET, S('u') = SIZET,
112                 S('x') = SIZET, S('X') = SIZET,
113                 S('n') = PTR,
114         }, { /* 7: j-prefixed */
115                 S('d') = IMAX, S('i') = IMAX,
116                 S('o') = UMAX, S('u') = UMAX,
117                 S('x') = UMAX, S('X') = UMAX,
118                 S('n') = PTR,
119         }
120 };
121
122 #define OOB(x) ((unsigned)(x)-'A' > 'z'-'A')
123
124 union arg
125 {
126         uintmax_t i;
127         long double f;
128         void *p;
129 };
130
131 static void pop_arg(union arg *arg, int type, va_list *ap)
132 {
133         /* Give the compiler a hint for optimizing the switch. */
134         if ((unsigned)type > MAXSTATE) return;
135         switch (type) {
136                case PTR:        arg->p = va_arg(*ap, void *);
137         break; case INT:        arg->i = va_arg(*ap, int);
138         break; case UINT:       arg->i = va_arg(*ap, unsigned int);
139 #ifndef LONG_IS_INT
140         break; case LONG:       arg->i = va_arg(*ap, long);
141         break; case ULONG:      arg->i = va_arg(*ap, unsigned long);
142 #endif
143         break; case ULLONG:     arg->i = va_arg(*ap, unsigned long long);
144         break; case SHORT:      arg->i = (short)va_arg(*ap, int);
145         break; case USHORT:     arg->i = (unsigned short)va_arg(*ap, int);
146         break; case CHAR:       arg->i = (signed char)va_arg(*ap, int);
147         break; case UCHAR:      arg->i = (unsigned char)va_arg(*ap, int);
148 #ifdef ODD_TYPES
149         break; case LLONG:      arg->i = va_arg(*ap, long long);
150         break; case SIZET:      arg->i = va_arg(*ap, size_t);
151         break; case IMAX:       arg->i = va_arg(*ap, intmax_t);
152         break; case UMAX:       arg->i = va_arg(*ap, uintmax_t);
153         break; case PDIFF:      arg->i = va_arg(*ap, ptrdiff_t);
154         break; case UIPTR:      arg->i = (uintptr_t)va_arg(*ap, void *);
155 #endif
156         break; case DBL:        arg->f = va_arg(*ap, double);
157         break; case LDBL:       arg->f = va_arg(*ap, long double);
158         }
159 }
160
161 static void out(FILE *f, const char *s, size_t l)
162 {
163         __fwritex((void *)s, l, f);
164 }
165
166 static void pad(FILE *f, char c, int w, int l, int fl)
167 {
168         char pad[256];
169         if (fl & (LEFT_ADJ | ZERO_PAD) || l >= w) return;
170         l = w - l;
171         memset(pad, c, l>sizeof pad ? sizeof pad : l);
172         for (; l >= sizeof pad; l -= sizeof pad)
173                 out(f, pad, sizeof pad);
174         out(f, pad, l);
175 }
176
177 static const char xdigits[16] = {
178         "0123456789ABCDEF"
179 };
180
181 static char *fmt_x(uintmax_t x, char *s, int lower)
182 {
183         for (; x; x>>=4) *--s = xdigits[(x&15)]|lower;
184         return s;
185 }
186
187 static char *fmt_o(uintmax_t x, char *s)
188 {
189         for (; x; x>>=3) *--s = '0' + (x&7);
190         return s;
191 }
192
193 static char *fmt_u(uintmax_t x, char *s)
194 {
195         unsigned long y;
196         for (   ; x>ULONG_MAX; x/=10) *--s = '0' + x%10;
197         for (y=x;           y; y/=10) *--s = '0' + y%10;
198         return s;
199 }
200
201 /* Do not override this check. The floating point printing code below
202  * depends on the float.h constants being right. If they are wrong, it
203  * may overflow the stack. */
204 #if LDBL_MANT_DIG == 53
205 typedef char compiler_defines_long_double_incorrectly[9-(int)sizeof(long double)];
206 #endif
207
208 static int fmt_fp(FILE *f, long double y, int w, int p, int fl, int t)
209 {
210         uint32_t big[(LDBL_MAX_EXP+LDBL_MANT_DIG)/9+1];
211         uint32_t *a, *d, *r, *z;
212         int e2=0, e, i, j, l;
213         char buf[9+LDBL_MANT_DIG/4], *s;
214         const char *prefix="-0X+0X 0X-0x+0x 0x";
215         int pl;
216         char ebuf0[3*sizeof(int)], *ebuf=&ebuf0[3*sizeof(int)], *estr;
217
218         pl=1;
219         if (signbit(y)) {
220                 y=-y;
221         } else if (fl & MARK_POS) {
222                 prefix+=3;
223         } else if (fl & PAD_POS) {
224                 prefix+=6;
225         } else prefix++, pl=0;
226
227         if (!isfinite(y)) {
228                 char *s = (t&32)?"inf":"INF";
229                 if (y!=y) s=(t&32)?"nan":"NAN", pl=0;
230                 pad(f, ' ', w, 3+pl, fl&~ZERO_PAD);
231                 out(f, prefix, pl);
232                 out(f, s, 3);
233                 pad(f, ' ', w, 3+pl, fl^LEFT_ADJ);
234                 return MAX(w, 3+pl);
235         }
236
237         y = frexpl(y, &e2) * 2;
238         if (y) e2--;
239
240         if ((t|32)=='a') {
241                 long double round = 8.0;
242                 int re;
243
244                 if (t&32) prefix += 9;
245                 pl += 2;
246
247                 if (p<0 || p>=LDBL_MANT_DIG/4-1) re=0;
248                 else re=LDBL_MANT_DIG/4-1-p;
249
250                 if (re) {
251                         while (re--) round*=16;
252                         if (*prefix=='-') {
253                                 y=-y;
254                                 y-=round;
255                                 y+=round;
256                                 y=-y;
257                         } else {
258                                 y+=round;
259                                 y-=round;
260                         }
261                 }
262
263                 estr=fmt_u(e2<0 ? -e2 : e2, ebuf);
264                 if (estr==ebuf) *--estr='0';
265                 *--estr = (e2<0 ? '-' : '+');
266                 *--estr = t+('p'-'a');
267
268                 s=buf;
269                 do {
270                         int x=y;
271                         *s++=xdigits[x]|(t&32);
272                         y=16*(y-x);
273                         if (s-buf==1 && (y||p>0||(fl&ALT_FORM))) *s++='.';
274                 } while (y);
275
276                 if (p && s-buf-2 < p)
277                         l = (p+2) + (ebuf-estr);
278                 else
279                         l = (s-buf) + (ebuf-estr);
280
281                 pad(f, ' ', w, pl+l, fl);
282                 out(f, prefix, pl);
283                 pad(f, '0', w, pl+l, fl^ZERO_PAD);
284                 out(f, buf, s-buf);
285                 pad(f, '0', l-(ebuf-estr)-(s-buf), 0, 0);
286                 out(f, estr, ebuf-estr);
287                 pad(f, ' ', w, pl+l, fl^LEFT_ADJ);
288                 return MAX(w, pl+l);
289         }
290         if (p<0) p=6;
291
292         if (y) y *= 0x1p28, e2-=28;
293
294         if (e2<0) a=r=z=big;
295         else a=r=z=big+sizeof(big)/sizeof(*big) - LDBL_MANT_DIG - 1;
296
297         do {
298                 *z = y;
299                 y = 1000000000*(y-*z++);
300         } while (y);
301
302         while (e2>0) {
303                 uint32_t carry=0;
304                 int sh=MIN(29,e2);
305                 for (d=z-1; d>=a; d--) {
306                         uint64_t x = ((uint64_t)*d<<sh)+carry;
307                         *d = x % 1000000000;
308                         carry = x / 1000000000;
309                 }
310                 if (!z[-1] && z>a) z--;
311                 if (carry) *--a = carry;
312                 e2-=sh;
313         }
314         while (e2<0) {
315                 uint32_t carry=0, *b;
316                 int sh=MIN(9,-e2);
317                 for (d=a; d<z; d++) {
318                         uint32_t rm = *d & (1<<sh)-1;
319                         *d = (*d>>sh) + carry;
320                         carry = (1000000000>>sh) * rm;
321                 }
322                 if (!*a) a++;
323                 if (carry) *z++ = carry;
324                 /* Avoid (slow!) computation past requested precision */
325                 b = (t|32)=='f' ? r : a;
326                 if (z-b > 2+p/9) z = b+2+p/9;
327                 e2+=sh;
328         }
329
330         if (a<z) for (i=10, e=9*(r-a); *a>=i; i*=10, e++);
331         else e=0;
332
333         /* Perform rounding: j is precision after the radix (possibly neg) */
334         j = p - ((t|32)!='f')*e - ((t|32)=='g' && p);
335         if (j < 9*(z-r-1)) {
336                 uint32_t x;
337                 /* We avoid C's broken division of negative numbers */
338                 d = r + 1 + ((j+9*LDBL_MAX_EXP)/9 - LDBL_MAX_EXP);
339                 j += 9*LDBL_MAX_EXP;
340                 j %= 9;
341                 for (i=10, j++; j<9; i*=10, j++);
342                 x = *d % i;
343                 /* Are there any significant digits past j? */
344                 if (x || d+1!=z) {
345                         long double round = CONCAT(0x1p,LDBL_MANT_DIG);
346                         long double small;
347                         if (*d/i & 1) round += 2;
348                         if (x<i/2) small=0x0.8p0;
349                         else if (x==i/2 && d+1==z) small=0x1.0p0;
350                         else small=0x1.8p0;
351                         if (pl && *prefix=='-') round*=-1, small*=-1;
352                         *d -= x;
353                         /* Decide whether to round by probing round+small */
354                         if (round+small != round) {
355                                 *d = *d + i;
356                                 while (*d > 999999999) {
357                                         *d--=0;
358                                         (*d)++;
359                                 }
360                                 if (d<a) a=d;
361                                 for (i=10, e=9*(r-a); *a>=i; i*=10, e++);
362                         }
363                 }
364                 if (z>d+1) z=d+1;
365                 for (; !z[-1] && z>a; z--);
366         }
367         
368         if ((t|32)=='g') {
369                 if (!p) p++;
370                 if (p>e && e>=-4) {
371                         t--;
372                         p-=e+1;
373                 } else {
374                         t-=2;
375                         p--;
376                 }
377                 if (!(fl&ALT_FORM)) {
378                         /* Count trailing zeros in last place */
379                         if (z>a && z[-1]) for (i=10, j=0; z[-1]%i==0; i*=10, j++);
380                         else j=9;
381                         if ((t|32)=='f')
382                                 p = MIN(p,MAX(0,9*(z-r-1)-j));
383                         else
384                                 p = MIN(p,MAX(0,9*(z-r-1)+e-j));
385                 }
386         }
387         l = 1 + p + (p || (fl&ALT_FORM));
388         if ((t|32)=='f') {
389                 if (e>0) l+=e;
390         } else {
391                 estr=fmt_u(e<0 ? -e : e, ebuf);
392                 while(ebuf-estr<2) *--estr='0';
393                 *--estr = (e<0 ? '-' : '+');
394                 *--estr = t;
395                 l += ebuf-estr;
396         }
397
398         pad(f, ' ', w, pl+l, fl);
399         out(f, prefix, pl);
400         pad(f, '0', w, pl+l, fl^ZERO_PAD);
401
402         if ((t|32)=='f') {
403                 if (a>r) a=r;
404                 for (d=a; d<=r; d++) {
405                         char *s = fmt_u(*d, buf+9);
406                         if (d!=a) while (s>buf) *--s='0';
407                         else if (s==buf+9) *--s='0';
408                         out(f, s, buf+9-s);
409                 }
410                 if (p || (fl&ALT_FORM)) out(f, ".", 1);
411                 for (; d<z && p>0; d++, p-=9) {
412                         char *s = fmt_u(*d, buf+9);
413                         while (s>buf) *--s='0';
414                         out(f, s, MIN(9,p));
415                 }
416                 pad(f, '0', p+9, 9, 0);
417         } else {
418                 if (z<=a) z=a+1;
419                 for (d=a; d<z && p>=0; d++) {
420                         char *s = fmt_u(*d, buf+9);
421                         if (s==buf+9) *--s='0';
422                         if (d!=a) while (s>buf) *--s='0';
423                         else {
424                                 out(f, s++, 1);
425                                 if (p>0||(fl&ALT_FORM)) out(f, ".", 1);
426                         }
427                         out(f, s, MIN(buf+9-s, p));
428                         p -= buf+9-s;
429                 }
430                 pad(f, '0', p+18, 18, 0);
431                 out(f, estr, ebuf-estr);
432         }
433
434         pad(f, ' ', w, pl+l, fl^LEFT_ADJ);
435
436         return MAX(w, pl+l);
437 }
438
439 static int getint(char **s) {
440         int i;
441         for (i=0; isdigit(**s); (*s)++)
442                 i = 10*i + (**s-'0');
443         return i;
444 }
445
446 static int printf_core(FILE *f, const char *fmt, va_list *ap, union arg *nl_arg, int *nl_type)
447 {
448         char *a, *z, *s=(char *)fmt;
449         unsigned l10n=0, fl;
450         int w, p;
451         union arg arg;
452         int argpos;
453         unsigned st, ps;
454         int cnt=0, l=0;
455         int i;
456         char buf[sizeof(uintmax_t)*3+3+LDBL_MANT_DIG/4];
457         const char *prefix;
458         int t, pl;
459         wchar_t wc[2], *ws;
460         char mb[4];
461
462         for (;;) {
463                 /* Update output count, end loop when fmt is exhausted */
464                 if (cnt >= 0) {
465                         if (l > INT_MAX - cnt) {
466                                 errno = EOVERFLOW;
467                                 cnt = -1;
468                         } else cnt += l;
469                 }
470                 if (!*s) break;
471
472                 /* Handle literal text and %% format specifiers */
473                 for (a=s; *s && *s!='%'; s++);
474                 for (z=s; s[0]=='%' && s[1]=='%'; z++, s+=2);
475                 l = z-a;
476                 if (f) out(f, a, l);
477                 if (l) continue;
478
479                 if (isdigit(s[1]) && s[2]=='$') {
480                         l10n=1;
481                         argpos = s[1]-'0';
482                         s+=3;
483                 } else {
484                         argpos = -1;
485                         s++;
486                 }
487
488                 /* Read modifier flags */
489                 for (fl=0; (unsigned)*s-' '<32 && (FLAGMASK&(1U<<*s-' ')); s++)
490                         fl |= 1U<<*s-' ';
491
492                 /* Read field width */
493                 if (*s=='*') {
494                         if (isdigit(s[1]) && s[2]=='$') {
495                                 l10n=1;
496                                 nl_type[s[1]-'0'] = INT;
497                                 w = nl_arg[s[1]-'0'].i;
498                                 s+=3;
499                         } else if (!l10n) {
500                                 w = f ? va_arg(*ap, int) : 0;
501                                 s++;
502                         } else return -1;
503                         if (w<0) fl|=LEFT_ADJ, w=-w;
504                 } else if ((w=getint(&s))<0) return -1;
505
506                 /* Read precision */
507                 if (*s=='.' && s[1]=='*') {
508                         if (isdigit(s[2]) && s[3]=='$') {
509                                 nl_type[s[2]-'0'] = INT;
510                                 p = nl_arg[s[2]-'0'].i;
511                                 s+=4;
512                         } else if (!l10n) {
513                                 p = f ? va_arg(*ap, int) : 0;
514                                 s+=2;
515                         } else return -1;
516                 } else if (*s=='.') {
517                         s++;
518                         p = getint(&s);
519                 } else p = -1;
520
521                 /* Format specifier state machine */
522                 st=0;
523                 do {
524                         if (OOB(*s)) return -1;
525                         ps=st;
526                         st=states[st]S(*s++);
527                 } while (st-1<STOP);
528                 if (!st) return -1;
529
530                 /* Check validity of argument type (nl/normal) */
531                 if (st==NOARG) {
532                         if (argpos>=0) return -1;
533                         else if (!f) continue;
534                 } else {
535                         if (argpos>=0) nl_type[argpos]=st, arg=nl_arg[argpos];
536                         else if (f) pop_arg(&arg, st, ap);
537                         else return 0;
538                 }
539
540                 if (!f) continue;
541
542                 z = buf + sizeof(buf);
543                 prefix = "-+   0X0x";
544                 pl = 0;
545                 t = s[-1];
546
547                 /* Transform ls,lc -> S,C */
548                 if (ps && (t&15)==3) t&=~32;
549
550                 /* - and 0 flags are mutually exclusive */
551                 if (fl & LEFT_ADJ) fl &= ~ZERO_PAD;
552
553                 switch(t) {
554                 case 'n':
555                         switch(ps) {
556                         case BARE: *(int *)arg.p = cnt; break;
557                         case LPRE: *(long *)arg.p = cnt; break;
558                         case LLPRE: *(long long *)arg.p = cnt; break;
559                         case HPRE: *(unsigned short *)arg.p = cnt; break;
560                         case HHPRE: *(unsigned char *)arg.p = cnt; break;
561                         case ZTPRE: *(size_t *)arg.p = cnt; break;
562                         case JPRE: *(uintmax_t *)arg.p = cnt; break;
563                         }
564                         continue;
565                 case 'p':
566                         p = MAX(p, 2*sizeof(void*));
567                         t = 'x';
568                         fl |= ALT_FORM;
569                 case 'x': case 'X':
570                         a = fmt_x(arg.i, z, t&32);
571                         if (arg.i && (fl & ALT_FORM)) prefix+=(t>>4), pl=2;
572                         if (0) {
573                 case 'o':
574                         a = fmt_o(arg.i, z);
575                         if ((fl&ALT_FORM) && arg.i) prefix+=5, pl=1;
576                         } if (0) {
577                 case 'd': case 'i':
578                         pl=1;
579                         if (arg.i>INTMAX_MAX) {
580                                 arg.i=-arg.i;
581                         } else if (fl & MARK_POS) {
582                                 prefix++;
583                         } else if (fl & PAD_POS) {
584                                 prefix+=2;
585                         } else pl=0;
586                 case 'u':
587                         a = fmt_u(arg.i, z);
588                         }
589                         if (p>=0) fl &= ~ZERO_PAD;
590                         if (!arg.i && !p) {
591                                 a=z;
592                                 break;
593                         }
594                         p = MAX(p, z-a + !arg.i);
595                         break;
596                 case 'c':
597                         *(a=z-(p=1))=arg.i;
598                         fl &= ~ZERO_PAD;
599                         break;
600                 case 'm':
601                         if (1) a = strerror(errno); else
602                 case 's':
603                         a = arg.p ? arg.p : "(null)";
604                         z = memchr(a, 0, p);
605                         if (!z) z=a+p;
606                         else p=z-a;
607                         fl &= ~ZERO_PAD;
608                         break;
609                 case 'C':
610                         wc[0] = arg.i;
611                         wc[1] = 0;
612                         arg.p = wc;
613                         p = -1;
614                 case 'S':
615                         ws = arg.p;
616                         for (i=l=0; i<0U+p && *ws && (l=wctomb(mb, *ws++))>=0 && l<=0U+p-i; i+=l);
617                         if (l<0) return -1;
618                         p = i;
619                         pad(f, ' ', w, p, fl);
620                         ws = arg.p;
621                         for (i=0; i<0U+p && *ws && i+(l=wctomb(mb, *ws++))<=p; i+=l)
622                                 out(f, mb, l);
623                         pad(f, ' ', w, p, fl^LEFT_ADJ);
624                         l = w>p ? w : p;
625                         continue;
626                 case 'e': case 'f': case 'g': case 'a':
627                 case 'E': case 'F': case 'G': case 'A':
628                         l = fmt_fp(f, arg.f, w, p, fl, t);
629                         continue;
630                 }
631
632                 if (p < z-a) p = z-a;
633                 if (w < pl+p) w = pl+p;
634
635                 pad(f, ' ', w, pl+p, fl);
636                 out(f, prefix, pl);
637                 pad(f, '0', w, pl+p, fl^ZERO_PAD);
638                 pad(f, '0', p, z-a, 0);
639                 out(f, a, z-a);
640                 pad(f, ' ', w, pl+p, fl^LEFT_ADJ);
641
642                 l = w;
643         }
644
645         if (f) return cnt;
646         if (!l10n) return 0;
647
648         for (i=1; i<=NL_ARGMAX && nl_type[i]; i++)
649                 pop_arg(nl_arg+i, nl_type[i], ap);
650         for (; i<=NL_ARGMAX && !nl_type[i]; i++);
651         if (i<=NL_ARGMAX) return -1;
652         return 1;
653 }
654
655 int vfprintf(FILE *restrict f, const char *restrict fmt, va_list ap)
656 {
657         va_list ap2;
658         int nl_type[NL_ARGMAX+1] = {0};
659         union arg nl_arg[NL_ARGMAX+1];
660         unsigned char internal_buf[80], *saved_buf = 0;
661         int ret;
662
663         va_copy(ap2, ap);
664         if (printf_core(0, fmt, &ap2, nl_arg, nl_type) < 0) return -1;
665
666         FLOCK(f);
667         if (!f->buf_size) {
668                 saved_buf = f->buf;
669                 f->wpos = f->wbase = f->buf = internal_buf;
670                 f->buf_size = sizeof internal_buf;
671                 f->wend = internal_buf + sizeof internal_buf;
672         }
673         ret = printf_core(f, fmt, &ap2, nl_arg, nl_type);
674         if (saved_buf) {
675                 f->write(f, 0, 0);
676                 if (!f->wpos) ret = -1;
677                 f->buf = saved_buf;
678                 f->buf_size = 0;
679                 f->wpos = f->wbase = f->wend = 0;
680         }
681         FUNLOCK(f);
682         va_end(ap2);
683         return ret;
684 }