浏览代码

leaking_addresses: check if file name contains address

Sometimes files may be created by using output from printk.  As the scan
traverses the directory tree we should parse each path name and check if
it is leaking an address.

Add check for leaking address on each path name.

Suggested-by: Tycho Andersen <tycho@tycho.ws>
Acked-by: Tycho Andersen <tycho@tycho.ws>
Signed-off-by: Tobin C. Harding <me@tobin.cc>
Tobin C. Harding 7 年之前
父节点
当前提交
c73dff595f
共有 1 个文件被更改,包括 12 次插入0 次删除
  1. 12 0
      scripts/leaking_addresses.pl

+ 12 - 0
scripts/leaking_addresses.pl

@@ -463,6 +463,16 @@ sub parse_file
 	close $fh;
 	close $fh;
 }
 }
 
 
+# Checks if the actual path name is leaking a kernel address.
+sub check_path_for_leaks
+{
+	my ($path) = @_;
+
+	if (may_leak_address($path)) {
+		printf("Path name may contain address: $path\n");
+	}
+}
+
 # Recursively walk directory tree.
 # Recursively walk directory tree.
 sub walk
 sub walk
 {
 {
@@ -485,6 +495,8 @@ sub walk
 
 
 			next if (skip($path));
 			next if (skip($path));
 
 
+			check_path_for_leaks($path);
+
 			if (-d $path) {
 			if (-d $path) {
 				push @dirs, $path;
 				push @dirs, $path;
 				next;
 				next;