xref: /linux-6.15/scripts/checkpatch.pl (revision fb2d2c1b)
10a920b5bSAndy Whitcroft#!/usr/bin/perl -w
2dbf004d7SDave Jones# (c) 2001, Dave Jones. (the file handling bit)
300df344fSAndy Whitcroft# (c) 2005, Joel Schopp <[email protected]> (the ugly bit)
42a5a2c25SAndy Whitcroft# (c) 2007,2008, Andy Whitcroft <[email protected]> (new conditions, test suite)
5131edb34SAndy Whitcroft# (c) 2008,2009, Andy Whitcroft <[email protected]>
60a920b5bSAndy Whitcroft# Licensed under the terms of the GNU GPL License version 2
70a920b5bSAndy Whitcroft
80a920b5bSAndy Whitcroftuse strict;
90a920b5bSAndy Whitcroft
100a920b5bSAndy Whitcroftmy $P = $0;
1100df344fSAndy Whitcroft$P =~ s@.*/@@g;
120a920b5bSAndy Whitcroft
135e8d8f6fSAndy Whitcroftmy $V = '0.30';
140a920b5bSAndy Whitcroft
150a920b5bSAndy Whitcroftuse Getopt::Long qw(:config no_auto_abbrev);
160a920b5bSAndy Whitcroft
170a920b5bSAndy Whitcroftmy $quiet = 0;
180a920b5bSAndy Whitcroftmy $tree = 1;
190a920b5bSAndy Whitcroftmy $chk_signoff = 1;
200a920b5bSAndy Whitcroftmy $chk_patch = 1;
21773647a0SAndy Whitcroftmy $tst_only;
226c72ffaaSAndy Whitcroftmy $emacs = 0;
238905a67cSAndy Whitcroftmy $terse = 0;
246c72ffaaSAndy Whitcroftmy $file = 0;
256c72ffaaSAndy Whitcroftmy $check = 0;
268905a67cSAndy Whitcroftmy $summary = 1;
278905a67cSAndy Whitcroftmy $mailback = 0;
2813214adfSAndy Whitcroftmy $summary_file = 0;
296c72ffaaSAndy Whitcroftmy $root;
30c2fdda0dSAndy Whitcroftmy %debug;
3177f5b10aSHannes Edermy $help = 0;
3277f5b10aSHannes Eder
3377f5b10aSHannes Edersub help {
3477f5b10aSHannes Eder	my ($exitcode) = @_;
3577f5b10aSHannes Eder
3677f5b10aSHannes Eder	print << "EOM";
3777f5b10aSHannes EderUsage: $P [OPTION]... [FILE]...
3877f5b10aSHannes EderVersion: $V
3977f5b10aSHannes Eder
4077f5b10aSHannes EderOptions:
4177f5b10aSHannes Eder  -q, --quiet                quiet
4277f5b10aSHannes Eder  --no-tree                  run without a kernel tree
4377f5b10aSHannes Eder  --no-signoff               do not check for 'Signed-off-by' line
4477f5b10aSHannes Eder  --patch                    treat FILE as patchfile (default)
4577f5b10aSHannes Eder  --emacs                    emacs compile window format
4677f5b10aSHannes Eder  --terse                    one line per report
4777f5b10aSHannes Eder  -f, --file                 treat FILE as regular source file
4877f5b10aSHannes Eder  --subjective, --strict     enable more subjective tests
4977f5b10aSHannes Eder  --root=PATH                PATH to the kernel tree root
5077f5b10aSHannes Eder  --no-summary               suppress the per-file summary
5177f5b10aSHannes Eder  --mailback                 only produce a report in case of warnings/errors
5277f5b10aSHannes Eder  --summary-file             include the filename in summary
5377f5b10aSHannes Eder  --debug KEY=[0|1]          turn on/off debugging of KEY, where KEY is one of
5477f5b10aSHannes Eder                             'values', 'possible', 'type', and 'attr' (default
5577f5b10aSHannes Eder                             is all off)
5677f5b10aSHannes Eder  --test-only=WORD           report only warnings/errors containing WORD
5777f5b10aSHannes Eder                             literally
5877f5b10aSHannes Eder  -h, --help, --version      display this help and exit
5977f5b10aSHannes Eder
6077f5b10aSHannes EderWhen FILE is - read standard input.
6177f5b10aSHannes EderEOM
6277f5b10aSHannes Eder
6377f5b10aSHannes Eder	exit($exitcode);
6477f5b10aSHannes Eder}
6577f5b10aSHannes Eder
660a920b5bSAndy WhitcroftGetOptions(
676c72ffaaSAndy Whitcroft	'q|quiet+'	=> \$quiet,
680a920b5bSAndy Whitcroft	'tree!'		=> \$tree,
690a920b5bSAndy Whitcroft	'signoff!'	=> \$chk_signoff,
700a920b5bSAndy Whitcroft	'patch!'	=> \$chk_patch,
716c72ffaaSAndy Whitcroft	'emacs!'	=> \$emacs,
728905a67cSAndy Whitcroft	'terse!'	=> \$terse,
7377f5b10aSHannes Eder	'f|file!'	=> \$file,
746c72ffaaSAndy Whitcroft	'subjective!'	=> \$check,
756c72ffaaSAndy Whitcroft	'strict!'	=> \$check,
766c72ffaaSAndy Whitcroft	'root=s'	=> \$root,
778905a67cSAndy Whitcroft	'summary!'	=> \$summary,
788905a67cSAndy Whitcroft	'mailback!'	=> \$mailback,
7913214adfSAndy Whitcroft	'summary-file!'	=> \$summary_file,
8013214adfSAndy Whitcroft
81c2fdda0dSAndy Whitcroft	'debug=s'	=> \%debug,
82773647a0SAndy Whitcroft	'test-only=s'	=> \$tst_only,
8377f5b10aSHannes Eder	'h|help'	=> \$help,
8477f5b10aSHannes Eder	'version'	=> \$help
8577f5b10aSHannes Eder) or help(1);
8677f5b10aSHannes Eder
8777f5b10aSHannes Ederhelp(0) if ($help);
880a920b5bSAndy Whitcroft
890a920b5bSAndy Whitcroftmy $exit = 0;
900a920b5bSAndy Whitcroft
910a920b5bSAndy Whitcroftif ($#ARGV < 0) {
9277f5b10aSHannes Eder	print "$P: no input files\n";
930a920b5bSAndy Whitcroft	exit(1);
940a920b5bSAndy Whitcroft}
950a920b5bSAndy Whitcroft
96c2fdda0dSAndy Whitcroftmy $dbg_values = 0;
97c2fdda0dSAndy Whitcroftmy $dbg_possible = 0;
987429c690SAndy Whitcroftmy $dbg_type = 0;
99a1ef277eSAndy Whitcroftmy $dbg_attr = 0;
100c2fdda0dSAndy Whitcroftfor my $key (keys %debug) {
10121caa13cSAndy Whitcroft	## no critic
10221caa13cSAndy Whitcroft	eval "\${dbg_$key} = '$debug{$key}';";
10321caa13cSAndy Whitcroft	die "$@" if ($@);
104c2fdda0dSAndy Whitcroft}
105c2fdda0dSAndy Whitcroft
106d2c0a235SAndy Whitcroftmy $rpt_cleaners = 0;
107d2c0a235SAndy Whitcroft
1088905a67cSAndy Whitcroftif ($terse) {
1098905a67cSAndy Whitcroft	$emacs = 1;
1108905a67cSAndy Whitcroft	$quiet++;
1118905a67cSAndy Whitcroft}
1128905a67cSAndy Whitcroft
1136c72ffaaSAndy Whitcroftif ($tree) {
1146c72ffaaSAndy Whitcroft	if (defined $root) {
1156c72ffaaSAndy Whitcroft		if (!top_of_kernel_tree($root)) {
1166c72ffaaSAndy Whitcroft			die "$P: $root: --root does not point at a valid tree\n";
1176c72ffaaSAndy Whitcroft		}
1186c72ffaaSAndy Whitcroft	} else {
1196c72ffaaSAndy Whitcroft		if (top_of_kernel_tree('.')) {
1206c72ffaaSAndy Whitcroft			$root = '.';
1216c72ffaaSAndy Whitcroft		} elsif ($0 =~ m@(.*)/scripts/[^/]*$@ &&
1226c72ffaaSAndy Whitcroft						top_of_kernel_tree($1)) {
1236c72ffaaSAndy Whitcroft			$root = $1;
1246c72ffaaSAndy Whitcroft		}
1256c72ffaaSAndy Whitcroft	}
1266c72ffaaSAndy Whitcroft
1276c72ffaaSAndy Whitcroft	if (!defined $root) {
1280a920b5bSAndy Whitcroft		print "Must be run from the top-level dir. of a kernel tree\n";
1290a920b5bSAndy Whitcroft		exit(2);
1300a920b5bSAndy Whitcroft	}
1316c72ffaaSAndy Whitcroft}
1326c72ffaaSAndy Whitcroft
1336c72ffaaSAndy Whitcroftmy $emitted_corrupt = 0;
1346c72ffaaSAndy Whitcroft
1352ceb532bSAndy Whitcroftour $Ident	= qr{
1362ceb532bSAndy Whitcroft			[A-Za-z_][A-Za-z\d_]*
1372ceb532bSAndy Whitcroft			(?:\s*\#\#\s*[A-Za-z_][A-Za-z\d_]*)*
1382ceb532bSAndy Whitcroft		}x;
1396c72ffaaSAndy Whitcroftour $Storage	= qr{extern|static|asmlinkage};
1406c72ffaaSAndy Whitcroftour $Sparse	= qr{
1416c72ffaaSAndy Whitcroft			__user|
1426c72ffaaSAndy Whitcroft			__kernel|
1436c72ffaaSAndy Whitcroft			__force|
1446c72ffaaSAndy Whitcroft			__iomem|
1456c72ffaaSAndy Whitcroft			__must_check|
1466c72ffaaSAndy Whitcroft			__init_refok|
147417495edSAndy Whitcroft			__kprobes|
148417495edSAndy Whitcroft			__ref
1496c72ffaaSAndy Whitcroft		}x;
15052131292SWolfram Sang
15152131292SWolfram Sang# Notes to $Attribute:
15252131292SWolfram Sang# We need \b after 'init' otherwise 'initconst' will cause a false positive in a check
1536c72ffaaSAndy Whitcroftour $Attribute	= qr{
1546c72ffaaSAndy Whitcroft			const|
1556c72ffaaSAndy Whitcroft			__read_mostly|
1566c72ffaaSAndy Whitcroft			__kprobes|
15752131292SWolfram Sang			__(?:mem|cpu|dev|)(?:initdata|initconst|init\b)|
15824e1d81aSAndy Whitcroft			____cacheline_aligned|
15924e1d81aSAndy Whitcroft			____cacheline_aligned_in_smp|
1605fe3af11SAndy Whitcroft			____cacheline_internodealigned_in_smp|
1615fe3af11SAndy Whitcroft			__weak
1626c72ffaaSAndy Whitcroft		  }x;
163c45dcabdSAndy Whitcroftour $Modifier;
1646c72ffaaSAndy Whitcroftour $Inline	= qr{inline|__always_inline|noinline};
1656c72ffaaSAndy Whitcroftour $Member	= qr{->$Ident|\.$Ident|\[[^]]*\]};
1666c72ffaaSAndy Whitcroftour $Lval	= qr{$Ident(?:$Member)*};
1676c72ffaaSAndy Whitcroft
1686c72ffaaSAndy Whitcroftour $Constant	= qr{(?:[0-9]+|0x[0-9a-fA-F]+)[UL]*};
1696c72ffaaSAndy Whitcroftour $Assignment	= qr{(?:\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=)};
17086f9d059SAndy Whitcroftour $Compare    = qr{<=|>=|==|!=|<|>};
1716c72ffaaSAndy Whitcroftour $Operators	= qr{
1726c72ffaaSAndy Whitcroft			<=|>=|==|!=|
1736c72ffaaSAndy Whitcroft			=>|->|<<|>>|<|>|!|~|
174c2fdda0dSAndy Whitcroft			&&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%
1756c72ffaaSAndy Whitcroft		  }x;
1766c72ffaaSAndy Whitcroft
1778905a67cSAndy Whitcroftour $NonptrType;
1788905a67cSAndy Whitcroftour $Type;
1798905a67cSAndy Whitcroftour $Declare;
1808905a67cSAndy Whitcroft
181171ae1a4SAndy Whitcroftour $UTF8	= qr {
182171ae1a4SAndy Whitcroft	[\x09\x0A\x0D\x20-\x7E]              # ASCII
183171ae1a4SAndy Whitcroft	| [\xC2-\xDF][\x80-\xBF]             # non-overlong 2-byte
184171ae1a4SAndy Whitcroft	|  \xE0[\xA0-\xBF][\x80-\xBF]        # excluding overlongs
185171ae1a4SAndy Whitcroft	| [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2}  # straight 3-byte
186171ae1a4SAndy Whitcroft	|  \xED[\x80-\x9F][\x80-\xBF]        # excluding surrogates
187171ae1a4SAndy Whitcroft	|  \xF0[\x90-\xBF][\x80-\xBF]{2}     # planes 1-3
188171ae1a4SAndy Whitcroft	| [\xF1-\xF3][\x80-\xBF]{3}          # planes 4-15
189171ae1a4SAndy Whitcroft	|  \xF4[\x80-\x8F][\x80-\xBF]{2}     # plane 16
190171ae1a4SAndy Whitcroft}x;
191171ae1a4SAndy Whitcroft
1928ed22cadSAndy Whitcroftour $typeTypedefs = qr{(?x:
193fb9e9096SAndy Whitcroft	(?:__)?(?:u|s|be|le)(?:8|16|32|64)|
1948ed22cadSAndy Whitcroft	atomic_t
1958ed22cadSAndy Whitcroft)};
1968ed22cadSAndy Whitcroft
197691e669bSJoe Perchesour $logFunctions = qr{(?x:
198691e669bSJoe Perches	printk|
199691e669bSJoe Perches	pr_(debug|dbg|vdbg|devel|info|warning|err|notice|alert|crit|emerg|cont)|
2008bbea968SJoe Perches	(dev|netdev|netif)_(printk|dbg|vdbg|info|warn|err|notice|alert|crit|emerg|WARN)|
201691e669bSJoe Perches	WARN|
202691e669bSJoe Perches	panic
203691e669bSJoe Perches)};
204691e669bSJoe Perches
2058905a67cSAndy Whitcroftour @typeList = (
2068905a67cSAndy Whitcroft	qr{void},
207c45dcabdSAndy Whitcroft	qr{(?:unsigned\s+)?char},
208c45dcabdSAndy Whitcroft	qr{(?:unsigned\s+)?short},
209c45dcabdSAndy Whitcroft	qr{(?:unsigned\s+)?int},
210c45dcabdSAndy Whitcroft	qr{(?:unsigned\s+)?long},
211c45dcabdSAndy Whitcroft	qr{(?:unsigned\s+)?long\s+int},
212c45dcabdSAndy Whitcroft	qr{(?:unsigned\s+)?long\s+long},
213c45dcabdSAndy Whitcroft	qr{(?:unsigned\s+)?long\s+long\s+int},
2148905a67cSAndy Whitcroft	qr{unsigned},
2158905a67cSAndy Whitcroft	qr{float},
2168905a67cSAndy Whitcroft	qr{double},
2178905a67cSAndy Whitcroft	qr{bool},
2188905a67cSAndy Whitcroft	qr{struct\s+$Ident},
2198905a67cSAndy Whitcroft	qr{union\s+$Ident},
2208905a67cSAndy Whitcroft	qr{enum\s+$Ident},
2218905a67cSAndy Whitcroft	qr{${Ident}_t},
2228905a67cSAndy Whitcroft	qr{${Ident}_handler},
2238905a67cSAndy Whitcroft	qr{${Ident}_handler_fn},
2248905a67cSAndy Whitcroft);
225c45dcabdSAndy Whitcroftour @modifierList = (
226c45dcabdSAndy Whitcroft	qr{fastcall},
227c45dcabdSAndy Whitcroft);
2288905a67cSAndy Whitcroft
2297840a94cSWolfram Sangour $allowed_asm_includes = qr{(?x:
2307840a94cSWolfram Sang	irq|
2317840a94cSWolfram Sang	memory
2327840a94cSWolfram Sang)};
2337840a94cSWolfram Sang# memory.h: ARM has a custom one
2347840a94cSWolfram Sang
2358905a67cSAndy Whitcroftsub build_types {
236d2172eb5SAndy Whitcroft	my $mods = "(?x:  \n" . join("|\n  ", @modifierList) . "\n)";
237d2172eb5SAndy Whitcroft	my $all = "(?x:  \n" . join("|\n  ", @typeList) . "\n)";
238c8cb2ca3SAndy Whitcroft	$Modifier	= qr{(?:$Attribute|$Sparse|$mods)};
2398905a67cSAndy Whitcroft	$NonptrType	= qr{
240d2172eb5SAndy Whitcroft			(?:$Modifier\s+|const\s+)*
241cf655043SAndy Whitcroft			(?:
242c45dcabdSAndy Whitcroft				(?:typeof|__typeof__)\s*\(\s*\**\s*$Ident\s*\)|
2438ed22cadSAndy Whitcroft				(?:$typeTypedefs\b)|
244c45dcabdSAndy Whitcroft				(?:${all}\b)
245cf655043SAndy Whitcroft			)
246c8cb2ca3SAndy Whitcroft			(?:\s+$Modifier|\s+const)*
2478905a67cSAndy Whitcroft		  }x;
2488905a67cSAndy Whitcroft	$Type	= qr{
249c45dcabdSAndy Whitcroft			$NonptrType
25065863862SAndy Whitcroft			(?:[\s\*]+\s*const|[\s\*]+|(?:\s*\[\s*\])+)?
251c8cb2ca3SAndy Whitcroft			(?:\s+$Inline|\s+$Modifier)*
2528905a67cSAndy Whitcroft		  }x;
2538905a67cSAndy Whitcroft	$Declare	= qr{(?:$Storage\s+)?$Type};
2548905a67cSAndy Whitcroft}
2558905a67cSAndy Whitcroftbuild_types();
2566c72ffaaSAndy Whitcroft
2576c72ffaaSAndy Whitcroft$chk_signoff = 0 if ($file);
2580a920b5bSAndy Whitcroft
2594a0df2efSAndy Whitcroftmy @dep_includes = ();
2604a0df2efSAndy Whitcroftmy @dep_functions = ();
2616c72ffaaSAndy Whitcroftmy $removal = "Documentation/feature-removal-schedule.txt";
2626c72ffaaSAndy Whitcroftif ($tree && -f "$root/$removal") {
26321caa13cSAndy Whitcroft	open(my $REMOVE, '<', "$root/$removal") ||
2646c72ffaaSAndy Whitcroft				die "$P: $removal: open failed - $!\n";
26521caa13cSAndy Whitcroft	while (<$REMOVE>) {
266f0a594c1SAndy Whitcroft		if (/^Check:\s+(.*\S)/) {
267f0a594c1SAndy Whitcroft			for my $entry (split(/[, ]+/, $1)) {
268f0a594c1SAndy Whitcroft				if ($entry =~ m@include/(.*)@) {
2694a0df2efSAndy Whitcroft					push(@dep_includes, $1);
2704a0df2efSAndy Whitcroft
271f0a594c1SAndy Whitcroft				} elsif ($entry !~ m@/@) {
272f0a594c1SAndy Whitcroft					push(@dep_functions, $entry);
273f0a594c1SAndy Whitcroft				}
2744a0df2efSAndy Whitcroft			}
2750a920b5bSAndy Whitcroft		}
2760a920b5bSAndy Whitcroft	}
27721caa13cSAndy Whitcroft	close($REMOVE);
2780a920b5bSAndy Whitcroft}
2790a920b5bSAndy Whitcroft
28000df344fSAndy Whitcroftmy @rawlines = ();
281c2fdda0dSAndy Whitcroftmy @lines = ();
282c2fdda0dSAndy Whitcroftmy $vname;
2836c72ffaaSAndy Whitcroftfor my $filename (@ARGV) {
28421caa13cSAndy Whitcroft	my $FILE;
2856c72ffaaSAndy Whitcroft	if ($file) {
28621caa13cSAndy Whitcroft		open($FILE, '-|', "diff -u /dev/null $filename") ||
2876c72ffaaSAndy Whitcroft			die "$P: $filename: diff failed - $!\n";
28821caa13cSAndy Whitcroft	} elsif ($filename eq '-') {
28921caa13cSAndy Whitcroft		open($FILE, '<&STDIN');
2906c72ffaaSAndy Whitcroft	} else {
29121caa13cSAndy Whitcroft		open($FILE, '<', "$filename") ||
2926c72ffaaSAndy Whitcroft			die "$P: $filename: open failed - $!\n";
2936c72ffaaSAndy Whitcroft	}
294c2fdda0dSAndy Whitcroft	if ($filename eq '-') {
295c2fdda0dSAndy Whitcroft		$vname = 'Your patch';
296c2fdda0dSAndy Whitcroft	} else {
297c2fdda0dSAndy Whitcroft		$vname = $filename;
298c2fdda0dSAndy Whitcroft	}
29921caa13cSAndy Whitcroft	while (<$FILE>) {
3000a920b5bSAndy Whitcroft		chomp;
30100df344fSAndy Whitcroft		push(@rawlines, $_);
3026c72ffaaSAndy Whitcroft	}
30321caa13cSAndy Whitcroft	close($FILE);
304c2fdda0dSAndy Whitcroft	if (!process($filename)) {
3050a920b5bSAndy Whitcroft		$exit = 1;
3060a920b5bSAndy Whitcroft	}
30700df344fSAndy Whitcroft	@rawlines = ();
30813214adfSAndy Whitcroft	@lines = ();
3090a920b5bSAndy Whitcroft}
3100a920b5bSAndy Whitcroft
3110a920b5bSAndy Whitcroftexit($exit);
3120a920b5bSAndy Whitcroft
3130a920b5bSAndy Whitcroftsub top_of_kernel_tree {
3146c72ffaaSAndy Whitcroft	my ($root) = @_;
3156c72ffaaSAndy Whitcroft
3166c72ffaaSAndy Whitcroft	my @tree_check = (
3176c72ffaaSAndy Whitcroft		"COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
3186c72ffaaSAndy Whitcroft		"README", "Documentation", "arch", "include", "drivers",
3196c72ffaaSAndy Whitcroft		"fs", "init", "ipc", "kernel", "lib", "scripts",
3206c72ffaaSAndy Whitcroft	);
3216c72ffaaSAndy Whitcroft
3226c72ffaaSAndy Whitcroft	foreach my $check (@tree_check) {
3236c72ffaaSAndy Whitcroft		if (! -e $root . '/' . $check) {
3240a920b5bSAndy Whitcroft			return 0;
3250a920b5bSAndy Whitcroft		}
3266c72ffaaSAndy Whitcroft	}
3276c72ffaaSAndy Whitcroft	return 1;
3286c72ffaaSAndy Whitcroft}
3290a920b5bSAndy Whitcroft
3300a920b5bSAndy Whitcroftsub expand_tabs {
3310a920b5bSAndy Whitcroft	my ($str) = @_;
3320a920b5bSAndy Whitcroft
3330a920b5bSAndy Whitcroft	my $res = '';
3340a920b5bSAndy Whitcroft	my $n = 0;
3350a920b5bSAndy Whitcroft	for my $c (split(//, $str)) {
3360a920b5bSAndy Whitcroft		if ($c eq "\t") {
3370a920b5bSAndy Whitcroft			$res .= ' ';
3380a920b5bSAndy Whitcroft			$n++;
3390a920b5bSAndy Whitcroft			for (; ($n % 8) != 0; $n++) {
3400a920b5bSAndy Whitcroft				$res .= ' ';
3410a920b5bSAndy Whitcroft			}
3420a920b5bSAndy Whitcroft			next;
3430a920b5bSAndy Whitcroft		}
3440a920b5bSAndy Whitcroft		$res .= $c;
3450a920b5bSAndy Whitcroft		$n++;
3460a920b5bSAndy Whitcroft	}
3470a920b5bSAndy Whitcroft
3480a920b5bSAndy Whitcroft	return $res;
3490a920b5bSAndy Whitcroft}
3506c72ffaaSAndy Whitcroftsub copy_spacing {
351773647a0SAndy Whitcroft	(my $res = shift) =~ tr/\t/ /c;
3526c72ffaaSAndy Whitcroft	return $res;
3536c72ffaaSAndy Whitcroft}
3540a920b5bSAndy Whitcroft
3554a0df2efSAndy Whitcroftsub line_stats {
3564a0df2efSAndy Whitcroft	my ($line) = @_;
3574a0df2efSAndy Whitcroft
3584a0df2efSAndy Whitcroft	# Drop the diff line leader and expand tabs
3594a0df2efSAndy Whitcroft	$line =~ s/^.//;
3604a0df2efSAndy Whitcroft	$line = expand_tabs($line);
3614a0df2efSAndy Whitcroft
3624a0df2efSAndy Whitcroft	# Pick the indent from the front of the line.
3634a0df2efSAndy Whitcroft	my ($white) = ($line =~ /^(\s*)/);
3644a0df2efSAndy Whitcroft
3654a0df2efSAndy Whitcroft	return (length($line), length($white));
3664a0df2efSAndy Whitcroft}
3674a0df2efSAndy Whitcroft
368773647a0SAndy Whitcroftmy $sanitise_quote = '';
369773647a0SAndy Whitcroft
370773647a0SAndy Whitcroftsub sanitise_line_reset {
371773647a0SAndy Whitcroft	my ($in_comment) = @_;
372773647a0SAndy Whitcroft
373773647a0SAndy Whitcroft	if ($in_comment) {
374773647a0SAndy Whitcroft		$sanitise_quote = '*/';
375773647a0SAndy Whitcroft	} else {
376773647a0SAndy Whitcroft		$sanitise_quote = '';
377773647a0SAndy Whitcroft	}
378773647a0SAndy Whitcroft}
37900df344fSAndy Whitcroftsub sanitise_line {
38000df344fSAndy Whitcroft	my ($line) = @_;
38100df344fSAndy Whitcroft
38200df344fSAndy Whitcroft	my $res = '';
38300df344fSAndy Whitcroft	my $l = '';
38400df344fSAndy Whitcroft
385c2fdda0dSAndy Whitcroft	my $qlen = 0;
386773647a0SAndy Whitcroft	my $off = 0;
387773647a0SAndy Whitcroft	my $c;
38800df344fSAndy Whitcroft
389773647a0SAndy Whitcroft	# Always copy over the diff marker.
390773647a0SAndy Whitcroft	$res = substr($line, 0, 1);
391773647a0SAndy Whitcroft
392773647a0SAndy Whitcroft	for ($off = 1; $off < length($line); $off++) {
393773647a0SAndy Whitcroft		$c = substr($line, $off, 1);
394773647a0SAndy Whitcroft
395773647a0SAndy Whitcroft		# Comments we are wacking completly including the begin
396773647a0SAndy Whitcroft		# and end, all to $;.
397773647a0SAndy Whitcroft		if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
398773647a0SAndy Whitcroft			$sanitise_quote = '*/';
399773647a0SAndy Whitcroft
400773647a0SAndy Whitcroft			substr($res, $off, 2, "$;$;");
401773647a0SAndy Whitcroft			$off++;
40200df344fSAndy Whitcroft			next;
403773647a0SAndy Whitcroft		}
40481bc0e02SAndy Whitcroft		if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') {
405773647a0SAndy Whitcroft			$sanitise_quote = '';
406773647a0SAndy Whitcroft			substr($res, $off, 2, "$;$;");
407773647a0SAndy Whitcroft			$off++;
408773647a0SAndy Whitcroft			next;
409773647a0SAndy Whitcroft		}
410113f04a8SDaniel Walker		if ($sanitise_quote eq '' && substr($line, $off, 2) eq '//') {
411113f04a8SDaniel Walker			$sanitise_quote = '//';
412113f04a8SDaniel Walker
413113f04a8SDaniel Walker			substr($res, $off, 2, $sanitise_quote);
414113f04a8SDaniel Walker			$off++;
415113f04a8SDaniel Walker			next;
416113f04a8SDaniel Walker		}
417773647a0SAndy Whitcroft
418773647a0SAndy Whitcroft		# A \ in a string means ignore the next character.
419773647a0SAndy Whitcroft		if (($sanitise_quote eq "'" || $sanitise_quote eq '"') &&
420773647a0SAndy Whitcroft		    $c eq "\\") {
421773647a0SAndy Whitcroft			substr($res, $off, 2, 'XX');
422773647a0SAndy Whitcroft			$off++;
423773647a0SAndy Whitcroft			next;
424773647a0SAndy Whitcroft		}
425773647a0SAndy Whitcroft		# Regular quotes.
426773647a0SAndy Whitcroft		if ($c eq "'" || $c eq '"') {
427773647a0SAndy Whitcroft			if ($sanitise_quote eq '') {
428773647a0SAndy Whitcroft				$sanitise_quote = $c;
429773647a0SAndy Whitcroft
430773647a0SAndy Whitcroft				substr($res, $off, 1, $c);
431773647a0SAndy Whitcroft				next;
432773647a0SAndy Whitcroft			} elsif ($sanitise_quote eq $c) {
433773647a0SAndy Whitcroft				$sanitise_quote = '';
43400df344fSAndy Whitcroft			}
43500df344fSAndy Whitcroft		}
436773647a0SAndy Whitcroft
437fae17daeSAndy Whitcroft		#print "c<$c> SQ<$sanitise_quote>\n";
438773647a0SAndy Whitcroft		if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") {
439773647a0SAndy Whitcroft			substr($res, $off, 1, $;);
440113f04a8SDaniel Walker		} elsif ($off != 0 && $sanitise_quote eq '//' && $c ne "\t") {
441113f04a8SDaniel Walker			substr($res, $off, 1, $;);
442773647a0SAndy Whitcroft		} elsif ($off != 0 && $sanitise_quote && $c ne "\t") {
443773647a0SAndy Whitcroft			substr($res, $off, 1, 'X');
44400df344fSAndy Whitcroft		} else {
445773647a0SAndy Whitcroft			substr($res, $off, 1, $c);
44600df344fSAndy Whitcroft		}
447c2fdda0dSAndy Whitcroft	}
448c2fdda0dSAndy Whitcroft
449113f04a8SDaniel Walker	if ($sanitise_quote eq '//') {
450113f04a8SDaniel Walker		$sanitise_quote = '';
451113f04a8SDaniel Walker	}
452113f04a8SDaniel Walker
453c2fdda0dSAndy Whitcroft	# The pathname on a #include may be surrounded by '<' and '>'.
454c45dcabdSAndy Whitcroft	if ($res =~ /^.\s*\#\s*include\s+\<(.*)\>/) {
455c2fdda0dSAndy Whitcroft		my $clean = 'X' x length($1);
456c2fdda0dSAndy Whitcroft		$res =~ s@\<.*\>@<$clean>@;
457c2fdda0dSAndy Whitcroft
458c2fdda0dSAndy Whitcroft	# The whole of a #error is a string.
459c45dcabdSAndy Whitcroft	} elsif ($res =~ /^.\s*\#\s*(?:error|warning)\s+(.*)\b/) {
460c2fdda0dSAndy Whitcroft		my $clean = 'X' x length($1);
461c45dcabdSAndy Whitcroft		$res =~ s@(\#\s*(?:error|warning)\s+).*@$1$clean@;
462c2fdda0dSAndy Whitcroft	}
463c2fdda0dSAndy Whitcroft
46400df344fSAndy Whitcroft	return $res;
46500df344fSAndy Whitcroft}
46600df344fSAndy Whitcroft
4678905a67cSAndy Whitcroftsub ctx_statement_block {
4688905a67cSAndy Whitcroft	my ($linenr, $remain, $off) = @_;
4698905a67cSAndy Whitcroft	my $line = $linenr - 1;
4708905a67cSAndy Whitcroft	my $blk = '';
4718905a67cSAndy Whitcroft	my $soff = $off;
4728905a67cSAndy Whitcroft	my $coff = $off - 1;
473773647a0SAndy Whitcroft	my $coff_set = 0;
4748905a67cSAndy Whitcroft
47513214adfSAndy Whitcroft	my $loff = 0;
47613214adfSAndy Whitcroft
4778905a67cSAndy Whitcroft	my $type = '';
4788905a67cSAndy Whitcroft	my $level = 0;
479a2750645SAndy Whitcroft	my @stack = ();
480cf655043SAndy Whitcroft	my $p;
4818905a67cSAndy Whitcroft	my $c;
4828905a67cSAndy Whitcroft	my $len = 0;
48313214adfSAndy Whitcroft
48413214adfSAndy Whitcroft	my $remainder;
4858905a67cSAndy Whitcroft	while (1) {
486a2750645SAndy Whitcroft		@stack = (['', 0]) if ($#stack == -1);
487a2750645SAndy Whitcroft
488773647a0SAndy Whitcroft		#warn "CSB: blk<$blk> remain<$remain>\n";
4898905a67cSAndy Whitcroft		# If we are about to drop off the end, pull in more
4908905a67cSAndy Whitcroft		# context.
4918905a67cSAndy Whitcroft		if ($off >= $len) {
4928905a67cSAndy Whitcroft			for (; $remain > 0; $line++) {
493dea33496SAndy Whitcroft				last if (!defined $lines[$line]);
494c2fdda0dSAndy Whitcroft				next if ($lines[$line] =~ /^-/);
4958905a67cSAndy Whitcroft				$remain--;
49613214adfSAndy Whitcroft				$loff = $len;
497c2fdda0dSAndy Whitcroft				$blk .= $lines[$line] . "\n";
4988905a67cSAndy Whitcroft				$len = length($blk);
4998905a67cSAndy Whitcroft				$line++;
5008905a67cSAndy Whitcroft				last;
5018905a67cSAndy Whitcroft			}
5028905a67cSAndy Whitcroft			# Bail if there is no further context.
5038905a67cSAndy Whitcroft			#warn "CSB: blk<$blk> off<$off> len<$len>\n";
50413214adfSAndy Whitcroft			if ($off >= $len) {
5058905a67cSAndy Whitcroft				last;
5068905a67cSAndy Whitcroft			}
5078905a67cSAndy Whitcroft		}
508cf655043SAndy Whitcroft		$p = $c;
5098905a67cSAndy Whitcroft		$c = substr($blk, $off, 1);
51013214adfSAndy Whitcroft		$remainder = substr($blk, $off);
5118905a67cSAndy Whitcroft
512773647a0SAndy Whitcroft		#warn "CSB: c<$c> type<$type> level<$level> remainder<$remainder> coff_set<$coff_set>\n";
5134635f4fbSAndy Whitcroft
5144635f4fbSAndy Whitcroft		# Handle nested #if/#else.
5154635f4fbSAndy Whitcroft		if ($remainder =~ /^#\s*(?:ifndef|ifdef|if)\s/) {
5164635f4fbSAndy Whitcroft			push(@stack, [ $type, $level ]);
5174635f4fbSAndy Whitcroft		} elsif ($remainder =~ /^#\s*(?:else|elif)\b/) {
5184635f4fbSAndy Whitcroft			($type, $level) = @{$stack[$#stack - 1]};
5194635f4fbSAndy Whitcroft		} elsif ($remainder =~ /^#\s*endif\b/) {
5204635f4fbSAndy Whitcroft			($type, $level) = @{pop(@stack)};
5214635f4fbSAndy Whitcroft		}
5224635f4fbSAndy Whitcroft
5238905a67cSAndy Whitcroft		# Statement ends at the ';' or a close '}' at the
5248905a67cSAndy Whitcroft		# outermost level.
5258905a67cSAndy Whitcroft		if ($level == 0 && $c eq ';') {
5268905a67cSAndy Whitcroft			last;
5278905a67cSAndy Whitcroft		}
5288905a67cSAndy Whitcroft
52913214adfSAndy Whitcroft		# An else is really a conditional as long as its not else if
530773647a0SAndy Whitcroft		if ($level == 0 && $coff_set == 0 &&
531773647a0SAndy Whitcroft				(!defined($p) || $p =~ /(?:\s|\}|\+)/) &&
532773647a0SAndy Whitcroft				$remainder =~ /^(else)(?:\s|{)/ &&
533773647a0SAndy Whitcroft				$remainder !~ /^else\s+if\b/) {
534773647a0SAndy Whitcroft			$coff = $off + length($1) - 1;
535773647a0SAndy Whitcroft			$coff_set = 1;
536773647a0SAndy Whitcroft			#warn "CSB: mark coff<$coff> soff<$soff> 1<$1>\n";
537773647a0SAndy Whitcroft			#warn "[" . substr($blk, $soff, $coff - $soff + 1) . "]\n";
53813214adfSAndy Whitcroft		}
53913214adfSAndy Whitcroft
5408905a67cSAndy Whitcroft		if (($type eq '' || $type eq '(') && $c eq '(') {
5418905a67cSAndy Whitcroft			$level++;
5428905a67cSAndy Whitcroft			$type = '(';
5438905a67cSAndy Whitcroft		}
5448905a67cSAndy Whitcroft		if ($type eq '(' && $c eq ')') {
5458905a67cSAndy Whitcroft			$level--;
5468905a67cSAndy Whitcroft			$type = ($level != 0)? '(' : '';
5478905a67cSAndy Whitcroft
5488905a67cSAndy Whitcroft			if ($level == 0 && $coff < $soff) {
5498905a67cSAndy Whitcroft				$coff = $off;
550773647a0SAndy Whitcroft				$coff_set = 1;
551773647a0SAndy Whitcroft				#warn "CSB: mark coff<$coff>\n";
5528905a67cSAndy Whitcroft			}
5538905a67cSAndy Whitcroft		}
5548905a67cSAndy Whitcroft		if (($type eq '' || $type eq '{') && $c eq '{') {
5558905a67cSAndy Whitcroft			$level++;
5568905a67cSAndy Whitcroft			$type = '{';
5578905a67cSAndy Whitcroft		}
5588905a67cSAndy Whitcroft		if ($type eq '{' && $c eq '}') {
5598905a67cSAndy Whitcroft			$level--;
5608905a67cSAndy Whitcroft			$type = ($level != 0)? '{' : '';
5618905a67cSAndy Whitcroft
5628905a67cSAndy Whitcroft			if ($level == 0) {
563b998e001SPatrick Pannuto				if (substr($blk, $off + 1, 1) eq ';') {
564b998e001SPatrick Pannuto					$off++;
565b998e001SPatrick Pannuto				}
5668905a67cSAndy Whitcroft				last;
5678905a67cSAndy Whitcroft			}
5688905a67cSAndy Whitcroft		}
5698905a67cSAndy Whitcroft		$off++;
5708905a67cSAndy Whitcroft	}
571a3bb97a7SAndy Whitcroft	# We are truly at the end, so shuffle to the next line.
57213214adfSAndy Whitcroft	if ($off == $len) {
573a3bb97a7SAndy Whitcroft		$loff = $len + 1;
57413214adfSAndy Whitcroft		$line++;
57513214adfSAndy Whitcroft		$remain--;
57613214adfSAndy Whitcroft	}
5778905a67cSAndy Whitcroft
5788905a67cSAndy Whitcroft	my $statement = substr($blk, $soff, $off - $soff + 1);
5798905a67cSAndy Whitcroft	my $condition = substr($blk, $soff, $coff - $soff + 1);
5808905a67cSAndy Whitcroft
5818905a67cSAndy Whitcroft	#warn "STATEMENT<$statement>\n";
5828905a67cSAndy Whitcroft	#warn "CONDITION<$condition>\n";
5838905a67cSAndy Whitcroft
584773647a0SAndy Whitcroft	#print "coff<$coff> soff<$off> loff<$loff>\n";
58513214adfSAndy Whitcroft
58613214adfSAndy Whitcroft	return ($statement, $condition,
58713214adfSAndy Whitcroft			$line, $remain + 1, $off - $loff + 1, $level);
58813214adfSAndy Whitcroft}
58913214adfSAndy Whitcroft
590cf655043SAndy Whitcroftsub statement_lines {
591cf655043SAndy Whitcroft	my ($stmt) = @_;
592cf655043SAndy Whitcroft
593cf655043SAndy Whitcroft	# Strip the diff line prefixes and rip blank lines at start and end.
594cf655043SAndy Whitcroft	$stmt =~ s/(^|\n)./$1/g;
595cf655043SAndy Whitcroft	$stmt =~ s/^\s*//;
596cf655043SAndy Whitcroft	$stmt =~ s/\s*$//;
597cf655043SAndy Whitcroft
598cf655043SAndy Whitcroft	my @stmt_lines = ($stmt =~ /\n/g);
599cf655043SAndy Whitcroft
600cf655043SAndy Whitcroft	return $#stmt_lines + 2;
601cf655043SAndy Whitcroft}
602cf655043SAndy Whitcroft
603cf655043SAndy Whitcroftsub statement_rawlines {
604cf655043SAndy Whitcroft	my ($stmt) = @_;
605cf655043SAndy Whitcroft
606cf655043SAndy Whitcroft	my @stmt_lines = ($stmt =~ /\n/g);
607cf655043SAndy Whitcroft
608cf655043SAndy Whitcroft	return $#stmt_lines + 2;
609cf655043SAndy Whitcroft}
610cf655043SAndy Whitcroft
611cf655043SAndy Whitcroftsub statement_block_size {
612cf655043SAndy Whitcroft	my ($stmt) = @_;
613cf655043SAndy Whitcroft
614cf655043SAndy Whitcroft	$stmt =~ s/(^|\n)./$1/g;
615cf655043SAndy Whitcroft	$stmt =~ s/^\s*{//;
616cf655043SAndy Whitcroft	$stmt =~ s/}\s*$//;
617cf655043SAndy Whitcroft	$stmt =~ s/^\s*//;
618cf655043SAndy Whitcroft	$stmt =~ s/\s*$//;
619cf655043SAndy Whitcroft
620cf655043SAndy Whitcroft	my @stmt_lines = ($stmt =~ /\n/g);
621cf655043SAndy Whitcroft	my @stmt_statements = ($stmt =~ /;/g);
622cf655043SAndy Whitcroft
623cf655043SAndy Whitcroft	my $stmt_lines = $#stmt_lines + 2;
624cf655043SAndy Whitcroft	my $stmt_statements = $#stmt_statements + 1;
625cf655043SAndy Whitcroft
626cf655043SAndy Whitcroft	if ($stmt_lines > $stmt_statements) {
627cf655043SAndy Whitcroft		return $stmt_lines;
628cf655043SAndy Whitcroft	} else {
629cf655043SAndy Whitcroft		return $stmt_statements;
630cf655043SAndy Whitcroft	}
631cf655043SAndy Whitcroft}
632cf655043SAndy Whitcroft
63313214adfSAndy Whitcroftsub ctx_statement_full {
63413214adfSAndy Whitcroft	my ($linenr, $remain, $off) = @_;
63513214adfSAndy Whitcroft	my ($statement, $condition, $level);
63613214adfSAndy Whitcroft
63713214adfSAndy Whitcroft	my (@chunks);
63813214adfSAndy Whitcroft
639cf655043SAndy Whitcroft	# Grab the first conditional/block pair.
64013214adfSAndy Whitcroft	($statement, $condition, $linenr, $remain, $off, $level) =
64113214adfSAndy Whitcroft				ctx_statement_block($linenr, $remain, $off);
642773647a0SAndy Whitcroft	#print "F: c<$condition> s<$statement> remain<$remain>\n";
64313214adfSAndy Whitcroft	push(@chunks, [ $condition, $statement ]);
644cf655043SAndy Whitcroft	if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
645cf655043SAndy Whitcroft		return ($level, $linenr, @chunks);
646cf655043SAndy Whitcroft	}
647cf655043SAndy Whitcroft
648cf655043SAndy Whitcroft	# Pull in the following conditional/block pairs and see if they
649cf655043SAndy Whitcroft	# could continue the statement.
650cf655043SAndy Whitcroft	for (;;) {
65113214adfSAndy Whitcroft		($statement, $condition, $linenr, $remain, $off, $level) =
65213214adfSAndy Whitcroft				ctx_statement_block($linenr, $remain, $off);
653cf655043SAndy Whitcroft		#print "C: c<$condition> s<$statement> remain<$remain>\n";
654773647a0SAndy Whitcroft		last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
655cf655043SAndy Whitcroft		#print "C: push\n";
656cf655043SAndy Whitcroft		push(@chunks, [ $condition, $statement ]);
65713214adfSAndy Whitcroft	}
65813214adfSAndy Whitcroft
65913214adfSAndy Whitcroft	return ($level, $linenr, @chunks);
6608905a67cSAndy Whitcroft}
6618905a67cSAndy Whitcroft
6624a0df2efSAndy Whitcroftsub ctx_block_get {
663f0a594c1SAndy Whitcroft	my ($linenr, $remain, $outer, $open, $close, $off) = @_;
6644a0df2efSAndy Whitcroft	my $line;
6654a0df2efSAndy Whitcroft	my $start = $linenr - 1;
6664a0df2efSAndy Whitcroft	my $blk = '';
6674a0df2efSAndy Whitcroft	my @o;
6684a0df2efSAndy Whitcroft	my @c;
6694a0df2efSAndy Whitcroft	my @res = ();
6704a0df2efSAndy Whitcroft
671f0a594c1SAndy Whitcroft	my $level = 0;
6724635f4fbSAndy Whitcroft	my @stack = ($level);
67300df344fSAndy Whitcroft	for ($line = $start; $remain > 0; $line++) {
67400df344fSAndy Whitcroft		next if ($rawlines[$line] =~ /^-/);
67500df344fSAndy Whitcroft		$remain--;
67600df344fSAndy Whitcroft
67700df344fSAndy Whitcroft		$blk .= $rawlines[$line];
6784635f4fbSAndy Whitcroft
6794635f4fbSAndy Whitcroft		# Handle nested #if/#else.
6804635f4fbSAndy Whitcroft		if ($rawlines[$line] =~ /^.\s*#\s*(?:ifndef|ifdef|if)\s/) {
6814635f4fbSAndy Whitcroft			push(@stack, $level);
6824635f4fbSAndy Whitcroft		} elsif ($rawlines[$line] =~ /^.\s*#\s*(?:else|elif)\b/) {
6834635f4fbSAndy Whitcroft			$level = $stack[$#stack - 1];
6844635f4fbSAndy Whitcroft		} elsif ($rawlines[$line] =~ /^.\s*#\s*endif\b/) {
6854635f4fbSAndy Whitcroft			$level = pop(@stack);
6864635f4fbSAndy Whitcroft		}
6874635f4fbSAndy Whitcroft
688f0a594c1SAndy Whitcroft		foreach my $c (split(//, $rawlines[$line])) {
689f0a594c1SAndy Whitcroft			##print "C<$c>L<$level><$open$close>O<$off>\n";
690f0a594c1SAndy Whitcroft			if ($off > 0) {
691f0a594c1SAndy Whitcroft				$off--;
692f0a594c1SAndy Whitcroft				next;
693f0a594c1SAndy Whitcroft			}
6944a0df2efSAndy Whitcroft
695f0a594c1SAndy Whitcroft			if ($c eq $close && $level > 0) {
696f0a594c1SAndy Whitcroft				$level--;
697f0a594c1SAndy Whitcroft				last if ($level == 0);
698f0a594c1SAndy Whitcroft			} elsif ($c eq $open) {
699f0a594c1SAndy Whitcroft				$level++;
700f0a594c1SAndy Whitcroft			}
701f0a594c1SAndy Whitcroft		}
7024a0df2efSAndy Whitcroft
703f0a594c1SAndy Whitcroft		if (!$outer || $level <= 1) {
70400df344fSAndy Whitcroft			push(@res, $rawlines[$line]);
7054a0df2efSAndy Whitcroft		}
7064a0df2efSAndy Whitcroft
707f0a594c1SAndy Whitcroft		last if ($level == 0);
7084a0df2efSAndy Whitcroft	}
7094a0df2efSAndy Whitcroft
710f0a594c1SAndy Whitcroft	return ($level, @res);
7114a0df2efSAndy Whitcroft}
7124a0df2efSAndy Whitcroftsub ctx_block_outer {
7134a0df2efSAndy Whitcroft	my ($linenr, $remain) = @_;
7144a0df2efSAndy Whitcroft
715f0a594c1SAndy Whitcroft	my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0);
716f0a594c1SAndy Whitcroft	return @r;
7174a0df2efSAndy Whitcroft}
7184a0df2efSAndy Whitcroftsub ctx_block {
7194a0df2efSAndy Whitcroft	my ($linenr, $remain) = @_;
7204a0df2efSAndy Whitcroft
721f0a594c1SAndy Whitcroft	my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0);
722f0a594c1SAndy Whitcroft	return @r;
723653d4876SAndy Whitcroft}
724653d4876SAndy Whitcroftsub ctx_statement {
725f0a594c1SAndy Whitcroft	my ($linenr, $remain, $off) = @_;
726f0a594c1SAndy Whitcroft
727f0a594c1SAndy Whitcroft	my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
728f0a594c1SAndy Whitcroft	return @r;
729f0a594c1SAndy Whitcroft}
730f0a594c1SAndy Whitcroftsub ctx_block_level {
731653d4876SAndy Whitcroft	my ($linenr, $remain) = @_;
732653d4876SAndy Whitcroft
733f0a594c1SAndy Whitcroft	return ctx_block_get($linenr, $remain, 0, '{', '}', 0);
7344a0df2efSAndy Whitcroft}
7359c0ca6f9SAndy Whitcroftsub ctx_statement_level {
7369c0ca6f9SAndy Whitcroft	my ($linenr, $remain, $off) = @_;
7379c0ca6f9SAndy Whitcroft
7389c0ca6f9SAndy Whitcroft	return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
7399c0ca6f9SAndy Whitcroft}
7404a0df2efSAndy Whitcroft
7414a0df2efSAndy Whitcroftsub ctx_locate_comment {
7424a0df2efSAndy Whitcroft	my ($first_line, $end_line) = @_;
7434a0df2efSAndy Whitcroft
7444a0df2efSAndy Whitcroft	# Catch a comment on the end of the line itself.
745beae6332SAndy Whitcroft	my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@);
7464a0df2efSAndy Whitcroft	return $current_comment if (defined $current_comment);
7474a0df2efSAndy Whitcroft
7484a0df2efSAndy Whitcroft	# Look through the context and try and figure out if there is a
7494a0df2efSAndy Whitcroft	# comment.
7504a0df2efSAndy Whitcroft	my $in_comment = 0;
7514a0df2efSAndy Whitcroft	$current_comment = '';
7524a0df2efSAndy Whitcroft	for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
75300df344fSAndy Whitcroft		my $line = $rawlines[$linenr - 1];
75400df344fSAndy Whitcroft		#warn "           $line\n";
7554a0df2efSAndy Whitcroft		if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
7564a0df2efSAndy Whitcroft			$in_comment = 1;
7574a0df2efSAndy Whitcroft		}
7584a0df2efSAndy Whitcroft		if ($line =~ m@/\*@) {
7594a0df2efSAndy Whitcroft			$in_comment = 1;
7604a0df2efSAndy Whitcroft		}
7614a0df2efSAndy Whitcroft		if (!$in_comment && $current_comment ne '') {
7624a0df2efSAndy Whitcroft			$current_comment = '';
7634a0df2efSAndy Whitcroft		}
7644a0df2efSAndy Whitcroft		$current_comment .= $line . "\n" if ($in_comment);
7654a0df2efSAndy Whitcroft		if ($line =~ m@\*/@) {
7664a0df2efSAndy Whitcroft			$in_comment = 0;
7674a0df2efSAndy Whitcroft		}
7684a0df2efSAndy Whitcroft	}
7694a0df2efSAndy Whitcroft
7704a0df2efSAndy Whitcroft	chomp($current_comment);
7714a0df2efSAndy Whitcroft	return($current_comment);
7724a0df2efSAndy Whitcroft}
7734a0df2efSAndy Whitcroftsub ctx_has_comment {
7744a0df2efSAndy Whitcroft	my ($first_line, $end_line) = @_;
7754a0df2efSAndy Whitcroft	my $cmt = ctx_locate_comment($first_line, $end_line);
7764a0df2efSAndy Whitcroft
77700df344fSAndy Whitcroft	##print "LINE: $rawlines[$end_line - 1 ]\n";
7784a0df2efSAndy Whitcroft	##print "CMMT: $cmt\n";
7794a0df2efSAndy Whitcroft
7804a0df2efSAndy Whitcroft	return ($cmt ne '');
7814a0df2efSAndy Whitcroft}
7824a0df2efSAndy Whitcroft
7834d001e4dSAndy Whitcroftsub raw_line {
7844d001e4dSAndy Whitcroft	my ($linenr, $cnt) = @_;
7854d001e4dSAndy Whitcroft
7864d001e4dSAndy Whitcroft	my $offset = $linenr - 1;
7874d001e4dSAndy Whitcroft	$cnt++;
7884d001e4dSAndy Whitcroft
7894d001e4dSAndy Whitcroft	my $line;
7904d001e4dSAndy Whitcroft	while ($cnt) {
7914d001e4dSAndy Whitcroft		$line = $rawlines[$offset++];
7924d001e4dSAndy Whitcroft		next if (defined($line) && $line =~ /^-/);
7934d001e4dSAndy Whitcroft		$cnt--;
7944d001e4dSAndy Whitcroft	}
7954d001e4dSAndy Whitcroft
7964d001e4dSAndy Whitcroft	return $line;
7974d001e4dSAndy Whitcroft}
7984d001e4dSAndy Whitcroft
7990a920b5bSAndy Whitcroftsub cat_vet {
8000a920b5bSAndy Whitcroft	my ($vet) = @_;
8019c0ca6f9SAndy Whitcroft	my ($res, $coded);
8020a920b5bSAndy Whitcroft
8039c0ca6f9SAndy Whitcroft	$res = '';
8046c72ffaaSAndy Whitcroft	while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
8056c72ffaaSAndy Whitcroft		$res .= $1;
8066c72ffaaSAndy Whitcroft		if ($2 ne '') {
8079c0ca6f9SAndy Whitcroft			$coded = sprintf("^%c", unpack('C', $2) + 64);
8086c72ffaaSAndy Whitcroft			$res .= $coded;
8096c72ffaaSAndy Whitcroft		}
8109c0ca6f9SAndy Whitcroft	}
8119c0ca6f9SAndy Whitcroft	$res =~ s/$/\$/;
8120a920b5bSAndy Whitcroft
8139c0ca6f9SAndy Whitcroft	return $res;
8140a920b5bSAndy Whitcroft}
8150a920b5bSAndy Whitcroft
816c2fdda0dSAndy Whitcroftmy $av_preprocessor = 0;
817cf655043SAndy Whitcroftmy $av_pending;
818c2fdda0dSAndy Whitcroftmy @av_paren_type;
8191f65f947SAndy Whitcroftmy $av_pend_colon;
820c2fdda0dSAndy Whitcroft
821c2fdda0dSAndy Whitcroftsub annotate_reset {
822c2fdda0dSAndy Whitcroft	$av_preprocessor = 0;
823cf655043SAndy Whitcroft	$av_pending = '_';
824cf655043SAndy Whitcroft	@av_paren_type = ('E');
8251f65f947SAndy Whitcroft	$av_pend_colon = 'O';
826c2fdda0dSAndy Whitcroft}
827c2fdda0dSAndy Whitcroft
8286c72ffaaSAndy Whitcroftsub annotate_values {
8296c72ffaaSAndy Whitcroft	my ($stream, $type) = @_;
8306c72ffaaSAndy Whitcroft
8316c72ffaaSAndy Whitcroft	my $res;
8321f65f947SAndy Whitcroft	my $var = '_' x length($stream);
8336c72ffaaSAndy Whitcroft	my $cur = $stream;
8346c72ffaaSAndy Whitcroft
835c2fdda0dSAndy Whitcroft	print "$stream\n" if ($dbg_values > 1);
8366c72ffaaSAndy Whitcroft
8376c72ffaaSAndy Whitcroft	while (length($cur)) {
838773647a0SAndy Whitcroft		@av_paren_type = ('E') if ($#av_paren_type < 0);
839cf655043SAndy Whitcroft		print " <" . join('', @av_paren_type) .
840171ae1a4SAndy Whitcroft				"> <$type> <$av_pending>" if ($dbg_values > 1);
8416c72ffaaSAndy Whitcroft		if ($cur =~ /^(\s+)/o) {
842c2fdda0dSAndy Whitcroft			print "WS($1)\n" if ($dbg_values > 1);
843c2fdda0dSAndy Whitcroft			if ($1 =~ /\n/ && $av_preprocessor) {
844cf655043SAndy Whitcroft				$type = pop(@av_paren_type);
845c2fdda0dSAndy Whitcroft				$av_preprocessor = 0;
8466c72ffaaSAndy Whitcroft			}
8476c72ffaaSAndy Whitcroft
848e91b6e26SAndy Whitcroft		} elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\(|\s*$)/) {
849c2fdda0dSAndy Whitcroft			print "DECLARE($1)\n" if ($dbg_values > 1);
8506c72ffaaSAndy Whitcroft			$type = 'T';
8516c72ffaaSAndy Whitcroft
852389a2fe5SAndy Whitcroft		} elsif ($cur =~ /^($Modifier)\s*/) {
853389a2fe5SAndy Whitcroft			print "MODIFIER($1)\n" if ($dbg_values > 1);
854389a2fe5SAndy Whitcroft			$type = 'T';
855389a2fe5SAndy Whitcroft
856c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) {
857171ae1a4SAndy Whitcroft			print "DEFINE($1,$2)\n" if ($dbg_values > 1);
858c2fdda0dSAndy Whitcroft			$av_preprocessor = 1;
859171ae1a4SAndy Whitcroft			push(@av_paren_type, $type);
860171ae1a4SAndy Whitcroft			if ($2 ne '') {
861cf655043SAndy Whitcroft				$av_pending = 'N';
862171ae1a4SAndy Whitcroft			}
863171ae1a4SAndy Whitcroft			$type = 'E';
864171ae1a4SAndy Whitcroft
865c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*(?:undef\s*$Ident|include\b))/o) {
866171ae1a4SAndy Whitcroft			print "UNDEF($1)\n" if ($dbg_values > 1);
867171ae1a4SAndy Whitcroft			$av_preprocessor = 1;
868171ae1a4SAndy Whitcroft			push(@av_paren_type, $type);
8696c72ffaaSAndy Whitcroft
870c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*(?:ifdef|ifndef|if))/o) {
871cf655043SAndy Whitcroft			print "PRE_START($1)\n" if ($dbg_values > 1);
872c2fdda0dSAndy Whitcroft			$av_preprocessor = 1;
873cf655043SAndy Whitcroft
874cf655043SAndy Whitcroft			push(@av_paren_type, $type);
875cf655043SAndy Whitcroft			push(@av_paren_type, $type);
876171ae1a4SAndy Whitcroft			$type = 'E';
877cf655043SAndy Whitcroft
878c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*(?:else|elif))/o) {
879cf655043SAndy Whitcroft			print "PRE_RESTART($1)\n" if ($dbg_values > 1);
880cf655043SAndy Whitcroft			$av_preprocessor = 1;
881cf655043SAndy Whitcroft
882cf655043SAndy Whitcroft			push(@av_paren_type, $av_paren_type[$#av_paren_type]);
883cf655043SAndy Whitcroft
884171ae1a4SAndy Whitcroft			$type = 'E';
885cf655043SAndy Whitcroft
886c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*(?:endif))/o) {
887cf655043SAndy Whitcroft			print "PRE_END($1)\n" if ($dbg_values > 1);
888cf655043SAndy Whitcroft
889cf655043SAndy Whitcroft			$av_preprocessor = 1;
890cf655043SAndy Whitcroft
891cf655043SAndy Whitcroft			# Assume all arms of the conditional end as this
892cf655043SAndy Whitcroft			# one does, and continue as if the #endif was not here.
893cf655043SAndy Whitcroft			pop(@av_paren_type);
894cf655043SAndy Whitcroft			push(@av_paren_type, $type);
895171ae1a4SAndy Whitcroft			$type = 'E';
8966c72ffaaSAndy Whitcroft
8976c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^(\\\n)/o) {
898c2fdda0dSAndy Whitcroft			print "PRECONT($1)\n" if ($dbg_values > 1);
8996c72ffaaSAndy Whitcroft
900171ae1a4SAndy Whitcroft		} elsif ($cur =~ /^(__attribute__)\s*\(?/o) {
901171ae1a4SAndy Whitcroft			print "ATTR($1)\n" if ($dbg_values > 1);
902171ae1a4SAndy Whitcroft			$av_pending = $type;
903171ae1a4SAndy Whitcroft			$type = 'N';
904171ae1a4SAndy Whitcroft
9056c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
906c2fdda0dSAndy Whitcroft			print "SIZEOF($1)\n" if ($dbg_values > 1);
9076c72ffaaSAndy Whitcroft			if (defined $2) {
908cf655043SAndy Whitcroft				$av_pending = 'V';
9096c72ffaaSAndy Whitcroft			}
9106c72ffaaSAndy Whitcroft			$type = 'N';
9116c72ffaaSAndy Whitcroft
91214b111c1SAndy Whitcroft		} elsif ($cur =~ /^(if|while|for)\b/o) {
913c2fdda0dSAndy Whitcroft			print "COND($1)\n" if ($dbg_values > 1);
91414b111c1SAndy Whitcroft			$av_pending = 'E';
9156c72ffaaSAndy Whitcroft			$type = 'N';
9166c72ffaaSAndy Whitcroft
9171f65f947SAndy Whitcroft		} elsif ($cur =~/^(case)/o) {
9181f65f947SAndy Whitcroft			print "CASE($1)\n" if ($dbg_values > 1);
9191f65f947SAndy Whitcroft			$av_pend_colon = 'C';
9201f65f947SAndy Whitcroft			$type = 'N';
9211f65f947SAndy Whitcroft
92214b111c1SAndy Whitcroft		} elsif ($cur =~/^(return|else|goto|typeof|__typeof__)\b/o) {
923c2fdda0dSAndy Whitcroft			print "KEYWORD($1)\n" if ($dbg_values > 1);
9246c72ffaaSAndy Whitcroft			$type = 'N';
9256c72ffaaSAndy Whitcroft
9266c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^(\()/o) {
927c2fdda0dSAndy Whitcroft			print "PAREN('$1')\n" if ($dbg_values > 1);
928cf655043SAndy Whitcroft			push(@av_paren_type, $av_pending);
929cf655043SAndy Whitcroft			$av_pending = '_';
9306c72ffaaSAndy Whitcroft			$type = 'N';
9316c72ffaaSAndy Whitcroft
9326c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^(\))/o) {
933cf655043SAndy Whitcroft			my $new_type = pop(@av_paren_type);
934cf655043SAndy Whitcroft			if ($new_type ne '_') {
935cf655043SAndy Whitcroft				$type = $new_type;
936c2fdda0dSAndy Whitcroft				print "PAREN('$1') -> $type\n"
937c2fdda0dSAndy Whitcroft							if ($dbg_values > 1);
9386c72ffaaSAndy Whitcroft			} else {
939c2fdda0dSAndy Whitcroft				print "PAREN('$1')\n" if ($dbg_values > 1);
9406c72ffaaSAndy Whitcroft			}
9416c72ffaaSAndy Whitcroft
942c8cb2ca3SAndy Whitcroft		} elsif ($cur =~ /^($Ident)\s*\(/o) {
943c2fdda0dSAndy Whitcroft			print "FUNC($1)\n" if ($dbg_values > 1);
944c8cb2ca3SAndy Whitcroft			$type = 'V';
945cf655043SAndy Whitcroft			$av_pending = 'V';
9466c72ffaaSAndy Whitcroft
9478e761b04SAndy Whitcroft		} elsif ($cur =~ /^($Ident\s*):(?:\s*\d+\s*(,|=|;))?/) {
9488e761b04SAndy Whitcroft			if (defined $2 && $type eq 'C' || $type eq 'T') {
9491f65f947SAndy Whitcroft				$av_pend_colon = 'B';
9508e761b04SAndy Whitcroft			} elsif ($type eq 'E') {
9518e761b04SAndy Whitcroft				$av_pend_colon = 'L';
9521f65f947SAndy Whitcroft			}
9531f65f947SAndy Whitcroft			print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1);
9541f65f947SAndy Whitcroft			$type = 'V';
9551f65f947SAndy Whitcroft
9566c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^($Ident|$Constant)/o) {
957c2fdda0dSAndy Whitcroft			print "IDENT($1)\n" if ($dbg_values > 1);
9586c72ffaaSAndy Whitcroft			$type = 'V';
9596c72ffaaSAndy Whitcroft
9606c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^($Assignment)/o) {
961c2fdda0dSAndy Whitcroft			print "ASSIGN($1)\n" if ($dbg_values > 1);
9626c72ffaaSAndy Whitcroft			$type = 'N';
9636c72ffaaSAndy Whitcroft
964cf655043SAndy Whitcroft		} elsif ($cur =~/^(;|{|})/) {
965c2fdda0dSAndy Whitcroft			print "END($1)\n" if ($dbg_values > 1);
96613214adfSAndy Whitcroft			$type = 'E';
9671f65f947SAndy Whitcroft			$av_pend_colon = 'O';
96813214adfSAndy Whitcroft
9698e761b04SAndy Whitcroft		} elsif ($cur =~/^(,)/) {
9708e761b04SAndy Whitcroft			print "COMMA($1)\n" if ($dbg_values > 1);
9718e761b04SAndy Whitcroft			$type = 'C';
9728e761b04SAndy Whitcroft
9731f65f947SAndy Whitcroft		} elsif ($cur =~ /^(\?)/o) {
9741f65f947SAndy Whitcroft			print "QUESTION($1)\n" if ($dbg_values > 1);
9751f65f947SAndy Whitcroft			$type = 'N';
9761f65f947SAndy Whitcroft
9771f65f947SAndy Whitcroft		} elsif ($cur =~ /^(:)/o) {
9781f65f947SAndy Whitcroft			print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1);
9791f65f947SAndy Whitcroft
9801f65f947SAndy Whitcroft			substr($var, length($res), 1, $av_pend_colon);
9811f65f947SAndy Whitcroft			if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') {
9821f65f947SAndy Whitcroft				$type = 'E';
9831f65f947SAndy Whitcroft			} else {
9841f65f947SAndy Whitcroft				$type = 'N';
9851f65f947SAndy Whitcroft			}
9861f65f947SAndy Whitcroft			$av_pend_colon = 'O';
9871f65f947SAndy Whitcroft
9888e761b04SAndy Whitcroft		} elsif ($cur =~ /^(\[)/o) {
98913214adfSAndy Whitcroft			print "CLOSE($1)\n" if ($dbg_values > 1);
9906c72ffaaSAndy Whitcroft			$type = 'N';
9916c72ffaaSAndy Whitcroft
9920d413866SAndy Whitcroft		} elsif ($cur =~ /^(-(?![->])|\+(?!\+)|\*|\&\&|\&)/o) {
99374048ed8SAndy Whitcroft			my $variant;
99474048ed8SAndy Whitcroft
99574048ed8SAndy Whitcroft			print "OPV($1)\n" if ($dbg_values > 1);
99674048ed8SAndy Whitcroft			if ($type eq 'V') {
99774048ed8SAndy Whitcroft				$variant = 'B';
99874048ed8SAndy Whitcroft			} else {
99974048ed8SAndy Whitcroft				$variant = 'U';
100074048ed8SAndy Whitcroft			}
100174048ed8SAndy Whitcroft
100274048ed8SAndy Whitcroft			substr($var, length($res), 1, $variant);
100374048ed8SAndy Whitcroft			$type = 'N';
100474048ed8SAndy Whitcroft
10056c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^($Operators)/o) {
1006c2fdda0dSAndy Whitcroft			print "OP($1)\n" if ($dbg_values > 1);
10076c72ffaaSAndy Whitcroft			if ($1 ne '++' && $1 ne '--') {
10086c72ffaaSAndy Whitcroft				$type = 'N';
10096c72ffaaSAndy Whitcroft			}
10106c72ffaaSAndy Whitcroft
10116c72ffaaSAndy Whitcroft		} elsif ($cur =~ /(^.)/o) {
1012c2fdda0dSAndy Whitcroft			print "C($1)\n" if ($dbg_values > 1);
10136c72ffaaSAndy Whitcroft		}
10146c72ffaaSAndy Whitcroft		if (defined $1) {
10156c72ffaaSAndy Whitcroft			$cur = substr($cur, length($1));
10166c72ffaaSAndy Whitcroft			$res .= $type x length($1);
10176c72ffaaSAndy Whitcroft		}
10186c72ffaaSAndy Whitcroft	}
10196c72ffaaSAndy Whitcroft
10201f65f947SAndy Whitcroft	return ($res, $var);
10216c72ffaaSAndy Whitcroft}
10226c72ffaaSAndy Whitcroft
10238905a67cSAndy Whitcroftsub possible {
102413214adfSAndy Whitcroft	my ($possible, $line) = @_;
10259a974fdbSAndy Whitcroft	my $notPermitted = qr{(?:
10260776e594SAndy Whitcroft		^(?:
10270776e594SAndy Whitcroft			$Modifier|
10280776e594SAndy Whitcroft			$Storage|
10290776e594SAndy Whitcroft			$Type|
10309a974fdbSAndy Whitcroft			DEFINE_\S+
10319a974fdbSAndy Whitcroft		)$|
10329a974fdbSAndy Whitcroft		^(?:
10330776e594SAndy Whitcroft			goto|
10340776e594SAndy Whitcroft			return|
10350776e594SAndy Whitcroft			case|
10360776e594SAndy Whitcroft			else|
10370776e594SAndy Whitcroft			asm|__asm__|
10380776e594SAndy Whitcroft			do
10399a974fdbSAndy Whitcroft		)(?:\s|$)|
10400776e594SAndy Whitcroft		^(?:typedef|struct|enum)\b
10419a974fdbSAndy Whitcroft	    )}x;
10429a974fdbSAndy Whitcroft	warn "CHECK<$possible> ($line)\n" if ($dbg_possible > 2);
10439a974fdbSAndy Whitcroft	if ($possible !~ $notPermitted) {
1044c45dcabdSAndy Whitcroft		# Check for modifiers.
1045c45dcabdSAndy Whitcroft		$possible =~ s/\s*$Storage\s*//g;
1046c45dcabdSAndy Whitcroft		$possible =~ s/\s*$Sparse\s*//g;
1047c45dcabdSAndy Whitcroft		if ($possible =~ /^\s*$/) {
1048c45dcabdSAndy Whitcroft
1049c45dcabdSAndy Whitcroft		} elsif ($possible =~ /\s/) {
1050c45dcabdSAndy Whitcroft			$possible =~ s/\s*$Type\s*//g;
1051d2506586SAndy Whitcroft			for my $modifier (split(' ', $possible)) {
10529a974fdbSAndy Whitcroft				if ($modifier !~ $notPermitted) {
1053d2506586SAndy Whitcroft					warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
1054d2506586SAndy Whitcroft					push(@modifierList, $modifier);
1055d2506586SAndy Whitcroft				}
10569a974fdbSAndy Whitcroft			}
1057c45dcabdSAndy Whitcroft
1058c45dcabdSAndy Whitcroft		} else {
105913214adfSAndy Whitcroft			warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
10608905a67cSAndy Whitcroft			push(@typeList, $possible);
1061c45dcabdSAndy Whitcroft		}
10628905a67cSAndy Whitcroft		build_types();
10630776e594SAndy Whitcroft	} else {
10640776e594SAndy Whitcroft		warn "NOTPOSS: $possible ($line)\n" if ($dbg_possible > 1);
10658905a67cSAndy Whitcroft	}
10668905a67cSAndy Whitcroft}
10678905a67cSAndy Whitcroft
10686c72ffaaSAndy Whitcroftmy $prefix = '';
10696c72ffaaSAndy Whitcroft
1070f0a594c1SAndy Whitcroftsub report {
1071773647a0SAndy Whitcroft	if (defined $tst_only && $_[0] !~ /\Q$tst_only\E/) {
1072773647a0SAndy Whitcroft		return 0;
1073773647a0SAndy Whitcroft	}
10748905a67cSAndy Whitcroft	my $line = $prefix . $_[0];
10758905a67cSAndy Whitcroft
10768905a67cSAndy Whitcroft	$line = (split('\n', $line))[0] . "\n" if ($terse);
10778905a67cSAndy Whitcroft
107813214adfSAndy Whitcroft	push(our @report, $line);
1079773647a0SAndy Whitcroft
1080773647a0SAndy Whitcroft	return 1;
1081f0a594c1SAndy Whitcroft}
1082f0a594c1SAndy Whitcroftsub report_dump {
108313214adfSAndy Whitcroft	our @report;
1084f0a594c1SAndy Whitcroft}
1085de7d4f0eSAndy Whitcroftsub ERROR {
1086773647a0SAndy Whitcroft	if (report("ERROR: $_[0]\n")) {
1087de7d4f0eSAndy Whitcroft		our $clean = 0;
10886c72ffaaSAndy Whitcroft		our $cnt_error++;
1089de7d4f0eSAndy Whitcroft	}
1090773647a0SAndy Whitcroft}
1091de7d4f0eSAndy Whitcroftsub WARN {
1092773647a0SAndy Whitcroft	if (report("WARNING: $_[0]\n")) {
1093de7d4f0eSAndy Whitcroft		our $clean = 0;
10946c72ffaaSAndy Whitcroft		our $cnt_warn++;
1095de7d4f0eSAndy Whitcroft	}
1096773647a0SAndy Whitcroft}
1097de7d4f0eSAndy Whitcroftsub CHK {
1098773647a0SAndy Whitcroft	if ($check && report("CHECK: $_[0]\n")) {
1099de7d4f0eSAndy Whitcroft		our $clean = 0;
11006c72ffaaSAndy Whitcroft		our $cnt_chk++;
11016c72ffaaSAndy Whitcroft	}
1102de7d4f0eSAndy Whitcroft}
1103de7d4f0eSAndy Whitcroft
11046ecd9674SAndy Whitcroftsub check_absolute_file {
11056ecd9674SAndy Whitcroft	my ($absolute, $herecurr) = @_;
11066ecd9674SAndy Whitcroft	my $file = $absolute;
11076ecd9674SAndy Whitcroft
11086ecd9674SAndy Whitcroft	##print "absolute<$absolute>\n";
11096ecd9674SAndy Whitcroft
11106ecd9674SAndy Whitcroft	# See if any suffix of this path is a path within the tree.
11116ecd9674SAndy Whitcroft	while ($file =~ s@^[^/]*/@@) {
11126ecd9674SAndy Whitcroft		if (-f "$root/$file") {
11136ecd9674SAndy Whitcroft			##print "file<$file>\n";
11146ecd9674SAndy Whitcroft			last;
11156ecd9674SAndy Whitcroft		}
11166ecd9674SAndy Whitcroft	}
11176ecd9674SAndy Whitcroft	if (! -f _)  {
11186ecd9674SAndy Whitcroft		return 0;
11196ecd9674SAndy Whitcroft	}
11206ecd9674SAndy Whitcroft
11216ecd9674SAndy Whitcroft	# It is, so see if the prefix is acceptable.
11226ecd9674SAndy Whitcroft	my $prefix = $absolute;
11236ecd9674SAndy Whitcroft	substr($prefix, -length($file)) = '';
11246ecd9674SAndy Whitcroft
11256ecd9674SAndy Whitcroft	##print "prefix<$prefix>\n";
11266ecd9674SAndy Whitcroft	if ($prefix ne ".../") {
11276ecd9674SAndy Whitcroft		WARN("use relative pathname instead of absolute in changelog text\n" . $herecurr);
11286ecd9674SAndy Whitcroft	}
11296ecd9674SAndy Whitcroft}
11306ecd9674SAndy Whitcroft
11310a920b5bSAndy Whitcroftsub process {
11320a920b5bSAndy Whitcroft	my $filename = shift;
11330a920b5bSAndy Whitcroft
11340a920b5bSAndy Whitcroft	my $linenr=0;
11350a920b5bSAndy Whitcroft	my $prevline="";
1136c2fdda0dSAndy Whitcroft	my $prevrawline="";
11370a920b5bSAndy Whitcroft	my $stashline="";
1138c2fdda0dSAndy Whitcroft	my $stashrawline="";
11390a920b5bSAndy Whitcroft
11404a0df2efSAndy Whitcroft	my $length;
11410a920b5bSAndy Whitcroft	my $indent;
11420a920b5bSAndy Whitcroft	my $previndent=0;
11430a920b5bSAndy Whitcroft	my $stashindent=0;
11440a920b5bSAndy Whitcroft
1145de7d4f0eSAndy Whitcroft	our $clean = 1;
11460a920b5bSAndy Whitcroft	my $signoff = 0;
11470a920b5bSAndy Whitcroft	my $is_patch = 0;
11480a920b5bSAndy Whitcroft
114913214adfSAndy Whitcroft	our @report = ();
11506c72ffaaSAndy Whitcroft	our $cnt_lines = 0;
11516c72ffaaSAndy Whitcroft	our $cnt_error = 0;
11526c72ffaaSAndy Whitcroft	our $cnt_warn = 0;
11536c72ffaaSAndy Whitcroft	our $cnt_chk = 0;
11546c72ffaaSAndy Whitcroft
11550a920b5bSAndy Whitcroft	# Trace the real file/line as we go.
11560a920b5bSAndy Whitcroft	my $realfile = '';
11570a920b5bSAndy Whitcroft	my $realline = 0;
11580a920b5bSAndy Whitcroft	my $realcnt = 0;
11590a920b5bSAndy Whitcroft	my $here = '';
11600a920b5bSAndy Whitcroft	my $in_comment = 0;
1161c2fdda0dSAndy Whitcroft	my $comment_edge = 0;
11620a920b5bSAndy Whitcroft	my $first_line = 0;
11631e855726SWolfram Sang	my $p1_prefix = '';
11640a920b5bSAndy Whitcroft
116513214adfSAndy Whitcroft	my $prev_values = 'E';
116613214adfSAndy Whitcroft
116713214adfSAndy Whitcroft	# suppression flags
1168773647a0SAndy Whitcroft	my %suppress_ifbraces;
1169170d3a22SAndy Whitcroft	my %suppress_whiletrailers;
11702b474a1aSAndy Whitcroft	my %suppress_export;
1171653d4876SAndy Whitcroft
1172c2fdda0dSAndy Whitcroft	# Pre-scan the patch sanitizing the lines.
1173de7d4f0eSAndy Whitcroft	# Pre-scan the patch looking for any __setup documentation.
1174c2fdda0dSAndy Whitcroft	#
1175de7d4f0eSAndy Whitcroft	my @setup_docs = ();
1176de7d4f0eSAndy Whitcroft	my $setup_docs = 0;
1177773647a0SAndy Whitcroft
1178773647a0SAndy Whitcroft	sanitise_line_reset();
1179c2fdda0dSAndy Whitcroft	my $line;
1180c2fdda0dSAndy Whitcroft	foreach my $rawline (@rawlines) {
1181773647a0SAndy Whitcroft		$linenr++;
1182773647a0SAndy Whitcroft		$line = $rawline;
1183c2fdda0dSAndy Whitcroft
1184773647a0SAndy Whitcroft		if ($rawline=~/^\+\+\+\s+(\S+)/) {
1185de7d4f0eSAndy Whitcroft			$setup_docs = 0;
1186de7d4f0eSAndy Whitcroft			if ($1 =~ m@Documentation/kernel-parameters.txt$@) {
1187de7d4f0eSAndy Whitcroft				$setup_docs = 1;
1188de7d4f0eSAndy Whitcroft			}
1189773647a0SAndy Whitcroft			#next;
1190de7d4f0eSAndy Whitcroft		}
1191773647a0SAndy Whitcroft		if ($rawline=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
1192773647a0SAndy Whitcroft			$realline=$1-1;
1193773647a0SAndy Whitcroft			if (defined $2) {
1194773647a0SAndy Whitcroft				$realcnt=$3+1;
1195773647a0SAndy Whitcroft			} else {
1196773647a0SAndy Whitcroft				$realcnt=1+1;
1197773647a0SAndy Whitcroft			}
1198c45dcabdSAndy Whitcroft			$in_comment = 0;
1199773647a0SAndy Whitcroft
1200773647a0SAndy Whitcroft			# Guestimate if this is a continuing comment.  Run
1201773647a0SAndy Whitcroft			# the context looking for a comment "edge".  If this
1202773647a0SAndy Whitcroft			# edge is a close comment then we must be in a comment
1203773647a0SAndy Whitcroft			# at context start.
1204773647a0SAndy Whitcroft			my $edge;
120501fa9147SAndy Whitcroft			my $cnt = $realcnt;
120601fa9147SAndy Whitcroft			for (my $ln = $linenr + 1; $cnt > 0; $ln++) {
120701fa9147SAndy Whitcroft				next if (defined $rawlines[$ln - 1] &&
120801fa9147SAndy Whitcroft					 $rawlines[$ln - 1] =~ /^-/);
120901fa9147SAndy Whitcroft				$cnt--;
121001fa9147SAndy Whitcroft				#print "RAW<$rawlines[$ln - 1]>\n";
1211721c1cb6SAndy Whitcroft				last if (!defined $rawlines[$ln - 1]);
1212fae17daeSAndy Whitcroft				if ($rawlines[$ln - 1] =~ m@(/\*|\*/)@ &&
1213fae17daeSAndy Whitcroft				    $rawlines[$ln - 1] !~ m@"[^"]*(?:/\*|\*/)[^"]*"@) {
1214fae17daeSAndy Whitcroft					($edge) = $1;
1215fae17daeSAndy Whitcroft					last;
1216fae17daeSAndy Whitcroft				}
1217773647a0SAndy Whitcroft			}
1218773647a0SAndy Whitcroft			if (defined $edge && $edge eq '*/') {
1219773647a0SAndy Whitcroft				$in_comment = 1;
1220773647a0SAndy Whitcroft			}
1221773647a0SAndy Whitcroft
1222773647a0SAndy Whitcroft			# Guestimate if this is a continuing comment.  If this
1223773647a0SAndy Whitcroft			# is the start of a diff block and this line starts
1224773647a0SAndy Whitcroft			# ' *' then it is very likely a comment.
1225773647a0SAndy Whitcroft			if (!defined $edge &&
122683242e0cSAndy Whitcroft			    $rawlines[$linenr] =~ m@^.\s*(?:\*\*+| \*)(?:\s|$)@)
1227773647a0SAndy Whitcroft			{
1228773647a0SAndy Whitcroft				$in_comment = 1;
1229773647a0SAndy Whitcroft			}
1230773647a0SAndy Whitcroft
1231773647a0SAndy Whitcroft			##print "COMMENT:$in_comment edge<$edge> $rawline\n";
1232773647a0SAndy Whitcroft			sanitise_line_reset($in_comment);
1233773647a0SAndy Whitcroft
1234171ae1a4SAndy Whitcroft		} elsif ($realcnt && $rawline =~ /^(?:\+| |$)/) {
1235773647a0SAndy Whitcroft			# Standardise the strings and chars within the input to
1236171ae1a4SAndy Whitcroft			# simplify matching -- only bother with positive lines.
1237773647a0SAndy Whitcroft			$line = sanitise_line($rawline);
1238773647a0SAndy Whitcroft		}
1239773647a0SAndy Whitcroft		push(@lines, $line);
1240773647a0SAndy Whitcroft
1241773647a0SAndy Whitcroft		if ($realcnt > 1) {
1242773647a0SAndy Whitcroft			$realcnt-- if ($line =~ /^(?:\+| |$)/);
1243773647a0SAndy Whitcroft		} else {
1244773647a0SAndy Whitcroft			$realcnt = 0;
1245773647a0SAndy Whitcroft		}
1246773647a0SAndy Whitcroft
1247773647a0SAndy Whitcroft		#print "==>$rawline\n";
1248773647a0SAndy Whitcroft		#print "-->$line\n";
1249de7d4f0eSAndy Whitcroft
1250de7d4f0eSAndy Whitcroft		if ($setup_docs && $line =~ /^\+/) {
1251de7d4f0eSAndy Whitcroft			push(@setup_docs, $line);
1252de7d4f0eSAndy Whitcroft		}
1253de7d4f0eSAndy Whitcroft	}
1254de7d4f0eSAndy Whitcroft
12556c72ffaaSAndy Whitcroft	$prefix = '';
12566c72ffaaSAndy Whitcroft
1257773647a0SAndy Whitcroft	$realcnt = 0;
1258773647a0SAndy Whitcroft	$linenr = 0;
12590a920b5bSAndy Whitcroft	foreach my $line (@lines) {
12600a920b5bSAndy Whitcroft		$linenr++;
12610a920b5bSAndy Whitcroft
1262c2fdda0dSAndy Whitcroft		my $rawline = $rawlines[$linenr - 1];
12636c72ffaaSAndy Whitcroft
12640a920b5bSAndy Whitcroft#extract the line range in the file after the patch is applied
12656c72ffaaSAndy Whitcroft		if ($line=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
12660a920b5bSAndy Whitcroft			$is_patch = 1;
12674a0df2efSAndy Whitcroft			$first_line = $linenr + 1;
12680a920b5bSAndy Whitcroft			$realline=$1-1;
12690a920b5bSAndy Whitcroft			if (defined $2) {
12700a920b5bSAndy Whitcroft				$realcnt=$3+1;
12710a920b5bSAndy Whitcroft			} else {
12720a920b5bSAndy Whitcroft				$realcnt=1+1;
12730a920b5bSAndy Whitcroft			}
1274c2fdda0dSAndy Whitcroft			annotate_reset();
127513214adfSAndy Whitcroft			$prev_values = 'E';
127613214adfSAndy Whitcroft
1277773647a0SAndy Whitcroft			%suppress_ifbraces = ();
1278170d3a22SAndy Whitcroft			%suppress_whiletrailers = ();
12792b474a1aSAndy Whitcroft			%suppress_export = ();
12800a920b5bSAndy Whitcroft			next;
12810a920b5bSAndy Whitcroft
12824a0df2efSAndy Whitcroft# track the line number as we move through the hunk, note that
12834a0df2efSAndy Whitcroft# new versions of GNU diff omit the leading space on completely
12844a0df2efSAndy Whitcroft# blank context lines so we need to count that too.
1285773647a0SAndy Whitcroft		} elsif ($line =~ /^( |\+|$)/) {
12860a920b5bSAndy Whitcroft			$realline++;
1287d8aaf121SAndy Whitcroft			$realcnt-- if ($realcnt != 0);
12880a920b5bSAndy Whitcroft
12894a0df2efSAndy Whitcroft			# Measure the line length and indent.
1290c2fdda0dSAndy Whitcroft			($length, $indent) = line_stats($rawline);
12910a920b5bSAndy Whitcroft
12920a920b5bSAndy Whitcroft			# Track the previous line.
12930a920b5bSAndy Whitcroft			($prevline, $stashline) = ($stashline, $line);
12940a920b5bSAndy Whitcroft			($previndent, $stashindent) = ($stashindent, $indent);
1295c2fdda0dSAndy Whitcroft			($prevrawline, $stashrawline) = ($stashrawline, $rawline);
1296c2fdda0dSAndy Whitcroft
1297773647a0SAndy Whitcroft			#warn "line<$line>\n";
12986c72ffaaSAndy Whitcroft
1299d8aaf121SAndy Whitcroft		} elsif ($realcnt == 1) {
1300d8aaf121SAndy Whitcroft			$realcnt--;
13010a920b5bSAndy Whitcroft		}
13020a920b5bSAndy Whitcroft
1303cc77cdcaSAndy Whitcroft		my $hunk_line = ($realcnt != 0);
1304cc77cdcaSAndy Whitcroft
13050a920b5bSAndy Whitcroft#make up the handle for any error we report on this line
1306773647a0SAndy Whitcroft		$prefix = "$filename:$realline: " if ($emacs && $file);
1307773647a0SAndy Whitcroft		$prefix = "$filename:$linenr: " if ($emacs && !$file);
1308773647a0SAndy Whitcroft
13096c72ffaaSAndy Whitcroft		$here = "#$linenr: " if (!$file);
13106c72ffaaSAndy Whitcroft		$here = "#$realline: " if ($file);
1311773647a0SAndy Whitcroft
1312773647a0SAndy Whitcroft		# extract the filename as it passes
1313773647a0SAndy Whitcroft		if ($line=~/^\+\+\+\s+(\S+)/) {
1314773647a0SAndy Whitcroft			$realfile = $1;
13151e855726SWolfram Sang			$realfile =~ s@^([^/]*)/@@;
13161e855726SWolfram Sang
13171e855726SWolfram Sang			$p1_prefix = $1;
1318e2f7aa4bSAndy Whitcroft			if (!$file && $tree && $p1_prefix ne '' &&
1319e2f7aa4bSAndy Whitcroft			    -e "$root/$p1_prefix") {
13201e855726SWolfram Sang				WARN("patch prefix '$p1_prefix' exists, appears to be a -p0 patch\n");
13211e855726SWolfram Sang			}
1322773647a0SAndy Whitcroft
1323c1ab3326SAndy Whitcroft			if ($realfile =~ m@^include/asm/@) {
1324773647a0SAndy Whitcroft				ERROR("do not modify files in include/asm, change architecture specific files in include/asm-<architecture>\n" . "$here$rawline\n");
1325773647a0SAndy Whitcroft			}
1326773647a0SAndy Whitcroft			next;
1327773647a0SAndy Whitcroft		}
1328773647a0SAndy Whitcroft
1329389834b6SRandy Dunlap		$here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
13300a920b5bSAndy Whitcroft
1331c2fdda0dSAndy Whitcroft		my $hereline = "$here\n$rawline\n";
1332c2fdda0dSAndy Whitcroft		my $herecurr = "$here\n$rawline\n";
1333c2fdda0dSAndy Whitcroft		my $hereprev = "$here\n$prevrawline\n$rawline\n";
13340a920b5bSAndy Whitcroft
13356c72ffaaSAndy Whitcroft		$cnt_lines++ if ($realcnt != 0);
13366c72ffaaSAndy Whitcroft
13370a920b5bSAndy Whitcroft#check the patch for a signoff:
1338d8aaf121SAndy Whitcroft		if ($line =~ /^\s*signed-off-by:/i) {
13394a0df2efSAndy Whitcroft			# This is a signoff, if ugly, so do not double report.
13404a0df2efSAndy Whitcroft			$signoff++;
13410a920b5bSAndy Whitcroft			if (!($line =~ /^\s*Signed-off-by:/)) {
1342de7d4f0eSAndy Whitcroft				WARN("Signed-off-by: is the preferred form\n" .
1343de7d4f0eSAndy Whitcroft					$herecurr);
13440a920b5bSAndy Whitcroft			}
13450a920b5bSAndy Whitcroft			if ($line =~ /^\s*signed-off-by:\S/i) {
1346773647a0SAndy Whitcroft				WARN("space required after Signed-off-by:\n" .
1347de7d4f0eSAndy Whitcroft					$herecurr);
13480a920b5bSAndy Whitcroft			}
13490a920b5bSAndy Whitcroft		}
13500a920b5bSAndy Whitcroft
135100df344fSAndy Whitcroft# Check for wrappage within a valid hunk of the file
13528905a67cSAndy Whitcroft		if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) {
1353de7d4f0eSAndy Whitcroft			ERROR("patch seems to be corrupt (line wrapped?)\n" .
13546c72ffaaSAndy Whitcroft				$herecurr) if (!$emitted_corrupt++);
1355de7d4f0eSAndy Whitcroft		}
1356de7d4f0eSAndy Whitcroft
13576ecd9674SAndy Whitcroft# Check for absolute kernel paths.
13586ecd9674SAndy Whitcroft		if ($tree) {
13596ecd9674SAndy Whitcroft			while ($line =~ m{(?:^|\s)(/\S*)}g) {
13606ecd9674SAndy Whitcroft				my $file = $1;
13616ecd9674SAndy Whitcroft
13626ecd9674SAndy Whitcroft				if ($file =~ m{^(.*?)(?::\d+)+:?$} &&
13636ecd9674SAndy Whitcroft				    check_absolute_file($1, $herecurr)) {
13646ecd9674SAndy Whitcroft					#
13656ecd9674SAndy Whitcroft				} else {
13666ecd9674SAndy Whitcroft					check_absolute_file($file, $herecurr);
13676ecd9674SAndy Whitcroft				}
13686ecd9674SAndy Whitcroft			}
13696ecd9674SAndy Whitcroft		}
13706ecd9674SAndy Whitcroft
1371de7d4f0eSAndy Whitcroft# UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
1372de7d4f0eSAndy Whitcroft		if (($realfile =~ /^$/ || $line =~ /^\+/) &&
1373171ae1a4SAndy Whitcroft		    $rawline !~ m/^$UTF8*$/) {
1374171ae1a4SAndy Whitcroft			my ($utf8_prefix) = ($rawline =~ /^($UTF8*)/);
1375171ae1a4SAndy Whitcroft
1376171ae1a4SAndy Whitcroft			my $blank = copy_spacing($rawline);
1377171ae1a4SAndy Whitcroft			my $ptr = substr($blank, 0, length($utf8_prefix)) . "^";
1378171ae1a4SAndy Whitcroft			my $hereptr = "$hereline$ptr\n";
1379171ae1a4SAndy Whitcroft
1380171ae1a4SAndy Whitcroft			ERROR("Invalid UTF-8, patch and commit message should be encoded in UTF-8\n" . $hereptr);
138100df344fSAndy Whitcroft		}
13820a920b5bSAndy Whitcroft
138330670854SAndy Whitcroft# ignore non-hunk lines and lines being removed
138430670854SAndy Whitcroft		next if (!$hunk_line || $line =~ /^-/);
138500df344fSAndy Whitcroft
13860a920b5bSAndy Whitcroft#trailing whitespace
13879c0ca6f9SAndy Whitcroft		if ($line =~ /^\+.*\015/) {
1388c2fdda0dSAndy Whitcroft			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
13899c0ca6f9SAndy Whitcroft			ERROR("DOS line endings\n" . $herevet);
13909c0ca6f9SAndy Whitcroft
1391c2fdda0dSAndy Whitcroft		} elsif ($rawline =~ /^\+.*\S\s+$/ || $rawline =~ /^\+\s+$/) {
1392c2fdda0dSAndy Whitcroft			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
1393de7d4f0eSAndy Whitcroft			ERROR("trailing whitespace\n" . $herevet);
1394d2c0a235SAndy Whitcroft			$rpt_cleaners = 1;
13950a920b5bSAndy Whitcroft		}
13965368df20SAndy Whitcroft
13973354957aSAndi Kleen# check for Kconfig help text having a real description
13983354957aSAndi Kleen		if ($realfile =~ /Kconfig/ &&
13993354957aSAndi Kleen		    $line =~ /\+?\s*(---)?help(---)?$/) {
14003354957aSAndi Kleen			my $length = 0;
14013354957aSAndi Kleen			for (my $l = $linenr; defined($lines[$l]); $l++) {
14023354957aSAndi Kleen				my $f = $lines[$l];
14033354957aSAndi Kleen				$f =~ s/#.*//;
14043354957aSAndi Kleen				$f =~ s/^\s+//;
14053354957aSAndi Kleen				next if ($f =~ /^$/);
14063354957aSAndi Kleen				last if ($f =~ /^\s*config\s/);
14073354957aSAndi Kleen				$length++;
14083354957aSAndi Kleen			}
14093354957aSAndi Kleen			WARN("please write a paragraph that describes the config symbol fully\n" . $herecurr) if ($length < 4);
14103354957aSAndi Kleen		}
14113354957aSAndi Kleen
14125368df20SAndy Whitcroft# check we are in a valid source file if not then ignore this hunk
14135368df20SAndy Whitcroft		next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/);
14145368df20SAndy Whitcroft
14150a920b5bSAndy Whitcroft#80 column limit
1416c45dcabdSAndy Whitcroft		if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ &&
1417f4c014c0SAndy Whitcroft		    $rawline !~ /^.\s*\*\s*\@$Ident\s/ &&
14188bbea968SJoe Perches		    !($line =~ /^\+\s*$logFunctions\s*\(\s*(?:(KERN_\S+\s*|[^"]*))?"[X\t]*"\s*(?:,|\)\s*;)\s*$/ ||
14198bbea968SJoe Perches		    $line =~ /^\+\s*"[^"]*"\s*(?:\s*|,|\)\s*;)\s*$/) &&
1420f4c014c0SAndy Whitcroft		    $length > 80)
1421c45dcabdSAndy Whitcroft		{
1422de7d4f0eSAndy Whitcroft			WARN("line over 80 characters\n" . $herecurr);
14230a920b5bSAndy Whitcroft		}
14240a920b5bSAndy Whitcroft
14255e79d96eSJoe Perches# check for spaces before a quoted newline
14265e79d96eSJoe Perches		if ($rawline =~ /^.*\".*\s\\n/) {
14275e79d96eSJoe Perches			WARN("unnecessary whitespace before a quoted newline\n" . $herecurr);
14285e79d96eSJoe Perches		}
14295e79d96eSJoe Perches
14308905a67cSAndy Whitcroft# check for adding lines without a newline.
14318905a67cSAndy Whitcroft		if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
14328905a67cSAndy Whitcroft			WARN("adding a line without newline at end of file\n" . $herecurr);
14338905a67cSAndy Whitcroft		}
14348905a67cSAndy Whitcroft
143542e41c54SMike Frysinger# Blackfin: use hi/lo macros
143642e41c54SMike Frysinger		if ($realfile =~ m@arch/blackfin/.*\.S$@) {
143742e41c54SMike Frysinger			if ($line =~ /\.[lL][[:space:]]*=.*&[[:space:]]*0x[fF][fF][fF][fF]/) {
143842e41c54SMike Frysinger				my $herevet = "$here\n" . cat_vet($line) . "\n";
143942e41c54SMike Frysinger				ERROR("use the LO() macro, not (... & 0xFFFF)\n" . $herevet);
144042e41c54SMike Frysinger			}
144142e41c54SMike Frysinger			if ($line =~ /\.[hH][[:space:]]*=.*>>[[:space:]]*16/) {
144242e41c54SMike Frysinger				my $herevet = "$here\n" . cat_vet($line) . "\n";
144342e41c54SMike Frysinger				ERROR("use the HI() macro, not (... >> 16)\n" . $herevet);
144442e41c54SMike Frysinger			}
144542e41c54SMike Frysinger		}
144642e41c54SMike Frysinger
1447b9ea10d6SAndy Whitcroft# check we are in a valid source file C or perl if not then ignore this hunk
1448b9ea10d6SAndy Whitcroft		next if ($realfile !~ /\.(h|c|pl)$/);
14490a920b5bSAndy Whitcroft
14500a920b5bSAndy Whitcroft# at the beginning of a line any tabs must come first and anything
14510a920b5bSAndy Whitcroft# more than 8 must use tabs.
1452c2fdda0dSAndy Whitcroft		if ($rawline =~ /^\+\s* \t\s*\S/ ||
1453c2fdda0dSAndy Whitcroft		    $rawline =~ /^\+\s*        \s*/) {
1454c2fdda0dSAndy Whitcroft			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
1455171ae1a4SAndy Whitcroft			ERROR("code indent should use tabs where possible\n" . $herevet);
1456d2c0a235SAndy Whitcroft			$rpt_cleaners = 1;
14570a920b5bSAndy Whitcroft		}
14580a920b5bSAndy Whitcroft
145908e44365SAlberto Panizzo# check for space before tabs.
146008e44365SAlberto Panizzo		if ($rawline =~ /^\+/ && $rawline =~ / \t/) {
146108e44365SAlberto Panizzo			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
146208e44365SAlberto Panizzo			WARN("please, no space before tabs\n" . $herevet);
146308e44365SAlberto Panizzo		}
146408e44365SAlberto Panizzo
14655f7ddae6SRaffaele Recalcati# check for spaces at the beginning of a line.
14666b4c5bebSAndy Whitcroft# Exceptions:
14676b4c5bebSAndy Whitcroft#  1) within comments
14686b4c5bebSAndy Whitcroft#  2) indented preprocessor commands
14696b4c5bebSAndy Whitcroft#  3) hanging labels
14706b4c5bebSAndy Whitcroft		if ($rawline =~ /^\+ / && $line !~ /\+ *(?:$;|#|$Ident:)/)  {
14715f7ddae6SRaffaele Recalcati			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
14726b4c5bebSAndy Whitcroft			WARN("please, no spaces at the start of a line\n" . $herevet);
14735f7ddae6SRaffaele Recalcati		}
14745f7ddae6SRaffaele Recalcati
1475b9ea10d6SAndy Whitcroft# check we are in a valid C source file if not then ignore this hunk
1476b9ea10d6SAndy Whitcroft		next if ($realfile !~ /\.(h|c)$/);
1477b9ea10d6SAndy Whitcroft
1478c2fdda0dSAndy Whitcroft# check for RCS/CVS revision markers
1479cf655043SAndy Whitcroft		if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) {
1480c2fdda0dSAndy Whitcroft			WARN("CVS style keyword markers, these will _not_ be updated\n". $herecurr);
1481c2fdda0dSAndy Whitcroft		}
148222f2a2efSAndy Whitcroft
148342e41c54SMike Frysinger# Blackfin: don't use __builtin_bfin_[cs]sync
148442e41c54SMike Frysinger		if ($line =~ /__builtin_bfin_csync/) {
148542e41c54SMike Frysinger			my $herevet = "$here\n" . cat_vet($line) . "\n";
148642e41c54SMike Frysinger			ERROR("use the CSYNC() macro in asm/blackfin.h\n" . $herevet);
148742e41c54SMike Frysinger		}
148842e41c54SMike Frysinger		if ($line =~ /__builtin_bfin_ssync/) {
148942e41c54SMike Frysinger			my $herevet = "$here\n" . cat_vet($line) . "\n";
149042e41c54SMike Frysinger			ERROR("use the SSYNC() macro in asm/blackfin.h\n" . $herevet);
149142e41c54SMike Frysinger		}
149242e41c54SMike Frysinger
14939c0ca6f9SAndy Whitcroft# Check for potential 'bare' types
14942b474a1aSAndy Whitcroft		my ($stat, $cond, $line_nr_next, $remain_next, $off_next,
14952b474a1aSAndy Whitcroft		    $realline_next);
14969c9ba34eSAndy Whitcroft		if ($realcnt && $line =~ /.\s*\S/) {
1497170d3a22SAndy Whitcroft			($stat, $cond, $line_nr_next, $remain_next, $off_next) =
1498f5fe35ddSAndy Whitcroft				ctx_statement_block($linenr, $realcnt, 0);
1499171ae1a4SAndy Whitcroft			$stat =~ s/\n./\n /g;
1500171ae1a4SAndy Whitcroft			$cond =~ s/\n./\n /g;
1501171ae1a4SAndy Whitcroft
15022b474a1aSAndy Whitcroft			# Find the real next line.
15032b474a1aSAndy Whitcroft			$realline_next = $line_nr_next;
15042b474a1aSAndy Whitcroft			if (defined $realline_next &&
15052b474a1aSAndy Whitcroft			    (!defined $lines[$realline_next - 1] ||
15062b474a1aSAndy Whitcroft			     substr($lines[$realline_next - 1], $off_next) =~ /^\s*$/)) {
15072b474a1aSAndy Whitcroft				$realline_next++;
15082b474a1aSAndy Whitcroft			}
15092b474a1aSAndy Whitcroft
1510171ae1a4SAndy Whitcroft			my $s = $stat;
1511171ae1a4SAndy Whitcroft			$s =~ s/{.*$//s;
1512cf655043SAndy Whitcroft
1513c2fdda0dSAndy Whitcroft			# Ignore goto labels.
1514171ae1a4SAndy Whitcroft			if ($s =~ /$Ident:\*$/s) {
1515c2fdda0dSAndy Whitcroft
1516c2fdda0dSAndy Whitcroft			# Ignore functions being called
1517171ae1a4SAndy Whitcroft			} elsif ($s =~ /^.\s*$Ident\s*\(/s) {
1518c2fdda0dSAndy Whitcroft
1519463f2864SAndy Whitcroft			} elsif ($s =~ /^.\s*else\b/s) {
1520463f2864SAndy Whitcroft
1521c45dcabdSAndy Whitcroft			# declarations always start with types
1522d2506586SAndy Whitcroft			} elsif ($prev_values eq 'E' && $s =~ /^.\s*(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?((?:\s*$Ident)+?)\b(?:\s+$Sparse)?\s*\**\s*(?:$Ident|\(\*[^\)]*\))(?:\s*$Modifier)?\s*(?:;|=|,|\()/s) {
1523c45dcabdSAndy Whitcroft				my $type = $1;
1524c45dcabdSAndy Whitcroft				$type =~ s/\s+/ /g;
1525c45dcabdSAndy Whitcroft				possible($type, "A:" . $s);
1526c45dcabdSAndy Whitcroft
15276c72ffaaSAndy Whitcroft			# definitions in global scope can only start with types
1528a6a84062SAndy Whitcroft			} elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b\s*(?!:)/s) {
1529c45dcabdSAndy Whitcroft				possible($1, "B:" . $s);
1530c2fdda0dSAndy Whitcroft			}
15318905a67cSAndy Whitcroft
15326c72ffaaSAndy Whitcroft			# any (foo ... *) is a pointer cast, and foo is a type
153365863862SAndy Whitcroft			while ($s =~ /\(($Ident)(?:\s+$Sparse)*[\s\*]+\s*\)/sg) {
1534c45dcabdSAndy Whitcroft				possible($1, "C:" . $s);
15359c0ca6f9SAndy Whitcroft			}
15368905a67cSAndy Whitcroft
15378905a67cSAndy Whitcroft			# Check for any sort of function declaration.
15388905a67cSAndy Whitcroft			# int foo(something bar, other baz);
15398905a67cSAndy Whitcroft			# void (*store_gdt)(x86_descr_ptr *);
1540171ae1a4SAndy Whitcroft			if ($prev_values eq 'E' && $s =~ /^(.(?:typedef\s*)?(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*(?:\b$Ident|\(\*\s*$Ident\))\s*)\(/s) {
15418905a67cSAndy Whitcroft				my ($name_len) = length($1);
15428905a67cSAndy Whitcroft
1543cf655043SAndy Whitcroft				my $ctx = $s;
1544773647a0SAndy Whitcroft				substr($ctx, 0, $name_len + 1, '');
15458905a67cSAndy Whitcroft				$ctx =~ s/\)[^\)]*$//;
1546cf655043SAndy Whitcroft
15478905a67cSAndy Whitcroft				for my $arg (split(/\s*,\s*/, $ctx)) {
1548c45dcabdSAndy Whitcroft					if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$/s) {
15498905a67cSAndy Whitcroft
1550c45dcabdSAndy Whitcroft						possible($1, "D:" . $s);
15518905a67cSAndy Whitcroft					}
15528905a67cSAndy Whitcroft				}
15538905a67cSAndy Whitcroft			}
15548905a67cSAndy Whitcroft
15559c0ca6f9SAndy Whitcroft		}
15569c0ca6f9SAndy Whitcroft
155700df344fSAndy Whitcroft#
155800df344fSAndy Whitcroft# Checks which may be anchored in the context.
155900df344fSAndy Whitcroft#
156000df344fSAndy Whitcroft
156100df344fSAndy Whitcroft# Check for switch () and associated case and default
156200df344fSAndy Whitcroft# statements should be at the same indent.
156300df344fSAndy Whitcroft		if ($line=~/\bswitch\s*\(.*\)/) {
156400df344fSAndy Whitcroft			my $err = '';
156500df344fSAndy Whitcroft			my $sep = '';
156600df344fSAndy Whitcroft			my @ctx = ctx_block_outer($linenr, $realcnt);
156700df344fSAndy Whitcroft			shift(@ctx);
156800df344fSAndy Whitcroft			for my $ctx (@ctx) {
156900df344fSAndy Whitcroft				my ($clen, $cindent) = line_stats($ctx);
157000df344fSAndy Whitcroft				if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
157100df344fSAndy Whitcroft							$indent != $cindent) {
157200df344fSAndy Whitcroft					$err .= "$sep$ctx\n";
157300df344fSAndy Whitcroft					$sep = '';
157400df344fSAndy Whitcroft				} else {
157500df344fSAndy Whitcroft					$sep = "[...]\n";
157600df344fSAndy Whitcroft				}
157700df344fSAndy Whitcroft			}
157800df344fSAndy Whitcroft			if ($err ne '') {
15799c0ca6f9SAndy Whitcroft				ERROR("switch and case should be at the same indent\n$hereline$err");
1580de7d4f0eSAndy Whitcroft			}
1581de7d4f0eSAndy Whitcroft		}
1582de7d4f0eSAndy Whitcroft
1583de7d4f0eSAndy Whitcroft# if/while/etc brace do not go on next line, unless defining a do while loop,
1584de7d4f0eSAndy Whitcroft# or if that brace on the next line is for something else
1585c45dcabdSAndy Whitcroft		if ($line =~ /(.*)\b((?:if|while|for|switch)\s*\(|do\b|else\b)/ && $line !~ /^.\s*\#/) {
1586773647a0SAndy Whitcroft			my $pre_ctx = "$1$2";
1587773647a0SAndy Whitcroft
15889c0ca6f9SAndy Whitcroft			my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0);
1589de7d4f0eSAndy Whitcroft			my $ctx_cnt = $realcnt - $#ctx - 1;
1590de7d4f0eSAndy Whitcroft			my $ctx = join("\n", @ctx);
1591de7d4f0eSAndy Whitcroft
1592548596d5SAndy Whitcroft			my $ctx_ln = $linenr;
1593548596d5SAndy Whitcroft			my $ctx_skip = $realcnt;
1594de7d4f0eSAndy Whitcroft
1595548596d5SAndy Whitcroft			while ($ctx_skip > $ctx_cnt || ($ctx_skip == $ctx_cnt &&
1596548596d5SAndy Whitcroft					defined $lines[$ctx_ln - 1] &&
1597548596d5SAndy Whitcroft					$lines[$ctx_ln - 1] =~ /^-/)) {
1598548596d5SAndy Whitcroft				##print "SKIP<$ctx_skip> CNT<$ctx_cnt>\n";
1599548596d5SAndy Whitcroft				$ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/);
1600773647a0SAndy Whitcroft				$ctx_ln++;
1601773647a0SAndy Whitcroft			}
1602548596d5SAndy Whitcroft
160353210168SAndy Whitcroft			#print "realcnt<$realcnt> ctx_cnt<$ctx_cnt>\n";
160453210168SAndy Whitcroft			#print "pre<$pre_ctx>\nline<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>\n";
1605773647a0SAndy Whitcroft
1606773647a0SAndy Whitcroft			if ($ctx !~ /{\s*/ && defined($lines[$ctx_ln -1]) && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
1607773647a0SAndy Whitcroft				ERROR("that open brace { should be on the previous line\n" .
1608c45dcabdSAndy Whitcroft					"$here\n$ctx\n$lines[$ctx_ln - 1]\n");
160900df344fSAndy Whitcroft			}
1610773647a0SAndy Whitcroft			if ($level == 0 && $pre_ctx !~ /}\s*while\s*\($/ &&
1611773647a0SAndy Whitcroft			    $ctx =~ /\)\s*\;\s*$/ &&
1612773647a0SAndy Whitcroft			    defined $lines[$ctx_ln - 1])
1613773647a0SAndy Whitcroft			{
16149c0ca6f9SAndy Whitcroft				my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
16159c0ca6f9SAndy Whitcroft				if ($nindent > $indent) {
1616773647a0SAndy Whitcroft					WARN("trailing semicolon indicates no statements, indent implies otherwise\n" .
1617c45dcabdSAndy Whitcroft						"$here\n$ctx\n$lines[$ctx_ln - 1]\n");
16189c0ca6f9SAndy Whitcroft				}
16199c0ca6f9SAndy Whitcroft			}
162000df344fSAndy Whitcroft		}
162100df344fSAndy Whitcroft
16224d001e4dSAndy Whitcroft# Check relative indent for conditionals and blocks.
16234d001e4dSAndy Whitcroft		if ($line =~ /\b(?:(?:if|while|for)\s*\(|do\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) {
16244d001e4dSAndy Whitcroft			my ($s, $c) = ($stat, $cond);
16254d001e4dSAndy Whitcroft
16264d001e4dSAndy Whitcroft			substr($s, 0, length($c), '');
16274d001e4dSAndy Whitcroft
16284d001e4dSAndy Whitcroft			# Make sure we remove the line prefixes as we have
16294d001e4dSAndy Whitcroft			# none on the first line, and are going to readd them
16304d001e4dSAndy Whitcroft			# where necessary.
16314d001e4dSAndy Whitcroft			$s =~ s/\n./\n/gs;
16324d001e4dSAndy Whitcroft
16334d001e4dSAndy Whitcroft			# Find out how long the conditional actually is.
16346f779c18SAndy Whitcroft			my @newlines = ($c =~ /\n/gs);
16356f779c18SAndy Whitcroft			my $cond_lines = 1 + $#newlines;
16364d001e4dSAndy Whitcroft
16374d001e4dSAndy Whitcroft			# We want to check the first line inside the block
16384d001e4dSAndy Whitcroft			# starting at the end of the conditional, so remove:
16394d001e4dSAndy Whitcroft			#  1) any blank line termination
16404d001e4dSAndy Whitcroft			#  2) any opening brace { on end of the line
16414d001e4dSAndy Whitcroft			#  3) any do (...) {
16424d001e4dSAndy Whitcroft			my $continuation = 0;
16434d001e4dSAndy Whitcroft			my $check = 0;
16444d001e4dSAndy Whitcroft			$s =~ s/^.*\bdo\b//;
16454d001e4dSAndy Whitcroft			$s =~ s/^\s*{//;
16464d001e4dSAndy Whitcroft			if ($s =~ s/^\s*\\//) {
16474d001e4dSAndy Whitcroft				$continuation = 1;
16484d001e4dSAndy Whitcroft			}
16499bd49efeSAndy Whitcroft			if ($s =~ s/^\s*?\n//) {
16504d001e4dSAndy Whitcroft				$check = 1;
16514d001e4dSAndy Whitcroft				$cond_lines++;
16524d001e4dSAndy Whitcroft			}
16534d001e4dSAndy Whitcroft
16544d001e4dSAndy Whitcroft			# Also ignore a loop construct at the end of a
16554d001e4dSAndy Whitcroft			# preprocessor statement.
16564d001e4dSAndy Whitcroft			if (($prevline =~ /^.\s*#\s*define\s/ ||
16574d001e4dSAndy Whitcroft			    $prevline =~ /\\\s*$/) && $continuation == 0) {
16584d001e4dSAndy Whitcroft				$check = 0;
16594d001e4dSAndy Whitcroft			}
16604d001e4dSAndy Whitcroft
16619bd49efeSAndy Whitcroft			my $cond_ptr = -1;
1662740504c6SAndy Whitcroft			$continuation = 0;
16639bd49efeSAndy Whitcroft			while ($cond_ptr != $cond_lines) {
16649bd49efeSAndy Whitcroft				$cond_ptr = $cond_lines;
16654d001e4dSAndy Whitcroft
1666f16fa28fSAndy Whitcroft				# If we see an #else/#elif then the code
1667f16fa28fSAndy Whitcroft				# is not linear.
1668f16fa28fSAndy Whitcroft				if ($s =~ /^\s*\#\s*(?:else|elif)/) {
1669f16fa28fSAndy Whitcroft					$check = 0;
1670f16fa28fSAndy Whitcroft				}
1671f16fa28fSAndy Whitcroft
16729bd49efeSAndy Whitcroft				# Ignore:
16739bd49efeSAndy Whitcroft				#  1) blank lines, they should be at 0,
16749bd49efeSAndy Whitcroft				#  2) preprocessor lines, and
16759bd49efeSAndy Whitcroft				#  3) labels.
1676740504c6SAndy Whitcroft				if ($continuation ||
1677740504c6SAndy Whitcroft				    $s =~ /^\s*?\n/ ||
16789bd49efeSAndy Whitcroft				    $s =~ /^\s*#\s*?/ ||
16799bd49efeSAndy Whitcroft				    $s =~ /^\s*$Ident\s*:/) {
1680740504c6SAndy Whitcroft					$continuation = ($s =~ /^.*?\\\n/) ? 1 : 0;
168130dad6ebSAndy Whitcroft					if ($s =~ s/^.*?\n//) {
16829bd49efeSAndy Whitcroft						$cond_lines++;
16839bd49efeSAndy Whitcroft					}
16844d001e4dSAndy Whitcroft				}
168530dad6ebSAndy Whitcroft			}
16864d001e4dSAndy Whitcroft
16874d001e4dSAndy Whitcroft			my (undef, $sindent) = line_stats("+" . $s);
16884d001e4dSAndy Whitcroft			my $stat_real = raw_line($linenr, $cond_lines);
16894d001e4dSAndy Whitcroft
16904d001e4dSAndy Whitcroft			# Check if either of these lines are modified, else
16914d001e4dSAndy Whitcroft			# this is not this patch's fault.
16924d001e4dSAndy Whitcroft			if (!defined($stat_real) ||
16934d001e4dSAndy Whitcroft			    $stat !~ /^\+/ && $stat_real !~ /^\+/) {
16944d001e4dSAndy Whitcroft				$check = 0;
16954d001e4dSAndy Whitcroft			}
16964d001e4dSAndy Whitcroft			if (defined($stat_real) && $cond_lines > 1) {
16974d001e4dSAndy Whitcroft				$stat_real = "[...]\n$stat_real";
16984d001e4dSAndy Whitcroft			}
16994d001e4dSAndy Whitcroft
17009bd49efeSAndy Whitcroft			#print "line<$line> prevline<$prevline> indent<$indent> sindent<$sindent> check<$check> continuation<$continuation> s<$s> cond_lines<$cond_lines> stat_real<$stat_real> stat<$stat>\n";
17014d001e4dSAndy Whitcroft
17024d001e4dSAndy Whitcroft			if ($check && (($sindent % 8) != 0 ||
17034d001e4dSAndy Whitcroft			    ($sindent <= $indent && $s ne ''))) {
17044d001e4dSAndy Whitcroft				WARN("suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n");
17054d001e4dSAndy Whitcroft			}
17064d001e4dSAndy Whitcroft		}
17074d001e4dSAndy Whitcroft
17086c72ffaaSAndy Whitcroft		# Track the 'values' across context and added lines.
17096c72ffaaSAndy Whitcroft		my $opline = $line; $opline =~ s/^./ /;
17101f65f947SAndy Whitcroft		my ($curr_values, $curr_vars) =
17111f65f947SAndy Whitcroft				annotate_values($opline . "\n", $prev_values);
17126c72ffaaSAndy Whitcroft		$curr_values = $prev_values . $curr_values;
1713c2fdda0dSAndy Whitcroft		if ($dbg_values) {
1714c2fdda0dSAndy Whitcroft			my $outline = $opline; $outline =~ s/\t/ /g;
1715cf655043SAndy Whitcroft			print "$linenr > .$outline\n";
1716cf655043SAndy Whitcroft			print "$linenr > $curr_values\n";
17171f65f947SAndy Whitcroft			print "$linenr >  $curr_vars\n";
1718c2fdda0dSAndy Whitcroft		}
17196c72ffaaSAndy Whitcroft		$prev_values = substr($curr_values, -1);
17206c72ffaaSAndy Whitcroft
172100df344fSAndy Whitcroft#ignore lines not being added
172200df344fSAndy Whitcroft		if ($line=~/^[^\+]/) {next;}
172300df344fSAndy Whitcroft
1724653d4876SAndy Whitcroft# TEST: allow direct testing of the type matcher.
17257429c690SAndy Whitcroft		if ($dbg_type) {
17267429c690SAndy Whitcroft			if ($line =~ /^.\s*$Declare\s*$/) {
17277429c690SAndy Whitcroft				ERROR("TEST: is type\n" . $herecurr);
17287429c690SAndy Whitcroft			} elsif ($dbg_type > 1 && $line =~ /^.+($Declare)/) {
17297429c690SAndy Whitcroft				ERROR("TEST: is not type ($1 is)\n". $herecurr);
17307429c690SAndy Whitcroft			}
1731653d4876SAndy Whitcroft			next;
1732653d4876SAndy Whitcroft		}
1733a1ef277eSAndy Whitcroft# TEST: allow direct testing of the attribute matcher.
1734a1ef277eSAndy Whitcroft		if ($dbg_attr) {
17359360b0e5SAndy Whitcroft			if ($line =~ /^.\s*$Modifier\s*$/) {
1736a1ef277eSAndy Whitcroft				ERROR("TEST: is attr\n" . $herecurr);
17379360b0e5SAndy Whitcroft			} elsif ($dbg_attr > 1 && $line =~ /^.+($Modifier)/) {
1738a1ef277eSAndy Whitcroft				ERROR("TEST: is not attr ($1 is)\n". $herecurr);
1739a1ef277eSAndy Whitcroft			}
1740a1ef277eSAndy Whitcroft			next;
1741a1ef277eSAndy Whitcroft		}
1742653d4876SAndy Whitcroft
1743f0a594c1SAndy Whitcroft# check for initialisation to aggregates open brace on the next line
174499423c20SAndy Whitcroft		if ($line =~ /^.\s*{/ &&
174599423c20SAndy Whitcroft		    $prevline =~ /(?:^|[^=])=\s*$/) {
1746773647a0SAndy Whitcroft			ERROR("that open brace { should be on the previous line\n" . $hereprev);
1747f0a594c1SAndy Whitcroft		}
1748f0a594c1SAndy Whitcroft
174900df344fSAndy Whitcroft#
175000df344fSAndy Whitcroft# Checks which are anchored on the added line.
175100df344fSAndy Whitcroft#
175200df344fSAndy Whitcroft
1753653d4876SAndy Whitcroft# check for malformed paths in #include statements (uses RAW line)
1754c45dcabdSAndy Whitcroft		if ($rawline =~ m{^.\s*\#\s*include\s+[<"](.*)[">]}) {
1755653d4876SAndy Whitcroft			my $path = $1;
1756653d4876SAndy Whitcroft			if ($path =~ m{//}) {
1757de7d4f0eSAndy Whitcroft				ERROR("malformed #include filename\n" .
1758de7d4f0eSAndy Whitcroft					$herecurr);
1759653d4876SAndy Whitcroft			}
1760653d4876SAndy Whitcroft		}
1761653d4876SAndy Whitcroft
176200df344fSAndy Whitcroft# no C99 // comments
176300df344fSAndy Whitcroft		if ($line =~ m{//}) {
1764de7d4f0eSAndy Whitcroft			ERROR("do not use C99 // comments\n" . $herecurr);
176500df344fSAndy Whitcroft		}
176600df344fSAndy Whitcroft		# Remove C99 comments.
17670a920b5bSAndy Whitcroft		$line =~ s@//.*@@;
17686c72ffaaSAndy Whitcroft		$opline =~ s@//.*@@;
17690a920b5bSAndy Whitcroft
17702b474a1aSAndy Whitcroft# EXPORT_SYMBOL should immediately follow the thing it is exporting, consider
17712b474a1aSAndy Whitcroft# the whole statement.
17722b474a1aSAndy Whitcroft#print "APW <$lines[$realline_next - 1]>\n";
17732b474a1aSAndy Whitcroft		if (defined $realline_next &&
17742b474a1aSAndy Whitcroft		    exists $lines[$realline_next - 1] &&
17752b474a1aSAndy Whitcroft		    !defined $suppress_export{$realline_next} &&
17762b474a1aSAndy Whitcroft		    ($lines[$realline_next - 1] =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
17772b474a1aSAndy Whitcroft		     $lines[$realline_next - 1] =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
1778653d4876SAndy Whitcroft			my $name = $1;
17792b474a1aSAndy Whitcroft			if ($stat !~ /(?:
17802b474a1aSAndy Whitcroft				\n.}\s*$|
178148012058SAndy Whitcroft				^.DEFINE_$Ident\(\Q$name\E\)|
178248012058SAndy Whitcroft				^.DECLARE_$Ident\(\Q$name\E\)|
178348012058SAndy Whitcroft				^.LIST_HEAD\(\Q$name\E\)|
17842b474a1aSAndy Whitcroft				^.(?:$Storage\s+)?$Type\s*\(\s*\*\s*\Q$name\E\s*\)\s*\(|
17852b474a1aSAndy Whitcroft				\b\Q$name\E(?:\s+$Attribute)*\s*(?:;|=|\[|\()
178648012058SAndy Whitcroft			    )/x) {
17872b474a1aSAndy Whitcroft#print "FOO A<$lines[$realline_next - 1]> stat<$stat> name<$name>\n";
17882b474a1aSAndy Whitcroft				$suppress_export{$realline_next} = 2;
17892b474a1aSAndy Whitcroft			} else {
17902b474a1aSAndy Whitcroft				$suppress_export{$realline_next} = 1;
17910a920b5bSAndy Whitcroft			}
17920a920b5bSAndy Whitcroft		}
17932b474a1aSAndy Whitcroft		if (!defined $suppress_export{$linenr} &&
17942b474a1aSAndy Whitcroft		    $prevline =~ /^.\s*$/ &&
17952b474a1aSAndy Whitcroft		    ($line =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
17962b474a1aSAndy Whitcroft		     $line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
17972b474a1aSAndy Whitcroft#print "FOO B <$lines[$linenr - 1]>\n";
17982b474a1aSAndy Whitcroft			$suppress_export{$linenr} = 2;
17992b474a1aSAndy Whitcroft		}
18002b474a1aSAndy Whitcroft		if (defined $suppress_export{$linenr} &&
18012b474a1aSAndy Whitcroft		    $suppress_export{$linenr} == 2) {
18022b474a1aSAndy Whitcroft			WARN("EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
18032b474a1aSAndy Whitcroft		}
18040a920b5bSAndy Whitcroft
18055150bda4SJoe Eloff# check for global initialisers.
1806c45dcabdSAndy Whitcroft		if ($line =~ /^.$Type\s*$Ident\s*(?:\s+$Modifier)*\s*=\s*(0|NULL|false)\s*;/) {
18075150bda4SJoe Eloff			ERROR("do not initialise globals to 0 or NULL\n" .
1808f0a594c1SAndy Whitcroft				$herecurr);
1809f0a594c1SAndy Whitcroft		}
18100a920b5bSAndy Whitcroft# check for static initialisers.
18112d1bafd7SAndy Whitcroft		if ($line =~ /\bstatic\s.*=\s*(0|NULL|false)\s*;/) {
1812de7d4f0eSAndy Whitcroft			ERROR("do not initialise statics to 0 or NULL\n" .
1813de7d4f0eSAndy Whitcroft				$herecurr);
18140a920b5bSAndy Whitcroft		}
18150a920b5bSAndy Whitcroft
1816653d4876SAndy Whitcroft# check for new typedefs, only function parameters and sparse annotations
1817653d4876SAndy Whitcroft# make sense.
1818653d4876SAndy Whitcroft		if ($line =~ /\btypedef\s/ &&
18198054576dSAndy Whitcroft		    $line !~ /\btypedef\s+$Type\s*\(\s*\*?$Ident\s*\)\s*\(/ &&
1820c45dcabdSAndy Whitcroft		    $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ &&
18218ed22cadSAndy Whitcroft		    $line !~ /\b$typeTypedefs\b/ &&
1822653d4876SAndy Whitcroft		    $line !~ /\b__bitwise(?:__|)\b/) {
1823de7d4f0eSAndy Whitcroft			WARN("do not add new typedefs\n" . $herecurr);
18240a920b5bSAndy Whitcroft		}
18250a920b5bSAndy Whitcroft
18260a920b5bSAndy Whitcroft# * goes on variable not on type
182765863862SAndy Whitcroft		# (char*[ const])
182800ef4eceSAndy Whitcroft		if ($line =~ m{\($NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)\)}) {
182965863862SAndy Whitcroft			my ($from, $to) = ($1, $1);
1830d8aaf121SAndy Whitcroft
183165863862SAndy Whitcroft			# Should start with a space.
183265863862SAndy Whitcroft			$to =~ s/^(\S)/ $1/;
183365863862SAndy Whitcroft			# Should not end with a space.
183465863862SAndy Whitcroft			$to =~ s/\s+$//;
183565863862SAndy Whitcroft			# '*'s should not have spaces between.
1836f9a0b3d1SAndy Whitcroft			while ($to =~ s/\*\s+\*/\*\*/) {
183765863862SAndy Whitcroft			}
1838d8aaf121SAndy Whitcroft
183965863862SAndy Whitcroft			#print "from<$from> to<$to>\n";
184065863862SAndy Whitcroft			if ($from ne $to) {
184165863862SAndy Whitcroft				ERROR("\"(foo$from)\" should be \"(foo$to)\"\n" .  $herecurr);
184265863862SAndy Whitcroft			}
184300ef4eceSAndy Whitcroft		} elsif ($line =~ m{\b$NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)($Ident)}) {
184465863862SAndy Whitcroft			my ($from, $to, $ident) = ($1, $1, $2);
1845d8aaf121SAndy Whitcroft
184665863862SAndy Whitcroft			# Should start with a space.
184765863862SAndy Whitcroft			$to =~ s/^(\S)/ $1/;
184865863862SAndy Whitcroft			# Should not end with a space.
184965863862SAndy Whitcroft			$to =~ s/\s+$//;
185065863862SAndy Whitcroft			# '*'s should not have spaces between.
1851f9a0b3d1SAndy Whitcroft			while ($to =~ s/\*\s+\*/\*\*/) {
185265863862SAndy Whitcroft			}
185365863862SAndy Whitcroft			# Modifiers should have spaces.
185465863862SAndy Whitcroft			$to =~ s/(\b$Modifier$)/$1 /;
185565863862SAndy Whitcroft
1856667026e7SAndy Whitcroft			#print "from<$from> to<$to> ident<$ident>\n";
1857667026e7SAndy Whitcroft			if ($from ne $to && $ident !~ /^$Modifier$/) {
185865863862SAndy Whitcroft				ERROR("\"foo${from}bar\" should be \"foo${to}bar\"\n" .  $herecurr);
185965863862SAndy Whitcroft			}
18600a920b5bSAndy Whitcroft		}
18610a920b5bSAndy Whitcroft
18620a920b5bSAndy Whitcroft# # no BUG() or BUG_ON()
18630a920b5bSAndy Whitcroft# 		if ($line =~ /\b(BUG|BUG_ON)\b/) {
18640a920b5bSAndy Whitcroft# 			print "Try to use WARN_ON & Recovery code rather than BUG() or BUG_ON()\n";
18650a920b5bSAndy Whitcroft# 			print "$herecurr";
18660a920b5bSAndy Whitcroft# 			$clean = 0;
18670a920b5bSAndy Whitcroft# 		}
18680a920b5bSAndy Whitcroft
18698905a67cSAndy Whitcroft		if ($line =~ /\bLINUX_VERSION_CODE\b/) {
1870c2fdda0dSAndy Whitcroft			WARN("LINUX_VERSION_CODE should be avoided, code should be for the version to which it is merged\n" . $herecurr);
18718905a67cSAndy Whitcroft		}
18728905a67cSAndy Whitcroft
187300df344fSAndy Whitcroft# printk should use KERN_* levels.  Note that follow on printk's on the
187400df344fSAndy Whitcroft# same line do not need a level, so we use the current block context
187500df344fSAndy Whitcroft# to try and find and validate the current printk.  In summary the current
187600df344fSAndy Whitcroft# printk includes all preceeding printk's which have no newline on the end.
187700df344fSAndy Whitcroft# we assume the first bad printk is the one to report.
1878f0a594c1SAndy Whitcroft		if ($line =~ /\bprintk\((?!KERN_)\s*"/) {
187900df344fSAndy Whitcroft			my $ok = 0;
188000df344fSAndy Whitcroft			for (my $ln = $linenr - 1; $ln >= $first_line; $ln--) {
188100df344fSAndy Whitcroft				#print "CHECK<$lines[$ln - 1]\n";
188200df344fSAndy Whitcroft				# we have a preceeding printk if it ends
188300df344fSAndy Whitcroft				# with "\n" ignore it, else it is to blame
188400df344fSAndy Whitcroft				if ($lines[$ln - 1] =~ m{\bprintk\(}) {
188500df344fSAndy Whitcroft					if ($rawlines[$ln - 1] !~ m{\\n"}) {
188600df344fSAndy Whitcroft						$ok = 1;
188700df344fSAndy Whitcroft					}
188800df344fSAndy Whitcroft					last;
188900df344fSAndy Whitcroft				}
189000df344fSAndy Whitcroft			}
189100df344fSAndy Whitcroft			if ($ok == 0) {
1892de7d4f0eSAndy Whitcroft				WARN("printk() should include KERN_ facility level\n" . $herecurr);
18930a920b5bSAndy Whitcroft			}
189400df344fSAndy Whitcroft		}
18950a920b5bSAndy Whitcroft
1896653d4876SAndy Whitcroft# function brace can't be on same line, except for #defines of do while,
1897653d4876SAndy Whitcroft# or if closed on same line
1898c45dcabdSAndy Whitcroft		if (($line=~/$Type\s*$Ident\(.*\).*\s{/) and
1899c45dcabdSAndy Whitcroft		    !($line=~/\#\s*define.*do\s{/) and !($line=~/}/)) {
1900de7d4f0eSAndy Whitcroft			ERROR("open brace '{' following function declarations go on the next line\n" . $herecurr);
19010a920b5bSAndy Whitcroft		}
1902653d4876SAndy Whitcroft
19038905a67cSAndy Whitcroft# open braces for enum, union and struct go on the same line.
19048905a67cSAndy Whitcroft		if ($line =~ /^.\s*{/ &&
19058905a67cSAndy Whitcroft		    $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
19068905a67cSAndy Whitcroft			ERROR("open brace '{' following $1 go on the same line\n" . $hereprev);
19078905a67cSAndy Whitcroft		}
19088905a67cSAndy Whitcroft
19098d31cfceSAndy Whitcroft# check for spacing round square brackets; allowed:
19108d31cfceSAndy Whitcroft#  1. with a type on the left -- int [] a;
1911fe2a7dbcSAndy Whitcroft#  2. at the beginning of a line for slice initialisers -- [0...10] = 5,
1912fe2a7dbcSAndy Whitcroft#  3. inside a curly brace -- = { [0...10] = 5 }
19138d31cfceSAndy Whitcroft		while ($line =~ /(.*?\s)\[/g) {
19148d31cfceSAndy Whitcroft			my ($where, $prefix) = ($-[1], $1);
19158d31cfceSAndy Whitcroft			if ($prefix !~ /$Type\s+$/ &&
1916fe2a7dbcSAndy Whitcroft			    ($where != 0 || $prefix !~ /^.\s+$/) &&
1917fe2a7dbcSAndy Whitcroft			    $prefix !~ /{\s+$/) {
19188d31cfceSAndy Whitcroft				ERROR("space prohibited before open square bracket '['\n" . $herecurr);
19198d31cfceSAndy Whitcroft			}
19208d31cfceSAndy Whitcroft		}
19218d31cfceSAndy Whitcroft
1922f0a594c1SAndy Whitcroft# check for spaces between functions and their parentheses.
19236c72ffaaSAndy Whitcroft		while ($line =~ /($Ident)\s+\(/g) {
1924c2fdda0dSAndy Whitcroft			my $name = $1;
1925773647a0SAndy Whitcroft			my $ctx_before = substr($line, 0, $-[1]);
1926773647a0SAndy Whitcroft			my $ctx = "$ctx_before$name";
1927c2fdda0dSAndy Whitcroft
1928c2fdda0dSAndy Whitcroft			# Ignore those directives where spaces _are_ permitted.
1929773647a0SAndy Whitcroft			if ($name =~ /^(?:
1930773647a0SAndy Whitcroft				if|for|while|switch|return|case|
1931773647a0SAndy Whitcroft				volatile|__volatile__|
1932773647a0SAndy Whitcroft				__attribute__|format|__extension__|
1933773647a0SAndy Whitcroft				asm|__asm__)$/x)
1934773647a0SAndy Whitcroft			{
1935c2fdda0dSAndy Whitcroft
1936c2fdda0dSAndy Whitcroft			# cpp #define statements have non-optional spaces, ie
1937c2fdda0dSAndy Whitcroft			# if there is a space between the name and the open
1938c2fdda0dSAndy Whitcroft			# parenthesis it is simply not a parameter group.
1939c45dcabdSAndy Whitcroft			} elsif ($ctx_before =~ /^.\s*\#\s*define\s*$/) {
1940773647a0SAndy Whitcroft
1941773647a0SAndy Whitcroft			# cpp #elif statement condition may start with a (
1942c45dcabdSAndy Whitcroft			} elsif ($ctx =~ /^.\s*\#\s*elif\s*$/) {
1943c2fdda0dSAndy Whitcroft
1944c2fdda0dSAndy Whitcroft			# If this whole things ends with a type its most
1945c2fdda0dSAndy Whitcroft			# likely a typedef for a function.
1946773647a0SAndy Whitcroft			} elsif ($ctx =~ /$Type$/) {
1947c2fdda0dSAndy Whitcroft
1948c2fdda0dSAndy Whitcroft			} else {
1949773647a0SAndy Whitcroft				WARN("space prohibited between function name and open parenthesis '('\n" . $herecurr);
1950f0a594c1SAndy Whitcroft			}
19516c72ffaaSAndy Whitcroft		}
1952653d4876SAndy Whitcroft# Check operator spacing.
19530a920b5bSAndy Whitcroft		if (!($line=~/\#\s*include/)) {
19549c0ca6f9SAndy Whitcroft			my $ops = qr{
19559c0ca6f9SAndy Whitcroft				<<=|>>=|<=|>=|==|!=|
19569c0ca6f9SAndy Whitcroft				\+=|-=|\*=|\/=|%=|\^=|\|=|&=|
19579c0ca6f9SAndy Whitcroft				=>|->|<<|>>|<|>|=|!|~|
19581f65f947SAndy Whitcroft				&&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%|
19591f65f947SAndy Whitcroft				\?|:
19609c0ca6f9SAndy Whitcroft			}x;
1961cf655043SAndy Whitcroft			my @elements = split(/($ops|;)/, $opline);
196200df344fSAndy Whitcroft			my $off = 0;
19636c72ffaaSAndy Whitcroft
19646c72ffaaSAndy Whitcroft			my $blank = copy_spacing($opline);
19656c72ffaaSAndy Whitcroft
19660a920b5bSAndy Whitcroft			for (my $n = 0; $n < $#elements; $n += 2) {
19674a0df2efSAndy Whitcroft				$off += length($elements[$n]);
19684a0df2efSAndy Whitcroft
1969773647a0SAndy Whitcroft				# Pick up the preceeding and succeeding characters.
1970773647a0SAndy Whitcroft				my $ca = substr($opline, 0, $off);
1971773647a0SAndy Whitcroft				my $cc = '';
1972773647a0SAndy Whitcroft				if (length($opline) >= ($off + length($elements[$n + 1]))) {
1973773647a0SAndy Whitcroft					$cc = substr($opline, $off + length($elements[$n + 1]));
1974773647a0SAndy Whitcroft				}
1975773647a0SAndy Whitcroft				my $cb = "$ca$;$cc";
1976773647a0SAndy Whitcroft
19774a0df2efSAndy Whitcroft				my $a = '';
19784a0df2efSAndy Whitcroft				$a = 'V' if ($elements[$n] ne '');
19794a0df2efSAndy Whitcroft				$a = 'W' if ($elements[$n] =~ /\s$/);
1980cf655043SAndy Whitcroft				$a = 'C' if ($elements[$n] =~ /$;$/);
19814a0df2efSAndy Whitcroft				$a = 'B' if ($elements[$n] =~ /(\[|\()$/);
19824a0df2efSAndy Whitcroft				$a = 'O' if ($elements[$n] eq '');
1983773647a0SAndy Whitcroft				$a = 'E' if ($ca =~ /^\s*$/);
19844a0df2efSAndy Whitcroft
19850a920b5bSAndy Whitcroft				my $op = $elements[$n + 1];
19864a0df2efSAndy Whitcroft
19874a0df2efSAndy Whitcroft				my $c = '';
19880a920b5bSAndy Whitcroft				if (defined $elements[$n + 2]) {
19894a0df2efSAndy Whitcroft					$c = 'V' if ($elements[$n + 2] ne '');
19904a0df2efSAndy Whitcroft					$c = 'W' if ($elements[$n + 2] =~ /^\s/);
1991cf655043SAndy Whitcroft					$c = 'C' if ($elements[$n + 2] =~ /^$;/);
19924a0df2efSAndy Whitcroft					$c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
19934a0df2efSAndy Whitcroft					$c = 'O' if ($elements[$n + 2] eq '');
19948b1b3378SAndy Whitcroft					$c = 'E' if ($elements[$n + 2] =~ /^\s*\\$/);
19954a0df2efSAndy Whitcroft				} else {
19964a0df2efSAndy Whitcroft					$c = 'E';
19970a920b5bSAndy Whitcroft				}
19980a920b5bSAndy Whitcroft
19994a0df2efSAndy Whitcroft				my $ctx = "${a}x${c}";
20004a0df2efSAndy Whitcroft
20014a0df2efSAndy Whitcroft				my $at = "(ctx:$ctx)";
20024a0df2efSAndy Whitcroft
20036c72ffaaSAndy Whitcroft				my $ptr = substr($blank, 0, $off) . "^";
2004de7d4f0eSAndy Whitcroft				my $hereptr = "$hereline$ptr\n";
20050a920b5bSAndy Whitcroft
200674048ed8SAndy Whitcroft				# Pull out the value of this operator.
20076c72ffaaSAndy Whitcroft				my $op_type = substr($curr_values, $off + 1, 1);
20080a920b5bSAndy Whitcroft
20091f65f947SAndy Whitcroft				# Get the full operator variant.
20101f65f947SAndy Whitcroft				my $opv = $op . substr($curr_vars, $off, 1);
20111f65f947SAndy Whitcroft
201213214adfSAndy Whitcroft				# Ignore operators passed as parameters.
201313214adfSAndy Whitcroft				if ($op_type ne 'V' &&
201413214adfSAndy Whitcroft				    $ca =~ /\s$/ && $cc =~ /^\s*,/) {
201513214adfSAndy Whitcroft
2016cf655043SAndy Whitcroft#				# Ignore comments
2017cf655043SAndy Whitcroft#				} elsif ($op =~ /^$;+$/) {
201813214adfSAndy Whitcroft
2019d8aaf121SAndy Whitcroft				# ; should have either the end of line or a space or \ after it
202013214adfSAndy Whitcroft				} elsif ($op eq ';') {
2021cf655043SAndy Whitcroft					if ($ctx !~ /.x[WEBC]/ &&
2022cf655043SAndy Whitcroft					    $cc !~ /^\\/ && $cc !~ /^;/) {
2023773647a0SAndy Whitcroft						ERROR("space required after that '$op' $at\n" . $hereptr);
2024d8aaf121SAndy Whitcroft					}
2025d8aaf121SAndy Whitcroft
2026d8aaf121SAndy Whitcroft				# // is a comment
2027d8aaf121SAndy Whitcroft				} elsif ($op eq '//') {
20280a920b5bSAndy Whitcroft
20291f65f947SAndy Whitcroft				# No spaces for:
20301f65f947SAndy Whitcroft				#   ->
20311f65f947SAndy Whitcroft				#   :   when part of a bitfield
20321f65f947SAndy Whitcroft				} elsif ($op eq '->' || $opv eq ':B') {
20334a0df2efSAndy Whitcroft					if ($ctx =~ /Wx.|.xW/) {
2034773647a0SAndy Whitcroft						ERROR("spaces prohibited around that '$op' $at\n" . $hereptr);
20350a920b5bSAndy Whitcroft					}
20360a920b5bSAndy Whitcroft
20370a920b5bSAndy Whitcroft				# , must have a space on the right.
20380a920b5bSAndy Whitcroft				} elsif ($op eq ',') {
2039cf655043SAndy Whitcroft					if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) {
2040773647a0SAndy Whitcroft						ERROR("space required after that '$op' $at\n" . $hereptr);
20410a920b5bSAndy Whitcroft					}
20420a920b5bSAndy Whitcroft
20439c0ca6f9SAndy Whitcroft				# '*' as part of a type definition -- reported already.
204474048ed8SAndy Whitcroft				} elsif ($opv eq '*_') {
20459c0ca6f9SAndy Whitcroft					#warn "'*' is part of type\n";
20469c0ca6f9SAndy Whitcroft
20479c0ca6f9SAndy Whitcroft				# unary operators should have a space before and
20489c0ca6f9SAndy Whitcroft				# none after.  May be left adjacent to another
20499c0ca6f9SAndy Whitcroft				# unary operator, or a cast
20509c0ca6f9SAndy Whitcroft				} elsif ($op eq '!' || $op eq '~' ||
205174048ed8SAndy Whitcroft					 $opv eq '*U' || $opv eq '-U' ||
20520d413866SAndy Whitcroft					 $opv eq '&U' || $opv eq '&&U') {
2053cf655043SAndy Whitcroft					if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
2054773647a0SAndy Whitcroft						ERROR("space required before that '$op' $at\n" . $hereptr);
20550a920b5bSAndy Whitcroft					}
2056a3340b35SAndy Whitcroft					if ($op eq '*' && $cc =~/\s*$Modifier\b/) {
2057171ae1a4SAndy Whitcroft						# A unary '*' may be const
2058171ae1a4SAndy Whitcroft
2059171ae1a4SAndy Whitcroft					} elsif ($ctx =~ /.xW/) {
2060fb9e9096SAndy Whitcroft						ERROR("space prohibited after that '$op' $at\n" . $hereptr);
20610a920b5bSAndy Whitcroft					}
20620a920b5bSAndy Whitcroft
20630a920b5bSAndy Whitcroft				# unary ++ and unary -- are allowed no space on one side.
20640a920b5bSAndy Whitcroft				} elsif ($op eq '++' or $op eq '--') {
2065773647a0SAndy Whitcroft					if ($ctx !~ /[WEOBC]x[^W]/ && $ctx !~ /[^W]x[WOBEC]/) {
2066773647a0SAndy Whitcroft						ERROR("space required one side of that '$op' $at\n" . $hereptr);
20670a920b5bSAndy Whitcroft					}
2068773647a0SAndy Whitcroft					if ($ctx =~ /Wx[BE]/ ||
2069773647a0SAndy Whitcroft					    ($ctx =~ /Wx./ && $cc =~ /^;/)) {
2070773647a0SAndy Whitcroft						ERROR("space prohibited before that '$op' $at\n" . $hereptr);
2071653d4876SAndy Whitcroft					}
2072773647a0SAndy Whitcroft					if ($ctx =~ /ExW/) {
2073773647a0SAndy Whitcroft						ERROR("space prohibited after that '$op' $at\n" . $hereptr);
2074773647a0SAndy Whitcroft					}
2075773647a0SAndy Whitcroft
20760a920b5bSAndy Whitcroft
20770a920b5bSAndy Whitcroft				# << and >> may either have or not have spaces both sides
20789c0ca6f9SAndy Whitcroft				} elsif ($op eq '<<' or $op eq '>>' or
20799c0ca6f9SAndy Whitcroft					 $op eq '&' or $op eq '^' or $op eq '|' or
20809c0ca6f9SAndy Whitcroft					 $op eq '+' or $op eq '-' or
2081c2fdda0dSAndy Whitcroft					 $op eq '*' or $op eq '/' or
2082c2fdda0dSAndy Whitcroft					 $op eq '%')
20830a920b5bSAndy Whitcroft				{
2084773647a0SAndy Whitcroft					if ($ctx =~ /Wx[^WCE]|[^WCE]xW/) {
2085de7d4f0eSAndy Whitcroft						ERROR("need consistent spacing around '$op' $at\n" .
2086de7d4f0eSAndy Whitcroft							$hereptr);
20870a920b5bSAndy Whitcroft					}
20880a920b5bSAndy Whitcroft
20891f65f947SAndy Whitcroft				# A colon needs no spaces before when it is
20901f65f947SAndy Whitcroft				# terminating a case value or a label.
20911f65f947SAndy Whitcroft				} elsif ($opv eq ':C' || $opv eq ':L') {
20921f65f947SAndy Whitcroft					if ($ctx =~ /Wx./) {
20931f65f947SAndy Whitcroft						ERROR("space prohibited before that '$op' $at\n" . $hereptr);
20941f65f947SAndy Whitcroft					}
20951f65f947SAndy Whitcroft
20960a920b5bSAndy Whitcroft				# All the others need spaces both sides.
2097cf655043SAndy Whitcroft				} elsif ($ctx !~ /[EWC]x[CWE]/) {
20981f65f947SAndy Whitcroft					my $ok = 0;
20991f65f947SAndy Whitcroft
210022f2a2efSAndy Whitcroft					# Ignore email addresses <foo@bar>
21011f65f947SAndy Whitcroft					if (($op eq '<' &&
21021f65f947SAndy Whitcroft					     $cc =~ /^\S+\@\S+>/) ||
21031f65f947SAndy Whitcroft					    ($op eq '>' &&
21041f65f947SAndy Whitcroft					     $ca =~ /<\S+\@\S+$/))
21051f65f947SAndy Whitcroft					{
21061f65f947SAndy Whitcroft					    	$ok = 1;
21071f65f947SAndy Whitcroft					}
21081f65f947SAndy Whitcroft
21091f65f947SAndy Whitcroft					# Ignore ?:
21101f65f947SAndy Whitcroft					if (($opv eq ':O' && $ca =~ /\?$/) ||
21111f65f947SAndy Whitcroft					    ($op eq '?' && $cc =~ /^:/)) {
21121f65f947SAndy Whitcroft					    	$ok = 1;
21131f65f947SAndy Whitcroft					}
21141f65f947SAndy Whitcroft
21151f65f947SAndy Whitcroft					if ($ok == 0) {
2116773647a0SAndy Whitcroft						ERROR("spaces required around that '$op' $at\n" . $hereptr);
21170a920b5bSAndy Whitcroft					}
211822f2a2efSAndy Whitcroft				}
21194a0df2efSAndy Whitcroft				$off += length($elements[$n + 1]);
21200a920b5bSAndy Whitcroft			}
21210a920b5bSAndy Whitcroft		}
21220a920b5bSAndy Whitcroft
2123f0a594c1SAndy Whitcroft# check for multiple assignments
2124f0a594c1SAndy Whitcroft		if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
21256c72ffaaSAndy Whitcroft			CHK("multiple assignments should be avoided\n" . $herecurr);
2126f0a594c1SAndy Whitcroft		}
2127f0a594c1SAndy Whitcroft
212822f2a2efSAndy Whitcroft## # check for multiple declarations, allowing for a function declaration
212922f2a2efSAndy Whitcroft## # continuation.
213022f2a2efSAndy Whitcroft## 		if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
213122f2a2efSAndy Whitcroft## 		    $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
213222f2a2efSAndy Whitcroft##
213322f2a2efSAndy Whitcroft## 			# Remove any bracketed sections to ensure we do not
213422f2a2efSAndy Whitcroft## 			# falsly report the parameters of functions.
213522f2a2efSAndy Whitcroft## 			my $ln = $line;
213622f2a2efSAndy Whitcroft## 			while ($ln =~ s/\([^\(\)]*\)//g) {
213722f2a2efSAndy Whitcroft## 			}
213822f2a2efSAndy Whitcroft## 			if ($ln =~ /,/) {
213922f2a2efSAndy Whitcroft## 				WARN("declaring multiple variables together should be avoided\n" . $herecurr);
214022f2a2efSAndy Whitcroft## 			}
214122f2a2efSAndy Whitcroft## 		}
2142f0a594c1SAndy Whitcroft
21430a920b5bSAndy Whitcroft#need space before brace following if, while, etc
214422f2a2efSAndy Whitcroft		if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) ||
214522f2a2efSAndy Whitcroft		    $line =~ /do{/) {
2146773647a0SAndy Whitcroft			ERROR("space required before the open brace '{'\n" . $herecurr);
2147de7d4f0eSAndy Whitcroft		}
2148de7d4f0eSAndy Whitcroft
2149de7d4f0eSAndy Whitcroft# closing brace should have a space following it when it has anything
2150de7d4f0eSAndy Whitcroft# on the line
2151de7d4f0eSAndy Whitcroft		if ($line =~ /}(?!(?:,|;|\)))\S/) {
2152773647a0SAndy Whitcroft			ERROR("space required after that close brace '}'\n" . $herecurr);
21530a920b5bSAndy Whitcroft		}
21540a920b5bSAndy Whitcroft
215522f2a2efSAndy Whitcroft# check spacing on square brackets
215622f2a2efSAndy Whitcroft		if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
2157773647a0SAndy Whitcroft			ERROR("space prohibited after that open square bracket '['\n" . $herecurr);
215822f2a2efSAndy Whitcroft		}
215922f2a2efSAndy Whitcroft		if ($line =~ /\s\]/) {
2160773647a0SAndy Whitcroft			ERROR("space prohibited before that close square bracket ']'\n" . $herecurr);
216122f2a2efSAndy Whitcroft		}
216222f2a2efSAndy Whitcroft
2163c45dcabdSAndy Whitcroft# check spacing on parentheses
21649c0ca6f9SAndy Whitcroft		if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
21659c0ca6f9SAndy Whitcroft		    $line !~ /for\s*\(\s+;/) {
2166773647a0SAndy Whitcroft			ERROR("space prohibited after that open parenthesis '('\n" . $herecurr);
216722f2a2efSAndy Whitcroft		}
216813214adfSAndy Whitcroft		if ($line =~ /(\s+)\)/ && $line !~ /^.\s*\)/ &&
2169c45dcabdSAndy Whitcroft		    $line !~ /for\s*\(.*;\s+\)/ &&
2170c45dcabdSAndy Whitcroft		    $line !~ /:\s+\)/) {
2171773647a0SAndy Whitcroft			ERROR("space prohibited before that close parenthesis ')'\n" . $herecurr);
217222f2a2efSAndy Whitcroft		}
217322f2a2efSAndy Whitcroft
21740a920b5bSAndy Whitcroft#goto labels aren't indented, allow a single space however
21754a0df2efSAndy Whitcroft		if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
21760a920b5bSAndy Whitcroft		   !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
2177de7d4f0eSAndy Whitcroft			WARN("labels should not be indented\n" . $herecurr);
21780a920b5bSAndy Whitcroft		}
21790a920b5bSAndy Whitcroft
2180c45dcabdSAndy Whitcroft# Return is not a function.
2181c45dcabdSAndy Whitcroft		if (defined($stat) && $stat =~ /^.\s*return(\s*)(\(.*);/s) {
2182c45dcabdSAndy Whitcroft			my $spacing = $1;
2183c45dcabdSAndy Whitcroft			my $value = $2;
2184c45dcabdSAndy Whitcroft
218586f9d059SAndy Whitcroft			# Flatten any parentheses
2186*fb2d2c1bSAndy Whitcroft			$value =~ s/\(/ \(/g;
2187*fb2d2c1bSAndy Whitcroft			$value =~ s/\)/\) /g;
218863f17f89SAndy Whitcroft			while ($value =~ s/\[[^\{\}]*\]/1/ ||
218963f17f89SAndy Whitcroft			       $value !~ /(?:$Ident|-?$Constant)\s*
219063f17f89SAndy Whitcroft					     $Compare\s*
219163f17f89SAndy Whitcroft					     (?:$Ident|-?$Constant)/x &&
219263f17f89SAndy Whitcroft			       $value =~ s/\([^\(\)]*\)/1/) {
2193c45dcabdSAndy Whitcroft			}
2194*fb2d2c1bSAndy Whitcroft#print "value<$value>\n";
2195*fb2d2c1bSAndy Whitcroft			if ($value =~ /^\s*(?:$Ident|-?$Constant)\s*$/) {
2196c45dcabdSAndy Whitcroft				ERROR("return is not a function, parentheses are not required\n" . $herecurr);
2197c45dcabdSAndy Whitcroft
2198c45dcabdSAndy Whitcroft			} elsif ($spacing !~ /\s+/) {
2199c45dcabdSAndy Whitcroft				ERROR("space required before the open parenthesis '('\n" . $herecurr);
2200c45dcabdSAndy Whitcroft			}
2201c45dcabdSAndy Whitcroft		}
2202c45dcabdSAndy Whitcroft
22030a920b5bSAndy Whitcroft# Need a space before open parenthesis after if, while etc
22044a0df2efSAndy Whitcroft		if ($line=~/\b(if|while|for|switch)\(/) {
2205773647a0SAndy Whitcroft			ERROR("space required before the open parenthesis '('\n" . $herecurr);
22060a920b5bSAndy Whitcroft		}
22070a920b5bSAndy Whitcroft
2208f5fe35ddSAndy Whitcroft# Check for illegal assignment in if conditional -- and check for trailing
2209f5fe35ddSAndy Whitcroft# statements after the conditional.
2210170d3a22SAndy Whitcroft		if ($line =~ /do\s*(?!{)/) {
2211170d3a22SAndy Whitcroft			my ($stat_next) = ctx_statement_block($line_nr_next,
2212170d3a22SAndy Whitcroft						$remain_next, $off_next);
2213170d3a22SAndy Whitcroft			$stat_next =~ s/\n./\n /g;
2214170d3a22SAndy Whitcroft			##print "stat<$stat> stat_next<$stat_next>\n";
2215170d3a22SAndy Whitcroft
2216170d3a22SAndy Whitcroft			if ($stat_next =~ /^\s*while\b/) {
2217170d3a22SAndy Whitcroft				# If the statement carries leading newlines,
2218170d3a22SAndy Whitcroft				# then count those as offsets.
2219170d3a22SAndy Whitcroft				my ($whitespace) =
2220170d3a22SAndy Whitcroft					($stat_next =~ /^((?:\s*\n[+-])*\s*)/s);
2221170d3a22SAndy Whitcroft				my $offset =
2222170d3a22SAndy Whitcroft					statement_rawlines($whitespace) - 1;
2223170d3a22SAndy Whitcroft
2224170d3a22SAndy Whitcroft				$suppress_whiletrailers{$line_nr_next +
2225170d3a22SAndy Whitcroft								$offset} = 1;
2226170d3a22SAndy Whitcroft			}
2227170d3a22SAndy Whitcroft		}
2228170d3a22SAndy Whitcroft		if (!defined $suppress_whiletrailers{$linenr} &&
2229170d3a22SAndy Whitcroft		    $line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) {
2230171ae1a4SAndy Whitcroft			my ($s, $c) = ($stat, $cond);
22318905a67cSAndy Whitcroft
2232b53c8e10SAndy Whitcroft			if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/s) {
2233c2fdda0dSAndy Whitcroft				ERROR("do not use assignment in if condition\n" . $herecurr);
22348905a67cSAndy Whitcroft			}
22358905a67cSAndy Whitcroft
22368905a67cSAndy Whitcroft			# Find out what is on the end of the line after the
22378905a67cSAndy Whitcroft			# conditional.
2238773647a0SAndy Whitcroft			substr($s, 0, length($c), '');
22398905a67cSAndy Whitcroft			$s =~ s/\n.*//g;
224013214adfSAndy Whitcroft			$s =~ s/$;//g; 	# Remove any comments
224153210168SAndy Whitcroft			if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ &&
224253210168SAndy Whitcroft			    $c !~ /}\s*while\s*/)
2243773647a0SAndy Whitcroft			{
2244bb44ad39SAndy Whitcroft				# Find out how long the conditional actually is.
2245bb44ad39SAndy Whitcroft				my @newlines = ($c =~ /\n/gs);
2246bb44ad39SAndy Whitcroft				my $cond_lines = 1 + $#newlines;
224742bdf74cSHidetoshi Seto				my $stat_real = '';
2248bb44ad39SAndy Whitcroft
224942bdf74cSHidetoshi Seto				$stat_real = raw_line($linenr, $cond_lines)
225042bdf74cSHidetoshi Seto							. "\n" if ($cond_lines);
2251bb44ad39SAndy Whitcroft				if (defined($stat_real) && $cond_lines > 1) {
2252bb44ad39SAndy Whitcroft					$stat_real = "[...]\n$stat_real";
2253bb44ad39SAndy Whitcroft				}
2254bb44ad39SAndy Whitcroft
2255bb44ad39SAndy Whitcroft				ERROR("trailing statements should be on next line\n" . $herecurr . $stat_real);
22568905a67cSAndy Whitcroft			}
22578905a67cSAndy Whitcroft		}
22588905a67cSAndy Whitcroft
225913214adfSAndy Whitcroft# Check for bitwise tests written as boolean
226013214adfSAndy Whitcroft		if ($line =~ /
226113214adfSAndy Whitcroft			(?:
226213214adfSAndy Whitcroft				(?:\[|\(|\&\&|\|\|)
226313214adfSAndy Whitcroft				\s*0[xX][0-9]+\s*
226413214adfSAndy Whitcroft				(?:\&\&|\|\|)
226513214adfSAndy Whitcroft			|
226613214adfSAndy Whitcroft				(?:\&\&|\|\|)
226713214adfSAndy Whitcroft				\s*0[xX][0-9]+\s*
226813214adfSAndy Whitcroft				(?:\&\&|\|\||\)|\])
226913214adfSAndy Whitcroft			)/x)
227013214adfSAndy Whitcroft		{
227113214adfSAndy Whitcroft			WARN("boolean test with hexadecimal, perhaps just 1 \& or \|?\n" . $herecurr);
227213214adfSAndy Whitcroft		}
227313214adfSAndy Whitcroft
22748905a67cSAndy Whitcroft# if and else should not have general statements after it
227513214adfSAndy Whitcroft		if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/) {
227613214adfSAndy Whitcroft			my $s = $1;
227713214adfSAndy Whitcroft			$s =~ s/$;//g; 	# Remove any comments
227813214adfSAndy Whitcroft			if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) {
22798905a67cSAndy Whitcroft				ERROR("trailing statements should be on next line\n" . $herecurr);
22800a920b5bSAndy Whitcroft			}
228113214adfSAndy Whitcroft		}
228239667782SAndy Whitcroft# if should not continue a brace
228339667782SAndy Whitcroft		if ($line =~ /}\s*if\b/) {
228439667782SAndy Whitcroft			ERROR("trailing statements should be on next line\n" .
228539667782SAndy Whitcroft				$herecurr);
228639667782SAndy Whitcroft		}
2287a1080bf8SAndy Whitcroft# case and default should not have general statements after them
2288a1080bf8SAndy Whitcroft		if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
2289a1080bf8SAndy Whitcroft		    $line !~ /\G(?:
22903fef12d6SAndy Whitcroft			(?:\s*$;*)(?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$|
2291a1080bf8SAndy Whitcroft			\s*return\s+
2292a1080bf8SAndy Whitcroft		    )/xg)
2293a1080bf8SAndy Whitcroft		{
2294a1080bf8SAndy Whitcroft			ERROR("trailing statements should be on next line\n" . $herecurr);
2295a1080bf8SAndy Whitcroft		}
22960a920b5bSAndy Whitcroft
22970a920b5bSAndy Whitcroft		# Check for }<nl>else {, these must be at the same
22980a920b5bSAndy Whitcroft		# indent level to be relevant to each other.
22990a920b5bSAndy Whitcroft		if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ and
23000a920b5bSAndy Whitcroft						$previndent == $indent) {
2301de7d4f0eSAndy Whitcroft			ERROR("else should follow close brace '}'\n" . $hereprev);
23020a920b5bSAndy Whitcroft		}
23030a920b5bSAndy Whitcroft
2304c2fdda0dSAndy Whitcroft		if ($prevline=~/}\s*$/ and $line=~/^.\s*while\s*/ and
2305c2fdda0dSAndy Whitcroft						$previndent == $indent) {
2306c2fdda0dSAndy Whitcroft			my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0);
2307c2fdda0dSAndy Whitcroft
2308c2fdda0dSAndy Whitcroft			# Find out what is on the end of the line after the
2309c2fdda0dSAndy Whitcroft			# conditional.
2310773647a0SAndy Whitcroft			substr($s, 0, length($c), '');
2311c2fdda0dSAndy Whitcroft			$s =~ s/\n.*//g;
2312c2fdda0dSAndy Whitcroft
2313c2fdda0dSAndy Whitcroft			if ($s =~ /^\s*;/) {
2314c2fdda0dSAndy Whitcroft				ERROR("while should follow close brace '}'\n" . $hereprev);
2315c2fdda0dSAndy Whitcroft			}
2316c2fdda0dSAndy Whitcroft		}
2317c2fdda0dSAndy Whitcroft
23180a920b5bSAndy Whitcroft#studly caps, commented out until figure out how to distinguish between use of existing and adding new
23190a920b5bSAndy Whitcroft#		if (($line=~/[\w_][a-z\d]+[A-Z]/) and !($line=~/print/)) {
23200a920b5bSAndy Whitcroft#		    print "No studly caps, use _\n";
23210a920b5bSAndy Whitcroft#		    print "$herecurr";
23220a920b5bSAndy Whitcroft#		    $clean = 0;
23230a920b5bSAndy Whitcroft#		}
23240a920b5bSAndy Whitcroft
23250a920b5bSAndy Whitcroft#no spaces allowed after \ in define
2326c45dcabdSAndy Whitcroft		if ($line=~/\#\s*define.*\\\s$/) {
2327de7d4f0eSAndy Whitcroft			WARN("Whitepspace after \\ makes next lines useless\n" . $herecurr);
23280a920b5bSAndy Whitcroft		}
23290a920b5bSAndy Whitcroft
2330653d4876SAndy Whitcroft#warn if <asm/foo.h> is #included and <linux/foo.h> is available (uses RAW line)
2331c45dcabdSAndy Whitcroft		if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) {
2332e09dec48SAndy Whitcroft			my $file = "$1.h";
2333e09dec48SAndy Whitcroft			my $checkfile = "include/linux/$file";
2334e09dec48SAndy Whitcroft			if (-f "$root/$checkfile" &&
2335e09dec48SAndy Whitcroft			    $realfile ne $checkfile &&
23367840a94cSWolfram Sang			    $1 !~ /$allowed_asm_includes/)
2337c45dcabdSAndy Whitcroft			{
2338e09dec48SAndy Whitcroft				if ($realfile =~ m{^arch/}) {
2339e09dec48SAndy Whitcroft					CHK("Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
2340e09dec48SAndy Whitcroft				} else {
2341e09dec48SAndy Whitcroft					WARN("Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
2342e09dec48SAndy Whitcroft				}
23430a920b5bSAndy Whitcroft			}
23440a920b5bSAndy Whitcroft		}
23450a920b5bSAndy Whitcroft
2346653d4876SAndy Whitcroft# multi-statement macros should be enclosed in a do while loop, grab the
2347653d4876SAndy Whitcroft# first statement and ensure its the whole macro if its not enclosed
2348cf655043SAndy Whitcroft# in a known good container
2349b8f96a31SAndy Whitcroft		if ($realfile !~ m@/vmlinux.lds.h$@ &&
2350b8f96a31SAndy Whitcroft		    $line =~ /^.\s*\#\s*define\s*$Ident(\()?/) {
2351d8aaf121SAndy Whitcroft			my $ln = $linenr;
2352d8aaf121SAndy Whitcroft			my $cnt = $realcnt;
2353c45dcabdSAndy Whitcroft			my ($off, $dstat, $dcond, $rest);
2354c45dcabdSAndy Whitcroft			my $ctx = '';
2355653d4876SAndy Whitcroft
2356c45dcabdSAndy Whitcroft			my $args = defined($1);
2357de7d4f0eSAndy Whitcroft
2358c45dcabdSAndy Whitcroft			# Find the end of the macro and limit our statement
2359c45dcabdSAndy Whitcroft			# search to that.
2360c45dcabdSAndy Whitcroft			while ($cnt > 0 && defined $lines[$ln - 1] &&
2361c45dcabdSAndy Whitcroft				$lines[$ln - 1] =~ /^(?:-|..*\\$)/)
2362c45dcabdSAndy Whitcroft			{
2363c45dcabdSAndy Whitcroft				$ctx .= $rawlines[$ln - 1] . "\n";
2364a3bb97a7SAndy Whitcroft				$cnt-- if ($lines[$ln - 1] !~ /^-/);
2365c45dcabdSAndy Whitcroft				$ln++;
2366de7d4f0eSAndy Whitcroft			}
2367c45dcabdSAndy Whitcroft			$ctx .= $rawlines[$ln - 1];
2368d8aaf121SAndy Whitcroft
2369c45dcabdSAndy Whitcroft			($dstat, $dcond, $ln, $cnt, $off) =
2370c45dcabdSAndy Whitcroft				ctx_statement_block($linenr, $ln - $linenr + 1, 0);
2371c45dcabdSAndy Whitcroft			#print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n";
2372a3bb97a7SAndy Whitcroft			#print "LINE<$lines[$ln-1]> len<" . length($lines[$ln-1]) . "\n";
2373c45dcabdSAndy Whitcroft
2374c45dcabdSAndy Whitcroft			# Extract the remainder of the define (if any) and
2375c45dcabdSAndy Whitcroft			# rip off surrounding spaces, and trailing \'s.
2376c45dcabdSAndy Whitcroft			$rest = '';
2377636d140aSAndy Whitcroft			while ($off != 0 || ($cnt > 0 && $rest =~ /\\\s*$/)) {
2378636d140aSAndy Whitcroft				#print "ADDING cnt<$cnt> $off <" . substr($lines[$ln - 1], $off) . "> rest<$rest>\n";
2379a3bb97a7SAndy Whitcroft				if ($off != 0 || $lines[$ln - 1] !~ /^-/) {
2380c45dcabdSAndy Whitcroft					$rest .= substr($lines[$ln - 1], $off) . "\n";
2381c45dcabdSAndy Whitcroft					$cnt--;
2382a3bb97a7SAndy Whitcroft				}
2383a3bb97a7SAndy Whitcroft				$ln++;
2384c45dcabdSAndy Whitcroft				$off = 0;
2385c45dcabdSAndy Whitcroft			}
2386c45dcabdSAndy Whitcroft			$rest =~ s/\\\n.//g;
2387c45dcabdSAndy Whitcroft			$rest =~ s/^\s*//s;
2388c45dcabdSAndy Whitcroft			$rest =~ s/\s*$//s;
2389c45dcabdSAndy Whitcroft
2390c45dcabdSAndy Whitcroft			# Clean up the original statement.
2391c45dcabdSAndy Whitcroft			if ($args) {
2392c45dcabdSAndy Whitcroft				substr($dstat, 0, length($dcond), '');
2393d8aaf121SAndy Whitcroft			} else {
2394c45dcabdSAndy Whitcroft				$dstat =~ s/^.\s*\#\s*define\s+$Ident\s*//;
2395c45dcabdSAndy Whitcroft			}
2396292f1a9bSAndy Whitcroft			$dstat =~ s/$;//g;
2397c45dcabdSAndy Whitcroft			$dstat =~ s/\\\n.//g;
2398c45dcabdSAndy Whitcroft			$dstat =~ s/^\s*//s;
2399c45dcabdSAndy Whitcroft			$dstat =~ s/\s*$//s;
2400c45dcabdSAndy Whitcroft
2401c45dcabdSAndy Whitcroft			# Flatten any parentheses and braces
2402bf30d6edSAndy Whitcroft			while ($dstat =~ s/\([^\(\)]*\)/1/ ||
2403bf30d6edSAndy Whitcroft			       $dstat =~ s/\{[^\{\}]*\}/1/ ||
2404bf30d6edSAndy Whitcroft			       $dstat =~ s/\[[^\{\}]*\]/1/)
2405bf30d6edSAndy Whitcroft			{
2406c45dcabdSAndy Whitcroft			}
2407c45dcabdSAndy Whitcroft
2408c45dcabdSAndy Whitcroft			my $exceptions = qr{
2409c45dcabdSAndy Whitcroft				$Declare|
2410c45dcabdSAndy Whitcroft				module_param_named|
2411c45dcabdSAndy Whitcroft				MODULE_PARAM_DESC|
2412c45dcabdSAndy Whitcroft				DECLARE_PER_CPU|
2413c45dcabdSAndy Whitcroft				DEFINE_PER_CPU|
2414383099fdSAndy Whitcroft				__typeof__\(|
241522fd2d3eSStefani Seibold				union|
241622fd2d3eSStefani Seibold				struct|
2417ea71a0a0SAndy Whitcroft				\.$Ident\s*=\s*|
2418ea71a0a0SAndy Whitcroft				^\"|\"$
2419c45dcabdSAndy Whitcroft			}x;
2420383099fdSAndy Whitcroft			#print "REST<$rest> dstat<$dstat>\n";
2421c45dcabdSAndy Whitcroft			if ($rest ne '') {
2422c45dcabdSAndy Whitcroft				if ($rest !~ /while\s*\(/ &&
2423c45dcabdSAndy Whitcroft				    $dstat !~ /$exceptions/)
2424c45dcabdSAndy Whitcroft				{
2425c45dcabdSAndy Whitcroft					ERROR("Macros with multiple statements should be enclosed in a do - while loop\n" . "$here\n$ctx\n");
2426c45dcabdSAndy Whitcroft				}
2427c45dcabdSAndy Whitcroft
2428c45dcabdSAndy Whitcroft			} elsif ($ctx !~ /;/) {
2429c45dcabdSAndy Whitcroft				if ($dstat ne '' &&
2430c45dcabdSAndy Whitcroft				    $dstat !~ /^(?:$Ident|-?$Constant)$/ &&
2431c45dcabdSAndy Whitcroft				    $dstat !~ /$exceptions/ &&
2432b132e5d5SAndy Whitcroft				    $dstat !~ /^\.$Ident\s*=/ &&
2433c45dcabdSAndy Whitcroft				    $dstat =~ /$Operators/)
2434c45dcabdSAndy Whitcroft				{
2435de7d4f0eSAndy Whitcroft					ERROR("Macros with complex values should be enclosed in parenthesis\n" . "$here\n$ctx\n");
2436d8aaf121SAndy Whitcroft				}
24370a920b5bSAndy Whitcroft			}
2438653d4876SAndy Whitcroft		}
24390a920b5bSAndy Whitcroft
2440080ba929SMike Frysinger# make sure symbols are always wrapped with VMLINUX_SYMBOL() ...
2441080ba929SMike Frysinger# all assignments may have only one of the following with an assignment:
2442080ba929SMike Frysinger#	.
2443080ba929SMike Frysinger#	ALIGN(...)
2444080ba929SMike Frysinger#	VMLINUX_SYMBOL(...)
2445080ba929SMike Frysinger		if ($realfile eq 'vmlinux.lds.h' && $line =~ /(?:(?:^|\s)$Ident\s*=|=\s*$Ident(?:\s|$))/) {
2446080ba929SMike Frysinger			WARN("vmlinux.lds.h needs VMLINUX_SYMBOL() around C-visible symbols\n" . $herecurr);
2447080ba929SMike Frysinger		}
2448080ba929SMike Frysinger
2449f0a594c1SAndy Whitcroft# check for redundant bracing round if etc
245013214adfSAndy Whitcroft		if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) {
245113214adfSAndy Whitcroft			my ($level, $endln, @chunks) =
2452cf655043SAndy Whitcroft				ctx_statement_full($linenr, $realcnt, 1);
245313214adfSAndy Whitcroft			#print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n";
2454cf655043SAndy Whitcroft			#print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n";
2455cf655043SAndy Whitcroft			if ($#chunks > 0 && $level == 0) {
245613214adfSAndy Whitcroft				my $allowed = 0;
245713214adfSAndy Whitcroft				my $seen = 0;
2458773647a0SAndy Whitcroft				my $herectx = $here . "\n";
2459cf655043SAndy Whitcroft				my $ln = $linenr - 1;
246013214adfSAndy Whitcroft				for my $chunk (@chunks) {
246113214adfSAndy Whitcroft					my ($cond, $block) = @{$chunk};
246213214adfSAndy Whitcroft
2463773647a0SAndy Whitcroft					# If the condition carries leading newlines, then count those as offsets.
2464773647a0SAndy Whitcroft					my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s);
2465773647a0SAndy Whitcroft					my $offset = statement_rawlines($whitespace) - 1;
2466773647a0SAndy Whitcroft
2467773647a0SAndy Whitcroft					#print "COND<$cond> whitespace<$whitespace> offset<$offset>\n";
2468773647a0SAndy Whitcroft
2469773647a0SAndy Whitcroft					# We have looked at and allowed this specific line.
2470773647a0SAndy Whitcroft					$suppress_ifbraces{$ln + $offset} = 1;
2471773647a0SAndy Whitcroft
2472773647a0SAndy Whitcroft					$herectx .= "$rawlines[$ln + $offset]\n[...]\n";
2473cf655043SAndy Whitcroft					$ln += statement_rawlines($block) - 1;
2474cf655043SAndy Whitcroft
2475773647a0SAndy Whitcroft					substr($block, 0, length($cond), '');
247613214adfSAndy Whitcroft
247713214adfSAndy Whitcroft					$seen++ if ($block =~ /^\s*{/);
247813214adfSAndy Whitcroft
2479cf655043SAndy Whitcroft					#print "cond<$cond> block<$block> allowed<$allowed>\n";
2480cf655043SAndy Whitcroft					if (statement_lines($cond) > 1) {
2481cf655043SAndy Whitcroft						#print "APW: ALLOWED: cond<$cond>\n";
248213214adfSAndy Whitcroft						$allowed = 1;
248313214adfSAndy Whitcroft					}
248413214adfSAndy Whitcroft					if ($block =~/\b(?:if|for|while)\b/) {
2485cf655043SAndy Whitcroft						#print "APW: ALLOWED: block<$block>\n";
248613214adfSAndy Whitcroft						$allowed = 1;
248713214adfSAndy Whitcroft					}
2488cf655043SAndy Whitcroft					if (statement_block_size($block) > 1) {
2489cf655043SAndy Whitcroft						#print "APW: ALLOWED: lines block<$block>\n";
249013214adfSAndy Whitcroft						$allowed = 1;
249113214adfSAndy Whitcroft					}
249213214adfSAndy Whitcroft				}
249313214adfSAndy Whitcroft				if ($seen && !$allowed) {
2494cf655043SAndy Whitcroft					WARN("braces {} are not necessary for any arm of this statement\n" . $herectx);
249513214adfSAndy Whitcroft				}
249613214adfSAndy Whitcroft			}
249713214adfSAndy Whitcroft		}
2498773647a0SAndy Whitcroft		if (!defined $suppress_ifbraces{$linenr - 1} &&
249913214adfSAndy Whitcroft					$line =~ /\b(if|while|for|else)\b/) {
2500cf655043SAndy Whitcroft			my $allowed = 0;
2501f0a594c1SAndy Whitcroft
2502cf655043SAndy Whitcroft			# Check the pre-context.
2503cf655043SAndy Whitcroft			if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) {
2504cf655043SAndy Whitcroft				#print "APW: ALLOWED: pre<$1>\n";
2505cf655043SAndy Whitcroft				$allowed = 1;
2506f0a594c1SAndy Whitcroft			}
2507773647a0SAndy Whitcroft
2508773647a0SAndy Whitcroft			my ($level, $endln, @chunks) =
2509773647a0SAndy Whitcroft				ctx_statement_full($linenr, $realcnt, $-[0]);
2510773647a0SAndy Whitcroft
2511cf655043SAndy Whitcroft			# Check the condition.
2512cf655043SAndy Whitcroft			my ($cond, $block) = @{$chunks[0]};
2513773647a0SAndy Whitcroft			#print "CHECKING<$linenr> cond<$cond> block<$block>\n";
2514cf655043SAndy Whitcroft			if (defined $cond) {
2515773647a0SAndy Whitcroft				substr($block, 0, length($cond), '');
2516cf655043SAndy Whitcroft			}
2517cf655043SAndy Whitcroft			if (statement_lines($cond) > 1) {
2518cf655043SAndy Whitcroft				#print "APW: ALLOWED: cond<$cond>\n";
2519cf655043SAndy Whitcroft				$allowed = 1;
2520cf655043SAndy Whitcroft			}
2521cf655043SAndy Whitcroft			if ($block =~/\b(?:if|for|while)\b/) {
2522cf655043SAndy Whitcroft				#print "APW: ALLOWED: block<$block>\n";
2523cf655043SAndy Whitcroft				$allowed = 1;
2524cf655043SAndy Whitcroft			}
2525cf655043SAndy Whitcroft			if (statement_block_size($block) > 1) {
2526cf655043SAndy Whitcroft				#print "APW: ALLOWED: lines block<$block>\n";
2527cf655043SAndy Whitcroft				$allowed = 1;
2528cf655043SAndy Whitcroft			}
2529cf655043SAndy Whitcroft			# Check the post-context.
2530cf655043SAndy Whitcroft			if (defined $chunks[1]) {
2531cf655043SAndy Whitcroft				my ($cond, $block) = @{$chunks[1]};
2532cf655043SAndy Whitcroft				if (defined $cond) {
2533773647a0SAndy Whitcroft					substr($block, 0, length($cond), '');
2534cf655043SAndy Whitcroft				}
2535cf655043SAndy Whitcroft				if ($block =~ /^\s*\{/) {
2536cf655043SAndy Whitcroft					#print "APW: ALLOWED: chunk-1 block<$block>\n";
2537cf655043SAndy Whitcroft					$allowed = 1;
2538cf655043SAndy Whitcroft				}
2539cf655043SAndy Whitcroft			}
2540cf655043SAndy Whitcroft			if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
2541cf655043SAndy Whitcroft				my $herectx = $here . "\n";;
2542f055663cSAndy Whitcroft				my $cnt = statement_rawlines($block);
2543cf655043SAndy Whitcroft
2544f055663cSAndy Whitcroft				for (my $n = 0; $n < $cnt; $n++) {
2545f055663cSAndy Whitcroft					$herectx .= raw_line($linenr, $n) . "\n";;
2546cf655043SAndy Whitcroft				}
2547cf655043SAndy Whitcroft
2548cf655043SAndy Whitcroft				WARN("braces {} are not necessary for single statement blocks\n" . $herectx);
2549f0a594c1SAndy Whitcroft			}
2550f0a594c1SAndy Whitcroft		}
2551f0a594c1SAndy Whitcroft
2552653d4876SAndy Whitcroft# don't include deprecated include files (uses RAW line)
25534a0df2efSAndy Whitcroft		for my $inc (@dep_includes) {
2554c45dcabdSAndy Whitcroft			if ($rawline =~ m@^.\s*\#\s*include\s*\<$inc>@) {
2555de7d4f0eSAndy Whitcroft				ERROR("Don't use <$inc>: see Documentation/feature-removal-schedule.txt\n" . $herecurr);
25560a920b5bSAndy Whitcroft			}
25570a920b5bSAndy Whitcroft		}
25580a920b5bSAndy Whitcroft
25594a0df2efSAndy Whitcroft# don't use deprecated functions
25604a0df2efSAndy Whitcroft		for my $func (@dep_functions) {
256100df344fSAndy Whitcroft			if ($line =~ /\b$func\b/) {
2562de7d4f0eSAndy Whitcroft				ERROR("Don't use $func(): see Documentation/feature-removal-schedule.txt\n" . $herecurr);
25634a0df2efSAndy Whitcroft			}
25644a0df2efSAndy Whitcroft		}
25654a0df2efSAndy Whitcroft
25664a0df2efSAndy Whitcroft# no volatiles please
25676c72ffaaSAndy Whitcroft		my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
25686c72ffaaSAndy Whitcroft		if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
2569de7d4f0eSAndy Whitcroft			WARN("Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt\n" . $herecurr);
25704a0df2efSAndy Whitcroft		}
25714a0df2efSAndy Whitcroft
25729c0ca6f9SAndy Whitcroft# SPIN_LOCK_UNLOCKED & RW_LOCK_UNLOCKED are deprecated
25739c0ca6f9SAndy Whitcroft		if ($line =~ /\b(SPIN_LOCK_UNLOCKED|RW_LOCK_UNLOCKED)/) {
25749c0ca6f9SAndy Whitcroft			ERROR("Use of $1 is deprecated: see Documentation/spinlocks.txt\n" . $herecurr);
25759c0ca6f9SAndy Whitcroft		}
25769c0ca6f9SAndy Whitcroft
257700df344fSAndy Whitcroft# warn about #if 0
2578c45dcabdSAndy Whitcroft		if ($line =~ /^.\s*\#\s*if\s+0\b/) {
2579de7d4f0eSAndy Whitcroft			CHK("if this code is redundant consider removing it\n" .
2580de7d4f0eSAndy Whitcroft				$herecurr);
25814a0df2efSAndy Whitcroft		}
25824a0df2efSAndy Whitcroft
2583f0a594c1SAndy Whitcroft# check for needless kfree() checks
2584f0a594c1SAndy Whitcroft		if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
2585f0a594c1SAndy Whitcroft			my $expr = $1;
2586f0a594c1SAndy Whitcroft			if ($line =~ /\bkfree\(\Q$expr\E\);/) {
25873c232147SWolfram Sang				WARN("kfree(NULL) is safe this check is probably not required\n" . $hereprev);
2588f0a594c1SAndy Whitcroft			}
2589f0a594c1SAndy Whitcroft		}
25904c432a8fSGreg Kroah-Hartman# check for needless usb_free_urb() checks
25914c432a8fSGreg Kroah-Hartman		if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
25924c432a8fSGreg Kroah-Hartman			my $expr = $1;
25934c432a8fSGreg Kroah-Hartman			if ($line =~ /\busb_free_urb\(\Q$expr\E\);/) {
25944c432a8fSGreg Kroah-Hartman				WARN("usb_free_urb(NULL) is safe this check is probably not required\n" . $hereprev);
25954c432a8fSGreg Kroah-Hartman			}
25964c432a8fSGreg Kroah-Hartman		}
2597f0a594c1SAndy Whitcroft
25981a15a250SPatrick Pannuto# prefer usleep_range over udelay
25991a15a250SPatrick Pannuto		if ($line =~ /\budelay\s*\(\s*(\w+)\s*\)/) {
26001a15a250SPatrick Pannuto			# ignore udelay's < 10, however
26011a15a250SPatrick Pannuto			if (! (($1 =~ /(\d+)/) && ($1 < 10)) ) {
26021a15a250SPatrick Pannuto				CHK("usleep_range is preferred over udelay; see Documentation/timers/timers-howto.txt\n" . $line);
26031a15a250SPatrick Pannuto			}
26041a15a250SPatrick Pannuto		}
26051a15a250SPatrick Pannuto
260609ef8725SPatrick Pannuto# warn about unexpectedly long msleep's
260709ef8725SPatrick Pannuto		if ($line =~ /\bmsleep\s*\((\d+)\);/) {
260809ef8725SPatrick Pannuto			if ($1 < 20) {
260909ef8725SPatrick Pannuto				WARN("msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt\n" . $line);
261009ef8725SPatrick Pannuto			}
261109ef8725SPatrick Pannuto		}
261209ef8725SPatrick Pannuto
261300df344fSAndy Whitcroft# warn about #ifdefs in C files
2614c45dcabdSAndy Whitcroft#		if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
261500df344fSAndy Whitcroft#			print "#ifdef in C files should be avoided\n";
261600df344fSAndy Whitcroft#			print "$herecurr";
261700df344fSAndy Whitcroft#			$clean = 0;
261800df344fSAndy Whitcroft#		}
261900df344fSAndy Whitcroft
262022f2a2efSAndy Whitcroft# warn about spacing in #ifdefs
2621c45dcabdSAndy Whitcroft		if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) {
262222f2a2efSAndy Whitcroft			ERROR("exactly one space required after that #$1\n" . $herecurr);
262322f2a2efSAndy Whitcroft		}
262422f2a2efSAndy Whitcroft
26254a0df2efSAndy Whitcroft# check for spinlock_t definitions without a comment.
2626171ae1a4SAndy Whitcroft		if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ ||
2627171ae1a4SAndy Whitcroft		    $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) {
26284a0df2efSAndy Whitcroft			my $which = $1;
26294a0df2efSAndy Whitcroft			if (!ctx_has_comment($first_line, $linenr)) {
2630de7d4f0eSAndy Whitcroft				CHK("$1 definition without comment\n" . $herecurr);
26314a0df2efSAndy Whitcroft			}
26324a0df2efSAndy Whitcroft		}
26334a0df2efSAndy Whitcroft# check for memory barriers without a comment.
26344a0df2efSAndy Whitcroft		if ($line =~ /\b(mb|rmb|wmb|read_barrier_depends|smp_mb|smp_rmb|smp_wmb|smp_read_barrier_depends)\(/) {
26354a0df2efSAndy Whitcroft			if (!ctx_has_comment($first_line, $linenr)) {
2636de7d4f0eSAndy Whitcroft				CHK("memory barrier without comment\n" . $herecurr);
26374a0df2efSAndy Whitcroft			}
26384a0df2efSAndy Whitcroft		}
26394a0df2efSAndy Whitcroft# check of hardware specific defines
2640c45dcabdSAndy Whitcroft		if ($line =~ m@^.\s*\#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
2641de7d4f0eSAndy Whitcroft			CHK("architecture specific defines should be avoided\n" .  $herecurr);
26420a920b5bSAndy Whitcroft		}
2643653d4876SAndy Whitcroft
2644d4977c78STobias Klauser# Check that the storage class is at the beginning of a declaration
2645d4977c78STobias Klauser		if ($line =~ /\b$Storage\b/ && $line !~ /^.\s*$Storage\b/) {
2646d4977c78STobias Klauser			WARN("storage class should be at the beginning of the declaration\n" . $herecurr)
2647d4977c78STobias Klauser		}
2648d4977c78STobias Klauser
2649de7d4f0eSAndy Whitcroft# check the location of the inline attribute, that it is between
2650de7d4f0eSAndy Whitcroft# storage class and type.
26519c0ca6f9SAndy Whitcroft		if ($line =~ /\b$Type\s+$Inline\b/ ||
26529c0ca6f9SAndy Whitcroft		    $line =~ /\b$Inline\s+$Storage\b/) {
2653de7d4f0eSAndy Whitcroft			ERROR("inline keyword should sit between storage class and type\n" . $herecurr);
2654de7d4f0eSAndy Whitcroft		}
2655de7d4f0eSAndy Whitcroft
26568905a67cSAndy Whitcroft# Check for __inline__ and __inline, prefer inline
26578905a67cSAndy Whitcroft		if ($line =~ /\b(__inline__|__inline)\b/) {
26588905a67cSAndy Whitcroft			WARN("plain inline is preferred over $1\n" . $herecurr);
26598905a67cSAndy Whitcroft		}
26608905a67cSAndy Whitcroft
26618f53a9b8SJoe Perches# check for sizeof(&)
26628f53a9b8SJoe Perches		if ($line =~ /\bsizeof\s*\(\s*\&/) {
26638f53a9b8SJoe Perches			WARN("sizeof(& should be avoided\n" . $herecurr);
26648f53a9b8SJoe Perches		}
26658f53a9b8SJoe Perches
2666de7d4f0eSAndy Whitcroft# check for new externs in .c files.
2667171ae1a4SAndy Whitcroft		if ($realfile =~ /\.c$/ && defined $stat &&
2668c45dcabdSAndy Whitcroft		    $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s)
2669171ae1a4SAndy Whitcroft		{
2670c45dcabdSAndy Whitcroft			my $function_name = $1;
2671c45dcabdSAndy Whitcroft			my $paren_space = $2;
2672171ae1a4SAndy Whitcroft
2673171ae1a4SAndy Whitcroft			my $s = $stat;
2674171ae1a4SAndy Whitcroft			if (defined $cond) {
2675171ae1a4SAndy Whitcroft				substr($s, 0, length($cond), '');
2676171ae1a4SAndy Whitcroft			}
2677c45dcabdSAndy Whitcroft			if ($s =~ /^\s*;/ &&
2678c45dcabdSAndy Whitcroft			    $function_name ne 'uninitialized_var')
2679c45dcabdSAndy Whitcroft			{
2680de7d4f0eSAndy Whitcroft				WARN("externs should be avoided in .c files\n" .  $herecurr);
2681de7d4f0eSAndy Whitcroft			}
2682de7d4f0eSAndy Whitcroft
2683171ae1a4SAndy Whitcroft			if ($paren_space =~ /\n/) {
2684171ae1a4SAndy Whitcroft				WARN("arguments for function declarations should follow identifier\n" . $herecurr);
2685171ae1a4SAndy Whitcroft			}
26869c9ba34eSAndy Whitcroft
26879c9ba34eSAndy Whitcroft		} elsif ($realfile =~ /\.c$/ && defined $stat &&
26889c9ba34eSAndy Whitcroft		    $stat =~ /^.\s*extern\s+/)
26899c9ba34eSAndy Whitcroft		{
26909c9ba34eSAndy Whitcroft			WARN("externs should be avoided in .c files\n" .  $herecurr);
2691171ae1a4SAndy Whitcroft		}
2692171ae1a4SAndy Whitcroft
2693de7d4f0eSAndy Whitcroft# checks for new __setup's
2694de7d4f0eSAndy Whitcroft		if ($rawline =~ /\b__setup\("([^"]*)"/) {
2695de7d4f0eSAndy Whitcroft			my $name = $1;
2696de7d4f0eSAndy Whitcroft
2697de7d4f0eSAndy Whitcroft			if (!grep(/$name/, @setup_docs)) {
2698de7d4f0eSAndy Whitcroft				CHK("__setup appears un-documented -- check Documentation/kernel-parameters.txt\n" . $herecurr);
2699de7d4f0eSAndy Whitcroft			}
2700653d4876SAndy Whitcroft		}
27019c0ca6f9SAndy Whitcroft
27029c0ca6f9SAndy Whitcroft# check for pointless casting of kmalloc return
27039c0ca6f9SAndy Whitcroft		if ($line =~ /\*\s*\)\s*k[czm]alloc\b/) {
27049c0ca6f9SAndy Whitcroft			WARN("unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
27059c0ca6f9SAndy Whitcroft		}
270613214adfSAndy Whitcroft
270713214adfSAndy Whitcroft# check for gcc specific __FUNCTION__
270813214adfSAndy Whitcroft		if ($line =~ /__FUNCTION__/) {
270913214adfSAndy Whitcroft			WARN("__func__ should be used instead of gcc specific __FUNCTION__\n"  . $herecurr);
271013214adfSAndy Whitcroft		}
2711773647a0SAndy Whitcroft
2712773647a0SAndy Whitcroft# check for semaphores used as mutexes
2713171ae1a4SAndy Whitcroft		if ($line =~ /^.\s*(DECLARE_MUTEX|init_MUTEX)\s*\(/) {
2714773647a0SAndy Whitcroft			WARN("mutexes are preferred for single holder semaphores\n" . $herecurr);
2715773647a0SAndy Whitcroft		}
2716773647a0SAndy Whitcroft# check for semaphores used as mutexes
2717171ae1a4SAndy Whitcroft		if ($line =~ /^.\s*init_MUTEX_LOCKED\s*\(/) {
2718773647a0SAndy Whitcroft			WARN("consider using a completion\n" . $herecurr);
27191704f47bSPeter Zijlstra
2720773647a0SAndy Whitcroft		}
2721773647a0SAndy Whitcroft# recommend strict_strto* over simple_strto*
2722773647a0SAndy Whitcroft		if ($line =~ /\bsimple_(strto.*?)\s*\(/) {
2723773647a0SAndy Whitcroft			WARN("consider using strict_$1 in preference to simple_$1\n" . $herecurr);
2724773647a0SAndy Whitcroft		}
2725f3db6639SMichael Ellerman# check for __initcall(), use device_initcall() explicitly please
2726f3db6639SMichael Ellerman		if ($line =~ /^.\s*__initcall\s*\(/) {
2727f3db6639SMichael Ellerman			WARN("please use device_initcall() instead of __initcall()\n" . $herecurr);
2728f3db6639SMichael Ellerman		}
272979404849SEmese Revfy# check for various ops structs, ensure they are const.
273079404849SEmese Revfy		my $struct_ops = qr{acpi_dock_ops|
273179404849SEmese Revfy				address_space_operations|
273279404849SEmese Revfy				backlight_ops|
273379404849SEmese Revfy				block_device_operations|
273479404849SEmese Revfy				dentry_operations|
273579404849SEmese Revfy				dev_pm_ops|
273679404849SEmese Revfy				dma_map_ops|
273779404849SEmese Revfy				extent_io_ops|
273879404849SEmese Revfy				file_lock_operations|
273979404849SEmese Revfy				file_operations|
274079404849SEmese Revfy				hv_ops|
274179404849SEmese Revfy				ide_dma_ops|
274279404849SEmese Revfy				intel_dvo_dev_ops|
274379404849SEmese Revfy				item_operations|
274479404849SEmese Revfy				iwl_ops|
274579404849SEmese Revfy				kgdb_arch|
274679404849SEmese Revfy				kgdb_io|
274779404849SEmese Revfy				kset_uevent_ops|
274879404849SEmese Revfy				lock_manager_operations|
274979404849SEmese Revfy				microcode_ops|
275079404849SEmese Revfy				mtrr_ops|
275179404849SEmese Revfy				neigh_ops|
275279404849SEmese Revfy				nlmsvc_binding|
275379404849SEmese Revfy				pci_raw_ops|
275479404849SEmese Revfy				pipe_buf_operations|
275579404849SEmese Revfy				platform_hibernation_ops|
275679404849SEmese Revfy				platform_suspend_ops|
275779404849SEmese Revfy				proto_ops|
275879404849SEmese Revfy				rpc_pipe_ops|
275979404849SEmese Revfy				seq_operations|
276079404849SEmese Revfy				snd_ac97_build_ops|
276179404849SEmese Revfy				soc_pcmcia_socket_ops|
276279404849SEmese Revfy				stacktrace_ops|
276379404849SEmese Revfy				sysfs_ops|
276479404849SEmese Revfy				tty_operations|
276579404849SEmese Revfy				usb_mon_operations|
276679404849SEmese Revfy				wd_ops}x;
27676903ffb2SAndy Whitcroft		if ($line !~ /\bconst\b/ &&
276879404849SEmese Revfy		    $line =~ /\bstruct\s+($struct_ops)\b/) {
27696903ffb2SAndy Whitcroft			WARN("struct $1 should normally be const\n" .
27706903ffb2SAndy Whitcroft				$herecurr);
27712b6db5cbSAndy Whitcroft		}
2772773647a0SAndy Whitcroft
2773773647a0SAndy Whitcroft# use of NR_CPUS is usually wrong
2774773647a0SAndy Whitcroft# ignore definitions of NR_CPUS and usage to define arrays as likely right
2775773647a0SAndy Whitcroft		if ($line =~ /\bNR_CPUS\b/ &&
2776c45dcabdSAndy Whitcroft		    $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ &&
2777c45dcabdSAndy Whitcroft		    $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ &&
2778171ae1a4SAndy Whitcroft		    $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ &&
2779171ae1a4SAndy Whitcroft		    $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ &&
2780171ae1a4SAndy Whitcroft		    $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/)
2781773647a0SAndy Whitcroft		{
2782773647a0SAndy Whitcroft			WARN("usage of NR_CPUS is often wrong - consider using cpu_possible(), num_possible_cpus(), for_each_possible_cpu(), etc\n" . $herecurr);
2783773647a0SAndy Whitcroft		}
27849c9ba34eSAndy Whitcroft
27859c9ba34eSAndy Whitcroft# check for %L{u,d,i} in strings
27869c9ba34eSAndy Whitcroft		my $string;
27879c9ba34eSAndy Whitcroft		while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) {
27889c9ba34eSAndy Whitcroft			$string = substr($rawline, $-[1], $+[1] - $-[1]);
27892a1bc5d5SAndy Whitcroft			$string =~ s/%%/__/g;
27909c9ba34eSAndy Whitcroft			if ($string =~ /(?<!%)%L[udi]/) {
27919c9ba34eSAndy Whitcroft				WARN("\%Ld/%Lu are not-standard C, use %lld/%llu\n" . $herecurr);
27929c9ba34eSAndy Whitcroft				last;
27939c9ba34eSAndy Whitcroft			}
27949c9ba34eSAndy Whitcroft		}
2795691d77b6SAndy Whitcroft
2796691d77b6SAndy Whitcroft# whine mightly about in_atomic
2797691d77b6SAndy Whitcroft		if ($line =~ /\bin_atomic\s*\(/) {
2798691d77b6SAndy Whitcroft			if ($realfile =~ m@^drivers/@) {
2799691d77b6SAndy Whitcroft				ERROR("do not use in_atomic in drivers\n" . $herecurr);
2800f4a87736SAndy Whitcroft			} elsif ($realfile !~ m@^kernel/@) {
2801691d77b6SAndy Whitcroft				WARN("use of in_atomic() is incorrect outside core kernel code\n" . $herecurr);
2802691d77b6SAndy Whitcroft			}
2803691d77b6SAndy Whitcroft		}
28041704f47bSPeter Zijlstra
28051704f47bSPeter Zijlstra# check for lockdep_set_novalidate_class
28061704f47bSPeter Zijlstra		if ($line =~ /^.\s*lockdep_set_novalidate_class\s*\(/ ||
28071704f47bSPeter Zijlstra		    $line =~ /__lockdep_no_validate__\s*\)/ ) {
28081704f47bSPeter Zijlstra			if ($realfile !~ m@^kernel/lockdep@ &&
28091704f47bSPeter Zijlstra			    $realfile !~ m@^include/linux/lockdep@ &&
28101704f47bSPeter Zijlstra			    $realfile !~ m@^drivers/base/core@) {
28111704f47bSPeter Zijlstra				ERROR("lockdep_no_validate class is reserved for device->mutex.\n" . $herecurr);
28121704f47bSPeter Zijlstra			}
28131704f47bSPeter Zijlstra		}
281413214adfSAndy Whitcroft	}
281513214adfSAndy Whitcroft
281613214adfSAndy Whitcroft	# If we have no input at all, then there is nothing to report on
281713214adfSAndy Whitcroft	# so just keep quiet.
281813214adfSAndy Whitcroft	if ($#rawlines == -1) {
281913214adfSAndy Whitcroft		exit(0);
28200a920b5bSAndy Whitcroft	}
28210a920b5bSAndy Whitcroft
28228905a67cSAndy Whitcroft	# In mailback mode only produce a report in the negative, for
28238905a67cSAndy Whitcroft	# things that appear to be patches.
28248905a67cSAndy Whitcroft	if ($mailback && ($clean == 1 || !$is_patch)) {
28258905a67cSAndy Whitcroft		exit(0);
28268905a67cSAndy Whitcroft	}
28278905a67cSAndy Whitcroft
28288905a67cSAndy Whitcroft	# This is not a patch, and we are are in 'no-patch' mode so
28298905a67cSAndy Whitcroft	# just keep quiet.
28308905a67cSAndy Whitcroft	if (!$chk_patch && !$is_patch) {
28318905a67cSAndy Whitcroft		exit(0);
28328905a67cSAndy Whitcroft	}
28338905a67cSAndy Whitcroft
28348905a67cSAndy Whitcroft	if (!$is_patch) {
2835de7d4f0eSAndy Whitcroft		ERROR("Does not appear to be a unified-diff format patch\n");
28360a920b5bSAndy Whitcroft	}
28370a920b5bSAndy Whitcroft	if ($is_patch && $chk_signoff && $signoff == 0) {
2838de7d4f0eSAndy Whitcroft		ERROR("Missing Signed-off-by: line(s)\n");
28390a920b5bSAndy Whitcroft	}
28400a920b5bSAndy Whitcroft
2841f0a594c1SAndy Whitcroft	print report_dump();
284213214adfSAndy Whitcroft	if ($summary && !($clean == 1 && $quiet == 1)) {
284313214adfSAndy Whitcroft		print "$filename " if ($summary_file);
28446c72ffaaSAndy Whitcroft		print "total: $cnt_error errors, $cnt_warn warnings, " .
28456c72ffaaSAndy Whitcroft			(($check)? "$cnt_chk checks, " : "") .
28466c72ffaaSAndy Whitcroft			"$cnt_lines lines checked\n";
28478905a67cSAndy Whitcroft		print "\n" if ($quiet == 0);
28486c72ffaaSAndy Whitcroft	}
28498905a67cSAndy Whitcroft
2850d2c0a235SAndy Whitcroft	if ($quiet == 0) {
2851d2c0a235SAndy Whitcroft		# If there were whitespace errors which cleanpatch can fix
2852d2c0a235SAndy Whitcroft		# then suggest that.
2853d2c0a235SAndy Whitcroft		if ($rpt_cleaners) {
2854d2c0a235SAndy Whitcroft			print "NOTE: whitespace errors detected, you may wish to use scripts/cleanpatch or\n";
2855d2c0a235SAndy Whitcroft			print "      scripts/cleanfile\n\n";
2856d2c0a235SAndy Whitcroft		}
2857d2c0a235SAndy Whitcroft	}
2858d2c0a235SAndy Whitcroft
28590a920b5bSAndy Whitcroft	if ($clean == 1 && $quiet == 0) {
2860c2fdda0dSAndy Whitcroft		print "$vname has no obvious style problems and is ready for submission.\n"
28610a920b5bSAndy Whitcroft	}
28620a920b5bSAndy Whitcroft	if ($clean == 0 && $quiet == 0) {
2863c2fdda0dSAndy Whitcroft		print "$vname has style problems, please review.  If any of these errors\n";
28640a920b5bSAndy Whitcroft		print "are false positives report them to the maintainer, see\n";
28650a920b5bSAndy Whitcroft		print "CHECKPATCH in MAINTAINERS.\n";
28660a920b5bSAndy Whitcroft	}
286713214adfSAndy Whitcroft
28680a920b5bSAndy Whitcroft	return $clean;
28690a920b5bSAndy Whitcroft}
2870