File: README

package info (click to toggle)
blhc 0.12-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 592 kB
  • sloc: perl: 1,045; sh: 29; makefile: 5
file content (192 lines) | stat: -rw-r--r-- 6,151 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
README
======

blhc (build log hardening check) is a small tool which checks build logs for
missing hardening flags. It's licensed under the GPL 3 or later.

Hardening flags enable additional security features in the compiler to prevent
e.g. stack overflows, format string vulnerabilities, GOT overwrites, etc.

Because most build systems are quite complicated there are many places where
compiler flags from the environment might be ignored. The parser verifies that
all compiler commands use the correct hardening flags and thus all hardening
features are correctly used.

It's designed to check build logs generated by Debian's dpkg-buildpackage (or
tools using dpkg-buildpackage like pbuilder or sbuild (which is used for the
official buildd build logs)) to help maintainers detect missing hardening
flags in their packages.

At the moment it works only on Debian and derivatives but it should be easily
extendable to other systems as well. Patches are welcome.

Only gcc is detected as compiler at the moment. If other compilers support
hardening flags as well, please report them.

For more information about hardening flags have a look at [1].

[1]: https://wiki.debian.org/Hardening


DEPENDENCIES
------------

- Perl
  - Dpkg::Arch
  - Dpkg::Version
  - Term::ANSIColor >= 2.01
    Bundled with perl. A recent version is only necessary for build logs with
    ANSI colors which is rare, blhc works fine without if the build log
    doesn't use colors. Not required for buildd mode.


USAGE
-----

    blhc path/to/log/file

blhc can be run directly from the source tree (`bin/blhc`) or copied anywhere
on the system. It doesn't have to be explicitly installed. To read the man
page use `perldoc bin/blhc`.

If there's no output, no flags are missing and the build log is fine.

For more examples see the man page.


CHECKS
------

blhc checks all compiler lines (lines matching `gcc`) for hardening flags
(same as set by `dpkg-buildflags`). If a compiler flag is missing a warning
with the missing flags is printed.

Consider the following compiler line:

    gcc -g -O2 -o test test.c

blhc generates the following warnings because all hardening flags are missing:

    CFLAGS missing (-fstack-protector-strong -Wformat -Werror=format-security): gcc -g -O2 -o test test.c
    CPPFLAGS missing (-D_FORTIFY_SOURCE=2): gcc -g -O2 -o test test.c
    LDFLAGS missing (-Wl,-z,relro): gcc -g -O2 -o test test.c

Preprocessing, linking and compiling is automatically detected:

    gcc -MM test.c > test.d
    gcc -E test.c
    gcc -o test test.o

    CPPFLAGS missing (-D_FORTIFY_SOURCE=2): gcc -E test.c
    LDFLAGS missing (-Wl,-z,relro): gcc -o test test.o

blhc differentiates the following flags:

    - CPPFLAGS: preprocessor flags
    - CFLAGS:   C compiler flags
    - CXXFLAGS: C++ compiler flags
    - LDFLAGS:  linker flags

Both '-O2' and '-O3' are recognized as valid, even though only '-O2' is
printed in warnings.

It handles all file extensions as documented by gcc regarding preprocessing,
linking, compiling.

The architecture of the build log is automatically detected by looking for the
following line (output of dpkg-buildpackage):

    dpkg-buildpackage: host architecture <architecture>

The available hardening flags are adapted to the architecture because some
architectures don't support certain hardening options.

Some checks check the build dependencies for certain packages. The following
lines are used to get the build dependencies. The first two are used in buildd
build logs (the second was used in older logs), the third by pbuilder logs,
all are detected:

    Filtered Buildd-Depends: ...
    Build-Depends: ...
    Depends: ...


LIMITATIONS
-----------

The build log must contain the following line which marks the beginning of the
real compile process (output of dpkg-buildpackage):

    dpkg-buildpackage: ...

If it's not present no compiler commands are detected. In case you don't use
dpkg-buildpackage but still want to check a build log, adding it as first line
should work fine.

To prevent false positives when checking debug builds, compiler lines
containing '-OO' or '-Og' are considered debug builds and are not checked for
'-O2', even though fortification doesn't work without '-O2'.

The following non-verbose builds can't be detected:

    gcc -o test

This is not detected because `test` has no file extension. A file extension is
required on a compiler line to prevent many false positives. As the build will
most likely contain other non-verbose build commands (e.g. `gcc test.c`) which
are correctly detected as non-verbose this shouldn't be a problem.

Some CMake non-verbose linker commands are also not correctly detected at the
moment.

blhc still creates a few false positives. Patches to fix them are very welcome
as long as they won't cause any false negatives.


BUILDD MODE
-----------

Buildd mode is enabled if '--buildd' is used. It's designed to check build
logs from Debian's buildds.

Instead of normal warning messages only tags are printed at the end of the
check. See the man page for possible tags.


BUGS
----

If you find any bugs not mentioned in this document please report them to
<simon@ruderich.org> with blhc in the subject.


AUTHORS
-------

Written by Simon Ruderich <simon@ruderich.org>.

Thanks to Bernhard R. Link <brlink@debian.org> and Jaria Alto
<jari.aalto@cante.net> for their valuable input and suggestions.


LICENSE
-------

blhc is licensed under GPL version 3 or later.

Copyright (C) 2012-2020  Simon Ruderich

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.

// vim: ft=asciidoc