]>
git.saurik.com Git - apple/xnu.git/blob - libkern/stdio/scanf.c
2 * Copyright (c) 2004-2016 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 * Copyright (c) 1990, 1993
30 * The Regents of the University of California. All rights reserved.
32 * This code is derived from software contributed to Berkeley by
35 * Redistribution and use in source and binary forms, with or without
36 * modification, are permitted provided that the following conditions
38 * 1. Redistributions of source code must retain the above copyright
39 * notice, this list of conditions and the following disclaimer.
40 * 2. Redistributions in binary form must reproduce the above copyright
41 * notice, this list of conditions and the following disclaimer in the
42 * documentation and/or other materials provided with the distribution.
43 * 3. All advertising materials mentioning features or use of this software
44 * must display the following acknowledgement:
45 * This product includes software developed by the University of
46 * California, Berkeley and its contributors.
47 * 4. Neither the name of the University nor the names of its contributors
48 * may be used to endorse or promote products derived from this software
49 * without specific prior written permission.
51 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
52 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
53 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
54 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
55 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
56 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
57 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
58 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
59 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
60 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64 #include <sys/cdefs.h>
66 #if 0 /* XXX coming soon */
72 return c
== ' ' || c
== '\t' || c
== '\n' || c
== '\12';
77 #include <sys/param.h>
78 #include <sys/systm.h>
80 #define BUF 32 /* Maximum length of numeric string. */
83 * Flags used during conversion.
85 #define LONG 0x01 /* l: long or double */
86 #define SHORT 0x04 /* h: short */
87 #define SUPPRESS 0x08 /* *: suppress assignment */
88 #define POINTER 0x10 /* p: void * (as hex) */
89 #define NOSKIP 0x20 /* [ or c: do not skip blanks */
90 #define LONGLONG 0x400 /* ll: long long (+ deprecated q: quad) */
91 #define SHORTSHORT 0x4000 /* hh: char */
92 #define UNSIGNED 0x8000 /* %[oupxX] conversions */
95 * The following are used in numeric conversions only:
96 * SIGNOK, NDIGITS, DPTOK, and EXPOK are for floating point;
97 * SIGNOK, NDIGITS, PFXOK, and NZDIGITS are for integral.
99 #define SIGNOK 0x40 /* +/- is (still) legal */
100 #define NDIGITS 0x80 /* no digits detected */
102 #define DPTOK 0x100 /* (float) decimal point is still legal */
103 #define EXPOK 0x200 /* (float) exponent (e+3, etc) still legal */
105 #define PFXOK 0x100 /* 0x prefix is (still) legal */
106 #define NZDIGITS 0x200 /* no zero digits detected */
111 #define CT_CHAR 0 /* %c conversion */
112 #define CT_CCL 1 /* %[...] conversion */
113 #define CT_STRING 2 /* %s conversion */
114 #define CT_INT 3 /* %[dioupxX] conversion */
116 static const u_char
*__sccl(char *, const u_char
*);
119 sscanf(const char *ibuf
, const char *fmt
, ...)
125 ret
= vsscanf(ibuf
, fmt
, ap
);
131 vsscanf(const char *inp
, char const *fmt0
, va_list ap
)
134 const u_char
*fmt
= (const u_char
*)fmt0
;
135 int c
; /* character from format, or conversion */
136 size_t width
; /* field width, or 0 */
137 char *p
; /* points into all kinds of strings */
138 int n
; /* handy integer */
139 int flags
; /* flags as defined above */
140 char *p0
; /* saves original value of p when necessary */
141 int nassigned
; /* number of fields assigned */
142 int nconversions
; /* number of conversions */
143 int nread
; /* number of characters consumed from fp */
144 int base
; /* base argument to conversion function */
145 char ccltab
[256]; /* character class table for %[...] */
146 char buf
[BUF
]; /* buffer for numeric conversions */
148 /* `basefix' is used to avoid `if' tests in the integer scanner */
149 static short basefix
[17] =
150 { 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 };
157 base
= 0; /* XXX just to keep gcc happy */
164 while (inr
> 0 && isspace(*inp
)) {
177 * switch on the format. continue if done;
178 * break once format type is derived.
207 flags
|= LONGLONG
; /* not quite */
218 case '0': case '1': case '2': case '3': case '4':
219 case '5': case '6': case '7': case '8': case '9':
220 width
= width
* 10 + c
- '0';
250 flags
|= PFXOK
; /* enable 0x prefixing */
261 fmt
= __sccl(ccltab
, fmt
);
271 case 'p': /* pointer format is like hex */
272 flags
|= POINTER
| PFXOK
;
280 if (flags
& SUPPRESS
) { /* ??? */
283 if (flags
& SHORTSHORT
) {
284 *va_arg(ap
, char *) = nread
;
285 } else if (flags
& SHORT
) {
286 *va_arg(ap
, short *) = nread
;
287 } else if (flags
& LONG
) {
288 *va_arg(ap
, long *) = nread
;
289 } else if (flags
& LONGLONG
) {
290 *va_arg(ap
, long long *) = nread
;
292 *va_arg(ap
, int *) = nread
;
298 * We have a conversion that requires input.
305 * Consume leading white space, except for formats
306 * that suppress this.
308 if ((flags
& NOSKIP
) == 0) {
309 while (isspace(*inp
)) {
318 * Note that there is at least one character in
319 * the buffer, so conversions that do not set NOSKIP
320 * can no longer result in an input failure.
329 /* scan arbitrary characters (sets NOSKIP) */
333 if (flags
& SUPPRESS
) {
336 if ((n
= inr
) < (int)width
) {
353 bcopy(inp
, va_arg(ap
, char *), width
);
363 /* scan a (nonempty) character class (sets NOSKIP) */
365 width
= (size_t)~0; /* `infinity' */
367 /* take only those things in the class */
368 if (flags
& SUPPRESS
) {
370 while (ccltab
[(unsigned char)*inp
]) {
388 p0
= p
= va_arg(ap
, char *);
389 while (ccltab
[(unsigned char)*inp
]) {
414 /* like CCL, but zero-length string OK, & no NOSKIP */
418 if (flags
& SUPPRESS
) {
420 while (!isspace(*inp
)) {
433 p0
= p
= va_arg(ap
, char *);
434 while (!isspace(*inp
)) {
452 /* scan an integer as if by the conversion function */
454 if (width
== 0 || width
> sizeof(buf
) - 1) {
455 width
= sizeof(buf
) - 1;
458 /* size_t is unsigned, hence this optimisation */
459 if (--width
> sizeof(buf
) - 2) {
460 width
= sizeof(buf
) - 2;
464 flags
|= SIGNOK
| NDIGITS
| NZDIGITS
;
465 for (p
= buf
; width
; width
--) {
468 * Switch on the character; `goto ok'
469 * if we accept it as a part of number.
473 * The digit 0 is always legal, but is
474 * special. For %i conversions, if no
475 * digits (zero or nonzero) have been
476 * scanned (only signs), we will have
477 * base==0. In that case, we should set
478 * it to 8 and enable 0x prefixing.
479 * Also, if we have not scanned zero digits
480 * before this, do not turn off prefixing
481 * (someone else will turn it off if we
482 * have scanned any nonzero digits).
489 if (flags
& NZDIGITS
) {
490 flags
&= ~(SIGNOK
| NZDIGITS
| NDIGITS
);
492 flags
&= ~(SIGNOK
| PFXOK
| NDIGITS
);
496 /* 1 through 7 always legal */
497 case '1': case '2': case '3':
498 case '4': case '5': case '6': case '7':
499 base
= basefix
[base
];
500 flags
&= ~(SIGNOK
| PFXOK
| NDIGITS
);
503 /* digits 8 and 9 ok iff decimal or hex */
505 base
= basefix
[base
];
507 break; /* not legal here */
509 flags
&= ~(SIGNOK
| PFXOK
| NDIGITS
);
512 /* letters ok iff hex */
513 case 'A': case 'B': case 'C':
514 case 'D': case 'E': case 'F':
515 case 'a': case 'b': case 'c':
516 case 'd': case 'e': case 'f':
517 /* no need to fix base here */
519 break; /* not legal here */
521 flags
&= ~(SIGNOK
| PFXOK
| NDIGITS
);
524 /* sign ok only as first character */
526 if (flags
& SIGNOK
) {
532 /* x ok iff flag still set & 2nd char */
534 if (flags
& PFXOK
&& p
== buf
+ 1) {
535 base
= 16; /* if %i */
543 * If we got here, c is not a legal character
544 * for a number. Stop accumulating digits.
549 * c is legal: store it and look at the next.
555 break; /* end of input */
559 * If we had only a sign, it is no good; push
560 * back the sign. If the number ends in `x',
561 * it was [sign] '0' 'x', so push back the x
562 * and treat it as [sign] '0'.
564 if (flags
& NDIGITS
) {
571 c
= ((u_char
*)p
)[-1];
572 if (c
== 'x' || c
== 'X') {
577 if ((flags
& SUPPRESS
) == 0) {
581 if ((flags
& UNSIGNED
) == 0) {
582 res
= strtoq(buf
, (char **)NULL
, base
);
584 res
= strtouq(buf
, (char **)NULL
, base
);
586 if (flags
& POINTER
) {
587 *va_arg(ap
, void **) =
588 (void *)(uintptr_t)res
;
589 } else if (flags
& SHORTSHORT
) {
590 *va_arg(ap
, char *) = res
;
591 } else if (flags
& SHORT
) {
592 *va_arg(ap
, short *) = res
;
593 } else if (flags
& LONG
) {
594 *va_arg(ap
, long *) = res
;
595 } else if (flags
& LONGLONG
) {
596 *va_arg(ap
, long long *) = res
;
598 *va_arg(ap
, int *) = res
;
608 return nconversions
!= 0 ? nassigned
: -1;
614 * Fill in the given table from the scanset at the given format
615 * (just after `['). Return a pointer to the character past the
616 * closing `]'. The table has a 1 wherever characters should be
617 * considered part of the scanset.
619 static const u_char
*
620 __sccl(char *tab
, const u_char
*fmt
)
624 /* first `clear' the whole table */
625 c
= *fmt
++; /* first char hat => negated scanset */
627 v
= 1; /* default => accept */
628 c
= *fmt
++; /* get new first char */
630 v
= 0; /* default => reject */
632 /* XXX: Will not work if sizeof(tab*) > sizeof(char) */
633 (void) memset(tab
, v
, 256);
636 return fmt
- 1;/* format ended before closing ] */
639 * Now set the entries corresponding to the actual scanset
640 * to the opposite of the above.
642 * The first character may be ']' (or '-') without being special;
643 * the last character may be '-'.
647 tab
[c
] = v
; /* take character c */
649 n
= *fmt
++; /* and examine the next */
651 case 0: /* format ended too soon */
656 * A scanset of the form
658 * is defined as `the digit 0, the digit 1,
659 * the character +, the character -', but
660 * the effect of a scanset such as
662 * is implementation defined. The V7 Unix
663 * scanf treats `a-z' as `the letters a through
664 * z', but treats `a-a' as `the letter a, the
665 * character -, and the letter a'.
667 * For compatibility, the `-' is not considerd
668 * to define a range if the character following
669 * it is either a close bracket (required by ANSI)
670 * or is not numerically greater than the character
671 * we just stored in the table (c).
674 if (n
== ']' || n
< c
) {
676 break; /* resume the for(;;) */
679 /* fill in the range */
685 * Alas, the V7 Unix scanf also treats formats
686 * such as [a-c-e] as `the letters a through e'.
687 * This too is permitted by the standard....
691 case ']': /* end of scanset */
694 default: /* just another character */