1 /* Helper functions for parsing printf format strings.
2 Copyright (C) 1995-2022 Free Software Foundation, Inc.
3 This file is part of th GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
23 #include <sys/param.h>
27 #ifndef COMPILE_WPRINTF
29 # define UCHAR_T unsigned char
32 # define ISDIGIT(Ch) isdigit (Ch)
33 # define HANDLE_REGISTERED_MODIFIER __handle_registered_modifier_mb
35 # define CHAR_T wchar_t
36 # define UCHAR_T unsigned int
38 # define L_(Str) L##Str
39 # define ISDIGIT(Ch) iswdigit (Ch)
40 # define HANDLE_REGISTERED_MODIFIER __handle_registered_modifier_wc
43 #include "printf-parse.h"
50 /* FORMAT must point to a '%' at the beginning of a spec. Fills in *SPEC
51 with the parsed details. POSN is the number of arguments already
52 consumed. At most MAXTYPES - POSN types are filled in TYPES. Return
53 the number of args consumed by this spec; *MAX_REF_ARG is updated so it
54 remains the highest argument index used. */
57 #ifdef COMPILE_WPRINTF
58 __parse_one_specwc (const UCHAR_T
*format
, size_t posn
,
59 struct printf_spec
*spec
, size_t *max_ref_arg
)
61 __parse_one_specmb (const UCHAR_T
*format
, size_t posn
,
62 struct printf_spec
*spec
, size_t *max_ref_arg
)
71 /* Clear information structure. */
76 spec
->info
.showsign
= 0;
81 spec
->info
.wide
= sizeof (UCHAR_T
) > 1;
82 spec
->info
.is_binary128
= 0;
84 /* Test for positional argument. */
85 if (ISDIGIT (*format
))
87 const UCHAR_T
*begin
= format
;
89 n
= read_int (&format
);
91 if (n
!= 0 && *format
== L_('$'))
92 /* Is positional parameter. */
94 ++format
; /* Skip the '$'. */
97 spec
->data_arg
= n
- 1;
98 *max_ref_arg
= MAX (*max_ref_arg
, n
);
102 /* Oops; that was actually the width and/or 0 padding flag.
103 Step back and read it again. */
107 /* Check for spec modifiers. */
113 /* Output a space in place of a sign, when there is no sign. */
114 spec
->info
.space
= 1;
117 /* Always output + or - for numbers. */
118 spec
->info
.showsign
= 1;
121 /* Left-justify things. */
125 /* Use the "alternate form":
126 Hex has 0x or 0X, FP always has a decimal point. */
131 spec
->info
.pad
= '0';
134 /* Show grouping in numbers if the locale information
136 spec
->info
.group
= 1;
139 /* Use the internationalized form of the output. Currently
140 means to use the `outdigits' of the current locale. */
151 spec
->info
.pad
= ' ';
153 /* Get the field width. */
154 spec
->width_arg
= -1;
155 spec
->info
.width
= 0;
156 if (*format
== L_('*'))
158 /* The field width is given in an argument.
159 A negative field width indicates left justification. */
160 const UCHAR_T
*begin
= ++format
;
162 if (ISDIGIT (*format
))
164 /* The width argument might be found in a positional parameter. */
165 n
= read_int (&format
);
167 if (n
!= 0 && *format
== L_('$'))
171 spec
->width_arg
= n
- 1;
172 *max_ref_arg
= MAX (*max_ref_arg
, n
);
174 ++format
; /* Skip '$'. */
178 if (spec
->width_arg
< 0)
180 /* Not in a positional parameter. Consume one argument. */
181 spec
->width_arg
= posn
++;
183 format
= begin
; /* Step back and reread. */
186 else if (ISDIGIT (*format
))
188 int n
= read_int (&format
);
190 /* Constant width specification. */
192 spec
->info
.width
= n
;
194 /* Get the precision. */
196 /* -1 means none given; 0 means explicit 0. */
197 spec
->info
.prec
= -1;
198 if (*format
== L_('.'))
201 if (*format
== L_('*'))
203 /* The precision is given in an argument. */
204 const UCHAR_T
*begin
= ++format
;
206 if (ISDIGIT (*format
))
208 n
= read_int (&format
);
210 if (n
!= 0 && *format
== L_('$'))
214 spec
->prec_arg
= n
- 1;
215 *max_ref_arg
= MAX (*max_ref_arg
, n
);
221 if (spec
->prec_arg
< 0)
223 /* Not in a positional parameter. */
224 spec
->prec_arg
= posn
++;
229 else if (ISDIGIT (*format
))
231 int n
= read_int (&format
);
237 /* "%.?" is treated like "%.0?". */
241 /* Check for type modifiers. */
242 spec
->info
.is_long_double
= 0;
243 spec
->info
.is_short
= 0;
244 spec
->info
.is_long
= 0;
245 spec
->info
.is_char
= 0;
248 if (__builtin_expect (__printf_modifier_table
== NULL
, 1)
249 || __printf_modifier_table
[*format
] == NULL
250 || HANDLE_REGISTERED_MODIFIER (&format
, &spec
->info
) != 0)
254 /* ints are short ints or chars. */
255 if (*format
!= L_('h'))
256 spec
->info
.is_short
= 1;
260 spec
->info
.is_char
= 1;
264 /* ints are long ints. */
265 spec
->info
.is_long
= 1;
266 if (*format
!= L_('l'))
271 /* doubles are long doubles, and ints are long long ints. */
273 /* 4.4 uses this for long long. */
274 spec
->info
.is_long_double
= 1;
278 /* ints are size_ts. */
279 assert (sizeof (size_t) <= sizeof (unsigned long long int));
280 #if LONG_MAX != LONG_LONG_MAX
281 spec
->info
.is_long_double
= (sizeof (size_t)
282 > sizeof (unsigned long int));
284 spec
->info
.is_long
= sizeof (size_t) > sizeof (unsigned int);
287 assert (sizeof (ptrdiff_t) <= sizeof (long long int));
288 #if LONG_MAX != LONG_LONG_MAX
289 spec
->info
.is_long_double
= (sizeof (ptrdiff_t) > sizeof (long int));
291 spec
->info
.is_long
= sizeof (ptrdiff_t) > sizeof (int);
294 assert (sizeof (uintmax_t) <= sizeof (unsigned long long int));
295 #if LONG_MAX != LONG_LONG_MAX
296 spec
->info
.is_long_double
= (sizeof (uintmax_t)
297 > sizeof (unsigned long int));
299 spec
->info
.is_long
= sizeof (uintmax_t) > sizeof (unsigned int);
302 /* Not a recognized modifier. Backup. */
307 /* Get the format specification. */
308 spec
->info
.spec
= (wchar_t) *format
++;
310 if (__builtin_expect (__printf_function_table
== NULL
, 1)
311 || spec
->info
.spec
> UCHAR_MAX
312 || __printf_arginfo_table
[spec
->info
.spec
] == NULL
313 /* We don't try to get the types for all arguments if the format
314 uses more than one. The normal case is covered though. If
315 the call returns -1 we continue with the normal specifiers. */
316 || (int) (spec
->ndata_args
= (*__printf_arginfo_table
[spec
->info
.spec
])
317 (&spec
->info
, 1, &spec
->data_arg_type
,
320 /* Find the data argument types of a built-in spec. */
321 spec
->ndata_args
= 1;
323 switch (spec
->info
.spec
)
333 #if LONG_MAX != LONG_LONG_MAX
334 if (spec
->info
.is_long_double
)
335 spec
->data_arg_type
= PA_INT
|PA_FLAG_LONG_LONG
;
338 if (spec
->info
.is_long
)
339 spec
->data_arg_type
= PA_INT
|PA_FLAG_LONG
;
340 else if (spec
->info
.is_short
)
341 spec
->data_arg_type
= PA_INT
|PA_FLAG_SHORT
;
342 else if (spec
->info
.is_char
)
343 spec
->data_arg_type
= PA_CHAR
;
345 spec
->data_arg_type
= PA_INT
;
355 if (spec
->info
.is_long_double
)
356 spec
->data_arg_type
= PA_DOUBLE
|PA_FLAG_LONG_DOUBLE
;
358 spec
->data_arg_type
= PA_DOUBLE
;
361 spec
->data_arg_type
= PA_CHAR
;
364 spec
->data_arg_type
= PA_WCHAR
;
367 spec
->data_arg_type
= PA_STRING
;
370 spec
->data_arg_type
= PA_WSTRING
;
373 spec
->data_arg_type
= PA_POINTER
;
376 spec
->data_arg_type
= PA_INT
|PA_FLAG_PTR
;
381 /* An unknown spec will consume no args. */
382 spec
->ndata_args
= 0;
387 if (spec
->data_arg
== -1 && spec
->ndata_args
> 0)
389 /* There are args consumed, but no positional spec. Use the
390 next sequential arg position. */
391 spec
->data_arg
= posn
;
392 nargs
+= spec
->ndata_args
;
395 if (spec
->info
.spec
== L
'\0')
396 /* Format ended before this spec was complete. */
397 spec
->end_of_fmt
= spec
->next_fmt
= format
- 1;
400 /* Find the next format spec. */
401 spec
->end_of_fmt
= format
;
402 #ifdef COMPILE_WPRINTF
403 spec
->next_fmt
= __find_specwc (format
);
405 spec
->next_fmt
= __find_specmb (format
);