]> git.ipfire.org Git - thirdparty/glibc.git/blame - stdio-common/printf-parse.h
x86-64 memcpy: Properly handle the length parameter [BZ #24097]
[thirdparty/glibc.git] / stdio-common / printf-parse.h
CommitLineData
a04e7405 1/* Internal header for parsing printf format strings.
688903eb 2 Copyright (C) 1995-2018 Free Software Foundation, Inc.
2c6fe0bd 3 This file is part of th GNU C Library.
a04e7405 4
2c6fe0bd 5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
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.
a04e7405 9
2c6fe0bd
UD
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
41bdb6e2 13 Lesser General Public License for more details.
a04e7405 14
41bdb6e2 15 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
a04e7405 18
a04e7405 19#include <printf.h>
e852e889 20#include <stdint.h>
a04e7405 21#include <stddef.h>
c06b7169
UD
22#include <string.h>
23#include <wchar.h>
a04e7405 24
a04e7405
RM
25
26struct printf_spec
27 {
77a58cad 28 /* Information parsed from the format spec. */
a04e7405
RM
29 struct printf_info info;
30
31 /* Pointers into the format string for the end of this format
32 spec and the next (or to the end of the string if no more). */
d64b6ad0 33 const UCHAR_T *end_of_fmt, *next_fmt;
a04e7405
RM
34
35 /* Position of arguments for precision and width, or -1 if `info' has
36 the constant value. */
37 int prec_arg, width_arg;
38
39 int data_arg; /* Position of data argument. */
40 int data_arg_type; /* Type of first argument. */
41 /* Number of arguments consumed by this format specifier. */
42 size_t ndata_args;
9d26efa9
UD
43 /* Size of the parameter for PA_USER type. */
44 int size;
a04e7405
RM
45 };
46
47
48/* The various kinds off arguments that can be passed to printf. */
49union printf_arg
50 {
2c6fe0bd 51 wchar_t pa_wchar;
a04e7405
RM
52 int pa_int;
53 long int pa_long_int;
54 long long int pa_long_long_int;
a04e7405
RM
55 unsigned int pa_u_int;
56 unsigned long int pa_u_long_int;
57 unsigned long long int pa_u_long_long_int;
a04e7405
RM
58 double pa_double;
59 long double pa_long_double;
60 const char *pa_string;
2c6fe0bd 61 const wchar_t *pa_wstring;
a04e7405 62 void *pa_pointer;
9d26efa9 63 void *pa_user;
a04e7405
RM
64 };
65
66
9c7ff11a 67#ifndef DONT_NEED_READ_INT
a04e7405
RM
68/* Read a simple integer from a string and update the string pointer.
69 It is assumed that the first character is a digit. */
135ffda8 70static int
299a95b9 71read_int (const UCHAR_T * *pstr)
a04e7405 72{
135ffda8 73 int retval = **pstr - L_('0');
a04e7405 74
299a95b9 75 while (ISDIGIT (*++(*pstr)))
135ffda8
DM
76 if (retval >= 0)
77 {
78 if (INT_MAX / 10 < retval)
79 retval = -1;
80 else
81 {
82 int digit = **pstr - L_('0');
83
84 retval *= 10;
85 if (INT_MAX - digit < retval)
86 retval = -1;
87 else
88 retval += digit;
89 }
90 }
a04e7405
RM
91
92 return retval;
93}
d64b6ad0 94#endif
a04e7405
RM
95
96
3e5f5557 97/* These are defined in reg-printf.c. */
9d26efa9 98extern printf_arginfo_size_function **__printf_arginfo_table attribute_hidden;
6455d255 99extern printf_function **__printf_function_table attribute_hidden;
9d26efa9 100extern printf_va_arg_function **__printf_va_arg_table attribute_hidden;
a04e7405
RM
101
102
9c7ff11a
UD
103/* Find the next spec in FORMAT, or the end of the string. Returns
104 a pointer into FORMAT, to a '%' or a '\0'. */
c06b7169
UD
105__extern_always_inline const unsigned char *
106__find_specmb (const unsigned char *format)
107{
108 return (const unsigned char *) __strchrnul ((const char *) format, '%');
109}
9c7ff11a 110
c06b7169
UD
111__extern_always_inline const unsigned int *
112__find_specwc (const unsigned int *format)
113{
114 return (const unsigned int *) __wcschrnul ((const wchar_t *) format, L'%');
115}
9c7ff11a
UD
116
117
a04e7405
RM
118/* FORMAT must point to a '%' at the beginning of a spec. Fills in *SPEC
119 with the parsed details. POSN is the number of arguments already
120 consumed. At most MAXTYPES - POSN types are filled in TYPES. Return
121 the number of args consumed by this spec; *MAX_REF_ARG is updated so it
122 remains the highest argument index used. */
9c7ff11a
UD
123extern size_t __parse_one_specmb (const unsigned char *format, size_t posn,
124 struct printf_spec *spec,
c06b7169 125 size_t *max_ref_arg) attribute_hidden;
9c7ff11a
UD
126
127extern size_t __parse_one_specwc (const unsigned int *format, size_t posn,
128 struct printf_spec *spec,
129 size_t *max_ref_arg) attribute_hidden;
9d26efa9
UD
130
131
132
133/* This variable is defined in reg-modifier.c. */
134struct printf_modifier_record;
135extern struct printf_modifier_record **__printf_modifier_table
136 attribute_hidden;
137
138/* Handle registered modifiers. */
139extern int __handle_registered_modifier_mb (const unsigned char **format,
140 struct printf_info *info)
141 attribute_hidden;
142extern int __handle_registered_modifier_wc (const unsigned int **format,
143 struct printf_info *info)
144 attribute_hidden;