]> ruderich.org/simon Gitweb - blhc/blhc.git/blob - bin/blhc
Update copyright years
[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-2023  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 Text::ParseWords ();
26
27 our $VERSION = '0.13';
28
29
30 # CONSTANTS/VARIABLES
31
32 # Regex to catch compiler commands.
33 my $cc_regex = qr/
34     (?<!\s-)               # ignore options, e.g. "-c++" [sic!] (used by swig)
35     (?<!\.)                # ignore file names, e.g. "test.gcc"
36     (?:cc|gcc|g\+\+|c\+\+|gfortran|mpicc|mpicxx|mpifort)
37     (?:-[\d.]+)?           # version suffix, e.g. "gcc-4.6"
38     /x;
39 # Full regex which matches the complete compiler name. Used in a few places to
40 # prevent false negatives.
41 my $cc_regex_full_prefix = qr/
42     [a-z0-9_]+-(?:linux-|kfreebsd-)?gnu(?:eabi|eabihf)?
43     /x;
44 my $cc_regex_full = qr/
45     (?:$cc_regex_full_prefix-)?
46     $cc_regex
47     /x;
48 # Regex to check if a line contains a compiler command.
49 my $cc_regex_normal = qr/
50     \b$cc_regex(?:\s|\\)
51     /x;
52 # Regex to catch (GCC) compiler warnings.
53 my $warning_regex = qr/^(.+?):(\d+):\d+: warning: (.+?) \[(.+?)\]$/;
54 # Regex to catch libtool commands and not lines which show commands executed
55 # by libtool (e.g. libtool: link: ...).
56 my $libtool_regex = qr/\blibtool["']?\s.*--mode=/;
57 my $libtool_link_regex = qr/\blibtool: link: /;
58
59 # List of source file extensions which require preprocessing.
60 my @source_preprocess_compile_cpp = (
61     # C++
62     qw( cc cp cxx cpp CPP c++ C ),
63     # Objective-C++
64     qw( mm M ),
65 );
66 my @source_preprocess_compile_fortran = (
67     # Fortran
68     qw( F FOR fpp FPP FTN F90 F95 F03 F08 ),
69 );
70 my @source_preprocess_compile = (
71     # C
72     qw( c ),
73     # Objective-C
74     qw( m ),
75     # (Objective-)C++
76     @source_preprocess_compile_cpp,
77     # Fortran
78     @source_preprocess_compile_fortran,
79 );
80 my @source_preprocess_no_compile = (
81     # Assembly
82     qw( S sx ),
83 );
84 my @source_preprocess = (
85     @source_preprocess_compile,
86     @source_preprocess_no_compile,
87 );
88 # List of source file extensions which don't require preprocessing.
89 my @source_no_preprocess_compile_cpp = (
90     # C++
91     qw( ii ),
92     # Objective-C++
93     qw( mii ),
94 );
95 my @source_no_preprocess_compile_ada = (
96     # Ada source
97     qw( ada ),
98     # Ada body
99     qw( adb ),
100 );
101 my @source_no_preprocess_compile_fortran = (
102     # Fortran
103     qw( f for ftn f90 f95 f03 f08 ),
104 );
105 my @source_no_preprocess_compile = (
106     # C
107     qw( i ),
108     # (Objective-)C++
109     @source_no_preprocess_compile_cpp,
110     # Objective-C
111     qw( mi ),
112     # Fortran
113     @source_no_preprocess_compile_fortran,
114     # Ada
115     @source_no_preprocess_compile_ada,
116 );
117 my @source_no_preprocess_no_compile_ada = (
118     # Ada specification
119     qw( ads ),
120 );
121 my @source_no_preprocess_no_compile = (
122     # Assembly
123     qw( s ),
124     # Ada
125     @source_no_preprocess_no_compile_ada,
126 );
127 my @source_no_preprocess = (
128     @source_no_preprocess_compile,
129     @source_no_preprocess_no_compile,
130 );
131 # List of header file extensions which require preprocessing.
132 my @header_preprocess = (
133     # C, C++, Objective-C, Objective-C++
134     qw( h ),
135     # C++
136     qw( hh H hp hxx hpp HPP h++ tcc ),
137 );
138 # Object files.
139 my @object = (
140     # Normal object files.
141     qw ( o ),
142     # Libtool object files.
143     qw ( lo la ),
144     # Dynamic libraries. bzip2 uses .sho.
145     qw ( so sho ),
146     # Static libraries.
147     qw ( a ),
148 );
149
150 # Hashes for fast extensions lookup to check if a file falls in one of these
151 # categories.
152 my %extensions_no_preprocess = map { $_ => 1 } (
153     # There's no @header_no_preprocess.
154     @source_no_preprocess,
155 );
156 my %extensions_preprocess = map { $_ => 1 } (
157     @header_preprocess,
158     @source_preprocess,
159 );
160 my %extensions_compile_link = map { $_ => 1 } (
161     @source_preprocess,
162     @source_no_preprocess,
163 );
164 my %extensions_compile = map { $_ => 1 } (
165     @source_preprocess_compile,
166     @source_no_preprocess_compile,
167 );
168 my %extensions_no_compile = map { $_ => 1 } (
169     @source_preprocess_no_compile,
170     @source_no_preprocess_no_compile,
171 );
172 my %extensions_compile_cpp = map { $_ => 1 } (
173     @source_preprocess_compile_cpp,
174     @source_no_preprocess_compile_cpp,
175 );
176 my %extensions_ada = map { $_ => 1 } (
177     @source_no_preprocess_compile_ada,
178     @source_no_preprocess_no_compile_ada,
179 );
180 my %extensions_fortran = map { $_ => 1 } (
181     @source_no_preprocess_compile_fortran,
182     @source_preprocess_compile_fortran,
183 );
184 my %extensions_object = map { $_ => 1 } (
185     @object,
186 );
187 my %extension = map { $_ => 1 } (
188     @source_no_preprocess,
189     @header_preprocess,
190     @source_preprocess,
191     @object,
192 );
193
194 # Regexp to match file extensions.
195 my $file_extension_regex = qr/
196     \s
197     \S+             # Filename without extension.
198     \.
199     ([^\/\\.,;:\s]+)# File extension.
200     (?=\s|\\)       # At end of word. Can't use \b because some files have non
201                     # word characters at the end and because \b matches double
202                     # extensions (like .cpp.o). Works always as all lines are
203                     # terminated with "\n".
204     /x;
205
206 # Expected (hardening) flags. All flags are used as regexps (and compiled to
207 # real regexps below for better execution speed).
208 my @def_cflags = (
209     '-g',
210     '-O(?:2|3)', # keep at index 1, search for @def_cflags_debug to change it
211 );
212 my @def_cflags_debug = (
213     # These flags indicate a debug build which disables checks for -O2.
214     '-O0',
215     '-Og',
216 );
217 my @def_cflags_format = (
218     '-Wformat(?:=2)?', # -Wformat=2 implies -Wformat, accept it too
219     '-Werror=format-security', # implies -Wformat-security
220 );
221 my @def_cflags_fortify = (
222     # fortify needs at least -O1, but -O2 is recommended anyway
223 );
224 my @def_cflags_stack = (
225     '-fstack-protector', # keep first, used by cflags_stack_broken()
226     '--param[= ]ssp-buffer-size=4',
227 );
228 my @def_cflags_stack_strong = (
229     '-fstack-protector-strong', # keep first, used by cflags_stack_broken()
230 );
231 my @def_cflags_stack_bad = (
232     # Blacklist all stack protector options for simplicity.
233     '-fno-stack-protector',
234     '-fno-stack-protector-all',
235     '-fno-stack-protector-strong',
236 );
237 my @def_cflags_pie = (
238     '-fPIE',
239 );
240 my @def_cxxflags = (
241     @def_cflags,
242 );
243 # @def_cxxflags_* is the same as @def_cflags_*.
244 my @def_cppflags = ();
245 my @def_cppflags_fortify = (
246     '-D_FORTIFY_SOURCE=[23]', # must be first, see cppflags_fortify_broken()
247     # If you add another flag fix hack below (search for "Hack to fix") and
248     # $def_cppflags_fortify[0].
249 );
250 my @def_cppflags_fortify_bad = (
251     # These flags may overwrite -D_FORTIFY_SOURCE=2.
252     '-U_FORTIFY_SOURCE',
253     '-D_FORTIFY_SOURCE=0',
254     '-D_FORTIFY_SOURCE=1',
255 );
256 my @def_ldflags = ();
257 my @def_ldflags_relro = (
258     '-Wl,(?:-z,)?relro',
259 );
260 my @def_ldflags_bindnow = (
261     '-Wl,(?:-z,)?now',
262 );
263 my @def_ldflags_pie = (
264     '-fPIE',
265     '-pie',
266 );
267 my @def_ldflags_pic = (
268     '-fPIC',
269     '-fpic',
270     '-shared',
271 );
272 # References to all flags checked by the flag checker.
273 my @flag_refs = (
274     \@def_cflags,
275     \@def_cflags_format,
276     \@def_cflags_fortify,
277     \@def_cflags_stack,
278     \@def_cflags_stack_strong,
279     \@def_cflags_stack_bad,
280     \@def_cflags_pie,
281     \@def_cxxflags,
282     \@def_cppflags,
283     \@def_cppflags_fortify,
284     \@def_ldflags,
285     \@def_ldflags_relro,
286     \@def_ldflags_bindnow,
287     \@def_ldflags_pie,
288 );
289 # References to all used flags.
290 my @flag_refs_all = (
291     @flag_refs,
292     \@def_cflags_debug,
293     \@def_cppflags_fortify_bad,
294     \@def_ldflags_pic,
295 );
296 # Renaming rules for the output so the regex parts are not visible. Also
297 # stores string values of flag regexps above, see compile_flag_regexp().
298 my %flag_renames = (
299     '-O(?:2|3)'                    => '-O2',
300     '-Wformat(?:=2)?'              => '-Wformat',
301     '--param[= ]ssp-buffer-size=4' => '--param=ssp-buffer-size=4',
302     '-D_FORTIFY_SOURCE=[23]'       => '-D_FORTIFY_SOURCE=2',
303     '-Wl,(?:-z,)?relro'            => '-Wl,-z,relro',
304     '-Wl,(?:-z,)?now'              => '-Wl,-z,now',
305 );
306
307 my %exit_code = (
308     no_compiler_commands => 1 << 0,
309     # used by POD::Usage => 1 << 1,
310     non_verbose_build    => 1 << 2,
311     flags_missing        => 1 << 3,
312     hardening_wrapper    => 1 << 4,
313     invalid_cmake        => 1 << 5,
314 );
315
316 my %buildd_tag = (
317     no_compiler_commands => 'I-no-compiler-commands',
318     non_verbose_build    => 'W-compiler-flags-hidden',
319     flags_missing        => 'W-dpkg-buildflags-missing',
320     hardening_wrapper    => 'I-hardening-wrapper-used',
321     invalid_cmake        => 'I-invalid-cmake-used',
322 );
323
324 # Statistics of missing flags and non-verbose build commands. Used for
325 # $option_buildd.
326 my %statistics = (
327     preprocess          => 0,
328     preprocess_missing  => 0,
329     compile             => 0,
330     compile_missing     => 0,
331     compile_cpp         => 0,
332     compile_cpp_missing => 0,
333     link                => 0,
334     link_missing        => 0,
335     commands            => 0,
336     commands_nonverbose => 0,
337 );
338
339 # Use colored (ANSI) output?
340 my $option_color;
341
342
343 # FUNCTIONS
344
345 sub split_line {
346     my ($line) = @_;
347
348     my @work = ($line);
349     foreach my $delim (';', '&&', '||') {
350         my @x;
351         foreach (@work) {
352             push @x, Text::ParseWords::parse_line(qr/\Q$delim\E/, 1, $_);
353         }
354         @work = @x;
355     }
356
357     return map {
358         # Ensure newline at the line end - necessary for
359         # correct parsing later.
360         $_ =~ s/\s+$//;
361         $_ .= "\n";
362     } @work;
363 }
364
365 sub error_flags {
366     my ($message, $missing_flags_ref, $flag_renames_ref, $line, $number) = @_;
367
368     # Get string value of qr//-escaped regexps and if requested rename them.
369     my @missing_flags = map {
370             $flag_renames_ref->{$_}
371         } @{$missing_flags_ref};
372
373     my $flags = join ' ', @missing_flags;
374     printf '%d:', $number if defined $number;
375     printf '%s (%s)%s %s',
376            error_color($message, 'red'), $flags, error_color(':', 'yellow'),
377            $line;
378
379     return;
380 }
381 sub error_non_verbose_build {
382     my ($line, $number) = @_;
383
384     printf '%d:', $number if defined $number;
385     printf '%s%s %s',
386            error_color('NONVERBOSE BUILD', 'red'),
387            error_color(':', 'yellow'),
388            $line;
389
390     return;
391 }
392 sub error_invalid_cmake {
393     my ($version) = @_;
394
395     printf "%s%s %s\n",
396             error_color('INVALID CMAKE', 'red'),
397             error_color(':', 'yellow'),
398             $version;
399
400     return;
401 }
402 sub error_hardening_wrapper {
403     printf "%s%s %s\n",
404             error_color('HARDENING WRAPPER', 'red'),
405             error_color(':', 'yellow'),
406             'no checks possible, aborting';
407
408     return;
409 }
410 sub error_color {
411     my ($message, $color) = @_;
412
413     if ($option_color) {
414         return Term::ANSIColor::colored($message, $color);
415     } else {
416         return $message;
417     }
418 }
419
420 sub any_flags_used {
421     my ($line, @flags) = @_;
422
423     foreach my $flag (@flags) {
424         return 1 if $line =~ /$flag/;
425     }
426
427     return 0;
428 }
429 sub all_flags_used {
430     my ($line, $missing_flags_ref, @flags) = @_;
431
432     my @missing_flags = ();
433     foreach my $flag (@flags) {
434         if (not $line =~ /$flag/) {
435             push @missing_flags, $flag;
436         }
437     }
438
439     return 1 if scalar @missing_flags == 0;
440
441     @{$missing_flags_ref} = @missing_flags;
442     return 0;
443 }
444 # Check if any of \@bad_flags occurs after $good_flag. Doesn't check if
445 # $good_flag is present.
446 sub flag_overwritten {
447     my ($line, $good_flag, $bad_flags) = @_;
448
449     if (not any_flags_used($line, @{$bad_flags})) {
450         return 0;
451     }
452
453     my $bad_pos = 0;
454     foreach my $flag (@{$bad_flags}) {
455         while ($line =~ /$flag/g) {
456             if ($bad_pos < $+[0]) {
457                 $bad_pos = $+[0];
458             }
459         }
460     }
461     my $good_pos = 0;
462     while ($line =~ /$good_flag/g) {
463         $good_pos = $+[0];
464     }
465     if ($good_pos > $bad_pos) {
466         return 0;
467     }
468     return 1;
469 }
470
471 sub cppflags_fortify_broken {
472     my ($line, $missing_flags) = @_;
473
474     # $def_cppflags_fortify[0] must be -D_FORTIFY_SOURCE=2!
475     my $fortify_source = $def_cppflags_fortify[0];
476
477     # Some build systems enable/disable fortify source multiple times, check
478     # the final result.
479     if (not flag_overwritten($line,
480                              $fortify_source,
481                              \@def_cppflags_fortify_bad)) {
482         return 0;
483     }
484     push @{$missing_flags}, $fortify_source;
485     return 1;
486 }
487
488 sub cflags_stack_broken {
489     my ($line, $missing_flags, $strong) = @_;
490
491     my $flag = $strong ? $def_cflags_stack_strong[0]
492                        : $def_cflags_stack[0];
493
494     if (not flag_overwritten($line, $flag, \@def_cflags_stack_bad)) {
495         return 0;
496     }
497     push @{$missing_flags}, $flag;
498     return 1;
499 }
500
501 # Modifies $missing_flags_ref array.
502 sub pic_pie_conflict {
503     my ($line, $pie, $missing_flags_ref, @flags_pie) = @_;
504
505     return 0 if not $pie;
506     return 0 if not any_flags_used($line, @def_ldflags_pic);
507
508     my %flags = map { $_ => 1 } @flags_pie;
509
510     # Remove all PIE flags from @missing_flags as they are not required with
511     # -fPIC.
512     my @result = grep {
513         not exists $flags{$_}
514     } @{$missing_flags_ref};
515     @{$missing_flags_ref} = @result;
516
517     # We got a conflict when no flags are left, thus only PIE flags were
518     # missing. If other flags were missing abort because the conflict is not
519     # the problem.
520     return scalar @result == 0;
521 }
522
523 sub is_non_verbose_build {
524     my ($line, $skip_ref, $input_ref, $line_offset, $line_count) = @_;
525
526     if ($line =~ /$libtool_regex/o) {
527         # libtool's --silent hides the real compiler flags.
528         if ($line =~ /\s--silent/) {
529             return 1;
530         # If --silent is not present, skip this line as some compiler flags
531         # might be missing (e.g. -fPIE) which are handled correctly by libtool
532         # internally. libtool displays the real compiler command on the next
533         # line, so the flags are checked as usual.
534         } else {
535             ${$skip_ref} = 1;
536             return 0;
537         }
538     }
539
540     if (not (index($line, 'checking if you want to see long compiling messages... no') == 0
541                 or $line =~ /^\s*\[?(?:CC|CCLD|C\+\+|CXX|CXXLD|LD|LINK)\]?\s+(.+?)$/
542                 or $line =~ /^\s*[][\/0-9 ]*[Cc]ompiling\s+(.+?)(?:\.\.\.)?$/
543                 or $line =~ /^\s*[Bb]uilding (?:program|shared library)\s+(.+?)$/
544                 or $line =~ /^\s*\[[\d ]+%\] Building (?:C|CXX) object (.+?)$/)) {
545         return 0;
546     }
547
548     # False positives.
549     #
550     # C++ compiler setting.
551     return 0 if $line =~ /^\s*C\+\+.+?:\s+(?:yes|no)\s*$/;
552     return 0 if $line =~ /^\s*C\+\+ Library: stdc\+\+$/;
553     # "Compiling" non binary files.
554     return 0 if $line =~ /^\s*Compiling \S+\.(?:py|pyx|el)['"]?\s*(?:\.\.\.|because it changed\.)?$/;
555     return 0 if $line =~ /^\s*[Cc]ompiling catalog \S+\.po\b/;
556     # "Compiling" with no file name.
557     if ($line =~ /^\s*[Cc]ompiling\s+(.+?)(?:\.\.\.)?$/) {
558         # $file_extension_regex may need spaces around the filename.
559         return 0 if not " $1 " =~ /$file_extension_regex/o;
560     }
561
562     my $file = $1;
563
564     # On the first pass we only check if this line is verbose or not.
565     return 1 if not defined $input_ref;
566
567     # Second pass, we have access to the next lines.
568     ${$skip_ref} = 0;
569
570     # CMake and other build systems print the non-verbose messages also when
571     # building verbose. If a compiler and the file name occurs in the next
572     # lines, treat it as verbose build.
573     if (defined $file) {
574         # Get filename, we can't use the complete path as only parts of it are
575         # used in the real compiler command.
576         $file =~ m{/([^/\s]+)$};
577         $file = $1;
578
579         for (my $i = 1; $i <= $line_count; $i++) {
580             my $next_line = $input_ref->[$line_offset + $i];
581             last unless defined $next_line;
582
583             if (index($next_line, $file) != -1 and $next_line =~ /$cc_regex/o) {
584                 # Not a non-verbose line, but we still have to skip the
585                 # current line as it doesn't contain any compiler commands.
586                 ${$skip_ref} = 1;
587                 return 0;
588             }
589         }
590     }
591
592     return 1;
593 }
594
595 # Remove @flags from $flag_refs_ref, uses $flag_renames_ref as reference.
596 sub remove_flags {
597     my ($flag_refs_ref, $flag_renames_ref, @flags) = @_;
598
599     my %removes = map { $_ => 1 } @flags;
600     foreach my $flags (@{$flag_refs_ref}) {
601         @{$flags} = grep {
602             # Flag found as string.
603             not exists $removes{$_}
604             # Flag found as string representation of regexp.
605                 and (not defined $flag_renames_ref->{$_}
606                         or not exists $removes{$flag_renames_ref->{$_}})
607         } @{$flags};
608     }
609
610     return;
611 }
612
613 # Modifies $flag_renames_ref hash.
614 sub compile_flag_regexp {
615     my ($flag_renames_ref, @flags) = @_;
616
617     my @result = ();
618     foreach my $flag (@flags) {
619         # Compile flag regexp for faster execution.
620         my $regex = qr/\s(['"]?)$flag\1(?:\s|\\)/;
621
622         # Store flag name in replacement string for correct flags in messages
623         # with qr//ed flag regexps.
624         $flag_renames_ref->{$regex}
625             = (exists $flag_renames_ref->{$flag})
626                 ? $flag_renames_ref->{$flag}
627                 : $flag;
628
629         push @result, $regex;
630     }
631     return @result;
632 }
633
634 # Does any extension in @extensions exist in %{$extensions_ref}?
635 sub extension_found {
636     my ($extensions_ref, @extensions) = @_;
637
638     foreach my $extension (@extensions) {
639         if (exists $extensions_ref->{$extension}) {
640             return 1;
641         }
642     }
643     return 0;
644 }
645
646
647 # MAIN
648
649 # Parse command line arguments.
650 my $option_help             = 0;
651 my $option_version          = 0;
652 my $option_pie              = 0;
653 my $option_bindnow          = 0;
654 my @option_ignore_arch      = ();
655 my @option_ignore_flag      = ();
656 my @option_ignore_arch_flag = ();
657 my @option_ignore_line      = ();
658 my @option_ignore_arch_line = ();
659 my $option_all              = 0;
660 my $option_arch             = undef;
661 my $option_buildd           = 0;
662 my $option_debian           = 0;
663    $option_color            = 0;
664 my $option_line_numbers     = 0;
665 if (not Getopt::Long::GetOptions(
666             'help|h|?'           => \$option_help,
667             'version'            => \$option_version,
668             # Hardening options.
669             'pie'                => \$option_pie,
670             'bindnow'            => \$option_bindnow,
671             'all'                => \$option_all,
672             # Ignore.
673             'ignore-arch=s'      => \@option_ignore_arch,
674             'ignore-flag=s'      => \@option_ignore_flag,
675             'ignore-arch-flag=s' => \@option_ignore_arch_flag,
676             'ignore-line=s'      => \@option_ignore_line,
677             'ignore-arch-line=s' => \@option_ignore_arch_line,
678             # Misc.
679             'color'              => \$option_color,
680             'arch=s'             => \$option_arch,
681             'buildd'             => \$option_buildd,
682             'debian'             => \$option_debian,
683             'line-numbers'       => \$option_line_numbers,
684         )) {
685     require Pod::Usage;
686     Pod::Usage::pod2usage(2);
687 }
688 if ($option_help) {
689     require Pod::Usage;
690     Pod::Usage::pod2usage(1);
691 }
692 if ($option_version) {
693     print <<"EOF";
694 blhc $VERSION  Copyright (C) 2012-2023  Simon Ruderich
695
696 This program is free software: you can redistribute it and/or modify
697 it under the terms of the GNU General Public License as published by
698 the Free Software Foundation, either version 3 of the License, or
699 (at your option) any later version.
700
701 This program is distributed in the hope that it will be useful,
702 but WITHOUT ANY WARRANTY; without even the implied warranty of
703 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
704 GNU General Public License for more details.
705
706 You should have received a copy of the GNU General Public License
707 along with this program.  If not, see <http://www.gnu.org/licenses/>.
708 EOF
709     exit 0;
710 }
711
712 # Arguments missing.
713 if (scalar @ARGV == 0) {
714     require Pod::Usage;
715     Pod::Usage::pod2usage(2);
716 }
717
718 # Don't load Term::ANSIColor in buildd mode because Term::ANSIColor is not
719 # installed on Debian's buildds.
720 if (not $option_buildd) {
721     require Term::ANSIColor;
722 }
723
724 if ($option_all) {
725     $option_pie     = 1;
726     $option_bindnow = 1;
727 }
728
729 # Precompiled ignores for faster lookup.
730 my %option_ignore_arch_flag = ();
731 my %option_ignore_arch_line = ();
732
733 # Strip flags which should be ignored.
734 if (scalar @option_ignore_flag > 0) {
735     remove_flags(\@flag_refs, \%flag_renames, @option_ignore_flag);
736 }
737 # Same for arch specific ignore flags, but only prepare here.
738 if (scalar @option_ignore_arch_flag > 0) {
739     foreach my $ignore (@option_ignore_arch_flag) {
740         my ($ignore_arch, $ignore_flag) = split /:/, $ignore, 2;
741
742         if (not $ignore_arch or not $ignore_flag) {
743             printf STDERR 'Value "%s" invalid for option ignore-arch-flag '
744                         . '("arch:flag" expected)' . "\n", $ignore;
745             require Pod::Usage;
746             Pod::Usage::pod2usage(2);
747         }
748
749         push @{$option_ignore_arch_flag{$ignore_arch}}, $ignore_flag;
750     }
751 }
752
753 # Precompile all flag regexps. any_flags_used(), all_flags_used() get a lot
754 # faster with this.
755 foreach my $flags (@flag_refs_all) {
756     @{$flags} = compile_flag_regexp(\%flag_renames, @{$flags});
757 }
758
759 # Precompile ignore line regexps, also anchor at beginning and end of line.
760 # Additional entries are also extracted from the build log, see below.
761 foreach my $ignore (@option_ignore_line) {
762     $ignore = qr/^$ignore$/;
763 }
764 # Same for arch specific ignore lines.
765 if (scalar @option_ignore_arch_line > 0) {
766     foreach my $ignore (@option_ignore_arch_line) {
767         my ($ignore_arch, $ignore_line) = split /:/, $ignore, 2;
768
769         if (not $ignore_arch or not $ignore_line) {
770             printf STDERR 'Value "%s" invalid for option ignore-arch-line '
771                         . '("arch:line" expected)' . "\n", $ignore;
772             require Pod::Usage;
773             Pod::Usage::pod2usage(2);
774         }
775
776         push @{$option_ignore_arch_line{$ignore_arch}}, qr/^$ignore_line$/;
777     }
778 }
779
780 # Final exit code.
781 my $exit = 0;
782
783 FILE:
784 foreach my $file (@ARGV) {
785     print "checking '$file'...\n" if scalar @ARGV > 1;
786
787     -f $file or die "No such file: $file";
788
789     open my $fh, '<', $file or die $!;
790
791     # Architecture of this file.
792     my $arch = $option_arch;
793
794     # Hardening options. Not all architectures support all hardening options.
795     my $harden_format  = 1;
796     my $harden_fortify = 1;
797     my $harden_stack   = 1;
798     my $harden_stack_strong = 1;
799     my $harden_relro   = 1;
800     my $harden_bindnow = $option_bindnow; # defaults to 0
801     my $harden_pie     = $option_pie;     # defaults to 0
802
803     # Number of parallel jobs to prevent false positives when detecting
804     # non-verbose builds. As not all jobs declare the number of parallel jobs
805     # use a large enough default.
806     my $parallel = 10;
807
808     # Don't check for PIE flags if automatically applied by the compiler. Only
809     # used in buildd and Debian mode.
810     my $disable_harden_pie = 0;
811     if ($option_debian) {
812         $disable_harden_pie = 1;
813     }
814
815     my $number = 0;
816     while (my $line = <$fh>) {
817         $number++;
818
819         # Detect architecture automatically unless overridden. For buildd logs
820         # only, doesn't use the dpkg-buildpackage header. Necessary to ignore
821         # build logs which aren't built (wrong architecture, build error,
822         # etc.).
823         if (not $arch) {
824             if (index($line, 'Build Architecture: ') == 0) {
825                 $arch = substr $line, 20, -1; # -1 to ignore '\n' at the end
826             # For old logs (sbuild << 0.63.0-1).
827             } elsif (index($line, 'Architecture: ') == 0) {
828                 $arch = substr $line, 14, -1; # -1 to ignore '\n' at the end
829             }
830         }
831
832         # dpkg-buildflags only provides hardening flags since 1.16.1, don't
833         # check for hardening flags in buildd mode if an older dpkg-dev is
834         # used. Default flags (-g -O2) are still checked.
835         #
836         # Packages which were built before 1.16.1 but used their own hardening
837         # flags are not checked.
838         #
839         # Strong stack protector is used since dpkg 1.17.11.
840         #
841         # Recent GCC versions automatically use PIE (only on supported
842         # architectures) and dpkg respects this properly since 1.18.15 and
843         # doesn't pass PIE flags manually.
844         if ($option_buildd
845                 and index($line, 'Toolchain package versions: ') == 0) {
846             require Dpkg::Version;
847
848             my $disable = 1;
849             my $disable_strong = 1;
850
851             if ($line =~ /\bdpkg-dev_(\S+)/) {
852                 if (Dpkg::Version::version_compare($1, '1.16.1') >= 0) {
853                     $disable = 0;
854                 }
855                 if (Dpkg::Version::version_compare($1, '1.17.11') >= 0) {
856                     $disable_strong = 0;
857                 }
858                 if (Dpkg::Version::version_compare($1, '1.18.15') >= 0) {
859                     $disable_harden_pie = 1;
860                 }
861             }
862
863             if ($disable) {
864                 $harden_format  = 0;
865                 $harden_fortify = 0;
866                 $harden_stack   = 0;
867                 $harden_relro   = 0;
868                 $harden_bindnow = 0;
869                 $harden_pie     = 0;
870             }
871             if ($disable_strong) {
872                 $harden_stack_strong = 0;
873             }
874         }
875
876         # The following two versions of CMake in Debian obeyed CPPFLAGS, but
877         # this was later dropped because upstream rejected the patch. Thus
878         # build logs with these versions will have fortify hardening flags
879         # enabled, even though they may be not correctly set and are missing
880         # when build with later CMake versions. Thanks to Aron Xu for letting
881         # me know.
882         if (index($line, 'Package versions: ') == 0
883                 and $line =~ /\bcmake_(\S+)/
884                 and ($1 eq '2.8.7-1' or $1 eq '2.8.7-2')) {
885             if (not $option_buildd) {
886                 error_invalid_cmake($1);
887                 $exit |= $exit_code{invalid_cmake};
888             } else {
889                 print "$buildd_tag{invalid_cmake}|$1|\n";
890             }
891         }
892
893         # Debian's build daemons use "Filtered Build-Depends:" (or just
894         # "Build-Depends:" in older versions) for the build dependencies, but
895         # pbuilder uses "Depends:"; support both.
896         if (index($line, 'Filtered Build-Depends: ') == 0
897                 or index($line, 'Build-Depends: ') == 0
898                 or index($line, 'Depends: ') == 0) {
899             # If hardening wrapper is used (wraps calls to gcc and adds
900             # hardening flags automatically) we can't perform any checks,
901             # abort.
902             if ($line =~ /\bhardening-wrapper\b/) {
903                 if (not $option_buildd) {
904                     error_hardening_wrapper();
905                     $exit |= $exit_code{hardening_wrapper};
906                 } else {
907                     print "$buildd_tag{hardening_wrapper}||\n";
908                 }
909                 next FILE;
910             }
911         }
912
913         # This flags is not always available, but if it is use it.
914         if ($line =~ /^DEB_BUILD_OPTIONS=.*\bparallel=(\d+)/) {
915             $parallel = $1 * 2;
916         }
917
918         # We skip over unimportant lines at the beginning of the log to
919         # prevent false positives.
920         last if index($line, 'dpkg-buildpackage: ') == 0;
921     }
922
923     # Input lines, contain only the lines with compiler commands.
924     my @input = ();
925     # Non-verbose lines in the input. Used to reduce calls to
926     # is_non_verbose_build() (which is quite slow) in the second loop when
927     # it's already clear if a line is non-verbose or not.
928     my @input_nonverbose = ();
929     # Input line number.
930     my @input_number = ();
931
932     my $continuation = 0;
933     my $complete_line = undef;
934     my $non_verbose;
935     while (my $line = <$fh>) {
936         $number++;
937
938         # And stop at the end of the build log. Package details (reported by
939         # the buildd logs) are not important for us. This also prevents false
940         # positives.
941         last if index($line, 'Build finished at ') == 0
942                 and $line =~ /^Build finished at \d{8}-\d{4}$/;
943
944         if (not $continuation) {
945             $non_verbose = 0;
946         }
947
948         # Detect architecture automatically unless overridden.
949         if (not $arch
950                 and index($line, 'dpkg-buildpackage: info: host architecture ') == 0) {
951             $arch = substr $line, 43, -1; # -1 to ignore '\n' at the end
952         # Older versions of dpkg-buildpackage
953         } elsif (not $arch
954                 and index($line, 'dpkg-buildpackage: host architecture ') == 0) {
955             $arch = substr $line, 37, -1; # -1 to ignore '\n' at the end
956
957             # Old buildd logs use e.g. "host architecture is alpha", remove
958             # the "is", otherwise debarch_to_debtriplet() will not detect the
959             # architecture.
960             if (index($arch, 'is ') == 0) {
961                 $arch = substr $arch, 3;
962             }
963         }
964
965         # Permit dynamic excludes from within the build log to ignore false
966         # positives. Cannot use a separate config file as we often only have
967         # the build log itself.
968         if (index($line, 'blhc: ignore-line-regexp: ') == 0) {
969             my $ignore = substr $line, 26, -1; # -1 to ignore '\n' at the end
970             push @option_ignore_line, qr/^$ignore$/;
971             next;
972         }
973
974         next if $line =~ /^\s*#/;
975         # Ignore compiler warnings for now.
976         next if $line =~ /$warning_regex/o;
977
978         if (not $option_buildd and index($line, "\033") != -1) { # \033 = esc
979             # Remove all ANSI color sequences which are sometimes used in
980             # non-verbose builds.
981             $line = Term::ANSIColor::colorstrip($line);
982             # Also strip '\0xf' (delete previous character), used by Elinks'
983             # build system.
984             $line =~ s/\x0f//g;
985             # And "ESC(B" which seems to be used on armhf and hurd (not sure
986             # what it does).
987             $line =~ s/\033\(B//g;
988         }
989
990         # Check if this line indicates a non verbose build.
991         my $skip = 0;
992         $non_verbose |= is_non_verbose_build($line, \$skip);
993         next if $skip;
994
995         # Treat each command as a single line so we don't ignore valid
996         # commands when handling false positives. split_line() is slow, only
997         # use it when necessary.
998         my @line = ($line !~ /(?:;|&&|\|\|)/)
999                  ? ($line)
1000                  : split_line($line);
1001         foreach my $line (@line) {
1002             if ($continuation) {
1003                 $continuation = 0;
1004
1005                 # Join lines, but leave the "\" in place so it's clear where
1006                 # the original line break was.
1007                 chomp $complete_line;
1008                 $complete_line .= ' ' . $line;
1009             }
1010             # Line continuation, line ends with "\".
1011             if ($line =~ /\\$/) {
1012                 $continuation = 1;
1013                 # Start line continuation.
1014                 if (not defined $complete_line) {
1015                     $complete_line = $line;
1016                 }
1017                 next;
1018             }
1019
1020             # Use the complete line if a line continuation occurred.
1021             if (defined $complete_line) {
1022                 $line = $complete_line;
1023                 $complete_line = undef;
1024             }
1025
1026             my $noenv = $line;
1027             # Strip (basic) environment variables for compiler detection. This
1028             # prevents false positives when environment variables contain
1029             # compiler binaries. Nested quotes, command substitution, etc. is
1030             # not supported.
1031             $noenv =~ s/^
1032                 \s*
1033                 (?:
1034                     [a-zA-Z_]+          # environment variable name
1035                     =
1036                     (?:
1037                         [^\s"'\$`\\]+   # non-quoted string
1038                         |
1039                         '[^"'\$`\\]*'   # single-quoted string
1040                         |
1041                         "[^"'\$`\\]*"   # double-quoted string
1042                     )
1043                     \s+
1044                 )*
1045             //x;
1046             # Ignore lines with no compiler commands.
1047             next if not $non_verbose
1048                     and not $noenv =~ /$cc_regex_normal/o;
1049             # Ignore lines with no filenames with extensions. May miss some
1050             # non-verbose builds (e.g. "gcc -o test" [sic!]), but shouldn't be
1051             # a problem as the log will most likely contain other non-verbose
1052             # commands which are detected.
1053             next if not $non_verbose
1054                     and not $line =~ /$file_extension_regex/o;
1055
1056             # Ignore false positives.
1057             #
1058             # `./configure` output.
1059             next if not $non_verbose
1060                     and $line =~ /^(?:checking|[Cc]onfigure:) /;
1061             next if $line =~ /^\s*(?:Host\s+)?(?:C(?:\+\+)?\s+)?
1062                                 [Cc]ompiler[\s.]*:?\s+
1063                                 /x;
1064             next if $line =~ m{^\s*(?:-\s)?(?:HOST_)?(?:CC|CXX)
1065                                 \s*=\s*$cc_regex_full
1066                                 # optional compiler options, don't allow
1067                                 # "everything" here to prevent false negatives
1068                                 \s*(?:\s-\S+)*\s*$}xo;
1069             # `echo` is never a compiler command
1070             next if $line =~ /^\s*echo\s/;
1071             # Ignore calls to `make` because they can contain environment
1072             # variables which look like compiler commands, e.g. CC=).
1073             next if $line =~ /^\s*make\s/;
1074             # `moc-qt4`/`moc-qt5` contain '-I.../linux-g++' in their command
1075             # line (or similar for other architectures) which gets recognized
1076             # as a compiler line, but `moc-qt*` is only a preprocessor for Qt
1077             # C++ files. No hardening flags are relevant during this step,
1078             # thus ignore `moc-qt*` lines. The resulting files will be
1079             # compiled in a separate step (and therefore checked).
1080             next if $line =~ m{^\S+(?:/bin/moc(?:-qt[45])?|/lib/qt6/libexec/moc)
1081                                \s.+\s
1082                                -I\S+/mkspecs/[a-z]+-g\++(?:-64)?
1083                                \s}x;
1084             # nvcc is not a regular C compiler
1085             next if $line =~ m{^\S+/bin/nvcc\s};
1086             # Ignore false positives when the line contains only CC=gcc but no
1087             # other gcc command.
1088             if ($line =~ /(.*)CC=$cc_regex_full(.*)/o) {
1089                 my $before = $1;
1090                 my $after  = $2;
1091                 next if     not $before =~ /$cc_regex_normal/o
1092                         and not $after  =~ /$cc_regex_normal/o;
1093             }
1094             # Ignore false positives caused by gcc -v. It outputs a line
1095             # looking like a normal compiler line but which is sometimes
1096             # missing hardening flags, although the normal compiler line
1097             # contains them.
1098             next if $line =~ m{^\s+/usr/lib/gcc/$cc_regex_full_prefix/
1099                                    [0-9.]+/cc1(?:plus)?}xo;
1100             # Ignore false positive with `rm` which may remove files which
1101             # look like a compiler executable thus causing the line to be
1102             # treated as a normal compiler line.
1103             next if $line =~ m{^\s*rm\s+};
1104             next if $line =~ m{^\s*dwz\s+};
1105             # Some build systems emit "gcc > file".
1106             next if $line =~ m{$cc_regex_normal\s*>\s*\S+}o;
1107             # Hex output may contain "cc".
1108             next if $line =~ m#(?:\b[0-9a-fA-F]{2,}\b\s*){5}#;
1109             # Meson build output
1110             next if $line =~ /^C\+\+ linker for the host machine: /;
1111             # Embedded `gcc -print-*` commands
1112             next if $line =~ /`$cc_regex_normal\s*[^`]*-print-\S+`/;
1113             # cmake checking for compiler flags without setting CPPFLAGS
1114             next if $line =~ m{^\s*/usr/(bin|lib)/(ccache/)?c\+\+ -dM -E -c /usr/share/cmake-\S+/Modules/CMakeCXXCompilerABI\.cpp};
1115
1116             # Check if additional hardening options were used. Used to ensure
1117             # they are used for the complete build.
1118             $harden_pie     = 1 if any_flags_used($line, @def_cflags_pie,
1119                                                          @def_ldflags_pie);
1120             $harden_bindnow = 1 if any_flags_used($line, @def_ldflags_bindnow);
1121
1122             push @input, $line;
1123             push @input_nonverbose, $non_verbose;
1124             push @input_number, $number if $option_line_numbers;
1125         }
1126     }
1127
1128     close $fh or die $!;
1129
1130     # Ignore arch if requested.
1131     if (scalar @option_ignore_arch > 0 and $arch) {
1132         foreach my $ignore (@option_ignore_arch) {
1133             if ($arch eq $ignore) {
1134                 print "ignoring architecture '$arch'\n";
1135                 next FILE;
1136             }
1137         }
1138     }
1139
1140     if (scalar @input == 0) {
1141         if (not $option_buildd) {
1142             print "No compiler commands!\n";
1143             $exit |= $exit_code{no_compiler_commands};
1144         } else {
1145             print "$buildd_tag{no_compiler_commands}||\n";
1146         }
1147         next FILE;
1148     }
1149
1150     if ($option_buildd) {
1151         $statistics{commands} += scalar @input;
1152     }
1153
1154     # Option or auto detected.
1155     if ($arch) {
1156         # The following was partially copied from dpkg-dev 1.21.13
1157         # (/usr/share/perl5/Dpkg/Vendor/Debian.pm, _add_build_flags()),
1158         # copyright Raphaël Hertzog <hertzog@debian.org>, Guillem Jover
1159         # <guillem@debian.org>, Kees Cook <kees@debian.org>, Canonical, Ltd.
1160         # licensed under GPL version 2 or later. Keep it in sync.
1161
1162         require Dpkg::Arch;
1163         my ($os, $cpu);
1164         # Recent dpkg versions use a quadruplet for arch. Support both.
1165         eval {
1166             (undef, undef, $os, $cpu) = Dpkg::Arch::debarch_to_debtuple($arch);
1167         };
1168         if ($@) {
1169             (undef, $os, $cpu) = Dpkg::Arch::debarch_to_debtriplet($arch);
1170         }
1171
1172         my %builtin_pie_arch = map { $_ => 1 } qw(
1173             amd64
1174             arm64
1175             armel
1176             armhf
1177             hurd-i386
1178             i386
1179             kfreebsd-amd64
1180             kfreebsd-i386
1181             mips
1182             mipsel
1183             mips64el
1184             powerpc
1185             ppc64
1186             ppc64el
1187             riscv64
1188             s390x
1189             sparc
1190             sparc64
1191         );
1192
1193         # Disable unsupported hardening options.
1194         if ($os !~ /^(?:linux|kfreebsd|knetbsd|hurd)$/
1195                 or $cpu =~ /^(?:hppa|avr32)$/) {
1196             $harden_pie = 0;
1197         }
1198         if ($cpu =~ /^(?:ia64|alpha|hppa|nios2)$/ or $arch eq 'arm') {
1199             $harden_stack = 0;
1200             $harden_stack_strong = 0;
1201         }
1202         if ($cpu =~ /^(?:ia64|hppa|avr32)$/) {
1203             $harden_relro   = 0;
1204             $harden_bindnow = 0;
1205         }
1206
1207         if ($disable_harden_pie and exists $builtin_pie_arch{$arch}) {
1208             $harden_pie = 0;
1209         }
1210     }
1211
1212     # Default values.
1213     my @cflags   = @def_cflags;
1214     my @cxxflags = @def_cxxflags;
1215     my @cppflags = @def_cppflags;
1216     my @ldflags  = @def_ldflags;
1217     # Check the specified hardening options, same order as dpkg-buildflags.
1218     if ($harden_pie) {
1219         @cflags   = (@cflags,   @def_cflags_pie);
1220         @cxxflags = (@cxxflags, @def_cflags_pie);
1221         @ldflags  = (@ldflags,  @def_ldflags_pie);
1222     }
1223     if ($harden_stack_strong) {
1224         @cflags   = (@cflags,   @def_cflags_stack_strong);
1225         @cxxflags = (@cxxflags, @def_cflags_stack_strong);
1226     } elsif ($harden_stack) {
1227         @cflags   = (@cflags,   @def_cflags_stack);
1228         @cxxflags = (@cxxflags, @def_cflags_stack);
1229     }
1230     if ($harden_fortify) {
1231         @cflags   = (@cflags,   @def_cflags_fortify);
1232         @cxxflags = (@cxxflags, @def_cflags_fortify);
1233         @cppflags = (@cppflags, @def_cppflags_fortify);
1234     }
1235     if ($harden_format) {
1236         @cflags   = (@cflags,   @def_cflags_format);
1237         @cxxflags = (@cxxflags, @def_cflags_format);
1238     }
1239     if ($harden_relro) {
1240         @ldflags = (@ldflags, @def_ldflags_relro);
1241     }
1242     if ($harden_bindnow) {
1243         @ldflags = (@ldflags, @def_ldflags_bindnow);
1244     }
1245
1246     # Ada doesn't support format hardening flags, see #680117 for more
1247     # information. Same for fortran.
1248     my @cflags_backup;
1249     my @cflags_noformat = grep {
1250         my $ok = 1;
1251         foreach my $flag (@def_cflags_format) {
1252             $ok = 0 if $_ eq $flag;
1253         }
1254         $ok;
1255     } @cflags;
1256
1257     # Hack to fix cppflags_fortify_broken() if --ignore-flag
1258     # -D_FORTIFY_SOURCE=2 is used to ignore missing fortification. Only works
1259     # as long as @def_cppflags_fortify contains only one variable.
1260     if (scalar @def_cppflags_fortify == 0) {
1261         $harden_fortify = 0;
1262     }
1263
1264     # Ignore flags for this arch if requested.
1265     if ($arch and exists $option_ignore_arch_flag{$arch}) {
1266         my @local_flag_refs = (\@cflags, \@cxxflags, \@cppflags, \@ldflags);
1267
1268         remove_flags(\@local_flag_refs,
1269                      \%flag_renames,
1270                      @{$option_ignore_arch_flag{$arch}});
1271     }
1272
1273     my @ignore_line = @option_ignore_line;
1274     # Ignore lines for this arch if requested.
1275     if ($arch and exists $option_ignore_arch_line{$arch}) {
1276         @ignore_line = (@ignore_line, @{$option_ignore_arch_line{$arch}});
1277     }
1278
1279 LINE:
1280     for (my $i = 0; $i < scalar @input; $i++) {
1281         my $line = $input[$i];
1282
1283         # Ignore line if requested.
1284         foreach my $ignore (@ignore_line) {
1285             next LINE if $line =~ /$ignore/;
1286         }
1287
1288         my $skip = 0;
1289         if ($input_nonverbose[$i]
1290                 and is_non_verbose_build($line, \$skip,
1291                                          \@input, $i, $parallel)) {
1292             if (not $option_buildd) {
1293                 error_non_verbose_build($line, $input_number[$i]);
1294                 $exit |= $exit_code{non_verbose_build};
1295             } else {
1296                 $statistics{commands_nonverbose}++;
1297             }
1298             next;
1299         }
1300         # Even if it's a verbose build, we might have to skip this line (see
1301         # is_non_verbose_build()).
1302         next if $skip;
1303
1304         my $orig_line = $line;
1305
1306         # Remove everything until and including the compiler command. Makes
1307         # checks easier and faster.
1308         $line =~ s/^.*?$cc_regex//o;
1309         # "([...] test.c)" is not detected as 'test.c' - fix this by removing
1310         # the brace and similar characters at the line end.
1311         $line =~ s/['")]+$//;
1312
1313         # Skip unnecessary tests when only preprocessing.
1314         my $flag_preprocess = 0;
1315
1316         my $dependency = 0;
1317         my $preprocess = 0;
1318         my $compile    = 0;
1319         my $link       = 0;
1320
1321         # Preprocess, compile, assemble.
1322         if ($line =~ /\s(-E|-S|-c)\b/) {
1323             $preprocess      = 1;
1324             $flag_preprocess = 1 if $1 eq '-E';
1325             $compile         = 1 if $1 eq '-S' or $1 eq '-c';
1326         # Dependency generation for Makefiles. The other flags (-MF -MG -MP
1327         # -MT -MQ) are always used with -M/-MM.
1328         } elsif ($line =~ /\s(?:-M|-MM)\b/) {
1329             $dependency = 1;
1330         # Otherwise assume we are linking.
1331         } else {
1332             $link = 1;
1333         }
1334
1335         # -MD/-MMD also cause dependency generation, but they don't imply -E!
1336         if ($line =~ /\s(?:-MD|-MMD)\b/) {
1337             $dependency      = 0;
1338             $flag_preprocess = 0;
1339         }
1340
1341         # Dependency generation for Makefiles, no preprocessing or other flags
1342         # needed.
1343         next if $dependency;
1344
1345         # Get all file extensions on this line.
1346         my @extensions = $line =~ /$file_extension_regex/go;
1347         # Ignore all unknown extensions to speedup the search below.
1348         @extensions = grep { exists $extension{$_} } @extensions;
1349
1350         # These file types don't require preprocessing.
1351         if (extension_found(\%extensions_no_preprocess, @extensions)) {
1352             $preprocess = 0;
1353         }
1354         # These file types require preprocessing.
1355         if (extension_found(\%extensions_preprocess, @extensions)) {
1356             # Prevent false positives with "libtool: link: g++ -include test.h
1357             # .." compiler lines.
1358             if ($orig_line !~ /$libtool_link_regex/o) {
1359                 $preprocess = 1;
1360             }
1361         }
1362
1363         if (not $flag_preprocess) {
1364             # If there are source files then it's compiling/linking in one
1365             # step and we must check both. We only check for source files
1366             # here, because header files cause too many false positives.
1367             if (extension_found(\%extensions_compile_link, @extensions)) {
1368                 # Assembly files don't need CFLAGS.
1369                 if (not extension_found(\%extensions_compile, @extensions)
1370                         and extension_found(\%extensions_no_compile, @extensions)) {
1371                     $compile = 0;
1372                 # But the rest does.
1373                 } else {
1374                     $compile = 1;
1375                 }
1376             # No compilable extensions found, either linking or compiling
1377             # header flags.
1378             #
1379             # If there are also no object files we are just compiling headers
1380             # (.h -> .h.gch). Don't check for linker flags in this case. Due
1381             # to our liberal checks for compiler lines, this also reduces the
1382             # number of false positives considerably.
1383             } elsif ($link
1384                     and not extension_found(\%extensions_object, @extensions)) {
1385                 $link = 0;
1386             }
1387         }
1388
1389         my $compile_cpp = 0;
1390         my $restore_cflags = 0;
1391         # Assume CXXFLAGS are required when a C++ file is specified in the
1392         # compiler line.
1393         if ($compile
1394                 and extension_found(\%extensions_compile_cpp, @extensions)) {
1395             $compile     = 0;
1396             $compile_cpp = 1;
1397         # Ada needs special CFLAGS
1398         } elsif (extension_found(\%extensions_ada, @extensions)) {
1399             $restore_cflags = 1;
1400             $preprocess = 0; # Ada uses no CPPFLAGS
1401             @cflags_backup = @cflags;
1402             @cflags        = @cflags_noformat;
1403         # Same for fortran
1404         } elsif (extension_found(\%extensions_fortran, @extensions)) {
1405             $restore_cflags = 1;
1406             @cflags_backup = @cflags;
1407             @cflags        = @cflags_noformat;
1408         }
1409
1410         if ($option_buildd) {
1411             $statistics{preprocess}++  if $preprocess;
1412             $statistics{compile}++     if $compile;
1413             $statistics{compile_cpp}++ if $compile_cpp;
1414             $statistics{link}++        if $link;
1415         }
1416
1417         # Check if there are flags indicating a debug build. If that's true,
1418         # skip the check for -O2. This prevents fortification, but that's fine
1419         # for a debug build.
1420         if (any_flags_used($line, @def_cflags_debug)) {
1421             remove_flags([\@cflags], \%flag_renames, $def_cflags[1]);
1422             remove_flags([\@cppflags], \%flag_renames, $def_cppflags_fortify[0]);
1423         }
1424
1425         # Check hardening flags.
1426         my @missing;
1427         if ($compile and (not all_flags_used($line, \@missing, @cflags)
1428                     or (($harden_stack or $harden_stack_strong)
1429                         and cflags_stack_broken($line, \@missing,
1430                                                 $harden_stack_strong)))
1431                 # Libraries linked with -fPIC don't have to (and can't) be
1432                 # linked with -fPIE as well. It's no error if only PIE flags
1433                 # are missing.
1434                 and not pic_pie_conflict($line, $harden_pie, \@missing, @def_cflags_pie)
1435                 # Assume dpkg-buildflags returns the correct flags.
1436                 and index($line, '`dpkg-buildflags --get CFLAGS`') == -1) {
1437             if (not $option_buildd) {
1438                 error_flags('CFLAGS missing', \@missing, \%flag_renames,
1439                             $input[$i], $input_number[$i]);
1440                 $exit |= $exit_code{flags_missing};
1441             } else {
1442                 $statistics{compile_missing}++;
1443             }
1444         } elsif ($compile_cpp and not all_flags_used($line, \@missing, @cflags)
1445                 # Libraries linked with -fPIC don't have to (and can't) be
1446                 # linked with -fPIE as well. It's no error if only PIE flags
1447                 # are missing.
1448                 and not pic_pie_conflict($line, $harden_pie, \@missing, @def_cflags_pie)
1449                 # Assume dpkg-buildflags returns the correct flags.
1450                 and index($line, '`dpkg-buildflags --get CXXFLAGS`') == -1) {
1451             if (not $option_buildd) {
1452                 error_flags('CXXFLAGS missing', \@missing, \%flag_renames,
1453                             $input[$i], $input_number[$i]);
1454                 $exit |= $exit_code{flags_missing};
1455             } else {
1456                 $statistics{compile_cpp_missing}++;
1457             }
1458         }
1459         if ($preprocess
1460                 and (not all_flags_used($line, \@missing, @cppflags)
1461                     # The fortify flag might be overwritten, detect that.
1462                      or ($harden_fortify
1463                          and cppflags_fortify_broken($line, \@missing)))
1464                 # Assume dpkg-buildflags returns the correct flags.
1465                 and index($line, '`dpkg-buildflags --get CPPFLAGS`') == -1) {
1466             if (not $option_buildd) {
1467                 error_flags('CPPFLAGS missing', \@missing, \%flag_renames,
1468                             $input[$i], $input_number[$i]);
1469                 $exit |= $exit_code{flags_missing};
1470             } else {
1471                 $statistics{preprocess_missing}++;
1472             }
1473         }
1474         if ($link and not all_flags_used($line, \@missing, @ldflags)
1475                 # Same here, -fPIC conflicts with -fPIE.
1476                 and not pic_pie_conflict($line, $harden_pie, \@missing, @def_ldflags_pie)
1477                 # Assume dpkg-buildflags returns the correct flags.
1478                 and index($line, '`dpkg-buildflags --get LDFLAGS`') == -1) {
1479             if (not $option_buildd) {
1480                 error_flags('LDFLAGS missing', \@missing, \%flag_renames,
1481                             $input[$i], $input_number[$i]);
1482                 $exit |= $exit_code{flags_missing};
1483             } else {
1484                 $statistics{link_missing}++;
1485             }
1486         }
1487
1488         # Restore normal CFLAGS.
1489         if ($restore_cflags) {
1490             @cflags = @cflags_backup;
1491         }
1492     }
1493 }
1494
1495 # Print statistics for buildd mode, only output in this mode.
1496 if ($option_buildd) {
1497     my @warning;
1498
1499     if ($statistics{preprocess_missing}) {
1500         push @warning, sprintf 'CPPFLAGS %d (of %d)',
1501                                $statistics{preprocess_missing},
1502                                $statistics{preprocess};
1503     }
1504     if ($statistics{compile_missing}) {
1505         push @warning, sprintf 'CFLAGS %d (of %d)',
1506                                $statistics{compile_missing},
1507                                $statistics{compile};
1508     }
1509     if ($statistics{compile_cpp_missing}) {
1510         push @warning, sprintf 'CXXFLAGS %d (of %d)',
1511                                $statistics{compile_cpp_missing},
1512                                $statistics{compile_cpp};
1513     }
1514     if ($statistics{link_missing}) {
1515         push @warning, sprintf 'LDFLAGS %d (of %d)',
1516                                $statistics{link_missing},
1517                                $statistics{link};
1518     }
1519     if (scalar @warning) {
1520         local $" = ', '; # array join string
1521         print "$buildd_tag{flags_missing}|@warning missing|\n";
1522     }
1523
1524     if ($statistics{commands_nonverbose}) {
1525         printf "$buildd_tag{non_verbose_build}|%d (of %d) hidden|\n",
1526                $statistics{commands_nonverbose},
1527                $statistics{commands},
1528     }
1529 }
1530
1531
1532 exit $exit;
1533
1534
1535 __END__
1536
1537 =head1 NAME
1538
1539 blhc - build log hardening check, checks build logs for missing hardening flags
1540
1541 =head1 SYNOPSIS
1542
1543 B<blhc> [I<options>] I<< <dpkg-buildpackage build log file>.. >>
1544
1545 =head1 DESCRIPTION
1546
1547 blhc is a small tool which checks build logs for missing hardening flags. It's
1548 licensed under the GPL 3 or later.
1549
1550 It's designed to check build logs generated by Debian's dpkg-buildpackage (or
1551 tools using dpkg-buildpackage like pbuilder or sbuild (which is used for the
1552 official buildd build logs)) to help maintainers detect missing hardening
1553 flags in their packages.
1554
1555 Only gcc is detected as compiler at the moment. If other compilers support
1556 hardening flags as well, please report them.
1557
1558 If there's no output, no flags are missing and the build log is fine.
1559
1560 See F<README> for details about performed checks, auto-detection and
1561 limitations.
1562
1563 =head1 FALSE POSITIVES
1564
1565 To suppress false positives you can embed the following string in the build
1566 log:
1567
1568     blhc: ignore-line-regexp: REGEXP
1569
1570 All lines fully matching REGEXP (see B<--ignore-line> for details) will be
1571 ignored.
1572
1573 Please use this feature sparingly so that missing flags are not overlooked. If
1574 you find false positives which affect more packages please report a bug.
1575
1576 To generate this string simply use echo in C<debian/rules>; make sure to use @
1577 to suppress the echo command itself as it could also trigger a false positive.
1578 If the build process takes a long time edit the C<.build> file in place and
1579 tweak the ignore string until B<blhc --all --debian package.build> no longer
1580 reports any false positives.
1581
1582 =head1 OPTIONS
1583
1584 =over 8
1585
1586 =item B<--all>
1587
1588 Force check for all +all (+pie, +bindnow) hardening flags. By default it's
1589 auto detected.
1590
1591 =item B<--arch> I<architecture>
1592
1593 Set the specific architecture (e.g. amd64, armel, etc.), automatically
1594 disables hardening flags not available on this architecture. Is detected
1595 automatically if dpkg-buildpackage is used.
1596
1597 =item B<--bindnow>
1598
1599 Force check for all +bindnow hardening flags. By default it's auto detected.
1600
1601 =item B<--buildd>
1602
1603 Special mode for buildds when automatically parsing log files. The following
1604 changes are in effect:
1605
1606 =over 2
1607
1608 =item *
1609
1610 Print tags instead of normal warnings, see L</"BUILDD TAGS"> for a list of
1611 possible tags.
1612
1613 =item *
1614
1615 Don't check hardening flags in old log files (if dpkg-dev << 1.16.1 is
1616 detected).
1617
1618 =item *
1619
1620 Don't require Term::ANSIColor.
1621
1622 =item *
1623
1624 Return exit code 0, unless there was a error (-I, -W messages don't count as
1625 error).
1626
1627 =back
1628
1629 =item B<--debian>
1630
1631 Apply Debian-specific settings. At the moment this only disables checking for
1632 PIE which is automatically applied by Debian's GCC and no longer requires a
1633 compiler command line argument.
1634
1635 =item B<--color>
1636
1637 Use colored (ANSI) output for warning messages.
1638
1639 =item B<--line-numbers>
1640
1641 Display line numbers.
1642
1643 =item B<--ignore-arch> I<arch>
1644
1645 Ignore build logs from architectures matching I<arch>. I<arch> is a string.
1646
1647 Used to prevent false positives. This option can be specified multiple times.
1648
1649 =item B<--ignore-arch-flag> I<arch>:I<flag>
1650
1651 Like B<--ignore-flag>, but only ignore flag on I<arch>.
1652
1653 =item B<--ignore-arch-line> I<arch>:I<line>
1654
1655 Like B<--ignore-line>, but only ignore line on I<arch>.
1656
1657 =item B<--ignore-flag> I<flag>
1658
1659 Don't print an error when the specific flag is missing in a compiler line.
1660 I<flag> is a string.
1661
1662 Used to prevent false positives. This option can be specified multiple times.
1663
1664 =item B<--ignore-line> I<regex>
1665
1666 Ignore lines matching the given Perl regex. I<regex> is automatically anchored
1667 at the beginning and end of the line to prevent false negatives.
1668
1669 B<NOTE>: Not the input lines are checked, but the lines which are displayed in
1670 warnings (which have line continuation resolved).
1671
1672 Used to prevent false positives. This option can be specified multiple times.
1673
1674 =item B<--pie>
1675
1676 Force check for all +pie hardening flags. By default it's auto detected.
1677
1678 =item B<-h -? --help>
1679
1680 Print available options.
1681
1682 =item B<--version>
1683
1684 Print version number and license.
1685
1686 =back
1687
1688 Auto detection for B<--pie> and B<--bindnow> only works if at least one
1689 command uses the required hardening flag (e.g. -fPIE). Then it's required for
1690 all other commands as well.
1691
1692 =head1 EXAMPLES
1693
1694 Normal usage, parse a single log file.
1695
1696     blhc path/to/log/file
1697
1698 If there's no output, no flags are missing and the build log is fine.
1699
1700 Parse multiple log files. The exit code is ORed over all files.
1701
1702     blhc path/to/directory/with/log/files/*
1703
1704 Don't treat missing C<-g> as error:
1705
1706     blhc --ignore-flag -g path/to/log/file
1707
1708 Don't treat missing C<-pie> on kfreebsd-amd64 as error:
1709
1710     blhc --ignore-arch-flag kfreebsd-amd64:-pie path/to/log/file
1711
1712 Ignore lines consisting exactly of C<./script gcc file> which would cause a
1713 false positive.
1714
1715     blhc --ignore-line '\./script gcc file' path/to/log/file
1716
1717 Ignore lines matching C<./script gcc file> somewhere in the line.
1718
1719     blhc --ignore-line '.*\./script gcc file.*' path/to/log/file
1720
1721 Use blhc with pbuilder.
1722
1723     pbuilder path/to/package.dsc | tee path/log/file
1724     blhc path/to/file || echo flags missing
1725
1726 Assume this build log was created on a Debian system and thus don't warn about
1727 missing PIE flags if the current architecture injects them automatically (this
1728 is enabled in buildd mode per default). C<--arch> is necessary if the build
1729 log contains no architecture information as written by dpkg-buildpackage.
1730
1731     blhc --debian --all --arch=amd64 path/to/log/file
1732
1733 =head1 BUILDD TAGS
1734
1735 The following tags are used in I<--buildd> mode. In braces the additional data
1736 which is displayed.
1737
1738 =over 2
1739
1740 =item B<I-hardening-wrapper-used>
1741
1742 The package uses hardening-wrapper which intercepts calls to gcc and adds
1743 hardening flags. The build log doesn't contain any hardening flags and thus
1744 can't be checked by blhc.
1745
1746 =item B<W-compiler-flags-hidden> (summary of hidden lines)
1747
1748 Build log contains lines which hide the real compiler flags. For example:
1749
1750     CC test-a.c
1751     CC test-b.c
1752     CC test-c.c
1753     LD test
1754
1755 Most of the time either C<export V=1> or C<export verbose=1> in
1756 F<debian/rules> fixes builds with hidden compiler flags. Sometimes C<.SILENT>
1757 in a F<Makefile> must be removed. And as last resort the F<Makefile> must be
1758 patched to remove the C<@>s hiding the real compiler commands.
1759
1760 =item B<W-dpkg-buildflags-missing> (summary of missing flags)
1761
1762 CPPFLAGS, CFLAGS, CXXFLAGS, LDFLAGS missing.
1763
1764 =item B<I-invalid-cmake-used> (version)
1765
1766 By default CMake ignores CPPFLAGS thus missing those hardening flags. Debian
1767 patched CMake in versions 2.8.7-1 and 2.8.7-2 to respect CPPFLAGS, but this
1768 patch was rejected by upstream and later reverted in Debian. Thus those two
1769 versions show correct usage of CPPFLAGS even if the package doesn't correctly
1770 handle them (for example by passing them to CFLAGS). To prevent false
1771 negatives just blacklist those two versions.
1772
1773 =item B<I-no-compiler-commands>
1774
1775 No compiler commands were detected. Either the log contains none or they were
1776 not correctly detected by blhc (please report the bug in this case).
1777
1778 =back
1779
1780 =head1 EXIT STATUS
1781
1782 The exit status is a "bit mask", each listed status is ORed when the error
1783 condition occurs to get the result.
1784
1785 =over 4
1786
1787 =item B<0>
1788
1789 Success.
1790
1791 =item B<1>
1792
1793 No compiler commands were found.
1794
1795 =item B<2>
1796
1797 Invalid arguments/options given to blhc.
1798
1799 =item B<4>
1800
1801 Non verbose build.
1802
1803 =item B<8>
1804
1805 Missing hardening flags.
1806
1807 =item B<16>
1808
1809 Hardening wrapper detected, no tests performed.
1810
1811 =item B<32>
1812
1813 Invalid CMake version used. See B<I-invalid-cmake-used> under L</"BUILDD
1814 TAGS"> for a detailed explanation.
1815
1816 =back
1817
1818 =head1 AUTHOR
1819
1820 Simon Ruderich, E<lt>simon@ruderich.orgE<gt>
1821
1822 Thanks to to Bernhard R. Link E<lt>brlink@debian.orgE<gt> and Jaria Alto
1823 E<lt>jari.aalto@cante.netE<gt> for their valuable input and suggestions.
1824
1825 =head1 LICENSE AND COPYRIGHT
1826
1827 Copyright (C) 2012-2023 by Simon Ruderich
1828
1829 This program is free software: you can redistribute it and/or modify
1830 it under the terms of the GNU General Public License as published by
1831 the Free Software Foundation, either version 3 of the License, or
1832 (at your option) any later version.
1833
1834 This program is distributed in the hope that it will be useful,
1835 but WITHOUT ANY WARRANTY; without even the implied warranty of
1836 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1837 GNU General Public License for more details.
1838
1839 You should have received a copy of the GNU General Public License
1840 along with this program.  If not, see <http://www.gnu.org/licenses/>.
1841
1842 =head1 SEE ALSO
1843
1844 L<hardening-check(1)>, L<dpkg-buildflags(1)>
1845
1846 =cut