patches/gcc/4.4.5/140-default-format-security.patch
author "Benoît Thébaudeau" <benoit.thebaudeau@advansee.com>
Mon Apr 16 15:25:36 2012 +0200 (2012-04-16)
changeset 2941 13e40098fffc
permissions -rw-r--r--
cc/gcc: update Linaro GCC revisions to 2012.04

Update Linaro GCC with the latest available revisions.

The 4.7 revision is also released, but the infrastructure is not yet ready for
it in CT-NG.

Signed-off-by: "Benoît Thébaudeau" <benoit.thebaudeau@advansee.com>
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