1 /* $NetBSD: vfwscanf.c,v 1.11 2013/09/23 12:41:37 pooka Exp $ */
4 * Copyright (c) 1990, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 #include <sys/cdefs.h>
40 #if defined(LIBC_SCCS) && !defined(lint)
42 static char sccsid
[] = "@(#)ftell.c 8.2 (Berkeley) 5/4/95";
43 __FBSDID("$FreeBSD: src/lib/libc/stdio/vfwscanf.c,v 1.12 2004/05/02 20:13:29 obrien Exp $");
45 __RCSID("$NetBSD: vfwscanf.c,v 1.11 2013/09/23 12:41:37 pooka Exp $");
47 #endif /* LIBC_SCCS and not lint */
49 #include "namespace.h"
62 #include "reentrant.h"
66 #include "setlocale_local.h"
68 #define BUF 513 /* Maximum length of numeric string. */
71 * Flags used during conversion.
73 #define LONG 0x01 /* l: long or double */
74 #define LONGDBL 0x02 /* L: long double */
75 #define SHORT 0x04 /* h: short */
76 #define SUPPRESS 0x08 /* *: suppress assignment */
77 #define POINTER 0x10 /* p: void * (as hex) */
78 #define NOSKIP 0x20 /* [ or c: do not skip blanks */
79 #define LONGLONG 0x400 /* ll: quad_t (+ deprecated q: quad) */
80 #define INTMAXT 0x800 /* j: intmax_t */
81 #define PTRDIFFT 0x1000 /* t: ptrdiff_t */
82 #define SIZET 0x2000 /* z: size_t */
83 #define SHORTSHORT 0x4000 /* hh: char */
84 #define UNSIGNED 0x8000 /* %[oupxX] conversions */
87 * The following are used in integral conversions only:
88 * SIGNOK, NDIGITS, PFXOK, and NZDIGITS
90 #define SIGNOK 0x40 /* +/- is (still) legal */
91 #define NDIGITS 0x80 /* no digits detected */
92 #define PFXOK 0x100 /* 0x prefix is (still) legal */
93 #define NZDIGITS 0x200 /* no zero digits detected */
94 #define HAVESIGN 0x10000 /* sign detected */
99 #define CT_CHAR 0 /* %c conversion */
100 #define CT_CCL 1 /* %[...] conversion */
101 #define CT_STRING 2 /* %s conversion */
102 #define CT_INT 3 /* %[dioupxX] conversion */
103 #define CT_FLOAT 4 /* %[efgEFG] conversion */
105 #ifndef NO_FLOATING_POINT
106 static int parsefloat(FILE *, wchar_t *, wchar_t *, locale_t
);
110 (cclcompl ? (wmemchr(ccls, (_c), (size_t)(ccle - ccls)) == NULL) : \
111 (wmemchr(ccls, (_c), (size_t)(ccle - ccls)) != NULL))
117 vfwscanf(FILE * __restrict fp
, const wchar_t * __restrict fmt
, va_list ap
)
119 return vfwscanf_l(fp
, _current_locale(), fmt
, ap
);
123 vfwscanf_l(FILE * __restrict fp
, locale_t loc
, const wchar_t * __restrict fmt
,
129 _SET_ORIENTATION(fp
, 1);
130 ret
= __vfwscanf_unlocked_l(fp
, loc
, fmt
, ap
);
135 #define SCANF_SKIP_SPACE() \
139 while ((tc = __fgetwc_unlock(fp)) != WEOF && iswspace_l(tc, loc)) \
143 } while (/*CONSTCOND*/ 0)
146 * Non-MT-safe version.
149 __vfwscanf_unlocked_l(FILE * __restrict fp
, locale_t loc
,
150 const wchar_t * __restrict fmt
, va_list ap
)
152 wint_t c
; /* character from format, or conversion */
153 size_t width
; /* field width, or 0 */
154 wchar_t *p
; /* points into all kinds of strings */
155 int n
; /* handy integer */
156 int flags
; /* flags as defined above */
157 wchar_t *p0
; /* saves original value of p when necessary */
158 int nassigned
; /* number of fields assigned */
159 int nconversions
; /* number of conversions */
160 size_t nread
; /* number of characters consumed from fp */
161 int base
; /* base argument to conversion function */
162 wchar_t buf
[BUF
]; /* buffer for numeric conversions */
163 const wchar_t *ccls
; /* character class start */
164 const wchar_t *ccle
; /* character class end */
165 int cclcompl
; /* ccl is complemented? */
166 wint_t wi
; /* handy wint_t */
167 char *mbp
; /* multibyte string pointer for %c %s %[ */
168 size_t nconv
; /* number of bytes in mb. conversion */
169 static const mbstate_t initial
;
171 char mbbuf
[MB_LEN_MAX
]; /* temporary mb. character buffer */
172 /* `basefix' is used to avoid `if' tests in the integer scanner */
173 static short basefix
[17] =
174 { 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 };
187 if (iswspace_l(c
, loc
)) {
188 while ((c
= __fgetwc_unlock(fp
)) != WEOF
&&
200 * switch on the format. continue if done;
201 * break once format type is derived.
208 if ((wi
= __fgetwc_unlock(fp
)) == WEOF
)
231 flags
|= LONGLONG
; /* not quite */
250 case '0': case '1': case '2': case '3': case '4':
251 case '5': case '6': case '7': case '8': case '9':
252 width
= width
* 10 + c
- '0';
282 flags
|= PFXOK
; /* enable 0x prefixing */
288 #ifndef NO_FLOATING_POINT
289 case 'A': case 'E': case 'F': case 'G':
290 case 'a': case 'e': case 'f': case 'g':
311 while (*fmt
!= '\0' && *fmt
!= ']')
327 case 'p': /* pointer format is like hex */
328 flags
|= POINTER
| PFXOK
;
329 c
= CT_INT
; /* assumes sizeof(uintmax_t) */
330 flags
|= UNSIGNED
; /* >= sizeof(uintptr_t) */
336 if (flags
& SUPPRESS
) /* ??? */
338 if (flags
& SHORTSHORT
)
339 *va_arg(ap
, char *) = (char)nread
;
340 else if (flags
& SHORT
)
341 *va_arg(ap
, short *) = (short)nread
;
342 else if (flags
& LONG
)
343 *va_arg(ap
, long *) = nread
;
344 else if (flags
& LONGLONG
)
345 *va_arg(ap
, quad_t
*) = nread
;
346 else if (flags
& INTMAXT
)
347 *va_arg(ap
, intmax_t *) = nread
;
348 else if (flags
& SIZET
)
349 *va_arg(ap
, size_t *) = nread
;
350 else if (flags
& PTRDIFFT
)
351 *va_arg(ap
, ptrdiff_t *) = nread
;
353 *va_arg(ap
, int *) = (int)nread
;
360 * Disgusting backwards compatibility hack. XXX
362 case '\0': /* compat */
367 * Consume leading white space, except for formats
368 * that suppress this.
370 if ((flags
& NOSKIP
) == 0) {
371 while ((wi
= __fgetwc_unlock(fp
)) != WEOF
&&
385 /* scan arbitrary characters (sets NOSKIP) */
389 if (!(flags
& SUPPRESS
))
390 p
= va_arg(ap
, wchar_t *);
392 while (width
-- != 0 &&
393 (wi
= __fgetwc_unlock(fp
)) != WEOF
) {
394 if (!(flags
& SUPPRESS
))
401 if (!(flags
& SUPPRESS
))
404 if (!(flags
& SUPPRESS
))
405 mbp
= va_arg(ap
, char *);
409 (wi
= __fgetwc_unlock(fp
)) != WEOF
) {
410 if (width
>= MB_CUR_MAX_L(loc
) &&
411 !(flags
& SUPPRESS
)) {
412 nconv
= wcrtomb_l(mbp
, wi
,
414 if (nconv
== (size_t)-1)
417 nconv
= wcrtomb_l(mbbuf
, wi
,
419 if (nconv
== (size_t)-1)
425 if (!(flags
& SUPPRESS
))
429 if (!(flags
& SUPPRESS
))
437 if (!(flags
& SUPPRESS
))
444 /* scan a (nonempty) character class (sets NOSKIP) */
446 width
= (size_t)~0; /* `infinity' */
447 /* take only those things in the class */
448 if ((flags
& SUPPRESS
) && (flags
& LONG
)) {
450 while ((wi
= __fgetwc_unlock(fp
)) != WEOF
&&
451 width
-- != 0 && INCCL(wi
))
457 } else if (flags
& LONG
) {
458 p0
= p
= va_arg(ap
, wchar_t *);
459 while ((wi
= __fgetwc_unlock(fp
)) != WEOF
&&
460 width
-- != 0 && INCCL(wi
))
464 _DIAGASSERT(__type_fit(int, p
- p0
));
471 if (!(flags
& SUPPRESS
))
472 mbp
= va_arg(ap
, char *);
475 while ((wi
= __fgetwc_unlock(fp
)) != WEOF
&&
476 width
!= 0 && INCCL(wi
)) {
477 if (width
>= MB_CUR_MAX_L(loc
) &&
478 !(flags
& SUPPRESS
)) {
479 nconv
= wcrtomb_l(mbp
, wi
,
481 if (nconv
== (size_t)-1)
484 nconv
= wcrtomb_l(mbbuf
, wi
,
486 if (nconv
== (size_t)-1)
490 if (!(flags
& SUPPRESS
))
494 if (!(flags
& SUPPRESS
))
501 if (!(flags
& SUPPRESS
)) {
511 /* like CCL, but zero-length string OK, & no NOSKIP */
514 if ((flags
& SUPPRESS
) && (flags
& LONG
)) {
515 while ((wi
= __fgetwc_unlock(fp
)) != WEOF
&&
517 !iswspace_l(wi
, loc
))
521 } else if (flags
& LONG
) {
522 p0
= p
= va_arg(ap
, wchar_t *);
523 while ((wi
= __fgetwc_unlock(fp
)) != WEOF
&&
525 !iswspace_l(wi
, loc
)) {
534 if (!(flags
& SUPPRESS
))
535 mbp
= va_arg(ap
, char *);
537 while ((wi
= __fgetwc_unlock(fp
)) != WEOF
&&
539 !iswspace_l(wi
, loc
)) {
540 if (width
>= MB_CUR_MAX_L(loc
) &&
541 !(flags
& SUPPRESS
)) {
542 nconv
= wcrtomb_l(mbp
, wi
,
544 if (nconv
== (size_t)-1)
547 nconv
= wcrtomb_l(mbbuf
, wi
,
549 if (nconv
== (size_t)-1)
553 if (!(flags
& SUPPRESS
))
557 if (!(flags
& SUPPRESS
))
564 if (!(flags
& SUPPRESS
)) {
573 /* scan an integer as if by the conversion function */
574 if (width
== 0 || width
> sizeof(buf
) /
576 width
= sizeof(buf
) / sizeof(*buf
) - 1;
577 flags
|= SIGNOK
| NDIGITS
| NZDIGITS
;
578 for (p
= buf
; width
; width
--) {
579 c
= __fgetwc_unlock(fp
);
581 * Switch on the character; `goto ok'
582 * if we accept it as a part of number.
587 * The digit 0 is always legal, but is
588 * special. For %i conversions, if no
589 * digits (zero or nonzero) have been
590 * scanned (only signs), we will have
591 * base==0. In that case, we should set
592 * it to 8 and enable 0x prefixing.
593 * Also, if we have not scanned zero digits
594 * before this, do not turn off prefixing
595 * (someone else will turn it off if we
596 * have scanned any nonzero digits).
603 if (flags
& NZDIGITS
)
604 flags
&= ~(SIGNOK
|NZDIGITS
|NDIGITS
);
606 flags
&= ~(SIGNOK
|PFXOK
|NDIGITS
);
609 /* 1 through 7 always legal */
610 case '1': case '2': case '3':
611 case '4': case '5': case '6': case '7':
612 base
= basefix
[base
];
613 flags
&= ~(SIGNOK
| PFXOK
| NDIGITS
);
616 /* digits 8 and 9 ok iff decimal or hex */
618 base
= basefix
[base
];
620 break; /* not legal here */
621 flags
&= ~(SIGNOK
| PFXOK
| NDIGITS
);
624 /* letters ok iff hex */
625 case 'A': case 'B': case 'C':
626 case 'D': case 'E': case 'F':
627 case 'a': case 'b': case 'c':
628 case 'd': case 'e': case 'f':
629 /* no need to fix base here */
631 break; /* not legal here */
632 flags
&= ~(SIGNOK
| PFXOK
| NDIGITS
);
635 /* sign ok only as first character */
637 if (flags
& SIGNOK
) {
645 * x ok iff flag still set & 2nd char (or
646 * 3rd char if we have a sign).
649 if (flags
& PFXOK
&& p
==
650 buf
+ 1 + !!(flags
& HAVESIGN
)) {
651 base
= 16; /* if %i */
659 * If we got here, c is not a legal character
660 * for a number. Stop accumulating digits.
667 * c is legal: store it and look at the next.
672 * If we had only a sign, it is no good; push
673 * back the sign. If the number ends in `x',
674 * it was [sign] '0' 'x', so push back the x
675 * and treat it as [sign] '0'.
677 if (flags
& NDIGITS
) {
683 if (c
== 'x' || c
== 'X') {
687 if ((flags
& SUPPRESS
) == 0) {
691 if ((flags
& UNSIGNED
) == 0)
692 res
= wcstoimax_l(buf
, NULL
, base
, loc
);
694 res
= wcstoumax_l(buf
, NULL
, base
, loc
);
696 *va_arg(ap
, void **) =
697 (void *)(uintptr_t)res
;
698 else if (flags
& SHORTSHORT
)
699 *va_arg(ap
, char *) = (char)res
;
700 else if (flags
& SHORT
)
701 *va_arg(ap
, short *) = (short)res
;
702 else if (flags
& LONG
)
703 *va_arg(ap
, long *) = (long)res
;
704 else if (flags
& LONGLONG
)
705 *va_arg(ap
, quad_t
*) = res
;
706 else if (flags
& INTMAXT
)
707 *va_arg(ap
, intmax_t *) = res
;
708 else if (flags
& PTRDIFFT
)
709 *va_arg(ap
, ptrdiff_t *) = (ptrdiff_t)res
;
710 else if (flags
& SIZET
)
711 *va_arg(ap
, size_t *) = (size_t)res
;
713 *va_arg(ap
, int *) = (int)res
;
716 _DIAGASSERT(__type_fit(int, p
- buf
));
717 nread
+= (int)(p
- buf
);
721 #ifndef NO_FLOATING_POINT
723 /* scan a floating point number as if by strtod */
724 if (width
== 0 || width
> sizeof(buf
) /
726 width
= sizeof(buf
) / sizeof(*buf
) - 1;
727 if ((width
= parsefloat(fp
, buf
, buf
+ width
, loc
)) == 0)
729 if ((flags
& SUPPRESS
) == 0) {
730 if (flags
& LONGDBL
) {
731 long double res
= wcstold_l(buf
, &p
,
733 *va_arg(ap
, long double *) = res
;
736 double res
= wcstod_l(buf
, &p
, loc
);
737 *va_arg(ap
, double *) = res
;
739 float res
= wcstof_l(buf
, &p
, loc
);
740 *va_arg(ap
, float *) = res
;
743 if (p
- buf
!= (ptrdiff_t)width
)
751 #endif /* !NO_FLOATING_POINT */
755 return nconversions
!= 0 ? nassigned
: EOF
;
760 #ifndef NO_FLOATING_POINT
762 parsefloat(FILE *fp
, wchar_t *buf
, wchar_t *end
, locale_t loc
)
767 S_START
, S_GOTSIGN
, S_INF
, S_NAN
, S_MAYBEHEX
,
768 S_DIGITS
, S_FRAC
, S_EXP
, S_EXPDIGITS
771 wchar_t decpt
= (wchar_t)(unsigned char)*localeconv_l(loc
)->decimal_point
;
772 int gotmantdig
= 0, ishex
= 0;
775 * We set commit = p whenever the string we have read so far
776 * constitutes a valid representation of a floating point
777 * number by itself. At some point, the parse will complete
778 * or fail, and we will ungetc() back to the last commit point.
779 * To ensure that the file offset gets updated properly, it is
780 * always necessary to read at least one character that doesn't
781 * match; thus, we can't short-circuit "infinity" or "nan(...)".
785 for (p
= buf
; p
< end
; ) {
786 if ((c
= __fgetwc_unlock(fp
)) == WEOF
)
792 if (c
== '-' || c
== '+')
817 (c
!= "nfinity"[infnanpos
] &&
818 c
!= "NFINITY"[infnanpos
]))
820 if (infnanpos
== 1 || infnanpos
== 6)
821 commit
= p
; /* inf or infinity */
826 case -1: /* XXX kludge to deal with nan(...) */
829 if (c
!= 'A' && c
!= 'a')
833 if (c
!= 'N' && c
!= 'n')
846 } else if (!iswalnum_l(c
, loc
) && c
!= '_')
854 if (c
== 'X' || c
== 'x') {
857 } else { /* we saw a '0', but no 'x' */
862 if ((ishex
&& iswxdigit_l(c
, loc
)) ||
874 if (((c
== 'E' || c
== 'e') && !ishex
) ||
875 ((c
== 'P' || c
== 'p') && ishex
)) {
880 } else if ((ishex
&& iswxdigit_l(c
, loc
)) ||
881 iswdigit_l(c
, loc
)) {
889 if (c
== '-' || c
== '+')
894 if (iswdigit_l(c
, loc
))
912 _DIAGASSERT(__type_fit(int, commit
- buf
));
913 return (int)(commit
- buf
);