1 /* $NetBSD: vfwscanf.c,v 1.12 2014/06/12 22:21:20 justin 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.12 2014/06/12 22:21:20 justin 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 };
183 p
= NULL
; /* XXXgcc */
188 if (iswspace_l(c
, loc
)) {
189 while ((c
= __fgetwc_unlock(fp
)) != WEOF
&&
201 * switch on the format. continue if done;
202 * break once format type is derived.
209 if ((wi
= __fgetwc_unlock(fp
)) == WEOF
)
232 flags
|= LONGLONG
; /* not quite */
251 case '0': case '1': case '2': case '3': case '4':
252 case '5': case '6': case '7': case '8': case '9':
253 width
= width
* 10 + c
- '0';
283 flags
|= PFXOK
; /* enable 0x prefixing */
289 #ifndef NO_FLOATING_POINT
290 case 'A': case 'E': case 'F': case 'G':
291 case 'a': case 'e': case 'f': case 'g':
312 while (*fmt
!= '\0' && *fmt
!= ']')
328 case 'p': /* pointer format is like hex */
329 flags
|= POINTER
| PFXOK
;
330 c
= CT_INT
; /* assumes sizeof(uintmax_t) */
331 flags
|= UNSIGNED
; /* >= sizeof(uintptr_t) */
337 if (flags
& SUPPRESS
) /* ??? */
339 if (flags
& SHORTSHORT
)
340 *va_arg(ap
, char *) = (char)nread
;
341 else if (flags
& SHORT
)
342 *va_arg(ap
, short *) = (short)nread
;
343 else if (flags
& LONG
)
344 *va_arg(ap
, long *) = nread
;
345 else if (flags
& LONGLONG
)
346 *va_arg(ap
, quad_t
*) = nread
;
347 else if (flags
& INTMAXT
)
348 *va_arg(ap
, intmax_t *) = nread
;
349 else if (flags
& SIZET
)
350 *va_arg(ap
, size_t *) = nread
;
351 else if (flags
& PTRDIFFT
)
352 *va_arg(ap
, ptrdiff_t *) = nread
;
354 *va_arg(ap
, int *) = (int)nread
;
361 * Disgusting backwards compatibility hack. XXX
363 case '\0': /* compat */
368 * Consume leading white space, except for formats
369 * that suppress this.
371 if ((flags
& NOSKIP
) == 0) {
372 while ((wi
= __fgetwc_unlock(fp
)) != WEOF
&&
386 /* scan arbitrary characters (sets NOSKIP) */
390 if (!(flags
& SUPPRESS
))
391 p
= va_arg(ap
, wchar_t *);
393 while (width
-- != 0 &&
394 (wi
= __fgetwc_unlock(fp
)) != WEOF
) {
395 if (!(flags
& SUPPRESS
))
402 if (!(flags
& SUPPRESS
))
405 if (!(flags
& SUPPRESS
))
406 mbp
= va_arg(ap
, char *);
410 (wi
= __fgetwc_unlock(fp
)) != WEOF
) {
411 if (width
>= MB_CUR_MAX_L(loc
) &&
412 !(flags
& SUPPRESS
)) {
413 nconv
= wcrtomb_l(mbp
, wi
,
415 if (nconv
== (size_t)-1)
418 nconv
= wcrtomb_l(mbbuf
, wi
,
420 if (nconv
== (size_t)-1)
426 if (!(flags
& SUPPRESS
))
430 if (!(flags
& SUPPRESS
))
438 if (!(flags
& SUPPRESS
))
445 /* scan a (nonempty) character class (sets NOSKIP) */
447 width
= (size_t)~0; /* `infinity' */
448 /* take only those things in the class */
449 if ((flags
& SUPPRESS
) && (flags
& LONG
)) {
451 while ((wi
= __fgetwc_unlock(fp
)) != WEOF
&&
452 width
-- != 0 && INCCL(wi
))
458 } else if (flags
& LONG
) {
459 p0
= p
= va_arg(ap
, wchar_t *);
460 while ((wi
= __fgetwc_unlock(fp
)) != WEOF
&&
461 width
-- != 0 && INCCL(wi
))
465 _DIAGASSERT(__type_fit(int, p
- p0
));
472 if (!(flags
& SUPPRESS
))
473 mbp
= va_arg(ap
, char *);
476 while ((wi
= __fgetwc_unlock(fp
)) != WEOF
&&
477 width
!= 0 && INCCL(wi
)) {
478 if (width
>= MB_CUR_MAX_L(loc
) &&
479 !(flags
& SUPPRESS
)) {
480 nconv
= wcrtomb_l(mbp
, wi
,
482 if (nconv
== (size_t)-1)
485 nconv
= wcrtomb_l(mbbuf
, wi
,
487 if (nconv
== (size_t)-1)
491 if (!(flags
& SUPPRESS
))
495 if (!(flags
& SUPPRESS
))
502 if (!(flags
& SUPPRESS
)) {
512 /* like CCL, but zero-length string OK, & no NOSKIP */
515 if ((flags
& SUPPRESS
) && (flags
& LONG
)) {
516 while ((wi
= __fgetwc_unlock(fp
)) != WEOF
&&
518 !iswspace_l(wi
, loc
))
522 } else if (flags
& LONG
) {
523 p0
= p
= va_arg(ap
, wchar_t *);
524 while ((wi
= __fgetwc_unlock(fp
)) != WEOF
&&
526 !iswspace_l(wi
, loc
)) {
535 if (!(flags
& SUPPRESS
))
536 mbp
= va_arg(ap
, char *);
538 while ((wi
= __fgetwc_unlock(fp
)) != WEOF
&&
540 !iswspace_l(wi
, loc
)) {
541 if (width
>= MB_CUR_MAX_L(loc
) &&
542 !(flags
& SUPPRESS
)) {
543 nconv
= wcrtomb_l(mbp
, wi
,
545 if (nconv
== (size_t)-1)
548 nconv
= wcrtomb_l(mbbuf
, wi
,
550 if (nconv
== (size_t)-1)
554 if (!(flags
& SUPPRESS
))
558 if (!(flags
& SUPPRESS
))
565 if (!(flags
& SUPPRESS
)) {
574 /* scan an integer as if by the conversion function */
575 if (width
== 0 || width
> sizeof(buf
) /
577 width
= sizeof(buf
) / sizeof(*buf
) - 1;
578 flags
|= SIGNOK
| NDIGITS
| NZDIGITS
;
579 for (p
= buf
; width
; width
--) {
580 c
= __fgetwc_unlock(fp
);
582 * Switch on the character; `goto ok'
583 * if we accept it as a part of number.
588 * The digit 0 is always legal, but is
589 * special. For %i conversions, if no
590 * digits (zero or nonzero) have been
591 * scanned (only signs), we will have
592 * base==0. In that case, we should set
593 * it to 8 and enable 0x prefixing.
594 * Also, if we have not scanned zero digits
595 * before this, do not turn off prefixing
596 * (someone else will turn it off if we
597 * have scanned any nonzero digits).
604 if (flags
& NZDIGITS
)
605 flags
&= ~(SIGNOK
|NZDIGITS
|NDIGITS
);
607 flags
&= ~(SIGNOK
|PFXOK
|NDIGITS
);
610 /* 1 through 7 always legal */
611 case '1': case '2': case '3':
612 case '4': case '5': case '6': case '7':
613 base
= basefix
[base
];
614 flags
&= ~(SIGNOK
| PFXOK
| NDIGITS
);
617 /* digits 8 and 9 ok iff decimal or hex */
619 base
= basefix
[base
];
621 break; /* not legal here */
622 flags
&= ~(SIGNOK
| PFXOK
| NDIGITS
);
625 /* letters ok iff hex */
626 case 'A': case 'B': case 'C':
627 case 'D': case 'E': case 'F':
628 case 'a': case 'b': case 'c':
629 case 'd': case 'e': case 'f':
630 /* no need to fix base here */
632 break; /* not legal here */
633 flags
&= ~(SIGNOK
| PFXOK
| NDIGITS
);
636 /* sign ok only as first character */
638 if (flags
& SIGNOK
) {
646 * x ok iff flag still set & 2nd char (or
647 * 3rd char if we have a sign).
650 if (flags
& PFXOK
&& p
==
651 buf
+ 1 + !!(flags
& HAVESIGN
)) {
652 base
= 16; /* if %i */
660 * If we got here, c is not a legal character
661 * for a number. Stop accumulating digits.
668 * c is legal: store it and look at the next.
673 * If we had only a sign, it is no good; push
674 * back the sign. If the number ends in `x',
675 * it was [sign] '0' 'x', so push back the x
676 * and treat it as [sign] '0'.
678 if (flags
& NDIGITS
) {
684 if (c
== 'x' || c
== 'X') {
688 if ((flags
& SUPPRESS
) == 0) {
692 if ((flags
& UNSIGNED
) == 0)
693 res
= wcstoimax_l(buf
, NULL
, base
, loc
);
695 res
= wcstoumax_l(buf
, NULL
, base
, loc
);
697 *va_arg(ap
, void **) =
698 (void *)(uintptr_t)res
;
699 else if (flags
& SHORTSHORT
)
700 *va_arg(ap
, char *) = (char)res
;
701 else if (flags
& SHORT
)
702 *va_arg(ap
, short *) = (short)res
;
703 else if (flags
& LONG
)
704 *va_arg(ap
, long *) = (long)res
;
705 else if (flags
& LONGLONG
)
706 *va_arg(ap
, quad_t
*) = res
;
707 else if (flags
& INTMAXT
)
708 *va_arg(ap
, intmax_t *) = res
;
709 else if (flags
& PTRDIFFT
)
710 *va_arg(ap
, ptrdiff_t *) = (ptrdiff_t)res
;
711 else if (flags
& SIZET
)
712 *va_arg(ap
, size_t *) = (size_t)res
;
714 *va_arg(ap
, int *) = (int)res
;
717 _DIAGASSERT(__type_fit(int, p
- buf
));
718 nread
+= (int)(p
- buf
);
722 #ifndef NO_FLOATING_POINT
724 /* scan a floating point number as if by strtod */
725 if (width
== 0 || width
> sizeof(buf
) /
727 width
= sizeof(buf
) / sizeof(*buf
) - 1;
728 if ((width
= parsefloat(fp
, buf
, buf
+ width
, loc
)) == 0)
730 if ((flags
& SUPPRESS
) == 0) {
731 if (flags
& LONGDBL
) {
732 long double res
= wcstold_l(buf
, &p
,
734 *va_arg(ap
, long double *) = res
;
737 double res
= wcstod_l(buf
, &p
, loc
);
738 *va_arg(ap
, double *) = res
;
740 float res
= wcstof_l(buf
, &p
, loc
);
741 *va_arg(ap
, float *) = res
;
744 if (p
- buf
!= (ptrdiff_t)width
)
752 #endif /* !NO_FLOATING_POINT */
756 return nconversions
!= 0 ? nassigned
: EOF
;
761 #ifndef NO_FLOATING_POINT
763 parsefloat(FILE *fp
, wchar_t *buf
, wchar_t *end
, locale_t loc
)
768 S_START
, S_GOTSIGN
, S_INF
, S_NAN
, S_MAYBEHEX
,
769 S_DIGITS
, S_FRAC
, S_EXP
, S_EXPDIGITS
772 wchar_t decpt
= (wchar_t)(unsigned char)*localeconv_l(loc
)->decimal_point
;
773 int gotmantdig
= 0, ishex
= 0;
776 * We set commit = p whenever the string we have read so far
777 * constitutes a valid representation of a floating point
778 * number by itself. At some point, the parse will complete
779 * or fail, and we will ungetc() back to the last commit point.
780 * To ensure that the file offset gets updated properly, it is
781 * always necessary to read at least one character that doesn't
782 * match; thus, we can't short-circuit "infinity" or "nan(...)".
786 for (p
= buf
; p
< end
; ) {
787 if ((c
= __fgetwc_unlock(fp
)) == WEOF
)
793 if (c
== '-' || c
== '+')
818 (c
!= "nfinity"[infnanpos
] &&
819 c
!= "NFINITY"[infnanpos
]))
821 if (infnanpos
== 1 || infnanpos
== 6)
822 commit
= p
; /* inf or infinity */
827 case -1: /* XXX kludge to deal with nan(...) */
830 if (c
!= 'A' && c
!= 'a')
834 if (c
!= 'N' && c
!= 'n')
847 } else if (!iswalnum_l(c
, loc
) && c
!= '_')
855 if (c
== 'X' || c
== 'x') {
858 } else { /* we saw a '0', but no 'x' */
863 if ((ishex
&& iswxdigit_l(c
, loc
)) ||
875 if (((c
== 'E' || c
== 'e') && !ishex
) ||
876 ((c
== 'P' || c
== 'p') && ishex
)) {
881 } else if ((ishex
&& iswxdigit_l(c
, loc
)) ||
882 iswdigit_l(c
, loc
)) {
890 if (c
== '-' || c
== '+')
895 if (iswdigit_l(c
, loc
))
913 _DIAGASSERT(__type_fit(int, commit
- buf
));
914 return (int)(commit
- buf
);