xref: /linux-6.15/scripts/checkpatch.pl (revision 8bbea968)
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
1068905a67cSAndy Whitcroftif ($terse) {
1078905a67cSAndy Whitcroft	$emacs = 1;
1088905a67cSAndy Whitcroft	$quiet++;
1098905a67cSAndy Whitcroft}
1108905a67cSAndy Whitcroft
1116c72ffaaSAndy Whitcroftif ($tree) {
1126c72ffaaSAndy Whitcroft	if (defined $root) {
1136c72ffaaSAndy Whitcroft		if (!top_of_kernel_tree($root)) {
1146c72ffaaSAndy Whitcroft			die "$P: $root: --root does not point at a valid tree\n";
1156c72ffaaSAndy Whitcroft		}
1166c72ffaaSAndy Whitcroft	} else {
1176c72ffaaSAndy Whitcroft		if (top_of_kernel_tree('.')) {
1186c72ffaaSAndy Whitcroft			$root = '.';
1196c72ffaaSAndy Whitcroft		} elsif ($0 =~ m@(.*)/scripts/[^/]*$@ &&
1206c72ffaaSAndy Whitcroft						top_of_kernel_tree($1)) {
1216c72ffaaSAndy Whitcroft			$root = $1;
1226c72ffaaSAndy Whitcroft		}
1236c72ffaaSAndy Whitcroft	}
1246c72ffaaSAndy Whitcroft
1256c72ffaaSAndy Whitcroft	if (!defined $root) {
1260a920b5bSAndy Whitcroft		print "Must be run from the top-level dir. of a kernel tree\n";
1270a920b5bSAndy Whitcroft		exit(2);
1280a920b5bSAndy Whitcroft	}
1296c72ffaaSAndy Whitcroft}
1306c72ffaaSAndy Whitcroft
1316c72ffaaSAndy Whitcroftmy $emitted_corrupt = 0;
1326c72ffaaSAndy Whitcroft
1332ceb532bSAndy Whitcroftour $Ident	= qr{
1342ceb532bSAndy Whitcroft			[A-Za-z_][A-Za-z\d_]*
1352ceb532bSAndy Whitcroft			(?:\s*\#\#\s*[A-Za-z_][A-Za-z\d_]*)*
1362ceb532bSAndy Whitcroft		}x;
1376c72ffaaSAndy Whitcroftour $Storage	= qr{extern|static|asmlinkage};
1386c72ffaaSAndy Whitcroftour $Sparse	= qr{
1396c72ffaaSAndy Whitcroft			__user|
1406c72ffaaSAndy Whitcroft			__kernel|
1416c72ffaaSAndy Whitcroft			__force|
1426c72ffaaSAndy Whitcroft			__iomem|
1436c72ffaaSAndy Whitcroft			__must_check|
1446c72ffaaSAndy Whitcroft			__init_refok|
145417495edSAndy Whitcroft			__kprobes|
146417495edSAndy Whitcroft			__ref
1476c72ffaaSAndy Whitcroft		}x;
14852131292SWolfram Sang
14952131292SWolfram Sang# Notes to $Attribute:
15052131292SWolfram Sang# We need \b after 'init' otherwise 'initconst' will cause a false positive in a check
1516c72ffaaSAndy Whitcroftour $Attribute	= qr{
1526c72ffaaSAndy Whitcroft			const|
1536c72ffaaSAndy Whitcroft			__read_mostly|
1546c72ffaaSAndy Whitcroft			__kprobes|
15552131292SWolfram Sang			__(?:mem|cpu|dev|)(?:initdata|initconst|init\b)|
15624e1d81aSAndy Whitcroft			____cacheline_aligned|
15724e1d81aSAndy Whitcroft			____cacheline_aligned_in_smp|
1585fe3af11SAndy Whitcroft			____cacheline_internodealigned_in_smp|
1595fe3af11SAndy Whitcroft			__weak
1606c72ffaaSAndy Whitcroft		  }x;
161c45dcabdSAndy Whitcroftour $Modifier;
1626c72ffaaSAndy Whitcroftour $Inline	= qr{inline|__always_inline|noinline};
1636c72ffaaSAndy Whitcroftour $Member	= qr{->$Ident|\.$Ident|\[[^]]*\]};
1646c72ffaaSAndy Whitcroftour $Lval	= qr{$Ident(?:$Member)*};
1656c72ffaaSAndy Whitcroft
1666c72ffaaSAndy Whitcroftour $Constant	= qr{(?:[0-9]+|0x[0-9a-fA-F]+)[UL]*};
1676c72ffaaSAndy Whitcroftour $Assignment	= qr{(?:\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=)};
16886f9d059SAndy Whitcroftour $Compare    = qr{<=|>=|==|!=|<|>};
1696c72ffaaSAndy Whitcroftour $Operators	= qr{
1706c72ffaaSAndy Whitcroft			<=|>=|==|!=|
1716c72ffaaSAndy Whitcroft			=>|->|<<|>>|<|>|!|~|
172c2fdda0dSAndy Whitcroft			&&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%
1736c72ffaaSAndy Whitcroft		  }x;
1746c72ffaaSAndy Whitcroft
1758905a67cSAndy Whitcroftour $NonptrType;
1768905a67cSAndy Whitcroftour $Type;
1778905a67cSAndy Whitcroftour $Declare;
1788905a67cSAndy Whitcroft
179171ae1a4SAndy Whitcroftour $UTF8	= qr {
180171ae1a4SAndy Whitcroft	[\x09\x0A\x0D\x20-\x7E]              # ASCII
181171ae1a4SAndy Whitcroft	| [\xC2-\xDF][\x80-\xBF]             # non-overlong 2-byte
182171ae1a4SAndy Whitcroft	|  \xE0[\xA0-\xBF][\x80-\xBF]        # excluding overlongs
183171ae1a4SAndy Whitcroft	| [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2}  # straight 3-byte
184171ae1a4SAndy Whitcroft	|  \xED[\x80-\x9F][\x80-\xBF]        # excluding surrogates
185171ae1a4SAndy Whitcroft	|  \xF0[\x90-\xBF][\x80-\xBF]{2}     # planes 1-3
186171ae1a4SAndy Whitcroft	| [\xF1-\xF3][\x80-\xBF]{3}          # planes 4-15
187171ae1a4SAndy Whitcroft	|  \xF4[\x80-\x8F][\x80-\xBF]{2}     # plane 16
188171ae1a4SAndy Whitcroft}x;
189171ae1a4SAndy Whitcroft
1908ed22cadSAndy Whitcroftour $typeTypedefs = qr{(?x:
191fb9e9096SAndy Whitcroft	(?:__)?(?:u|s|be|le)(?:8|16|32|64)|
1928ed22cadSAndy Whitcroft	atomic_t
1938ed22cadSAndy Whitcroft)};
1948ed22cadSAndy Whitcroft
195691e669bSJoe Perchesour $logFunctions = qr{(?x:
196691e669bSJoe Perches	printk|
197691e669bSJoe Perches	pr_(debug|dbg|vdbg|devel|info|warning|err|notice|alert|crit|emerg|cont)|
198*8bbea968SJoe Perches	(dev|netdev|netif)_(printk|dbg|vdbg|info|warn|err|notice|alert|crit|emerg|WARN)|
199691e669bSJoe Perches	WARN|
200691e669bSJoe Perches	panic
201691e669bSJoe Perches)};
202691e669bSJoe Perches
2038905a67cSAndy Whitcroftour @typeList = (
2048905a67cSAndy Whitcroft	qr{void},
205c45dcabdSAndy Whitcroft	qr{(?:unsigned\s+)?char},
206c45dcabdSAndy Whitcroft	qr{(?:unsigned\s+)?short},
207c45dcabdSAndy Whitcroft	qr{(?:unsigned\s+)?int},
208c45dcabdSAndy Whitcroft	qr{(?:unsigned\s+)?long},
209c45dcabdSAndy Whitcroft	qr{(?:unsigned\s+)?long\s+int},
210c45dcabdSAndy Whitcroft	qr{(?:unsigned\s+)?long\s+long},
211c45dcabdSAndy Whitcroft	qr{(?:unsigned\s+)?long\s+long\s+int},
2128905a67cSAndy Whitcroft	qr{unsigned},
2138905a67cSAndy Whitcroft	qr{float},
2148905a67cSAndy Whitcroft	qr{double},
2158905a67cSAndy Whitcroft	qr{bool},
2168905a67cSAndy Whitcroft	qr{struct\s+$Ident},
2178905a67cSAndy Whitcroft	qr{union\s+$Ident},
2188905a67cSAndy Whitcroft	qr{enum\s+$Ident},
2198905a67cSAndy Whitcroft	qr{${Ident}_t},
2208905a67cSAndy Whitcroft	qr{${Ident}_handler},
2218905a67cSAndy Whitcroft	qr{${Ident}_handler_fn},
2228905a67cSAndy Whitcroft);
223c45dcabdSAndy Whitcroftour @modifierList = (
224c45dcabdSAndy Whitcroft	qr{fastcall},
225c45dcabdSAndy Whitcroft);
2268905a67cSAndy Whitcroft
2277840a94cSWolfram Sangour $allowed_asm_includes = qr{(?x:
2287840a94cSWolfram Sang	irq|
2297840a94cSWolfram Sang	memory
2307840a94cSWolfram Sang)};
2317840a94cSWolfram Sang# memory.h: ARM has a custom one
2327840a94cSWolfram Sang
2338905a67cSAndy Whitcroftsub build_types {
234d2172eb5SAndy Whitcroft	my $mods = "(?x:  \n" . join("|\n  ", @modifierList) . "\n)";
235d2172eb5SAndy Whitcroft	my $all = "(?x:  \n" . join("|\n  ", @typeList) . "\n)";
236c8cb2ca3SAndy Whitcroft	$Modifier	= qr{(?:$Attribute|$Sparse|$mods)};
2378905a67cSAndy Whitcroft	$NonptrType	= qr{
238d2172eb5SAndy Whitcroft			(?:$Modifier\s+|const\s+)*
239cf655043SAndy Whitcroft			(?:
240c45dcabdSAndy Whitcroft				(?:typeof|__typeof__)\s*\(\s*\**\s*$Ident\s*\)|
2418ed22cadSAndy Whitcroft				(?:$typeTypedefs\b)|
242c45dcabdSAndy Whitcroft				(?:${all}\b)
243cf655043SAndy Whitcroft			)
244c8cb2ca3SAndy Whitcroft			(?:\s+$Modifier|\s+const)*
2458905a67cSAndy Whitcroft		  }x;
2468905a67cSAndy Whitcroft	$Type	= qr{
247c45dcabdSAndy Whitcroft			$NonptrType
24865863862SAndy Whitcroft			(?:[\s\*]+\s*const|[\s\*]+|(?:\s*\[\s*\])+)?
249c8cb2ca3SAndy Whitcroft			(?:\s+$Inline|\s+$Modifier)*
2508905a67cSAndy Whitcroft		  }x;
2518905a67cSAndy Whitcroft	$Declare	= qr{(?:$Storage\s+)?$Type};
2528905a67cSAndy Whitcroft}
2538905a67cSAndy Whitcroftbuild_types();
2546c72ffaaSAndy Whitcroft
2556c72ffaaSAndy Whitcroft$chk_signoff = 0 if ($file);
2560a920b5bSAndy Whitcroft
2574a0df2efSAndy Whitcroftmy @dep_includes = ();
2584a0df2efSAndy Whitcroftmy @dep_functions = ();
2596c72ffaaSAndy Whitcroftmy $removal = "Documentation/feature-removal-schedule.txt";
2606c72ffaaSAndy Whitcroftif ($tree && -f "$root/$removal") {
26121caa13cSAndy Whitcroft	open(my $REMOVE, '<', "$root/$removal") ||
2626c72ffaaSAndy Whitcroft				die "$P: $removal: open failed - $!\n";
26321caa13cSAndy Whitcroft	while (<$REMOVE>) {
264f0a594c1SAndy Whitcroft		if (/^Check:\s+(.*\S)/) {
265f0a594c1SAndy Whitcroft			for my $entry (split(/[, ]+/, $1)) {
266f0a594c1SAndy Whitcroft				if ($entry =~ m@include/(.*)@) {
2674a0df2efSAndy Whitcroft					push(@dep_includes, $1);
2684a0df2efSAndy Whitcroft
269f0a594c1SAndy Whitcroft				} elsif ($entry !~ m@/@) {
270f0a594c1SAndy Whitcroft					push(@dep_functions, $entry);
271f0a594c1SAndy Whitcroft				}
2724a0df2efSAndy Whitcroft			}
2730a920b5bSAndy Whitcroft		}
2740a920b5bSAndy Whitcroft	}
27521caa13cSAndy Whitcroft	close($REMOVE);
2760a920b5bSAndy Whitcroft}
2770a920b5bSAndy Whitcroft
27800df344fSAndy Whitcroftmy @rawlines = ();
279c2fdda0dSAndy Whitcroftmy @lines = ();
280c2fdda0dSAndy Whitcroftmy $vname;
2816c72ffaaSAndy Whitcroftfor my $filename (@ARGV) {
28221caa13cSAndy Whitcroft	my $FILE;
2836c72ffaaSAndy Whitcroft	if ($file) {
28421caa13cSAndy Whitcroft		open($FILE, '-|', "diff -u /dev/null $filename") ||
2856c72ffaaSAndy Whitcroft			die "$P: $filename: diff failed - $!\n";
28621caa13cSAndy Whitcroft	} elsif ($filename eq '-') {
28721caa13cSAndy Whitcroft		open($FILE, '<&STDIN');
2886c72ffaaSAndy Whitcroft	} else {
28921caa13cSAndy Whitcroft		open($FILE, '<', "$filename") ||
2906c72ffaaSAndy Whitcroft			die "$P: $filename: open failed - $!\n";
2916c72ffaaSAndy Whitcroft	}
292c2fdda0dSAndy Whitcroft	if ($filename eq '-') {
293c2fdda0dSAndy Whitcroft		$vname = 'Your patch';
294c2fdda0dSAndy Whitcroft	} else {
295c2fdda0dSAndy Whitcroft		$vname = $filename;
296c2fdda0dSAndy Whitcroft	}
29721caa13cSAndy Whitcroft	while (<$FILE>) {
2980a920b5bSAndy Whitcroft		chomp;
29900df344fSAndy Whitcroft		push(@rawlines, $_);
3006c72ffaaSAndy Whitcroft	}
30121caa13cSAndy Whitcroft	close($FILE);
302c2fdda0dSAndy Whitcroft	if (!process($filename)) {
3030a920b5bSAndy Whitcroft		$exit = 1;
3040a920b5bSAndy Whitcroft	}
30500df344fSAndy Whitcroft	@rawlines = ();
30613214adfSAndy Whitcroft	@lines = ();
3070a920b5bSAndy Whitcroft}
3080a920b5bSAndy Whitcroft
3090a920b5bSAndy Whitcroftexit($exit);
3100a920b5bSAndy Whitcroft
3110a920b5bSAndy Whitcroftsub top_of_kernel_tree {
3126c72ffaaSAndy Whitcroft	my ($root) = @_;
3136c72ffaaSAndy Whitcroft
3146c72ffaaSAndy Whitcroft	my @tree_check = (
3156c72ffaaSAndy Whitcroft		"COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
3166c72ffaaSAndy Whitcroft		"README", "Documentation", "arch", "include", "drivers",
3176c72ffaaSAndy Whitcroft		"fs", "init", "ipc", "kernel", "lib", "scripts",
3186c72ffaaSAndy Whitcroft	);
3196c72ffaaSAndy Whitcroft
3206c72ffaaSAndy Whitcroft	foreach my $check (@tree_check) {
3216c72ffaaSAndy Whitcroft		if (! -e $root . '/' . $check) {
3220a920b5bSAndy Whitcroft			return 0;
3230a920b5bSAndy Whitcroft		}
3246c72ffaaSAndy Whitcroft	}
3256c72ffaaSAndy Whitcroft	return 1;
3266c72ffaaSAndy Whitcroft}
3270a920b5bSAndy Whitcroft
3280a920b5bSAndy Whitcroftsub expand_tabs {
3290a920b5bSAndy Whitcroft	my ($str) = @_;
3300a920b5bSAndy Whitcroft
3310a920b5bSAndy Whitcroft	my $res = '';
3320a920b5bSAndy Whitcroft	my $n = 0;
3330a920b5bSAndy Whitcroft	for my $c (split(//, $str)) {
3340a920b5bSAndy Whitcroft		if ($c eq "\t") {
3350a920b5bSAndy Whitcroft			$res .= ' ';
3360a920b5bSAndy Whitcroft			$n++;
3370a920b5bSAndy Whitcroft			for (; ($n % 8) != 0; $n++) {
3380a920b5bSAndy Whitcroft				$res .= ' ';
3390a920b5bSAndy Whitcroft			}
3400a920b5bSAndy Whitcroft			next;
3410a920b5bSAndy Whitcroft		}
3420a920b5bSAndy Whitcroft		$res .= $c;
3430a920b5bSAndy Whitcroft		$n++;
3440a920b5bSAndy Whitcroft	}
3450a920b5bSAndy Whitcroft
3460a920b5bSAndy Whitcroft	return $res;
3470a920b5bSAndy Whitcroft}
3486c72ffaaSAndy Whitcroftsub copy_spacing {
349773647a0SAndy Whitcroft	(my $res = shift) =~ tr/\t/ /c;
3506c72ffaaSAndy Whitcroft	return $res;
3516c72ffaaSAndy Whitcroft}
3520a920b5bSAndy Whitcroft
3534a0df2efSAndy Whitcroftsub line_stats {
3544a0df2efSAndy Whitcroft	my ($line) = @_;
3554a0df2efSAndy Whitcroft
3564a0df2efSAndy Whitcroft	# Drop the diff line leader and expand tabs
3574a0df2efSAndy Whitcroft	$line =~ s/^.//;
3584a0df2efSAndy Whitcroft	$line = expand_tabs($line);
3594a0df2efSAndy Whitcroft
3604a0df2efSAndy Whitcroft	# Pick the indent from the front of the line.
3614a0df2efSAndy Whitcroft	my ($white) = ($line =~ /^(\s*)/);
3624a0df2efSAndy Whitcroft
3634a0df2efSAndy Whitcroft	return (length($line), length($white));
3644a0df2efSAndy Whitcroft}
3654a0df2efSAndy Whitcroft
366773647a0SAndy Whitcroftmy $sanitise_quote = '';
367773647a0SAndy Whitcroft
368773647a0SAndy Whitcroftsub sanitise_line_reset {
369773647a0SAndy Whitcroft	my ($in_comment) = @_;
370773647a0SAndy Whitcroft
371773647a0SAndy Whitcroft	if ($in_comment) {
372773647a0SAndy Whitcroft		$sanitise_quote = '*/';
373773647a0SAndy Whitcroft	} else {
374773647a0SAndy Whitcroft		$sanitise_quote = '';
375773647a0SAndy Whitcroft	}
376773647a0SAndy Whitcroft}
37700df344fSAndy Whitcroftsub sanitise_line {
37800df344fSAndy Whitcroft	my ($line) = @_;
37900df344fSAndy Whitcroft
38000df344fSAndy Whitcroft	my $res = '';
38100df344fSAndy Whitcroft	my $l = '';
38200df344fSAndy Whitcroft
383c2fdda0dSAndy Whitcroft	my $qlen = 0;
384773647a0SAndy Whitcroft	my $off = 0;
385773647a0SAndy Whitcroft	my $c;
38600df344fSAndy Whitcroft
387773647a0SAndy Whitcroft	# Always copy over the diff marker.
388773647a0SAndy Whitcroft	$res = substr($line, 0, 1);
389773647a0SAndy Whitcroft
390773647a0SAndy Whitcroft	for ($off = 1; $off < length($line); $off++) {
391773647a0SAndy Whitcroft		$c = substr($line, $off, 1);
392773647a0SAndy Whitcroft
393773647a0SAndy Whitcroft		# Comments we are wacking completly including the begin
394773647a0SAndy Whitcroft		# and end, all to $;.
395773647a0SAndy Whitcroft		if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
396773647a0SAndy Whitcroft			$sanitise_quote = '*/';
397773647a0SAndy Whitcroft
398773647a0SAndy Whitcroft			substr($res, $off, 2, "$;$;");
399773647a0SAndy Whitcroft			$off++;
40000df344fSAndy Whitcroft			next;
401773647a0SAndy Whitcroft		}
40281bc0e02SAndy Whitcroft		if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') {
403773647a0SAndy Whitcroft			$sanitise_quote = '';
404773647a0SAndy Whitcroft			substr($res, $off, 2, "$;$;");
405773647a0SAndy Whitcroft			$off++;
406773647a0SAndy Whitcroft			next;
407773647a0SAndy Whitcroft		}
408113f04a8SDaniel Walker		if ($sanitise_quote eq '' && substr($line, $off, 2) eq '//') {
409113f04a8SDaniel Walker			$sanitise_quote = '//';
410113f04a8SDaniel Walker
411113f04a8SDaniel Walker			substr($res, $off, 2, $sanitise_quote);
412113f04a8SDaniel Walker			$off++;
413113f04a8SDaniel Walker			next;
414113f04a8SDaniel Walker		}
415773647a0SAndy Whitcroft
416773647a0SAndy Whitcroft		# A \ in a string means ignore the next character.
417773647a0SAndy Whitcroft		if (($sanitise_quote eq "'" || $sanitise_quote eq '"') &&
418773647a0SAndy Whitcroft		    $c eq "\\") {
419773647a0SAndy Whitcroft			substr($res, $off, 2, 'XX');
420773647a0SAndy Whitcroft			$off++;
421773647a0SAndy Whitcroft			next;
422773647a0SAndy Whitcroft		}
423773647a0SAndy Whitcroft		# Regular quotes.
424773647a0SAndy Whitcroft		if ($c eq "'" || $c eq '"') {
425773647a0SAndy Whitcroft			if ($sanitise_quote eq '') {
426773647a0SAndy Whitcroft				$sanitise_quote = $c;
427773647a0SAndy Whitcroft
428773647a0SAndy Whitcroft				substr($res, $off, 1, $c);
429773647a0SAndy Whitcroft				next;
430773647a0SAndy Whitcroft			} elsif ($sanitise_quote eq $c) {
431773647a0SAndy Whitcroft				$sanitise_quote = '';
43200df344fSAndy Whitcroft			}
43300df344fSAndy Whitcroft		}
434773647a0SAndy Whitcroft
435fae17daeSAndy Whitcroft		#print "c<$c> SQ<$sanitise_quote>\n";
436773647a0SAndy Whitcroft		if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") {
437773647a0SAndy Whitcroft			substr($res, $off, 1, $;);
438113f04a8SDaniel Walker		} elsif ($off != 0 && $sanitise_quote eq '//' && $c ne "\t") {
439113f04a8SDaniel Walker			substr($res, $off, 1, $;);
440773647a0SAndy Whitcroft		} elsif ($off != 0 && $sanitise_quote && $c ne "\t") {
441773647a0SAndy Whitcroft			substr($res, $off, 1, 'X');
44200df344fSAndy Whitcroft		} else {
443773647a0SAndy Whitcroft			substr($res, $off, 1, $c);
44400df344fSAndy Whitcroft		}
445c2fdda0dSAndy Whitcroft	}
446c2fdda0dSAndy Whitcroft
447113f04a8SDaniel Walker	if ($sanitise_quote eq '//') {
448113f04a8SDaniel Walker		$sanitise_quote = '';
449113f04a8SDaniel Walker	}
450113f04a8SDaniel Walker
451c2fdda0dSAndy Whitcroft	# The pathname on a #include may be surrounded by '<' and '>'.
452c45dcabdSAndy Whitcroft	if ($res =~ /^.\s*\#\s*include\s+\<(.*)\>/) {
453c2fdda0dSAndy Whitcroft		my $clean = 'X' x length($1);
454c2fdda0dSAndy Whitcroft		$res =~ s@\<.*\>@<$clean>@;
455c2fdda0dSAndy Whitcroft
456c2fdda0dSAndy Whitcroft	# The whole of a #error is a string.
457c45dcabdSAndy Whitcroft	} elsif ($res =~ /^.\s*\#\s*(?:error|warning)\s+(.*)\b/) {
458c2fdda0dSAndy Whitcroft		my $clean = 'X' x length($1);
459c45dcabdSAndy Whitcroft		$res =~ s@(\#\s*(?:error|warning)\s+).*@$1$clean@;
460c2fdda0dSAndy Whitcroft	}
461c2fdda0dSAndy Whitcroft
46200df344fSAndy Whitcroft	return $res;
46300df344fSAndy Whitcroft}
46400df344fSAndy Whitcroft
4658905a67cSAndy Whitcroftsub ctx_statement_block {
4668905a67cSAndy Whitcroft	my ($linenr, $remain, $off) = @_;
4678905a67cSAndy Whitcroft	my $line = $linenr - 1;
4688905a67cSAndy Whitcroft	my $blk = '';
4698905a67cSAndy Whitcroft	my $soff = $off;
4708905a67cSAndy Whitcroft	my $coff = $off - 1;
471773647a0SAndy Whitcroft	my $coff_set = 0;
4728905a67cSAndy Whitcroft
47313214adfSAndy Whitcroft	my $loff = 0;
47413214adfSAndy Whitcroft
4758905a67cSAndy Whitcroft	my $type = '';
4768905a67cSAndy Whitcroft	my $level = 0;
477a2750645SAndy Whitcroft	my @stack = ();
478cf655043SAndy Whitcroft	my $p;
4798905a67cSAndy Whitcroft	my $c;
4808905a67cSAndy Whitcroft	my $len = 0;
48113214adfSAndy Whitcroft
48213214adfSAndy Whitcroft	my $remainder;
4838905a67cSAndy Whitcroft	while (1) {
484a2750645SAndy Whitcroft		@stack = (['', 0]) if ($#stack == -1);
485a2750645SAndy Whitcroft
486773647a0SAndy Whitcroft		#warn "CSB: blk<$blk> remain<$remain>\n";
4878905a67cSAndy Whitcroft		# If we are about to drop off the end, pull in more
4888905a67cSAndy Whitcroft		# context.
4898905a67cSAndy Whitcroft		if ($off >= $len) {
4908905a67cSAndy Whitcroft			for (; $remain > 0; $line++) {
491dea33496SAndy Whitcroft				last if (!defined $lines[$line]);
492c2fdda0dSAndy Whitcroft				next if ($lines[$line] =~ /^-/);
4938905a67cSAndy Whitcroft				$remain--;
49413214adfSAndy Whitcroft				$loff = $len;
495c2fdda0dSAndy Whitcroft				$blk .= $lines[$line] . "\n";
4968905a67cSAndy Whitcroft				$len = length($blk);
4978905a67cSAndy Whitcroft				$line++;
4988905a67cSAndy Whitcroft				last;
4998905a67cSAndy Whitcroft			}
5008905a67cSAndy Whitcroft			# Bail if there is no further context.
5018905a67cSAndy Whitcroft			#warn "CSB: blk<$blk> off<$off> len<$len>\n";
50213214adfSAndy Whitcroft			if ($off >= $len) {
5038905a67cSAndy Whitcroft				last;
5048905a67cSAndy Whitcroft			}
5058905a67cSAndy Whitcroft		}
506cf655043SAndy Whitcroft		$p = $c;
5078905a67cSAndy Whitcroft		$c = substr($blk, $off, 1);
50813214adfSAndy Whitcroft		$remainder = substr($blk, $off);
5098905a67cSAndy Whitcroft
510773647a0SAndy Whitcroft		#warn "CSB: c<$c> type<$type> level<$level> remainder<$remainder> coff_set<$coff_set>\n";
5114635f4fbSAndy Whitcroft
5124635f4fbSAndy Whitcroft		# Handle nested #if/#else.
5134635f4fbSAndy Whitcroft		if ($remainder =~ /^#\s*(?:ifndef|ifdef|if)\s/) {
5144635f4fbSAndy Whitcroft			push(@stack, [ $type, $level ]);
5154635f4fbSAndy Whitcroft		} elsif ($remainder =~ /^#\s*(?:else|elif)\b/) {
5164635f4fbSAndy Whitcroft			($type, $level) = @{$stack[$#stack - 1]};
5174635f4fbSAndy Whitcroft		} elsif ($remainder =~ /^#\s*endif\b/) {
5184635f4fbSAndy Whitcroft			($type, $level) = @{pop(@stack)};
5194635f4fbSAndy Whitcroft		}
5204635f4fbSAndy Whitcroft
5218905a67cSAndy Whitcroft		# Statement ends at the ';' or a close '}' at the
5228905a67cSAndy Whitcroft		# outermost level.
5238905a67cSAndy Whitcroft		if ($level == 0 && $c eq ';') {
5248905a67cSAndy Whitcroft			last;
5258905a67cSAndy Whitcroft		}
5268905a67cSAndy Whitcroft
52713214adfSAndy Whitcroft		# An else is really a conditional as long as its not else if
528773647a0SAndy Whitcroft		if ($level == 0 && $coff_set == 0 &&
529773647a0SAndy Whitcroft				(!defined($p) || $p =~ /(?:\s|\}|\+)/) &&
530773647a0SAndy Whitcroft				$remainder =~ /^(else)(?:\s|{)/ &&
531773647a0SAndy Whitcroft				$remainder !~ /^else\s+if\b/) {
532773647a0SAndy Whitcroft			$coff = $off + length($1) - 1;
533773647a0SAndy Whitcroft			$coff_set = 1;
534773647a0SAndy Whitcroft			#warn "CSB: mark coff<$coff> soff<$soff> 1<$1>\n";
535773647a0SAndy Whitcroft			#warn "[" . substr($blk, $soff, $coff - $soff + 1) . "]\n";
53613214adfSAndy Whitcroft		}
53713214adfSAndy Whitcroft
5388905a67cSAndy Whitcroft		if (($type eq '' || $type eq '(') && $c eq '(') {
5398905a67cSAndy Whitcroft			$level++;
5408905a67cSAndy Whitcroft			$type = '(';
5418905a67cSAndy Whitcroft		}
5428905a67cSAndy Whitcroft		if ($type eq '(' && $c eq ')') {
5438905a67cSAndy Whitcroft			$level--;
5448905a67cSAndy Whitcroft			$type = ($level != 0)? '(' : '';
5458905a67cSAndy Whitcroft
5468905a67cSAndy Whitcroft			if ($level == 0 && $coff < $soff) {
5478905a67cSAndy Whitcroft				$coff = $off;
548773647a0SAndy Whitcroft				$coff_set = 1;
549773647a0SAndy Whitcroft				#warn "CSB: mark coff<$coff>\n";
5508905a67cSAndy Whitcroft			}
5518905a67cSAndy Whitcroft		}
5528905a67cSAndy Whitcroft		if (($type eq '' || $type eq '{') && $c eq '{') {
5538905a67cSAndy Whitcroft			$level++;
5548905a67cSAndy Whitcroft			$type = '{';
5558905a67cSAndy Whitcroft		}
5568905a67cSAndy Whitcroft		if ($type eq '{' && $c eq '}') {
5578905a67cSAndy Whitcroft			$level--;
5588905a67cSAndy Whitcroft			$type = ($level != 0)? '{' : '';
5598905a67cSAndy Whitcroft
5608905a67cSAndy Whitcroft			if ($level == 0) {
5618905a67cSAndy Whitcroft				last;
5628905a67cSAndy Whitcroft			}
5638905a67cSAndy Whitcroft		}
5648905a67cSAndy Whitcroft		$off++;
5658905a67cSAndy Whitcroft	}
566a3bb97a7SAndy Whitcroft	# We are truly at the end, so shuffle to the next line.
56713214adfSAndy Whitcroft	if ($off == $len) {
568a3bb97a7SAndy Whitcroft		$loff = $len + 1;
56913214adfSAndy Whitcroft		$line++;
57013214adfSAndy Whitcroft		$remain--;
57113214adfSAndy Whitcroft	}
5728905a67cSAndy Whitcroft
5738905a67cSAndy Whitcroft	my $statement = substr($blk, $soff, $off - $soff + 1);
5748905a67cSAndy Whitcroft	my $condition = substr($blk, $soff, $coff - $soff + 1);
5758905a67cSAndy Whitcroft
5768905a67cSAndy Whitcroft	#warn "STATEMENT<$statement>\n";
5778905a67cSAndy Whitcroft	#warn "CONDITION<$condition>\n";
5788905a67cSAndy Whitcroft
579773647a0SAndy Whitcroft	#print "coff<$coff> soff<$off> loff<$loff>\n";
58013214adfSAndy Whitcroft
58113214adfSAndy Whitcroft	return ($statement, $condition,
58213214adfSAndy Whitcroft			$line, $remain + 1, $off - $loff + 1, $level);
58313214adfSAndy Whitcroft}
58413214adfSAndy Whitcroft
585cf655043SAndy Whitcroftsub statement_lines {
586cf655043SAndy Whitcroft	my ($stmt) = @_;
587cf655043SAndy Whitcroft
588cf655043SAndy Whitcroft	# Strip the diff line prefixes and rip blank lines at start and end.
589cf655043SAndy Whitcroft	$stmt =~ s/(^|\n)./$1/g;
590cf655043SAndy Whitcroft	$stmt =~ s/^\s*//;
591cf655043SAndy Whitcroft	$stmt =~ s/\s*$//;
592cf655043SAndy Whitcroft
593cf655043SAndy Whitcroft	my @stmt_lines = ($stmt =~ /\n/g);
594cf655043SAndy Whitcroft
595cf655043SAndy Whitcroft	return $#stmt_lines + 2;
596cf655043SAndy Whitcroft}
597cf655043SAndy Whitcroft
598cf655043SAndy Whitcroftsub statement_rawlines {
599cf655043SAndy Whitcroft	my ($stmt) = @_;
600cf655043SAndy Whitcroft
601cf655043SAndy Whitcroft	my @stmt_lines = ($stmt =~ /\n/g);
602cf655043SAndy Whitcroft
603cf655043SAndy Whitcroft	return $#stmt_lines + 2;
604cf655043SAndy Whitcroft}
605cf655043SAndy Whitcroft
606cf655043SAndy Whitcroftsub statement_block_size {
607cf655043SAndy Whitcroft	my ($stmt) = @_;
608cf655043SAndy Whitcroft
609cf655043SAndy Whitcroft	$stmt =~ s/(^|\n)./$1/g;
610cf655043SAndy Whitcroft	$stmt =~ s/^\s*{//;
611cf655043SAndy Whitcroft	$stmt =~ s/}\s*$//;
612cf655043SAndy Whitcroft	$stmt =~ s/^\s*//;
613cf655043SAndy Whitcroft	$stmt =~ s/\s*$//;
614cf655043SAndy Whitcroft
615cf655043SAndy Whitcroft	my @stmt_lines = ($stmt =~ /\n/g);
616cf655043SAndy Whitcroft	my @stmt_statements = ($stmt =~ /;/g);
617cf655043SAndy Whitcroft
618cf655043SAndy Whitcroft	my $stmt_lines = $#stmt_lines + 2;
619cf655043SAndy Whitcroft	my $stmt_statements = $#stmt_statements + 1;
620cf655043SAndy Whitcroft
621cf655043SAndy Whitcroft	if ($stmt_lines > $stmt_statements) {
622cf655043SAndy Whitcroft		return $stmt_lines;
623cf655043SAndy Whitcroft	} else {
624cf655043SAndy Whitcroft		return $stmt_statements;
625cf655043SAndy Whitcroft	}
626cf655043SAndy Whitcroft}
627cf655043SAndy Whitcroft
62813214adfSAndy Whitcroftsub ctx_statement_full {
62913214adfSAndy Whitcroft	my ($linenr, $remain, $off) = @_;
63013214adfSAndy Whitcroft	my ($statement, $condition, $level);
63113214adfSAndy Whitcroft
63213214adfSAndy Whitcroft	my (@chunks);
63313214adfSAndy Whitcroft
634cf655043SAndy Whitcroft	# Grab the first conditional/block pair.
63513214adfSAndy Whitcroft	($statement, $condition, $linenr, $remain, $off, $level) =
63613214adfSAndy Whitcroft				ctx_statement_block($linenr, $remain, $off);
637773647a0SAndy Whitcroft	#print "F: c<$condition> s<$statement> remain<$remain>\n";
63813214adfSAndy Whitcroft	push(@chunks, [ $condition, $statement ]);
639cf655043SAndy Whitcroft	if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
640cf655043SAndy Whitcroft		return ($level, $linenr, @chunks);
641cf655043SAndy Whitcroft	}
642cf655043SAndy Whitcroft
643cf655043SAndy Whitcroft	# Pull in the following conditional/block pairs and see if they
644cf655043SAndy Whitcroft	# could continue the statement.
645cf655043SAndy Whitcroft	for (;;) {
64613214adfSAndy Whitcroft		($statement, $condition, $linenr, $remain, $off, $level) =
64713214adfSAndy Whitcroft				ctx_statement_block($linenr, $remain, $off);
648cf655043SAndy Whitcroft		#print "C: c<$condition> s<$statement> remain<$remain>\n";
649773647a0SAndy Whitcroft		last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
650cf655043SAndy Whitcroft		#print "C: push\n";
651cf655043SAndy Whitcroft		push(@chunks, [ $condition, $statement ]);
65213214adfSAndy Whitcroft	}
65313214adfSAndy Whitcroft
65413214adfSAndy Whitcroft	return ($level, $linenr, @chunks);
6558905a67cSAndy Whitcroft}
6568905a67cSAndy Whitcroft
6574a0df2efSAndy Whitcroftsub ctx_block_get {
658f0a594c1SAndy Whitcroft	my ($linenr, $remain, $outer, $open, $close, $off) = @_;
6594a0df2efSAndy Whitcroft	my $line;
6604a0df2efSAndy Whitcroft	my $start = $linenr - 1;
6614a0df2efSAndy Whitcroft	my $blk = '';
6624a0df2efSAndy Whitcroft	my @o;
6634a0df2efSAndy Whitcroft	my @c;
6644a0df2efSAndy Whitcroft	my @res = ();
6654a0df2efSAndy Whitcroft
666f0a594c1SAndy Whitcroft	my $level = 0;
6674635f4fbSAndy Whitcroft	my @stack = ($level);
66800df344fSAndy Whitcroft	for ($line = $start; $remain > 0; $line++) {
66900df344fSAndy Whitcroft		next if ($rawlines[$line] =~ /^-/);
67000df344fSAndy Whitcroft		$remain--;
67100df344fSAndy Whitcroft
67200df344fSAndy Whitcroft		$blk .= $rawlines[$line];
6734635f4fbSAndy Whitcroft
6744635f4fbSAndy Whitcroft		# Handle nested #if/#else.
6754635f4fbSAndy Whitcroft		if ($rawlines[$line] =~ /^.\s*#\s*(?:ifndef|ifdef|if)\s/) {
6764635f4fbSAndy Whitcroft			push(@stack, $level);
6774635f4fbSAndy Whitcroft		} elsif ($rawlines[$line] =~ /^.\s*#\s*(?:else|elif)\b/) {
6784635f4fbSAndy Whitcroft			$level = $stack[$#stack - 1];
6794635f4fbSAndy Whitcroft		} elsif ($rawlines[$line] =~ /^.\s*#\s*endif\b/) {
6804635f4fbSAndy Whitcroft			$level = pop(@stack);
6814635f4fbSAndy Whitcroft		}
6824635f4fbSAndy Whitcroft
683f0a594c1SAndy Whitcroft		foreach my $c (split(//, $rawlines[$line])) {
684f0a594c1SAndy Whitcroft			##print "C<$c>L<$level><$open$close>O<$off>\n";
685f0a594c1SAndy Whitcroft			if ($off > 0) {
686f0a594c1SAndy Whitcroft				$off--;
687f0a594c1SAndy Whitcroft				next;
688f0a594c1SAndy Whitcroft			}
6894a0df2efSAndy Whitcroft
690f0a594c1SAndy Whitcroft			if ($c eq $close && $level > 0) {
691f0a594c1SAndy Whitcroft				$level--;
692f0a594c1SAndy Whitcroft				last if ($level == 0);
693f0a594c1SAndy Whitcroft			} elsif ($c eq $open) {
694f0a594c1SAndy Whitcroft				$level++;
695f0a594c1SAndy Whitcroft			}
696f0a594c1SAndy Whitcroft		}
6974a0df2efSAndy Whitcroft
698f0a594c1SAndy Whitcroft		if (!$outer || $level <= 1) {
69900df344fSAndy Whitcroft			push(@res, $rawlines[$line]);
7004a0df2efSAndy Whitcroft		}
7014a0df2efSAndy Whitcroft
702f0a594c1SAndy Whitcroft		last if ($level == 0);
7034a0df2efSAndy Whitcroft	}
7044a0df2efSAndy Whitcroft
705f0a594c1SAndy Whitcroft	return ($level, @res);
7064a0df2efSAndy Whitcroft}
7074a0df2efSAndy Whitcroftsub ctx_block_outer {
7084a0df2efSAndy Whitcroft	my ($linenr, $remain) = @_;
7094a0df2efSAndy Whitcroft
710f0a594c1SAndy Whitcroft	my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0);
711f0a594c1SAndy Whitcroft	return @r;
7124a0df2efSAndy Whitcroft}
7134a0df2efSAndy Whitcroftsub ctx_block {
7144a0df2efSAndy Whitcroft	my ($linenr, $remain) = @_;
7154a0df2efSAndy Whitcroft
716f0a594c1SAndy Whitcroft	my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0);
717f0a594c1SAndy Whitcroft	return @r;
718653d4876SAndy Whitcroft}
719653d4876SAndy Whitcroftsub ctx_statement {
720f0a594c1SAndy Whitcroft	my ($linenr, $remain, $off) = @_;
721f0a594c1SAndy Whitcroft
722f0a594c1SAndy Whitcroft	my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
723f0a594c1SAndy Whitcroft	return @r;
724f0a594c1SAndy Whitcroft}
725f0a594c1SAndy Whitcroftsub ctx_block_level {
726653d4876SAndy Whitcroft	my ($linenr, $remain) = @_;
727653d4876SAndy Whitcroft
728f0a594c1SAndy Whitcroft	return ctx_block_get($linenr, $remain, 0, '{', '}', 0);
7294a0df2efSAndy Whitcroft}
7309c0ca6f9SAndy Whitcroftsub ctx_statement_level {
7319c0ca6f9SAndy Whitcroft	my ($linenr, $remain, $off) = @_;
7329c0ca6f9SAndy Whitcroft
7339c0ca6f9SAndy Whitcroft	return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
7349c0ca6f9SAndy Whitcroft}
7354a0df2efSAndy Whitcroft
7364a0df2efSAndy Whitcroftsub ctx_locate_comment {
7374a0df2efSAndy Whitcroft	my ($first_line, $end_line) = @_;
7384a0df2efSAndy Whitcroft
7394a0df2efSAndy Whitcroft	# Catch a comment on the end of the line itself.
740beae6332SAndy Whitcroft	my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@);
7414a0df2efSAndy Whitcroft	return $current_comment if (defined $current_comment);
7424a0df2efSAndy Whitcroft
7434a0df2efSAndy Whitcroft	# Look through the context and try and figure out if there is a
7444a0df2efSAndy Whitcroft	# comment.
7454a0df2efSAndy Whitcroft	my $in_comment = 0;
7464a0df2efSAndy Whitcroft	$current_comment = '';
7474a0df2efSAndy Whitcroft	for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
74800df344fSAndy Whitcroft		my $line = $rawlines[$linenr - 1];
74900df344fSAndy Whitcroft		#warn "           $line\n";
7504a0df2efSAndy Whitcroft		if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
7514a0df2efSAndy Whitcroft			$in_comment = 1;
7524a0df2efSAndy Whitcroft		}
7534a0df2efSAndy Whitcroft		if ($line =~ m@/\*@) {
7544a0df2efSAndy Whitcroft			$in_comment = 1;
7554a0df2efSAndy Whitcroft		}
7564a0df2efSAndy Whitcroft		if (!$in_comment && $current_comment ne '') {
7574a0df2efSAndy Whitcroft			$current_comment = '';
7584a0df2efSAndy Whitcroft		}
7594a0df2efSAndy Whitcroft		$current_comment .= $line . "\n" if ($in_comment);
7604a0df2efSAndy Whitcroft		if ($line =~ m@\*/@) {
7614a0df2efSAndy Whitcroft			$in_comment = 0;
7624a0df2efSAndy Whitcroft		}
7634a0df2efSAndy Whitcroft	}
7644a0df2efSAndy Whitcroft
7654a0df2efSAndy Whitcroft	chomp($current_comment);
7664a0df2efSAndy Whitcroft	return($current_comment);
7674a0df2efSAndy Whitcroft}
7684a0df2efSAndy Whitcroftsub ctx_has_comment {
7694a0df2efSAndy Whitcroft	my ($first_line, $end_line) = @_;
7704a0df2efSAndy Whitcroft	my $cmt = ctx_locate_comment($first_line, $end_line);
7714a0df2efSAndy Whitcroft
77200df344fSAndy Whitcroft	##print "LINE: $rawlines[$end_line - 1 ]\n";
7734a0df2efSAndy Whitcroft	##print "CMMT: $cmt\n";
7744a0df2efSAndy Whitcroft
7754a0df2efSAndy Whitcroft	return ($cmt ne '');
7764a0df2efSAndy Whitcroft}
7774a0df2efSAndy Whitcroft
7784d001e4dSAndy Whitcroftsub raw_line {
7794d001e4dSAndy Whitcroft	my ($linenr, $cnt) = @_;
7804d001e4dSAndy Whitcroft
7814d001e4dSAndy Whitcroft	my $offset = $linenr - 1;
7824d001e4dSAndy Whitcroft	$cnt++;
7834d001e4dSAndy Whitcroft
7844d001e4dSAndy Whitcroft	my $line;
7854d001e4dSAndy Whitcroft	while ($cnt) {
7864d001e4dSAndy Whitcroft		$line = $rawlines[$offset++];
7874d001e4dSAndy Whitcroft		next if (defined($line) && $line =~ /^-/);
7884d001e4dSAndy Whitcroft		$cnt--;
7894d001e4dSAndy Whitcroft	}
7904d001e4dSAndy Whitcroft
7914d001e4dSAndy Whitcroft	return $line;
7924d001e4dSAndy Whitcroft}
7934d001e4dSAndy Whitcroft
7940a920b5bSAndy Whitcroftsub cat_vet {
7950a920b5bSAndy Whitcroft	my ($vet) = @_;
7969c0ca6f9SAndy Whitcroft	my ($res, $coded);
7970a920b5bSAndy Whitcroft
7989c0ca6f9SAndy Whitcroft	$res = '';
7996c72ffaaSAndy Whitcroft	while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
8006c72ffaaSAndy Whitcroft		$res .= $1;
8016c72ffaaSAndy Whitcroft		if ($2 ne '') {
8029c0ca6f9SAndy Whitcroft			$coded = sprintf("^%c", unpack('C', $2) + 64);
8036c72ffaaSAndy Whitcroft			$res .= $coded;
8046c72ffaaSAndy Whitcroft		}
8059c0ca6f9SAndy Whitcroft	}
8069c0ca6f9SAndy Whitcroft	$res =~ s/$/\$/;
8070a920b5bSAndy Whitcroft
8089c0ca6f9SAndy Whitcroft	return $res;
8090a920b5bSAndy Whitcroft}
8100a920b5bSAndy Whitcroft
811c2fdda0dSAndy Whitcroftmy $av_preprocessor = 0;
812cf655043SAndy Whitcroftmy $av_pending;
813c2fdda0dSAndy Whitcroftmy @av_paren_type;
8141f65f947SAndy Whitcroftmy $av_pend_colon;
815c2fdda0dSAndy Whitcroft
816c2fdda0dSAndy Whitcroftsub annotate_reset {
817c2fdda0dSAndy Whitcroft	$av_preprocessor = 0;
818cf655043SAndy Whitcroft	$av_pending = '_';
819cf655043SAndy Whitcroft	@av_paren_type = ('E');
8201f65f947SAndy Whitcroft	$av_pend_colon = 'O';
821c2fdda0dSAndy Whitcroft}
822c2fdda0dSAndy Whitcroft
8236c72ffaaSAndy Whitcroftsub annotate_values {
8246c72ffaaSAndy Whitcroft	my ($stream, $type) = @_;
8256c72ffaaSAndy Whitcroft
8266c72ffaaSAndy Whitcroft	my $res;
8271f65f947SAndy Whitcroft	my $var = '_' x length($stream);
8286c72ffaaSAndy Whitcroft	my $cur = $stream;
8296c72ffaaSAndy Whitcroft
830c2fdda0dSAndy Whitcroft	print "$stream\n" if ($dbg_values > 1);
8316c72ffaaSAndy Whitcroft
8326c72ffaaSAndy Whitcroft	while (length($cur)) {
833773647a0SAndy Whitcroft		@av_paren_type = ('E') if ($#av_paren_type < 0);
834cf655043SAndy Whitcroft		print " <" . join('', @av_paren_type) .
835171ae1a4SAndy Whitcroft				"> <$type> <$av_pending>" if ($dbg_values > 1);
8366c72ffaaSAndy Whitcroft		if ($cur =~ /^(\s+)/o) {
837c2fdda0dSAndy Whitcroft			print "WS($1)\n" if ($dbg_values > 1);
838c2fdda0dSAndy Whitcroft			if ($1 =~ /\n/ && $av_preprocessor) {
839cf655043SAndy Whitcroft				$type = pop(@av_paren_type);
840c2fdda0dSAndy Whitcroft				$av_preprocessor = 0;
8416c72ffaaSAndy Whitcroft			}
8426c72ffaaSAndy Whitcroft
8438ea3eb9aSAndy Whitcroft		} elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\()/) {
844c2fdda0dSAndy Whitcroft			print "DECLARE($1)\n" if ($dbg_values > 1);
8456c72ffaaSAndy Whitcroft			$type = 'T';
8466c72ffaaSAndy Whitcroft
847389a2fe5SAndy Whitcroft		} elsif ($cur =~ /^($Modifier)\s*/) {
848389a2fe5SAndy Whitcroft			print "MODIFIER($1)\n" if ($dbg_values > 1);
849389a2fe5SAndy Whitcroft			$type = 'T';
850389a2fe5SAndy Whitcroft
851c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) {
852171ae1a4SAndy Whitcroft			print "DEFINE($1,$2)\n" if ($dbg_values > 1);
853c2fdda0dSAndy Whitcroft			$av_preprocessor = 1;
854171ae1a4SAndy Whitcroft			push(@av_paren_type, $type);
855171ae1a4SAndy Whitcroft			if ($2 ne '') {
856cf655043SAndy Whitcroft				$av_pending = 'N';
857171ae1a4SAndy Whitcroft			}
858171ae1a4SAndy Whitcroft			$type = 'E';
859171ae1a4SAndy Whitcroft
860c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*(?:undef\s*$Ident|include\b))/o) {
861171ae1a4SAndy Whitcroft			print "UNDEF($1)\n" if ($dbg_values > 1);
862171ae1a4SAndy Whitcroft			$av_preprocessor = 1;
863171ae1a4SAndy Whitcroft			push(@av_paren_type, $type);
8646c72ffaaSAndy Whitcroft
865c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*(?:ifdef|ifndef|if))/o) {
866cf655043SAndy Whitcroft			print "PRE_START($1)\n" if ($dbg_values > 1);
867c2fdda0dSAndy Whitcroft			$av_preprocessor = 1;
868cf655043SAndy Whitcroft
869cf655043SAndy Whitcroft			push(@av_paren_type, $type);
870cf655043SAndy Whitcroft			push(@av_paren_type, $type);
871171ae1a4SAndy Whitcroft			$type = 'E';
872cf655043SAndy Whitcroft
873c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*(?:else|elif))/o) {
874cf655043SAndy Whitcroft			print "PRE_RESTART($1)\n" if ($dbg_values > 1);
875cf655043SAndy Whitcroft			$av_preprocessor = 1;
876cf655043SAndy Whitcroft
877cf655043SAndy Whitcroft			push(@av_paren_type, $av_paren_type[$#av_paren_type]);
878cf655043SAndy Whitcroft
879171ae1a4SAndy Whitcroft			$type = 'E';
880cf655043SAndy Whitcroft
881c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*(?:endif))/o) {
882cf655043SAndy Whitcroft			print "PRE_END($1)\n" if ($dbg_values > 1);
883cf655043SAndy Whitcroft
884cf655043SAndy Whitcroft			$av_preprocessor = 1;
885cf655043SAndy Whitcroft
886cf655043SAndy Whitcroft			# Assume all arms of the conditional end as this
887cf655043SAndy Whitcroft			# one does, and continue as if the #endif was not here.
888cf655043SAndy Whitcroft			pop(@av_paren_type);
889cf655043SAndy Whitcroft			push(@av_paren_type, $type);
890171ae1a4SAndy Whitcroft			$type = 'E';
8916c72ffaaSAndy Whitcroft
8926c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^(\\\n)/o) {
893c2fdda0dSAndy Whitcroft			print "PRECONT($1)\n" if ($dbg_values > 1);
8946c72ffaaSAndy Whitcroft
895171ae1a4SAndy Whitcroft		} elsif ($cur =~ /^(__attribute__)\s*\(?/o) {
896171ae1a4SAndy Whitcroft			print "ATTR($1)\n" if ($dbg_values > 1);
897171ae1a4SAndy Whitcroft			$av_pending = $type;
898171ae1a4SAndy Whitcroft			$type = 'N';
899171ae1a4SAndy Whitcroft
9006c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
901c2fdda0dSAndy Whitcroft			print "SIZEOF($1)\n" if ($dbg_values > 1);
9026c72ffaaSAndy Whitcroft			if (defined $2) {
903cf655043SAndy Whitcroft				$av_pending = 'V';
9046c72ffaaSAndy Whitcroft			}
9056c72ffaaSAndy Whitcroft			$type = 'N';
9066c72ffaaSAndy Whitcroft
90714b111c1SAndy Whitcroft		} elsif ($cur =~ /^(if|while|for)\b/o) {
908c2fdda0dSAndy Whitcroft			print "COND($1)\n" if ($dbg_values > 1);
90914b111c1SAndy Whitcroft			$av_pending = 'E';
9106c72ffaaSAndy Whitcroft			$type = 'N';
9116c72ffaaSAndy Whitcroft
9121f65f947SAndy Whitcroft		} elsif ($cur =~/^(case)/o) {
9131f65f947SAndy Whitcroft			print "CASE($1)\n" if ($dbg_values > 1);
9141f65f947SAndy Whitcroft			$av_pend_colon = 'C';
9151f65f947SAndy Whitcroft			$type = 'N';
9161f65f947SAndy Whitcroft
91714b111c1SAndy Whitcroft		} elsif ($cur =~/^(return|else|goto|typeof|__typeof__)\b/o) {
918c2fdda0dSAndy Whitcroft			print "KEYWORD($1)\n" if ($dbg_values > 1);
9196c72ffaaSAndy Whitcroft			$type = 'N';
9206c72ffaaSAndy Whitcroft
9216c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^(\()/o) {
922c2fdda0dSAndy Whitcroft			print "PAREN('$1')\n" if ($dbg_values > 1);
923cf655043SAndy Whitcroft			push(@av_paren_type, $av_pending);
924cf655043SAndy Whitcroft			$av_pending = '_';
9256c72ffaaSAndy Whitcroft			$type = 'N';
9266c72ffaaSAndy Whitcroft
9276c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^(\))/o) {
928cf655043SAndy Whitcroft			my $new_type = pop(@av_paren_type);
929cf655043SAndy Whitcroft			if ($new_type ne '_') {
930cf655043SAndy Whitcroft				$type = $new_type;
931c2fdda0dSAndy Whitcroft				print "PAREN('$1') -> $type\n"
932c2fdda0dSAndy Whitcroft							if ($dbg_values > 1);
9336c72ffaaSAndy Whitcroft			} else {
934c2fdda0dSAndy Whitcroft				print "PAREN('$1')\n" if ($dbg_values > 1);
9356c72ffaaSAndy Whitcroft			}
9366c72ffaaSAndy Whitcroft
937c8cb2ca3SAndy Whitcroft		} elsif ($cur =~ /^($Ident)\s*\(/o) {
938c2fdda0dSAndy Whitcroft			print "FUNC($1)\n" if ($dbg_values > 1);
939c8cb2ca3SAndy Whitcroft			$type = 'V';
940cf655043SAndy Whitcroft			$av_pending = 'V';
9416c72ffaaSAndy Whitcroft
9428e761b04SAndy Whitcroft		} elsif ($cur =~ /^($Ident\s*):(?:\s*\d+\s*(,|=|;))?/) {
9438e761b04SAndy Whitcroft			if (defined $2 && $type eq 'C' || $type eq 'T') {
9441f65f947SAndy Whitcroft				$av_pend_colon = 'B';
9458e761b04SAndy Whitcroft			} elsif ($type eq 'E') {
9468e761b04SAndy Whitcroft				$av_pend_colon = 'L';
9471f65f947SAndy Whitcroft			}
9481f65f947SAndy Whitcroft			print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1);
9491f65f947SAndy Whitcroft			$type = 'V';
9501f65f947SAndy Whitcroft
9516c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^($Ident|$Constant)/o) {
952c2fdda0dSAndy Whitcroft			print "IDENT($1)\n" if ($dbg_values > 1);
9536c72ffaaSAndy Whitcroft			$type = 'V';
9546c72ffaaSAndy Whitcroft
9556c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^($Assignment)/o) {
956c2fdda0dSAndy Whitcroft			print "ASSIGN($1)\n" if ($dbg_values > 1);
9576c72ffaaSAndy Whitcroft			$type = 'N';
9586c72ffaaSAndy Whitcroft
959cf655043SAndy Whitcroft		} elsif ($cur =~/^(;|{|})/) {
960c2fdda0dSAndy Whitcroft			print "END($1)\n" if ($dbg_values > 1);
96113214adfSAndy Whitcroft			$type = 'E';
9621f65f947SAndy Whitcroft			$av_pend_colon = 'O';
96313214adfSAndy Whitcroft
9648e761b04SAndy Whitcroft		} elsif ($cur =~/^(,)/) {
9658e761b04SAndy Whitcroft			print "COMMA($1)\n" if ($dbg_values > 1);
9668e761b04SAndy Whitcroft			$type = 'C';
9678e761b04SAndy Whitcroft
9681f65f947SAndy Whitcroft		} elsif ($cur =~ /^(\?)/o) {
9691f65f947SAndy Whitcroft			print "QUESTION($1)\n" if ($dbg_values > 1);
9701f65f947SAndy Whitcroft			$type = 'N';
9711f65f947SAndy Whitcroft
9721f65f947SAndy Whitcroft		} elsif ($cur =~ /^(:)/o) {
9731f65f947SAndy Whitcroft			print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1);
9741f65f947SAndy Whitcroft
9751f65f947SAndy Whitcroft			substr($var, length($res), 1, $av_pend_colon);
9761f65f947SAndy Whitcroft			if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') {
9771f65f947SAndy Whitcroft				$type = 'E';
9781f65f947SAndy Whitcroft			} else {
9791f65f947SAndy Whitcroft				$type = 'N';
9801f65f947SAndy Whitcroft			}
9811f65f947SAndy Whitcroft			$av_pend_colon = 'O';
9821f65f947SAndy Whitcroft
9838e761b04SAndy Whitcroft		} elsif ($cur =~ /^(\[)/o) {
98413214adfSAndy Whitcroft			print "CLOSE($1)\n" if ($dbg_values > 1);
9856c72ffaaSAndy Whitcroft			$type = 'N';
9866c72ffaaSAndy Whitcroft
9870d413866SAndy Whitcroft		} elsif ($cur =~ /^(-(?![->])|\+(?!\+)|\*|\&\&|\&)/o) {
98874048ed8SAndy Whitcroft			my $variant;
98974048ed8SAndy Whitcroft
99074048ed8SAndy Whitcroft			print "OPV($1)\n" if ($dbg_values > 1);
99174048ed8SAndy Whitcroft			if ($type eq 'V') {
99274048ed8SAndy Whitcroft				$variant = 'B';
99374048ed8SAndy Whitcroft			} else {
99474048ed8SAndy Whitcroft				$variant = 'U';
99574048ed8SAndy Whitcroft			}
99674048ed8SAndy Whitcroft
99774048ed8SAndy Whitcroft			substr($var, length($res), 1, $variant);
99874048ed8SAndy Whitcroft			$type = 'N';
99974048ed8SAndy Whitcroft
10006c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^($Operators)/o) {
1001c2fdda0dSAndy Whitcroft			print "OP($1)\n" if ($dbg_values > 1);
10026c72ffaaSAndy Whitcroft			if ($1 ne '++' && $1 ne '--') {
10036c72ffaaSAndy Whitcroft				$type = 'N';
10046c72ffaaSAndy Whitcroft			}
10056c72ffaaSAndy Whitcroft
10066c72ffaaSAndy Whitcroft		} elsif ($cur =~ /(^.)/o) {
1007c2fdda0dSAndy Whitcroft			print "C($1)\n" if ($dbg_values > 1);
10086c72ffaaSAndy Whitcroft		}
10096c72ffaaSAndy Whitcroft		if (defined $1) {
10106c72ffaaSAndy Whitcroft			$cur = substr($cur, length($1));
10116c72ffaaSAndy Whitcroft			$res .= $type x length($1);
10126c72ffaaSAndy Whitcroft		}
10136c72ffaaSAndy Whitcroft	}
10146c72ffaaSAndy Whitcroft
10151f65f947SAndy Whitcroft	return ($res, $var);
10166c72ffaaSAndy Whitcroft}
10176c72ffaaSAndy Whitcroft
10188905a67cSAndy Whitcroftsub possible {
101913214adfSAndy Whitcroft	my ($possible, $line) = @_;
10209a974fdbSAndy Whitcroft	my $notPermitted = qr{(?:
10210776e594SAndy Whitcroft		^(?:
10220776e594SAndy Whitcroft			$Modifier|
10230776e594SAndy Whitcroft			$Storage|
10240776e594SAndy Whitcroft			$Type|
10259a974fdbSAndy Whitcroft			DEFINE_\S+
10269a974fdbSAndy Whitcroft		)$|
10279a974fdbSAndy Whitcroft		^(?:
10280776e594SAndy Whitcroft			goto|
10290776e594SAndy Whitcroft			return|
10300776e594SAndy Whitcroft			case|
10310776e594SAndy Whitcroft			else|
10320776e594SAndy Whitcroft			asm|__asm__|
10330776e594SAndy Whitcroft			do
10349a974fdbSAndy Whitcroft		)(?:\s|$)|
10350776e594SAndy Whitcroft		^(?:typedef|struct|enum)\b
10369a974fdbSAndy Whitcroft	    )}x;
10379a974fdbSAndy Whitcroft	warn "CHECK<$possible> ($line)\n" if ($dbg_possible > 2);
10389a974fdbSAndy Whitcroft	if ($possible !~ $notPermitted) {
1039c45dcabdSAndy Whitcroft		# Check for modifiers.
1040c45dcabdSAndy Whitcroft		$possible =~ s/\s*$Storage\s*//g;
1041c45dcabdSAndy Whitcroft		$possible =~ s/\s*$Sparse\s*//g;
1042c45dcabdSAndy Whitcroft		if ($possible =~ /^\s*$/) {
1043c45dcabdSAndy Whitcroft
1044c45dcabdSAndy Whitcroft		} elsif ($possible =~ /\s/) {
1045c45dcabdSAndy Whitcroft			$possible =~ s/\s*$Type\s*//g;
1046d2506586SAndy Whitcroft			for my $modifier (split(' ', $possible)) {
10479a974fdbSAndy Whitcroft				if ($modifier !~ $notPermitted) {
1048d2506586SAndy Whitcroft					warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
1049d2506586SAndy Whitcroft					push(@modifierList, $modifier);
1050d2506586SAndy Whitcroft				}
10519a974fdbSAndy Whitcroft			}
1052c45dcabdSAndy Whitcroft
1053c45dcabdSAndy Whitcroft		} else {
105413214adfSAndy Whitcroft			warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
10558905a67cSAndy Whitcroft			push(@typeList, $possible);
1056c45dcabdSAndy Whitcroft		}
10578905a67cSAndy Whitcroft		build_types();
10580776e594SAndy Whitcroft	} else {
10590776e594SAndy Whitcroft		warn "NOTPOSS: $possible ($line)\n" if ($dbg_possible > 1);
10608905a67cSAndy Whitcroft	}
10618905a67cSAndy Whitcroft}
10628905a67cSAndy Whitcroft
10636c72ffaaSAndy Whitcroftmy $prefix = '';
10646c72ffaaSAndy Whitcroft
1065f0a594c1SAndy Whitcroftsub report {
1066773647a0SAndy Whitcroft	if (defined $tst_only && $_[0] !~ /\Q$tst_only\E/) {
1067773647a0SAndy Whitcroft		return 0;
1068773647a0SAndy Whitcroft	}
10698905a67cSAndy Whitcroft	my $line = $prefix . $_[0];
10708905a67cSAndy Whitcroft
10718905a67cSAndy Whitcroft	$line = (split('\n', $line))[0] . "\n" if ($terse);
10728905a67cSAndy Whitcroft
107313214adfSAndy Whitcroft	push(our @report, $line);
1074773647a0SAndy Whitcroft
1075773647a0SAndy Whitcroft	return 1;
1076f0a594c1SAndy Whitcroft}
1077f0a594c1SAndy Whitcroftsub report_dump {
107813214adfSAndy Whitcroft	our @report;
1079f0a594c1SAndy Whitcroft}
1080de7d4f0eSAndy Whitcroftsub ERROR {
1081773647a0SAndy Whitcroft	if (report("ERROR: $_[0]\n")) {
1082de7d4f0eSAndy Whitcroft		our $clean = 0;
10836c72ffaaSAndy Whitcroft		our $cnt_error++;
1084de7d4f0eSAndy Whitcroft	}
1085773647a0SAndy Whitcroft}
1086de7d4f0eSAndy Whitcroftsub WARN {
1087773647a0SAndy Whitcroft	if (report("WARNING: $_[0]\n")) {
1088de7d4f0eSAndy Whitcroft		our $clean = 0;
10896c72ffaaSAndy Whitcroft		our $cnt_warn++;
1090de7d4f0eSAndy Whitcroft	}
1091773647a0SAndy Whitcroft}
1092de7d4f0eSAndy Whitcroftsub CHK {
1093773647a0SAndy Whitcroft	if ($check && report("CHECK: $_[0]\n")) {
1094de7d4f0eSAndy Whitcroft		our $clean = 0;
10956c72ffaaSAndy Whitcroft		our $cnt_chk++;
10966c72ffaaSAndy Whitcroft	}
1097de7d4f0eSAndy Whitcroft}
1098de7d4f0eSAndy Whitcroft
10996ecd9674SAndy Whitcroftsub check_absolute_file {
11006ecd9674SAndy Whitcroft	my ($absolute, $herecurr) = @_;
11016ecd9674SAndy Whitcroft	my $file = $absolute;
11026ecd9674SAndy Whitcroft
11036ecd9674SAndy Whitcroft	##print "absolute<$absolute>\n";
11046ecd9674SAndy Whitcroft
11056ecd9674SAndy Whitcroft	# See if any suffix of this path is a path within the tree.
11066ecd9674SAndy Whitcroft	while ($file =~ s@^[^/]*/@@) {
11076ecd9674SAndy Whitcroft		if (-f "$root/$file") {
11086ecd9674SAndy Whitcroft			##print "file<$file>\n";
11096ecd9674SAndy Whitcroft			last;
11106ecd9674SAndy Whitcroft		}
11116ecd9674SAndy Whitcroft	}
11126ecd9674SAndy Whitcroft	if (! -f _)  {
11136ecd9674SAndy Whitcroft		return 0;
11146ecd9674SAndy Whitcroft	}
11156ecd9674SAndy Whitcroft
11166ecd9674SAndy Whitcroft	# It is, so see if the prefix is acceptable.
11176ecd9674SAndy Whitcroft	my $prefix = $absolute;
11186ecd9674SAndy Whitcroft	substr($prefix, -length($file)) = '';
11196ecd9674SAndy Whitcroft
11206ecd9674SAndy Whitcroft	##print "prefix<$prefix>\n";
11216ecd9674SAndy Whitcroft	if ($prefix ne ".../") {
11226ecd9674SAndy Whitcroft		WARN("use relative pathname instead of absolute in changelog text\n" . $herecurr);
11236ecd9674SAndy Whitcroft	}
11246ecd9674SAndy Whitcroft}
11256ecd9674SAndy Whitcroft
11260a920b5bSAndy Whitcroftsub process {
11270a920b5bSAndy Whitcroft	my $filename = shift;
11280a920b5bSAndy Whitcroft
11290a920b5bSAndy Whitcroft	my $linenr=0;
11300a920b5bSAndy Whitcroft	my $prevline="";
1131c2fdda0dSAndy Whitcroft	my $prevrawline="";
11320a920b5bSAndy Whitcroft	my $stashline="";
1133c2fdda0dSAndy Whitcroft	my $stashrawline="";
11340a920b5bSAndy Whitcroft
11354a0df2efSAndy Whitcroft	my $length;
11360a920b5bSAndy Whitcroft	my $indent;
11370a920b5bSAndy Whitcroft	my $previndent=0;
11380a920b5bSAndy Whitcroft	my $stashindent=0;
11390a920b5bSAndy Whitcroft
1140de7d4f0eSAndy Whitcroft	our $clean = 1;
11410a920b5bSAndy Whitcroft	my $signoff = 0;
11420a920b5bSAndy Whitcroft	my $is_patch = 0;
11430a920b5bSAndy Whitcroft
114413214adfSAndy Whitcroft	our @report = ();
11456c72ffaaSAndy Whitcroft	our $cnt_lines = 0;
11466c72ffaaSAndy Whitcroft	our $cnt_error = 0;
11476c72ffaaSAndy Whitcroft	our $cnt_warn = 0;
11486c72ffaaSAndy Whitcroft	our $cnt_chk = 0;
11496c72ffaaSAndy Whitcroft
11500a920b5bSAndy Whitcroft	# Trace the real file/line as we go.
11510a920b5bSAndy Whitcroft	my $realfile = '';
11520a920b5bSAndy Whitcroft	my $realline = 0;
11530a920b5bSAndy Whitcroft	my $realcnt = 0;
11540a920b5bSAndy Whitcroft	my $here = '';
11550a920b5bSAndy Whitcroft	my $in_comment = 0;
1156c2fdda0dSAndy Whitcroft	my $comment_edge = 0;
11570a920b5bSAndy Whitcroft	my $first_line = 0;
11581e855726SWolfram Sang	my $p1_prefix = '';
11590a920b5bSAndy Whitcroft
116013214adfSAndy Whitcroft	my $prev_values = 'E';
116113214adfSAndy Whitcroft
116213214adfSAndy Whitcroft	# suppression flags
1163773647a0SAndy Whitcroft	my %suppress_ifbraces;
1164170d3a22SAndy Whitcroft	my %suppress_whiletrailers;
11652b474a1aSAndy Whitcroft	my %suppress_export;
1166653d4876SAndy Whitcroft
1167c2fdda0dSAndy Whitcroft	# Pre-scan the patch sanitizing the lines.
1168de7d4f0eSAndy Whitcroft	# Pre-scan the patch looking for any __setup documentation.
1169c2fdda0dSAndy Whitcroft	#
1170de7d4f0eSAndy Whitcroft	my @setup_docs = ();
1171de7d4f0eSAndy Whitcroft	my $setup_docs = 0;
1172773647a0SAndy Whitcroft
1173773647a0SAndy Whitcroft	sanitise_line_reset();
1174c2fdda0dSAndy Whitcroft	my $line;
1175c2fdda0dSAndy Whitcroft	foreach my $rawline (@rawlines) {
1176773647a0SAndy Whitcroft		$linenr++;
1177773647a0SAndy Whitcroft		$line = $rawline;
1178c2fdda0dSAndy Whitcroft
1179773647a0SAndy Whitcroft		if ($rawline=~/^\+\+\+\s+(\S+)/) {
1180de7d4f0eSAndy Whitcroft			$setup_docs = 0;
1181de7d4f0eSAndy Whitcroft			if ($1 =~ m@Documentation/kernel-parameters.txt$@) {
1182de7d4f0eSAndy Whitcroft				$setup_docs = 1;
1183de7d4f0eSAndy Whitcroft			}
1184773647a0SAndy Whitcroft			#next;
1185de7d4f0eSAndy Whitcroft		}
1186773647a0SAndy Whitcroft		if ($rawline=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
1187773647a0SAndy Whitcroft			$realline=$1-1;
1188773647a0SAndy Whitcroft			if (defined $2) {
1189773647a0SAndy Whitcroft				$realcnt=$3+1;
1190773647a0SAndy Whitcroft			} else {
1191773647a0SAndy Whitcroft				$realcnt=1+1;
1192773647a0SAndy Whitcroft			}
1193c45dcabdSAndy Whitcroft			$in_comment = 0;
1194773647a0SAndy Whitcroft
1195773647a0SAndy Whitcroft			# Guestimate if this is a continuing comment.  Run
1196773647a0SAndy Whitcroft			# the context looking for a comment "edge".  If this
1197773647a0SAndy Whitcroft			# edge is a close comment then we must be in a comment
1198773647a0SAndy Whitcroft			# at context start.
1199773647a0SAndy Whitcroft			my $edge;
120001fa9147SAndy Whitcroft			my $cnt = $realcnt;
120101fa9147SAndy Whitcroft			for (my $ln = $linenr + 1; $cnt > 0; $ln++) {
120201fa9147SAndy Whitcroft				next if (defined $rawlines[$ln - 1] &&
120301fa9147SAndy Whitcroft					 $rawlines[$ln - 1] =~ /^-/);
120401fa9147SAndy Whitcroft				$cnt--;
120501fa9147SAndy Whitcroft				#print "RAW<$rawlines[$ln - 1]>\n";
1206721c1cb6SAndy Whitcroft				last if (!defined $rawlines[$ln - 1]);
1207fae17daeSAndy Whitcroft				if ($rawlines[$ln - 1] =~ m@(/\*|\*/)@ &&
1208fae17daeSAndy Whitcroft				    $rawlines[$ln - 1] !~ m@"[^"]*(?:/\*|\*/)[^"]*"@) {
1209fae17daeSAndy Whitcroft					($edge) = $1;
1210fae17daeSAndy Whitcroft					last;
1211fae17daeSAndy Whitcroft				}
1212773647a0SAndy Whitcroft			}
1213773647a0SAndy Whitcroft			if (defined $edge && $edge eq '*/') {
1214773647a0SAndy Whitcroft				$in_comment = 1;
1215773647a0SAndy Whitcroft			}
1216773647a0SAndy Whitcroft
1217773647a0SAndy Whitcroft			# Guestimate if this is a continuing comment.  If this
1218773647a0SAndy Whitcroft			# is the start of a diff block and this line starts
1219773647a0SAndy Whitcroft			# ' *' then it is very likely a comment.
1220773647a0SAndy Whitcroft			if (!defined $edge &&
122183242e0cSAndy Whitcroft			    $rawlines[$linenr] =~ m@^.\s*(?:\*\*+| \*)(?:\s|$)@)
1222773647a0SAndy Whitcroft			{
1223773647a0SAndy Whitcroft				$in_comment = 1;
1224773647a0SAndy Whitcroft			}
1225773647a0SAndy Whitcroft
1226773647a0SAndy Whitcroft			##print "COMMENT:$in_comment edge<$edge> $rawline\n";
1227773647a0SAndy Whitcroft			sanitise_line_reset($in_comment);
1228773647a0SAndy Whitcroft
1229171ae1a4SAndy Whitcroft		} elsif ($realcnt && $rawline =~ /^(?:\+| |$)/) {
1230773647a0SAndy Whitcroft			# Standardise the strings and chars within the input to
1231171ae1a4SAndy Whitcroft			# simplify matching -- only bother with positive lines.
1232773647a0SAndy Whitcroft			$line = sanitise_line($rawline);
1233773647a0SAndy Whitcroft		}
1234773647a0SAndy Whitcroft		push(@lines, $line);
1235773647a0SAndy Whitcroft
1236773647a0SAndy Whitcroft		if ($realcnt > 1) {
1237773647a0SAndy Whitcroft			$realcnt-- if ($line =~ /^(?:\+| |$)/);
1238773647a0SAndy Whitcroft		} else {
1239773647a0SAndy Whitcroft			$realcnt = 0;
1240773647a0SAndy Whitcroft		}
1241773647a0SAndy Whitcroft
1242773647a0SAndy Whitcroft		#print "==>$rawline\n";
1243773647a0SAndy Whitcroft		#print "-->$line\n";
1244de7d4f0eSAndy Whitcroft
1245de7d4f0eSAndy Whitcroft		if ($setup_docs && $line =~ /^\+/) {
1246de7d4f0eSAndy Whitcroft			push(@setup_docs, $line);
1247de7d4f0eSAndy Whitcroft		}
1248de7d4f0eSAndy Whitcroft	}
1249de7d4f0eSAndy Whitcroft
12506c72ffaaSAndy Whitcroft	$prefix = '';
12516c72ffaaSAndy Whitcroft
1252773647a0SAndy Whitcroft	$realcnt = 0;
1253773647a0SAndy Whitcroft	$linenr = 0;
12540a920b5bSAndy Whitcroft	foreach my $line (@lines) {
12550a920b5bSAndy Whitcroft		$linenr++;
12560a920b5bSAndy Whitcroft
1257c2fdda0dSAndy Whitcroft		my $rawline = $rawlines[$linenr - 1];
12586c72ffaaSAndy Whitcroft
12590a920b5bSAndy Whitcroft#extract the line range in the file after the patch is applied
12606c72ffaaSAndy Whitcroft		if ($line=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
12610a920b5bSAndy Whitcroft			$is_patch = 1;
12624a0df2efSAndy Whitcroft			$first_line = $linenr + 1;
12630a920b5bSAndy Whitcroft			$realline=$1-1;
12640a920b5bSAndy Whitcroft			if (defined $2) {
12650a920b5bSAndy Whitcroft				$realcnt=$3+1;
12660a920b5bSAndy Whitcroft			} else {
12670a920b5bSAndy Whitcroft				$realcnt=1+1;
12680a920b5bSAndy Whitcroft			}
1269c2fdda0dSAndy Whitcroft			annotate_reset();
127013214adfSAndy Whitcroft			$prev_values = 'E';
127113214adfSAndy Whitcroft
1272773647a0SAndy Whitcroft			%suppress_ifbraces = ();
1273170d3a22SAndy Whitcroft			%suppress_whiletrailers = ();
12742b474a1aSAndy Whitcroft			%suppress_export = ();
12750a920b5bSAndy Whitcroft			next;
12760a920b5bSAndy Whitcroft
12774a0df2efSAndy Whitcroft# track the line number as we move through the hunk, note that
12784a0df2efSAndy Whitcroft# new versions of GNU diff omit the leading space on completely
12794a0df2efSAndy Whitcroft# blank context lines so we need to count that too.
1280773647a0SAndy Whitcroft		} elsif ($line =~ /^( |\+|$)/) {
12810a920b5bSAndy Whitcroft			$realline++;
1282d8aaf121SAndy Whitcroft			$realcnt-- if ($realcnt != 0);
12830a920b5bSAndy Whitcroft
12844a0df2efSAndy Whitcroft			# Measure the line length and indent.
1285c2fdda0dSAndy Whitcroft			($length, $indent) = line_stats($rawline);
12860a920b5bSAndy Whitcroft
12870a920b5bSAndy Whitcroft			# Track the previous line.
12880a920b5bSAndy Whitcroft			($prevline, $stashline) = ($stashline, $line);
12890a920b5bSAndy Whitcroft			($previndent, $stashindent) = ($stashindent, $indent);
1290c2fdda0dSAndy Whitcroft			($prevrawline, $stashrawline) = ($stashrawline, $rawline);
1291c2fdda0dSAndy Whitcroft
1292773647a0SAndy Whitcroft			#warn "line<$line>\n";
12936c72ffaaSAndy Whitcroft
1294d8aaf121SAndy Whitcroft		} elsif ($realcnt == 1) {
1295d8aaf121SAndy Whitcroft			$realcnt--;
12960a920b5bSAndy Whitcroft		}
12970a920b5bSAndy Whitcroft
1298cc77cdcaSAndy Whitcroft		my $hunk_line = ($realcnt != 0);
1299cc77cdcaSAndy Whitcroft
13000a920b5bSAndy Whitcroft#make up the handle for any error we report on this line
1301773647a0SAndy Whitcroft		$prefix = "$filename:$realline: " if ($emacs && $file);
1302773647a0SAndy Whitcroft		$prefix = "$filename:$linenr: " if ($emacs && !$file);
1303773647a0SAndy Whitcroft
13046c72ffaaSAndy Whitcroft		$here = "#$linenr: " if (!$file);
13056c72ffaaSAndy Whitcroft		$here = "#$realline: " if ($file);
1306773647a0SAndy Whitcroft
1307773647a0SAndy Whitcroft		# extract the filename as it passes
1308773647a0SAndy Whitcroft		if ($line=~/^\+\+\+\s+(\S+)/) {
1309773647a0SAndy Whitcroft			$realfile = $1;
13101e855726SWolfram Sang			$realfile =~ s@^([^/]*)/@@;
13111e855726SWolfram Sang
13121e855726SWolfram Sang			$p1_prefix = $1;
1313e2f7aa4bSAndy Whitcroft			if (!$file && $tree && $p1_prefix ne '' &&
1314e2f7aa4bSAndy Whitcroft			    -e "$root/$p1_prefix") {
13151e855726SWolfram Sang				WARN("patch prefix '$p1_prefix' exists, appears to be a -p0 patch\n");
13161e855726SWolfram Sang			}
1317773647a0SAndy Whitcroft
1318c1ab3326SAndy Whitcroft			if ($realfile =~ m@^include/asm/@) {
1319773647a0SAndy Whitcroft				ERROR("do not modify files in include/asm, change architecture specific files in include/asm-<architecture>\n" . "$here$rawline\n");
1320773647a0SAndy Whitcroft			}
1321773647a0SAndy Whitcroft			next;
1322773647a0SAndy Whitcroft		}
1323773647a0SAndy Whitcroft
1324389834b6SRandy Dunlap		$here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
13250a920b5bSAndy Whitcroft
1326c2fdda0dSAndy Whitcroft		my $hereline = "$here\n$rawline\n";
1327c2fdda0dSAndy Whitcroft		my $herecurr = "$here\n$rawline\n";
1328c2fdda0dSAndy Whitcroft		my $hereprev = "$here\n$prevrawline\n$rawline\n";
13290a920b5bSAndy Whitcroft
13306c72ffaaSAndy Whitcroft		$cnt_lines++ if ($realcnt != 0);
13316c72ffaaSAndy Whitcroft
13320a920b5bSAndy Whitcroft#check the patch for a signoff:
1333d8aaf121SAndy Whitcroft		if ($line =~ /^\s*signed-off-by:/i) {
13344a0df2efSAndy Whitcroft			# This is a signoff, if ugly, so do not double report.
13354a0df2efSAndy Whitcroft			$signoff++;
13360a920b5bSAndy Whitcroft			if (!($line =~ /^\s*Signed-off-by:/)) {
1337de7d4f0eSAndy Whitcroft				WARN("Signed-off-by: is the preferred form\n" .
1338de7d4f0eSAndy Whitcroft					$herecurr);
13390a920b5bSAndy Whitcroft			}
13400a920b5bSAndy Whitcroft			if ($line =~ /^\s*signed-off-by:\S/i) {
1341773647a0SAndy Whitcroft				WARN("space required after Signed-off-by:\n" .
1342de7d4f0eSAndy Whitcroft					$herecurr);
13430a920b5bSAndy Whitcroft			}
13440a920b5bSAndy Whitcroft		}
13450a920b5bSAndy Whitcroft
134600df344fSAndy Whitcroft# Check for wrappage within a valid hunk of the file
13478905a67cSAndy Whitcroft		if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) {
1348de7d4f0eSAndy Whitcroft			ERROR("patch seems to be corrupt (line wrapped?)\n" .
13496c72ffaaSAndy Whitcroft				$herecurr) if (!$emitted_corrupt++);
1350de7d4f0eSAndy Whitcroft		}
1351de7d4f0eSAndy Whitcroft
13526ecd9674SAndy Whitcroft# Check for absolute kernel paths.
13536ecd9674SAndy Whitcroft		if ($tree) {
13546ecd9674SAndy Whitcroft			while ($line =~ m{(?:^|\s)(/\S*)}g) {
13556ecd9674SAndy Whitcroft				my $file = $1;
13566ecd9674SAndy Whitcroft
13576ecd9674SAndy Whitcroft				if ($file =~ m{^(.*?)(?::\d+)+:?$} &&
13586ecd9674SAndy Whitcroft				    check_absolute_file($1, $herecurr)) {
13596ecd9674SAndy Whitcroft					#
13606ecd9674SAndy Whitcroft				} else {
13616ecd9674SAndy Whitcroft					check_absolute_file($file, $herecurr);
13626ecd9674SAndy Whitcroft				}
13636ecd9674SAndy Whitcroft			}
13646ecd9674SAndy Whitcroft		}
13656ecd9674SAndy Whitcroft
1366de7d4f0eSAndy Whitcroft# UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
1367de7d4f0eSAndy Whitcroft		if (($realfile =~ /^$/ || $line =~ /^\+/) &&
1368171ae1a4SAndy Whitcroft		    $rawline !~ m/^$UTF8*$/) {
1369171ae1a4SAndy Whitcroft			my ($utf8_prefix) = ($rawline =~ /^($UTF8*)/);
1370171ae1a4SAndy Whitcroft
1371171ae1a4SAndy Whitcroft			my $blank = copy_spacing($rawline);
1372171ae1a4SAndy Whitcroft			my $ptr = substr($blank, 0, length($utf8_prefix)) . "^";
1373171ae1a4SAndy Whitcroft			my $hereptr = "$hereline$ptr\n";
1374171ae1a4SAndy Whitcroft
1375171ae1a4SAndy Whitcroft			ERROR("Invalid UTF-8, patch and commit message should be encoded in UTF-8\n" . $hereptr);
137600df344fSAndy Whitcroft		}
13770a920b5bSAndy Whitcroft
137830670854SAndy Whitcroft# ignore non-hunk lines and lines being removed
137930670854SAndy Whitcroft		next if (!$hunk_line || $line =~ /^-/);
138000df344fSAndy Whitcroft
13810a920b5bSAndy Whitcroft#trailing whitespace
13829c0ca6f9SAndy Whitcroft		if ($line =~ /^\+.*\015/) {
1383c2fdda0dSAndy Whitcroft			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
13849c0ca6f9SAndy Whitcroft			ERROR("DOS line endings\n" . $herevet);
13859c0ca6f9SAndy Whitcroft
1386c2fdda0dSAndy Whitcroft		} elsif ($rawline =~ /^\+.*\S\s+$/ || $rawline =~ /^\+\s+$/) {
1387c2fdda0dSAndy Whitcroft			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
1388de7d4f0eSAndy Whitcroft			ERROR("trailing whitespace\n" . $herevet);
13890a920b5bSAndy Whitcroft		}
13905368df20SAndy Whitcroft
13913354957aSAndi Kleen# check for Kconfig help text having a real description
13923354957aSAndi Kleen		if ($realfile =~ /Kconfig/ &&
13933354957aSAndi Kleen		    $line =~ /\+?\s*(---)?help(---)?$/) {
13943354957aSAndi Kleen			my $length = 0;
13953354957aSAndi Kleen			for (my $l = $linenr; defined($lines[$l]); $l++) {
13963354957aSAndi Kleen				my $f = $lines[$l];
13973354957aSAndi Kleen				$f =~ s/#.*//;
13983354957aSAndi Kleen				$f =~ s/^\s+//;
13993354957aSAndi Kleen				next if ($f =~ /^$/);
14003354957aSAndi Kleen				last if ($f =~ /^\s*config\s/);
14013354957aSAndi Kleen				$length++;
14023354957aSAndi Kleen			}
14033354957aSAndi Kleen			WARN("please write a paragraph that describes the config symbol fully\n" . $herecurr) if ($length < 4);
14043354957aSAndi Kleen		}
14053354957aSAndi Kleen
14065368df20SAndy Whitcroft# check we are in a valid source file if not then ignore this hunk
14075368df20SAndy Whitcroft		next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/);
14085368df20SAndy Whitcroft
14090a920b5bSAndy Whitcroft#80 column limit
1410c45dcabdSAndy Whitcroft		if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ &&
1411f4c014c0SAndy Whitcroft		    $rawline !~ /^.\s*\*\s*\@$Ident\s/ &&
1412*8bbea968SJoe Perches		    !($line =~ /^\+\s*$logFunctions\s*\(\s*(?:(KERN_\S+\s*|[^"]*))?"[X\t]*"\s*(?:,|\)\s*;)\s*$/ ||
1413*8bbea968SJoe Perches		    $line =~ /^\+\s*"[^"]*"\s*(?:\s*|,|\)\s*;)\s*$/) &&
1414f4c014c0SAndy Whitcroft		    $length > 80)
1415c45dcabdSAndy Whitcroft		{
1416de7d4f0eSAndy Whitcroft			WARN("line over 80 characters\n" . $herecurr);
14170a920b5bSAndy Whitcroft		}
14180a920b5bSAndy Whitcroft
14195e79d96eSJoe Perches# check for spaces before a quoted newline
14205e79d96eSJoe Perches		if ($rawline =~ /^.*\".*\s\\n/) {
14215e79d96eSJoe Perches			WARN("unnecessary whitespace before a quoted newline\n" . $herecurr);
14225e79d96eSJoe Perches		}
14235e79d96eSJoe Perches
14248905a67cSAndy Whitcroft# check for adding lines without a newline.
14258905a67cSAndy Whitcroft		if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
14268905a67cSAndy Whitcroft			WARN("adding a line without newline at end of file\n" . $herecurr);
14278905a67cSAndy Whitcroft		}
14288905a67cSAndy Whitcroft
142942e41c54SMike Frysinger# Blackfin: use hi/lo macros
143042e41c54SMike Frysinger		if ($realfile =~ m@arch/blackfin/.*\.S$@) {
143142e41c54SMike Frysinger			if ($line =~ /\.[lL][[:space:]]*=.*&[[:space:]]*0x[fF][fF][fF][fF]/) {
143242e41c54SMike Frysinger				my $herevet = "$here\n" . cat_vet($line) . "\n";
143342e41c54SMike Frysinger				ERROR("use the LO() macro, not (... & 0xFFFF)\n" . $herevet);
143442e41c54SMike Frysinger			}
143542e41c54SMike Frysinger			if ($line =~ /\.[hH][[:space:]]*=.*>>[[:space:]]*16/) {
143642e41c54SMike Frysinger				my $herevet = "$here\n" . cat_vet($line) . "\n";
143742e41c54SMike Frysinger				ERROR("use the HI() macro, not (... >> 16)\n" . $herevet);
143842e41c54SMike Frysinger			}
143942e41c54SMike Frysinger		}
144042e41c54SMike Frysinger
1441b9ea10d6SAndy Whitcroft# check we are in a valid source file C or perl if not then ignore this hunk
1442b9ea10d6SAndy Whitcroft		next if ($realfile !~ /\.(h|c|pl)$/);
14430a920b5bSAndy Whitcroft
14440a920b5bSAndy Whitcroft# at the beginning of a line any tabs must come first and anything
14450a920b5bSAndy Whitcroft# more than 8 must use tabs.
1446c2fdda0dSAndy Whitcroft		if ($rawline =~ /^\+\s* \t\s*\S/ ||
1447c2fdda0dSAndy Whitcroft		    $rawline =~ /^\+\s*        \s*/) {
1448c2fdda0dSAndy Whitcroft			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
1449171ae1a4SAndy Whitcroft			ERROR("code indent should use tabs where possible\n" . $herevet);
14500a920b5bSAndy Whitcroft		}
14510a920b5bSAndy Whitcroft
145208e44365SAlberto Panizzo# check for space before tabs.
145308e44365SAlberto Panizzo		if ($rawline =~ /^\+/ && $rawline =~ / \t/) {
145408e44365SAlberto Panizzo			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
145508e44365SAlberto Panizzo			WARN("please, no space before tabs\n" . $herevet);
145608e44365SAlberto Panizzo		}
145708e44365SAlberto Panizzo
14585f7ddae6SRaffaele Recalcati# check for spaces at the beginning of a line.
14595f7ddae6SRaffaele Recalcati		if ($rawline =~ /^\+ / && $rawline !~ /\+ +\*/)  {
14605f7ddae6SRaffaele Recalcati			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
14615f7ddae6SRaffaele Recalcati			WARN("please, no space for starting a line, \
14625f7ddae6SRaffaele Recalcati				excluding comments\n" . $herevet);
14635f7ddae6SRaffaele Recalcati		}
14645f7ddae6SRaffaele Recalcati
1465b9ea10d6SAndy Whitcroft# check we are in a valid C source file if not then ignore this hunk
1466b9ea10d6SAndy Whitcroft		next if ($realfile !~ /\.(h|c)$/);
1467b9ea10d6SAndy Whitcroft
1468c2fdda0dSAndy Whitcroft# check for RCS/CVS revision markers
1469cf655043SAndy Whitcroft		if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) {
1470c2fdda0dSAndy Whitcroft			WARN("CVS style keyword markers, these will _not_ be updated\n". $herecurr);
1471c2fdda0dSAndy Whitcroft		}
147222f2a2efSAndy Whitcroft
147342e41c54SMike Frysinger# Blackfin: don't use __builtin_bfin_[cs]sync
147442e41c54SMike Frysinger		if ($line =~ /__builtin_bfin_csync/) {
147542e41c54SMike Frysinger			my $herevet = "$here\n" . cat_vet($line) . "\n";
147642e41c54SMike Frysinger			ERROR("use the CSYNC() macro in asm/blackfin.h\n" . $herevet);
147742e41c54SMike Frysinger		}
147842e41c54SMike Frysinger		if ($line =~ /__builtin_bfin_ssync/) {
147942e41c54SMike Frysinger			my $herevet = "$here\n" . cat_vet($line) . "\n";
148042e41c54SMike Frysinger			ERROR("use the SSYNC() macro in asm/blackfin.h\n" . $herevet);
148142e41c54SMike Frysinger		}
148242e41c54SMike Frysinger
14839c0ca6f9SAndy Whitcroft# Check for potential 'bare' types
14842b474a1aSAndy Whitcroft		my ($stat, $cond, $line_nr_next, $remain_next, $off_next,
14852b474a1aSAndy Whitcroft		    $realline_next);
14869c9ba34eSAndy Whitcroft		if ($realcnt && $line =~ /.\s*\S/) {
1487170d3a22SAndy Whitcroft			($stat, $cond, $line_nr_next, $remain_next, $off_next) =
1488f5fe35ddSAndy Whitcroft				ctx_statement_block($linenr, $realcnt, 0);
1489171ae1a4SAndy Whitcroft			$stat =~ s/\n./\n /g;
1490171ae1a4SAndy Whitcroft			$cond =~ s/\n./\n /g;
1491171ae1a4SAndy Whitcroft
14922b474a1aSAndy Whitcroft			# Find the real next line.
14932b474a1aSAndy Whitcroft			$realline_next = $line_nr_next;
14942b474a1aSAndy Whitcroft			if (defined $realline_next &&
14952b474a1aSAndy Whitcroft			    (!defined $lines[$realline_next - 1] ||
14962b474a1aSAndy Whitcroft			     substr($lines[$realline_next - 1], $off_next) =~ /^\s*$/)) {
14972b474a1aSAndy Whitcroft				$realline_next++;
14982b474a1aSAndy Whitcroft			}
14992b474a1aSAndy Whitcroft
1500171ae1a4SAndy Whitcroft			my $s = $stat;
1501171ae1a4SAndy Whitcroft			$s =~ s/{.*$//s;
1502cf655043SAndy Whitcroft
1503c2fdda0dSAndy Whitcroft			# Ignore goto labels.
1504171ae1a4SAndy Whitcroft			if ($s =~ /$Ident:\*$/s) {
1505c2fdda0dSAndy Whitcroft
1506c2fdda0dSAndy Whitcroft			# Ignore functions being called
1507171ae1a4SAndy Whitcroft			} elsif ($s =~ /^.\s*$Ident\s*\(/s) {
1508c2fdda0dSAndy Whitcroft
1509463f2864SAndy Whitcroft			} elsif ($s =~ /^.\s*else\b/s) {
1510463f2864SAndy Whitcroft
1511c45dcabdSAndy Whitcroft			# declarations always start with types
1512d2506586SAndy 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) {
1513c45dcabdSAndy Whitcroft				my $type = $1;
1514c45dcabdSAndy Whitcroft				$type =~ s/\s+/ /g;
1515c45dcabdSAndy Whitcroft				possible($type, "A:" . $s);
1516c45dcabdSAndy Whitcroft
15176c72ffaaSAndy Whitcroft			# definitions in global scope can only start with types
1518a6a84062SAndy Whitcroft			} elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b\s*(?!:)/s) {
1519c45dcabdSAndy Whitcroft				possible($1, "B:" . $s);
1520c2fdda0dSAndy Whitcroft			}
15218905a67cSAndy Whitcroft
15226c72ffaaSAndy Whitcroft			# any (foo ... *) is a pointer cast, and foo is a type
152365863862SAndy Whitcroft			while ($s =~ /\(($Ident)(?:\s+$Sparse)*[\s\*]+\s*\)/sg) {
1524c45dcabdSAndy Whitcroft				possible($1, "C:" . $s);
15259c0ca6f9SAndy Whitcroft			}
15268905a67cSAndy Whitcroft
15278905a67cSAndy Whitcroft			# Check for any sort of function declaration.
15288905a67cSAndy Whitcroft			# int foo(something bar, other baz);
15298905a67cSAndy Whitcroft			# void (*store_gdt)(x86_descr_ptr *);
1530171ae1a4SAndy Whitcroft			if ($prev_values eq 'E' && $s =~ /^(.(?:typedef\s*)?(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*(?:\b$Ident|\(\*\s*$Ident\))\s*)\(/s) {
15318905a67cSAndy Whitcroft				my ($name_len) = length($1);
15328905a67cSAndy Whitcroft
1533cf655043SAndy Whitcroft				my $ctx = $s;
1534773647a0SAndy Whitcroft				substr($ctx, 0, $name_len + 1, '');
15358905a67cSAndy Whitcroft				$ctx =~ s/\)[^\)]*$//;
1536cf655043SAndy Whitcroft
15378905a67cSAndy Whitcroft				for my $arg (split(/\s*,\s*/, $ctx)) {
1538c45dcabdSAndy Whitcroft					if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$/s) {
15398905a67cSAndy Whitcroft
1540c45dcabdSAndy Whitcroft						possible($1, "D:" . $s);
15418905a67cSAndy Whitcroft					}
15428905a67cSAndy Whitcroft				}
15438905a67cSAndy Whitcroft			}
15448905a67cSAndy Whitcroft
15459c0ca6f9SAndy Whitcroft		}
15469c0ca6f9SAndy Whitcroft
154700df344fSAndy Whitcroft#
154800df344fSAndy Whitcroft# Checks which may be anchored in the context.
154900df344fSAndy Whitcroft#
155000df344fSAndy Whitcroft
155100df344fSAndy Whitcroft# Check for switch () and associated case and default
155200df344fSAndy Whitcroft# statements should be at the same indent.
155300df344fSAndy Whitcroft		if ($line=~/\bswitch\s*\(.*\)/) {
155400df344fSAndy Whitcroft			my $err = '';
155500df344fSAndy Whitcroft			my $sep = '';
155600df344fSAndy Whitcroft			my @ctx = ctx_block_outer($linenr, $realcnt);
155700df344fSAndy Whitcroft			shift(@ctx);
155800df344fSAndy Whitcroft			for my $ctx (@ctx) {
155900df344fSAndy Whitcroft				my ($clen, $cindent) = line_stats($ctx);
156000df344fSAndy Whitcroft				if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
156100df344fSAndy Whitcroft							$indent != $cindent) {
156200df344fSAndy Whitcroft					$err .= "$sep$ctx\n";
156300df344fSAndy Whitcroft					$sep = '';
156400df344fSAndy Whitcroft				} else {
156500df344fSAndy Whitcroft					$sep = "[...]\n";
156600df344fSAndy Whitcroft				}
156700df344fSAndy Whitcroft			}
156800df344fSAndy Whitcroft			if ($err ne '') {
15699c0ca6f9SAndy Whitcroft				ERROR("switch and case should be at the same indent\n$hereline$err");
1570de7d4f0eSAndy Whitcroft			}
1571de7d4f0eSAndy Whitcroft		}
1572de7d4f0eSAndy Whitcroft
1573de7d4f0eSAndy Whitcroft# if/while/etc brace do not go on next line, unless defining a do while loop,
1574de7d4f0eSAndy Whitcroft# or if that brace on the next line is for something else
1575c45dcabdSAndy Whitcroft		if ($line =~ /(.*)\b((?:if|while|for|switch)\s*\(|do\b|else\b)/ && $line !~ /^.\s*\#/) {
1576773647a0SAndy Whitcroft			my $pre_ctx = "$1$2";
1577773647a0SAndy Whitcroft
15789c0ca6f9SAndy Whitcroft			my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0);
1579de7d4f0eSAndy Whitcroft			my $ctx_cnt = $realcnt - $#ctx - 1;
1580de7d4f0eSAndy Whitcroft			my $ctx = join("\n", @ctx);
1581de7d4f0eSAndy Whitcroft
1582548596d5SAndy Whitcroft			my $ctx_ln = $linenr;
1583548596d5SAndy Whitcroft			my $ctx_skip = $realcnt;
1584de7d4f0eSAndy Whitcroft
1585548596d5SAndy Whitcroft			while ($ctx_skip > $ctx_cnt || ($ctx_skip == $ctx_cnt &&
1586548596d5SAndy Whitcroft					defined $lines[$ctx_ln - 1] &&
1587548596d5SAndy Whitcroft					$lines[$ctx_ln - 1] =~ /^-/)) {
1588548596d5SAndy Whitcroft				##print "SKIP<$ctx_skip> CNT<$ctx_cnt>\n";
1589548596d5SAndy Whitcroft				$ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/);
1590773647a0SAndy Whitcroft				$ctx_ln++;
1591773647a0SAndy Whitcroft			}
1592548596d5SAndy Whitcroft
159353210168SAndy Whitcroft			#print "realcnt<$realcnt> ctx_cnt<$ctx_cnt>\n";
159453210168SAndy Whitcroft			#print "pre<$pre_ctx>\nline<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>\n";
1595773647a0SAndy Whitcroft
1596773647a0SAndy Whitcroft			if ($ctx !~ /{\s*/ && defined($lines[$ctx_ln -1]) && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
1597773647a0SAndy Whitcroft				ERROR("that open brace { should be on the previous line\n" .
1598c45dcabdSAndy Whitcroft					"$here\n$ctx\n$lines[$ctx_ln - 1]\n");
159900df344fSAndy Whitcroft			}
1600773647a0SAndy Whitcroft			if ($level == 0 && $pre_ctx !~ /}\s*while\s*\($/ &&
1601773647a0SAndy Whitcroft			    $ctx =~ /\)\s*\;\s*$/ &&
1602773647a0SAndy Whitcroft			    defined $lines[$ctx_ln - 1])
1603773647a0SAndy Whitcroft			{
16049c0ca6f9SAndy Whitcroft				my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
16059c0ca6f9SAndy Whitcroft				if ($nindent > $indent) {
1606773647a0SAndy Whitcroft					WARN("trailing semicolon indicates no statements, indent implies otherwise\n" .
1607c45dcabdSAndy Whitcroft						"$here\n$ctx\n$lines[$ctx_ln - 1]\n");
16089c0ca6f9SAndy Whitcroft				}
16099c0ca6f9SAndy Whitcroft			}
161000df344fSAndy Whitcroft		}
161100df344fSAndy Whitcroft
16124d001e4dSAndy Whitcroft# Check relative indent for conditionals and blocks.
16134d001e4dSAndy Whitcroft		if ($line =~ /\b(?:(?:if|while|for)\s*\(|do\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) {
16144d001e4dSAndy Whitcroft			my ($s, $c) = ($stat, $cond);
16154d001e4dSAndy Whitcroft
16164d001e4dSAndy Whitcroft			substr($s, 0, length($c), '');
16174d001e4dSAndy Whitcroft
16184d001e4dSAndy Whitcroft			# Make sure we remove the line prefixes as we have
16194d001e4dSAndy Whitcroft			# none on the first line, and are going to readd them
16204d001e4dSAndy Whitcroft			# where necessary.
16214d001e4dSAndy Whitcroft			$s =~ s/\n./\n/gs;
16224d001e4dSAndy Whitcroft
16234d001e4dSAndy Whitcroft			# Find out how long the conditional actually is.
16246f779c18SAndy Whitcroft			my @newlines = ($c =~ /\n/gs);
16256f779c18SAndy Whitcroft			my $cond_lines = 1 + $#newlines;
16264d001e4dSAndy Whitcroft
16274d001e4dSAndy Whitcroft			# We want to check the first line inside the block
16284d001e4dSAndy Whitcroft			# starting at the end of the conditional, so remove:
16294d001e4dSAndy Whitcroft			#  1) any blank line termination
16304d001e4dSAndy Whitcroft			#  2) any opening brace { on end of the line
16314d001e4dSAndy Whitcroft			#  3) any do (...) {
16324d001e4dSAndy Whitcroft			my $continuation = 0;
16334d001e4dSAndy Whitcroft			my $check = 0;
16344d001e4dSAndy Whitcroft			$s =~ s/^.*\bdo\b//;
16354d001e4dSAndy Whitcroft			$s =~ s/^\s*{//;
16364d001e4dSAndy Whitcroft			if ($s =~ s/^\s*\\//) {
16374d001e4dSAndy Whitcroft				$continuation = 1;
16384d001e4dSAndy Whitcroft			}
16399bd49efeSAndy Whitcroft			if ($s =~ s/^\s*?\n//) {
16404d001e4dSAndy Whitcroft				$check = 1;
16414d001e4dSAndy Whitcroft				$cond_lines++;
16424d001e4dSAndy Whitcroft			}
16434d001e4dSAndy Whitcroft
16444d001e4dSAndy Whitcroft			# Also ignore a loop construct at the end of a
16454d001e4dSAndy Whitcroft			# preprocessor statement.
16464d001e4dSAndy Whitcroft			if (($prevline =~ /^.\s*#\s*define\s/ ||
16474d001e4dSAndy Whitcroft			    $prevline =~ /\\\s*$/) && $continuation == 0) {
16484d001e4dSAndy Whitcroft				$check = 0;
16494d001e4dSAndy Whitcroft			}
16504d001e4dSAndy Whitcroft
16519bd49efeSAndy Whitcroft			my $cond_ptr = -1;
1652740504c6SAndy Whitcroft			$continuation = 0;
16539bd49efeSAndy Whitcroft			while ($cond_ptr != $cond_lines) {
16549bd49efeSAndy Whitcroft				$cond_ptr = $cond_lines;
16554d001e4dSAndy Whitcroft
1656f16fa28fSAndy Whitcroft				# If we see an #else/#elif then the code
1657f16fa28fSAndy Whitcroft				# is not linear.
1658f16fa28fSAndy Whitcroft				if ($s =~ /^\s*\#\s*(?:else|elif)/) {
1659f16fa28fSAndy Whitcroft					$check = 0;
1660f16fa28fSAndy Whitcroft				}
1661f16fa28fSAndy Whitcroft
16629bd49efeSAndy Whitcroft				# Ignore:
16639bd49efeSAndy Whitcroft				#  1) blank lines, they should be at 0,
16649bd49efeSAndy Whitcroft				#  2) preprocessor lines, and
16659bd49efeSAndy Whitcroft				#  3) labels.
1666740504c6SAndy Whitcroft				if ($continuation ||
1667740504c6SAndy Whitcroft				    $s =~ /^\s*?\n/ ||
16689bd49efeSAndy Whitcroft				    $s =~ /^\s*#\s*?/ ||
16699bd49efeSAndy Whitcroft				    $s =~ /^\s*$Ident\s*:/) {
1670740504c6SAndy Whitcroft					$continuation = ($s =~ /^.*?\\\n/) ? 1 : 0;
167130dad6ebSAndy Whitcroft					if ($s =~ s/^.*?\n//) {
16729bd49efeSAndy Whitcroft						$cond_lines++;
16739bd49efeSAndy Whitcroft					}
16744d001e4dSAndy Whitcroft				}
167530dad6ebSAndy Whitcroft			}
16764d001e4dSAndy Whitcroft
16774d001e4dSAndy Whitcroft			my (undef, $sindent) = line_stats("+" . $s);
16784d001e4dSAndy Whitcroft			my $stat_real = raw_line($linenr, $cond_lines);
16794d001e4dSAndy Whitcroft
16804d001e4dSAndy Whitcroft			# Check if either of these lines are modified, else
16814d001e4dSAndy Whitcroft			# this is not this patch's fault.
16824d001e4dSAndy Whitcroft			if (!defined($stat_real) ||
16834d001e4dSAndy Whitcroft			    $stat !~ /^\+/ && $stat_real !~ /^\+/) {
16844d001e4dSAndy Whitcroft				$check = 0;
16854d001e4dSAndy Whitcroft			}
16864d001e4dSAndy Whitcroft			if (defined($stat_real) && $cond_lines > 1) {
16874d001e4dSAndy Whitcroft				$stat_real = "[...]\n$stat_real";
16884d001e4dSAndy Whitcroft			}
16894d001e4dSAndy Whitcroft
16909bd49efeSAndy 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";
16914d001e4dSAndy Whitcroft
16924d001e4dSAndy Whitcroft			if ($check && (($sindent % 8) != 0 ||
16934d001e4dSAndy Whitcroft			    ($sindent <= $indent && $s ne ''))) {
16944d001e4dSAndy Whitcroft				WARN("suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n");
16954d001e4dSAndy Whitcroft			}
16964d001e4dSAndy Whitcroft		}
16974d001e4dSAndy Whitcroft
16986c72ffaaSAndy Whitcroft		# Track the 'values' across context and added lines.
16996c72ffaaSAndy Whitcroft		my $opline = $line; $opline =~ s/^./ /;
17001f65f947SAndy Whitcroft		my ($curr_values, $curr_vars) =
17011f65f947SAndy Whitcroft				annotate_values($opline . "\n", $prev_values);
17026c72ffaaSAndy Whitcroft		$curr_values = $prev_values . $curr_values;
1703c2fdda0dSAndy Whitcroft		if ($dbg_values) {
1704c2fdda0dSAndy Whitcroft			my $outline = $opline; $outline =~ s/\t/ /g;
1705cf655043SAndy Whitcroft			print "$linenr > .$outline\n";
1706cf655043SAndy Whitcroft			print "$linenr > $curr_values\n";
17071f65f947SAndy Whitcroft			print "$linenr >  $curr_vars\n";
1708c2fdda0dSAndy Whitcroft		}
17096c72ffaaSAndy Whitcroft		$prev_values = substr($curr_values, -1);
17106c72ffaaSAndy Whitcroft
171100df344fSAndy Whitcroft#ignore lines not being added
171200df344fSAndy Whitcroft		if ($line=~/^[^\+]/) {next;}
171300df344fSAndy Whitcroft
1714653d4876SAndy Whitcroft# TEST: allow direct testing of the type matcher.
17157429c690SAndy Whitcroft		if ($dbg_type) {
17167429c690SAndy Whitcroft			if ($line =~ /^.\s*$Declare\s*$/) {
17177429c690SAndy Whitcroft				ERROR("TEST: is type\n" . $herecurr);
17187429c690SAndy Whitcroft			} elsif ($dbg_type > 1 && $line =~ /^.+($Declare)/) {
17197429c690SAndy Whitcroft				ERROR("TEST: is not type ($1 is)\n". $herecurr);
17207429c690SAndy Whitcroft			}
1721653d4876SAndy Whitcroft			next;
1722653d4876SAndy Whitcroft		}
1723a1ef277eSAndy Whitcroft# TEST: allow direct testing of the attribute matcher.
1724a1ef277eSAndy Whitcroft		if ($dbg_attr) {
17259360b0e5SAndy Whitcroft			if ($line =~ /^.\s*$Modifier\s*$/) {
1726a1ef277eSAndy Whitcroft				ERROR("TEST: is attr\n" . $herecurr);
17279360b0e5SAndy Whitcroft			} elsif ($dbg_attr > 1 && $line =~ /^.+($Modifier)/) {
1728a1ef277eSAndy Whitcroft				ERROR("TEST: is not attr ($1 is)\n". $herecurr);
1729a1ef277eSAndy Whitcroft			}
1730a1ef277eSAndy Whitcroft			next;
1731a1ef277eSAndy Whitcroft		}
1732653d4876SAndy Whitcroft
1733f0a594c1SAndy Whitcroft# check for initialisation to aggregates open brace on the next line
173499423c20SAndy Whitcroft		if ($line =~ /^.\s*{/ &&
173599423c20SAndy Whitcroft		    $prevline =~ /(?:^|[^=])=\s*$/) {
1736773647a0SAndy Whitcroft			ERROR("that open brace { should be on the previous line\n" . $hereprev);
1737f0a594c1SAndy Whitcroft		}
1738f0a594c1SAndy Whitcroft
173900df344fSAndy Whitcroft#
174000df344fSAndy Whitcroft# Checks which are anchored on the added line.
174100df344fSAndy Whitcroft#
174200df344fSAndy Whitcroft
1743653d4876SAndy Whitcroft# check for malformed paths in #include statements (uses RAW line)
1744c45dcabdSAndy Whitcroft		if ($rawline =~ m{^.\s*\#\s*include\s+[<"](.*)[">]}) {
1745653d4876SAndy Whitcroft			my $path = $1;
1746653d4876SAndy Whitcroft			if ($path =~ m{//}) {
1747de7d4f0eSAndy Whitcroft				ERROR("malformed #include filename\n" .
1748de7d4f0eSAndy Whitcroft					$herecurr);
1749653d4876SAndy Whitcroft			}
1750653d4876SAndy Whitcroft		}
1751653d4876SAndy Whitcroft
175200df344fSAndy Whitcroft# no C99 // comments
175300df344fSAndy Whitcroft		if ($line =~ m{//}) {
1754de7d4f0eSAndy Whitcroft			ERROR("do not use C99 // comments\n" . $herecurr);
175500df344fSAndy Whitcroft		}
175600df344fSAndy Whitcroft		# Remove C99 comments.
17570a920b5bSAndy Whitcroft		$line =~ s@//.*@@;
17586c72ffaaSAndy Whitcroft		$opline =~ s@//.*@@;
17590a920b5bSAndy Whitcroft
17602b474a1aSAndy Whitcroft# EXPORT_SYMBOL should immediately follow the thing it is exporting, consider
17612b474a1aSAndy Whitcroft# the whole statement.
17622b474a1aSAndy Whitcroft#print "APW <$lines[$realline_next - 1]>\n";
17632b474a1aSAndy Whitcroft		if (defined $realline_next &&
17642b474a1aSAndy Whitcroft		    exists $lines[$realline_next - 1] &&
17652b474a1aSAndy Whitcroft		    !defined $suppress_export{$realline_next} &&
17662b474a1aSAndy Whitcroft		    ($lines[$realline_next - 1] =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
17672b474a1aSAndy Whitcroft		     $lines[$realline_next - 1] =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
1768653d4876SAndy Whitcroft			my $name = $1;
17692b474a1aSAndy Whitcroft			if ($stat !~ /(?:
17702b474a1aSAndy Whitcroft				\n.}\s*$|
177148012058SAndy Whitcroft				^.DEFINE_$Ident\(\Q$name\E\)|
177248012058SAndy Whitcroft				^.DECLARE_$Ident\(\Q$name\E\)|
177348012058SAndy Whitcroft				^.LIST_HEAD\(\Q$name\E\)|
17742b474a1aSAndy Whitcroft				^.(?:$Storage\s+)?$Type\s*\(\s*\*\s*\Q$name\E\s*\)\s*\(|
17752b474a1aSAndy Whitcroft				\b\Q$name\E(?:\s+$Attribute)*\s*(?:;|=|\[|\()
177648012058SAndy Whitcroft			    )/x) {
17772b474a1aSAndy Whitcroft#print "FOO A<$lines[$realline_next - 1]> stat<$stat> name<$name>\n";
17782b474a1aSAndy Whitcroft				$suppress_export{$realline_next} = 2;
17792b474a1aSAndy Whitcroft			} else {
17802b474a1aSAndy Whitcroft				$suppress_export{$realline_next} = 1;
17810a920b5bSAndy Whitcroft			}
17820a920b5bSAndy Whitcroft		}
17832b474a1aSAndy Whitcroft		if (!defined $suppress_export{$linenr} &&
17842b474a1aSAndy Whitcroft		    $prevline =~ /^.\s*$/ &&
17852b474a1aSAndy Whitcroft		    ($line =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
17862b474a1aSAndy Whitcroft		     $line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
17872b474a1aSAndy Whitcroft#print "FOO B <$lines[$linenr - 1]>\n";
17882b474a1aSAndy Whitcroft			$suppress_export{$linenr} = 2;
17892b474a1aSAndy Whitcroft		}
17902b474a1aSAndy Whitcroft		if (defined $suppress_export{$linenr} &&
17912b474a1aSAndy Whitcroft		    $suppress_export{$linenr} == 2) {
17922b474a1aSAndy Whitcroft			WARN("EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
17932b474a1aSAndy Whitcroft		}
17940a920b5bSAndy Whitcroft
17955150bda4SJoe Eloff# check for global initialisers.
1796c45dcabdSAndy Whitcroft		if ($line =~ /^.$Type\s*$Ident\s*(?:\s+$Modifier)*\s*=\s*(0|NULL|false)\s*;/) {
17975150bda4SJoe Eloff			ERROR("do not initialise globals to 0 or NULL\n" .
1798f0a594c1SAndy Whitcroft				$herecurr);
1799f0a594c1SAndy Whitcroft		}
18000a920b5bSAndy Whitcroft# check for static initialisers.
18012d1bafd7SAndy Whitcroft		if ($line =~ /\bstatic\s.*=\s*(0|NULL|false)\s*;/) {
1802de7d4f0eSAndy Whitcroft			ERROR("do not initialise statics to 0 or NULL\n" .
1803de7d4f0eSAndy Whitcroft				$herecurr);
18040a920b5bSAndy Whitcroft		}
18050a920b5bSAndy Whitcroft
1806653d4876SAndy Whitcroft# check for new typedefs, only function parameters and sparse annotations
1807653d4876SAndy Whitcroft# make sense.
1808653d4876SAndy Whitcroft		if ($line =~ /\btypedef\s/ &&
18098054576dSAndy Whitcroft		    $line !~ /\btypedef\s+$Type\s*\(\s*\*?$Ident\s*\)\s*\(/ &&
1810c45dcabdSAndy Whitcroft		    $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ &&
18118ed22cadSAndy Whitcroft		    $line !~ /\b$typeTypedefs\b/ &&
1812653d4876SAndy Whitcroft		    $line !~ /\b__bitwise(?:__|)\b/) {
1813de7d4f0eSAndy Whitcroft			WARN("do not add new typedefs\n" . $herecurr);
18140a920b5bSAndy Whitcroft		}
18150a920b5bSAndy Whitcroft
18160a920b5bSAndy Whitcroft# * goes on variable not on type
181765863862SAndy Whitcroft		# (char*[ const])
181800ef4eceSAndy Whitcroft		if ($line =~ m{\($NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)\)}) {
181965863862SAndy Whitcroft			my ($from, $to) = ($1, $1);
1820d8aaf121SAndy Whitcroft
182165863862SAndy Whitcroft			# Should start with a space.
182265863862SAndy Whitcroft			$to =~ s/^(\S)/ $1/;
182365863862SAndy Whitcroft			# Should not end with a space.
182465863862SAndy Whitcroft			$to =~ s/\s+$//;
182565863862SAndy Whitcroft			# '*'s should not have spaces between.
1826f9a0b3d1SAndy Whitcroft			while ($to =~ s/\*\s+\*/\*\*/) {
182765863862SAndy Whitcroft			}
1828d8aaf121SAndy Whitcroft
182965863862SAndy Whitcroft			#print "from<$from> to<$to>\n";
183065863862SAndy Whitcroft			if ($from ne $to) {
183165863862SAndy Whitcroft				ERROR("\"(foo$from)\" should be \"(foo$to)\"\n" .  $herecurr);
183265863862SAndy Whitcroft			}
183300ef4eceSAndy Whitcroft		} elsif ($line =~ m{\b$NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)($Ident)}) {
183465863862SAndy Whitcroft			my ($from, $to, $ident) = ($1, $1, $2);
1835d8aaf121SAndy Whitcroft
183665863862SAndy Whitcroft			# Should start with a space.
183765863862SAndy Whitcroft			$to =~ s/^(\S)/ $1/;
183865863862SAndy Whitcroft			# Should not end with a space.
183965863862SAndy Whitcroft			$to =~ s/\s+$//;
184065863862SAndy Whitcroft			# '*'s should not have spaces between.
1841f9a0b3d1SAndy Whitcroft			while ($to =~ s/\*\s+\*/\*\*/) {
184265863862SAndy Whitcroft			}
184365863862SAndy Whitcroft			# Modifiers should have spaces.
184465863862SAndy Whitcroft			$to =~ s/(\b$Modifier$)/$1 /;
184565863862SAndy Whitcroft
1846667026e7SAndy Whitcroft			#print "from<$from> to<$to> ident<$ident>\n";
1847667026e7SAndy Whitcroft			if ($from ne $to && $ident !~ /^$Modifier$/) {
184865863862SAndy Whitcroft				ERROR("\"foo${from}bar\" should be \"foo${to}bar\"\n" .  $herecurr);
184965863862SAndy Whitcroft			}
18500a920b5bSAndy Whitcroft		}
18510a920b5bSAndy Whitcroft
18520a920b5bSAndy Whitcroft# # no BUG() or BUG_ON()
18530a920b5bSAndy Whitcroft# 		if ($line =~ /\b(BUG|BUG_ON)\b/) {
18540a920b5bSAndy Whitcroft# 			print "Try to use WARN_ON & Recovery code rather than BUG() or BUG_ON()\n";
18550a920b5bSAndy Whitcroft# 			print "$herecurr";
18560a920b5bSAndy Whitcroft# 			$clean = 0;
18570a920b5bSAndy Whitcroft# 		}
18580a920b5bSAndy Whitcroft
18598905a67cSAndy Whitcroft		if ($line =~ /\bLINUX_VERSION_CODE\b/) {
1860c2fdda0dSAndy Whitcroft			WARN("LINUX_VERSION_CODE should be avoided, code should be for the version to which it is merged\n" . $herecurr);
18618905a67cSAndy Whitcroft		}
18628905a67cSAndy Whitcroft
186300df344fSAndy Whitcroft# printk should use KERN_* levels.  Note that follow on printk's on the
186400df344fSAndy Whitcroft# same line do not need a level, so we use the current block context
186500df344fSAndy Whitcroft# to try and find and validate the current printk.  In summary the current
186600df344fSAndy Whitcroft# printk includes all preceeding printk's which have no newline on the end.
186700df344fSAndy Whitcroft# we assume the first bad printk is the one to report.
1868f0a594c1SAndy Whitcroft		if ($line =~ /\bprintk\((?!KERN_)\s*"/) {
186900df344fSAndy Whitcroft			my $ok = 0;
187000df344fSAndy Whitcroft			for (my $ln = $linenr - 1; $ln >= $first_line; $ln--) {
187100df344fSAndy Whitcroft				#print "CHECK<$lines[$ln - 1]\n";
187200df344fSAndy Whitcroft				# we have a preceeding printk if it ends
187300df344fSAndy Whitcroft				# with "\n" ignore it, else it is to blame
187400df344fSAndy Whitcroft				if ($lines[$ln - 1] =~ m{\bprintk\(}) {
187500df344fSAndy Whitcroft					if ($rawlines[$ln - 1] !~ m{\\n"}) {
187600df344fSAndy Whitcroft						$ok = 1;
187700df344fSAndy Whitcroft					}
187800df344fSAndy Whitcroft					last;
187900df344fSAndy Whitcroft				}
188000df344fSAndy Whitcroft			}
188100df344fSAndy Whitcroft			if ($ok == 0) {
1882de7d4f0eSAndy Whitcroft				WARN("printk() should include KERN_ facility level\n" . $herecurr);
18830a920b5bSAndy Whitcroft			}
188400df344fSAndy Whitcroft		}
18850a920b5bSAndy Whitcroft
1886653d4876SAndy Whitcroft# function brace can't be on same line, except for #defines of do while,
1887653d4876SAndy Whitcroft# or if closed on same line
1888c45dcabdSAndy Whitcroft		if (($line=~/$Type\s*$Ident\(.*\).*\s{/) and
1889c45dcabdSAndy Whitcroft		    !($line=~/\#\s*define.*do\s{/) and !($line=~/}/)) {
1890de7d4f0eSAndy Whitcroft			ERROR("open brace '{' following function declarations go on the next line\n" . $herecurr);
18910a920b5bSAndy Whitcroft		}
1892653d4876SAndy Whitcroft
18938905a67cSAndy Whitcroft# open braces for enum, union and struct go on the same line.
18948905a67cSAndy Whitcroft		if ($line =~ /^.\s*{/ &&
18958905a67cSAndy Whitcroft		    $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
18968905a67cSAndy Whitcroft			ERROR("open brace '{' following $1 go on the same line\n" . $hereprev);
18978905a67cSAndy Whitcroft		}
18988905a67cSAndy Whitcroft
18998d31cfceSAndy Whitcroft# check for spacing round square brackets; allowed:
19008d31cfceSAndy Whitcroft#  1. with a type on the left -- int [] a;
1901fe2a7dbcSAndy Whitcroft#  2. at the beginning of a line for slice initialisers -- [0...10] = 5,
1902fe2a7dbcSAndy Whitcroft#  3. inside a curly brace -- = { [0...10] = 5 }
19038d31cfceSAndy Whitcroft		while ($line =~ /(.*?\s)\[/g) {
19048d31cfceSAndy Whitcroft			my ($where, $prefix) = ($-[1], $1);
19058d31cfceSAndy Whitcroft			if ($prefix !~ /$Type\s+$/ &&
1906fe2a7dbcSAndy Whitcroft			    ($where != 0 || $prefix !~ /^.\s+$/) &&
1907fe2a7dbcSAndy Whitcroft			    $prefix !~ /{\s+$/) {
19088d31cfceSAndy Whitcroft				ERROR("space prohibited before open square bracket '['\n" . $herecurr);
19098d31cfceSAndy Whitcroft			}
19108d31cfceSAndy Whitcroft		}
19118d31cfceSAndy Whitcroft
1912f0a594c1SAndy Whitcroft# check for spaces between functions and their parentheses.
19136c72ffaaSAndy Whitcroft		while ($line =~ /($Ident)\s+\(/g) {
1914c2fdda0dSAndy Whitcroft			my $name = $1;
1915773647a0SAndy Whitcroft			my $ctx_before = substr($line, 0, $-[1]);
1916773647a0SAndy Whitcroft			my $ctx = "$ctx_before$name";
1917c2fdda0dSAndy Whitcroft
1918c2fdda0dSAndy Whitcroft			# Ignore those directives where spaces _are_ permitted.
1919773647a0SAndy Whitcroft			if ($name =~ /^(?:
1920773647a0SAndy Whitcroft				if|for|while|switch|return|case|
1921773647a0SAndy Whitcroft				volatile|__volatile__|
1922773647a0SAndy Whitcroft				__attribute__|format|__extension__|
1923773647a0SAndy Whitcroft				asm|__asm__)$/x)
1924773647a0SAndy Whitcroft			{
1925c2fdda0dSAndy Whitcroft
1926c2fdda0dSAndy Whitcroft			# cpp #define statements have non-optional spaces, ie
1927c2fdda0dSAndy Whitcroft			# if there is a space between the name and the open
1928c2fdda0dSAndy Whitcroft			# parenthesis it is simply not a parameter group.
1929c45dcabdSAndy Whitcroft			} elsif ($ctx_before =~ /^.\s*\#\s*define\s*$/) {
1930773647a0SAndy Whitcroft
1931773647a0SAndy Whitcroft			# cpp #elif statement condition may start with a (
1932c45dcabdSAndy Whitcroft			} elsif ($ctx =~ /^.\s*\#\s*elif\s*$/) {
1933c2fdda0dSAndy Whitcroft
1934c2fdda0dSAndy Whitcroft			# If this whole things ends with a type its most
1935c2fdda0dSAndy Whitcroft			# likely a typedef for a function.
1936773647a0SAndy Whitcroft			} elsif ($ctx =~ /$Type$/) {
1937c2fdda0dSAndy Whitcroft
1938c2fdda0dSAndy Whitcroft			} else {
1939773647a0SAndy Whitcroft				WARN("space prohibited between function name and open parenthesis '('\n" . $herecurr);
1940f0a594c1SAndy Whitcroft			}
19416c72ffaaSAndy Whitcroft		}
1942653d4876SAndy Whitcroft# Check operator spacing.
19430a920b5bSAndy Whitcroft		if (!($line=~/\#\s*include/)) {
19449c0ca6f9SAndy Whitcroft			my $ops = qr{
19459c0ca6f9SAndy Whitcroft				<<=|>>=|<=|>=|==|!=|
19469c0ca6f9SAndy Whitcroft				\+=|-=|\*=|\/=|%=|\^=|\|=|&=|
19479c0ca6f9SAndy Whitcroft				=>|->|<<|>>|<|>|=|!|~|
19481f65f947SAndy Whitcroft				&&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%|
19491f65f947SAndy Whitcroft				\?|:
19509c0ca6f9SAndy Whitcroft			}x;
1951cf655043SAndy Whitcroft			my @elements = split(/($ops|;)/, $opline);
195200df344fSAndy Whitcroft			my $off = 0;
19536c72ffaaSAndy Whitcroft
19546c72ffaaSAndy Whitcroft			my $blank = copy_spacing($opline);
19556c72ffaaSAndy Whitcroft
19560a920b5bSAndy Whitcroft			for (my $n = 0; $n < $#elements; $n += 2) {
19574a0df2efSAndy Whitcroft				$off += length($elements[$n]);
19584a0df2efSAndy Whitcroft
1959773647a0SAndy Whitcroft				# Pick up the preceeding and succeeding characters.
1960773647a0SAndy Whitcroft				my $ca = substr($opline, 0, $off);
1961773647a0SAndy Whitcroft				my $cc = '';
1962773647a0SAndy Whitcroft				if (length($opline) >= ($off + length($elements[$n + 1]))) {
1963773647a0SAndy Whitcroft					$cc = substr($opline, $off + length($elements[$n + 1]));
1964773647a0SAndy Whitcroft				}
1965773647a0SAndy Whitcroft				my $cb = "$ca$;$cc";
1966773647a0SAndy Whitcroft
19674a0df2efSAndy Whitcroft				my $a = '';
19684a0df2efSAndy Whitcroft				$a = 'V' if ($elements[$n] ne '');
19694a0df2efSAndy Whitcroft				$a = 'W' if ($elements[$n] =~ /\s$/);
1970cf655043SAndy Whitcroft				$a = 'C' if ($elements[$n] =~ /$;$/);
19714a0df2efSAndy Whitcroft				$a = 'B' if ($elements[$n] =~ /(\[|\()$/);
19724a0df2efSAndy Whitcroft				$a = 'O' if ($elements[$n] eq '');
1973773647a0SAndy Whitcroft				$a = 'E' if ($ca =~ /^\s*$/);
19744a0df2efSAndy Whitcroft
19750a920b5bSAndy Whitcroft				my $op = $elements[$n + 1];
19764a0df2efSAndy Whitcroft
19774a0df2efSAndy Whitcroft				my $c = '';
19780a920b5bSAndy Whitcroft				if (defined $elements[$n + 2]) {
19794a0df2efSAndy Whitcroft					$c = 'V' if ($elements[$n + 2] ne '');
19804a0df2efSAndy Whitcroft					$c = 'W' if ($elements[$n + 2] =~ /^\s/);
1981cf655043SAndy Whitcroft					$c = 'C' if ($elements[$n + 2] =~ /^$;/);
19824a0df2efSAndy Whitcroft					$c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
19834a0df2efSAndy Whitcroft					$c = 'O' if ($elements[$n + 2] eq '');
19848b1b3378SAndy Whitcroft					$c = 'E' if ($elements[$n + 2] =~ /^\s*\\$/);
19854a0df2efSAndy Whitcroft				} else {
19864a0df2efSAndy Whitcroft					$c = 'E';
19870a920b5bSAndy Whitcroft				}
19880a920b5bSAndy Whitcroft
19894a0df2efSAndy Whitcroft				my $ctx = "${a}x${c}";
19904a0df2efSAndy Whitcroft
19914a0df2efSAndy Whitcroft				my $at = "(ctx:$ctx)";
19924a0df2efSAndy Whitcroft
19936c72ffaaSAndy Whitcroft				my $ptr = substr($blank, 0, $off) . "^";
1994de7d4f0eSAndy Whitcroft				my $hereptr = "$hereline$ptr\n";
19950a920b5bSAndy Whitcroft
199674048ed8SAndy Whitcroft				# Pull out the value of this operator.
19976c72ffaaSAndy Whitcroft				my $op_type = substr($curr_values, $off + 1, 1);
19980a920b5bSAndy Whitcroft
19991f65f947SAndy Whitcroft				# Get the full operator variant.
20001f65f947SAndy Whitcroft				my $opv = $op . substr($curr_vars, $off, 1);
20011f65f947SAndy Whitcroft
200213214adfSAndy Whitcroft				# Ignore operators passed as parameters.
200313214adfSAndy Whitcroft				if ($op_type ne 'V' &&
200413214adfSAndy Whitcroft				    $ca =~ /\s$/ && $cc =~ /^\s*,/) {
200513214adfSAndy Whitcroft
2006cf655043SAndy Whitcroft#				# Ignore comments
2007cf655043SAndy Whitcroft#				} elsif ($op =~ /^$;+$/) {
200813214adfSAndy Whitcroft
2009d8aaf121SAndy Whitcroft				# ; should have either the end of line or a space or \ after it
201013214adfSAndy Whitcroft				} elsif ($op eq ';') {
2011cf655043SAndy Whitcroft					if ($ctx !~ /.x[WEBC]/ &&
2012cf655043SAndy Whitcroft					    $cc !~ /^\\/ && $cc !~ /^;/) {
2013773647a0SAndy Whitcroft						ERROR("space required after that '$op' $at\n" . $hereptr);
2014d8aaf121SAndy Whitcroft					}
2015d8aaf121SAndy Whitcroft
2016d8aaf121SAndy Whitcroft				# // is a comment
2017d8aaf121SAndy Whitcroft				} elsif ($op eq '//') {
20180a920b5bSAndy Whitcroft
20191f65f947SAndy Whitcroft				# No spaces for:
20201f65f947SAndy Whitcroft				#   ->
20211f65f947SAndy Whitcroft				#   :   when part of a bitfield
20221f65f947SAndy Whitcroft				} elsif ($op eq '->' || $opv eq ':B') {
20234a0df2efSAndy Whitcroft					if ($ctx =~ /Wx.|.xW/) {
2024773647a0SAndy Whitcroft						ERROR("spaces prohibited around that '$op' $at\n" . $hereptr);
20250a920b5bSAndy Whitcroft					}
20260a920b5bSAndy Whitcroft
20270a920b5bSAndy Whitcroft				# , must have a space on the right.
20280a920b5bSAndy Whitcroft				} elsif ($op eq ',') {
2029cf655043SAndy Whitcroft					if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) {
2030773647a0SAndy Whitcroft						ERROR("space required after that '$op' $at\n" . $hereptr);
20310a920b5bSAndy Whitcroft					}
20320a920b5bSAndy Whitcroft
20339c0ca6f9SAndy Whitcroft				# '*' as part of a type definition -- reported already.
203474048ed8SAndy Whitcroft				} elsif ($opv eq '*_') {
20359c0ca6f9SAndy Whitcroft					#warn "'*' is part of type\n";
20369c0ca6f9SAndy Whitcroft
20379c0ca6f9SAndy Whitcroft				# unary operators should have a space before and
20389c0ca6f9SAndy Whitcroft				# none after.  May be left adjacent to another
20399c0ca6f9SAndy Whitcroft				# unary operator, or a cast
20409c0ca6f9SAndy Whitcroft				} elsif ($op eq '!' || $op eq '~' ||
204174048ed8SAndy Whitcroft					 $opv eq '*U' || $opv eq '-U' ||
20420d413866SAndy Whitcroft					 $opv eq '&U' || $opv eq '&&U') {
2043cf655043SAndy Whitcroft					if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
2044773647a0SAndy Whitcroft						ERROR("space required before that '$op' $at\n" . $hereptr);
20450a920b5bSAndy Whitcroft					}
2046a3340b35SAndy Whitcroft					if ($op eq '*' && $cc =~/\s*$Modifier\b/) {
2047171ae1a4SAndy Whitcroft						# A unary '*' may be const
2048171ae1a4SAndy Whitcroft
2049171ae1a4SAndy Whitcroft					} elsif ($ctx =~ /.xW/) {
2050fb9e9096SAndy Whitcroft						ERROR("space prohibited after that '$op' $at\n" . $hereptr);
20510a920b5bSAndy Whitcroft					}
20520a920b5bSAndy Whitcroft
20530a920b5bSAndy Whitcroft				# unary ++ and unary -- are allowed no space on one side.
20540a920b5bSAndy Whitcroft				} elsif ($op eq '++' or $op eq '--') {
2055773647a0SAndy Whitcroft					if ($ctx !~ /[WEOBC]x[^W]/ && $ctx !~ /[^W]x[WOBEC]/) {
2056773647a0SAndy Whitcroft						ERROR("space required one side of that '$op' $at\n" . $hereptr);
20570a920b5bSAndy Whitcroft					}
2058773647a0SAndy Whitcroft					if ($ctx =~ /Wx[BE]/ ||
2059773647a0SAndy Whitcroft					    ($ctx =~ /Wx./ && $cc =~ /^;/)) {
2060773647a0SAndy Whitcroft						ERROR("space prohibited before that '$op' $at\n" . $hereptr);
2061653d4876SAndy Whitcroft					}
2062773647a0SAndy Whitcroft					if ($ctx =~ /ExW/) {
2063773647a0SAndy Whitcroft						ERROR("space prohibited after that '$op' $at\n" . $hereptr);
2064773647a0SAndy Whitcroft					}
2065773647a0SAndy Whitcroft
20660a920b5bSAndy Whitcroft
20670a920b5bSAndy Whitcroft				# << and >> may either have or not have spaces both sides
20689c0ca6f9SAndy Whitcroft				} elsif ($op eq '<<' or $op eq '>>' or
20699c0ca6f9SAndy Whitcroft					 $op eq '&' or $op eq '^' or $op eq '|' or
20709c0ca6f9SAndy Whitcroft					 $op eq '+' or $op eq '-' or
2071c2fdda0dSAndy Whitcroft					 $op eq '*' or $op eq '/' or
2072c2fdda0dSAndy Whitcroft					 $op eq '%')
20730a920b5bSAndy Whitcroft				{
2074773647a0SAndy Whitcroft					if ($ctx =~ /Wx[^WCE]|[^WCE]xW/) {
2075de7d4f0eSAndy Whitcroft						ERROR("need consistent spacing around '$op' $at\n" .
2076de7d4f0eSAndy Whitcroft							$hereptr);
20770a920b5bSAndy Whitcroft					}
20780a920b5bSAndy Whitcroft
20791f65f947SAndy Whitcroft				# A colon needs no spaces before when it is
20801f65f947SAndy Whitcroft				# terminating a case value or a label.
20811f65f947SAndy Whitcroft				} elsif ($opv eq ':C' || $opv eq ':L') {
20821f65f947SAndy Whitcroft					if ($ctx =~ /Wx./) {
20831f65f947SAndy Whitcroft						ERROR("space prohibited before that '$op' $at\n" . $hereptr);
20841f65f947SAndy Whitcroft					}
20851f65f947SAndy Whitcroft
20860a920b5bSAndy Whitcroft				# All the others need spaces both sides.
2087cf655043SAndy Whitcroft				} elsif ($ctx !~ /[EWC]x[CWE]/) {
20881f65f947SAndy Whitcroft					my $ok = 0;
20891f65f947SAndy Whitcroft
209022f2a2efSAndy Whitcroft					# Ignore email addresses <foo@bar>
20911f65f947SAndy Whitcroft					if (($op eq '<' &&
20921f65f947SAndy Whitcroft					     $cc =~ /^\S+\@\S+>/) ||
20931f65f947SAndy Whitcroft					    ($op eq '>' &&
20941f65f947SAndy Whitcroft					     $ca =~ /<\S+\@\S+$/))
20951f65f947SAndy Whitcroft					{
20961f65f947SAndy Whitcroft					    	$ok = 1;
20971f65f947SAndy Whitcroft					}
20981f65f947SAndy Whitcroft
20991f65f947SAndy Whitcroft					# Ignore ?:
21001f65f947SAndy Whitcroft					if (($opv eq ':O' && $ca =~ /\?$/) ||
21011f65f947SAndy Whitcroft					    ($op eq '?' && $cc =~ /^:/)) {
21021f65f947SAndy Whitcroft					    	$ok = 1;
21031f65f947SAndy Whitcroft					}
21041f65f947SAndy Whitcroft
21051f65f947SAndy Whitcroft					if ($ok == 0) {
2106773647a0SAndy Whitcroft						ERROR("spaces required around that '$op' $at\n" . $hereptr);
21070a920b5bSAndy Whitcroft					}
210822f2a2efSAndy Whitcroft				}
21094a0df2efSAndy Whitcroft				$off += length($elements[$n + 1]);
21100a920b5bSAndy Whitcroft			}
21110a920b5bSAndy Whitcroft		}
21120a920b5bSAndy Whitcroft
2113f0a594c1SAndy Whitcroft# check for multiple assignments
2114f0a594c1SAndy Whitcroft		if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
21156c72ffaaSAndy Whitcroft			CHK("multiple assignments should be avoided\n" . $herecurr);
2116f0a594c1SAndy Whitcroft		}
2117f0a594c1SAndy Whitcroft
211822f2a2efSAndy Whitcroft## # check for multiple declarations, allowing for a function declaration
211922f2a2efSAndy Whitcroft## # continuation.
212022f2a2efSAndy Whitcroft## 		if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
212122f2a2efSAndy Whitcroft## 		    $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
212222f2a2efSAndy Whitcroft##
212322f2a2efSAndy Whitcroft## 			# Remove any bracketed sections to ensure we do not
212422f2a2efSAndy Whitcroft## 			# falsly report the parameters of functions.
212522f2a2efSAndy Whitcroft## 			my $ln = $line;
212622f2a2efSAndy Whitcroft## 			while ($ln =~ s/\([^\(\)]*\)//g) {
212722f2a2efSAndy Whitcroft## 			}
212822f2a2efSAndy Whitcroft## 			if ($ln =~ /,/) {
212922f2a2efSAndy Whitcroft## 				WARN("declaring multiple variables together should be avoided\n" . $herecurr);
213022f2a2efSAndy Whitcroft## 			}
213122f2a2efSAndy Whitcroft## 		}
2132f0a594c1SAndy Whitcroft
21330a920b5bSAndy Whitcroft#need space before brace following if, while, etc
213422f2a2efSAndy Whitcroft		if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) ||
213522f2a2efSAndy Whitcroft		    $line =~ /do{/) {
2136773647a0SAndy Whitcroft			ERROR("space required before the open brace '{'\n" . $herecurr);
2137de7d4f0eSAndy Whitcroft		}
2138de7d4f0eSAndy Whitcroft
2139de7d4f0eSAndy Whitcroft# closing brace should have a space following it when it has anything
2140de7d4f0eSAndy Whitcroft# on the line
2141de7d4f0eSAndy Whitcroft		if ($line =~ /}(?!(?:,|;|\)))\S/) {
2142773647a0SAndy Whitcroft			ERROR("space required after that close brace '}'\n" . $herecurr);
21430a920b5bSAndy Whitcroft		}
21440a920b5bSAndy Whitcroft
214522f2a2efSAndy Whitcroft# check spacing on square brackets
214622f2a2efSAndy Whitcroft		if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
2147773647a0SAndy Whitcroft			ERROR("space prohibited after that open square bracket '['\n" . $herecurr);
214822f2a2efSAndy Whitcroft		}
214922f2a2efSAndy Whitcroft		if ($line =~ /\s\]/) {
2150773647a0SAndy Whitcroft			ERROR("space prohibited before that close square bracket ']'\n" . $herecurr);
215122f2a2efSAndy Whitcroft		}
215222f2a2efSAndy Whitcroft
2153c45dcabdSAndy Whitcroft# check spacing on parentheses
21549c0ca6f9SAndy Whitcroft		if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
21559c0ca6f9SAndy Whitcroft		    $line !~ /for\s*\(\s+;/) {
2156773647a0SAndy Whitcroft			ERROR("space prohibited after that open parenthesis '('\n" . $herecurr);
215722f2a2efSAndy Whitcroft		}
215813214adfSAndy Whitcroft		if ($line =~ /(\s+)\)/ && $line !~ /^.\s*\)/ &&
2159c45dcabdSAndy Whitcroft		    $line !~ /for\s*\(.*;\s+\)/ &&
2160c45dcabdSAndy Whitcroft		    $line !~ /:\s+\)/) {
2161773647a0SAndy Whitcroft			ERROR("space prohibited before that close parenthesis ')'\n" . $herecurr);
216222f2a2efSAndy Whitcroft		}
216322f2a2efSAndy Whitcroft
21640a920b5bSAndy Whitcroft#goto labels aren't indented, allow a single space however
21654a0df2efSAndy Whitcroft		if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
21660a920b5bSAndy Whitcroft		   !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
2167de7d4f0eSAndy Whitcroft			WARN("labels should not be indented\n" . $herecurr);
21680a920b5bSAndy Whitcroft		}
21690a920b5bSAndy Whitcroft
2170c45dcabdSAndy Whitcroft# Return is not a function.
2171c45dcabdSAndy Whitcroft		if (defined($stat) && $stat =~ /^.\s*return(\s*)(\(.*);/s) {
2172c45dcabdSAndy Whitcroft			my $spacing = $1;
2173c45dcabdSAndy Whitcroft			my $value = $2;
2174c45dcabdSAndy Whitcroft
217586f9d059SAndy Whitcroft			# Flatten any parentheses
2176fee61c47SAndy Whitcroft			$value =~ s/\)\(/\) \(/g;
217763f17f89SAndy Whitcroft			while ($value =~ s/\[[^\{\}]*\]/1/ ||
217863f17f89SAndy Whitcroft			       $value !~ /(?:$Ident|-?$Constant)\s*
217963f17f89SAndy Whitcroft					     $Compare\s*
218063f17f89SAndy Whitcroft					     (?:$Ident|-?$Constant)/x &&
218163f17f89SAndy Whitcroft			       $value =~ s/\([^\(\)]*\)/1/) {
2182c45dcabdSAndy Whitcroft			}
2183c45dcabdSAndy Whitcroft
2184c45dcabdSAndy Whitcroft			if ($value =~ /^(?:$Ident|-?$Constant)$/) {
2185c45dcabdSAndy Whitcroft				ERROR("return is not a function, parentheses are not required\n" . $herecurr);
2186c45dcabdSAndy Whitcroft
2187c45dcabdSAndy Whitcroft			} elsif ($spacing !~ /\s+/) {
2188c45dcabdSAndy Whitcroft				ERROR("space required before the open parenthesis '('\n" . $herecurr);
2189c45dcabdSAndy Whitcroft			}
2190c45dcabdSAndy Whitcroft		}
2191c45dcabdSAndy Whitcroft
21920a920b5bSAndy Whitcroft# Need a space before open parenthesis after if, while etc
21934a0df2efSAndy Whitcroft		if ($line=~/\b(if|while|for|switch)\(/) {
2194773647a0SAndy Whitcroft			ERROR("space required before the open parenthesis '('\n" . $herecurr);
21950a920b5bSAndy Whitcroft		}
21960a920b5bSAndy Whitcroft
2197f5fe35ddSAndy Whitcroft# Check for illegal assignment in if conditional -- and check for trailing
2198f5fe35ddSAndy Whitcroft# statements after the conditional.
2199170d3a22SAndy Whitcroft		if ($line =~ /do\s*(?!{)/) {
2200170d3a22SAndy Whitcroft			my ($stat_next) = ctx_statement_block($line_nr_next,
2201170d3a22SAndy Whitcroft						$remain_next, $off_next);
2202170d3a22SAndy Whitcroft			$stat_next =~ s/\n./\n /g;
2203170d3a22SAndy Whitcroft			##print "stat<$stat> stat_next<$stat_next>\n";
2204170d3a22SAndy Whitcroft
2205170d3a22SAndy Whitcroft			if ($stat_next =~ /^\s*while\b/) {
2206170d3a22SAndy Whitcroft				# If the statement carries leading newlines,
2207170d3a22SAndy Whitcroft				# then count those as offsets.
2208170d3a22SAndy Whitcroft				my ($whitespace) =
2209170d3a22SAndy Whitcroft					($stat_next =~ /^((?:\s*\n[+-])*\s*)/s);
2210170d3a22SAndy Whitcroft				my $offset =
2211170d3a22SAndy Whitcroft					statement_rawlines($whitespace) - 1;
2212170d3a22SAndy Whitcroft
2213170d3a22SAndy Whitcroft				$suppress_whiletrailers{$line_nr_next +
2214170d3a22SAndy Whitcroft								$offset} = 1;
2215170d3a22SAndy Whitcroft			}
2216170d3a22SAndy Whitcroft		}
2217170d3a22SAndy Whitcroft		if (!defined $suppress_whiletrailers{$linenr} &&
2218170d3a22SAndy Whitcroft		    $line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) {
2219171ae1a4SAndy Whitcroft			my ($s, $c) = ($stat, $cond);
22208905a67cSAndy Whitcroft
2221b53c8e10SAndy Whitcroft			if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/s) {
2222c2fdda0dSAndy Whitcroft				ERROR("do not use assignment in if condition\n" . $herecurr);
22238905a67cSAndy Whitcroft			}
22248905a67cSAndy Whitcroft
22258905a67cSAndy Whitcroft			# Find out what is on the end of the line after the
22268905a67cSAndy Whitcroft			# conditional.
2227773647a0SAndy Whitcroft			substr($s, 0, length($c), '');
22288905a67cSAndy Whitcroft			$s =~ s/\n.*//g;
222913214adfSAndy Whitcroft			$s =~ s/$;//g; 	# Remove any comments
223053210168SAndy Whitcroft			if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ &&
223153210168SAndy Whitcroft			    $c !~ /}\s*while\s*/)
2232773647a0SAndy Whitcroft			{
2233bb44ad39SAndy Whitcroft				# Find out how long the conditional actually is.
2234bb44ad39SAndy Whitcroft				my @newlines = ($c =~ /\n/gs);
2235bb44ad39SAndy Whitcroft				my $cond_lines = 1 + $#newlines;
223642bdf74cSHidetoshi Seto				my $stat_real = '';
2237bb44ad39SAndy Whitcroft
223842bdf74cSHidetoshi Seto				$stat_real = raw_line($linenr, $cond_lines)
223942bdf74cSHidetoshi Seto							. "\n" if ($cond_lines);
2240bb44ad39SAndy Whitcroft				if (defined($stat_real) && $cond_lines > 1) {
2241bb44ad39SAndy Whitcroft					$stat_real = "[...]\n$stat_real";
2242bb44ad39SAndy Whitcroft				}
2243bb44ad39SAndy Whitcroft
2244bb44ad39SAndy Whitcroft				ERROR("trailing statements should be on next line\n" . $herecurr . $stat_real);
22458905a67cSAndy Whitcroft			}
22468905a67cSAndy Whitcroft		}
22478905a67cSAndy Whitcroft
224813214adfSAndy Whitcroft# Check for bitwise tests written as boolean
224913214adfSAndy Whitcroft		if ($line =~ /
225013214adfSAndy Whitcroft			(?:
225113214adfSAndy Whitcroft				(?:\[|\(|\&\&|\|\|)
225213214adfSAndy Whitcroft				\s*0[xX][0-9]+\s*
225313214adfSAndy Whitcroft				(?:\&\&|\|\|)
225413214adfSAndy Whitcroft			|
225513214adfSAndy Whitcroft				(?:\&\&|\|\|)
225613214adfSAndy Whitcroft				\s*0[xX][0-9]+\s*
225713214adfSAndy Whitcroft				(?:\&\&|\|\||\)|\])
225813214adfSAndy Whitcroft			)/x)
225913214adfSAndy Whitcroft		{
226013214adfSAndy Whitcroft			WARN("boolean test with hexadecimal, perhaps just 1 \& or \|?\n" . $herecurr);
226113214adfSAndy Whitcroft		}
226213214adfSAndy Whitcroft
22638905a67cSAndy Whitcroft# if and else should not have general statements after it
226413214adfSAndy Whitcroft		if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/) {
226513214adfSAndy Whitcroft			my $s = $1;
226613214adfSAndy Whitcroft			$s =~ s/$;//g; 	# Remove any comments
226713214adfSAndy Whitcroft			if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) {
22688905a67cSAndy Whitcroft				ERROR("trailing statements should be on next line\n" . $herecurr);
22690a920b5bSAndy Whitcroft			}
227013214adfSAndy Whitcroft		}
227139667782SAndy Whitcroft# if should not continue a brace
227239667782SAndy Whitcroft		if ($line =~ /}\s*if\b/) {
227339667782SAndy Whitcroft			ERROR("trailing statements should be on next line\n" .
227439667782SAndy Whitcroft				$herecurr);
227539667782SAndy Whitcroft		}
2276a1080bf8SAndy Whitcroft# case and default should not have general statements after them
2277a1080bf8SAndy Whitcroft		if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
2278a1080bf8SAndy Whitcroft		    $line !~ /\G(?:
22793fef12d6SAndy Whitcroft			(?:\s*$;*)(?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$|
2280a1080bf8SAndy Whitcroft			\s*return\s+
2281a1080bf8SAndy Whitcroft		    )/xg)
2282a1080bf8SAndy Whitcroft		{
2283a1080bf8SAndy Whitcroft			ERROR("trailing statements should be on next line\n" . $herecurr);
2284a1080bf8SAndy Whitcroft		}
22850a920b5bSAndy Whitcroft
22860a920b5bSAndy Whitcroft		# Check for }<nl>else {, these must be at the same
22870a920b5bSAndy Whitcroft		# indent level to be relevant to each other.
22880a920b5bSAndy Whitcroft		if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ and
22890a920b5bSAndy Whitcroft						$previndent == $indent) {
2290de7d4f0eSAndy Whitcroft			ERROR("else should follow close brace '}'\n" . $hereprev);
22910a920b5bSAndy Whitcroft		}
22920a920b5bSAndy Whitcroft
2293c2fdda0dSAndy Whitcroft		if ($prevline=~/}\s*$/ and $line=~/^.\s*while\s*/ and
2294c2fdda0dSAndy Whitcroft						$previndent == $indent) {
2295c2fdda0dSAndy Whitcroft			my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0);
2296c2fdda0dSAndy Whitcroft
2297c2fdda0dSAndy Whitcroft			# Find out what is on the end of the line after the
2298c2fdda0dSAndy Whitcroft			# conditional.
2299773647a0SAndy Whitcroft			substr($s, 0, length($c), '');
2300c2fdda0dSAndy Whitcroft			$s =~ s/\n.*//g;
2301c2fdda0dSAndy Whitcroft
2302c2fdda0dSAndy Whitcroft			if ($s =~ /^\s*;/) {
2303c2fdda0dSAndy Whitcroft				ERROR("while should follow close brace '}'\n" . $hereprev);
2304c2fdda0dSAndy Whitcroft			}
2305c2fdda0dSAndy Whitcroft		}
2306c2fdda0dSAndy Whitcroft
23070a920b5bSAndy Whitcroft#studly caps, commented out until figure out how to distinguish between use of existing and adding new
23080a920b5bSAndy Whitcroft#		if (($line=~/[\w_][a-z\d]+[A-Z]/) and !($line=~/print/)) {
23090a920b5bSAndy Whitcroft#		    print "No studly caps, use _\n";
23100a920b5bSAndy Whitcroft#		    print "$herecurr";
23110a920b5bSAndy Whitcroft#		    $clean = 0;
23120a920b5bSAndy Whitcroft#		}
23130a920b5bSAndy Whitcroft
23140a920b5bSAndy Whitcroft#no spaces allowed after \ in define
2315c45dcabdSAndy Whitcroft		if ($line=~/\#\s*define.*\\\s$/) {
2316de7d4f0eSAndy Whitcroft			WARN("Whitepspace after \\ makes next lines useless\n" . $herecurr);
23170a920b5bSAndy Whitcroft		}
23180a920b5bSAndy Whitcroft
2319653d4876SAndy Whitcroft#warn if <asm/foo.h> is #included and <linux/foo.h> is available (uses RAW line)
2320c45dcabdSAndy Whitcroft		if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) {
2321e09dec48SAndy Whitcroft			my $file = "$1.h";
2322e09dec48SAndy Whitcroft			my $checkfile = "include/linux/$file";
2323e09dec48SAndy Whitcroft			if (-f "$root/$checkfile" &&
2324e09dec48SAndy Whitcroft			    $realfile ne $checkfile &&
23257840a94cSWolfram Sang			    $1 !~ /$allowed_asm_includes/)
2326c45dcabdSAndy Whitcroft			{
2327e09dec48SAndy Whitcroft				if ($realfile =~ m{^arch/}) {
2328e09dec48SAndy Whitcroft					CHK("Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
2329e09dec48SAndy Whitcroft				} else {
2330e09dec48SAndy Whitcroft					WARN("Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
2331e09dec48SAndy Whitcroft				}
23320a920b5bSAndy Whitcroft			}
23330a920b5bSAndy Whitcroft		}
23340a920b5bSAndy Whitcroft
2335653d4876SAndy Whitcroft# multi-statement macros should be enclosed in a do while loop, grab the
2336653d4876SAndy Whitcroft# first statement and ensure its the whole macro if its not enclosed
2337cf655043SAndy Whitcroft# in a known good container
2338b8f96a31SAndy Whitcroft		if ($realfile !~ m@/vmlinux.lds.h$@ &&
2339b8f96a31SAndy Whitcroft		    $line =~ /^.\s*\#\s*define\s*$Ident(\()?/) {
2340d8aaf121SAndy Whitcroft			my $ln = $linenr;
2341d8aaf121SAndy Whitcroft			my $cnt = $realcnt;
2342c45dcabdSAndy Whitcroft			my ($off, $dstat, $dcond, $rest);
2343c45dcabdSAndy Whitcroft			my $ctx = '';
2344653d4876SAndy Whitcroft
2345c45dcabdSAndy Whitcroft			my $args = defined($1);
2346de7d4f0eSAndy Whitcroft
2347c45dcabdSAndy Whitcroft			# Find the end of the macro and limit our statement
2348c45dcabdSAndy Whitcroft			# search to that.
2349c45dcabdSAndy Whitcroft			while ($cnt > 0 && defined $lines[$ln - 1] &&
2350c45dcabdSAndy Whitcroft				$lines[$ln - 1] =~ /^(?:-|..*\\$)/)
2351c45dcabdSAndy Whitcroft			{
2352c45dcabdSAndy Whitcroft				$ctx .= $rawlines[$ln - 1] . "\n";
2353a3bb97a7SAndy Whitcroft				$cnt-- if ($lines[$ln - 1] !~ /^-/);
2354c45dcabdSAndy Whitcroft				$ln++;
2355de7d4f0eSAndy Whitcroft			}
2356c45dcabdSAndy Whitcroft			$ctx .= $rawlines[$ln - 1];
2357d8aaf121SAndy Whitcroft
2358c45dcabdSAndy Whitcroft			($dstat, $dcond, $ln, $cnt, $off) =
2359c45dcabdSAndy Whitcroft				ctx_statement_block($linenr, $ln - $linenr + 1, 0);
2360c45dcabdSAndy Whitcroft			#print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n";
2361a3bb97a7SAndy Whitcroft			#print "LINE<$lines[$ln-1]> len<" . length($lines[$ln-1]) . "\n";
2362c45dcabdSAndy Whitcroft
2363c45dcabdSAndy Whitcroft			# Extract the remainder of the define (if any) and
2364c45dcabdSAndy Whitcroft			# rip off surrounding spaces, and trailing \'s.
2365c45dcabdSAndy Whitcroft			$rest = '';
2366636d140aSAndy Whitcroft			while ($off != 0 || ($cnt > 0 && $rest =~ /\\\s*$/)) {
2367636d140aSAndy Whitcroft				#print "ADDING cnt<$cnt> $off <" . substr($lines[$ln - 1], $off) . "> rest<$rest>\n";
2368a3bb97a7SAndy Whitcroft				if ($off != 0 || $lines[$ln - 1] !~ /^-/) {
2369c45dcabdSAndy Whitcroft					$rest .= substr($lines[$ln - 1], $off) . "\n";
2370c45dcabdSAndy Whitcroft					$cnt--;
2371a3bb97a7SAndy Whitcroft				}
2372a3bb97a7SAndy Whitcroft				$ln++;
2373c45dcabdSAndy Whitcroft				$off = 0;
2374c45dcabdSAndy Whitcroft			}
2375c45dcabdSAndy Whitcroft			$rest =~ s/\\\n.//g;
2376c45dcabdSAndy Whitcroft			$rest =~ s/^\s*//s;
2377c45dcabdSAndy Whitcroft			$rest =~ s/\s*$//s;
2378c45dcabdSAndy Whitcroft
2379c45dcabdSAndy Whitcroft			# Clean up the original statement.
2380c45dcabdSAndy Whitcroft			if ($args) {
2381c45dcabdSAndy Whitcroft				substr($dstat, 0, length($dcond), '');
2382d8aaf121SAndy Whitcroft			} else {
2383c45dcabdSAndy Whitcroft				$dstat =~ s/^.\s*\#\s*define\s+$Ident\s*//;
2384c45dcabdSAndy Whitcroft			}
2385292f1a9bSAndy Whitcroft			$dstat =~ s/$;//g;
2386c45dcabdSAndy Whitcroft			$dstat =~ s/\\\n.//g;
2387c45dcabdSAndy Whitcroft			$dstat =~ s/^\s*//s;
2388c45dcabdSAndy Whitcroft			$dstat =~ s/\s*$//s;
2389c45dcabdSAndy Whitcroft
2390c45dcabdSAndy Whitcroft			# Flatten any parentheses and braces
2391bf30d6edSAndy Whitcroft			while ($dstat =~ s/\([^\(\)]*\)/1/ ||
2392bf30d6edSAndy Whitcroft			       $dstat =~ s/\{[^\{\}]*\}/1/ ||
2393bf30d6edSAndy Whitcroft			       $dstat =~ s/\[[^\{\}]*\]/1/)
2394bf30d6edSAndy Whitcroft			{
2395c45dcabdSAndy Whitcroft			}
2396c45dcabdSAndy Whitcroft
2397c45dcabdSAndy Whitcroft			my $exceptions = qr{
2398c45dcabdSAndy Whitcroft				$Declare|
2399c45dcabdSAndy Whitcroft				module_param_named|
2400c45dcabdSAndy Whitcroft				MODULE_PARAM_DESC|
2401c45dcabdSAndy Whitcroft				DECLARE_PER_CPU|
2402c45dcabdSAndy Whitcroft				DEFINE_PER_CPU|
2403383099fdSAndy Whitcroft				__typeof__\(|
240422fd2d3eSStefani Seibold				union|
240522fd2d3eSStefani Seibold				struct|
2406ea71a0a0SAndy Whitcroft				\.$Ident\s*=\s*|
2407ea71a0a0SAndy Whitcroft				^\"|\"$
2408c45dcabdSAndy Whitcroft			}x;
2409383099fdSAndy Whitcroft			#print "REST<$rest> dstat<$dstat>\n";
2410c45dcabdSAndy Whitcroft			if ($rest ne '') {
2411c45dcabdSAndy Whitcroft				if ($rest !~ /while\s*\(/ &&
2412c45dcabdSAndy Whitcroft				    $dstat !~ /$exceptions/)
2413c45dcabdSAndy Whitcroft				{
2414c45dcabdSAndy Whitcroft					ERROR("Macros with multiple statements should be enclosed in a do - while loop\n" . "$here\n$ctx\n");
2415c45dcabdSAndy Whitcroft				}
2416c45dcabdSAndy Whitcroft
2417c45dcabdSAndy Whitcroft			} elsif ($ctx !~ /;/) {
2418c45dcabdSAndy Whitcroft				if ($dstat ne '' &&
2419c45dcabdSAndy Whitcroft				    $dstat !~ /^(?:$Ident|-?$Constant)$/ &&
2420c45dcabdSAndy Whitcroft				    $dstat !~ /$exceptions/ &&
2421b132e5d5SAndy Whitcroft				    $dstat !~ /^\.$Ident\s*=/ &&
2422c45dcabdSAndy Whitcroft				    $dstat =~ /$Operators/)
2423c45dcabdSAndy Whitcroft				{
2424de7d4f0eSAndy Whitcroft					ERROR("Macros with complex values should be enclosed in parenthesis\n" . "$here\n$ctx\n");
2425d8aaf121SAndy Whitcroft				}
24260a920b5bSAndy Whitcroft			}
2427653d4876SAndy Whitcroft		}
24280a920b5bSAndy Whitcroft
2429080ba929SMike Frysinger# make sure symbols are always wrapped with VMLINUX_SYMBOL() ...
2430080ba929SMike Frysinger# all assignments may have only one of the following with an assignment:
2431080ba929SMike Frysinger#	.
2432080ba929SMike Frysinger#	ALIGN(...)
2433080ba929SMike Frysinger#	VMLINUX_SYMBOL(...)
2434080ba929SMike Frysinger		if ($realfile eq 'vmlinux.lds.h' && $line =~ /(?:(?:^|\s)$Ident\s*=|=\s*$Ident(?:\s|$))/) {
2435080ba929SMike Frysinger			WARN("vmlinux.lds.h needs VMLINUX_SYMBOL() around C-visible symbols\n" . $herecurr);
2436080ba929SMike Frysinger		}
2437080ba929SMike Frysinger
2438f0a594c1SAndy Whitcroft# check for redundant bracing round if etc
243913214adfSAndy Whitcroft		if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) {
244013214adfSAndy Whitcroft			my ($level, $endln, @chunks) =
2441cf655043SAndy Whitcroft				ctx_statement_full($linenr, $realcnt, 1);
244213214adfSAndy Whitcroft			#print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n";
2443cf655043SAndy Whitcroft			#print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n";
2444cf655043SAndy Whitcroft			if ($#chunks > 0 && $level == 0) {
244513214adfSAndy Whitcroft				my $allowed = 0;
244613214adfSAndy Whitcroft				my $seen = 0;
2447773647a0SAndy Whitcroft				my $herectx = $here . "\n";
2448cf655043SAndy Whitcroft				my $ln = $linenr - 1;
244913214adfSAndy Whitcroft				for my $chunk (@chunks) {
245013214adfSAndy Whitcroft					my ($cond, $block) = @{$chunk};
245113214adfSAndy Whitcroft
2452773647a0SAndy Whitcroft					# If the condition carries leading newlines, then count those as offsets.
2453773647a0SAndy Whitcroft					my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s);
2454773647a0SAndy Whitcroft					my $offset = statement_rawlines($whitespace) - 1;
2455773647a0SAndy Whitcroft
2456773647a0SAndy Whitcroft					#print "COND<$cond> whitespace<$whitespace> offset<$offset>\n";
2457773647a0SAndy Whitcroft
2458773647a0SAndy Whitcroft					# We have looked at and allowed this specific line.
2459773647a0SAndy Whitcroft					$suppress_ifbraces{$ln + $offset} = 1;
2460773647a0SAndy Whitcroft
2461773647a0SAndy Whitcroft					$herectx .= "$rawlines[$ln + $offset]\n[...]\n";
2462cf655043SAndy Whitcroft					$ln += statement_rawlines($block) - 1;
2463cf655043SAndy Whitcroft
2464773647a0SAndy Whitcroft					substr($block, 0, length($cond), '');
246513214adfSAndy Whitcroft
246613214adfSAndy Whitcroft					$seen++ if ($block =~ /^\s*{/);
246713214adfSAndy Whitcroft
2468cf655043SAndy Whitcroft					#print "cond<$cond> block<$block> allowed<$allowed>\n";
2469cf655043SAndy Whitcroft					if (statement_lines($cond) > 1) {
2470cf655043SAndy Whitcroft						#print "APW: ALLOWED: cond<$cond>\n";
247113214adfSAndy Whitcroft						$allowed = 1;
247213214adfSAndy Whitcroft					}
247313214adfSAndy Whitcroft					if ($block =~/\b(?:if|for|while)\b/) {
2474cf655043SAndy Whitcroft						#print "APW: ALLOWED: block<$block>\n";
247513214adfSAndy Whitcroft						$allowed = 1;
247613214adfSAndy Whitcroft					}
2477cf655043SAndy Whitcroft					if (statement_block_size($block) > 1) {
2478cf655043SAndy Whitcroft						#print "APW: ALLOWED: lines block<$block>\n";
247913214adfSAndy Whitcroft						$allowed = 1;
248013214adfSAndy Whitcroft					}
248113214adfSAndy Whitcroft				}
248213214adfSAndy Whitcroft				if ($seen && !$allowed) {
2483cf655043SAndy Whitcroft					WARN("braces {} are not necessary for any arm of this statement\n" . $herectx);
248413214adfSAndy Whitcroft				}
248513214adfSAndy Whitcroft			}
248613214adfSAndy Whitcroft		}
2487773647a0SAndy Whitcroft		if (!defined $suppress_ifbraces{$linenr - 1} &&
248813214adfSAndy Whitcroft					$line =~ /\b(if|while|for|else)\b/) {
2489cf655043SAndy Whitcroft			my $allowed = 0;
2490f0a594c1SAndy Whitcroft
2491cf655043SAndy Whitcroft			# Check the pre-context.
2492cf655043SAndy Whitcroft			if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) {
2493cf655043SAndy Whitcroft				#print "APW: ALLOWED: pre<$1>\n";
2494cf655043SAndy Whitcroft				$allowed = 1;
2495f0a594c1SAndy Whitcroft			}
2496773647a0SAndy Whitcroft
2497773647a0SAndy Whitcroft			my ($level, $endln, @chunks) =
2498773647a0SAndy Whitcroft				ctx_statement_full($linenr, $realcnt, $-[0]);
2499773647a0SAndy Whitcroft
2500cf655043SAndy Whitcroft			# Check the condition.
2501cf655043SAndy Whitcroft			my ($cond, $block) = @{$chunks[0]};
2502773647a0SAndy Whitcroft			#print "CHECKING<$linenr> cond<$cond> block<$block>\n";
2503cf655043SAndy Whitcroft			if (defined $cond) {
2504773647a0SAndy Whitcroft				substr($block, 0, length($cond), '');
2505cf655043SAndy Whitcroft			}
2506cf655043SAndy Whitcroft			if (statement_lines($cond) > 1) {
2507cf655043SAndy Whitcroft				#print "APW: ALLOWED: cond<$cond>\n";
2508cf655043SAndy Whitcroft				$allowed = 1;
2509cf655043SAndy Whitcroft			}
2510cf655043SAndy Whitcroft			if ($block =~/\b(?:if|for|while)\b/) {
2511cf655043SAndy Whitcroft				#print "APW: ALLOWED: block<$block>\n";
2512cf655043SAndy Whitcroft				$allowed = 1;
2513cf655043SAndy Whitcroft			}
2514cf655043SAndy Whitcroft			if (statement_block_size($block) > 1) {
2515cf655043SAndy Whitcroft				#print "APW: ALLOWED: lines block<$block>\n";
2516cf655043SAndy Whitcroft				$allowed = 1;
2517cf655043SAndy Whitcroft			}
2518cf655043SAndy Whitcroft			# Check the post-context.
2519cf655043SAndy Whitcroft			if (defined $chunks[1]) {
2520cf655043SAndy Whitcroft				my ($cond, $block) = @{$chunks[1]};
2521cf655043SAndy Whitcroft				if (defined $cond) {
2522773647a0SAndy Whitcroft					substr($block, 0, length($cond), '');
2523cf655043SAndy Whitcroft				}
2524cf655043SAndy Whitcroft				if ($block =~ /^\s*\{/) {
2525cf655043SAndy Whitcroft					#print "APW: ALLOWED: chunk-1 block<$block>\n";
2526cf655043SAndy Whitcroft					$allowed = 1;
2527cf655043SAndy Whitcroft				}
2528cf655043SAndy Whitcroft			}
2529cf655043SAndy Whitcroft			if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
2530cf655043SAndy Whitcroft				my $herectx = $here . "\n";;
2531f055663cSAndy Whitcroft				my $cnt = statement_rawlines($block);
2532cf655043SAndy Whitcroft
2533f055663cSAndy Whitcroft				for (my $n = 0; $n < $cnt; $n++) {
2534f055663cSAndy Whitcroft					$herectx .= raw_line($linenr, $n) . "\n";;
2535cf655043SAndy Whitcroft				}
2536cf655043SAndy Whitcroft
2537cf655043SAndy Whitcroft				WARN("braces {} are not necessary for single statement blocks\n" . $herectx);
2538f0a594c1SAndy Whitcroft			}
2539f0a594c1SAndy Whitcroft		}
2540f0a594c1SAndy Whitcroft
2541653d4876SAndy Whitcroft# don't include deprecated include files (uses RAW line)
25424a0df2efSAndy Whitcroft		for my $inc (@dep_includes) {
2543c45dcabdSAndy Whitcroft			if ($rawline =~ m@^.\s*\#\s*include\s*\<$inc>@) {
2544de7d4f0eSAndy Whitcroft				ERROR("Don't use <$inc>: see Documentation/feature-removal-schedule.txt\n" . $herecurr);
25450a920b5bSAndy Whitcroft			}
25460a920b5bSAndy Whitcroft		}
25470a920b5bSAndy Whitcroft
25484a0df2efSAndy Whitcroft# don't use deprecated functions
25494a0df2efSAndy Whitcroft		for my $func (@dep_functions) {
255000df344fSAndy Whitcroft			if ($line =~ /\b$func\b/) {
2551de7d4f0eSAndy Whitcroft				ERROR("Don't use $func(): see Documentation/feature-removal-schedule.txt\n" . $herecurr);
25524a0df2efSAndy Whitcroft			}
25534a0df2efSAndy Whitcroft		}
25544a0df2efSAndy Whitcroft
25554a0df2efSAndy Whitcroft# no volatiles please
25566c72ffaaSAndy Whitcroft		my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
25576c72ffaaSAndy Whitcroft		if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
2558de7d4f0eSAndy Whitcroft			WARN("Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt\n" . $herecurr);
25594a0df2efSAndy Whitcroft		}
25604a0df2efSAndy Whitcroft
25619c0ca6f9SAndy Whitcroft# SPIN_LOCK_UNLOCKED & RW_LOCK_UNLOCKED are deprecated
25629c0ca6f9SAndy Whitcroft		if ($line =~ /\b(SPIN_LOCK_UNLOCKED|RW_LOCK_UNLOCKED)/) {
25639c0ca6f9SAndy Whitcroft			ERROR("Use of $1 is deprecated: see Documentation/spinlocks.txt\n" . $herecurr);
25649c0ca6f9SAndy Whitcroft		}
25659c0ca6f9SAndy Whitcroft
256600df344fSAndy Whitcroft# warn about #if 0
2567c45dcabdSAndy Whitcroft		if ($line =~ /^.\s*\#\s*if\s+0\b/) {
2568de7d4f0eSAndy Whitcroft			CHK("if this code is redundant consider removing it\n" .
2569de7d4f0eSAndy Whitcroft				$herecurr);
25704a0df2efSAndy Whitcroft		}
25714a0df2efSAndy Whitcroft
2572f0a594c1SAndy Whitcroft# check for needless kfree() checks
2573f0a594c1SAndy Whitcroft		if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
2574f0a594c1SAndy Whitcroft			my $expr = $1;
2575f0a594c1SAndy Whitcroft			if ($line =~ /\bkfree\(\Q$expr\E\);/) {
25763c232147SWolfram Sang				WARN("kfree(NULL) is safe this check is probably not required\n" . $hereprev);
2577f0a594c1SAndy Whitcroft			}
2578f0a594c1SAndy Whitcroft		}
25794c432a8fSGreg Kroah-Hartman# check for needless usb_free_urb() checks
25804c432a8fSGreg Kroah-Hartman		if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
25814c432a8fSGreg Kroah-Hartman			my $expr = $1;
25824c432a8fSGreg Kroah-Hartman			if ($line =~ /\busb_free_urb\(\Q$expr\E\);/) {
25834c432a8fSGreg Kroah-Hartman				WARN("usb_free_urb(NULL) is safe this check is probably not required\n" . $hereprev);
25844c432a8fSGreg Kroah-Hartman			}
25854c432a8fSGreg Kroah-Hartman		}
2586f0a594c1SAndy Whitcroft
258700df344fSAndy Whitcroft# warn about #ifdefs in C files
2588c45dcabdSAndy Whitcroft#		if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
258900df344fSAndy Whitcroft#			print "#ifdef in C files should be avoided\n";
259000df344fSAndy Whitcroft#			print "$herecurr";
259100df344fSAndy Whitcroft#			$clean = 0;
259200df344fSAndy Whitcroft#		}
259300df344fSAndy Whitcroft
259422f2a2efSAndy Whitcroft# warn about spacing in #ifdefs
2595c45dcabdSAndy Whitcroft		if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) {
259622f2a2efSAndy Whitcroft			ERROR("exactly one space required after that #$1\n" . $herecurr);
259722f2a2efSAndy Whitcroft		}
259822f2a2efSAndy Whitcroft
25994a0df2efSAndy Whitcroft# check for spinlock_t definitions without a comment.
2600171ae1a4SAndy Whitcroft		if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ ||
2601171ae1a4SAndy Whitcroft		    $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) {
26024a0df2efSAndy Whitcroft			my $which = $1;
26034a0df2efSAndy Whitcroft			if (!ctx_has_comment($first_line, $linenr)) {
2604de7d4f0eSAndy Whitcroft				CHK("$1 definition without comment\n" . $herecurr);
26054a0df2efSAndy Whitcroft			}
26064a0df2efSAndy Whitcroft		}
26074a0df2efSAndy Whitcroft# check for memory barriers without a comment.
26084a0df2efSAndy Whitcroft		if ($line =~ /\b(mb|rmb|wmb|read_barrier_depends|smp_mb|smp_rmb|smp_wmb|smp_read_barrier_depends)\(/) {
26094a0df2efSAndy Whitcroft			if (!ctx_has_comment($first_line, $linenr)) {
2610de7d4f0eSAndy Whitcroft				CHK("memory barrier without comment\n" . $herecurr);
26114a0df2efSAndy Whitcroft			}
26124a0df2efSAndy Whitcroft		}
26134a0df2efSAndy Whitcroft# check of hardware specific defines
2614c45dcabdSAndy Whitcroft		if ($line =~ m@^.\s*\#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
2615de7d4f0eSAndy Whitcroft			CHK("architecture specific defines should be avoided\n" .  $herecurr);
26160a920b5bSAndy Whitcroft		}
2617653d4876SAndy Whitcroft
2618d4977c78STobias Klauser# Check that the storage class is at the beginning of a declaration
2619d4977c78STobias Klauser		if ($line =~ /\b$Storage\b/ && $line !~ /^.\s*$Storage\b/) {
2620d4977c78STobias Klauser			WARN("storage class should be at the beginning of the declaration\n" . $herecurr)
2621d4977c78STobias Klauser		}
2622d4977c78STobias Klauser
2623de7d4f0eSAndy Whitcroft# check the location of the inline attribute, that it is between
2624de7d4f0eSAndy Whitcroft# storage class and type.
26259c0ca6f9SAndy Whitcroft		if ($line =~ /\b$Type\s+$Inline\b/ ||
26269c0ca6f9SAndy Whitcroft		    $line =~ /\b$Inline\s+$Storage\b/) {
2627de7d4f0eSAndy Whitcroft			ERROR("inline keyword should sit between storage class and type\n" . $herecurr);
2628de7d4f0eSAndy Whitcroft		}
2629de7d4f0eSAndy Whitcroft
26308905a67cSAndy Whitcroft# Check for __inline__ and __inline, prefer inline
26318905a67cSAndy Whitcroft		if ($line =~ /\b(__inline__|__inline)\b/) {
26328905a67cSAndy Whitcroft			WARN("plain inline is preferred over $1\n" . $herecurr);
26338905a67cSAndy Whitcroft		}
26348905a67cSAndy Whitcroft
26358f53a9b8SJoe Perches# check for sizeof(&)
26368f53a9b8SJoe Perches		if ($line =~ /\bsizeof\s*\(\s*\&/) {
26378f53a9b8SJoe Perches			WARN("sizeof(& should be avoided\n" . $herecurr);
26388f53a9b8SJoe Perches		}
26398f53a9b8SJoe Perches
2640de7d4f0eSAndy Whitcroft# check for new externs in .c files.
2641171ae1a4SAndy Whitcroft		if ($realfile =~ /\.c$/ && defined $stat &&
2642c45dcabdSAndy Whitcroft		    $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s)
2643171ae1a4SAndy Whitcroft		{
2644c45dcabdSAndy Whitcroft			my $function_name = $1;
2645c45dcabdSAndy Whitcroft			my $paren_space = $2;
2646171ae1a4SAndy Whitcroft
2647171ae1a4SAndy Whitcroft			my $s = $stat;
2648171ae1a4SAndy Whitcroft			if (defined $cond) {
2649171ae1a4SAndy Whitcroft				substr($s, 0, length($cond), '');
2650171ae1a4SAndy Whitcroft			}
2651c45dcabdSAndy Whitcroft			if ($s =~ /^\s*;/ &&
2652c45dcabdSAndy Whitcroft			    $function_name ne 'uninitialized_var')
2653c45dcabdSAndy Whitcroft			{
2654de7d4f0eSAndy Whitcroft				WARN("externs should be avoided in .c files\n" .  $herecurr);
2655de7d4f0eSAndy Whitcroft			}
2656de7d4f0eSAndy Whitcroft
2657171ae1a4SAndy Whitcroft			if ($paren_space =~ /\n/) {
2658171ae1a4SAndy Whitcroft				WARN("arguments for function declarations should follow identifier\n" . $herecurr);
2659171ae1a4SAndy Whitcroft			}
26609c9ba34eSAndy Whitcroft
26619c9ba34eSAndy Whitcroft		} elsif ($realfile =~ /\.c$/ && defined $stat &&
26629c9ba34eSAndy Whitcroft		    $stat =~ /^.\s*extern\s+/)
26639c9ba34eSAndy Whitcroft		{
26649c9ba34eSAndy Whitcroft			WARN("externs should be avoided in .c files\n" .  $herecurr);
2665171ae1a4SAndy Whitcroft		}
2666171ae1a4SAndy Whitcroft
2667de7d4f0eSAndy Whitcroft# checks for new __setup's
2668de7d4f0eSAndy Whitcroft		if ($rawline =~ /\b__setup\("([^"]*)"/) {
2669de7d4f0eSAndy Whitcroft			my $name = $1;
2670de7d4f0eSAndy Whitcroft
2671de7d4f0eSAndy Whitcroft			if (!grep(/$name/, @setup_docs)) {
2672de7d4f0eSAndy Whitcroft				CHK("__setup appears un-documented -- check Documentation/kernel-parameters.txt\n" . $herecurr);
2673de7d4f0eSAndy Whitcroft			}
2674653d4876SAndy Whitcroft		}
26759c0ca6f9SAndy Whitcroft
26769c0ca6f9SAndy Whitcroft# check for pointless casting of kmalloc return
26779c0ca6f9SAndy Whitcroft		if ($line =~ /\*\s*\)\s*k[czm]alloc\b/) {
26789c0ca6f9SAndy Whitcroft			WARN("unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
26799c0ca6f9SAndy Whitcroft		}
268013214adfSAndy Whitcroft
268113214adfSAndy Whitcroft# check for gcc specific __FUNCTION__
268213214adfSAndy Whitcroft		if ($line =~ /__FUNCTION__/) {
268313214adfSAndy Whitcroft			WARN("__func__ should be used instead of gcc specific __FUNCTION__\n"  . $herecurr);
268413214adfSAndy Whitcroft		}
2685773647a0SAndy Whitcroft
2686773647a0SAndy Whitcroft# check for semaphores used as mutexes
2687171ae1a4SAndy Whitcroft		if ($line =~ /^.\s*(DECLARE_MUTEX|init_MUTEX)\s*\(/) {
2688773647a0SAndy Whitcroft			WARN("mutexes are preferred for single holder semaphores\n" . $herecurr);
2689773647a0SAndy Whitcroft		}
2690773647a0SAndy Whitcroft# check for semaphores used as mutexes
2691171ae1a4SAndy Whitcroft		if ($line =~ /^.\s*init_MUTEX_LOCKED\s*\(/) {
2692773647a0SAndy Whitcroft			WARN("consider using a completion\n" . $herecurr);
26931704f47bSPeter Zijlstra
2694773647a0SAndy Whitcroft		}
2695773647a0SAndy Whitcroft# recommend strict_strto* over simple_strto*
2696773647a0SAndy Whitcroft		if ($line =~ /\bsimple_(strto.*?)\s*\(/) {
2697773647a0SAndy Whitcroft			WARN("consider using strict_$1 in preference to simple_$1\n" . $herecurr);
2698773647a0SAndy Whitcroft		}
2699f3db6639SMichael Ellerman# check for __initcall(), use device_initcall() explicitly please
2700f3db6639SMichael Ellerman		if ($line =~ /^.\s*__initcall\s*\(/) {
2701f3db6639SMichael Ellerman			WARN("please use device_initcall() instead of __initcall()\n" . $herecurr);
2702f3db6639SMichael Ellerman		}
270379404849SEmese Revfy# check for various ops structs, ensure they are const.
270479404849SEmese Revfy		my $struct_ops = qr{acpi_dock_ops|
270579404849SEmese Revfy				address_space_operations|
270679404849SEmese Revfy				backlight_ops|
270779404849SEmese Revfy				block_device_operations|
270879404849SEmese Revfy				dentry_operations|
270979404849SEmese Revfy				dev_pm_ops|
271079404849SEmese Revfy				dma_map_ops|
271179404849SEmese Revfy				extent_io_ops|
271279404849SEmese Revfy				file_lock_operations|
271379404849SEmese Revfy				file_operations|
271479404849SEmese Revfy				hv_ops|
271579404849SEmese Revfy				ide_dma_ops|
271679404849SEmese Revfy				intel_dvo_dev_ops|
271779404849SEmese Revfy				item_operations|
271879404849SEmese Revfy				iwl_ops|
271979404849SEmese Revfy				kgdb_arch|
272079404849SEmese Revfy				kgdb_io|
272179404849SEmese Revfy				kset_uevent_ops|
272279404849SEmese Revfy				lock_manager_operations|
272379404849SEmese Revfy				microcode_ops|
272479404849SEmese Revfy				mtrr_ops|
272579404849SEmese Revfy				neigh_ops|
272679404849SEmese Revfy				nlmsvc_binding|
272779404849SEmese Revfy				pci_raw_ops|
272879404849SEmese Revfy				pipe_buf_operations|
272979404849SEmese Revfy				platform_hibernation_ops|
273079404849SEmese Revfy				platform_suspend_ops|
273179404849SEmese Revfy				proto_ops|
273279404849SEmese Revfy				rpc_pipe_ops|
273379404849SEmese Revfy				seq_operations|
273479404849SEmese Revfy				snd_ac97_build_ops|
273579404849SEmese Revfy				soc_pcmcia_socket_ops|
273679404849SEmese Revfy				stacktrace_ops|
273779404849SEmese Revfy				sysfs_ops|
273879404849SEmese Revfy				tty_operations|
273979404849SEmese Revfy				usb_mon_operations|
274079404849SEmese Revfy				wd_ops}x;
27416903ffb2SAndy Whitcroft		if ($line !~ /\bconst\b/ &&
274279404849SEmese Revfy		    $line =~ /\bstruct\s+($struct_ops)\b/) {
27436903ffb2SAndy Whitcroft			WARN("struct $1 should normally be const\n" .
27446903ffb2SAndy Whitcroft				$herecurr);
27452b6db5cbSAndy Whitcroft		}
2746773647a0SAndy Whitcroft
2747773647a0SAndy Whitcroft# use of NR_CPUS is usually wrong
2748773647a0SAndy Whitcroft# ignore definitions of NR_CPUS and usage to define arrays as likely right
2749773647a0SAndy Whitcroft		if ($line =~ /\bNR_CPUS\b/ &&
2750c45dcabdSAndy Whitcroft		    $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ &&
2751c45dcabdSAndy Whitcroft		    $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ &&
2752171ae1a4SAndy Whitcroft		    $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ &&
2753171ae1a4SAndy Whitcroft		    $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ &&
2754171ae1a4SAndy Whitcroft		    $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/)
2755773647a0SAndy Whitcroft		{
2756773647a0SAndy Whitcroft			WARN("usage of NR_CPUS is often wrong - consider using cpu_possible(), num_possible_cpus(), for_each_possible_cpu(), etc\n" . $herecurr);
2757773647a0SAndy Whitcroft		}
27589c9ba34eSAndy Whitcroft
27599c9ba34eSAndy Whitcroft# check for %L{u,d,i} in strings
27609c9ba34eSAndy Whitcroft		my $string;
27619c9ba34eSAndy Whitcroft		while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) {
27629c9ba34eSAndy Whitcroft			$string = substr($rawline, $-[1], $+[1] - $-[1]);
27632a1bc5d5SAndy Whitcroft			$string =~ s/%%/__/g;
27649c9ba34eSAndy Whitcroft			if ($string =~ /(?<!%)%L[udi]/) {
27659c9ba34eSAndy Whitcroft				WARN("\%Ld/%Lu are not-standard C, use %lld/%llu\n" . $herecurr);
27669c9ba34eSAndy Whitcroft				last;
27679c9ba34eSAndy Whitcroft			}
27689c9ba34eSAndy Whitcroft		}
2769691d77b6SAndy Whitcroft
2770691d77b6SAndy Whitcroft# whine mightly about in_atomic
2771691d77b6SAndy Whitcroft		if ($line =~ /\bin_atomic\s*\(/) {
2772691d77b6SAndy Whitcroft			if ($realfile =~ m@^drivers/@) {
2773691d77b6SAndy Whitcroft				ERROR("do not use in_atomic in drivers\n" . $herecurr);
2774f4a87736SAndy Whitcroft			} elsif ($realfile !~ m@^kernel/@) {
2775691d77b6SAndy Whitcroft				WARN("use of in_atomic() is incorrect outside core kernel code\n" . $herecurr);
2776691d77b6SAndy Whitcroft			}
2777691d77b6SAndy Whitcroft		}
27781704f47bSPeter Zijlstra
27791704f47bSPeter Zijlstra# check for lockdep_set_novalidate_class
27801704f47bSPeter Zijlstra		if ($line =~ /^.\s*lockdep_set_novalidate_class\s*\(/ ||
27811704f47bSPeter Zijlstra		    $line =~ /__lockdep_no_validate__\s*\)/ ) {
27821704f47bSPeter Zijlstra			if ($realfile !~ m@^kernel/lockdep@ &&
27831704f47bSPeter Zijlstra			    $realfile !~ m@^include/linux/lockdep@ &&
27841704f47bSPeter Zijlstra			    $realfile !~ m@^drivers/base/core@) {
27851704f47bSPeter Zijlstra				ERROR("lockdep_no_validate class is reserved for device->mutex.\n" . $herecurr);
27861704f47bSPeter Zijlstra			}
27871704f47bSPeter Zijlstra		}
278813214adfSAndy Whitcroft	}
278913214adfSAndy Whitcroft
279013214adfSAndy Whitcroft	# If we have no input at all, then there is nothing to report on
279113214adfSAndy Whitcroft	# so just keep quiet.
279213214adfSAndy Whitcroft	if ($#rawlines == -1) {
279313214adfSAndy Whitcroft		exit(0);
27940a920b5bSAndy Whitcroft	}
27950a920b5bSAndy Whitcroft
27968905a67cSAndy Whitcroft	# In mailback mode only produce a report in the negative, for
27978905a67cSAndy Whitcroft	# things that appear to be patches.
27988905a67cSAndy Whitcroft	if ($mailback && ($clean == 1 || !$is_patch)) {
27998905a67cSAndy Whitcroft		exit(0);
28008905a67cSAndy Whitcroft	}
28018905a67cSAndy Whitcroft
28028905a67cSAndy Whitcroft	# This is not a patch, and we are are in 'no-patch' mode so
28038905a67cSAndy Whitcroft	# just keep quiet.
28048905a67cSAndy Whitcroft	if (!$chk_patch && !$is_patch) {
28058905a67cSAndy Whitcroft		exit(0);
28068905a67cSAndy Whitcroft	}
28078905a67cSAndy Whitcroft
28088905a67cSAndy Whitcroft	if (!$is_patch) {
2809de7d4f0eSAndy Whitcroft		ERROR("Does not appear to be a unified-diff format patch\n");
28100a920b5bSAndy Whitcroft	}
28110a920b5bSAndy Whitcroft	if ($is_patch && $chk_signoff && $signoff == 0) {
2812de7d4f0eSAndy Whitcroft		ERROR("Missing Signed-off-by: line(s)\n");
28130a920b5bSAndy Whitcroft	}
28140a920b5bSAndy Whitcroft
2815f0a594c1SAndy Whitcroft	print report_dump();
281613214adfSAndy Whitcroft	if ($summary && !($clean == 1 && $quiet == 1)) {
281713214adfSAndy Whitcroft		print "$filename " if ($summary_file);
28186c72ffaaSAndy Whitcroft		print "total: $cnt_error errors, $cnt_warn warnings, " .
28196c72ffaaSAndy Whitcroft			(($check)? "$cnt_chk checks, " : "") .
28206c72ffaaSAndy Whitcroft			"$cnt_lines lines checked\n";
28218905a67cSAndy Whitcroft		print "\n" if ($quiet == 0);
28226c72ffaaSAndy Whitcroft	}
28238905a67cSAndy Whitcroft
28240a920b5bSAndy Whitcroft	if ($clean == 1 && $quiet == 0) {
2825c2fdda0dSAndy Whitcroft		print "$vname has no obvious style problems and is ready for submission.\n"
28260a920b5bSAndy Whitcroft	}
28270a920b5bSAndy Whitcroft	if ($clean == 0 && $quiet == 0) {
2828c2fdda0dSAndy Whitcroft		print "$vname has style problems, please review.  If any of these errors\n";
28290a920b5bSAndy Whitcroft		print "are false positives report them to the maintainer, see\n";
28300a920b5bSAndy Whitcroft		print "CHECKPATCH in MAINTAINERS.\n";
28310a920b5bSAndy Whitcroft	}
283213214adfSAndy Whitcroft
28330a920b5bSAndy Whitcroft	return $clean;
28340a920b5bSAndy Whitcroft}
2835