X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=sidebyside;f=format_check.c;h=6fec9b7c8843c4806f1024b4d35dd1a8951b2713;hb=c080804a9ae61e4ba0ec6fc7288c81c326fa9ddb;hp=16eafd1f70c8b28d89aa35c515857358aa2e0c46;hpb=9634f9c53e95b6bdc7883228c5ec5147f3de4f8e;p=cparser diff --git a/format_check.c b/format_check.c index 16eafd1..6fec9b7 100644 --- a/format_check.c +++ b/format_check.c @@ -27,6 +27,7 @@ #include "ast_t.h" #include "entity_t.h" #include "diagnostic.h" +#include "parser.h" #include "types.h" #include "type_t.h" #include "warning.h" @@ -107,7 +108,7 @@ static int internal_check_printf_format(const expression_t *fmt_expr, const call_argument_t *arg, const format_spec_t *spec) { - while (fmt_expr->kind == EXPR_UNARY_CAST_IMPLICIT) { + while (fmt_expr->kind == EXPR_UNARY_CAST) { fmt_expr = fmt_expr->unary.value; } @@ -228,6 +229,10 @@ break_fmt_flags: /* precision */ if (fmt == '.') { + if (fmt_flags & FMT_FLAG_ZERO) { + warningf(WARN_FORMAT, pos, "'0' flag ignored with precision in conversion specification %u", num_fmt); + } + ++num_args; fmt = *(++c); if (fmt == '*') { @@ -324,17 +329,17 @@ break_fmt_flags: case 'd': case 'i': switch (fmt_mod) { - case FMT_MOD_NONE: expected_type = type_int; break; - case FMT_MOD_hh: expected_type = type_int; break; /* TODO promoted signed char */ - case FMT_MOD_h: expected_type = type_int; break; /* TODO promoted short */ - case FMT_MOD_l: expected_type = type_long; break; - case FMT_MOD_ll: expected_type = type_long_long; break; - case FMT_MOD_j: expected_type = type_intmax_t; break; - case FMT_MOD_z: expected_type = type_ssize_t; break; - case FMT_MOD_t: expected_type = type_ptrdiff_t; break; - case FMT_MOD_I: expected_type = type_ptrdiff_t; break; - case FMT_MOD_I32: expected_type = type_int32; break; - case FMT_MOD_I64: expected_type = type_int64; break; + case FMT_MOD_NONE: expected_type = type_int; break; + case FMT_MOD_hh: expected_type = type_signed_char; break; + case FMT_MOD_h: expected_type = type_short; break; + case FMT_MOD_l: expected_type = type_long; break; + case FMT_MOD_ll: expected_type = type_long_long; break; + case FMT_MOD_j: expected_type = type_intmax_t; break; + case FMT_MOD_z: expected_type = type_ssize_t; break; + case FMT_MOD_t: expected_type = type_ptrdiff_t; break; + case FMT_MOD_I: expected_type = type_ptrdiff_t; break; + case FMT_MOD_I32: expected_type = type_int32; break; + case FMT_MOD_I64: expected_type = type_int64; break; default: warn_invalid_length_modifier(pos, fmt_mod, fmt); @@ -354,8 +359,8 @@ break_fmt_flags: eval_fmt_mod_unsigned: switch (fmt_mod) { case FMT_MOD_NONE: expected_type = type_unsigned_int; break; - case FMT_MOD_hh: expected_type = type_int; break; /* TODO promoted unsigned char */ - case FMT_MOD_h: expected_type = type_int; break; /* TODO promoted unsigned short */ + case FMT_MOD_hh: expected_type = type_unsigned_char; break; + case FMT_MOD_h: expected_type = type_unsigned_short; break; case FMT_MOD_l: expected_type = type_unsigned_long; break; case FMT_MOD_ll: expected_type = type_unsigned_long_long; break; case FMT_MOD_j: expected_type = type_uintmax_t; break; @@ -468,8 +473,7 @@ eval_fmt_mod_unsigned: default: warningf(WARN_FORMAT, pos, "encountered unknown conversion specifier '%%%c' at position %u", fmt, num_fmt); if (arg == NULL) { - warningf(WARN_FORMAT, pos, "too few arguments for format string"); - return -1; + goto too_few_args; } goto next_arg; } @@ -490,6 +494,7 @@ eval_fmt_mod_unsigned: } if (arg == NULL) { +too_few_args: warningf(WARN_FORMAT, pos, "too few arguments for format string"); return -1; } @@ -516,6 +521,15 @@ eval_fmt_mod_unsigned: } } else if (get_unqualified_type(arg_skip) == expected_type_skip) { goto next_arg; + } else if (arg->expression->kind == EXPR_UNARY_CAST) { + expression_t const *const expr = arg->expression->unary.value; + type_t *const unprom_type = skip_typeref(expr->base.type); + if (get_unqualified_type(unprom_type) == expected_type_skip) { + goto next_arg; + } + if (expected_type_skip == type_unsigned_int && !is_type_signed(unprom_type)) { + goto next_arg; + } } if (is_type_valid(arg_skip)) { source_position_t const *const apos = &arg->expression->base.source_position; @@ -581,7 +595,7 @@ static void check_scanf_format(const call_argument_t *arg, } const expression_t *fmt_expr = arg->expression; - if (fmt_expr->kind == EXPR_UNARY_CAST_IMPLICIT) { + if (fmt_expr->kind == EXPR_UNARY_CAST) { fmt_expr = fmt_expr->unary.value; } @@ -604,15 +618,28 @@ static void check_scanf_format(const call_argument_t *arg, if (fmt != '%') continue; fmt = *(++c); - if (fmt == '\0') { - warningf(WARN_FORMAT, pos, "dangling '%%' in format string"); - break; - } if (fmt == '%') continue; ++num_fmt; + bool suppress_assignment = false; + if (fmt == '*') { + fmt = *++c; + suppress_assignment = true; + } + + size_t width = 0; + if ('0' <= fmt && fmt <= '9') { + do { + width = width * 10 + (fmt - '0'); + fmt = *++c; + } while ('0' <= fmt && fmt <= '9'); + if (width == 0) { + warningf(WARN_FORMAT, pos, "field width is zero at format %u", num_fmt); + } + } + /* look for length modifiers */ format_length_modifier_t fmt_mod = FMT_MOD_NONE; switch (fmt) { @@ -750,20 +777,32 @@ static void check_scanf_format(const call_argument_t *arg, goto next_arg; } expected_type = type_wchar_t; - break; + goto check_c_width; - case 'c': - expected_type = type_int; + case 'c': { switch (fmt_mod) { - case FMT_MOD_NONE: expected_type = type_int; break; /* TODO promoted char */ - case FMT_MOD_l: expected_type = type_wint_t; break; + case FMT_MOD_NONE: expected_type = type_char; break; + case FMT_MOD_l: expected_type = type_wchar_t; break; case FMT_MOD_w: expected_type = type_wchar_t; break; default: warn_invalid_length_modifier(pos, fmt_mod, fmt); goto next_arg; } + +check_c_width: + if (width == 0) + width = 1; + if (!suppress_assignment && arg != NULL) { + type_t *const type = skip_typeref(revert_automatic_type_conversion(arg->expression)); + if (is_type_array(type) && + type->array.size_constant && + width > type->array.size) { + warningf(WARN_FORMAT, pos, "target buffer '%T' is too small for %u characters at format %u", type, width, num_fmt); + } + } break; + } case 'S': if (fmt_mod != FMT_MOD_NONE) { @@ -774,7 +813,7 @@ static void check_scanf_format(const call_argument_t *arg, break; case 's': - case '[': + case '[': { switch (fmt_mod) { case FMT_MOD_NONE: expected_type = type_char; break; case FMT_MOD_l: expected_type = type_wchar_t; break; @@ -784,7 +823,19 @@ static void check_scanf_format(const call_argument_t *arg, warn_invalid_length_modifier(pos, fmt_mod, fmt); goto next_arg; } + + if (!suppress_assignment && + width != 0 && + arg != NULL) { + type_t *const type = skip_typeref(revert_automatic_type_conversion(arg->expression)); + if (is_type_array(type) && + type->array.size_constant && + width >= type->array.size) { + warningf(WARN_FORMAT, pos, "target buffer '%T' is too small for %u characters and \\0 at format %u", type, width, num_fmt); + } + } break; + } case 'p': if (fmt_mod != FMT_MOD_NONE) { @@ -794,7 +845,11 @@ static void check_scanf_format(const call_argument_t *arg, expected_type = type_void_ptr; break; - case 'n': + case 'n': { + if (suppress_assignment) { + warningf(WARN_FORMAT, pos, "conversion '%n' cannot be suppressed with '*' at format %u", num_fmt); + } + switch (fmt_mod) { case FMT_MOD_NONE: expected_type = type_int; break; case FMT_MOD_hh: expected_type = type_signed_char; break; @@ -810,17 +865,22 @@ static void check_scanf_format(const call_argument_t *arg, goto next_arg; } break; + } default: warningf(WARN_FORMAT, pos, "encountered unknown conversion specifier '%%%c' at format %u", fmt, num_fmt); - if (arg == NULL) { - warningf(WARN_FORMAT, pos, "too few arguments for format string"); - return; - } + if (suppress_assignment) + continue; + if (arg == NULL) + goto too_few_args; goto next_arg; } + if (suppress_assignment) + continue; + if (arg == NULL) { +too_few_args: warningf(WARN_FORMAT, pos, "too few arguments for format string"); return; }