patches/gcc/4.4.7/140-default-format-security.patch
author danielrubiob@gmail.com
Tue Feb 11 21:34:48 2014 +0100 (2014-02-11)
changeset 3285 a8cb9039fade
parent 2406 95e0c248d257
permissions -rw-r--r--
complibs/cloog: bump version

Signed-off-by: Daniel Rubio Bonilla <danielrubiob@gmail.com>
[yann.morin.1998@free.fr: re-order versions]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Cody P Schafer <dev@codyps.com>
Message-Id: <c2de3964cd6d5e4173cc.1391984023@uemo>
Patchwork-Id: 318637
yann@2149
     1
diff -durN gcc-4.4.5.orig/gcc/c-common.c gcc-4.4.5/gcc/c-common.c
yann@2149
     2
--- gcc-4.4.5.orig/gcc/c-common.c	2010-07-27 15:07:28.000000000 +0200
yann@2149
     3
+++ gcc-4.4.5/gcc/c-common.c	2010-10-09 22:59:03.000000000 +0200
yann@2149
     4
@@ -301,7 +301,7 @@
yann@2149
     5
 /* Warn about format/argument anomalies in calls to formatted I/O functions
yann@2149
     6
    (*printf, *scanf, strftime, strfmon, etc.).  */
yann@2149
     7
 
yann@2149
     8
-int warn_format;
yann@2149
     9
+int warn_format = 1;
yann@2149
    10
 
yann@2149
    11
 /* Warn about using __null (as NULL in C++) as sentinel.  For code compiled
yann@2149
    12
    with GCC this doesn't matter as __null is guaranteed to have the right
yann@2149
    13
diff -durN gcc-4.4.5.orig/gcc/c.opt gcc-4.4.5/gcc/c.opt
yann@2149
    14
--- gcc-4.4.5.orig/gcc/c.opt	2009-09-18 23:53:23.000000000 +0200
yann@2149
    15
+++ gcc-4.4.5/gcc/c.opt	2010-10-09 22:59:03.000000000 +0200
yann@2149
    16
@@ -236,7 +236,7 @@
yann@2149
    17
 Warn about format strings that contain NUL bytes
yann@2149
    18
 
yann@2149
    19
 Wformat-security
yann@2149
    20
-C ObjC C++ ObjC++ Var(warn_format_security) Warning
yann@2149
    21
+C ObjC C++ ObjC++ Var(warn_format_security) Init(1) Warning
yann@2149
    22
 Warn about possible security problems with format functions
yann@2149
    23
 
yann@2149
    24
 Wformat-y2k
yann@2149
    25
diff -durN gcc-4.4.5.orig/gcc/doc/invoke.texi gcc-4.4.5/gcc/doc/invoke.texi
yann@2149
    26
--- gcc-4.4.5.orig/gcc/doc/invoke.texi	2010-09-08 20:13:03.000000000 +0200
yann@2149
    27
+++ gcc-4.4.5/gcc/doc/invoke.texi	2010-10-09 22:59:03.000000000 +0200
yann@2149
    28
@@ -2888,6 +2888,9 @@
yann@2149
    29
 @option{-Wformat-nonliteral}, @option{-Wformat-security}, and
yann@2149
    30
 @option{-Wformat=2} are available, but are not included in @option{-Wall}.
yann@2149
    31
 
yann@2149
    32
+NOTE: In Gentoo, this option is enabled by default for C, C++, ObjC, ObjC++.
yann@2149
    33
+To disable, use @option{-Wformat=0}.
yann@2149
    34
+
yann@2149
    35
 @item -Wformat-y2k
yann@2149
    36
 @opindex Wformat-y2k
yann@2149
    37
 @opindex Wno-format-y2k
yann@2149
    38
@@ -2941,6 +2944,11 @@
yann@2149
    39
 in future warnings may be added to @option{-Wformat-security} that are not
yann@2149
    40
 included in @option{-Wformat-nonliteral}.)
yann@2149
    41
 
yann@2149
    42
+NOTE: In Gentoo, this option is enabled by default for C, C++, ObjC, ObjC++.
yann@2149
    43
+To disable, use @option{-Wno-format-security}, or disable all format warnings
yann@2149
    44
+with @option{-Wformat=0}.  To make format security warnings fatal, specify
yann@2149
    45
+@option{-Werror=format-security}.
yann@2149
    46
+
yann@2149
    47
 @item -Wformat=2
yann@2149
    48
 @opindex Wformat=2
yann@2149
    49
 @opindex Wno-format=2