Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 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 | # |
Tobin C. Harding | 1410fe4 | 2018-01-29 15:00:16 +1100 | [diff] [blame] | 6 | # leaking_addresses.pl: Scan the kernel for potential leaking addresses. |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 7 | # - Scans dmesg output. |
| 8 | # - Walks directory tree and parses each file (for each directory in @DIRS). |
| 9 | # |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 10 | # Use --debug to output path before parsing, this is useful to find files that |
| 11 | # cause the script to choke. |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 12 | |
Tobin C. Harding | 472c9e1 | 2018-02-27 15:02:57 +1100 | [diff] [blame] | 13 | # |
| 14 | # When the system is idle it is likely that most files under /proc/PID will be |
| 15 | # identical for various processes. Scanning _all_ the PIDs under /proc is |
| 16 | # unnecessary and implies that we are thoroughly scanning /proc. This is _not_ |
| 17 | # the case because there may be ways userspace can trigger creation of /proc |
| 18 | # files that leak addresses but were not present during a scan. For these two |
| 19 | # reasons we exclude all PID directories under /proc except '1/' |
| 20 | |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 21 | use warnings; |
| 22 | use strict; |
| 23 | use POSIX; |
| 24 | use File::Basename; |
| 25 | use File::Spec; |
| 26 | use Cwd 'abs_path'; |
| 27 | use Term::ANSIColor qw(:constants); |
| 28 | use Getopt::Long qw(:config no_auto_abbrev); |
Tobin C. Harding | 62139c1 | 2017-11-09 15:19:40 +1100 | [diff] [blame] | 29 | use Config; |
Tobin C. Harding | 87e3758 | 2017-12-07 12:33:21 +1100 | [diff] [blame] | 30 | use bigint qw/hex/; |
Tobin C. Harding | 2f042c9 | 2017-12-07 14:40:29 +1100 | [diff] [blame] | 31 | use feature 'state'; |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 32 | |
| 33 | my $P = $0; |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 34 | |
| 35 | # Directories to scan. |
| 36 | my @DIRS = ('/proc', '/sys'); |
| 37 | |
Tobin C. Harding | dd98c25 | 2017-11-09 15:37:06 +1100 | [diff] [blame] | 38 | # Timer for parsing each file, in seconds. |
| 39 | my $TIMEOUT = 10; |
| 40 | |
Tobin C. Harding | 1410fe4 | 2018-01-29 15:00:16 +1100 | [diff] [blame] | 41 | # Kernel addresses vary by architecture. We can only auto-detect the following |
| 42 | # architectures (using `uname -m`). (flag --32-bit overrides auto-detection.) |
| 43 | my @SUPPORTED_ARCHITECTURES = ('x86_64', 'ppc64', 'x86'); |
Tobin C. Harding | 62139c1 | 2017-11-09 15:19:40 +1100 | [diff] [blame] | 44 | |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 45 | # Command line options. |
| 46 | my $help = 0; |
| 47 | my $debug = 0; |
Tobin C. Harding | d09bd8d | 2017-11-09 15:07:15 +1100 | [diff] [blame] | 48 | my $raw = 0; |
| 49 | my $output_raw = ""; # Write raw results to file. |
| 50 | my $input_raw = ""; # Read raw results from file instead of scanning. |
Tobin C. Harding | d09bd8d | 2017-11-09 15:07:15 +1100 | [diff] [blame] | 51 | my $suppress_dmesg = 0; # Don't show dmesg in output. |
| 52 | my $squash_by_path = 0; # Summary report grouped by absolute path. |
| 53 | my $squash_by_filename = 0; # Summary report grouped by filename. |
Tobin C. Harding | f9d2a42 | 2017-12-07 13:53:41 +1100 | [diff] [blame] | 54 | my $kernel_config_file = ""; # Kernel configuration file. |
Tobin C. Harding | 1410fe4 | 2018-01-29 15:00:16 +1100 | [diff] [blame] | 55 | my $opt_32bit = 0; # Scan 32-bit kernel. |
| 56 | my $page_offset_32bit = 0; # Page offset for 32-bit kernel. |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 57 | |
Tobin C. Harding | b401f56 | 2018-02-19 11:03:37 +1100 | [diff] [blame] | 58 | # Skip these absolute paths. |
| 59 | my @skip_abs = ( |
| 60 | '/proc/kmsg', |
| 61 | '/proc/device-tree', |
Tobin C. Harding | 2ad7429 | 2018-02-27 14:14:24 +1100 | [diff] [blame] | 62 | '/proc/1/syscall', |
Tobin C. Harding | b401f56 | 2018-02-19 11:03:37 +1100 | [diff] [blame] | 63 | '/sys/firmware/devicetree', |
| 64 | '/sys/kernel/debug/tracing/trace_pipe', |
| 65 | '/sys/kernel/security/apparmor/revision'); |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 66 | |
Tobin C. Harding | b401f56 | 2018-02-19 11:03:37 +1100 | [diff] [blame] | 67 | # Skip these under any subdirectory. |
| 68 | my @skip_any = ( |
| 69 | 'pagemap', |
| 70 | 'events', |
| 71 | 'access', |
| 72 | 'registers', |
| 73 | 'snapshot_raw', |
| 74 | 'trace_pipe_raw', |
| 75 | 'ptmx', |
| 76 | 'trace_pipe', |
| 77 | 'fd', |
| 78 | 'usbmon'); |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 79 | |
| 80 | sub help |
| 81 | { |
| 82 | my ($exitcode) = @_; |
| 83 | |
| 84 | print << "EOM"; |
Tobin C. Harding | d09bd8d | 2017-11-09 15:07:15 +1100 | [diff] [blame] | 85 | |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 86 | Usage: $P [OPTIONS] |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 87 | |
| 88 | Options: |
| 89 | |
Tobin C. Harding | 15d60a3 | 2017-12-07 13:57:53 +1100 | [diff] [blame] | 90 | -o, --output-raw=<file> Save results for future processing. |
| 91 | -i, --input-raw=<file> Read results from file instead of scanning. |
| 92 | --raw Show raw results (default). |
| 93 | --suppress-dmesg Do not show dmesg results. |
| 94 | --squash-by-path Show one result per unique path. |
| 95 | --squash-by-filename Show one result per unique filename. |
Tobin C. Harding | f9d2a42 | 2017-12-07 13:53:41 +1100 | [diff] [blame] | 96 | --kernel-config-file=<file> Kernel configuration file (e.g /boot/config) |
Tobin C. Harding | 1410fe4 | 2018-01-29 15:00:16 +1100 | [diff] [blame] | 97 | --32-bit Scan 32-bit kernel. |
| 98 | --page-offset-32-bit=o Page offset (for 32-bit kernel 0xABCD1234). |
Tobin C. Harding | 15d60a3 | 2017-12-07 13:57:53 +1100 | [diff] [blame] | 99 | -d, --debug Display debugging output. |
| 100 | -h, --help, --version Display this help and exit. |
Tobin C. Harding | d09bd8d | 2017-11-09 15:07:15 +1100 | [diff] [blame] | 101 | |
Tobin C. Harding | 1410fe4 | 2018-01-29 15:00:16 +1100 | [diff] [blame] | 102 | Scans the running kernel for potential leaking addresses. |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 103 | |
| 104 | EOM |
| 105 | exit($exitcode); |
| 106 | } |
| 107 | |
| 108 | GetOptions( |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 109 | 'd|debug' => \$debug, |
| 110 | 'h|help' => \$help, |
Tobin C. Harding | d09bd8d | 2017-11-09 15:07:15 +1100 | [diff] [blame] | 111 | 'version' => \$help, |
| 112 | 'o|output-raw=s' => \$output_raw, |
| 113 | 'i|input-raw=s' => \$input_raw, |
| 114 | 'suppress-dmesg' => \$suppress_dmesg, |
| 115 | 'squash-by-path' => \$squash_by_path, |
| 116 | 'squash-by-filename' => \$squash_by_filename, |
| 117 | 'raw' => \$raw, |
Tobin C. Harding | f9d2a42 | 2017-12-07 13:53:41 +1100 | [diff] [blame] | 118 | 'kernel-config-file=s' => \$kernel_config_file, |
Tobin C. Harding | 1410fe4 | 2018-01-29 15:00:16 +1100 | [diff] [blame] | 119 | '32-bit' => \$opt_32bit, |
| 120 | 'page-offset-32-bit=o' => \$page_offset_32bit, |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 121 | ) or help(1); |
| 122 | |
| 123 | help(0) if ($help); |
| 124 | |
Tobin C. Harding | d09bd8d | 2017-11-09 15:07:15 +1100 | [diff] [blame] | 125 | if ($input_raw) { |
| 126 | format_output($input_raw); |
| 127 | exit(0); |
| 128 | } |
| 129 | |
| 130 | if (!$input_raw and ($squash_by_path or $squash_by_filename)) { |
| 131 | printf "\nSummary reporting only available with --input-raw=<file>\n"; |
| 132 | printf "(First run scan with --output-raw=<file>.)\n"; |
| 133 | exit(128); |
| 134 | } |
| 135 | |
Tobin C. Harding | 1410fe4 | 2018-01-29 15:00:16 +1100 | [diff] [blame] | 136 | if (!(is_supported_architecture() or $opt_32bit or $page_offset_32bit)) { |
Tobin C. Harding | 62139c1 | 2017-11-09 15:19:40 +1100 | [diff] [blame] | 137 | printf "\nScript does not support your architecture, sorry.\n"; |
| 138 | printf "\nCurrently we support: \n\n"; |
| 139 | foreach(@SUPPORTED_ARCHITECTURES) { |
| 140 | printf "\t%s\n", $_; |
| 141 | } |
Tobin C. Harding | 6efb745 | 2018-01-06 09:24:49 +1100 | [diff] [blame] | 142 | printf("\n"); |
Tobin C. Harding | 62139c1 | 2017-11-09 15:19:40 +1100 | [diff] [blame] | 143 | |
Tobin C. Harding | 1410fe4 | 2018-01-29 15:00:16 +1100 | [diff] [blame] | 144 | printf("If you are running a 32-bit architecture you may use:\n"); |
| 145 | printf("\n\t--32-bit or --page-offset-32-bit=<page offset>\n\n"); |
| 146 | |
Tobin C. Harding | 6efb745 | 2018-01-06 09:24:49 +1100 | [diff] [blame] | 147 | my $archname = `uname -m`; |
| 148 | printf("Machine hardware name (`uname -m`): %s\n", $archname); |
Tobin C. Harding | 62139c1 | 2017-11-09 15:19:40 +1100 | [diff] [blame] | 149 | |
| 150 | exit(129); |
| 151 | } |
| 152 | |
Tobin C. Harding | d09bd8d | 2017-11-09 15:07:15 +1100 | [diff] [blame] | 153 | if ($output_raw) { |
| 154 | open my $fh, '>', $output_raw or die "$0: $output_raw: $!\n"; |
| 155 | select $fh; |
| 156 | } |
| 157 | |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 158 | parse_dmesg(); |
| 159 | walk(@DIRS); |
| 160 | |
| 161 | exit 0; |
| 162 | |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 163 | sub dprint |
| 164 | { |
| 165 | printf(STDERR @_) if $debug; |
| 166 | } |
| 167 | |
Tobin C. Harding | 62139c1 | 2017-11-09 15:19:40 +1100 | [diff] [blame] | 168 | sub is_supported_architecture |
| 169 | { |
Tobin C. Harding | 1410fe4 | 2018-01-29 15:00:16 +1100 | [diff] [blame] | 170 | return (is_x86_64() or is_ppc64() or is_ix86_32()); |
| 171 | } |
| 172 | |
| 173 | sub is_32bit |
| 174 | { |
| 175 | # Allow --32-bit or --page-offset-32-bit to override |
| 176 | if ($opt_32bit or $page_offset_32bit) { |
| 177 | return 1; |
| 178 | } |
| 179 | |
| 180 | return is_ix86_32(); |
| 181 | } |
| 182 | |
| 183 | sub is_ix86_32 |
| 184 | { |
Tobin C. Harding | 5e4bac3 | 2018-02-19 13:23:44 +1100 | [diff] [blame] | 185 | state $arch = `uname -m`; |
Tobin C. Harding | 1410fe4 | 2018-01-29 15:00:16 +1100 | [diff] [blame] | 186 | |
| 187 | chomp $arch; |
| 188 | if ($arch =~ m/i[3456]86/) { |
| 189 | return 1; |
| 190 | } |
| 191 | return 0; |
Tobin C. Harding | 62139c1 | 2017-11-09 15:19:40 +1100 | [diff] [blame] | 192 | } |
| 193 | |
Tobin C. Harding | 5eb0da0 | 2018-01-29 14:33:49 +1100 | [diff] [blame] | 194 | sub is_arch |
| 195 | { |
| 196 | my ($desc) = @_; |
| 197 | my $arch = `uname -m`; |
| 198 | |
| 199 | chomp $arch; |
| 200 | if ($arch eq $desc) { |
| 201 | return 1; |
| 202 | } |
| 203 | return 0; |
| 204 | } |
| 205 | |
Tobin C. Harding | 62139c1 | 2017-11-09 15:19:40 +1100 | [diff] [blame] | 206 | sub is_x86_64 |
| 207 | { |
Tobin C. Harding | 5e4bac3 | 2018-02-19 13:23:44 +1100 | [diff] [blame] | 208 | state $is = is_arch('x86_64'); |
| 209 | return $is; |
Tobin C. Harding | 62139c1 | 2017-11-09 15:19:40 +1100 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | sub is_ppc64 |
| 213 | { |
Tobin C. Harding | 5e4bac3 | 2018-02-19 13:23:44 +1100 | [diff] [blame] | 214 | state $is = is_arch('ppc64'); |
| 215 | return $is; |
Tobin C. Harding | 62139c1 | 2017-11-09 15:19:40 +1100 | [diff] [blame] | 216 | } |
| 217 | |
Tobin C. Harding | f9d2a42 | 2017-12-07 13:53:41 +1100 | [diff] [blame] | 218 | # Gets config option value from kernel config file. |
| 219 | # Returns "" on error or if config option not found. |
| 220 | sub get_kernel_config_option |
| 221 | { |
| 222 | my ($option) = @_; |
| 223 | my $value = ""; |
| 224 | my $tmp_file = ""; |
| 225 | my @config_files; |
| 226 | |
| 227 | # Allow --kernel-config-file to override. |
| 228 | if ($kernel_config_file ne "") { |
| 229 | @config_files = ($kernel_config_file); |
| 230 | } elsif (-R "/proc/config.gz") { |
| 231 | my $tmp_file = "/tmp/tmpkconf"; |
| 232 | |
| 233 | if (system("gunzip < /proc/config.gz > $tmp_file")) { |
| 234 | dprint "$0: system(gunzip < /proc/config.gz) failed\n"; |
| 235 | return ""; |
| 236 | } else { |
| 237 | @config_files = ($tmp_file); |
| 238 | } |
| 239 | } else { |
| 240 | my $file = '/boot/config-' . `uname -r`; |
| 241 | chomp $file; |
| 242 | @config_files = ($file, '/boot/config'); |
| 243 | } |
| 244 | |
| 245 | foreach my $file (@config_files) { |
| 246 | dprint("parsing config file: %s\n", $file); |
| 247 | $value = option_from_file($option, $file); |
| 248 | if ($value ne "") { |
| 249 | last; |
| 250 | } |
| 251 | } |
| 252 | |
| 253 | if ($tmp_file ne "") { |
| 254 | system("rm -f $tmp_file"); |
| 255 | } |
| 256 | |
| 257 | return $value; |
| 258 | } |
| 259 | |
| 260 | # Parses $file and returns kernel configuration option value. |
| 261 | sub option_from_file |
| 262 | { |
| 263 | my ($option, $file) = @_; |
| 264 | my $str = ""; |
| 265 | my $val = ""; |
| 266 | |
| 267 | open(my $fh, "<", $file) or return ""; |
| 268 | while (my $line = <$fh> ) { |
| 269 | if ($line =~ /^$option/) { |
| 270 | ($str, $val) = split /=/, $line; |
| 271 | chomp $val; |
| 272 | last; |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | close $fh; |
| 277 | return $val; |
| 278 | } |
| 279 | |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 280 | sub is_false_positive |
| 281 | { |
Tobin C. Harding | 7e5758f | 2017-11-08 11:01:59 +1100 | [diff] [blame] | 282 | my ($match) = @_; |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 283 | |
Tobin C. Harding | 1410fe4 | 2018-01-29 15:00:16 +1100 | [diff] [blame] | 284 | if (is_32bit()) { |
| 285 | return is_false_positive_32bit($match); |
| 286 | } |
| 287 | |
| 288 | # 64 bit false positives. |
| 289 | |
Tobin C. Harding | 7e5758f | 2017-11-08 11:01:59 +1100 | [diff] [blame] | 290 | if ($match =~ '\b(0x)?(f|F){16}\b' or |
| 291 | $match =~ '\b(0x)?0{16}\b') { |
| 292 | return 1; |
| 293 | } |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 294 | |
Tobin C. Harding | 87e3758 | 2017-12-07 12:33:21 +1100 | [diff] [blame] | 295 | if (is_x86_64() and is_in_vsyscall_memory_region($match)) { |
| 296 | return 1; |
Tobin C. Harding | 7e5758f | 2017-11-08 11:01:59 +1100 | [diff] [blame] | 297 | } |
| 298 | |
| 299 | return 0; |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 300 | } |
| 301 | |
Tobin C. Harding | 1410fe4 | 2018-01-29 15:00:16 +1100 | [diff] [blame] | 302 | sub is_false_positive_32bit |
| 303 | { |
| 304 | my ($match) = @_; |
| 305 | state $page_offset = get_page_offset(); |
| 306 | |
| 307 | if ($match =~ '\b(0x)?(f|F){8}\b') { |
| 308 | return 1; |
| 309 | } |
| 310 | |
| 311 | if (hex($match) < $page_offset) { |
| 312 | return 1; |
| 313 | } |
| 314 | |
| 315 | return 0; |
| 316 | } |
| 317 | |
| 318 | # returns integer value |
| 319 | sub get_page_offset |
| 320 | { |
| 321 | my $page_offset; |
| 322 | my $default_offset = 0xc0000000; |
| 323 | |
| 324 | # Allow --page-offset-32bit to override. |
| 325 | if ($page_offset_32bit != 0) { |
| 326 | return $page_offset_32bit; |
| 327 | } |
| 328 | |
| 329 | $page_offset = get_kernel_config_option('CONFIG_PAGE_OFFSET'); |
| 330 | if (!$page_offset) { |
| 331 | return $default_offset; |
| 332 | } |
| 333 | return $page_offset; |
| 334 | } |
| 335 | |
Tobin C. Harding | 87e3758 | 2017-12-07 12:33:21 +1100 | [diff] [blame] | 336 | sub is_in_vsyscall_memory_region |
| 337 | { |
| 338 | my ($match) = @_; |
| 339 | |
| 340 | my $hex = hex($match); |
| 341 | my $region_min = hex("0xffffffffff600000"); |
| 342 | my $region_max = hex("0xffffffffff601000"); |
| 343 | |
| 344 | return ($hex >= $region_min and $hex <= $region_max); |
| 345 | } |
| 346 | |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 347 | # True if argument potentially contains a kernel address. |
| 348 | sub may_leak_address |
| 349 | { |
Tobin C. Harding | 7e5758f | 2017-11-08 11:01:59 +1100 | [diff] [blame] | 350 | my ($line) = @_; |
Tobin C. Harding | 62139c1 | 2017-11-09 15:19:40 +1100 | [diff] [blame] | 351 | my $address_re; |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 352 | |
Tobin C. Harding | 7e5758f | 2017-11-08 11:01:59 +1100 | [diff] [blame] | 353 | # Signal masks. |
| 354 | if ($line =~ '^SigBlk:' or |
Tobin C. Harding | a11949e | 2017-11-14 09:25:11 +1100 | [diff] [blame] | 355 | $line =~ '^SigIgn:' or |
Tobin C. Harding | 7e5758f | 2017-11-08 11:01:59 +1100 | [diff] [blame] | 356 | $line =~ '^SigCgt:') { |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 357 | return 0; |
Tobin C. Harding | 7e5758f | 2017-11-08 11:01:59 +1100 | [diff] [blame] | 358 | } |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 359 | |
Tobin C. Harding | 7e5758f | 2017-11-08 11:01:59 +1100 | [diff] [blame] | 360 | if ($line =~ '\bKEY=[[:xdigit:]]{14} [[:xdigit:]]{16} [[:xdigit:]]{16}\b' or |
| 361 | $line =~ '\b[[:xdigit:]]{14} [[:xdigit:]]{16} [[:xdigit:]]{16}\b') { |
| 362 | return 0; |
| 363 | } |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 364 | |
Tobin C. Harding | 2f042c9 | 2017-12-07 14:40:29 +1100 | [diff] [blame] | 365 | $address_re = get_address_re(); |
Tobin C. Harding | 2306a67 | 2018-03-02 08:42:59 +1100 | [diff] [blame] | 366 | while ($line =~ /($address_re)/g) { |
Tobin C. Harding | 7e5758f | 2017-11-08 11:01:59 +1100 | [diff] [blame] | 367 | if (!is_false_positive($1)) { |
| 368 | return 1; |
| 369 | } |
| 370 | } |
| 371 | |
| 372 | return 0; |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 373 | } |
| 374 | |
Tobin C. Harding | 2f042c9 | 2017-12-07 14:40:29 +1100 | [diff] [blame] | 375 | sub get_address_re |
| 376 | { |
Tobin C. Harding | 1410fe4 | 2018-01-29 15:00:16 +1100 | [diff] [blame] | 377 | if (is_ppc64()) { |
Tobin C. Harding | 2f042c9 | 2017-12-07 14:40:29 +1100 | [diff] [blame] | 378 | return '\b(0x)?[89abcdef]00[[:xdigit:]]{13}\b'; |
Tobin C. Harding | 1410fe4 | 2018-01-29 15:00:16 +1100 | [diff] [blame] | 379 | } elsif (is_32bit()) { |
| 380 | return '\b(0x)?[[:xdigit:]]{8}\b'; |
Tobin C. Harding | 2f042c9 | 2017-12-07 14:40:29 +1100 | [diff] [blame] | 381 | } |
Tobin C. Harding | 1410fe4 | 2018-01-29 15:00:16 +1100 | [diff] [blame] | 382 | |
| 383 | return get_x86_64_re(); |
Tobin C. Harding | 2f042c9 | 2017-12-07 14:40:29 +1100 | [diff] [blame] | 384 | } |
| 385 | |
| 386 | sub get_x86_64_re |
| 387 | { |
| 388 | # We handle page table levels but only if explicitly configured using |
| 389 | # CONFIG_PGTABLE_LEVELS. If config file parsing fails or config option |
| 390 | # is not found we default to using address regular expression suitable |
| 391 | # for 4 page table levels. |
| 392 | state $ptl = get_kernel_config_option('CONFIG_PGTABLE_LEVELS'); |
| 393 | |
| 394 | if ($ptl == 5) { |
| 395 | return '\b(0x)?ff[[:xdigit:]]{14}\b'; |
| 396 | } |
| 397 | return '\b(0x)?ffff[[:xdigit:]]{12}\b'; |
| 398 | } |
| 399 | |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 400 | sub parse_dmesg |
| 401 | { |
| 402 | open my $cmd, '-|', 'dmesg'; |
| 403 | while (<$cmd>) { |
| 404 | if (may_leak_address($_)) { |
| 405 | print 'dmesg: ' . $_; |
| 406 | } |
| 407 | } |
| 408 | close $cmd; |
| 409 | } |
| 410 | |
| 411 | # True if we should skip this path. |
| 412 | sub skip |
| 413 | { |
Tobin C. Harding | b401f56 | 2018-02-19 11:03:37 +1100 | [diff] [blame] | 414 | my ($path) = @_; |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 415 | |
Tobin C. Harding | b401f56 | 2018-02-19 11:03:37 +1100 | [diff] [blame] | 416 | foreach (@skip_abs) { |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 417 | return 1 if (/^$path$/); |
| 418 | } |
| 419 | |
| 420 | my($filename, $dirs, $suffix) = fileparse($path); |
Tobin C. Harding | b401f56 | 2018-02-19 11:03:37 +1100 | [diff] [blame] | 421 | foreach (@skip_any) { |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 422 | return 1 if (/^$filename$/); |
| 423 | } |
| 424 | |
| 425 | return 0; |
| 426 | } |
| 427 | |
Tobin C. Harding | dd98c25 | 2017-11-09 15:37:06 +1100 | [diff] [blame] | 428 | sub timed_parse_file |
| 429 | { |
| 430 | my ($file) = @_; |
| 431 | |
| 432 | eval { |
| 433 | local $SIG{ALRM} = sub { die "alarm\n" }; # NB: \n required. |
| 434 | alarm $TIMEOUT; |
| 435 | parse_file($file); |
| 436 | alarm 0; |
| 437 | }; |
| 438 | |
| 439 | if ($@) { |
| 440 | die unless $@ eq "alarm\n"; # Propagate unexpected errors. |
| 441 | printf STDERR "timed out parsing: %s\n", $file; |
| 442 | } |
| 443 | } |
| 444 | |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 445 | sub parse_file |
| 446 | { |
| 447 | my ($file) = @_; |
| 448 | |
| 449 | if (! -R $file) { |
| 450 | return; |
| 451 | } |
| 452 | |
Tobin C. Harding | e2858ca | 2018-02-19 10:22:15 +1100 | [diff] [blame] | 453 | if (! -T $file) { |
| 454 | return; |
| 455 | } |
| 456 | |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 457 | open my $fh, "<", $file or return; |
| 458 | while ( <$fh> ) { |
| 459 | if (may_leak_address($_)) { |
| 460 | print $file . ': ' . $_; |
| 461 | } |
| 462 | } |
| 463 | close $fh; |
| 464 | } |
| 465 | |
Tobin C. Harding | c73dff5 | 2018-03-02 08:49:55 +1100 | [diff] [blame] | 466 | # Checks if the actual path name is leaking a kernel address. |
| 467 | sub check_path_for_leaks |
| 468 | { |
| 469 | my ($path) = @_; |
| 470 | |
| 471 | if (may_leak_address($path)) { |
| 472 | printf("Path name may contain address: $path\n"); |
| 473 | } |
| 474 | } |
| 475 | |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 476 | # Recursively walk directory tree. |
| 477 | sub walk |
| 478 | { |
| 479 | my @dirs = @_; |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 480 | |
| 481 | while (my $pwd = shift @dirs) { |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 482 | next if (!opendir(DIR, $pwd)); |
| 483 | my @files = readdir(DIR); |
| 484 | closedir(DIR); |
| 485 | |
| 486 | foreach my $file (@files) { |
| 487 | next if ($file eq '.' or $file eq '..'); |
| 488 | |
| 489 | my $path = "$pwd/$file"; |
| 490 | next if (-l $path); |
| 491 | |
Tobin C. Harding | 472c9e1 | 2018-02-27 15:02:57 +1100 | [diff] [blame] | 492 | # skip /proc/PID except /proc/1 |
| 493 | next if (($path =~ /^\/proc\/[0-9]+$/) && |
| 494 | ($path !~ /^\/proc\/1$/)); |
| 495 | |
Tobin C. Harding | b401f56 | 2018-02-19 11:03:37 +1100 | [diff] [blame] | 496 | next if (skip($path)); |
| 497 | |
Tobin C. Harding | c73dff5 | 2018-03-02 08:49:55 +1100 | [diff] [blame] | 498 | check_path_for_leaks($path); |
| 499 | |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 500 | if (-d $path) { |
| 501 | push @dirs, $path; |
Tobin C. Harding | b401f56 | 2018-02-19 11:03:37 +1100 | [diff] [blame] | 502 | next; |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 503 | } |
Tobin C. Harding | b401f56 | 2018-02-19 11:03:37 +1100 | [diff] [blame] | 504 | |
| 505 | dprint "parsing: $path\n"; |
| 506 | timed_parse_file($path); |
Tobin C. Harding | 136fc5c | 2017-11-06 16:19:27 +1100 | [diff] [blame] | 507 | } |
| 508 | } |
| 509 | } |
Tobin C. Harding | d09bd8d | 2017-11-09 15:07:15 +1100 | [diff] [blame] | 510 | |
| 511 | sub format_output |
| 512 | { |
| 513 | my ($file) = @_; |
| 514 | |
| 515 | # Default is to show raw results. |
| 516 | if ($raw or (!$squash_by_path and !$squash_by_filename)) { |
| 517 | dump_raw_output($file); |
| 518 | return; |
| 519 | } |
| 520 | |
| 521 | my ($total, $dmesg, $paths, $files) = parse_raw_file($file); |
| 522 | |
| 523 | printf "\nTotal number of results from scan (incl dmesg): %d\n", $total; |
| 524 | |
| 525 | if (!$suppress_dmesg) { |
| 526 | print_dmesg($dmesg); |
| 527 | } |
| 528 | |
| 529 | if ($squash_by_filename) { |
| 530 | squash_by($files, 'filename'); |
| 531 | } |
| 532 | |
| 533 | if ($squash_by_path) { |
| 534 | squash_by($paths, 'path'); |
| 535 | } |
| 536 | } |
| 537 | |
| 538 | sub dump_raw_output |
| 539 | { |
| 540 | my ($file) = @_; |
| 541 | |
| 542 | open (my $fh, '<', $file) or die "$0: $file: $!\n"; |
| 543 | while (<$fh>) { |
| 544 | if ($suppress_dmesg) { |
| 545 | if ("dmesg:" eq substr($_, 0, 6)) { |
| 546 | next; |
| 547 | } |
| 548 | } |
| 549 | print $_; |
| 550 | } |
| 551 | close $fh; |
| 552 | } |
| 553 | |
| 554 | sub parse_raw_file |
| 555 | { |
| 556 | my ($file) = @_; |
| 557 | |
| 558 | my $total = 0; # Total number of lines parsed. |
| 559 | my @dmesg; # dmesg output. |
| 560 | my %files; # Unique filenames containing leaks. |
| 561 | my %paths; # Unique paths containing leaks. |
| 562 | |
| 563 | open (my $fh, '<', $file) or die "$0: $file: $!\n"; |
| 564 | while (my $line = <$fh>) { |
| 565 | $total++; |
| 566 | |
| 567 | if ("dmesg:" eq substr($line, 0, 6)) { |
| 568 | push @dmesg, $line; |
| 569 | next; |
| 570 | } |
| 571 | |
| 572 | cache_path(\%paths, $line); |
| 573 | cache_filename(\%files, $line); |
| 574 | } |
| 575 | |
| 576 | return $total, \@dmesg, \%paths, \%files; |
| 577 | } |
| 578 | |
| 579 | sub print_dmesg |
| 580 | { |
| 581 | my ($dmesg) = @_; |
| 582 | |
| 583 | print "\ndmesg output:\n"; |
| 584 | |
| 585 | if (@$dmesg == 0) { |
| 586 | print "<no results>\n"; |
| 587 | return; |
| 588 | } |
| 589 | |
| 590 | foreach(@$dmesg) { |
| 591 | my $index = index($_, ': '); |
| 592 | $index += 2; # skid ': ' |
| 593 | print substr($_, $index); |
| 594 | } |
| 595 | } |
| 596 | |
| 597 | sub squash_by |
| 598 | { |
| 599 | my ($ref, $desc) = @_; |
| 600 | |
| 601 | print "\nResults squashed by $desc (excl dmesg). "; |
| 602 | print "Displaying [<number of results> <$desc>], <example result>\n"; |
| 603 | |
| 604 | if (keys %$ref == 0) { |
| 605 | print "<no results>\n"; |
| 606 | return; |
| 607 | } |
| 608 | |
| 609 | foreach(keys %$ref) { |
| 610 | my $lines = $ref->{$_}; |
| 611 | my $length = @$lines; |
| 612 | printf "[%d %s] %s", $length, $_, @$lines[0]; |
| 613 | } |
| 614 | } |
| 615 | |
| 616 | sub cache_path |
| 617 | { |
| 618 | my ($paths, $line) = @_; |
| 619 | |
| 620 | my $index = index($line, ': '); |
| 621 | my $path = substr($line, 0, $index); |
| 622 | |
| 623 | $index += 2; # skip ': ' |
| 624 | add_to_cache($paths, $path, substr($line, $index)); |
| 625 | } |
| 626 | |
| 627 | sub cache_filename |
| 628 | { |
| 629 | my ($files, $line) = @_; |
| 630 | |
| 631 | my $index = index($line, ': '); |
| 632 | my $path = substr($line, 0, $index); |
| 633 | my $filename = basename($path); |
| 634 | |
| 635 | $index += 2; # skip ': ' |
| 636 | add_to_cache($files, $filename, substr($line, $index)); |
| 637 | } |
| 638 | |
| 639 | sub add_to_cache |
| 640 | { |
| 641 | my ($cache, $key, $value) = @_; |
| 642 | |
| 643 | if (!$cache->{$key}) { |
| 644 | $cache->{$key} = (); |
| 645 | } |
| 646 | push @{$cache->{$key}}, $value; |
| 647 | } |