xref: /linux/usr/include/headers_check.pl (revision c3a9d74ee413bdb3007b39e62418f9757a0642e6)
1#!/usr/bin/env perl
2# SPDX-License-Identifier: GPL-2.0
3#
4# headers_check.pl execute a number of trivial consistency checks
5#
6# Usage: headers_check.pl dir [files...]
7# dir:   dir to look for included files
8# files: list of files to check
9#
10# The script reads the supplied files line by line and:
11#
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.
16#
17# 2) It is checked that prototypes does not use "extern"
18#
19# 3) Check for leaked CONFIG_ symbols
20
21use warnings;
22use strict;
23use File::Basename;
24
25my ($dir, @files) = @ARGV;
26
27my $ret = 0;
28my $line;
29my $lineno = 0;
30my $filename;
31
32foreach my $file (@files) {
33	$filename = $file;
34
35	open(my $fh, '<', $filename)
36		or die "$filename: $!\n";
37	$lineno = 0;
38	while ($line = <$fh>) {
39		$lineno++;
40		&check_include();
41		&check_asm_types();
42		&check_sizetypes();
43		&check_declarations();
44		# Dropped for now. Too much noise &check_config();
45	}
46	close $fh;
47}
48exit $ret;
49
50sub check_include
51{
52	if ($line =~ m/^\s*#\s*include\s+<((asm|linux).*)>/) {
53		my $inc = $1;
54		my $found;
55		$found = stat($dir . "/" . $inc);
56		if (!$found) {
57			printf STDERR "$filename:$lineno: included file '$inc' is not exported\n";
58			$ret = 1;
59		}
60	}
61}
62
63sub check_declarations
64{
65	# soundcard.h is what it is
66	if ($line =~ m/^void seqbuf_dump\(void\);/) {
67		return;
68	}
69	# drm headers are being C++ friendly
70	if ($line =~ m/^extern "C"/) {
71		return;
72	}
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";
77	}
78}
79
80sub check_config
81{
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";
84	}
85}
86
87my $linux_asm_types;
88sub check_asm_types
89{
90	if ($filename =~ /types.h|int-l64.h|int-ll64.h/o) {
91		return;
92	}
93	if ($lineno == 1) {
94		$linux_asm_types = 0;
95	} elsif ($linux_asm_types >= 1) {
96		return;
97	}
98	if ($line =~ m/^\s*#\s*include\s+<asm\/types.h>/) {
99		$linux_asm_types = 1;
100		printf STDERR "$filename:$lineno: " .
101		"include of <linux/types.h> is preferred over <asm/types.h>\n";
102		$ret = 1;
103	}
104}
105
106my $linux_types;
107my %import_stack = ();
108sub check_include_typesh
109{
110	my $path = $_[0];
111	my $import_path;
112
113	my $fh;
114	my @file_paths = ($path, $dir . "/" .  $path, dirname($filename) . "/" . $path);
115	for my $possible ( @file_paths ) {
116	    if (not $import_stack{$possible} and open($fh, '<', $possible)) {
117		$import_path = $possible;
118		$import_stack{$import_path} = 1;
119		last;
120	    }
121	}
122	if (eof $fh) {
123	    return;
124	}
125
126	my $line;
127	while ($line = <$fh>) {
128		if ($line =~ m/^\s*#\s*include\s+<linux\/types.h>/) {
129			$linux_types = 1;
130			last;
131		}
132		if (my $included = ($line =~ /^\s*#\s*include\s+[<"](\S+)[>"]/)[0]) {
133			check_include_typesh($included);
134		}
135	}
136	close $fh;
137	delete $import_stack{$import_path};
138}
139
140sub check_sizetypes
141{
142	if ($filename =~ /types.h|int-l64.h|int-ll64.h/o) {
143		return;
144	}
145	if ($lineno == 1) {
146		$linux_types = 0;
147	} elsif ($linux_types >= 1) {
148		return;
149	}
150	if ($line =~ m/^\s*#\s*include\s+<linux\/types.h>/) {
151		$linux_types = 1;
152		return;
153	}
154	if (my $included = ($line =~ /^\s*#\s*include\s+[<"](\S+)[>"]/)[0]) {
155		check_include_typesh($included);
156	}
157	if ($line =~ m/__[us](8|16|32|64)\b/) {
158		printf STDERR "$filename:$lineno: " .
159		              "found __[us]{8,16,32,64} type " .
160		              "without #include <linux/types.h>\n";
161		$linux_types = 2;
162		$ret = 1;
163	}
164}
165