|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef PRINTF_PARSE |
|
# include <config.h> |
|
#endif |
|
|
|
|
|
#ifndef PRINTF_PARSE |
|
# include "printf-parse.h" |
|
#endif |
|
|
|
|
|
#ifndef PRINTF_PARSE |
|
# define PRINTF_PARSE printf_parse |
|
# define CHAR_T char |
|
# define DIRECTIVE char_directive |
|
# define DIRECTIVES char_directives |
|
#endif |
|
|
|
|
|
#include <stddef.h> |
|
|
|
|
|
#include <stdint.h> |
|
|
|
|
|
#include <stdlib.h> |
|
|
|
|
|
#include <string.h> |
|
|
|
|
|
#include <errno.h> |
|
|
|
|
|
#include "xsize.h" |
|
|
|
#if CHAR_T_ONLY_ASCII |
|
|
|
# include "c-ctype.h" |
|
#endif |
|
|
|
#ifdef STATIC |
|
STATIC |
|
#endif |
|
int |
|
PRINTF_PARSE (const CHAR_T *format, DIRECTIVES *d, arguments *a) |
|
{ |
|
const CHAR_T *cp = format; |
|
size_t arg_posn = 0; |
|
size_t d_allocated; |
|
size_t a_allocated; |
|
size_t max_width_length = 0; |
|
size_t max_precision_length = 0; |
|
|
|
d->count = 0; |
|
d_allocated = N_DIRECT_ALLOC_DIRECTIVES; |
|
d->dir = d->direct_alloc_dir; |
|
|
|
a->count = 0; |
|
a_allocated = N_DIRECT_ALLOC_ARGUMENTS; |
|
a->arg = a->direct_alloc_arg; |
|
|
|
#define REGISTER_ARG(_index_,_type_) \ |
|
{ \ |
|
size_t n = (_index_); \ |
|
if (n >= a_allocated) \ |
|
{ \ |
|
size_t memory_size; \ |
|
argument *memory; \ |
|
\ |
|
a_allocated = xtimes (a_allocated, 2); \ |
|
if (a_allocated <= n) \ |
|
a_allocated = xsum (n, 1); \ |
|
memory_size = xtimes (a_allocated, sizeof (argument)); \ |
|
if (size_overflow_p (memory_size)) \ |
|
\ |
|
goto out_of_memory; \ |
|
memory = (argument *) (a->arg != a->direct_alloc_arg \ |
|
? realloc (a->arg, memory_size) \ |
|
: malloc (memory_size)); \ |
|
if (memory == NULL) \ |
|
\ |
|
goto out_of_memory; \ |
|
if (a->arg == a->direct_alloc_arg) \ |
|
memcpy (memory, a->arg, a->count * sizeof (argument)); \ |
|
a->arg = memory; \ |
|
} \ |
|
while (a->count <= n) \ |
|
a->arg[a->count++].type = TYPE_NONE; \ |
|
if (a->arg[n].type == TYPE_NONE) \ |
|
a->arg[n].type = (_type_); \ |
|
else if (a->arg[n].type != (_type_)) \ |
|
\ |
|
goto error; \ |
|
} |
|
|
|
while (*cp != '\0') |
|
{ |
|
CHAR_T c = *cp++; |
|
if (c == '%') |
|
{ |
|
size_t arg_index = ARG_NONE; |
|
DIRECTIVE *dp = &d->dir[d->count]; |
|
|
|
|
|
dp->dir_start = cp - 1; |
|
dp->flags = 0; |
|
dp->width_start = NULL; |
|
dp->width_end = NULL; |
|
dp->width_arg_index = ARG_NONE; |
|
dp->precision_start = NULL; |
|
dp->precision_end = NULL; |
|
dp->precision_arg_index = ARG_NONE; |
|
dp->arg_index = ARG_NONE; |
|
|
|
|
|
if (*cp >= '0' && *cp <= '9') |
|
{ |
|
const CHAR_T *np; |
|
|
|
for (np = cp; *np >= '0' && *np <= '9'; np++) |
|
; |
|
if (*np == '$') |
|
{ |
|
size_t n = 0; |
|
|
|
for (np = cp; *np >= '0' && *np <= '9'; np++) |
|
n = xsum (xtimes (n, 10), *np - '0'); |
|
if (n == 0) |
|
|
|
goto error; |
|
if (size_overflow_p (n)) |
|
|
|
goto error; |
|
arg_index = n - 1; |
|
cp = np + 1; |
|
} |
|
} |
|
|
|
|
|
for (;;) |
|
{ |
|
if (*cp == '\'') |
|
{ |
|
dp->flags |= FLAG_GROUP; |
|
cp++; |
|
} |
|
else if (*cp == '-') |
|
{ |
|
dp->flags |= FLAG_LEFT; |
|
cp++; |
|
} |
|
else if (*cp == '+') |
|
{ |
|
dp->flags |= FLAG_SHOWSIGN; |
|
cp++; |
|
} |
|
else if (*cp == ' ') |
|
{ |
|
dp->flags |= FLAG_SPACE; |
|
cp++; |
|
} |
|
else if (*cp == '#') |
|
{ |
|
dp->flags |= FLAG_ALT; |
|
cp++; |
|
} |
|
else if (*cp == '0') |
|
{ |
|
dp->flags |= FLAG_ZERO; |
|
cp++; |
|
} |
|
#if __GLIBC__ >= 2 && !defined __UCLIBC__ |
|
else if (*cp == 'I') |
|
{ |
|
dp->flags |= FLAG_LOCALIZED; |
|
cp++; |
|
} |
|
#endif |
|
else |
|
break; |
|
} |
|
|
|
|
|
if (*cp == '*') |
|
{ |
|
dp->width_start = cp; |
|
cp++; |
|
dp->width_end = cp; |
|
if (max_width_length < 1) |
|
max_width_length = 1; |
|
|
|
|
|
if (*cp >= '0' && *cp <= '9') |
|
{ |
|
const CHAR_T *np; |
|
|
|
for (np = cp; *np >= '0' && *np <= '9'; np++) |
|
; |
|
if (*np == '$') |
|
{ |
|
size_t n = 0; |
|
|
|
for (np = cp; *np >= '0' && *np <= '9'; np++) |
|
n = xsum (xtimes (n, 10), *np - '0'); |
|
if (n == 0) |
|
|
|
goto error; |
|
if (size_overflow_p (n)) |
|
|
|
goto error; |
|
dp->width_arg_index = n - 1; |
|
cp = np + 1; |
|
} |
|
} |
|
if (dp->width_arg_index == ARG_NONE) |
|
{ |
|
dp->width_arg_index = arg_posn++; |
|
if (dp->width_arg_index == ARG_NONE) |
|
|
|
goto error; |
|
} |
|
REGISTER_ARG (dp->width_arg_index, TYPE_INT); |
|
} |
|
else if (*cp >= '0' && *cp <= '9') |
|
{ |
|
size_t width_length; |
|
|
|
dp->width_start = cp; |
|
for (; *cp >= '0' && *cp <= '9'; cp++) |
|
; |
|
dp->width_end = cp; |
|
width_length = dp->width_end - dp->width_start; |
|
if (max_width_length < width_length) |
|
max_width_length = width_length; |
|
} |
|
|
|
|
|
if (*cp == '.') |
|
{ |
|
cp++; |
|
if (*cp == '*') |
|
{ |
|
dp->precision_start = cp - 1; |
|
cp++; |
|
dp->precision_end = cp; |
|
if (max_precision_length < 2) |
|
max_precision_length = 2; |
|
|
|
|
|
if (*cp >= '0' && *cp <= '9') |
|
{ |
|
const CHAR_T *np; |
|
|
|
for (np = cp; *np >= '0' && *np <= '9'; np++) |
|
; |
|
if (*np == '$') |
|
{ |
|
size_t n = 0; |
|
|
|
for (np = cp; *np >= '0' && *np <= '9'; np++) |
|
n = xsum (xtimes (n, 10), *np - '0'); |
|
if (n == 0) |
|
|
|
goto error; |
|
if (size_overflow_p (n)) |
|
|
|
|
|
goto error; |
|
dp->precision_arg_index = n - 1; |
|
cp = np + 1; |
|
} |
|
} |
|
if (dp->precision_arg_index == ARG_NONE) |
|
{ |
|
dp->precision_arg_index = arg_posn++; |
|
if (dp->precision_arg_index == ARG_NONE) |
|
|
|
goto error; |
|
} |
|
REGISTER_ARG (dp->precision_arg_index, TYPE_INT); |
|
} |
|
else |
|
{ |
|
size_t precision_length; |
|
|
|
dp->precision_start = cp - 1; |
|
for (; *cp >= '0' && *cp <= '9'; cp++) |
|
; |
|
dp->precision_end = cp; |
|
precision_length = dp->precision_end - dp->precision_start; |
|
if (max_precision_length < precision_length) |
|
max_precision_length = precision_length; |
|
} |
|
} |
|
|
|
{ |
|
arg_type type; |
|
|
|
|
|
{ |
|
int flags = 0; |
|
|
|
for (;;) |
|
{ |
|
if (*cp == 'h') |
|
{ |
|
flags |= (1 << (flags & 1)); |
|
cp++; |
|
} |
|
else if (*cp == 'L') |
|
{ |
|
flags |= 4; |
|
cp++; |
|
} |
|
else if (*cp == 'l') |
|
{ |
|
flags += 8; |
|
cp++; |
|
} |
|
else if (*cp == 'j') |
|
{ |
|
if (sizeof (intmax_t) > sizeof (long)) |
|
{ |
|
|
|
flags += 16; |
|
} |
|
else if (sizeof (intmax_t) > sizeof (int)) |
|
{ |
|
|
|
flags += 8; |
|
} |
|
cp++; |
|
} |
|
else if (*cp == 'z' || *cp == 'Z') |
|
{ |
|
|
|
|
|
|
|
if (sizeof (size_t) > sizeof (long)) |
|
{ |
|
|
|
flags += 16; |
|
} |
|
else if (sizeof (size_t) > sizeof (int)) |
|
{ |
|
|
|
flags += 8; |
|
} |
|
cp++; |
|
} |
|
else if (*cp == 't') |
|
{ |
|
if (sizeof (ptrdiff_t) > sizeof (long)) |
|
{ |
|
|
|
flags += 16; |
|
} |
|
else if (sizeof (ptrdiff_t) > sizeof (int)) |
|
{ |
|
|
|
flags += 8; |
|
} |
|
cp++; |
|
} |
|
#if defined __APPLE__ && defined __MACH__ |
|
|
|
|
|
|
|
else if (*cp == 'q') |
|
{ |
|
if (64 / 8 > sizeof (long)) |
|
{ |
|
|
|
flags += 16; |
|
} |
|
else |
|
{ |
|
|
|
flags += 8; |
|
} |
|
cp++; |
|
} |
|
#endif |
|
#if defined _WIN32 && ! defined __CYGWIN__ |
|
|
|
|
|
|
|
else if (*cp == 'I' && cp[1] == '6' && cp[2] == '4') |
|
{ |
|
if (64 / 8 > sizeof (long)) |
|
{ |
|
|
|
flags += 16; |
|
} |
|
else |
|
{ |
|
|
|
flags += 8; |
|
} |
|
cp += 3; |
|
} |
|
#endif |
|
else |
|
break; |
|
} |
|
|
|
|
|
c = *cp++; |
|
switch (c) |
|
{ |
|
case 'd': case 'i': |
|
|
|
if (flags >= 16 || (flags & 4)) |
|
type = TYPE_LONGLONGINT; |
|
else |
|
|
|
|
|
if (flags >= 8) |
|
type = TYPE_LONGINT; |
|
else if (flags & 2) |
|
type = TYPE_SCHAR; |
|
else if (flags & 1) |
|
type = TYPE_SHORT; |
|
else |
|
type = TYPE_INT; |
|
break; |
|
case 'o': case 'u': case 'x': case 'X': |
|
|
|
if (flags >= 16 || (flags & 4)) |
|
type = TYPE_ULONGLONGINT; |
|
else |
|
|
|
|
|
if (flags >= 8) |
|
type = TYPE_ULONGINT; |
|
else if (flags & 2) |
|
type = TYPE_UCHAR; |
|
else if (flags & 1) |
|
type = TYPE_USHORT; |
|
else |
|
type = TYPE_UINT; |
|
break; |
|
case 'f': case 'F': case 'e': case 'E': case 'g': case 'G': |
|
case 'a': case 'A': |
|
if (flags >= 16 || (flags & 4)) |
|
type = TYPE_LONGDOUBLE; |
|
else |
|
type = TYPE_DOUBLE; |
|
break; |
|
case 'c': |
|
if (flags >= 8) |
|
#if HAVE_WINT_T |
|
type = TYPE_WIDE_CHAR; |
|
#else |
|
goto error; |
|
#endif |
|
else |
|
type = TYPE_CHAR; |
|
break; |
|
#if HAVE_WINT_T |
|
case 'C': |
|
type = TYPE_WIDE_CHAR; |
|
c = 'c'; |
|
break; |
|
#endif |
|
case 's': |
|
if (flags >= 8) |
|
#if HAVE_WCHAR_T |
|
type = TYPE_WIDE_STRING; |
|
#else |
|
goto error; |
|
#endif |
|
else |
|
type = TYPE_STRING; |
|
break; |
|
#if HAVE_WCHAR_T |
|
case 'S': |
|
type = TYPE_WIDE_STRING; |
|
c = 's'; |
|
break; |
|
#endif |
|
case 'p': |
|
type = TYPE_POINTER; |
|
break; |
|
case 'n': |
|
|
|
if (flags >= 16 || (flags & 4)) |
|
type = TYPE_COUNT_LONGLONGINT_POINTER; |
|
else |
|
|
|
|
|
if (flags >= 8) |
|
type = TYPE_COUNT_LONGINT_POINTER; |
|
else if (flags & 2) |
|
type = TYPE_COUNT_SCHAR_POINTER; |
|
else if (flags & 1) |
|
type = TYPE_COUNT_SHORT_POINTER; |
|
else |
|
type = TYPE_COUNT_INT_POINTER; |
|
break; |
|
#if ENABLE_UNISTDIO |
|
|
|
case 'U': |
|
if (flags >= 16) |
|
type = TYPE_U32_STRING; |
|
else if (flags >= 8) |
|
type = TYPE_U16_STRING; |
|
else |
|
type = TYPE_U8_STRING; |
|
break; |
|
#endif |
|
case '%': |
|
type = TYPE_NONE; |
|
break; |
|
default: |
|
|
|
goto error; |
|
} |
|
} |
|
|
|
if (type != TYPE_NONE) |
|
{ |
|
dp->arg_index = arg_index; |
|
if (dp->arg_index == ARG_NONE) |
|
{ |
|
dp->arg_index = arg_posn++; |
|
if (dp->arg_index == ARG_NONE) |
|
|
|
goto error; |
|
} |
|
REGISTER_ARG (dp->arg_index, type); |
|
} |
|
dp->conversion = c; |
|
dp->dir_end = cp; |
|
} |
|
|
|
d->count++; |
|
if (d->count >= d_allocated) |
|
{ |
|
size_t memory_size; |
|
DIRECTIVE *memory; |
|
|
|
d_allocated = xtimes (d_allocated, 2); |
|
memory_size = xtimes (d_allocated, sizeof (DIRECTIVE)); |
|
if (size_overflow_p (memory_size)) |
|
|
|
goto out_of_memory; |
|
memory = (DIRECTIVE *) (d->dir != d->direct_alloc_dir |
|
? realloc (d->dir, memory_size) |
|
: malloc (memory_size)); |
|
if (memory == NULL) |
|
|
|
goto out_of_memory; |
|
if (d->dir == d->direct_alloc_dir) |
|
memcpy (memory, d->dir, d->count * sizeof (DIRECTIVE)); |
|
d->dir = memory; |
|
} |
|
} |
|
#if CHAR_T_ONLY_ASCII |
|
else if (!c_isascii (c)) |
|
{ |
|
|
|
goto error; |
|
} |
|
#endif |
|
} |
|
d->dir[d->count].dir_start = cp; |
|
|
|
d->max_width_length = max_width_length; |
|
d->max_precision_length = max_precision_length; |
|
return 0; |
|
|
|
error: |
|
if (a->arg != a->direct_alloc_arg) |
|
free (a->arg); |
|
if (d->dir != d->direct_alloc_dir) |
|
free (d->dir); |
|
errno = EINVAL; |
|
return -1; |
|
|
|
out_of_memory: |
|
if (a->arg != a->direct_alloc_arg) |
|
free (a->arg); |
|
if (d->dir != d->direct_alloc_dir) |
|
free (d->dir); |
|
errno = ENOMEM; |
|
return -1; |
|
} |
|
|
|
#undef PRINTF_PARSE |
|
#undef DIRECTIVES |
|
#undef DIRECTIVE |
|
#undef CHAR_T_ONLY_ASCII |
|
#undef CHAR_T |
|
|