2 # SPDX-License-Identifier: GPL-2.0
4 # headers_check.pl execute a number of trivial consistency checks
6 # Usage: headers_check.pl dir [files...]
7 # dir: dir to look for included files
8 # files: list of files to check
10 # The script reads the supplied files line by line and:
12 # 1) for each include statement it checks if the
13 # included file actually exists.
14 # Only include files located in asm* and linux* are checked.
15 # The rest are assumed to be system include files.
17 # 2) It is checked that prototypes does not use "extern"
19 # 3) Check for leaked CONFIG_ symbols
25 my ($dir, @files) = @ARGV;
32 foreach my $file (@files) {
35 open(my $fh, '<', $filename)
36 or die "$filename: $!\n";
38 while ($line = <$fh>) {
43 &check_declarations();
44 # Dropped for now. Too much noise &check_config();
52 if ($line =~ m/^\s*#\s*include\s+<((asm|linux).*)>/) {
55 $found = stat($dir . "/" . $inc);
57 printf STDERR "$filename:$lineno: included file '$inc' is not exported\n";
63 sub check_declarations
65 # soundcard.h is what it is
66 if ($line =~ m/^void seqbuf_dump\(void\);/) {
69 # drm headers are being C++ friendly
70 if ($line =~ m/^extern "C"/) {
73 if ($line =~ m/^(\s*extern|unsigned|char|short|int|long|void)\b/) {
74 printf STDERR "$filename:$lineno: " .
75 "userspace cannot reference function or " .
76 "variable defined in the kernel\n";
82 if ($line =~ m/[^a-zA-Z0-9_]+CONFIG_([a-zA-Z0-9_]+)[^a-zA-Z0-9_]/) {
83 printf STDERR "$filename:$lineno: leaks CONFIG_$1 to userspace where it is not valid\n";
90 if ($filename =~ /types.h|int-l64.h|int-ll64.h/o) {
95 } elsif ($linux_asm_types >= 1) {
98 if ($line =~ m/^\s*#\s*include\s+<asm\/types.h>/) {
100 printf STDERR "$filename:$lineno: " .
101 "include of <linux/types.h> is preferred over <asm/types.h>\n"
102 # Warn until headers are all fixed
108 my %import_stack = ();
109 sub check_include_typesh
115 my @file_paths = ($path, $dir . "/" . $path, dirname($filename) . "/" . $path);
116 for my $possible ( @file_paths ) {
117 if (not $import_stack{$possible} and open($fh, '<', $possible)) {
118 $import_path = $possible;
119 $import_stack{$import_path} = 1;
128 while ($line = <$fh>) {
129 if ($line =~ m/^\s*#\s*include\s+<linux\/types.h>/) {
133 if (my $included = ($line =~ /^\s*#\s*include\s+[<"](\S+)[>"]/)[0]) {
134 check_include_typesh($included);
138 delete $import_stack{$import_path};
143 if ($filename =~ /types.h|int-l64.h|int-ll64.h/o) {
148 } elsif ($linux_types >= 1) {
151 if ($line =~ m/^\s*#\s*include\s+<linux\/types.h>/) {
155 if (my $included = ($line =~ /^\s*#\s*include\s+[<"](\S+)[>"]/)[0]) {
156 check_include_typesh($included);
158 if ($line =~ m/__[us](8|16|32|64)\b/) {
159 printf STDERR "$filename:$lineno: " .
160 "found __[us]{8,16,32,64} type " .
161 "without #include <linux/types.h>\n";
163 # Warn until headers are all fixed