leaking_addresses: indent dependant options
[linux-2.6-block.git] / scripts / leaking_addresses.pl
CommitLineData
136fc5c4
TH
1#!/usr/bin/env perl
2#
3# (c) 2017 Tobin C. Harding <me@tobin.cc>
4# Licensed under the terms of the GNU GPL License version 2
5#
6# leaking_addresses.pl: Scan 64 bit kernel for potential leaking addresses.
7# - Scans dmesg output.
8# - Walks directory tree and parses each file (for each directory in @DIRS).
9#
136fc5c4
TH
10# Use --debug to output path before parsing, this is useful to find files that
11# cause the script to choke.
136fc5c4
TH
12
13use warnings;
14use strict;
15use POSIX;
16use File::Basename;
17use File::Spec;
18use Cwd 'abs_path';
19use Term::ANSIColor qw(:constants);
20use Getopt::Long qw(:config no_auto_abbrev);
62139c12 21use Config;
136fc5c4
TH
22
23my $P = $0;
24my $V = '0.01';
25
26# Directories to scan.
27my @DIRS = ('/proc', '/sys');
28
dd98c252
TH
29# Timer for parsing each file, in seconds.
30my $TIMEOUT = 10;
31
62139c12
TH
32# Script can only grep for kernel addresses on the following architectures. If
33# your architecture is not listed here and has a grep'able kernel address please
34# consider submitting a patch.
35my @SUPPORTED_ARCHITECTURES = ('x86_64', 'ppc64');
36
136fc5c4
TH
37# Command line options.
38my $help = 0;
39my $debug = 0;
d09bd8da
TH
40my $raw = 0;
41my $output_raw = ""; # Write raw results to file.
42my $input_raw = ""; # Read raw results from file instead of scanning.
43
44my $suppress_dmesg = 0; # Don't show dmesg in output.
45my $squash_by_path = 0; # Summary report grouped by absolute path.
46my $squash_by_filename = 0; # Summary report grouped by filename.
136fc5c4
TH
47
48# Do not parse these files (absolute path).
49my @skip_parse_files_abs = ('/proc/kmsg',
50 '/proc/kcore',
51 '/proc/fs/ext4/sdb1/mb_groups',
52 '/proc/1/fd/3',
1c1e3be0
TH
53 '/sys/firmware/devicetree',
54 '/proc/device-tree',
136fc5c4
TH
55 '/sys/kernel/debug/tracing/trace_pipe',
56 '/sys/kernel/security/apparmor/revision');
57
a284733e 58# Do not parse these files under any subdirectory.
136fc5c4
TH
59my @skip_parse_files_any = ('0',
60 '1',
61 '2',
62 'pagemap',
63 'events',
64 'access',
65 'registers',
66 'snapshot_raw',
67 'trace_pipe_raw',
68 'ptmx',
69 'trace_pipe');
70
71# Do not walk these directories (absolute path).
72my @skip_walk_dirs_abs = ();
73
74# Do not walk these directories under any subdirectory.
75my @skip_walk_dirs_any = ('self',
76 'thread-self',
77 'cwd',
78 'fd',
1c1e3be0 79 'usbmon',
136fc5c4
TH
80 'stderr',
81 'stdin',
82 'stdout');
83
84sub help
85{
86 my ($exitcode) = @_;
87
88 print << "EOM";
d09bd8da 89
136fc5c4
TH
90Usage: $P [OPTIONS]
91Version: $V
92
93Options:
94
15d60a35
TH
95 -o, --output-raw=<file> Save results for future processing.
96 -i, --input-raw=<file> Read results from file instead of scanning.
97 --raw Show raw results (default).
98 --suppress-dmesg Do not show dmesg results.
99 --squash-by-path Show one result per unique path.
100 --squash-by-filename Show one result per unique filename.
101 -d, --debug Display debugging output.
102 -h, --help, --version Display this help and exit.
d09bd8da 103
136fc5c4
TH
104Scans the running (64 bit) kernel for potential leaking addresses.
105
106EOM
107 exit($exitcode);
108}
109
110GetOptions(
136fc5c4
TH
111 'd|debug' => \$debug,
112 'h|help' => \$help,
d09bd8da
TH
113 'version' => \$help,
114 'o|output-raw=s' => \$output_raw,
115 'i|input-raw=s' => \$input_raw,
116 'suppress-dmesg' => \$suppress_dmesg,
117 'squash-by-path' => \$squash_by_path,
118 'squash-by-filename' => \$squash_by_filename,
119 'raw' => \$raw,
136fc5c4
TH
120) or help(1);
121
122help(0) if ($help);
123
d09bd8da
TH
124if ($input_raw) {
125 format_output($input_raw);
126 exit(0);
127}
128
129if (!$input_raw and ($squash_by_path or $squash_by_filename)) {
130 printf "\nSummary reporting only available with --input-raw=<file>\n";
131 printf "(First run scan with --output-raw=<file>.)\n";
132 exit(128);
133}
134
62139c12
TH
135if (!is_supported_architecture()) {
136 printf "\nScript does not support your architecture, sorry.\n";
137 printf "\nCurrently we support: \n\n";
138 foreach(@SUPPORTED_ARCHITECTURES) {
139 printf "\t%s\n", $_;
140 }
141
142 my $archname = $Config{archname};
143 printf "\n\$ perl -MConfig -e \'print \"\$Config{archname}\\n\"\'\n";
144 printf "%s\n", $archname;
145
146 exit(129);
147}
148
d09bd8da
TH
149if ($output_raw) {
150 open my $fh, '>', $output_raw or die "$0: $output_raw: $!\n";
151 select $fh;
152}
153
136fc5c4
TH
154parse_dmesg();
155walk(@DIRS);
156
157exit 0;
158
136fc5c4
TH
159sub dprint
160{
161 printf(STDERR @_) if $debug;
162}
163
62139c12
TH
164sub is_supported_architecture
165{
166 return (is_x86_64() or is_ppc64());
167}
168
169sub is_x86_64
170{
171 my $archname = $Config{archname};
172
173 if ($archname =~ m/x86_64/) {
174 return 1;
175 }
176 return 0;
177}
178
179sub is_ppc64
180{
181 my $archname = $Config{archname};
182
183 if ($archname =~ m/powerpc/ and $archname =~ m/64/) {
184 return 1;
185 }
186 return 0;
187}
188
136fc5c4
TH
189sub is_false_positive
190{
7e5758f7
TH
191 my ($match) = @_;
192
193 if ($match =~ '\b(0x)?(f|F){16}\b' or
194 $match =~ '\b(0x)?0{16}\b') {
195 return 1;
196 }
136fc5c4 197
6d23dd9b 198 if (is_x86_64()) {
62139c12
TH
199 # vsyscall memory region, we should probably check against a range here.
200 if ($match =~ '\bf{10}600000\b' or
201 $match =~ '\bf{10}601000\b') {
202 return 1;
203 }
7e5758f7 204 }
136fc5c4 205
7e5758f7 206 return 0;
136fc5c4
TH
207}
208
209# True if argument potentially contains a kernel address.
210sub may_leak_address
211{
7e5758f7 212 my ($line) = @_;
62139c12 213 my $address_re;
136fc5c4 214
7e5758f7
TH
215 # Signal masks.
216 if ($line =~ '^SigBlk:' or
a11949ec 217 $line =~ '^SigIgn:' or
7e5758f7
TH
218 $line =~ '^SigCgt:') {
219 return 0;
220 }
136fc5c4 221
7e5758f7
TH
222 if ($line =~ '\bKEY=[[:xdigit:]]{14} [[:xdigit:]]{16} [[:xdigit:]]{16}\b' or
223 $line =~ '\b[[:xdigit:]]{14} [[:xdigit:]]{16} [[:xdigit:]]{16}\b') {
136fc5c4 224 return 0;
7e5758f7 225 }
136fc5c4 226
62139c12
TH
227 # One of these is guaranteed to be true.
228 if (is_x86_64()) {
229 $address_re = '\b(0x)?ffff[[:xdigit:]]{12}\b';
230 } elsif (is_ppc64()) {
231 $address_re = '\b(0x)?[89abcdef]00[[:xdigit:]]{13}\b';
232 }
233
234 while (/($address_re)/g) {
7e5758f7
TH
235 if (!is_false_positive($1)) {
236 return 1;
237 }
238 }
136fc5c4 239
7e5758f7 240 return 0;
136fc5c4
TH
241}
242
243sub parse_dmesg
244{
245 open my $cmd, '-|', 'dmesg';
246 while (<$cmd>) {
247 if (may_leak_address($_)) {
248 print 'dmesg: ' . $_;
249 }
250 }
251 close $cmd;
252}
253
254# True if we should skip this path.
255sub skip
256{
257 my ($path, $paths_abs, $paths_any) = @_;
258
259 foreach (@$paths_abs) {
260 return 1 if (/^$path$/);
261 }
262
263 my($filename, $dirs, $suffix) = fileparse($path);
264 foreach (@$paths_any) {
265 return 1 if (/^$filename$/);
266 }
267
268 return 0;
269}
270
271sub skip_parse
272{
273 my ($path) = @_;
274 return skip($path, \@skip_parse_files_abs, \@skip_parse_files_any);
275}
276
dd98c252
TH
277sub timed_parse_file
278{
279 my ($file) = @_;
280
281 eval {
282 local $SIG{ALRM} = sub { die "alarm\n" }; # NB: \n required.
283 alarm $TIMEOUT;
284 parse_file($file);
285 alarm 0;
286 };
287
288 if ($@) {
289 die unless $@ eq "alarm\n"; # Propagate unexpected errors.
290 printf STDERR "timed out parsing: %s\n", $file;
291 }
292}
293
136fc5c4
TH
294sub parse_file
295{
296 my ($file) = @_;
297
298 if (! -R $file) {
299 return;
300 }
301
302 if (skip_parse($file)) {
303 dprint "skipping file: $file\n";
304 return;
305 }
306 dprint "parsing: $file\n";
307
308 open my $fh, "<", $file or return;
309 while ( <$fh> ) {
310 if (may_leak_address($_)) {
311 print $file . ': ' . $_;
312 }
313 }
314 close $fh;
315}
316
317
318# True if we should skip walking this directory.
319sub skip_walk
320{
321 my ($path) = @_;
322 return skip($path, \@skip_walk_dirs_abs, \@skip_walk_dirs_any)
323}
324
325# Recursively walk directory tree.
326sub walk
327{
328 my @dirs = @_;
136fc5c4
TH
329
330 while (my $pwd = shift @dirs) {
331 next if (skip_walk($pwd));
332 next if (!opendir(DIR, $pwd));
333 my @files = readdir(DIR);
334 closedir(DIR);
335
336 foreach my $file (@files) {
337 next if ($file eq '.' or $file eq '..');
338
339 my $path = "$pwd/$file";
340 next if (-l $path);
341
342 if (-d $path) {
343 push @dirs, $path;
344 } else {
dd98c252 345 timed_parse_file($path);
136fc5c4
TH
346 }
347 }
348 }
349}
d09bd8da
TH
350
351sub format_output
352{
353 my ($file) = @_;
354
355 # Default is to show raw results.
356 if ($raw or (!$squash_by_path and !$squash_by_filename)) {
357 dump_raw_output($file);
358 return;
359 }
360
361 my ($total, $dmesg, $paths, $files) = parse_raw_file($file);
362
363 printf "\nTotal number of results from scan (incl dmesg): %d\n", $total;
364
365 if (!$suppress_dmesg) {
366 print_dmesg($dmesg);
367 }
368
369 if ($squash_by_filename) {
370 squash_by($files, 'filename');
371 }
372
373 if ($squash_by_path) {
374 squash_by($paths, 'path');
375 }
376}
377
378sub dump_raw_output
379{
380 my ($file) = @_;
381
382 open (my $fh, '<', $file) or die "$0: $file: $!\n";
383 while (<$fh>) {
384 if ($suppress_dmesg) {
385 if ("dmesg:" eq substr($_, 0, 6)) {
386 next;
387 }
388 }
389 print $_;
390 }
391 close $fh;
392}
393
394sub parse_raw_file
395{
396 my ($file) = @_;
397
398 my $total = 0; # Total number of lines parsed.
399 my @dmesg; # dmesg output.
400 my %files; # Unique filenames containing leaks.
401 my %paths; # Unique paths containing leaks.
402
403 open (my $fh, '<', $file) or die "$0: $file: $!\n";
404 while (my $line = <$fh>) {
405 $total++;
406
407 if ("dmesg:" eq substr($line, 0, 6)) {
408 push @dmesg, $line;
409 next;
410 }
411
412 cache_path(\%paths, $line);
413 cache_filename(\%files, $line);
414 }
415
416 return $total, \@dmesg, \%paths, \%files;
417}
418
419sub print_dmesg
420{
421 my ($dmesg) = @_;
422
423 print "\ndmesg output:\n";
424
425 if (@$dmesg == 0) {
426 print "<no results>\n";
427 return;
428 }
429
430 foreach(@$dmesg) {
431 my $index = index($_, ': ');
432 $index += 2; # skid ': '
433 print substr($_, $index);
434 }
435}
436
437sub squash_by
438{
439 my ($ref, $desc) = @_;
440
441 print "\nResults squashed by $desc (excl dmesg). ";
442 print "Displaying [<number of results> <$desc>], <example result>\n";
443
444 if (keys %$ref == 0) {
445 print "<no results>\n";
446 return;
447 }
448
449 foreach(keys %$ref) {
450 my $lines = $ref->{$_};
451 my $length = @$lines;
452 printf "[%d %s] %s", $length, $_, @$lines[0];
453 }
454}
455
456sub cache_path
457{
458 my ($paths, $line) = @_;
459
460 my $index = index($line, ': ');
461 my $path = substr($line, 0, $index);
462
463 $index += 2; # skip ': '
464 add_to_cache($paths, $path, substr($line, $index));
465}
466
467sub cache_filename
468{
469 my ($files, $line) = @_;
470
471 my $index = index($line, ': ');
472 my $path = substr($line, 0, $index);
473 my $filename = basename($path);
474
475 $index += 2; # skip ': '
476 add_to_cache($files, $filename, substr($line, $index));
477}
478
479sub add_to_cache
480{
481 my ($cache, $key, $value) = @_;
482
483 if (!$cache->{$key}) {
484 $cache->{$key} = ();
485 }
486 push @{$cache->{$key}}, $value;
487}