1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1990, 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * This code is derived from software contributed to Berkeley by 8 * Chris Torek. 9 * 10 * Copyright (c) 2011 The FreeBSD Foundation 11 * 12 * Portions of this software were developed by David Chisnall 13 * under sponsorship from the FreeBSD Foundation. 14 * 15 * Redistribution and use in source and binary forms, with or without 16 * modification, are permitted provided that the following conditions 17 * are met: 18 * 1. Redistributions of source code must retain the above copyright 19 * notice, this list of conditions and the following disclaimer. 20 * 2. Redistributions in binary form must reproduce the above copyright 21 * notice, this list of conditions and the following disclaimer in the 22 * documentation and/or other materials provided with the distribution. 23 * 3. Neither the name of the University nor the names of its contributors 24 * may be used to endorse or promote products derived from this software 25 * without specific prior written permission. 26 * 27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 30 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 37 * SUCH DAMAGE. 38 */ 39 40 #if defined(LIBC_SCCS) && !defined(lint) 41 static char sccsid[] = "@(#)vfprintf.c 8.1 (Berkeley) 6/4/93"; 42 #endif /* LIBC_SCCS and not lint */ 43 #include <sys/cdefs.h> 44 /* 45 * Actual printf innards. 46 * 47 * This code is large and complicated... 48 */ 49 50 #include "namespace.h" 51 #include <sys/types.h> 52 53 #include <ctype.h> 54 #include <errno.h> 55 #include <limits.h> 56 #include <locale.h> 57 #include <stddef.h> 58 #include <stdint.h> 59 #include <stdio.h> 60 #include <stdlib.h> 61 #include <string.h> 62 #include <wchar.h> 63 #include <printf.h> 64 65 #include <stdarg.h> 66 #include "xlocale_private.h" 67 #include "un-namespace.h" 68 69 #include "libc_private.h" 70 #include "local.h" 71 #include "fvwrite.h" 72 #include "printflocal.h" 73 74 static int __sprint(FILE *, struct __suio *, locale_t); 75 static int __sbprintf(FILE *, locale_t, const char *, va_list) __printflike(3, 0) 76 __noinline; 77 static char *__wcsconv(wchar_t *, int); 78 79 #define CHAR char 80 #include "printfcommon.h" 81 82 struct grouping_state { 83 char *thousands_sep; /* locale-specific thousands separator */ 84 int thousep_len; /* length of thousands_sep */ 85 const char *grouping; /* locale-specific numeric grouping rules */ 86 int lead; /* sig figs before decimal or group sep */ 87 int nseps; /* number of group separators with ' */ 88 int nrepeats; /* number of repeats of the last group */ 89 }; 90 91 /* 92 * Initialize the thousands' grouping state in preparation to print a 93 * number with ndigits digits. This routine returns the total number 94 * of bytes that will be needed. 95 */ 96 static int 97 grouping_init(struct grouping_state *gs, int ndigits, locale_t loc) 98 { 99 struct lconv *locale; 100 101 locale = localeconv_l(loc); 102 gs->grouping = locale->grouping; 103 gs->thousands_sep = locale->thousands_sep; 104 gs->thousep_len = strlen(gs->thousands_sep); 105 106 gs->nseps = gs->nrepeats = 0; 107 gs->lead = ndigits; 108 while (*gs->grouping != CHAR_MAX) { 109 if (gs->lead <= *gs->grouping) 110 break; 111 gs->lead -= *gs->grouping; 112 if (*(gs->grouping+1)) { 113 gs->nseps++; 114 gs->grouping++; 115 } else 116 gs->nrepeats++; 117 } 118 return ((gs->nseps + gs->nrepeats) * gs->thousep_len); 119 } 120 121 /* 122 * Print a number with thousands' separators. 123 */ 124 static int 125 grouping_print(struct grouping_state *gs, struct io_state *iop, 126 const CHAR *cp, const CHAR *ep, locale_t locale) 127 { 128 const CHAR *cp0 = cp; 129 130 if (io_printandpad(iop, cp, ep, gs->lead, zeroes, locale)) 131 return (-1); 132 cp += gs->lead; 133 while (gs->nseps > 0 || gs->nrepeats > 0) { 134 if (gs->nrepeats > 0) 135 gs->nrepeats--; 136 else { 137 gs->grouping--; 138 gs->nseps--; 139 } 140 if (io_print(iop, gs->thousands_sep, gs->thousep_len, locale)) 141 return (-1); 142 if (io_printandpad(iop, cp, ep, *gs->grouping, zeroes, locale)) 143 return (-1); 144 cp += *gs->grouping; 145 } 146 if (cp > ep) 147 cp = ep; 148 return (cp - cp0); 149 } 150 151 /* 152 * Flush out all the vectors defined by the given uio, 153 * then reset it so that it can be reused. 154 */ 155 static int 156 __sprint(FILE *fp, struct __suio *uio, locale_t locale) 157 { 158 int err; 159 160 if (uio->uio_resid == 0) { 161 uio->uio_iovcnt = 0; 162 return (0); 163 } 164 err = __sfvwrite(fp, uio); 165 uio->uio_resid = 0; 166 uio->uio_iovcnt = 0; 167 return (err); 168 } 169 170 /* 171 * Helper function for `fprintf to unbuffered unix file': creates a 172 * temporary buffer. We only work on write-only files; this avoids 173 * worries about ungetc buffers and so forth. 174 */ 175 static int 176 __sbprintf(FILE *fp, locale_t locale, const char *fmt, va_list ap) 177 { 178 int ret; 179 FILE fake = FAKE_FILE; 180 unsigned char buf[BUFSIZ]; 181 182 /* XXX This is probably not needed. */ 183 if (prepwrite(fp) != 0) 184 return (EOF); 185 186 /* copy the important variables */ 187 fake._flags = fp->_flags & ~__SNBF; 188 fake._file = fp->_file; 189 fake._cookie = fp->_cookie; 190 fake._write = fp->_write; 191 fake._orientation = fp->_orientation; 192 fake._mbstate = fp->_mbstate; 193 194 /* set up the buffer */ 195 fake._bf._base = fake._p = buf; 196 fake._bf._size = fake._w = sizeof(buf); 197 fake._lbfsize = 0; /* not actually used, but Just In Case */ 198 199 /* do the work, then copy any error status */ 200 ret = __vfprintf(&fake, locale, fmt, ap); 201 if (ret >= 0 && __fflush(&fake)) 202 ret = EOF; 203 if (fake._flags & __SERR) 204 fp->_flags |= __SERR; 205 return (ret); 206 } 207 208 /* 209 * Convert a wide character string argument for the %ls format to a multibyte 210 * string representation. If not -1, prec specifies the maximum number of 211 * bytes to output, and also means that we can't assume that the wide char. 212 * string ends is null-terminated. 213 */ 214 static char * 215 __wcsconv(wchar_t *wcsarg, int prec) 216 { 217 static const mbstate_t initial; 218 mbstate_t mbs; 219 char buf[MB_LEN_MAX]; 220 wchar_t *p; 221 char *convbuf; 222 size_t clen, nbytes; 223 224 /* Allocate space for the maximum number of bytes we could output. */ 225 if (prec < 0) { 226 p = wcsarg; 227 mbs = initial; 228 nbytes = wcsrtombs(NULL, (const wchar_t **)&p, 0, &mbs); 229 if (nbytes == (size_t)-1) 230 return (NULL); 231 } else { 232 /* 233 * Optimisation: if the output precision is small enough, 234 * just allocate enough memory for the maximum instead of 235 * scanning the string. 236 */ 237 if (prec < 128) 238 nbytes = prec; 239 else { 240 nbytes = 0; 241 p = wcsarg; 242 mbs = initial; 243 for (;;) { 244 clen = wcrtomb(buf, *p++, &mbs); 245 if (clen == 0 || clen == (size_t)-1 || 246 nbytes + clen > prec) 247 break; 248 nbytes += clen; 249 } 250 } 251 } 252 if ((convbuf = malloc(nbytes + 1)) == NULL) 253 return (NULL); 254 255 /* Fill the output buffer. */ 256 p = wcsarg; 257 mbs = initial; 258 if ((nbytes = wcsrtombs(convbuf, (const wchar_t **)&p, 259 nbytes, &mbs)) == (size_t)-1) { 260 free(convbuf); 261 return (NULL); 262 } 263 convbuf[nbytes] = '\0'; 264 return (convbuf); 265 } 266 267 /* 268 * MT-safe version 269 */ 270 int 271 vfprintf_l(FILE * __restrict fp, locale_t locale, const char * __restrict fmt0, 272 va_list ap) 273 { 274 int ret; 275 FIX_LOCALE(locale); 276 277 FLOCKFILE_CANCELSAFE(fp); 278 /* optimise fprintf(stderr) (and other unbuffered Unix files) */ 279 if ((fp->_flags & (__SNBF|__SWR|__SRW)) == (__SNBF|__SWR) && 280 fp->_file >= 0) 281 ret = __sbprintf(fp, locale, fmt0, ap); 282 else 283 ret = __vfprintf(fp, locale, fmt0, ap); 284 FUNLOCKFILE_CANCELSAFE(); 285 return (ret); 286 } 287 int 288 vfprintf(FILE * __restrict fp, const char * __restrict fmt0, va_list ap) 289 { 290 return vfprintf_l(fp, __get_locale(), fmt0, ap); 291 } 292 293 /* 294 * The size of the buffer we use as scratch space for integer 295 * conversions, among other things. We need enough space to 296 * write a uintmax_t in octal (plus one byte). 297 */ 298 #if UINTMAX_MAX <= UINT64_MAX 299 #define BUF 32 300 #else 301 #error "BUF must be large enough to format a uintmax_t" 302 #endif 303 304 /* 305 * Non-MT-safe version 306 */ 307 int 308 __vfprintf(FILE *fp, locale_t locale, const char *fmt0, va_list ap) 309 { 310 char *fmt; /* format string */ 311 int ch; /* character from fmt */ 312 int n, n2; /* handy integer (short term usage) */ 313 char *cp; /* handy char pointer (short term usage) */ 314 int flags; /* flags as above */ 315 int ret; /* return value accumulator */ 316 int width; /* width from format (%8d), or 0 */ 317 int prec; /* precision from format; <0 for N/A */ 318 int saved_errno; 319 char sign; /* sign prefix (' ', '+', '-', or \0) */ 320 struct grouping_state gs; /* thousands' grouping info */ 321 322 #ifndef NO_FLOATING_POINT 323 /* 324 * We can decompose the printed representation of floating 325 * point numbers into several parts, some of which may be empty: 326 * 327 * [+|-| ] [0x|0X] MMM . NNN [e|E|p|P] [+|-] ZZ 328 * A B ---C--- D E F 329 * 330 * A: 'sign' holds this value if present; '\0' otherwise 331 * B: ox[1] holds the 'x' or 'X'; '\0' if not hexadecimal 332 * C: cp points to the string MMMNNN. Leading and trailing 333 * zeros are not in the string and must be added. 334 * D: expchar holds this character; '\0' if no exponent, e.g. %f 335 * F: at least two digits for decimal, at least one digit for hex 336 */ 337 char *decimal_point; /* locale specific decimal point */ 338 int decpt_len; /* length of decimal_point */ 339 int signflag; /* true if float is negative */ 340 union { /* floating point arguments %[aAeEfFgG] */ 341 double dbl; 342 long double ldbl; 343 } fparg; 344 int expt; /* integer value of exponent */ 345 char expchar; /* exponent character: [eEpP\0] */ 346 char *dtoaend; /* pointer to end of converted digits */ 347 int expsize; /* character count for expstr */ 348 int ndig; /* actual number of digits returned by dtoa */ 349 char expstr[MAXEXPDIG+2]; /* buffer for exponent string: e+ZZZ */ 350 char *dtoaresult; /* buffer allocated by dtoa */ 351 #endif 352 u_long ulval; /* integer arguments %[diouxX] */ 353 uintmax_t ujval; /* %j, %ll, %q, %t, %z integers */ 354 int base; /* base for [diouxX] conversion */ 355 int dprec; /* a copy of prec if [diouxX], 0 otherwise */ 356 int realsz; /* field size expanded by dprec, sign, etc */ 357 int size; /* size of converted field or string */ 358 int prsize; /* max size of printed field */ 359 const char *xdigs; /* digits for %[xX] conversion */ 360 struct io_state io; /* I/O buffering state */ 361 char buf[BUF]; /* buffer with space for digits of uintmax_t */ 362 char ox[2]; /* space for 0x; ox[1] is either x, X, or \0 */ 363 union arg *argtable; /* args, built due to positional arg */ 364 union arg statargtable [STATIC_ARG_TBL_SIZE]; 365 int nextarg; /* 1-based argument index */ 366 va_list orgap; /* original argument pointer */ 367 char *convbuf; /* wide to multibyte conversion result */ 368 int savserr; 369 370 static const char xdigs_lower[16] = "0123456789abcdef"; 371 static const char xdigs_upper[16] = "0123456789ABCDEF"; 372 373 /* BEWARE, these `goto error' on error. */ 374 #define PRINT(ptr, len) { \ 375 if (io_print(&io, (ptr), (len), locale)) \ 376 goto error; \ 377 } 378 #define PAD(howmany, with) { \ 379 if (io_pad(&io, (howmany), (with), locale)) \ 380 goto error; \ 381 } 382 #define PRINTANDPAD(p, ep, len, with) { \ 383 if (io_printandpad(&io, (p), (ep), (len), (with), locale)) \ 384 goto error; \ 385 } 386 #define FLUSH() { \ 387 if (io_flush(&io, locale)) \ 388 goto error; \ 389 } 390 391 /* 392 * Get the argument indexed by nextarg. If the argument table is 393 * built, use it to get the argument. If its not, get the next 394 * argument (and arguments must be gotten sequentially). 395 */ 396 #define GETARG(type) \ 397 ((argtable != NULL) ? *((type*)(&argtable[nextarg++])) : \ 398 (nextarg++, va_arg(ap, type))) 399 400 /* 401 * To extend shorts properly, we need both signed and unsigned 402 * argument extraction methods. 403 */ 404 #define SARG() \ 405 (flags&LONGINT ? GETARG(long) : \ 406 flags&SHORTINT ? (long)(short)GETARG(int) : \ 407 flags&CHARINT ? (long)(signed char)GETARG(int) : \ 408 (long)GETARG(int)) 409 #define UARG() \ 410 (flags&LONGINT ? GETARG(u_long) : \ 411 flags&SHORTINT ? (u_long)(u_short)GETARG(int) : \ 412 flags&CHARINT ? (u_long)(u_char)GETARG(int) : \ 413 (u_long)GETARG(u_int)) 414 #define INTMAX_SIZE (INTMAXT|SIZET|PTRDIFFT|LLONGINT) 415 #define SJARG() \ 416 (flags&INTMAXT ? GETARG(intmax_t) : \ 417 flags&SIZET ? (intmax_t)GETARG(ssize_t) : \ 418 flags&PTRDIFFT ? (intmax_t)GETARG(ptrdiff_t) : \ 419 (intmax_t)GETARG(long long)) 420 #define UJARG() \ 421 (flags&INTMAXT ? GETARG(uintmax_t) : \ 422 flags&SIZET ? (uintmax_t)GETARG(size_t) : \ 423 flags&PTRDIFFT ? (uintmax_t)GETARG(ptrdiff_t) : \ 424 (uintmax_t)GETARG(unsigned long long)) 425 426 /* 427 * Get * arguments, including the form *nn$. Preserve the nextarg 428 * that the argument can be gotten once the type is determined. 429 */ 430 #define GETASTER(val) \ 431 n2 = 0; \ 432 cp = fmt; \ 433 while (is_digit(*cp)) { \ 434 n2 = 10 * n2 + to_digit(*cp); \ 435 cp++; \ 436 } \ 437 if (*cp == '$') { \ 438 int hold = nextarg; \ 439 if (argtable == NULL) { \ 440 argtable = statargtable; \ 441 if (__find_arguments (fmt0, orgap, &argtable)) { \ 442 ret = EOF; \ 443 goto error; \ 444 } \ 445 } \ 446 nextarg = n2; \ 447 val = GETARG (int); \ 448 nextarg = hold; \ 449 fmt = ++cp; \ 450 } else { \ 451 val = GETARG (int); \ 452 } 453 454 if (__use_xprintf == 0 && getenv("USE_XPRINTF")) 455 __use_xprintf = 1; 456 if (__use_xprintf > 0) 457 return (__xvprintf(fp, fmt0, ap)); 458 459 /* sorry, fprintf(read_only_file, "") returns EOF, not 0 */ 460 if (prepwrite(fp) != 0) { 461 errno = EBADF; 462 return (EOF); 463 } 464 465 savserr = fp->_flags & __SERR; 466 fp->_flags &= ~__SERR; 467 468 saved_errno = errno; 469 convbuf = NULL; 470 fmt = (char *)fmt0; 471 argtable = NULL; 472 nextarg = 1; 473 va_copy(orgap, ap); 474 io_init(&io, fp); 475 ret = 0; 476 #ifndef NO_FLOATING_POINT 477 dtoaresult = NULL; 478 decimal_point = localeconv_l(locale)->decimal_point; 479 /* The overwhelmingly common case is decpt_len == 1. */ 480 decpt_len = (decimal_point[1] == '\0' ? 1 : strlen(decimal_point)); 481 #endif 482 483 /* 484 * Scan the format for conversions (`%' character). 485 */ 486 for (;;) { 487 for (cp = fmt; (ch = *fmt) != '\0' && ch != '%'; fmt++) 488 /* void */; 489 if ((n = fmt - cp) != 0) { 490 if ((unsigned)ret + n > INT_MAX) { 491 ret = EOF; 492 errno = EOVERFLOW; 493 goto error; 494 } 495 PRINT(cp, n); 496 ret += n; 497 } 498 if (ch == '\0') 499 goto done; 500 fmt++; /* skip over '%' */ 501 502 flags = 0; 503 dprec = 0; 504 width = 0; 505 prec = -1; 506 gs.grouping = NULL; 507 sign = '\0'; 508 ox[1] = '\0'; 509 510 rflag: ch = *fmt++; 511 reswitch: switch (ch) { 512 case ' ': 513 /*- 514 * ``If the space and + flags both appear, the space 515 * flag will be ignored.'' 516 * -- ANSI X3J11 517 */ 518 if (!sign) 519 sign = ' '; 520 goto rflag; 521 case '#': 522 flags |= ALT; 523 goto rflag; 524 case '*': 525 /*- 526 * ``A negative field width argument is taken as a 527 * - flag followed by a positive field width.'' 528 * -- ANSI X3J11 529 * They don't exclude field widths read from args. 530 */ 531 GETASTER (width); 532 if (width >= 0) 533 goto rflag; 534 width = -width; 535 /* FALLTHROUGH */ 536 case '-': 537 flags |= LADJUST; 538 goto rflag; 539 case '+': 540 sign = '+'; 541 goto rflag; 542 case '\'': 543 flags |= GROUPING; 544 goto rflag; 545 case '.': 546 if ((ch = *fmt++) == '*') { 547 GETASTER (prec); 548 goto rflag; 549 } 550 prec = 0; 551 while (is_digit(ch)) { 552 prec = 10 * prec + to_digit(ch); 553 ch = *fmt++; 554 } 555 goto reswitch; 556 case '0': 557 /*- 558 * ``Note that 0 is taken as a flag, not as the 559 * beginning of a field width.'' 560 * -- ANSI X3J11 561 */ 562 flags |= ZEROPAD; 563 goto rflag; 564 case '1': case '2': case '3': case '4': 565 case '5': case '6': case '7': case '8': case '9': 566 n = 0; 567 do { 568 n = 10 * n + to_digit(ch); 569 ch = *fmt++; 570 } while (is_digit(ch)); 571 if (ch == '$') { 572 nextarg = n; 573 if (argtable == NULL) { 574 argtable = statargtable; 575 if (__find_arguments (fmt0, orgap, 576 &argtable)) { 577 ret = EOF; 578 goto error; 579 } 580 } 581 goto rflag; 582 } 583 width = n; 584 goto reswitch; 585 #ifndef NO_FLOATING_POINT 586 case 'L': 587 flags |= LONGDBL; 588 goto rflag; 589 #endif 590 case 'h': 591 if (flags & SHORTINT) { 592 flags &= ~SHORTINT; 593 flags |= CHARINT; 594 } else 595 flags |= SHORTINT; 596 goto rflag; 597 case 'j': 598 flags |= INTMAXT; 599 goto rflag; 600 case 'l': 601 if (flags & LONGINT) { 602 flags &= ~LONGINT; 603 flags |= LLONGINT; 604 } else 605 flags |= LONGINT; 606 goto rflag; 607 case 'q': 608 flags |= LLONGINT; /* not necessarily */ 609 goto rflag; 610 case 't': 611 flags |= PTRDIFFT; 612 goto rflag; 613 case 'z': 614 flags |= SIZET; 615 goto rflag; 616 case 'B': 617 case 'b': 618 if (flags & INTMAX_SIZE) 619 ujval = UJARG(); 620 else 621 ulval = UARG(); 622 base = 2; 623 /* leading 0b/B only if non-zero */ 624 if (flags & ALT && 625 (flags & INTMAX_SIZE ? ujval != 0 : ulval != 0)) 626 ox[1] = ch; 627 goto nosign; 628 break; 629 case 'C': 630 flags |= LONGINT; 631 /*FALLTHROUGH*/ 632 case 'c': 633 if (flags & LONGINT) { 634 static const mbstate_t initial; 635 mbstate_t mbs; 636 size_t mbseqlen; 637 638 mbs = initial; 639 mbseqlen = wcrtomb(cp = buf, 640 (wchar_t)GETARG(wint_t), &mbs); 641 if (mbseqlen == (size_t)-1) { 642 fp->_flags |= __SERR; 643 goto error; 644 } 645 size = (int)mbseqlen; 646 } else { 647 *(cp = buf) = GETARG(int); 648 size = 1; 649 } 650 sign = '\0'; 651 break; 652 case 'D': 653 flags |= LONGINT; 654 /*FALLTHROUGH*/ 655 case 'd': 656 case 'i': 657 if (flags & INTMAX_SIZE) { 658 ujval = SJARG(); 659 if ((intmax_t)ujval < 0) { 660 ujval = -ujval; 661 sign = '-'; 662 } 663 } else { 664 ulval = SARG(); 665 if ((long)ulval < 0) { 666 ulval = -ulval; 667 sign = '-'; 668 } 669 } 670 base = 10; 671 goto number; 672 #ifndef NO_FLOATING_POINT 673 case 'a': 674 case 'A': 675 if (ch == 'a') { 676 ox[1] = 'x'; 677 xdigs = xdigs_lower; 678 expchar = 'p'; 679 } else { 680 ox[1] = 'X'; 681 xdigs = xdigs_upper; 682 expchar = 'P'; 683 } 684 if (prec >= 0) 685 prec++; 686 if (dtoaresult != NULL) 687 freedtoa(dtoaresult); 688 if (flags & LONGDBL) { 689 fparg.ldbl = GETARG(long double); 690 dtoaresult = cp = 691 __hldtoa(fparg.ldbl, xdigs, prec, 692 &expt, &signflag, &dtoaend); 693 } else { 694 fparg.dbl = GETARG(double); 695 dtoaresult = cp = 696 __hdtoa(fparg.dbl, xdigs, prec, 697 &expt, &signflag, &dtoaend); 698 } 699 if (prec < 0) 700 prec = dtoaend - cp; 701 if (expt == INT_MAX) 702 ox[1] = '\0'; 703 goto fp_common; 704 case 'e': 705 case 'E': 706 expchar = ch; 707 if (prec < 0) /* account for digit before decpt */ 708 prec = DEFPREC + 1; 709 else 710 prec++; 711 goto fp_begin; 712 case 'f': 713 case 'F': 714 expchar = '\0'; 715 goto fp_begin; 716 case 'g': 717 case 'G': 718 expchar = ch - ('g' - 'e'); 719 if (prec == 0) 720 prec = 1; 721 fp_begin: 722 if (prec < 0) 723 prec = DEFPREC; 724 if (dtoaresult != NULL) 725 freedtoa(dtoaresult); 726 if (flags & LONGDBL) { 727 fparg.ldbl = GETARG(long double); 728 dtoaresult = cp = 729 __ldtoa(&fparg.ldbl, expchar ? 2 : 3, prec, 730 &expt, &signflag, &dtoaend); 731 } else { 732 fparg.dbl = GETARG(double); 733 dtoaresult = cp = 734 dtoa(fparg.dbl, expchar ? 2 : 3, prec, 735 &expt, &signflag, &dtoaend); 736 if (expt == 9999) 737 expt = INT_MAX; 738 } 739 fp_common: 740 if (signflag) 741 sign = '-'; 742 if (expt == INT_MAX) { /* inf or nan */ 743 if (*cp == 'N') { 744 cp = (ch >= 'a') ? "nan" : "NAN"; 745 sign = '\0'; 746 } else 747 cp = (ch >= 'a') ? "inf" : "INF"; 748 size = 3; 749 flags &= ~ZEROPAD; 750 break; 751 } 752 flags |= FPT; 753 ndig = dtoaend - cp; 754 if (ch == 'g' || ch == 'G') { 755 if (expt > -4 && expt <= prec) { 756 /* Make %[gG] smell like %[fF] */ 757 expchar = '\0'; 758 if (flags & ALT) 759 prec -= expt; 760 else 761 prec = ndig - expt; 762 if (prec < 0) 763 prec = 0; 764 } else { 765 /* 766 * Make %[gG] smell like %[eE], but 767 * trim trailing zeroes if no # flag. 768 */ 769 if (!(flags & ALT)) 770 prec = ndig; 771 } 772 } 773 if (expchar) { 774 expsize = exponent(expstr, expt - 1, expchar); 775 size = expsize + prec; 776 if (prec > 1 || flags & ALT) 777 size += decpt_len; 778 } else { 779 /* space for digits before decimal point */ 780 if (expt > 0) 781 size = expt; 782 else /* "0" */ 783 size = 1; 784 /* space for decimal pt and following digits */ 785 if (prec || flags & ALT) 786 size += prec + decpt_len; 787 if ((flags & GROUPING) && expt > 0) 788 size += grouping_init(&gs, expt, locale); 789 } 790 break; 791 #endif /* !NO_FLOATING_POINT */ 792 case 'm': 793 cp = strerror(saved_errno); 794 size = (prec >= 0) ? strnlen(cp, prec) : strlen(cp); 795 sign = '\0'; 796 break; 797 case 'n': 798 /* 799 * Assignment-like behavior is specified if the 800 * value overflows or is otherwise unrepresentable. 801 * C99 says to use `signed char' for %hhn conversions. 802 */ 803 if (flags & LLONGINT) 804 *GETARG(long long *) = ret; 805 else if (flags & SIZET) 806 *GETARG(ssize_t *) = (ssize_t)ret; 807 else if (flags & PTRDIFFT) 808 *GETARG(ptrdiff_t *) = ret; 809 else if (flags & INTMAXT) 810 *GETARG(intmax_t *) = ret; 811 else if (flags & LONGINT) 812 *GETARG(long *) = ret; 813 else if (flags & SHORTINT) 814 *GETARG(short *) = ret; 815 else if (flags & CHARINT) 816 *GETARG(signed char *) = ret; 817 else 818 *GETARG(int *) = ret; 819 continue; /* no output */ 820 case 'O': 821 flags |= LONGINT; 822 /*FALLTHROUGH*/ 823 case 'o': 824 if (flags & INTMAX_SIZE) 825 ujval = UJARG(); 826 else 827 ulval = UARG(); 828 base = 8; 829 goto nosign; 830 case 'p': 831 /*- 832 * ``The argument shall be a pointer to void. The 833 * value of the pointer is converted to a sequence 834 * of printable characters, in an implementation- 835 * defined manner.'' 836 * -- ANSI X3J11 837 */ 838 ujval = (uintmax_t)(uintptr_t)GETARG(void *); 839 base = 16; 840 xdigs = xdigs_lower; 841 flags = flags | INTMAXT; 842 ox[1] = 'x'; 843 goto nosign; 844 case 'S': 845 flags |= LONGINT; 846 /*FALLTHROUGH*/ 847 case 's': 848 if (flags & LONGINT) { 849 wchar_t *wcp; 850 851 if (convbuf != NULL) 852 free(convbuf); 853 if ((wcp = GETARG(wchar_t *)) == NULL) 854 cp = "(null)"; 855 else { 856 convbuf = __wcsconv(wcp, prec); 857 if (convbuf == NULL) { 858 fp->_flags |= __SERR; 859 goto error; 860 } 861 cp = convbuf; 862 } 863 } else if ((cp = GETARG(char *)) == NULL) 864 cp = "(null)"; 865 size = (prec >= 0) ? strnlen(cp, prec) : strlen(cp); 866 sign = '\0'; 867 break; 868 case 'U': 869 flags |= LONGINT; 870 /*FALLTHROUGH*/ 871 case 'u': 872 if (flags & INTMAX_SIZE) 873 ujval = UJARG(); 874 else 875 ulval = UARG(); 876 base = 10; 877 goto nosign; 878 case 'X': 879 xdigs = xdigs_upper; 880 goto hex; 881 case 'x': 882 xdigs = xdigs_lower; 883 hex: 884 if (flags & INTMAX_SIZE) 885 ujval = UJARG(); 886 else 887 ulval = UARG(); 888 base = 16; 889 /* leading 0x/X only if non-zero */ 890 if (flags & ALT && 891 (flags & INTMAX_SIZE ? ujval != 0 : ulval != 0)) 892 ox[1] = ch; 893 894 flags &= ~GROUPING; 895 /* unsigned conversions */ 896 nosign: sign = '\0'; 897 /*- 898 * ``... diouXx conversions ... if a precision is 899 * specified, the 0 flag will be ignored.'' 900 * -- ANSI X3J11 901 */ 902 number: if ((dprec = prec) >= 0) 903 flags &= ~ZEROPAD; 904 905 /*- 906 * ``The result of converting a zero value with an 907 * explicit precision of zero is no characters.'' 908 * -- ANSI X3J11 909 * 910 * ``The C Standard is clear enough as is. The call 911 * printf("%#.0o", 0) should print 0.'' 912 * -- Defect Report #151 913 */ 914 cp = buf + BUF; 915 if (flags & INTMAX_SIZE) { 916 if (ujval != 0 || prec != 0 || 917 (flags & ALT && base == 8)) 918 cp = __ujtoa(ujval, cp, base, 919 flags & ALT, xdigs); 920 } else { 921 if (ulval != 0 || prec != 0 || 922 (flags & ALT && base == 8)) 923 cp = __ultoa(ulval, cp, base, 924 flags & ALT, xdigs); 925 } 926 size = buf + BUF - cp; 927 if (size > BUF) /* should never happen */ 928 abort(); 929 if ((flags & GROUPING) && size != 0) 930 size += grouping_init(&gs, size, locale); 931 break; 932 default: /* "%?" prints ?, unless ? is NUL */ 933 if (ch == '\0') 934 goto done; 935 /* pretend it was %c with argument ch */ 936 cp = buf; 937 *cp = ch; 938 size = 1; 939 sign = '\0'; 940 break; 941 } 942 943 /* 944 * All reasonable formats wind up here. At this point, `cp' 945 * points to a string which (if not flags&LADJUST) should be 946 * padded out to `width' places. If flags&ZEROPAD, it should 947 * first be prefixed by any sign or other prefix; otherwise, 948 * it should be blank padded before the prefix is emitted. 949 * After any left-hand padding and prefixing, emit zeroes 950 * required by a decimal [diouxX] precision, then print the 951 * string proper, then emit zeroes required by any leftover 952 * floating precision; finally, if LADJUST, pad with blanks. 953 * 954 * Compute actual size, so we know how much to pad. 955 * size excludes decimal prec; realsz includes it. 956 */ 957 realsz = dprec > size ? dprec : size; 958 if (sign) 959 realsz++; 960 if (ox[1]) 961 realsz += 2; 962 963 prsize = width > realsz ? width : realsz; 964 if ((unsigned)ret + prsize > INT_MAX) { 965 ret = EOF; 966 errno = EOVERFLOW; 967 goto error; 968 } 969 970 /* right-adjusting blank padding */ 971 if ((flags & (LADJUST|ZEROPAD)) == 0) 972 PAD(width - realsz, blanks); 973 974 /* prefix */ 975 if (sign) 976 PRINT(&sign, 1); 977 978 if (ox[1]) { /* ox[1] is either x, X, or \0 */ 979 ox[0] = '0'; 980 PRINT(ox, 2); 981 } 982 983 /* right-adjusting zero padding */ 984 if ((flags & (LADJUST|ZEROPAD)) == ZEROPAD) 985 PAD(width - realsz, zeroes); 986 987 /* the string or number proper */ 988 #ifndef NO_FLOATING_POINT 989 if ((flags & FPT) == 0) { 990 #endif 991 /* leading zeroes from decimal precision */ 992 PAD(dprec - size, zeroes); 993 if (gs.grouping) { 994 if (grouping_print(&gs, &io, cp, buf+BUF, locale) < 0) 995 goto error; 996 } else { 997 PRINT(cp, size); 998 } 999 #ifndef NO_FLOATING_POINT 1000 } else { /* glue together f_p fragments */ 1001 if (!expchar) { /* %[fF] or sufficiently short %[gG] */ 1002 if (expt <= 0) { 1003 PRINT(zeroes, 1); 1004 if (prec || flags & ALT) 1005 PRINT(decimal_point,decpt_len); 1006 PAD(-expt, zeroes); 1007 /* already handled initial 0's */ 1008 prec += expt; 1009 } else { 1010 if (gs.grouping) { 1011 n = grouping_print(&gs, &io, 1012 cp, dtoaend, locale); 1013 if (n < 0) 1014 goto error; 1015 cp += n; 1016 } else { 1017 PRINTANDPAD(cp, dtoaend, 1018 expt, zeroes); 1019 cp += expt; 1020 } 1021 if (prec || flags & ALT) 1022 PRINT(decimal_point,decpt_len); 1023 } 1024 PRINTANDPAD(cp, dtoaend, prec, zeroes); 1025 } else { /* %[eE] or sufficiently long %[gG] */ 1026 if (prec > 1 || flags & ALT) { 1027 PRINT(cp++, 1); 1028 PRINT(decimal_point, decpt_len); 1029 PRINT(cp, ndig-1); 1030 PAD(prec - ndig, zeroes); 1031 } else /* XeYYY */ 1032 PRINT(cp, 1); 1033 PRINT(expstr, expsize); 1034 } 1035 } 1036 #endif 1037 /* left-adjusting padding (always blank) */ 1038 if (flags & LADJUST) 1039 PAD(width - realsz, blanks); 1040 1041 /* finally, adjust ret */ 1042 ret += prsize; 1043 1044 FLUSH(); /* copy out the I/O vectors */ 1045 } 1046 done: 1047 FLUSH(); 1048 error: 1049 va_end(orgap); 1050 #ifndef NO_FLOATING_POINT 1051 if (dtoaresult != NULL) 1052 freedtoa(dtoaresult); 1053 #endif 1054 if (convbuf != NULL) 1055 free(convbuf); 1056 if (__sferror(fp)) 1057 ret = EOF; 1058 else 1059 fp->_flags |= savserr; 1060 if ((argtable != NULL) && (argtable != statargtable)) 1061 free (argtable); 1062 return (ret); 1063 /* NOTREACHED */ 1064 } 1065 1066