]> ruderich.org/simon Gitweb - blhc/blhc.git/commitdiff
Don't report missing PIE flags in buildd mode if GCC defaults to PIE
authorSimon Ruderich <simon@ruderich.org>
Sun, 23 Jul 2017 19:10:04 +0000 (21:10 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sun, 23 Jul 2017 19:10:04 +0000 (21:10 +0200)
Dpkg since 1.8.15 respects GCC's settings and doesn't inject PIE flags
if GCC already applies them internally. Therefore don't require PIE
flags if a recent enough dpkg version is used and GCC applies PIE on the
current architecture.

MANIFEST
NEWS
bin/blhc
t/logs/buildd-gcc-pie [new file with mode: 0644]
t/logs/buildd-gcc-pie-builtin [new file with mode: 0644]
t/logs/buildd-gcc-pie-builtin-wrong-arch [new file with mode: 0644]
t/tests.t

index de6e4727231736cf8a876a232097c05f343d99a1..e6bf6513d104fb70d3a7e05166ebf5cc6f96798c 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -26,6 +26,9 @@ t/logs/buildd-dpkg-dev-missing
 t/logs/buildd-dpkg-dev-old
 t/logs/buildd-dpkg-fstack-protector
 t/logs/buildd-dpkg-fstack-protector-missing
+t/logs/buildd-gcc-pie
+t/logs/buildd-gcc-pie-builtin
+t/logs/buildd-gcc-pie-builtin-wrong-arch
 t/logs/buildd-package-details
 t/logs/buildd-verbose-build
 t/logs/c++
diff --git a/NEWS b/NEWS
index f8bbff193c8dabfac9662f82a0a3d14918a35224..f980c0780c784fd2f3e3d8da890d06ee91762ec8 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -10,6 +10,8 @@ Version 0.XX
   in non-verbose-build detection, reported by Boud Roukema and Nico Schlömer
   (Debian Bug #853265).
 - Add better support for Fortran (c.f. Debian Bug #853265).
+- Don't report missing PIE flags in buildd mode if GCC defaults to PIE (c.f.
+  Debian Bug 845339).
 
 
 Version 0.07
index 6afff57ff521485c9c6a4db9437bc826ea26b18d..cfdcbba0fd103770b0b0a068d56fe0c1223083c5 100755 (executable)
--- a/bin/blhc
+++ b/bin/blhc
@@ -750,6 +750,10 @@ foreach my $file (@ARGV) {
     # use a large enough default.
     my $parallel = 10;
 
+    # Don't check for PIE flags if automatically applied by the compiler. Only
+    # used in buildd mode.
+    my $disable_harden_pie = 0;
+
     while (my $line = <$fh>) {
         # Detect architecture automatically unless overridden. For buildd logs
         # only, doesn't use the dpkg-buildpackage header. Necessary to ignore
@@ -772,6 +776,10 @@ foreach my $file (@ARGV) {
         # flags are not checked.
         #
         # Strong stack protector is used since dpkg 1.17.11.
+        #
+        # Recent GCC versions automatically use PIE (only on supported
+        # architectures) and dpkg respects this properly since 1.18.15 and
+        # doesn't pass PIE flags manually.
         if ($option_buildd
                 and index($line, 'Toolchain package versions: ') == 0) {
             require Dpkg::Version;
@@ -786,6 +794,9 @@ foreach my $file (@ARGV) {
                 if (Dpkg::Version::version_compare($1, '1.17.11') >= 0) {
                     $disable_strong = 0;
                 }
+                if (Dpkg::Version::version_compare($1, '1.18.15') >= 0) {
+                    $disable_harden_pie = 1;
+                }
             }
 
             if ($disable) {
@@ -1040,7 +1051,7 @@ foreach my $file (@ARGV) {
 
     # Option or auto detected.
     if ($arch) {
-        # The following was partially copied from dpkg-dev 1.18.15
+        # The following was partially copied from dpkg-dev 1.18.24
         # (/usr/share/perl5/Dpkg/Vendor/Debian.pm, _add_hardening_flags()),
         # copyright Raphaël Hertzog <hertzog@debian.org>, Kees Cook
         # <kees@debian.org>, Canonical, Ltd. licensed under GPL version 2 or
@@ -1056,6 +1067,11 @@ foreach my $file (@ARGV) {
             (undef, $os, $cpu) = Dpkg::Arch::debarch_to_debtriplet($arch);
         }
 
+        my %builtin_pie_arch = map { $_ => 1 } qw(
+            amd64 arm64 armel armhf i386 kfreebsd-amd64 kfreebsd-i386
+            mips mipsel mips64el ppc64el s390x sparc sparc64
+        );
+
         # Disable unsupported hardening options.
         if ($os !~ /^(?:linux|kfreebsd|knetbsd|hurd)$/
                 or $cpu =~ /^(?:hppa|avr32)$/) {
@@ -1069,6 +1085,10 @@ foreach my $file (@ARGV) {
             $harden_relro   = 0;
             $harden_bindnow = 0;
         }
+
+        if ($disable_harden_pie and exists $builtin_pie_arch{$arch}) {
+            $harden_pie = 0;
+        }
     }
 
     # Default values.
diff --git a/t/logs/buildd-gcc-pie b/t/logs/buildd-gcc-pie
new file mode 100644 (file)
index 0000000..863111c
--- /dev/null
@@ -0,0 +1,5 @@
+Toolchain package versions: ... dpkg-dev_1.18.14 ...
+dpkg-buildpackage: source package foo package
+dpkg-buildpackage: host architecture amd64
+
+gcc -g -O2 -D_FORTIFY_SOURCE=2 -Wl,-z,relro -Wl,-z,now -fstack-protector-strong -Wformat -Werror=format-security -o test test.c
diff --git a/t/logs/buildd-gcc-pie-builtin b/t/logs/buildd-gcc-pie-builtin
new file mode 100644 (file)
index 0000000..98a413b
--- /dev/null
@@ -0,0 +1,6 @@
+Toolchain package versions: ... dpkg-dev_1.18.15 ...
+dpkg-buildpackage: source package foo package
+dpkg-buildpackage: host architecture amd64
+
+gcc -g -O2 -D_FORTIFY_SOURCE=2 -Wl,-z,relro -Wl,-z,now -fstack-protector-strong -Wformat -Werror=format-security -o test test.c
+gcc -fPIE -pie -g -O2 -D_FORTIFY_SOURCE=2 -Wl,-z,relro -Wl,-z,now -fstack-protector-strong -Wformat -Werror=format-security -o test test.c
diff --git a/t/logs/buildd-gcc-pie-builtin-wrong-arch b/t/logs/buildd-gcc-pie-builtin-wrong-arch
new file mode 100644 (file)
index 0000000..af5d4fc
--- /dev/null
@@ -0,0 +1,5 @@
+Toolchain package versions: ... dpkg-dev_1.18.15 ...
+dpkg-buildpackage: source package foo package
+dpkg-buildpackage: host architecture ia64
+
+gcc -g -O2 -D_FORTIFY_SOURCE=2 -Wl,-z,relro -Wl,-z,now -fstack-protector-strong -Wformat -Werror=format-security -o test test.c
index 2d02809c31fa27bc76723f72113202c6d4cd7361..4c6b5dcac129a4deb0e3e4c3a180fe5287cb9891 100644 (file)
--- a/t/tests.t
+++ b/t/tests.t
@@ -19,7 +19,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 218;
+use Test::More tests => 226;
 
 
 sub is_blhc {
@@ -931,6 +931,15 @@ is_blhc 'buildd-dpkg-dev-missing', '--buildd', 0,
         'W-dpkg-buildflags-missing|CFLAGS 3 (of 6), CXXFLAGS 1 (of 1) missing|
 ';
 
+is_blhc 'buildd-gcc-pie', '--buildd --all', 0,
+        'W-dpkg-buildflags-missing|CFLAGS 1 (of 1), LDFLAGS 1 (of 1) missing|
+';
+is_blhc 'buildd-gcc-pie-builtin-wrong-arch', '--buildd --all', 0,
+        'W-dpkg-buildflags-missing|CFLAGS 1 (of 1), LDFLAGS 1 (of 1) missing|
+';
+is_blhc 'buildd-gcc-pie-builtin', '--buildd', 0, '';
+is_blhc 'buildd-gcc-pie-builtin', '--buildd --all', 0, '';
+
 # Older dpkg versions use -fstack-protector instead of -strong.
 is_blhc 'buildd-dpkg-fstack-protector', '--buildd', 0,
         '';