diff mbox series

[4/6] add -Wformat

Message ID 20190403153552.23461-5-ben.dooks@codethink.co.uk (mailing list archive)
State Superseded, archived
Headers show
Series [1/6] validation: ignore temporary ~ files | expand

Commit Message

Ben Dooks April 3, 2019, 3:35 p.m. UTC
Add option to enable/disable format checking (and default it to on)

Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
---
Changes since v1:
- Default -Wformat off
---
 evaluate.c | 2 +-
 lib.c      | 2 ++
 lib.h      | 1 +
 sparse.1   | 9 +++++++++
 4 files changed, 13 insertions(+), 1 deletion(-)

Comments

Luc Van Oostenryck April 3, 2019, 9:31 p.m. UTC | #1
On Wed, Apr 03, 2019 at 04:35:50PM +0100, Ben Dooks wrote:
> Add option to enable/disable format checking (and default it to on)

Please, change this to default off (and thus move it before patch 3).

> diff --git a/sparse.1 b/sparse.1
> index 78d0b1e..1bf4e3c 100644
> --- a/sparse.1
> +++ b/sparse.1
> @@ -260,6 +260,15 @@ trouble.
>  Sparse does not issue these warnings by default.
>  .
>  .TP
> +.B \-Wformat
> +Warn about parameter mis-match to any variadic function which specifies

s/mis-match/mismatch/

> +where the format string is specified with the 
> +.BI __attribute__((format( type, message, va_start )))
> +attribute.
> +
> +Sparse does not issues these warnings by default. To turn them on, use

s/issues/issue/

-- Luc
diff mbox series

Patch

diff --git a/evaluate.c b/evaluate.c
index d6e8415..a21bc3f 100644
--- a/evaluate.c
+++ b/evaluate.c
@@ -2743,7 +2743,7 @@  static int evaluate_arguments(struct symbol *fn, struct expression_list *head)
 	/* do this first, otherwise the arugment info may get lost or changed
 	 * later on in the evaluation loop.
 	 */
-	if (fn->ctype.printf_va_start)
+	if (Wformat && fn->ctype.printf_va_start)
 		evaluate_format_printf(fn, head);
 
 	PREPARE_PTR_LIST(argument_types, argtype);
diff --git a/lib.c b/lib.c
index 83e6a1e..b3bb2e6 100644
--- a/lib.c
+++ b/lib.c
@@ -269,6 +269,7 @@  int Wimplicit_int = 1;
 int Winit_cstring = 0;
 int Wint_to_pointer_cast = 1;
 int Wenum_mismatch = 1;
+int Wformat = 0;
 int Wsparse_error = 0;
 int Wmemcpy_max_count = 1;
 int Wnon_pointer_null = 1;
@@ -651,6 +652,7 @@  static const struct flag warnings[] = {
 	{ "implicit-int", &Wimplicit_int },
 	{ "init-cstring", &Winit_cstring },
 	{ "int-to-pointer-cast", &Wint_to_pointer_cast },
+	{ "format", &Wformat },
 	{ "memcpy-max-count", &Wmemcpy_max_count },
 	{ "non-pointer-null", &Wnon_pointer_null },
 	{ "old-initializer", &Wold_initializer },
diff --git a/lib.h b/lib.h
index 322408b..c606807 100644
--- a/lib.h
+++ b/lib.h
@@ -152,6 +152,7 @@  extern int Wdefault_bitfield_sign;
 extern int Wdesignated_init;
 extern int Wdo_while;
 extern int Wenum_mismatch;
+extern int Wformat;
 extern int Wsparse_error;
 extern int Wimplicit_int;
 extern int Winit_cstring;
diff --git a/sparse.1 b/sparse.1
index 78d0b1e..1bf4e3c 100644
--- a/sparse.1
+++ b/sparse.1
@@ -260,6 +260,15 @@  trouble.
 Sparse does not issue these warnings by default.
 .
 .TP
+.B \-Wformat
+Warn about parameter mis-match to any variadic function which specifies
+where the format string is specified with the 
+.BI __attribute__((format( type, message, va_start )))
+attribute.
+
+Sparse does not issues these warnings by default. To turn them on, use
+\fB\-Wno\-format\fR
+.TP
 .B \-Wmemcpy\-max\-count
 Warn about call of \fBmemcpy()\fR, \fBmemset()\fR, \fBcopy_from_user()\fR, or
 \fBcopy_to_user()\fR with a large compile-time byte count.