]> ruderich.org/simon Gitweb - blhc/blhc.git/blob - bin/blhc
Handle another configure false positive.
[blhc/blhc.git] / bin / blhc
1 #!/usr/bin/perl
2
3 # Build log hardening check, checks build logs for missing hardening flags.
4
5 # Copyright (C) 2012  Simon Ruderich
6 #
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20
21 use strict;
22 use warnings;
23
24 use Getopt::Long ();
25 use Term::ANSIColor ();
26
27 our $VERSION = '0.01';
28
29
30 # CONSTANTS/VARIABLES
31
32 # Regex to catch compiler commands.
33 my $cc_regex = qr/(?:x86_64-linux-gnu-)?(?:(?<!\.)cc|gcc|g\+\+|c\+\+)(?:-[\d.]+)?/;
34 # Regex to catch (GCC) compiler warnings.
35 my $warning_regex = qr/^(.+?):([0-9]+):[0-9]+: warning: (.+?) \[(.+?)\]$/;
36
37 # Expected (hardening) flags. All flags are used as regexps.
38 my @cflags = (
39     '-g',
40     '-O(?:2|3)',
41 );
42 my @cflags_format = (
43     '-Wformat',
44     '-Wformat-security',
45     '-Werror=format-security',
46 );
47 my @cflags_fortify = (
48     # fortify needs at least -O1, but -O2 is recommended anyway
49 );
50 my @cflags_stack = (
51     '-fstack-protector',
52     '--param=ssp-buffer-size=4',
53 );
54 my @cflags_pie = (
55     '-fPIE',
56 );
57 my @cppflags = ();
58 my @cppflags_fortify = (
59     '-D_FORTIFY_SOURCE=2',
60 );
61 my @ldflags = ();
62 my @ldflags_relro = (
63     '-Wl,(-z,)?relro',
64 );
65 my @ldflags_bindnow = (
66     '-Wl,(-z,)?now',
67 );
68 my @ldflags_pie = (
69     '-fPIE',
70     '-pie',
71 );
72 # Renaming rules for the output so the regex parts are not visible.
73 my %flag_renames = (
74     '-O(?:2|3)'       => '-O2',
75     '-Wl,(-z,)?relro' => '-Wl,-z,relro',
76     '-Wl,(-z,)?now'   => '-Wl,-z,now',
77 );
78
79
80 # FUNCTIONS
81
82 sub error_flags {
83     my ($message, $missing_flags_ref, $flag_renames_ref, $line) = @_;
84
85     # Rename flags if requested.
86     my @missing_flags = map {
87         (exists $flag_renames_ref->{$_})
88             ? $flag_renames_ref->{$_}
89             : $_
90     } @{$missing_flags_ref};
91
92     my $flags = join ' ', @missing_flags;
93     printf "%s (%s)%s %s",
94            error_color($message, 'red'), $flags, error_color(':', 'yellow'),
95            $line;
96 }
97 sub error_non_verbose_build {
98     my ($line) = @_;
99
100     printf "%s%s %s",
101            error_color('NONVERBOSE BUILD', 'red'),
102            error_color(':', 'yellow'),
103            $line;
104 }
105 sub error_color {
106     my ($message, $color) = @_;
107
108     # Use colors when writing to a terminal.
109     if (-t STDOUT) {
110         return Term::ANSIColor::colored($message, $color);
111     } else {
112         return $message;
113     }
114 }
115
116 sub any_flags_used {
117     my ($line, @flags) = @_;
118
119     foreach my $flag (@flags) {
120         return 1 if $line =~ /\s$flag(?:\s|\\|$)/;
121     }
122
123     return 0;
124 }
125 sub all_flags_used {
126     my ($line, $missing_flags_ref, @flags) = @_;
127
128     my @missing_flags = ();
129     foreach my $flag (@flags) {
130         if ($line !~ /\s$flag(?:\s|\\|$)/) {
131             push @missing_flags, $flag;
132         }
133     }
134
135     if (scalar @missing_flags == 0) {
136         return 1;
137     }
138
139     @{$missing_flags_ref} = @missing_flags;
140     return 0;
141 }
142
143 # Modifies $missing_flags_ref array.
144 sub pic_pie_conflict {
145     my ($line, $pie, $missing_flags_ref, @flags_pie) = @_;
146
147     return 0 if not $pie;
148     return 0 if not any_flags_used($line, ('-fPIC', '-fpic'));
149
150     my %flags = map { $_ => 1 } @flags_pie;
151
152     # Remove all PIE flags from @missing_flags as they are not required with
153     # -fPIC.
154     my @result = grep {
155         not exists $flags{$_}
156     } @{$missing_flags_ref};
157     @{$missing_flags_ref} = @result;
158
159     # We got a conflict when no flags are left, thus only PIE flags were
160     # missing. If other flags were missing abort because the conflict is not
161     # the problem.
162     return scalar @result == 0;
163 }
164
165 sub is_non_verbose_build {
166     my ($line, $next_line, $skip_ref) = @_;
167
168     if (not ($line =~ /^checking if you want to see long compiling messages\.\.\. no/
169                 or $line =~ /^\s*\[?(?:CC|CCLD|LD)\]?\s+(.+?)$/
170                 or $line =~ /^\s*(?:C|c)ompiling\s+(.+?)(?:\.\.\.)?$/
171                 or $line =~ /^\s*(?:B|b)uilding (?:program|shared library)\s+(.+?)$/
172                 or $line =~ /^\s*\[[\d ]+%\] Building (?:C|CXX) object (.+?)$/)) {
173         return 0;
174     }
175
176     my $file = $1;
177
178     # On the first pass we only check if this line is verbose or not.
179     return 1 if not defined $next_line;
180
181     # Second pass, we have access to the next line.
182     ${$skip_ref} = 0;
183
184     # CMake and other build systems print the non-verbose messages also when
185     # building verbose. If a compiler and the file name occurs in the next
186     # line, treat it as verbose build.
187     if (defined $file) {
188         # Get filename, we can't use the complete path as only parts of it are
189         # used in the real compiler command.
190         $file =~ m{/([a-zA-Z0-9._-]+)$};
191         $file = $1;
192
193         if ($next_line =~ /\Q$file\E/ and $next_line =~ /$cc_regex/) {
194             # We still have to skip the current line as it doesn't contain any
195             # compiler commands.
196             ${$skip_ref} = 1;
197             return 0;
198         }
199     }
200
201     return 1;
202 }
203
204
205 # MAIN
206
207 # Hardening options. Not all architectures support all hardening options.
208 my $harden_format  = 1;
209 my $harden_fortify = 1;
210 my $harden_stack   = 1;
211 my $harden_relro   = 1;
212 my $harden_bindnow = 0;
213 my $harden_pie     = 0;
214
215 # Parse command line arguments.
216 my $option_help    = 0;
217 my $option_version = 0;
218 my $option_all     = 0;
219 my $option_arch    = undef;
220 if (not Getopt::Long::GetOptions(
221             'help|h|?' => \$option_help,
222             'version'  => \$option_version,
223             # Hardening options.
224             'pie'      => \$harden_pie,
225             'bindnow'  => \$harden_bindnow,
226             'all'      => \$option_all,
227             # Misc.
228             'arch'     => \$option_arch,
229         )) {
230     require Pod::Usage;
231     Pod::Usage::pod2usage(2);
232 }
233 if ($option_help) {
234     require Pod::Usage;
235     Pod::Usage::pod2usage(1);
236 }
237 if ($option_version) {
238     print "blhc $VERSION  Copyright (C) 2012  Simon Ruderich
239
240 This program is free software: you can redistribute it and/or modify
241 it under the terms of the GNU General Public License as published by
242 the Free Software Foundation, either version 3 of the License, or
243 (at your option) any later version.
244
245 This program is distributed in the hope that it will be useful,
246 but WITHOUT ANY WARRANTY; without even the implied warranty of
247 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
248 GNU General Public License for more details.
249
250 You should have received a copy of the GNU General Public License
251 along with this program.  If not, see <http://www.gnu.org/licenses/>.
252 ";
253     exit 0;
254 }
255
256 if ($option_all) {
257     $harden_pie     = 1;
258     $harden_bindnow = 1;
259 }
260
261 # Final exit code.
262 my $exit = 0;
263
264 # Input lines, contain only the lines with compiler commands.
265 my @input = ();
266
267 my $start = 0;
268 my $continuation = 0;
269 my $complete_line = undef;
270 while (my $line = <>) {
271     # We skip over unimportant lines at the beginning to prevent false
272     # positives.
273     $start = 1 if $line =~ /^dpkg-buildpackage:/;
274     next if not $start;
275
276     # Detect architecture automatically unless overridden.
277     if (not $option_arch
278             and $line =~ /^dpkg-buildpackage: host architecture (.+)$/) {
279         $option_arch = $1;
280     }
281
282     # Ignore compiler warnings for now.
283     next if $line =~ /$warning_regex/;
284
285     # Remove all ANSI color sequences which are sometimes used in non-verbose
286     # builds.
287     $line = Term::ANSIColor::colorstrip($line);
288     # Also strip '\0xf' (delete previous character), used by Elink's build
289     # system.
290     $line =~ s/\x0f//g;
291     # And "ESC(B" which seems to be used on armhf and hurd (not sure what it
292     # does).
293     $line =~ s/\033\(B//g;
294
295     # Check if this line indicates a non verbose build.
296     my $non_verbose = is_non_verbose_build($line);
297
298     # One line may contain multiple commands (";"). Treat each one as single
299     # line.
300     my @line = split /(?<!\\);/, $line;
301     foreach $line (@line) {
302         # Add newline, drop all other whitespace at the end of a line.
303         $line =~ s/\s+$//;
304         $line .= "\n";
305
306         if ($continuation) {
307             $continuation = 0;
308
309             # Join lines, but leave the "\" in place so it's clear where the
310             # original line break was.
311             chomp $complete_line;
312             $complete_line .= ' ' . $line;
313         }
314         # Line continuation, line ends with "\".
315         if ($line =~ /\\\s*$/) {
316             $continuation = 1;
317             # Start line continuation.
318             if (not defined $complete_line) {
319                 $complete_line = $line;
320             }
321             next;
322         }
323
324         if (not $continuation) {
325             # Use the complete line if a line continuation occurred.
326             if (defined $complete_line) {
327                 $line = $complete_line;
328                 $complete_line = undef;
329             }
330
331             # Ignore lines with no compiler commands.
332             next if $line !~ /\b$cc_regex(?:\s|\\)/ and not $non_verbose;
333
334             # Ignore false positives.
335             #
336             # `./configure` output.
337             next if not $non_verbose and $line =~ /^checking /;
338             next if $line =~ /^\s*(?:C )?(?:C|c)ompiler[\s.]*:\s+$cc_regex(?:\s-std=[a-z0-9:+]+)?\s*$/
339                     or $line =~ /^\s*(?:- )?(?:CC|CXX)\s*=\s*$cc_regex\s*$/
340                     or $line =~ /^\s*-- Check for working (?:C|CXX) compiler: /
341                     or $line =~ /^\s*(?:echo )?Using [A-Z_]+\s*=\s*/;
342
343             push @input, $line;
344         }
345     }
346 }
347
348 if (scalar @input == 0) {
349     print "No compiler commands!\n";
350     $exit |= 1;
351     exit $exit;
352 }
353
354 # Option or auto detected.
355 if ($option_arch) {
356     # The following was partially copied from dpkg-dev 1.16.1.2
357     # (/usr/share/perl5/Dpkg/Vendor/Debian.pm, add_hardening_flags()),
358     # copyright RaphaĆ«l Hertzog <hertzog@debian.org>, Kees Cook
359     # <kees@debian.org>, Canonical, Ltd. licensed under GPL version 2 or
360     # later. Keep it in sync.
361
362     require Dpkg::Arch;
363     my ($abi, $os, $cpu) = Dpkg::Arch::debarch_to_debtriplet($option_arch);
364
365     # Disable unsupported hardening options.
366     if ($cpu =~ /^(ia64|alpha|mips|mipsel|hppa)$/ or $option_arch eq 'arm') {
367         $harden_stack = 0;
368     }
369     if ($cpu =~ /^(ia64|hppa|avr32)$/) {
370         $harden_relro   = 0;
371         $harden_bindnow = 0;
372     }
373 }
374
375 # Check if additional hardening options were used. Used to ensure they are
376 # used for the complete build.
377 foreach my $line (@input) {
378     $harden_pie     = 1 if any_flags_used($line, @cflags_pie, @ldflags_pie);
379     $harden_bindnow = 1 if any_flags_used($line, @ldflags_bindnow);
380 }
381
382 # Check the specified hardening options, same order as dpkg-buildflags.
383 if ($harden_pie) {
384     @cflags  = (@cflags,  @cflags_pie);
385     @ldflags = (@ldflags, @ldflags_pie);
386 }
387 if ($harden_stack) {
388     @cflags = (@cflags, @cflags_stack);
389 }
390 if ($harden_fortify) {
391     @cflags   = (@cflags,   @cflags_fortify);
392     @cppflags = (@cppflags, @cppflags_fortify);
393 }
394 if ($harden_format) {
395     @cflags = (@cflags, @cflags_format);
396 }
397 if ($harden_relro) {
398     @ldflags = (@ldflags, @ldflags_relro);
399 }
400 if ($harden_bindnow) {
401     @ldflags = (@ldflags, @ldflags_bindnow);
402 }
403
404 for (my $i = 0; $i < scalar @input; $i++) {
405     my $line = $input[$i];
406
407     my $skip = 0;
408     if (is_non_verbose_build($line, $input[$i + 1], \$skip)) {
409         error_non_verbose_build($line);
410         $exit |= 1 << 2;
411         next;
412     }
413     # Even if it's a verbose build, we might have to skip this line.
414     next if $skip;
415
416
417     # Is this a compiler or linker command?
418     my $compiler = 1;
419     my $linker   = 0;
420
421     # Linker commands.
422     if ($line =~ m{\s-o                        # -o
423                    [\s\\]*\s+                  # possible line continuation
424                    (?:[/.A-Za-z0-9~_-]+/)?     # path to file
425                         [A-Za-z0-9~_-]+        # binary name (no dots!)
426                    (?:[0-9.]*\.so[0-9.]*[a-z]? # library (including version)
427                     |\.la
428                     |\.cgi)?                   # CGI binary
429                    (?:\s|\\|$)                 # end of file name
430                   }x
431             or $line =~ /^libtool: link: /
432             or $line =~ m{\s*/bin/bash .+?libtool\s+(.+?\s+)?--mode=(re)?link}) {
433         $compiler = 0;
434         $linker   = 1;
435     }
436
437     # If there are source files then it's compiling/linking in one step and we
438     # must check both.
439     if ($line =~ /\.(?:c|cc|cpp)\b/) {
440         $compiler = 1;
441     }
442
443     # Check hardening flags.
444     my @missing;
445     if ($compiler and not all_flags_used($line, \@missing, @cflags)
446             # Libraries linked with -fPIC don't have to (and can't) be linked
447             # with -fPIE as well. It's no error if only PIE flags are missing.
448             and not pic_pie_conflict($line, $harden_pie, \@missing, @cflags_pie)) {
449         error_flags('CFLAGS missing', \@missing, \%flag_renames, $line);
450         $exit |= 1 << 3;
451     }
452     if ($compiler and not all_flags_used($line, \@missing, @cppflags)) {
453         error_flags('CPPFLAGS missing', \@missing, \%flag_renames, $line);
454         $exit |= 1 << 3;
455     }
456     if ($linker and not all_flags_used($line, \@missing, @ldflags)
457             # Same here, -fPIC conflicts with -fPIE.
458             and not pic_pie_conflict($line, $harden_pie, \@missing, @ldflags_pie)) {
459         error_flags('LDFLAGS missing', \@missing, \%flag_renames, $line);
460         $exit |= 1 << 3;
461     }
462 }
463
464 exit $exit;
465
466
467 __END__
468
469 =head1 NAME
470
471 blhc - build log hardening check, checks build logs for missing hardening flags
472
473 =head1 SYNOPSIS
474
475 B<blhc> [-h -? --help]
476
477 B<blhc> [--pie] [--bindnow] [--all]
478
479     --help                  available options
480     --version               version number and license
481     --pie                   force +pie check
482     --bindnow               force +bindbow check
483     --all                   force +all (+pie, +bindnow) check
484     --arch                  set architecture (autodetected)
485
486 =head1 DESCRIPTION
487
488 blhc is a small tool which checks build logs for missing hardening flags and
489 other important warnings. It's licensed under the GPL 3 or later.
490
491 =head1 OPTIONS
492
493 =over 8
494
495 =item B<-h -? --help>
496
497 Print available options.
498
499 =item B<--version>
500
501 Print version number and license.
502
503 =item B<--pie>
504
505 Force check for all +pie hardening flags. By default it's auto detected.
506
507 =item B<--bindnow>
508
509 Force check for all +bindnow hardening flags. By default it's auto detected.
510
511 =item B<--all>
512
513 Force check for all +all (+pie, +bindnow) hardening flags. By default it's
514 auto detected.
515
516 =item B<--arch>
517
518 Set the specific architecture (e.g. amd64, armel, etc.), automatically
519 disables hardening flags not available on this architecture. Is detected
520 automatically if dpkg-buildpackage is used.
521
522 =back
523
524 Auto detection only works if at least one command uses the required hardening
525 flag (e.g. -fPIE). Then it's required for all other commands as well.
526
527 =head1 EXIT STATUS
528
529 The exit status is a "bit mask", each listed status is ORed when the error
530 condition occurs to get the result.
531
532 =over 8
533
534 =item B<0>
535
536 Success.
537
538 =item B<1>
539
540 No compiler commands were found.
541
542 =item B<2>
543
544 Invalid arguments/options given to blhc.
545
546 =item B<4>
547
548 Non verbose build.
549
550 =item B<8>
551
552 Missing hardening flags.
553
554 =back
555
556 =head1 AUTHOR
557
558 Simon Ruderich, E<lt>simon@ruderich.orgE<gt>
559
560 =head1 COPYRIGHT AND LICENSE
561
562 Copyright (C) 2012 by Simon Ruderich
563
564 This program is free software: you can redistribute it and/or modify
565 it under the terms of the GNU General Public License as published by
566 the Free Software Foundation, either version 3 of the License, or
567 (at your option) any later version.
568
569 This program is distributed in the hope that it will be useful,
570 but WITHOUT ANY WARRANTY; without even the implied warranty of
571 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
572 GNU General Public License for more details.
573
574 You should have received a copy of the GNU General Public License
575 along with this program.  If not, see <http://www.gnu.org/licenses/>.
576
577 =cut