localedata: Make IBM273 compatible with ISO-8859-1 [BZ #23290]
[glibc.git] / stdio-common / vfscanf.c
blob3263268c7ea9a44dcb651843f0749a343b75097f
1 /* Copyright (C) 1991-2018 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
18 #include <assert.h>
19 #include <errno.h>
20 #include <limits.h>
21 #include <ctype.h>
22 #include <stdarg.h>
23 #include <stdbool.h>
24 #include <stdio.h>
25 #include <stdint.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <wchar.h>
29 #include <wctype.h>
30 #include <libc-diag.h>
31 #include <libc-lock.h>
32 #include <locale/localeinfo.h>
33 #include <scratch_buffer.h>
35 #ifdef __GNUC__
36 # define HAVE_LONGLONG
37 # define LONGLONG long long
38 #else
39 # define LONGLONG long
40 #endif
42 /* Determine whether we have to handle `long long' at all. */
43 #if LONG_MAX == LONG_LONG_MAX
44 # define need_longlong 0
45 #else
46 # define need_longlong 1
47 #endif
49 /* Determine whether we have to handle `long'. */
50 #if INT_MAX == LONG_MAX
51 # define need_long 0
52 #else
53 # define need_long 1
54 #endif
56 /* Those are flags in the conversion format. */
57 #define LONG 0x0001 /* l: long or double */
58 #define LONGDBL 0x0002 /* L: long long or long double */
59 #define SHORT 0x0004 /* h: short */
60 #define SUPPRESS 0x0008 /* *: suppress assignment */
61 #define POINTER 0x0010 /* weird %p pointer (`fake hex') */
62 #define NOSKIP 0x0020 /* do not skip blanks */
63 #define NUMBER_SIGNED 0x0040 /* signed integer */
64 #define GROUP 0x0080 /* ': group numbers */
65 #define GNU_MALLOC 0x0100 /* a: malloc strings */
66 #define CHAR 0x0200 /* hh: char */
67 #define I18N 0x0400 /* I: use locale's digits */
68 #define HEXA_FLOAT 0x0800 /* hexadecimal float */
69 #define READ_POINTER 0x1000 /* this is a pointer value */
70 #define POSIX_MALLOC 0x2000 /* m: malloc strings */
71 #define MALLOC (GNU_MALLOC | POSIX_MALLOC)
73 #include <locale/localeinfo.h>
74 #include <libioP.h>
76 #ifdef COMPILE_WSCANF
77 # define ungetc(c, s) ((void) (c == WEOF \
78 || (--read_in, \
79 _IO_sputbackwc (s, c))))
80 # define ungetc_not_eof(c, s) ((void) (--read_in, \
81 _IO_sputbackwc (s, c)))
82 # define inchar() (c == WEOF ? ((errno = inchar_errno), WEOF) \
83 : ((c = _IO_getwc_unlocked (s)), \
84 (void) (c != WEOF \
85 ? ++read_in \
86 : (size_t) (inchar_errno = errno)), c))
88 # define ISSPACE(Ch) iswspace (Ch)
89 # define ISDIGIT(Ch) iswdigit (Ch)
90 # define ISXDIGIT(Ch) iswxdigit (Ch)
91 # define TOLOWER(Ch) towlower (Ch)
92 # define ORIENT if (_IO_fwide (s, 1) != 1) return WEOF
93 # define __strtoll_internal __wcstoll_internal
94 # define __strtoull_internal __wcstoull_internal
95 # define __strtol_internal __wcstol_internal
96 # define __strtoul_internal __wcstoul_internal
97 # define __strtold_internal __wcstold_internal
98 # define __strtod_internal __wcstod_internal
99 # define __strtof_internal __wcstof_internal
101 # define L_(Str) L##Str
102 # define CHAR_T wchar_t
103 # define UCHAR_T unsigned int
104 # define WINT_T wint_t
105 # undef EOF
106 # define EOF WEOF
107 #else
108 # define ungetc(c, s) ((void) ((int) c == EOF \
109 || (--read_in, \
110 _IO_sputbackc (s, (unsigned char) c))))
111 # define ungetc_not_eof(c, s) ((void) (--read_in, \
112 _IO_sputbackc (s, (unsigned char) c)))
113 # define inchar() (c == EOF ? ((errno = inchar_errno), EOF) \
114 : ((c = _IO_getc_unlocked (s)), \
115 (void) (c != EOF \
116 ? ++read_in \
117 : (size_t) (inchar_errno = errno)), c))
118 # define ISSPACE(Ch) __isspace_l (Ch, loc)
119 # define ISDIGIT(Ch) __isdigit_l (Ch, loc)
120 # define ISXDIGIT(Ch) __isxdigit_l (Ch, loc)
121 # define TOLOWER(Ch) __tolower_l ((unsigned char) (Ch), loc)
122 # define ORIENT if (_IO_vtable_offset (s) == 0 \
123 && _IO_fwide (s, -1) != -1) \
124 return EOF
126 # define L_(Str) Str
127 # define CHAR_T char
128 # define UCHAR_T unsigned char
129 # define WINT_T int
130 #endif
132 #include "printf-parse.h" /* Use read_int. */
134 #define encode_error() do { \
135 errval = 4; \
136 __set_errno (EILSEQ); \
137 goto errout; \
138 } while (0)
139 #define conv_error() do { \
140 errval = 2; \
141 goto errout; \
142 } while (0)
143 #define input_error() do { \
144 errval = 1; \
145 if (done == 0) done = EOF; \
146 goto errout; \
147 } while (0)
148 #define add_ptr_to_free(ptr) \
149 do \
151 if (ptrs_to_free == NULL \
152 || ptrs_to_free->count == (sizeof (ptrs_to_free->ptrs) \
153 / sizeof (ptrs_to_free->ptrs[0]))) \
155 struct ptrs_to_free *new_ptrs = alloca (sizeof (*ptrs_to_free)); \
156 new_ptrs->count = 0; \
157 new_ptrs->next = ptrs_to_free; \
158 ptrs_to_free = new_ptrs; \
160 ptrs_to_free->ptrs[ptrs_to_free->count++] = (ptr); \
162 while (0)
163 #define ARGCHECK(s, format) \
164 do \
166 /* Check file argument for consistence. */ \
167 CHECK_FILE (s, EOF); \
168 if (s->_flags & _IO_NO_READS) \
170 __set_errno (EBADF); \
171 return EOF; \
173 else if (format == NULL) \
175 __set_errno (EINVAL); \
176 return EOF; \
178 } while (0)
179 #define LOCK_STREAM(S) \
180 __libc_cleanup_region_start (1, (void (*) (void *)) &_IO_funlockfile, (S)); \
181 _IO_flockfile (S)
182 #define UNLOCK_STREAM(S) \
183 _IO_funlockfile (S); \
184 __libc_cleanup_region_end (0)
186 struct ptrs_to_free
188 size_t count;
189 struct ptrs_to_free *next;
190 char **ptrs[32];
193 struct char_buffer {
194 CHAR_T *current;
195 CHAR_T *end;
196 struct scratch_buffer scratch;
199 /* Returns a pointer to the first CHAR_T object in the buffer. Only
200 valid if char_buffer_add (BUFFER, CH) has been called and
201 char_buffer_error (BUFFER) is false. */
202 static inline CHAR_T *
203 char_buffer_start (const struct char_buffer *buffer)
205 return (CHAR_T *) buffer->scratch.data;
208 /* Returns the number of CHAR_T objects in the buffer. Only valid if
209 char_buffer_error (BUFFER) is false. */
210 static inline size_t
211 char_buffer_size (const struct char_buffer *buffer)
213 return buffer->current - char_buffer_start (buffer);
216 /* Reinitializes BUFFER->current and BUFFER->end to cover the entire
217 scratch buffer. */
218 static inline void
219 char_buffer_rewind (struct char_buffer *buffer)
221 buffer->current = char_buffer_start (buffer);
222 buffer->end = buffer->current + buffer->scratch.length / sizeof (CHAR_T);
225 /* Returns true if a previous call to char_buffer_add (BUFFER, CH)
226 failed. */
227 static inline bool
228 char_buffer_error (const struct char_buffer *buffer)
230 return __glibc_unlikely (buffer->current == NULL);
233 /* Slow path for char_buffer_add. */
234 static void
235 char_buffer_add_slow (struct char_buffer *buffer, CHAR_T ch)
237 if (char_buffer_error (buffer))
238 return;
239 size_t offset = buffer->end - (CHAR_T *) buffer->scratch.data;
240 if (!scratch_buffer_grow_preserve (&buffer->scratch))
242 buffer->current = NULL;
243 buffer->end = NULL;
244 return;
246 char_buffer_rewind (buffer);
247 buffer->current += offset;
248 *buffer->current++ = ch;
251 /* Adds CH to BUFFER. This function does not report any errors, check
252 for them with char_buffer_error. */
253 static inline void
254 char_buffer_add (struct char_buffer *buffer, CHAR_T ch)
255 __attribute__ ((always_inline));
256 static inline void
257 char_buffer_add (struct char_buffer *buffer, CHAR_T ch)
259 if (__glibc_unlikely (buffer->current == buffer->end))
260 char_buffer_add_slow (buffer, ch);
261 else
262 *buffer->current++ = ch;
265 /* Read formatted input from S according to the format string
266 FORMAT, using the argument list in ARG.
267 Return the number of assignments made, or -1 for an input error. */
268 #ifdef COMPILE_WSCANF
270 _IO_vfwscanf (FILE *s, const wchar_t *format, va_list argptr,
271 int *errp)
272 #else
274 _IO_vfscanf_internal (FILE *s, const char *format, va_list argptr,
275 int *errp)
276 #endif
278 va_list arg;
279 const CHAR_T *f = format;
280 UCHAR_T fc; /* Current character of the format. */
281 WINT_T done = 0; /* Assignments done. */
282 size_t read_in = 0; /* Chars read in. */
283 WINT_T c = 0; /* Last char read. */
284 int width; /* Maximum field width. */
285 int flags; /* Modifiers for current format element. */
286 int errval = 0;
287 #ifndef COMPILE_WSCANF
288 locale_t loc = _NL_CURRENT_LOCALE;
289 struct __locale_data *const curctype = loc->__locales[LC_CTYPE];
290 #endif
292 /* Errno of last failed inchar call. */
293 int inchar_errno = 0;
294 /* Status for reading F-P nums. */
295 char got_digit, got_dot, got_e, negative;
296 /* If a [...] is a [^...]. */
297 CHAR_T not_in;
298 #define exp_char not_in
299 /* Base for integral numbers. */
300 int base;
301 /* Decimal point character. */
302 #ifdef COMPILE_WSCANF
303 wint_t decimal;
304 #else
305 const char *decimal;
306 #endif
307 /* The thousands character of the current locale. */
308 #ifdef COMPILE_WSCANF
309 wint_t thousands;
310 #else
311 const char *thousands;
312 #endif
313 struct ptrs_to_free *ptrs_to_free = NULL;
314 /* State for the conversions. */
315 mbstate_t state;
316 /* Integral holding variables. */
317 union
319 long long int q;
320 unsigned long long int uq;
321 long int l;
322 unsigned long int ul;
323 } num;
324 /* Character-buffer pointer. */
325 char *str = NULL;
326 wchar_t *wstr = NULL;
327 char **strptr = NULL;
328 ssize_t strsize = 0;
329 /* We must not react on white spaces immediately because they can
330 possibly be matched even if in the input stream no character is
331 available anymore. */
332 int skip_space = 0;
333 /* Workspace. */
334 CHAR_T *tw; /* Temporary pointer. */
335 struct char_buffer charbuf;
336 scratch_buffer_init (&charbuf.scratch);
338 #ifdef __va_copy
339 __va_copy (arg, argptr);
340 #else
341 arg = (va_list) argptr;
342 #endif
344 #ifdef ORIENT
345 ORIENT;
346 #endif
348 ARGCHECK (s, format);
351 #ifndef COMPILE_WSCANF
352 struct __locale_data *const curnumeric = loc->__locales[LC_NUMERIC];
353 #endif
355 /* Figure out the decimal point character. */
356 #ifdef COMPILE_WSCANF
357 decimal = _NL_CURRENT_WORD (LC_NUMERIC, _NL_NUMERIC_DECIMAL_POINT_WC);
358 #else
359 decimal = curnumeric->values[_NL_ITEM_INDEX (DECIMAL_POINT)].string;
360 #endif
361 /* Figure out the thousands separator character. */
362 #ifdef COMPILE_WSCANF
363 thousands = _NL_CURRENT_WORD (LC_NUMERIC, _NL_NUMERIC_THOUSANDS_SEP_WC);
364 #else
365 thousands = curnumeric->values[_NL_ITEM_INDEX (THOUSANDS_SEP)].string;
366 if (*thousands == '\0')
367 thousands = NULL;
368 #endif
371 /* Lock the stream. */
372 LOCK_STREAM (s);
375 #ifndef COMPILE_WSCANF
376 /* From now on we use `state' to convert the format string. */
377 memset (&state, '\0', sizeof (state));
378 #endif
380 /* Run through the format string. */
381 while (*f != '\0')
383 unsigned int argpos;
384 /* Extract the next argument, which is of type TYPE.
385 For a %N$... spec, this is the Nth argument from the beginning;
386 otherwise it is the next argument after the state now in ARG. */
387 #ifdef __va_copy
388 # define ARG(type) (argpos == 0 ? va_arg (arg, type) : \
389 ({ unsigned int pos = argpos; \
390 va_list arg; \
391 __va_copy (arg, argptr); \
392 while (--pos > 0) \
393 (void) va_arg (arg, void *); \
394 va_arg (arg, type); \
396 #else
397 # if 0
398 /* XXX Possible optimization. */
399 # define ARG(type) (argpos == 0 ? va_arg (arg, type) : \
400 ({ va_list arg = (va_list) argptr; \
401 arg = (va_list) ((char *) arg \
402 + (argpos - 1) \
403 * __va_rounded_size (void *)); \
404 va_arg (arg, type); \
406 # else
407 # define ARG(type) (argpos == 0 ? va_arg (arg, type) : \
408 ({ unsigned int pos = argpos; \
409 va_list arg = (va_list) argptr; \
410 while (--pos > 0) \
411 (void) va_arg (arg, void *); \
412 va_arg (arg, type); \
414 # endif
415 #endif
417 #ifndef COMPILE_WSCANF
418 if (!isascii ((unsigned char) *f))
420 /* Non-ASCII, may be a multibyte. */
421 int len = __mbrlen (f, strlen (f), &state);
422 if (len > 0)
426 c = inchar ();
427 if (__glibc_unlikely (c == EOF))
428 input_error ();
429 else if (c != (unsigned char) *f++)
431 ungetc_not_eof (c, s);
432 conv_error ();
435 while (--len > 0);
436 continue;
439 #endif
441 fc = *f++;
442 if (fc != '%')
444 /* Remember to skip spaces. */
445 if (ISSPACE (fc))
447 skip_space = 1;
448 continue;
451 /* Read a character. */
452 c = inchar ();
454 /* Characters other than format specs must just match. */
455 if (__glibc_unlikely (c == EOF))
456 input_error ();
458 /* We saw white space char as the last character in the format
459 string. Now it's time to skip all leading white space. */
460 if (skip_space)
462 while (ISSPACE (c))
463 if (__glibc_unlikely (inchar () == EOF))
464 input_error ();
465 skip_space = 0;
468 if (__glibc_unlikely (c != fc))
470 ungetc (c, s);
471 conv_error ();
474 continue;
477 /* This is the start of the conversion string. */
478 flags = 0;
480 /* Initialize state of modifiers. */
481 argpos = 0;
483 /* Prepare temporary buffer. */
484 char_buffer_rewind (&charbuf);
486 /* Check for a positional parameter specification. */
487 if (ISDIGIT ((UCHAR_T) *f))
489 argpos = read_int ((const UCHAR_T **) &f);
490 if (*f == L_('$'))
491 ++f;
492 else
494 /* Oops; that was actually the field width. */
495 width = argpos;
496 argpos = 0;
497 goto got_width;
501 /* Check for the assignment-suppressing, the number grouping flag,
502 and the signal to use the locale's digit representation. */
503 while (*f == L_('*') || *f == L_('\'') || *f == L_('I'))
504 switch (*f++)
506 case L_('*'):
507 flags |= SUPPRESS;
508 break;
509 case L_('\''):
510 #ifdef COMPILE_WSCANF
511 if (thousands != L'\0')
512 #else
513 if (thousands != NULL)
514 #endif
515 flags |= GROUP;
516 break;
517 case L_('I'):
518 flags |= I18N;
519 break;
522 /* Find the maximum field width. */
523 width = 0;
524 if (ISDIGIT ((UCHAR_T) *f))
525 width = read_int ((const UCHAR_T **) &f);
526 got_width:
527 if (width == 0)
528 width = -1;
530 /* Check for type modifiers. */
531 switch (*f++)
533 case L_('h'):
534 /* ints are short ints or chars. */
535 if (*f == L_('h'))
537 ++f;
538 flags |= CHAR;
540 else
541 flags |= SHORT;
542 break;
543 case L_('l'):
544 if (*f == L_('l'))
546 /* A double `l' is equivalent to an `L'. */
547 ++f;
548 flags |= LONGDBL | LONG;
550 else
551 /* ints are long ints. */
552 flags |= LONG;
553 break;
554 case L_('q'):
555 case L_('L'):
556 /* doubles are long doubles, and ints are long long ints. */
557 flags |= LONGDBL | LONG;
558 break;
559 case L_('a'):
560 /* The `a' is used as a flag only if followed by `s', `S' or
561 `['. */
562 if (*f != L_('s') && *f != L_('S') && *f != L_('['))
564 --f;
565 break;
567 /* In __isoc99_*scanf %as, %aS and %a[ extension is not
568 supported at all. */
569 if (s->_flags2 & _IO_FLAGS2_SCANF_STD)
571 --f;
572 break;
574 /* String conversions (%s, %[) take a `char **'
575 arg and fill it in with a malloc'd pointer. */
576 flags |= GNU_MALLOC;
577 break;
578 case L_('m'):
579 flags |= POSIX_MALLOC;
580 if (*f == L_('l'))
582 ++f;
583 flags |= LONG;
585 break;
586 case L_('z'):
587 if (need_longlong && sizeof (size_t) > sizeof (unsigned long int))
588 flags |= LONGDBL;
589 else if (sizeof (size_t) > sizeof (unsigned int))
590 flags |= LONG;
591 break;
592 case L_('j'):
593 if (need_longlong && sizeof (uintmax_t) > sizeof (unsigned long int))
594 flags |= LONGDBL;
595 else if (sizeof (uintmax_t) > sizeof (unsigned int))
596 flags |= LONG;
597 break;
598 case L_('t'):
599 if (need_longlong && sizeof (ptrdiff_t) > sizeof (long int))
600 flags |= LONGDBL;
601 else if (sizeof (ptrdiff_t) > sizeof (int))
602 flags |= LONG;
603 break;
604 default:
605 /* Not a recognized modifier. Backup. */
606 --f;
607 break;
610 /* End of the format string? */
611 if (__glibc_unlikely (*f == L_('\0')))
612 conv_error ();
614 /* Find the conversion specifier. */
615 fc = *f++;
616 if (skip_space || (fc != L_('[') && fc != L_('c')
617 && fc != L_('C') && fc != L_('n')))
619 /* Eat whitespace. */
620 int save_errno = errno;
621 __set_errno (0);
623 /* We add the additional test for EOF here since otherwise
624 inchar will restore the old errno value which might be
625 EINTR but does not indicate an interrupt since nothing
626 was read at this time. */
627 if (__builtin_expect ((c == EOF || inchar () == EOF)
628 && errno == EINTR, 0))
629 input_error ();
630 while (ISSPACE (c));
631 __set_errno (save_errno);
632 ungetc (c, s);
633 skip_space = 0;
636 switch (fc)
638 case L_('%'): /* Must match a literal '%'. */
639 c = inchar ();
640 if (__glibc_unlikely (c == EOF))
641 input_error ();
642 if (__glibc_unlikely (c != fc))
644 ungetc_not_eof (c, s);
645 conv_error ();
647 break;
649 case L_('n'): /* Answer number of assignments done. */
650 /* Corrigendum 1 to ISO C 1990 describes the allowed flags
651 with the 'n' conversion specifier. */
652 if (!(flags & SUPPRESS))
654 /* Don't count the read-ahead. */
655 if (need_longlong && (flags & LONGDBL))
656 *ARG (long long int *) = read_in;
657 else if (need_long && (flags & LONG))
658 *ARG (long int *) = read_in;
659 else if (flags & SHORT)
660 *ARG (short int *) = read_in;
661 else if (!(flags & CHAR))
662 *ARG (int *) = read_in;
663 else
664 *ARG (char *) = read_in;
666 #ifdef NO_BUG_IN_ISO_C_CORRIGENDUM_1
667 /* We have a severe problem here. The ISO C standard
668 contradicts itself in explaining the effect of the %n
669 format in `scanf'. While in ISO C:1990 and the ISO C
670 Amendement 1:1995 the result is described as
672 Execution of a %n directive does not effect the
673 assignment count returned at the completion of
674 execution of the f(w)scanf function.
676 in ISO C Corrigendum 1:1994 the following was added:
678 Subclause 7.9.6.2
679 Add the following fourth example:
681 #include <stdio.h>
682 int d1, d2, n1, n2, i;
683 i = sscanf("123", "%d%n%n%d", &d1, &n1, &n2, &d2);
684 the value 123 is assigned to d1 and the value3 to n1.
685 Because %n can never get an input failure the value
686 of 3 is also assigned to n2. The value of d2 is not
687 affected. The value 3 is assigned to i.
689 We go for now with the historically correct code from ISO C,
690 i.e., we don't count the %n assignments. When it ever
691 should proof to be wrong just remove the #ifdef above. */
692 ++done;
693 #endif
695 break;
697 case L_('c'): /* Match characters. */
698 if ((flags & LONG) == 0)
700 if (width == -1)
701 width = 1;
703 #define STRING_ARG(Str, Type, Width) \
704 do if (!(flags & SUPPRESS)) \
706 if (flags & MALLOC) \
708 /* The string is to be stored in a malloc'd buffer. */ \
709 /* For %mS using char ** is actually wrong, but \
710 shouldn't make a difference on any arch glibc \
711 supports and would unnecessarily complicate \
712 things. */ \
713 strptr = ARG (char **); \
714 if (strptr == NULL) \
715 conv_error (); \
716 /* Allocate an initial buffer. */ \
717 strsize = Width; \
718 *strptr = (char *) malloc (strsize * sizeof (Type)); \
719 Str = (Type *) *strptr; \
720 if (Str != NULL) \
721 add_ptr_to_free (strptr); \
722 else if (flags & POSIX_MALLOC) \
724 done = EOF; \
725 goto errout; \
728 else \
729 Str = ARG (Type *); \
730 if (Str == NULL) \
731 conv_error (); \
732 } while (0)
733 #ifdef COMPILE_WSCANF
734 STRING_ARG (str, char, 100);
735 #else
736 STRING_ARG (str, char, (width > 1024 ? 1024 : width));
737 #endif
739 c = inchar ();
740 if (__glibc_unlikely (c == EOF))
741 input_error ();
743 #ifdef COMPILE_WSCANF
744 /* We have to convert the wide character(s) into multibyte
745 characters and store the result. */
746 memset (&state, '\0', sizeof (state));
750 size_t n;
752 if (!(flags & SUPPRESS) && (flags & POSIX_MALLOC)
753 && *strptr + strsize - str <= MB_LEN_MAX)
755 /* We have to enlarge the buffer if the `m' flag
756 was given. */
757 size_t strleng = str - *strptr;
758 char *newstr;
760 newstr = (char *) realloc (*strptr, strsize * 2);
761 if (newstr == NULL)
763 /* Can't allocate that much. Last-ditch effort. */
764 newstr = (char *) realloc (*strptr,
765 strleng + MB_LEN_MAX);
766 if (newstr == NULL)
768 /* c can't have `a' flag, only `m'. */
769 done = EOF;
770 goto errout;
772 else
774 *strptr = newstr;
775 str = newstr + strleng;
776 strsize = strleng + MB_LEN_MAX;
779 else
781 *strptr = newstr;
782 str = newstr + strleng;
783 strsize *= 2;
787 n = __wcrtomb (!(flags & SUPPRESS) ? str : NULL, c, &state);
788 if (__glibc_unlikely (n == (size_t) -1))
789 /* No valid wide character. */
790 input_error ();
792 /* Increment the output pointer. Even if we don't
793 write anything. */
794 str += n;
796 while (--width > 0 && inchar () != EOF);
797 #else
798 if (!(flags & SUPPRESS))
802 if ((flags & MALLOC)
803 && (char *) str == *strptr + strsize)
805 /* Enlarge the buffer. */
806 size_t newsize
807 = strsize
808 + (strsize >= width ? width - 1 : strsize);
810 str = (char *) realloc (*strptr, newsize);
811 if (str == NULL)
813 /* Can't allocate that much. Last-ditch
814 effort. */
815 str = (char *) realloc (*strptr, strsize + 1);
816 if (str == NULL)
818 /* c can't have `a' flag, only `m'. */
819 done = EOF;
820 goto errout;
822 else
824 *strptr = (char *) str;
825 str += strsize;
826 ++strsize;
829 else
831 *strptr = (char *) str;
832 str += strsize;
833 strsize = newsize;
836 *str++ = c;
838 while (--width > 0 && inchar () != EOF);
840 else
841 while (--width > 0 && inchar () != EOF);
842 #endif
844 if (!(flags & SUPPRESS))
846 if ((flags & MALLOC) && str - *strptr != strsize)
848 char *cp = (char *) realloc (*strptr, str - *strptr);
849 if (cp != NULL)
850 *strptr = cp;
852 strptr = NULL;
853 ++done;
856 break;
858 /* FALLTHROUGH */
859 case L_('C'):
860 if (width == -1)
861 width = 1;
863 STRING_ARG (wstr, wchar_t, (width > 1024 ? 1024 : width));
865 c = inchar ();
866 if (__glibc_unlikely (c == EOF))
867 input_error ();
869 #ifdef COMPILE_WSCANF
870 /* Just store the incoming wide characters. */
871 if (!(flags & SUPPRESS))
875 if ((flags & MALLOC)
876 && wstr == (wchar_t *) *strptr + strsize)
878 size_t newsize
879 = strsize + (strsize > width ? width - 1 : strsize);
880 /* Enlarge the buffer. */
881 wstr = (wchar_t *) realloc (*strptr,
882 newsize * sizeof (wchar_t));
883 if (wstr == NULL)
885 /* Can't allocate that much. Last-ditch effort. */
886 wstr = (wchar_t *) realloc (*strptr,
887 (strsize + 1)
888 * sizeof (wchar_t));
889 if (wstr == NULL)
891 /* C or lc can't have `a' flag, only `m'
892 flag. */
893 done = EOF;
894 goto errout;
896 else
898 *strptr = (char *) wstr;
899 wstr += strsize;
900 ++strsize;
903 else
905 *strptr = (char *) wstr;
906 wstr += strsize;
907 strsize = newsize;
910 *wstr++ = c;
912 while (--width > 0 && inchar () != EOF);
914 else
915 while (--width > 0 && inchar () != EOF);
916 #else
918 /* We have to convert the multibyte input sequence to wide
919 characters. */
920 char buf[1];
921 mbstate_t cstate;
923 memset (&cstate, '\0', sizeof (cstate));
927 /* This is what we present the mbrtowc function first. */
928 buf[0] = c;
930 if (!(flags & SUPPRESS) && (flags & MALLOC)
931 && wstr == (wchar_t *) *strptr + strsize)
933 size_t newsize
934 = strsize + (strsize > width ? width - 1 : strsize);
935 /* Enlarge the buffer. */
936 wstr = (wchar_t *) realloc (*strptr,
937 newsize * sizeof (wchar_t));
938 if (wstr == NULL)
940 /* Can't allocate that much. Last-ditch effort. */
941 wstr = (wchar_t *) realloc (*strptr,
942 ((strsize + 1)
943 * sizeof (wchar_t)));
944 if (wstr == NULL)
946 /* C or lc can't have `a' flag, only `m' flag. */
947 done = EOF;
948 goto errout;
950 else
952 *strptr = (char *) wstr;
953 wstr += strsize;
954 ++strsize;
957 else
959 *strptr = (char *) wstr;
960 wstr += strsize;
961 strsize = newsize;
965 while (1)
967 size_t n;
969 n = __mbrtowc (!(flags & SUPPRESS) ? wstr : NULL,
970 buf, 1, &cstate);
972 if (n == (size_t) -2)
974 /* Possibly correct character, just not enough
975 input. */
976 if (__glibc_unlikely (inchar () == EOF))
977 encode_error ();
979 buf[0] = c;
980 continue;
983 if (__glibc_unlikely (n != 1))
984 encode_error ();
986 /* We have a match. */
987 break;
990 /* Advance the result pointer. */
991 ++wstr;
993 while (--width > 0 && inchar () != EOF);
995 #endif
997 if (!(flags & SUPPRESS))
999 if ((flags & MALLOC) && wstr - (wchar_t *) *strptr != strsize)
1001 wchar_t *cp = (wchar_t *) realloc (*strptr,
1002 ((wstr
1003 - (wchar_t *) *strptr)
1004 * sizeof (wchar_t)));
1005 if (cp != NULL)
1006 *strptr = (char *) cp;
1008 strptr = NULL;
1010 ++done;
1013 break;
1015 case L_('s'): /* Read a string. */
1016 if (!(flags & LONG))
1018 STRING_ARG (str, char, 100);
1020 c = inchar ();
1021 if (__glibc_unlikely (c == EOF))
1022 input_error ();
1024 #ifdef COMPILE_WSCANF
1025 memset (&state, '\0', sizeof (state));
1026 #endif
1030 if (ISSPACE (c))
1032 ungetc_not_eof (c, s);
1033 break;
1036 #ifdef COMPILE_WSCANF
1037 /* This is quite complicated. We have to convert the
1038 wide characters into multibyte characters and then
1039 store them. */
1041 size_t n;
1043 if (!(flags & SUPPRESS) && (flags & MALLOC)
1044 && *strptr + strsize - str <= MB_LEN_MAX)
1046 /* We have to enlarge the buffer if the `a' or `m'
1047 flag was given. */
1048 size_t strleng = str - *strptr;
1049 char *newstr;
1051 newstr = (char *) realloc (*strptr, strsize * 2);
1052 if (newstr == NULL)
1054 /* Can't allocate that much. Last-ditch
1055 effort. */
1056 newstr = (char *) realloc (*strptr,
1057 strleng + MB_LEN_MAX);
1058 if (newstr == NULL)
1060 if (flags & POSIX_MALLOC)
1062 done = EOF;
1063 goto errout;
1065 /* We lose. Oh well. Terminate the
1066 string and stop converting,
1067 so at least we don't skip any input. */
1068 ((char *) (*strptr))[strleng] = '\0';
1069 strptr = NULL;
1070 ++done;
1071 conv_error ();
1073 else
1075 *strptr = newstr;
1076 str = newstr + strleng;
1077 strsize = strleng + MB_LEN_MAX;
1080 else
1082 *strptr = newstr;
1083 str = newstr + strleng;
1084 strsize *= 2;
1088 n = __wcrtomb (!(flags & SUPPRESS) ? str : NULL, c,
1089 &state);
1090 if (__glibc_unlikely (n == (size_t) -1))
1091 encode_error ();
1093 assert (n <= MB_LEN_MAX);
1094 str += n;
1096 #else
1097 /* This is easy. */
1098 if (!(flags & SUPPRESS))
1100 *str++ = c;
1101 if ((flags & MALLOC)
1102 && (char *) str == *strptr + strsize)
1104 /* Enlarge the buffer. */
1105 str = (char *) realloc (*strptr, 2 * strsize);
1106 if (str == NULL)
1108 /* Can't allocate that much. Last-ditch
1109 effort. */
1110 str = (char *) realloc (*strptr, strsize + 1);
1111 if (str == NULL)
1113 if (flags & POSIX_MALLOC)
1115 done = EOF;
1116 goto errout;
1118 /* We lose. Oh well. Terminate the
1119 string and stop converting,
1120 so at least we don't skip any input. */
1121 ((char *) (*strptr))[strsize - 1] = '\0';
1122 strptr = NULL;
1123 ++done;
1124 conv_error ();
1126 else
1128 *strptr = (char *) str;
1129 str += strsize;
1130 ++strsize;
1133 else
1135 *strptr = (char *) str;
1136 str += strsize;
1137 strsize *= 2;
1141 #endif
1143 while ((width <= 0 || --width > 0) && inchar () != EOF);
1145 if (!(flags & SUPPRESS))
1147 #ifdef COMPILE_WSCANF
1148 /* We have to emit the code to get into the initial
1149 state. */
1150 char buf[MB_LEN_MAX];
1151 size_t n = __wcrtomb (buf, L'\0', &state);
1152 if (n > 0 && (flags & MALLOC)
1153 && str + n >= *strptr + strsize)
1155 /* Enlarge the buffer. */
1156 size_t strleng = str - *strptr;
1157 char *newstr;
1159 newstr = (char *) realloc (*strptr, strleng + n + 1);
1160 if (newstr == NULL)
1162 if (flags & POSIX_MALLOC)
1164 done = EOF;
1165 goto errout;
1167 /* We lose. Oh well. Terminate the string
1168 and stop converting, so at least we don't
1169 skip any input. */
1170 ((char *) (*strptr))[strleng] = '\0';
1171 strptr = NULL;
1172 ++done;
1173 conv_error ();
1175 else
1177 *strptr = newstr;
1178 str = newstr + strleng;
1179 strsize = strleng + n + 1;
1183 str = __mempcpy (str, buf, n);
1184 #endif
1185 *str++ = '\0';
1187 if ((flags & MALLOC) && str - *strptr != strsize)
1189 char *cp = (char *) realloc (*strptr, str - *strptr);
1190 if (cp != NULL)
1191 *strptr = cp;
1193 strptr = NULL;
1195 ++done;
1197 break;
1199 /* FALLTHROUGH */
1201 case L_('S'):
1203 #ifndef COMPILE_WSCANF
1204 mbstate_t cstate;
1205 #endif
1207 /* Wide character string. */
1208 STRING_ARG (wstr, wchar_t, 100);
1210 c = inchar ();
1211 if (__builtin_expect (c == EOF, 0))
1212 input_error ();
1214 #ifndef COMPILE_WSCANF
1215 memset (&cstate, '\0', sizeof (cstate));
1216 #endif
1220 if (ISSPACE (c))
1222 ungetc_not_eof (c, s);
1223 break;
1226 #ifdef COMPILE_WSCANF
1227 /* This is easy. */
1228 if (!(flags & SUPPRESS))
1230 *wstr++ = c;
1231 if ((flags & MALLOC)
1232 && wstr == (wchar_t *) *strptr + strsize)
1234 /* Enlarge the buffer. */
1235 wstr = (wchar_t *) realloc (*strptr,
1236 (2 * strsize)
1237 * sizeof (wchar_t));
1238 if (wstr == NULL)
1240 /* Can't allocate that much. Last-ditch
1241 effort. */
1242 wstr = (wchar_t *) realloc (*strptr,
1243 (strsize + 1)
1244 * sizeof (wchar_t));
1245 if (wstr == NULL)
1247 if (flags & POSIX_MALLOC)
1249 done = EOF;
1250 goto errout;
1252 /* We lose. Oh well. Terminate the string
1253 and stop converting, so at least we don't
1254 skip any input. */
1255 ((wchar_t *) (*strptr))[strsize - 1] = L'\0';
1256 strptr = NULL;
1257 ++done;
1258 conv_error ();
1260 else
1262 *strptr = (char *) wstr;
1263 wstr += strsize;
1264 ++strsize;
1267 else
1269 *strptr = (char *) wstr;
1270 wstr += strsize;
1271 strsize *= 2;
1275 #else
1277 char buf[1];
1279 buf[0] = c;
1281 while (1)
1283 size_t n;
1285 n = __mbrtowc (!(flags & SUPPRESS) ? wstr : NULL,
1286 buf, 1, &cstate);
1288 if (n == (size_t) -2)
1290 /* Possibly correct character, just not enough
1291 input. */
1292 if (__glibc_unlikely (inchar () == EOF))
1293 encode_error ();
1295 buf[0] = c;
1296 continue;
1299 if (__glibc_unlikely (n != 1))
1300 encode_error ();
1302 /* We have a match. */
1303 ++wstr;
1304 break;
1307 if (!(flags & SUPPRESS) && (flags & MALLOC)
1308 && wstr == (wchar_t *) *strptr + strsize)
1310 /* Enlarge the buffer. */
1311 wstr = (wchar_t *) realloc (*strptr,
1312 (2 * strsize
1313 * sizeof (wchar_t)));
1314 if (wstr == NULL)
1316 /* Can't allocate that much. Last-ditch effort. */
1317 wstr = (wchar_t *) realloc (*strptr,
1318 ((strsize + 1)
1319 * sizeof (wchar_t)));
1320 if (wstr == NULL)
1322 if (flags & POSIX_MALLOC)
1324 done = EOF;
1325 goto errout;
1327 /* We lose. Oh well. Terminate the
1328 string and stop converting, so at
1329 least we don't skip any input. */
1330 ((wchar_t *) (*strptr))[strsize - 1] = L'\0';
1331 strptr = NULL;
1332 ++done;
1333 conv_error ();
1335 else
1337 *strptr = (char *) wstr;
1338 wstr += strsize;
1339 ++strsize;
1342 else
1344 *strptr = (char *) wstr;
1345 wstr += strsize;
1346 strsize *= 2;
1350 #endif
1352 while ((width <= 0 || --width > 0) && inchar () != EOF);
1354 if (!(flags & SUPPRESS))
1356 *wstr++ = L'\0';
1358 if ((flags & MALLOC) && wstr - (wchar_t *) *strptr != strsize)
1360 wchar_t *cp = (wchar_t *) realloc (*strptr,
1361 ((wstr
1362 - (wchar_t *) *strptr)
1363 * sizeof(wchar_t)));
1364 if (cp != NULL)
1365 *strptr = (char *) cp;
1367 strptr = NULL;
1369 ++done;
1372 break;
1374 case L_('x'): /* Hexadecimal integer. */
1375 case L_('X'): /* Ditto. */
1376 base = 16;
1377 goto number;
1379 case L_('o'): /* Octal integer. */
1380 base = 8;
1381 goto number;
1383 case L_('u'): /* Unsigned decimal integer. */
1384 base = 10;
1385 goto number;
1387 case L_('d'): /* Signed decimal integer. */
1388 base = 10;
1389 flags |= NUMBER_SIGNED;
1390 goto number;
1392 case L_('i'): /* Generic number. */
1393 base = 0;
1394 flags |= NUMBER_SIGNED;
1396 number:
1397 c = inchar ();
1398 if (__glibc_unlikely (c == EOF))
1399 input_error ();
1401 /* Check for a sign. */
1402 if (c == L_('-') || c == L_('+'))
1404 char_buffer_add (&charbuf, c);
1405 if (width > 0)
1406 --width;
1407 c = inchar ();
1410 /* Look for a leading indication of base. */
1411 if (width != 0 && c == L_('0'))
1413 if (width > 0)
1414 --width;
1416 char_buffer_add (&charbuf, c);
1417 c = inchar ();
1419 if (width != 0 && TOLOWER (c) == L_('x'))
1421 if (base == 0)
1422 base = 16;
1423 if (base == 16)
1425 if (width > 0)
1426 --width;
1427 c = inchar ();
1430 else if (base == 0)
1431 base = 8;
1434 if (base == 0)
1435 base = 10;
1437 if (base == 10 && __builtin_expect ((flags & I18N) != 0, 0))
1439 int from_level;
1440 int to_level;
1441 int level;
1442 #ifdef COMPILE_WSCANF
1443 const wchar_t *wcdigits[10];
1444 const wchar_t *wcdigits_extended[10];
1445 #else
1446 const char *mbdigits[10];
1447 const char *mbdigits_extended[10];
1448 #endif
1449 /* "to_inpunct" is a map from ASCII digits to their
1450 equivalent in locale. This is defined for locales
1451 which use an extra digits set. */
1452 wctrans_t map = __wctrans ("to_inpunct");
1453 int n;
1455 from_level = 0;
1456 #ifdef COMPILE_WSCANF
1457 to_level = _NL_CURRENT_WORD (LC_CTYPE,
1458 _NL_CTYPE_INDIGITS_WC_LEN) - 1;
1459 #else
1460 to_level = (uint32_t) curctype->values[_NL_ITEM_INDEX (_NL_CTYPE_INDIGITS_MB_LEN)].word - 1;
1461 #endif
1463 /* Get the alternative digit forms if there are any. */
1464 if (__glibc_unlikely (map != NULL))
1466 /* Adding new level for extra digits set in locale file. */
1467 ++to_level;
1469 for (n = 0; n < 10; ++n)
1471 #ifdef COMPILE_WSCANF
1472 wcdigits[n] = (const wchar_t *)
1473 _NL_CURRENT (LC_CTYPE, _NL_CTYPE_INDIGITS0_WC + n);
1475 wchar_t *wc_extended = (wchar_t *)
1476 alloca ((to_level + 2) * sizeof (wchar_t));
1477 __wmemcpy (wc_extended, wcdigits[n], to_level);
1478 wc_extended[to_level] = __towctrans (L'0' + n, map);
1479 wc_extended[to_level + 1] = '\0';
1480 wcdigits_extended[n] = wc_extended;
1481 #else
1482 mbdigits[n]
1483 = curctype->values[_NL_CTYPE_INDIGITS0_MB + n].string;
1485 /* Get the equivalent wide char in map. */
1486 wint_t extra_wcdigit = __towctrans (L'0' + n, map);
1488 /* Convert it to multibyte representation. */
1489 mbstate_t state;
1490 memset (&state, '\0', sizeof (state));
1492 char extra_mbdigit[MB_LEN_MAX];
1493 size_t mblen
1494 = __wcrtomb (extra_mbdigit, extra_wcdigit, &state);
1496 if (mblen == (size_t) -1)
1498 /* Ignore this new level. */
1499 map = NULL;
1500 break;
1503 /* Calculate the length of mbdigits[n]. */
1504 const char *last_char = mbdigits[n];
1505 for (level = 0; level < to_level; ++level)
1506 last_char = strchr (last_char, '\0') + 1;
1508 size_t mbdigits_len = last_char - mbdigits[n];
1510 /* Allocate memory for extended multibyte digit. */
1511 char *mb_extended;
1512 mb_extended = (char *) alloca (mbdigits_len + mblen + 1);
1514 /* And get the mbdigits + extra_digit string. */
1515 *(char *) __mempcpy (__mempcpy (mb_extended, mbdigits[n],
1516 mbdigits_len),
1517 extra_mbdigit, mblen) = '\0';
1518 mbdigits_extended[n] = mb_extended;
1519 #endif
1523 /* Read the number into workspace. */
1524 while (c != EOF && width != 0)
1526 /* In this round we get the pointer to the digit strings
1527 and also perform the first round of comparisons. */
1528 for (n = 0; n < 10; ++n)
1530 /* Get the string for the digits with value N. */
1531 #ifdef COMPILE_WSCANF
1533 /* wcdigits_extended[] is fully set in the loop
1534 above, but the test for "map != NULL" is done
1535 inside the loop here and outside the loop there. */
1536 DIAG_PUSH_NEEDS_COMMENT;
1537 DIAG_IGNORE_NEEDS_COMMENT (4.7, "-Wmaybe-uninitialized");
1539 if (__glibc_unlikely (map != NULL))
1540 wcdigits[n] = wcdigits_extended[n];
1541 else
1542 wcdigits[n] = (const wchar_t *)
1543 _NL_CURRENT (LC_CTYPE, _NL_CTYPE_INDIGITS0_WC + n);
1544 wcdigits[n] += from_level;
1546 DIAG_POP_NEEDS_COMMENT;
1548 if (c == (wint_t) *wcdigits[n])
1550 to_level = from_level;
1551 break;
1554 /* Advance the pointer to the next string. */
1555 ++wcdigits[n];
1556 #else
1557 const char *cmpp;
1558 int avail = width > 0 ? width : INT_MAX;
1560 if (__glibc_unlikely (map != NULL))
1561 mbdigits[n] = mbdigits_extended[n];
1562 else
1563 mbdigits[n]
1564 = curctype->values[_NL_CTYPE_INDIGITS0_MB + n].string;
1566 for (level = 0; level < from_level; level++)
1567 mbdigits[n] = strchr (mbdigits[n], '\0') + 1;
1569 cmpp = mbdigits[n];
1570 while ((unsigned char) *cmpp == c && avail >= 0)
1572 if (*++cmpp == '\0')
1573 break;
1574 else
1576 if (avail == 0 || inchar () == EOF)
1577 break;
1578 --avail;
1582 if (*cmpp == '\0')
1584 if (width > 0)
1585 width = avail;
1586 to_level = from_level;
1587 break;
1590 /* We are pushing all read characters back. */
1591 if (cmpp > mbdigits[n])
1593 ungetc (c, s);
1594 while (--cmpp > mbdigits[n])
1595 ungetc_not_eof ((unsigned char) *cmpp, s);
1596 c = (unsigned char) *cmpp;
1599 /* Advance the pointer to the next string. */
1600 mbdigits[n] = strchr (mbdigits[n], '\0') + 1;
1601 #endif
1604 if (n == 10)
1606 /* Have not yet found the digit. */
1607 for (level = from_level + 1; level <= to_level; ++level)
1609 /* Search all ten digits of this level. */
1610 for (n = 0; n < 10; ++n)
1612 #ifdef COMPILE_WSCANF
1613 if (c == (wint_t) *wcdigits[n])
1614 break;
1616 /* Advance the pointer to the next string. */
1617 ++wcdigits[n];
1618 #else
1619 const char *cmpp;
1620 int avail = width > 0 ? width : INT_MAX;
1622 cmpp = mbdigits[n];
1623 while ((unsigned char) *cmpp == c && avail >= 0)
1625 if (*++cmpp == '\0')
1626 break;
1627 else
1629 if (avail == 0 || inchar () == EOF)
1630 break;
1631 --avail;
1635 if (*cmpp == '\0')
1637 if (width > 0)
1638 width = avail;
1639 break;
1642 /* We are pushing all read characters back. */
1643 if (cmpp > mbdigits[n])
1645 ungetc (c, s);
1646 while (--cmpp > mbdigits[n])
1647 ungetc_not_eof ((unsigned char) *cmpp, s);
1648 c = (unsigned char) *cmpp;
1651 /* Advance the pointer to the next string. */
1652 mbdigits[n] = strchr (mbdigits[n], '\0') + 1;
1653 #endif
1656 if (n < 10)
1658 /* Found it. */
1659 from_level = level;
1660 to_level = level;
1661 break;
1666 if (n < 10)
1667 c = L_('0') + n;
1668 else if (flags & GROUP)
1670 /* Try matching against the thousands separator. */
1671 #ifdef COMPILE_WSCANF
1672 if (c != thousands)
1673 break;
1674 #else
1675 const char *cmpp = thousands;
1676 int avail = width > 0 ? width : INT_MAX;
1678 while ((unsigned char) *cmpp == c && avail >= 0)
1680 char_buffer_add (&charbuf, c);
1681 if (*++cmpp == '\0')
1682 break;
1683 else
1685 if (avail == 0 || inchar () == EOF)
1686 break;
1687 --avail;
1691 if (char_buffer_error (&charbuf))
1693 __set_errno (ENOMEM);
1694 done = EOF;
1695 goto errout;
1698 if (*cmpp != '\0')
1700 /* We are pushing all read characters back. */
1701 if (cmpp > thousands)
1703 charbuf.current -= cmpp - thousands;
1704 ungetc (c, s);
1705 while (--cmpp > thousands)
1706 ungetc_not_eof ((unsigned char) *cmpp, s);
1707 c = (unsigned char) *cmpp;
1709 break;
1712 if (width > 0)
1713 width = avail;
1715 /* The last thousands character will be added back by
1716 the char_buffer_add below. */
1717 --charbuf.current;
1718 #endif
1720 else
1721 break;
1723 char_buffer_add (&charbuf, c);
1724 if (width > 0)
1725 --width;
1727 c = inchar ();
1730 else
1731 /* Read the number into workspace. */
1732 while (c != EOF && width != 0)
1734 if (base == 16)
1736 if (!ISXDIGIT (c))
1737 break;
1739 else if (!ISDIGIT (c) || (int) (c - L_('0')) >= base)
1741 if (base == 10 && (flags & GROUP))
1743 /* Try matching against the thousands separator. */
1744 #ifdef COMPILE_WSCANF
1745 if (c != thousands)
1746 break;
1747 #else
1748 const char *cmpp = thousands;
1749 int avail = width > 0 ? width : INT_MAX;
1751 while ((unsigned char) *cmpp == c && avail >= 0)
1753 char_buffer_add (&charbuf, c);
1754 if (*++cmpp == '\0')
1755 break;
1756 else
1758 if (avail == 0 || inchar () == EOF)
1759 break;
1760 --avail;
1764 if (char_buffer_error (&charbuf))
1766 __set_errno (ENOMEM);
1767 done = EOF;
1768 goto errout;
1771 if (*cmpp != '\0')
1773 /* We are pushing all read characters back. */
1774 if (cmpp > thousands)
1776 charbuf.current -= cmpp - thousands;
1777 ungetc (c, s);
1778 while (--cmpp > thousands)
1779 ungetc_not_eof ((unsigned char) *cmpp, s);
1780 c = (unsigned char) *cmpp;
1782 break;
1785 if (width > 0)
1786 width = avail;
1788 /* The last thousands character will be added back by
1789 the char_buffer_add below. */
1790 --charbuf.current;
1791 #endif
1793 else
1794 break;
1796 char_buffer_add (&charbuf, c);
1797 if (width > 0)
1798 --width;
1800 c = inchar ();
1803 if (char_buffer_error (&charbuf))
1805 __set_errno (ENOMEM);
1806 done = EOF;
1807 goto errout;
1810 if (char_buffer_size (&charbuf) == 0
1811 || (char_buffer_size (&charbuf) == 1
1812 && (char_buffer_start (&charbuf)[0] == L_('+')
1813 || char_buffer_start (&charbuf)[0] == L_('-'))))
1815 /* There was no number. If we are supposed to read a pointer
1816 we must recognize "(nil)" as well. */
1817 if (__builtin_expect (char_buffer_size (&charbuf) == 0
1818 && (flags & READ_POINTER)
1819 && (width < 0 || width >= 5)
1820 && c == '('
1821 && TOLOWER (inchar ()) == L_('n')
1822 && TOLOWER (inchar ()) == L_('i')
1823 && TOLOWER (inchar ()) == L_('l')
1824 && inchar () == L_(')'), 1))
1825 /* We must produce the value of a NULL pointer. A single
1826 '0' digit is enough. */
1827 char_buffer_add (&charbuf, L_('0'));
1828 else
1830 /* The last read character is not part of the number
1831 anymore. */
1832 ungetc (c, s);
1834 conv_error ();
1837 else
1838 /* The just read character is not part of the number anymore. */
1839 ungetc (c, s);
1841 /* Convert the number. */
1842 char_buffer_add (&charbuf, L_('\0'));
1843 if (char_buffer_error (&charbuf))
1845 __set_errno (ENOMEM);
1846 done = EOF;
1847 goto errout;
1849 if (need_longlong && (flags & LONGDBL))
1851 if (flags & NUMBER_SIGNED)
1852 num.q = __strtoll_internal
1853 (char_buffer_start (&charbuf), &tw, base, flags & GROUP);
1854 else
1855 num.uq = __strtoull_internal
1856 (char_buffer_start (&charbuf), &tw, base, flags & GROUP);
1858 else
1860 if (flags & NUMBER_SIGNED)
1861 num.l = __strtol_internal
1862 (char_buffer_start (&charbuf), &tw, base, flags & GROUP);
1863 else
1864 num.ul = __strtoul_internal
1865 (char_buffer_start (&charbuf), &tw, base, flags & GROUP);
1867 if (__glibc_unlikely (char_buffer_start (&charbuf) == tw))
1868 conv_error ();
1870 if (!(flags & SUPPRESS))
1872 if (flags & NUMBER_SIGNED)
1874 if (need_longlong && (flags & LONGDBL))
1875 *ARG (LONGLONG int *) = num.q;
1876 else if (need_long && (flags & LONG))
1877 *ARG (long int *) = num.l;
1878 else if (flags & SHORT)
1879 *ARG (short int *) = (short int) num.l;
1880 else if (!(flags & CHAR))
1881 *ARG (int *) = (int) num.l;
1882 else
1883 *ARG (signed char *) = (signed char) num.ul;
1885 else
1887 if (need_longlong && (flags & LONGDBL))
1888 *ARG (unsigned LONGLONG int *) = num.uq;
1889 else if (need_long && (flags & LONG))
1890 *ARG (unsigned long int *) = num.ul;
1891 else if (flags & SHORT)
1892 *ARG (unsigned short int *)
1893 = (unsigned short int) num.ul;
1894 else if (!(flags & CHAR))
1895 *ARG (unsigned int *) = (unsigned int) num.ul;
1896 else
1897 *ARG (unsigned char *) = (unsigned char) num.ul;
1899 ++done;
1901 break;
1903 case L_('e'): /* Floating-point numbers. */
1904 case L_('E'):
1905 case L_('f'):
1906 case L_('F'):
1907 case L_('g'):
1908 case L_('G'):
1909 case L_('a'):
1910 case L_('A'):
1911 c = inchar ();
1912 if (width > 0)
1913 --width;
1914 if (__glibc_unlikely (c == EOF))
1915 input_error ();
1917 got_digit = got_dot = got_e = 0;
1919 /* Check for a sign. */
1920 if (c == L_('-') || c == L_('+'))
1922 negative = c == L_('-');
1923 if (__glibc_unlikely (width == 0 || inchar () == EOF))
1924 /* EOF is only an input error before we read any chars. */
1925 conv_error ();
1926 if (width > 0)
1927 --width;
1929 else
1930 negative = 0;
1932 /* Take care for the special arguments "nan" and "inf". */
1933 if (TOLOWER (c) == L_('n'))
1935 /* Maybe "nan". */
1936 char_buffer_add (&charbuf, c);
1937 if (__builtin_expect (width == 0
1938 || inchar () == EOF
1939 || TOLOWER (c) != L_('a'), 0))
1940 conv_error ();
1941 if (width > 0)
1942 --width;
1943 char_buffer_add (&charbuf, c);
1944 if (__builtin_expect (width == 0
1945 || inchar () == EOF
1946 || TOLOWER (c) != L_('n'), 0))
1947 conv_error ();
1948 if (width > 0)
1949 --width;
1950 char_buffer_add (&charbuf, c);
1951 /* It is "nan". */
1952 goto scan_float;
1954 else if (TOLOWER (c) == L_('i'))
1956 /* Maybe "inf" or "infinity". */
1957 char_buffer_add (&charbuf, c);
1958 if (__builtin_expect (width == 0
1959 || inchar () == EOF
1960 || TOLOWER (c) != L_('n'), 0))
1961 conv_error ();
1962 if (width > 0)
1963 --width;
1964 char_buffer_add (&charbuf, c);
1965 if (__builtin_expect (width == 0
1966 || inchar () == EOF
1967 || TOLOWER (c) != L_('f'), 0))
1968 conv_error ();
1969 if (width > 0)
1970 --width;
1971 char_buffer_add (&charbuf, c);
1972 /* It is as least "inf". */
1973 if (width != 0 && inchar () != EOF)
1975 if (TOLOWER (c) == L_('i'))
1977 if (width > 0)
1978 --width;
1979 /* Now we have to read the rest as well. */
1980 char_buffer_add (&charbuf, c);
1981 if (__builtin_expect (width == 0
1982 || inchar () == EOF
1983 || TOLOWER (c) != L_('n'), 0))
1984 conv_error ();
1985 if (width > 0)
1986 --width;
1987 char_buffer_add (&charbuf, c);
1988 if (__builtin_expect (width == 0
1989 || inchar () == EOF
1990 || TOLOWER (c) != L_('i'), 0))
1991 conv_error ();
1992 if (width > 0)
1993 --width;
1994 char_buffer_add (&charbuf, c);
1995 if (__builtin_expect (width == 0
1996 || inchar () == EOF
1997 || TOLOWER (c) != L_('t'), 0))
1998 conv_error ();
1999 if (width > 0)
2000 --width;
2001 char_buffer_add (&charbuf, c);
2002 if (__builtin_expect (width == 0
2003 || inchar () == EOF
2004 || TOLOWER (c) != L_('y'), 0))
2005 conv_error ();
2006 if (width > 0)
2007 --width;
2008 char_buffer_add (&charbuf, c);
2010 else
2011 /* Never mind. */
2012 ungetc (c, s);
2014 goto scan_float;
2017 exp_char = L_('e');
2018 if (width != 0 && c == L_('0'))
2020 char_buffer_add (&charbuf, c);
2021 c = inchar ();
2022 if (width > 0)
2023 --width;
2024 if (width != 0 && TOLOWER (c) == L_('x'))
2026 /* It is a number in hexadecimal format. */
2027 char_buffer_add (&charbuf, c);
2029 flags |= HEXA_FLOAT;
2030 exp_char = L_('p');
2032 /* Grouping is not allowed. */
2033 flags &= ~GROUP;
2034 c = inchar ();
2035 if (width > 0)
2036 --width;
2038 else
2039 got_digit = 1;
2042 while (1)
2044 if (char_buffer_error (&charbuf))
2046 __set_errno (ENOMEM);
2047 done = EOF;
2048 goto errout;
2050 if (ISDIGIT (c))
2052 char_buffer_add (&charbuf, c);
2053 got_digit = 1;
2055 else if (!got_e && (flags & HEXA_FLOAT) && ISXDIGIT (c))
2057 char_buffer_add (&charbuf, c);
2058 got_digit = 1;
2060 else if (got_e && charbuf.current[-1] == exp_char
2061 && (c == L_('-') || c == L_('+')))
2062 char_buffer_add (&charbuf, c);
2063 else if (got_digit && !got_e
2064 && (CHAR_T) TOLOWER (c) == exp_char)
2066 char_buffer_add (&charbuf, exp_char);
2067 got_e = got_dot = 1;
2069 else
2071 #ifdef COMPILE_WSCANF
2072 if (! got_dot && c == decimal)
2074 char_buffer_add (&charbuf, c);
2075 got_dot = 1;
2077 else if ((flags & GROUP) != 0 && ! got_dot && c == thousands)
2078 char_buffer_add (&charbuf, c);
2079 else
2081 /* The last read character is not part of the number
2082 anymore. */
2083 ungetc (c, s);
2084 break;
2086 #else
2087 const char *cmpp = decimal;
2088 int avail = width > 0 ? width : INT_MAX;
2090 if (! got_dot)
2092 while ((unsigned char) *cmpp == c && avail >= 0)
2093 if (*++cmpp == '\0')
2094 break;
2095 else
2097 if (avail == 0 || inchar () == EOF)
2098 break;
2099 --avail;
2103 if (*cmpp == '\0')
2105 /* Add all the characters. */
2106 for (cmpp = decimal; *cmpp != '\0'; ++cmpp)
2107 char_buffer_add (&charbuf, (unsigned char) *cmpp);
2108 if (width > 0)
2109 width = avail;
2110 got_dot = 1;
2112 else
2114 /* Figure out whether it is a thousands separator.
2115 There is one problem: we possibly read more than
2116 one character. We cannot push them back but since
2117 we know that parts of the `decimal' string matched,
2118 we can compare against it. */
2119 const char *cmp2p = thousands;
2121 if ((flags & GROUP) != 0 && ! got_dot)
2123 while (cmp2p - thousands < cmpp - decimal
2124 && *cmp2p == decimal[cmp2p - thousands])
2125 ++cmp2p;
2126 if (cmp2p - thousands == cmpp - decimal)
2128 while ((unsigned char) *cmp2p == c && avail >= 0)
2129 if (*++cmp2p == '\0')
2130 break;
2131 else
2133 if (avail == 0 || inchar () == EOF)
2134 break;
2135 --avail;
2140 if (cmp2p != NULL && *cmp2p == '\0')
2142 /* Add all the characters. */
2143 for (cmpp = thousands; *cmpp != '\0'; ++cmpp)
2144 char_buffer_add (&charbuf, (unsigned char) *cmpp);
2145 if (width > 0)
2146 width = avail;
2148 else
2150 /* The last read character is not part of the number
2151 anymore. */
2152 ungetc (c, s);
2153 break;
2156 #endif
2159 if (width == 0 || inchar () == EOF)
2160 break;
2162 if (width > 0)
2163 --width;
2166 if (char_buffer_error (&charbuf))
2168 __set_errno (ENOMEM);
2169 done = EOF;
2170 goto errout;
2173 wctrans_t map;
2174 if (__builtin_expect ((flags & I18N) != 0, 0)
2175 /* Hexadecimal floats make no sense, fixing localized
2176 digits with ASCII letters. */
2177 && !(flags & HEXA_FLOAT)
2178 /* Minimum requirement. */
2179 && (char_buffer_size (&charbuf) == 0 || got_dot)
2180 && (map = __wctrans ("to_inpunct")) != NULL)
2182 /* Reget the first character. */
2183 inchar ();
2185 /* Localized digits, decimal points, and thousands
2186 separator. */
2187 wint_t wcdigits[12];
2189 /* First get decimal equivalent to check if we read it
2190 or not. */
2191 wcdigits[11] = __towctrans (L'.', map);
2193 /* If we have not read any character or have just read
2194 locale decimal point which matches the decimal point
2195 for localized FP numbers, then we may have localized
2196 digits. Note, we test GOT_DOT above. */
2197 #ifdef COMPILE_WSCANF
2198 if (char_buffer_size (&charbuf) == 0
2199 || (char_buffer_size (&charbuf) == 1
2200 && wcdigits[11] == decimal))
2201 #else
2202 char mbdigits[12][MB_LEN_MAX + 1];
2204 mbstate_t state;
2205 memset (&state, '\0', sizeof (state));
2207 bool match_so_far = char_buffer_size (&charbuf) == 0;
2208 size_t mblen = __wcrtomb (mbdigits[11], wcdigits[11], &state);
2209 if (mblen != (size_t) -1)
2211 mbdigits[11][mblen] = '\0';
2212 match_so_far |=
2213 (char_buffer_size (&charbuf) == strlen (decimal)
2214 && strcmp (decimal, mbdigits[11]) == 0);
2216 else
2218 size_t decimal_len = strlen (decimal);
2219 /* This should always be the case but the data comes
2220 from a file. */
2221 if (decimal_len <= MB_LEN_MAX)
2223 match_so_far |= char_buffer_size (&charbuf) == decimal_len;
2224 memcpy (mbdigits[11], decimal, decimal_len + 1);
2226 else
2227 match_so_far = false;
2230 if (match_so_far)
2231 #endif
2233 bool have_locthousands = (flags & GROUP) != 0;
2235 /* Now get the digits and the thousands-sep equivalents. */
2236 for (int n = 0; n < 11; ++n)
2238 if (n < 10)
2239 wcdigits[n] = __towctrans (L'0' + n, map);
2240 else if (n == 10)
2242 wcdigits[10] = __towctrans (L',', map);
2243 have_locthousands &= wcdigits[10] != L'\0';
2246 #ifndef COMPILE_WSCANF
2247 memset (&state, '\0', sizeof (state));
2249 size_t mblen = __wcrtomb (mbdigits[n], wcdigits[n],
2250 &state);
2251 if (mblen == (size_t) -1)
2253 if (n == 10)
2255 if (have_locthousands)
2257 size_t thousands_len = strlen (thousands);
2258 if (thousands_len <= MB_LEN_MAX)
2259 memcpy (mbdigits[10], thousands,
2260 thousands_len + 1);
2261 else
2262 have_locthousands = false;
2265 else
2266 /* Ignore checking against localized digits. */
2267 goto no_i18nflt;
2269 else
2270 mbdigits[n][mblen] = '\0';
2271 #endif
2274 /* Start checking against localized digits, if
2275 conversion is done correctly. */
2276 while (1)
2278 if (char_buffer_error (&charbuf))
2280 __set_errno (ENOMEM);
2281 done = EOF;
2282 goto errout;
2284 if (got_e && charbuf.current[-1] == exp_char
2285 && (c == L_('-') || c == L_('+')))
2286 char_buffer_add (&charbuf, c);
2287 else if (char_buffer_size (&charbuf) > 0 && !got_e
2288 && (CHAR_T) TOLOWER (c) == exp_char)
2290 char_buffer_add (&charbuf, exp_char);
2291 got_e = got_dot = 1;
2293 else
2295 /* Check against localized digits, decimal point,
2296 and thousands separator. */
2297 int n;
2298 for (n = 0; n < 12; ++n)
2300 #ifdef COMPILE_WSCANF
2301 if (c == wcdigits[n])
2303 if (n < 10)
2304 char_buffer_add (&charbuf, L_('0') + n);
2305 else if (n == 11 && !got_dot)
2307 char_buffer_add (&charbuf, decimal);
2308 got_dot = 1;
2310 else if (n == 10 && have_locthousands
2311 && ! got_dot)
2312 char_buffer_add (&charbuf, thousands);
2313 else
2314 /* The last read character is not part
2315 of the number anymore. */
2316 n = 12;
2318 break;
2320 #else
2321 const char *cmpp = mbdigits[n];
2322 int avail = width > 0 ? width : INT_MAX;
2324 while ((unsigned char) *cmpp == c && avail >= 0)
2325 if (*++cmpp == '\0')
2326 break;
2327 else
2329 if (avail == 0 || inchar () == EOF)
2330 break;
2331 --avail;
2333 if (*cmpp == '\0')
2335 if (width > 0)
2336 width = avail;
2338 if (n < 10)
2339 char_buffer_add (&charbuf, L_('0') + n);
2340 else if (n == 11 && !got_dot)
2342 /* Add all the characters. */
2343 for (cmpp = decimal; *cmpp != '\0';
2344 ++cmpp)
2345 char_buffer_add (&charbuf,
2346 (unsigned char) *cmpp);
2348 got_dot = 1;
2350 else if (n == 10 && (flags & GROUP) != 0
2351 && ! got_dot)
2353 /* Add all the characters. */
2354 for (cmpp = thousands; *cmpp != '\0';
2355 ++cmpp)
2356 char_buffer_add (&charbuf,
2357 (unsigned char) *cmpp);
2359 else
2360 /* The last read character is not part
2361 of the number anymore. */
2362 n = 12;
2364 break;
2367 /* We are pushing all read characters back. */
2368 if (cmpp > mbdigits[n])
2370 ungetc (c, s);
2371 while (--cmpp > mbdigits[n])
2372 ungetc_not_eof ((unsigned char) *cmpp, s);
2373 c = (unsigned char) *cmpp;
2375 #endif
2378 if (n >= 12)
2380 /* The last read character is not part
2381 of the number anymore. */
2382 ungetc (c, s);
2383 break;
2387 if (width == 0 || inchar () == EOF)
2388 break;
2390 if (width > 0)
2391 --width;
2395 #ifndef COMPILE_WSCANF
2396 no_i18nflt:
2398 #endif
2401 if (char_buffer_error (&charbuf))
2403 __set_errno (ENOMEM);
2404 done = EOF;
2405 goto errout;
2408 /* Have we read any character? If we try to read a number
2409 in hexadecimal notation and we have read only the `0x'
2410 prefix this is an error. */
2411 if (__glibc_unlikely (char_buffer_size (&charbuf) == 0
2412 || ((flags & HEXA_FLOAT)
2413 && char_buffer_size (&charbuf) == 2)))
2414 conv_error ();
2416 scan_float:
2417 /* Convert the number. */
2418 char_buffer_add (&charbuf, L_('\0'));
2419 if (char_buffer_error (&charbuf))
2421 __set_errno (ENOMEM);
2422 done = EOF;
2423 goto errout;
2425 if ((flags & LONGDBL) && !__ldbl_is_dbl)
2427 long double d = __strtold_internal
2428 (char_buffer_start (&charbuf), &tw, flags & GROUP);
2429 if (!(flags & SUPPRESS) && tw != char_buffer_start (&charbuf))
2430 *ARG (long double *) = negative ? -d : d;
2432 else if (flags & (LONG | LONGDBL))
2434 double d = __strtod_internal
2435 (char_buffer_start (&charbuf), &tw, flags & GROUP);
2436 if (!(flags & SUPPRESS) && tw != char_buffer_start (&charbuf))
2437 *ARG (double *) = negative ? -d : d;
2439 else
2441 float d = __strtof_internal
2442 (char_buffer_start (&charbuf), &tw, flags & GROUP);
2443 if (!(flags & SUPPRESS) && tw != char_buffer_start (&charbuf))
2444 *ARG (float *) = negative ? -d : d;
2447 if (__glibc_unlikely (tw == char_buffer_start (&charbuf)))
2448 conv_error ();
2450 if (!(flags & SUPPRESS))
2451 ++done;
2452 break;
2454 case L_('['): /* Character class. */
2455 if (flags & LONG)
2456 STRING_ARG (wstr, wchar_t, 100);
2457 else
2458 STRING_ARG (str, char, 100);
2460 if (*f == L_('^'))
2462 ++f;
2463 not_in = 1;
2465 else
2466 not_in = 0;
2468 if (width < 0)
2469 /* There is no width given so there is also no limit on the
2470 number of characters we read. Therefore we set width to
2471 a very high value to make the algorithm easier. */
2472 width = INT_MAX;
2474 #ifdef COMPILE_WSCANF
2475 /* Find the beginning and the end of the scanlist. We are not
2476 creating a lookup table since it would have to be too large.
2477 Instead we search each time through the string. This is not
2478 a constant lookup time but who uses this feature deserves to
2479 be punished. */
2480 tw = (wchar_t *) f; /* Marks the beginning. */
2482 if (*f == L']')
2483 ++f;
2485 while ((fc = *f++) != L'\0' && fc != L']');
2487 if (__glibc_unlikely (fc == L'\0'))
2488 conv_error ();
2489 wchar_t *twend = (wchar_t *) f - 1;
2490 #else
2491 /* Fill WP with byte flags indexed by character.
2492 We will use this flag map for matching input characters. */
2493 if (!scratch_buffer_set_array_size
2494 (&charbuf.scratch, UCHAR_MAX + 1, 1))
2496 done = EOF;
2497 goto errout;
2499 memset (charbuf.scratch.data, '\0', UCHAR_MAX + 1);
2501 fc = *f;
2502 if (fc == ']' || fc == '-')
2504 /* If ] or - appears before any char in the set, it is not
2505 the terminator or separator, but the first char in the
2506 set. */
2507 ((char *)charbuf.scratch.data)[fc] = 1;
2508 ++f;
2511 while ((fc = *f++) != '\0' && fc != ']')
2512 if (fc == '-' && *f != '\0' && *f != ']'
2513 && (unsigned char) f[-2] <= (unsigned char) *f)
2515 /* Add all characters from the one before the '-'
2516 up to (but not including) the next format char. */
2517 for (fc = (unsigned char) f[-2]; fc < (unsigned char) *f; ++fc)
2518 ((char *)charbuf.scratch.data)[fc] = 1;
2520 else
2521 /* Add the character to the flag map. */
2522 ((char *)charbuf.scratch.data)[fc] = 1;
2524 if (__glibc_unlikely (fc == '\0'))
2525 conv_error();
2526 #endif
2528 if (flags & LONG)
2530 size_t now = read_in;
2531 #ifdef COMPILE_WSCANF
2532 if (__glibc_unlikely (inchar () == WEOF))
2533 input_error ();
2537 wchar_t *runp;
2539 /* Test whether it's in the scanlist. */
2540 runp = tw;
2541 while (runp < twend)
2543 if (runp[0] == L'-' && runp[1] != '\0'
2544 && runp + 1 != twend
2545 && runp != tw
2546 && (unsigned int) runp[-1] <= (unsigned int) runp[1])
2548 /* Match against all characters in between the
2549 first and last character of the sequence. */
2550 wchar_t wc;
2552 for (wc = runp[-1] + 1; wc <= runp[1]; ++wc)
2553 if ((wint_t) wc == c)
2554 break;
2556 if (wc <= runp[1] && !not_in)
2557 break;
2558 if (wc <= runp[1] && not_in)
2560 /* The current character is not in the
2561 scanset. */
2562 ungetc (c, s);
2563 goto out;
2566 runp += 2;
2568 else
2570 if ((wint_t) *runp == c && !not_in)
2571 break;
2572 if ((wint_t) *runp == c && not_in)
2574 ungetc (c, s);
2575 goto out;
2578 ++runp;
2582 if (runp == twend && !not_in)
2584 ungetc (c, s);
2585 goto out;
2588 if (!(flags & SUPPRESS))
2590 *wstr++ = c;
2592 if ((flags & MALLOC)
2593 && wstr == (wchar_t *) *strptr + strsize)
2595 /* Enlarge the buffer. */
2596 wstr = (wchar_t *) realloc (*strptr,
2597 (2 * strsize)
2598 * sizeof (wchar_t));
2599 if (wstr == NULL)
2601 /* Can't allocate that much. Last-ditch
2602 effort. */
2603 wstr = (wchar_t *)
2604 realloc (*strptr, (strsize + 1)
2605 * sizeof (wchar_t));
2606 if (wstr == NULL)
2608 if (flags & POSIX_MALLOC)
2610 done = EOF;
2611 goto errout;
2613 /* We lose. Oh well. Terminate the string
2614 and stop converting, so at least we don't
2615 skip any input. */
2616 ((wchar_t *) (*strptr))[strsize - 1] = L'\0';
2617 strptr = NULL;
2618 ++done;
2619 conv_error ();
2621 else
2623 *strptr = (char *) wstr;
2624 wstr += strsize;
2625 ++strsize;
2628 else
2630 *strptr = (char *) wstr;
2631 wstr += strsize;
2632 strsize *= 2;
2637 while (--width > 0 && inchar () != WEOF);
2638 out:
2639 #else
2640 char buf[MB_LEN_MAX];
2641 size_t cnt = 0;
2642 mbstate_t cstate;
2644 if (__glibc_unlikely (inchar () == EOF))
2645 input_error ();
2647 memset (&cstate, '\0', sizeof (cstate));
2651 if (((char *) charbuf.scratch.data)[c] == not_in)
2653 ungetc_not_eof (c, s);
2654 break;
2657 /* This is easy. */
2658 if (!(flags & SUPPRESS))
2660 size_t n;
2662 /* Convert it into a wide character. */
2663 buf[0] = c;
2664 n = __mbrtowc (wstr, buf, 1, &cstate);
2666 if (n == (size_t) -2)
2668 /* Possibly correct character, just not enough
2669 input. */
2670 ++cnt;
2671 assert (cnt < MB_LEN_MAX);
2672 continue;
2674 cnt = 0;
2676 ++wstr;
2677 if ((flags & MALLOC)
2678 && wstr == (wchar_t *) *strptr + strsize)
2680 /* Enlarge the buffer. */
2681 wstr = (wchar_t *) realloc (*strptr,
2682 (2 * strsize
2683 * sizeof (wchar_t)));
2684 if (wstr == NULL)
2686 /* Can't allocate that much. Last-ditch
2687 effort. */
2688 wstr = (wchar_t *)
2689 realloc (*strptr, ((strsize + 1)
2690 * sizeof (wchar_t)));
2691 if (wstr == NULL)
2693 if (flags & POSIX_MALLOC)
2695 done = EOF;
2696 goto errout;
2698 /* We lose. Oh well. Terminate the
2699 string and stop converting,
2700 so at least we don't skip any input. */
2701 ((wchar_t *) (*strptr))[strsize - 1] = L'\0';
2702 strptr = NULL;
2703 ++done;
2704 conv_error ();
2706 else
2708 *strptr = (char *) wstr;
2709 wstr += strsize;
2710 ++strsize;
2713 else
2715 *strptr = (char *) wstr;
2716 wstr += strsize;
2717 strsize *= 2;
2722 if (--width <= 0)
2723 break;
2725 while (inchar () != EOF);
2727 if (__glibc_unlikely (cnt != 0))
2728 /* We stopped in the middle of recognizing another
2729 character. That's a problem. */
2730 encode_error ();
2731 #endif
2733 if (__glibc_unlikely (now == read_in))
2734 /* We haven't succesfully read any character. */
2735 conv_error ();
2737 if (!(flags & SUPPRESS))
2739 *wstr++ = L'\0';
2741 if ((flags & MALLOC)
2742 && wstr - (wchar_t *) *strptr != strsize)
2744 wchar_t *cp = (wchar_t *)
2745 realloc (*strptr, ((wstr - (wchar_t *) *strptr)
2746 * sizeof(wchar_t)));
2747 if (cp != NULL)
2748 *strptr = (char *) cp;
2750 strptr = NULL;
2752 ++done;
2755 else
2757 size_t now = read_in;
2759 if (__glibc_unlikely (inchar () == EOF))
2760 input_error ();
2762 #ifdef COMPILE_WSCANF
2764 memset (&state, '\0', sizeof (state));
2768 wchar_t *runp;
2769 size_t n;
2771 /* Test whether it's in the scanlist. */
2772 runp = tw;
2773 while (runp < twend)
2775 if (runp[0] == L'-' && runp[1] != '\0'
2776 && runp + 1 != twend
2777 && runp != tw
2778 && (unsigned int) runp[-1] <= (unsigned int) runp[1])
2780 /* Match against all characters in between the
2781 first and last character of the sequence. */
2782 wchar_t wc;
2784 for (wc = runp[-1] + 1; wc <= runp[1]; ++wc)
2785 if ((wint_t) wc == c)
2786 break;
2788 if (wc <= runp[1] && !not_in)
2789 break;
2790 if (wc <= runp[1] && not_in)
2792 /* The current character is not in the
2793 scanset. */
2794 ungetc (c, s);
2795 goto out2;
2798 runp += 2;
2800 else
2802 if ((wint_t) *runp == c && !not_in)
2803 break;
2804 if ((wint_t) *runp == c && not_in)
2806 ungetc (c, s);
2807 goto out2;
2810 ++runp;
2814 if (runp == twend && !not_in)
2816 ungetc (c, s);
2817 goto out2;
2820 if (!(flags & SUPPRESS))
2822 if ((flags & MALLOC)
2823 && *strptr + strsize - str <= MB_LEN_MAX)
2825 /* Enlarge the buffer. */
2826 size_t strleng = str - *strptr;
2827 char *newstr;
2829 newstr = (char *) realloc (*strptr, 2 * strsize);
2830 if (newstr == NULL)
2832 /* Can't allocate that much. Last-ditch
2833 effort. */
2834 newstr = (char *) realloc (*strptr,
2835 strleng + MB_LEN_MAX);
2836 if (newstr == NULL)
2838 if (flags & POSIX_MALLOC)
2840 done = EOF;
2841 goto errout;
2843 /* We lose. Oh well. Terminate the string
2844 and stop converting, so at least we don't
2845 skip any input. */
2846 ((char *) (*strptr))[strleng] = '\0';
2847 strptr = NULL;
2848 ++done;
2849 conv_error ();
2851 else
2853 *strptr = newstr;
2854 str = newstr + strleng;
2855 strsize = strleng + MB_LEN_MAX;
2858 else
2860 *strptr = newstr;
2861 str = newstr + strleng;
2862 strsize *= 2;
2867 n = __wcrtomb (!(flags & SUPPRESS) ? str : NULL, c, &state);
2868 if (__glibc_unlikely (n == (size_t) -1))
2869 encode_error ();
2871 assert (n <= MB_LEN_MAX);
2872 str += n;
2874 while (--width > 0 && inchar () != WEOF);
2875 out2:
2876 #else
2879 if (((char *) charbuf.scratch.data)[c] == not_in)
2881 ungetc_not_eof (c, s);
2882 break;
2885 /* This is easy. */
2886 if (!(flags & SUPPRESS))
2888 *str++ = c;
2889 if ((flags & MALLOC)
2890 && (char *) str == *strptr + strsize)
2892 /* Enlarge the buffer. */
2893 size_t newsize = 2 * strsize;
2895 allocagain:
2896 str = (char *) realloc (*strptr, newsize);
2897 if (str == NULL)
2899 /* Can't allocate that much. Last-ditch
2900 effort. */
2901 if (newsize > strsize + 1)
2903 newsize = strsize + 1;
2904 goto allocagain;
2906 if (flags & POSIX_MALLOC)
2908 done = EOF;
2909 goto errout;
2911 /* We lose. Oh well. Terminate the
2912 string and stop converting,
2913 so at least we don't skip any input. */
2914 ((char *) (*strptr))[strsize - 1] = '\0';
2915 strptr = NULL;
2916 ++done;
2917 conv_error ();
2919 else
2921 *strptr = (char *) str;
2922 str += strsize;
2923 strsize = newsize;
2928 while (--width > 0 && inchar () != EOF);
2929 #endif
2931 if (__glibc_unlikely (now == read_in))
2932 /* We haven't succesfully read any character. */
2933 conv_error ();
2935 if (!(flags & SUPPRESS))
2937 #ifdef COMPILE_WSCANF
2938 /* We have to emit the code to get into the initial
2939 state. */
2940 char buf[MB_LEN_MAX];
2941 size_t n = __wcrtomb (buf, L'\0', &state);
2942 if (n > 0 && (flags & MALLOC)
2943 && str + n >= *strptr + strsize)
2945 /* Enlarge the buffer. */
2946 size_t strleng = str - *strptr;
2947 char *newstr;
2949 newstr = (char *) realloc (*strptr, strleng + n + 1);
2950 if (newstr == NULL)
2952 if (flags & POSIX_MALLOC)
2954 done = EOF;
2955 goto errout;
2957 /* We lose. Oh well. Terminate the string
2958 and stop converting, so at least we don't
2959 skip any input. */
2960 ((char *) (*strptr))[strleng] = '\0';
2961 strptr = NULL;
2962 ++done;
2963 conv_error ();
2965 else
2967 *strptr = newstr;
2968 str = newstr + strleng;
2969 strsize = strleng + n + 1;
2973 str = __mempcpy (str, buf, n);
2974 #endif
2975 *str++ = '\0';
2977 if ((flags & MALLOC) && str - *strptr != strsize)
2979 char *cp = (char *) realloc (*strptr, str - *strptr);
2980 if (cp != NULL)
2981 *strptr = cp;
2983 strptr = NULL;
2985 ++done;
2988 break;
2990 case L_('p'): /* Generic pointer. */
2991 base = 16;
2992 /* A PTR must be the same size as a `long int'. */
2993 flags &= ~(SHORT|LONGDBL);
2994 if (need_long)
2995 flags |= LONG;
2996 flags |= READ_POINTER;
2997 goto number;
2999 default:
3000 /* If this is an unknown format character punt. */
3001 conv_error ();
3005 /* The last thing we saw int the format string was a white space.
3006 Consume the last white spaces. */
3007 if (skip_space)
3010 c = inchar ();
3011 while (ISSPACE (c));
3012 ungetc (c, s);
3015 errout:
3016 /* Unlock stream. */
3017 UNLOCK_STREAM (s);
3019 scratch_buffer_free (&charbuf.scratch);
3020 if (errp != NULL)
3021 *errp |= errval;
3023 if (__glibc_unlikely (done == EOF))
3025 if (__glibc_unlikely (ptrs_to_free != NULL))
3027 struct ptrs_to_free *p = ptrs_to_free;
3028 while (p != NULL)
3030 for (size_t cnt = 0; cnt < p->count; ++cnt)
3032 free (*p->ptrs[cnt]);
3033 *p->ptrs[cnt] = NULL;
3035 p = p->next;
3036 ptrs_to_free = p;
3040 else if (__glibc_unlikely (strptr != NULL))
3042 free (*strptr);
3043 *strptr = NULL;
3045 return done;
3048 #ifdef COMPILE_WSCANF
3050 __vfwscanf (FILE *s, const wchar_t *format, va_list argptr)
3052 return _IO_vfwscanf (s, format, argptr, NULL);
3054 ldbl_weak_alias (__vfwscanf, vfwscanf)
3055 #else
3057 ___vfscanf (FILE *s, const char *format, va_list argptr)
3059 return _IO_vfscanf_internal (s, format, argptr, NULL);
3061 ldbl_strong_alias (_IO_vfscanf_internal, _IO_vfscanf)
3062 ldbl_hidden_def (_IO_vfscanf_internal, _IO_vfscanf)
3063 ldbl_strong_alias (___vfscanf, __vfscanf)
3064 ldbl_hidden_def (___vfscanf, __vfscanf)
3065 ldbl_weak_alias (___vfscanf, vfscanf)
3066 #endif