xref: /linux-6.15/scripts/checkpatch.pl (revision abb08a53)
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)
5015830beSAndy Whitcroft# (c) 2008-2010 Andy Whitcroft <[email protected]>
60a920b5bSAndy Whitcroft# Licensed under the terms of the GNU GPL License version 2
70a920b5bSAndy Whitcroft
80a920b5bSAndy Whitcroftuse strict;
9c707a81dSJoe Perchesuse POSIX;
1036061e38SJoe Perchesuse File::Basename;
1136061e38SJoe Perchesuse Cwd 'abs_path';
120a920b5bSAndy Whitcroft
130a920b5bSAndy Whitcroftmy $P = $0;
1436061e38SJoe Perchesmy $D = dirname(abs_path($P));
150a920b5bSAndy Whitcroft
16000d1cc1SJoe Perchesmy $V = '0.32';
170a920b5bSAndy Whitcroft
180a920b5bSAndy Whitcroftuse Getopt::Long qw(:config no_auto_abbrev);
190a920b5bSAndy Whitcroft
200a920b5bSAndy Whitcroftmy $quiet = 0;
210a920b5bSAndy Whitcroftmy $tree = 1;
220a920b5bSAndy Whitcroftmy $chk_signoff = 1;
230a920b5bSAndy Whitcroftmy $chk_patch = 1;
24773647a0SAndy Whitcroftmy $tst_only;
256c72ffaaSAndy Whitcroftmy $emacs = 0;
268905a67cSAndy Whitcroftmy $terse = 0;
276c72ffaaSAndy Whitcroftmy $file = 0;
286c72ffaaSAndy Whitcroftmy $check = 0;
292ac73b4fSJoe Perchesmy $check_orig = 0;
308905a67cSAndy Whitcroftmy $summary = 1;
318905a67cSAndy Whitcroftmy $mailback = 0;
3213214adfSAndy Whitcroftmy $summary_file = 0;
33000d1cc1SJoe Perchesmy $show_types = 0;
343705ce5bSJoe Perchesmy $fix = 0;
359624b8d6SJoe Perchesmy $fix_inplace = 0;
366c72ffaaSAndy Whitcroftmy $root;
37c2fdda0dSAndy Whitcroftmy %debug;
383445686aSJoe Perchesmy %camelcase = ();
3991bfe484SJoe Perchesmy %use_type = ();
4091bfe484SJoe Perchesmy @use = ();
4191bfe484SJoe Perchesmy %ignore_type = ();
42000d1cc1SJoe Perchesmy @ignore = ();
4377f5b10aSHannes Edermy $help = 0;
44000d1cc1SJoe Perchesmy $configuration_file = ".checkpatch.conf";
456cd7f386SJoe Perchesmy $max_line_length = 80;
46d62a201fSDave Hansenmy $ignore_perl_version = 0;
47d62a201fSDave Hansenmy $minimum_perl_version = 5.10.0;
4856193274SVadim Bendeburymy $min_conf_desc_length = 4;
4966b47b4aSKees Cookmy $spelling_file = "$D/spelling.txt";
5077f5b10aSHannes Eder
5177f5b10aSHannes Edersub help {
5277f5b10aSHannes Eder	my ($exitcode) = @_;
5377f5b10aSHannes Eder
5477f5b10aSHannes Eder	print << "EOM";
5577f5b10aSHannes EderUsage: $P [OPTION]... [FILE]...
5677f5b10aSHannes EderVersion: $V
5777f5b10aSHannes Eder
5877f5b10aSHannes EderOptions:
5977f5b10aSHannes Eder  -q, --quiet                quiet
6077f5b10aSHannes Eder  --no-tree                  run without a kernel tree
6177f5b10aSHannes Eder  --no-signoff               do not check for 'Signed-off-by' line
6277f5b10aSHannes Eder  --patch                    treat FILE as patchfile (default)
6377f5b10aSHannes Eder  --emacs                    emacs compile window format
6477f5b10aSHannes Eder  --terse                    one line per report
6577f5b10aSHannes Eder  -f, --file                 treat FILE as regular source file
6677f5b10aSHannes Eder  --subjective, --strict     enable more subjective tests
6791bfe484SJoe Perches  --types TYPE(,TYPE2...)    show only these comma separated message types
68000d1cc1SJoe Perches  --ignore TYPE(,TYPE2...)   ignore various comma separated message types
696cd7f386SJoe Perches  --max-line-length=n        set the maximum line length, if exceeded, warn
7056193274SVadim Bendebury  --min-conf-desc-length=n   set the min description length, if shorter, warn
71000d1cc1SJoe Perches  --show-types               show the message "types" in the output
7277f5b10aSHannes Eder  --root=PATH                PATH to the kernel tree root
7377f5b10aSHannes Eder  --no-summary               suppress the per-file summary
7477f5b10aSHannes Eder  --mailback                 only produce a report in case of warnings/errors
7577f5b10aSHannes Eder  --summary-file             include the filename in summary
7677f5b10aSHannes Eder  --debug KEY=[0|1]          turn on/off debugging of KEY, where KEY is one of
7777f5b10aSHannes Eder                             'values', 'possible', 'type', and 'attr' (default
7877f5b10aSHannes Eder                             is all off)
7977f5b10aSHannes Eder  --test-only=WORD           report only warnings/errors containing WORD
8077f5b10aSHannes Eder                             literally
813705ce5bSJoe Perches  --fix                      EXPERIMENTAL - may create horrible results
823705ce5bSJoe Perches                             If correctable single-line errors exist, create
833705ce5bSJoe Perches                             "<inputfile>.EXPERIMENTAL-checkpatch-fixes"
843705ce5bSJoe Perches                             with potential errors corrected to the preferred
853705ce5bSJoe Perches                             checkpatch style
869624b8d6SJoe Perches  --fix-inplace              EXPERIMENTAL - may create horrible results
879624b8d6SJoe Perches                             Is the same as --fix, but overwrites the input
889624b8d6SJoe Perches                             file.  It's your fault if there's no backup or git
89d62a201fSDave Hansen  --ignore-perl-version      override checking of perl version.  expect
90d62a201fSDave Hansen                             runtime errors.
9177f5b10aSHannes Eder  -h, --help, --version      display this help and exit
9277f5b10aSHannes Eder
9377f5b10aSHannes EderWhen FILE is - read standard input.
9477f5b10aSHannes EderEOM
9577f5b10aSHannes Eder
9677f5b10aSHannes Eder	exit($exitcode);
9777f5b10aSHannes Eder}
9877f5b10aSHannes Eder
99000d1cc1SJoe Perchesmy $conf = which_conf($configuration_file);
100000d1cc1SJoe Perchesif (-f $conf) {
101000d1cc1SJoe Perches	my @conf_args;
102000d1cc1SJoe Perches	open(my $conffile, '<', "$conf")
103000d1cc1SJoe Perches	    or warn "$P: Can't find a readable $configuration_file file $!\n";
104000d1cc1SJoe Perches
105000d1cc1SJoe Perches	while (<$conffile>) {
106000d1cc1SJoe Perches		my $line = $_;
107000d1cc1SJoe Perches
108000d1cc1SJoe Perches		$line =~ s/\s*\n?$//g;
109000d1cc1SJoe Perches		$line =~ s/^\s*//g;
110000d1cc1SJoe Perches		$line =~ s/\s+/ /g;
111000d1cc1SJoe Perches
112000d1cc1SJoe Perches		next if ($line =~ m/^\s*#/);
113000d1cc1SJoe Perches		next if ($line =~ m/^\s*$/);
114000d1cc1SJoe Perches
115000d1cc1SJoe Perches		my @words = split(" ", $line);
116000d1cc1SJoe Perches		foreach my $word (@words) {
117000d1cc1SJoe Perches			last if ($word =~ m/^#/);
118000d1cc1SJoe Perches			push (@conf_args, $word);
119000d1cc1SJoe Perches		}
120000d1cc1SJoe Perches	}
121000d1cc1SJoe Perches	close($conffile);
122000d1cc1SJoe Perches	unshift(@ARGV, @conf_args) if @conf_args;
123000d1cc1SJoe Perches}
124000d1cc1SJoe Perches
1250a920b5bSAndy WhitcroftGetOptions(
1266c72ffaaSAndy Whitcroft	'q|quiet+'	=> \$quiet,
1270a920b5bSAndy Whitcroft	'tree!'		=> \$tree,
1280a920b5bSAndy Whitcroft	'signoff!'	=> \$chk_signoff,
1290a920b5bSAndy Whitcroft	'patch!'	=> \$chk_patch,
1306c72ffaaSAndy Whitcroft	'emacs!'	=> \$emacs,
1318905a67cSAndy Whitcroft	'terse!'	=> \$terse,
13277f5b10aSHannes Eder	'f|file!'	=> \$file,
1336c72ffaaSAndy Whitcroft	'subjective!'	=> \$check,
1346c72ffaaSAndy Whitcroft	'strict!'	=> \$check,
135000d1cc1SJoe Perches	'ignore=s'	=> \@ignore,
13691bfe484SJoe Perches	'types=s'	=> \@use,
137000d1cc1SJoe Perches	'show-types!'	=> \$show_types,
1386cd7f386SJoe Perches	'max-line-length=i' => \$max_line_length,
13956193274SVadim Bendebury	'min-conf-desc-length=i' => \$min_conf_desc_length,
1406c72ffaaSAndy Whitcroft	'root=s'	=> \$root,
1418905a67cSAndy Whitcroft	'summary!'	=> \$summary,
1428905a67cSAndy Whitcroft	'mailback!'	=> \$mailback,
14313214adfSAndy Whitcroft	'summary-file!'	=> \$summary_file,
1443705ce5bSJoe Perches	'fix!'		=> \$fix,
1459624b8d6SJoe Perches	'fix-inplace!'	=> \$fix_inplace,
146d62a201fSDave Hansen	'ignore-perl-version!' => \$ignore_perl_version,
147c2fdda0dSAndy Whitcroft	'debug=s'	=> \%debug,
148773647a0SAndy Whitcroft	'test-only=s'	=> \$tst_only,
14977f5b10aSHannes Eder	'h|help'	=> \$help,
15077f5b10aSHannes Eder	'version'	=> \$help
15177f5b10aSHannes Eder) or help(1);
15277f5b10aSHannes Eder
15377f5b10aSHannes Ederhelp(0) if ($help);
1540a920b5bSAndy Whitcroft
1559624b8d6SJoe Perches$fix = 1 if ($fix_inplace);
1562ac73b4fSJoe Perches$check_orig = $check;
1579624b8d6SJoe Perches
1580a920b5bSAndy Whitcroftmy $exit = 0;
1590a920b5bSAndy Whitcroft
160d62a201fSDave Hansenif ($^V && $^V lt $minimum_perl_version) {
161d62a201fSDave Hansen	printf "$P: requires at least perl version %vd\n", $minimum_perl_version;
162d62a201fSDave Hansen	if (!$ignore_perl_version) {
163d62a201fSDave Hansen		exit(1);
164d62a201fSDave Hansen	}
165d62a201fSDave Hansen}
166d62a201fSDave Hansen
1670a920b5bSAndy Whitcroftif ($#ARGV < 0) {
16877f5b10aSHannes Eder	print "$P: no input files\n";
1690a920b5bSAndy Whitcroft	exit(1);
1700a920b5bSAndy Whitcroft}
1710a920b5bSAndy Whitcroft
17291bfe484SJoe Perchessub hash_save_array_words {
17391bfe484SJoe Perches	my ($hashRef, $arrayRef) = @_;
17491bfe484SJoe Perches
17591bfe484SJoe Perches	my @array = split(/,/, join(',', @$arrayRef));
17691bfe484SJoe Perches	foreach my $word (@array) {
177000d1cc1SJoe Perches		$word =~ s/\s*\n?$//g;
178000d1cc1SJoe Perches		$word =~ s/^\s*//g;
179000d1cc1SJoe Perches		$word =~ s/\s+/ /g;
180000d1cc1SJoe Perches		$word =~ tr/[a-z]/[A-Z]/;
181000d1cc1SJoe Perches
182000d1cc1SJoe Perches		next if ($word =~ m/^\s*#/);
183000d1cc1SJoe Perches		next if ($word =~ m/^\s*$/);
184000d1cc1SJoe Perches
18591bfe484SJoe Perches		$hashRef->{$word}++;
186000d1cc1SJoe Perches	}
18791bfe484SJoe Perches}
18891bfe484SJoe Perches
18991bfe484SJoe Perchessub hash_show_words {
19091bfe484SJoe Perches	my ($hashRef, $prefix) = @_;
19191bfe484SJoe Perches
19258cb3cf6SJoe Perches	if ($quiet == 0 && keys %$hashRef) {
19391bfe484SJoe Perches		print "NOTE: $prefix message types:";
19458cb3cf6SJoe Perches		foreach my $word (sort keys %$hashRef) {
19591bfe484SJoe Perches			print " $word";
19691bfe484SJoe Perches		}
19791bfe484SJoe Perches		print "\n\n";
19891bfe484SJoe Perches	}
19991bfe484SJoe Perches}
20091bfe484SJoe Perches
20191bfe484SJoe Percheshash_save_array_words(\%ignore_type, \@ignore);
20291bfe484SJoe Percheshash_save_array_words(\%use_type, \@use);
203000d1cc1SJoe Perches
204c2fdda0dSAndy Whitcroftmy $dbg_values = 0;
205c2fdda0dSAndy Whitcroftmy $dbg_possible = 0;
2067429c690SAndy Whitcroftmy $dbg_type = 0;
207a1ef277eSAndy Whitcroftmy $dbg_attr = 0;
208c2fdda0dSAndy Whitcroftfor my $key (keys %debug) {
20921caa13cSAndy Whitcroft	## no critic
21021caa13cSAndy Whitcroft	eval "\${dbg_$key} = '$debug{$key}';";
21121caa13cSAndy Whitcroft	die "$@" if ($@);
212c2fdda0dSAndy Whitcroft}
213c2fdda0dSAndy Whitcroft
214d2c0a235SAndy Whitcroftmy $rpt_cleaners = 0;
215d2c0a235SAndy Whitcroft
2168905a67cSAndy Whitcroftif ($terse) {
2178905a67cSAndy Whitcroft	$emacs = 1;
2188905a67cSAndy Whitcroft	$quiet++;
2198905a67cSAndy Whitcroft}
2208905a67cSAndy Whitcroft
2216c72ffaaSAndy Whitcroftif ($tree) {
2226c72ffaaSAndy Whitcroft	if (defined $root) {
2236c72ffaaSAndy Whitcroft		if (!top_of_kernel_tree($root)) {
2246c72ffaaSAndy Whitcroft			die "$P: $root: --root does not point at a valid tree\n";
2256c72ffaaSAndy Whitcroft		}
2266c72ffaaSAndy Whitcroft	} else {
2276c72ffaaSAndy Whitcroft		if (top_of_kernel_tree('.')) {
2286c72ffaaSAndy Whitcroft			$root = '.';
2296c72ffaaSAndy Whitcroft		} elsif ($0 =~ m@(.*)/scripts/[^/]*$@ &&
2306c72ffaaSAndy Whitcroft						top_of_kernel_tree($1)) {
2316c72ffaaSAndy Whitcroft			$root = $1;
2326c72ffaaSAndy Whitcroft		}
2336c72ffaaSAndy Whitcroft	}
2346c72ffaaSAndy Whitcroft
2356c72ffaaSAndy Whitcroft	if (!defined $root) {
2360a920b5bSAndy Whitcroft		print "Must be run from the top-level dir. of a kernel tree\n";
2370a920b5bSAndy Whitcroft		exit(2);
2380a920b5bSAndy Whitcroft	}
2396c72ffaaSAndy Whitcroft}
2406c72ffaaSAndy Whitcroft
2416c72ffaaSAndy Whitcroftmy $emitted_corrupt = 0;
2426c72ffaaSAndy Whitcroft
2432ceb532bSAndy Whitcroftour $Ident	= qr{
2442ceb532bSAndy Whitcroft			[A-Za-z_][A-Za-z\d_]*
2452ceb532bSAndy Whitcroft			(?:\s*\#\#\s*[A-Za-z_][A-Za-z\d_]*)*
2462ceb532bSAndy Whitcroft		}x;
2476c72ffaaSAndy Whitcroftour $Storage	= qr{extern|static|asmlinkage};
2486c72ffaaSAndy Whitcroftour $Sparse	= qr{
2496c72ffaaSAndy Whitcroft			__user|
2506c72ffaaSAndy Whitcroft			__kernel|
2516c72ffaaSAndy Whitcroft			__force|
2526c72ffaaSAndy Whitcroft			__iomem|
2536c72ffaaSAndy Whitcroft			__must_check|
2546c72ffaaSAndy Whitcroft			__init_refok|
255417495edSAndy Whitcroft			__kprobes|
256165e72a6SSven Eckelmann			__ref|
257165e72a6SSven Eckelmann			__rcu
2586c72ffaaSAndy Whitcroft		}x;
259e970b884SJoe Perchesour $InitAttributePrefix = qr{__(?:mem|cpu|dev|net_|)};
260e970b884SJoe Perchesour $InitAttributeData = qr{$InitAttributePrefix(?:initdata\b)};
261e970b884SJoe Perchesour $InitAttributeConst = qr{$InitAttributePrefix(?:initconst\b)};
262e970b884SJoe Perchesour $InitAttributeInit = qr{$InitAttributePrefix(?:init\b)};
263e970b884SJoe Perchesour $InitAttribute = qr{$InitAttributeData|$InitAttributeConst|$InitAttributeInit};
2648716de38SJoe Perches
26552131292SWolfram Sang# Notes to $Attribute:
26652131292SWolfram Sang# We need \b after 'init' otherwise 'initconst' will cause a false positive in a check
2676c72ffaaSAndy Whitcroftour $Attribute	= qr{
2686c72ffaaSAndy Whitcroft			const|
26903f1df7dSJoe Perches			__percpu|
27003f1df7dSJoe Perches			__nocast|
27103f1df7dSJoe Perches			__safe|
27203f1df7dSJoe Perches			__bitwise__|
27303f1df7dSJoe Perches			__packed__|
27403f1df7dSJoe Perches			__packed2__|
27503f1df7dSJoe Perches			__naked|
27603f1df7dSJoe Perches			__maybe_unused|
27703f1df7dSJoe Perches			__always_unused|
27803f1df7dSJoe Perches			__noreturn|
27903f1df7dSJoe Perches			__used|
28003f1df7dSJoe Perches			__cold|
28103f1df7dSJoe Perches			__noclone|
28203f1df7dSJoe Perches			__deprecated|
2836c72ffaaSAndy Whitcroft			__read_mostly|
2846c72ffaaSAndy Whitcroft			__kprobes|
2858716de38SJoe Perches			$InitAttribute|
28624e1d81aSAndy Whitcroft			____cacheline_aligned|
28724e1d81aSAndy Whitcroft			____cacheline_aligned_in_smp|
2885fe3af11SAndy Whitcroft			____cacheline_internodealigned_in_smp|
2895fe3af11SAndy Whitcroft			__weak
2906c72ffaaSAndy Whitcroft		  }x;
291c45dcabdSAndy Whitcroftour $Modifier;
29291cb5195SJoe Perchesour $Inline	= qr{inline|__always_inline|noinline|__inline|__inline__};
2936c72ffaaSAndy Whitcroftour $Member	= qr{->$Ident|\.$Ident|\[[^]]*\]};
2946c72ffaaSAndy Whitcroftour $Lval	= qr{$Ident(?:$Member)*};
2956c72ffaaSAndy Whitcroft
29695e2c602SJoe Perchesour $Int_type	= qr{(?i)llu|ull|ll|lu|ul|l|u};
29795e2c602SJoe Perchesour $Binary	= qr{(?i)0b[01]+$Int_type?};
29895e2c602SJoe Perchesour $Hex	= qr{(?i)0x[0-9a-f]+$Int_type?};
29995e2c602SJoe Perchesour $Int	= qr{[0-9]+$Int_type?};
3002435880fSJoe Perchesour $Octal	= qr{0[0-7]+$Int_type?};
301326b1ffcSJoe Perchesour $Float_hex	= qr{(?i)0x[0-9a-f]+p-?[0-9]+[fl]?};
302326b1ffcSJoe Perchesour $Float_dec	= qr{(?i)(?:[0-9]+\.[0-9]*|[0-9]*\.[0-9]+)(?:e-?[0-9]+)?[fl]?};
303326b1ffcSJoe Perchesour $Float_int	= qr{(?i)[0-9]+e-?[0-9]+[fl]?};
30474349bccSJoe Perchesour $Float	= qr{$Float_hex|$Float_dec|$Float_int};
3052435880fSJoe Perchesour $Constant	= qr{$Float|$Binary|$Octal|$Hex|$Int};
306326b1ffcSJoe Perchesour $Assignment	= qr{\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=};
307447432f3SJoe Perchesour $Compare    = qr{<=|>=|==|!=|<|(?<!-)>};
30823f780c9SJoe Perchesour $Arithmetic = qr{\+|-|\*|\/|%};
3096c72ffaaSAndy Whitcroftour $Operators	= qr{
3106c72ffaaSAndy Whitcroft			<=|>=|==|!=|
3116c72ffaaSAndy Whitcroft			=>|->|<<|>>|<|>|!|~|
31223f780c9SJoe Perches			&&|\|\||,|\^|\+\+|--|&|\||$Arithmetic
3136c72ffaaSAndy Whitcroft		  }x;
3146c72ffaaSAndy Whitcroft
31591cb5195SJoe Perchesour $c90_Keywords = qr{do|for|while|if|else|return|goto|continue|switch|default|case|break}x;
31691cb5195SJoe Perches
3178905a67cSAndy Whitcroftour $NonptrType;
3181813087dSJoe Perchesour $NonptrTypeMisordered;
3198716de38SJoe Perchesour $NonptrTypeWithAttr;
3208905a67cSAndy Whitcroftour $Type;
3211813087dSJoe Perchesour $TypeMisordered;
3228905a67cSAndy Whitcroftour $Declare;
3231813087dSJoe Perchesour $DeclareMisordered;
3248905a67cSAndy Whitcroft
32515662b3eSJoe Perchesour $NON_ASCII_UTF8	= qr{
32615662b3eSJoe Perches	[\xC2-\xDF][\x80-\xBF]               # non-overlong 2-byte
327171ae1a4SAndy Whitcroft	|  \xE0[\xA0-\xBF][\x80-\xBF]        # excluding overlongs
328171ae1a4SAndy Whitcroft	| [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2}  # straight 3-byte
329171ae1a4SAndy Whitcroft	|  \xED[\x80-\x9F][\x80-\xBF]        # excluding surrogates
330171ae1a4SAndy Whitcroft	|  \xF0[\x90-\xBF][\x80-\xBF]{2}     # planes 1-3
331171ae1a4SAndy Whitcroft	| [\xF1-\xF3][\x80-\xBF]{3}          # planes 4-15
332171ae1a4SAndy Whitcroft	|  \xF4[\x80-\x8F][\x80-\xBF]{2}     # plane 16
333171ae1a4SAndy Whitcroft}x;
334171ae1a4SAndy Whitcroft
33515662b3eSJoe Perchesour $UTF8	= qr{
33615662b3eSJoe Perches	[\x09\x0A\x0D\x20-\x7E]              # ASCII
33715662b3eSJoe Perches	| $NON_ASCII_UTF8
33815662b3eSJoe Perches}x;
33915662b3eSJoe Perches
3408ed22cadSAndy Whitcroftour $typeTypedefs = qr{(?x:
341fb9e9096SAndy Whitcroft	(?:__)?(?:u|s|be|le)(?:8|16|32|64)|
3428ed22cadSAndy Whitcroft	atomic_t
3438ed22cadSAndy Whitcroft)};
3448ed22cadSAndy Whitcroft
345691e669bSJoe Perchesour $logFunctions = qr{(?x:
3466e60c02eSJoe Perches	printk(?:_ratelimited|_once|)|
3477d0b6594SJacob Keller	(?:[a-z0-9]+_){1,2}(?:printk|emerg|alert|crit|err|warning|warn|notice|info|debug|dbg|vdbg|devel|cont|WARN)(?:_ratelimited|_once|)|
3486e60c02eSJoe Perches	WARN(?:_RATELIMIT|_ONCE|)|
349b0531722SJoe Perches	panic|
35006668727SJoe Perches	MODULE_[A-Z_]+|
35106668727SJoe Perches	seq_vprintf|seq_printf|seq_puts
352691e669bSJoe Perches)};
353691e669bSJoe Perches
35420112475SJoe Perchesour $signature_tags = qr{(?xi:
35520112475SJoe Perches	Signed-off-by:|
35620112475SJoe Perches	Acked-by:|
35720112475SJoe Perches	Tested-by:|
35820112475SJoe Perches	Reviewed-by:|
35920112475SJoe Perches	Reported-by:|
3608543ae12SMugunthan V N	Suggested-by:|
36120112475SJoe Perches	To:|
36220112475SJoe Perches	Cc:
36320112475SJoe Perches)};
36420112475SJoe Perches
3651813087dSJoe Perchesour @typeListMisordered = (
3661813087dSJoe Perches	qr{char\s+(?:un)?signed},
3671813087dSJoe Perches	qr{int\s+(?:(?:un)?signed\s+)?short\s},
3681813087dSJoe Perches	qr{int\s+short(?:\s+(?:un)?signed)},
3691813087dSJoe Perches	qr{short\s+int(?:\s+(?:un)?signed)},
3701813087dSJoe Perches	qr{(?:un)?signed\s+int\s+short},
3711813087dSJoe Perches	qr{short\s+(?:un)?signed},
3721813087dSJoe Perches	qr{long\s+int\s+(?:un)?signed},
3731813087dSJoe Perches	qr{int\s+long\s+(?:un)?signed},
3741813087dSJoe Perches	qr{long\s+(?:un)?signed\s+int},
3751813087dSJoe Perches	qr{int\s+(?:un)?signed\s+long},
3761813087dSJoe Perches	qr{int\s+(?:un)?signed},
3771813087dSJoe Perches	qr{int\s+long\s+long\s+(?:un)?signed},
3781813087dSJoe Perches	qr{long\s+long\s+int\s+(?:un)?signed},
3791813087dSJoe Perches	qr{long\s+long\s+(?:un)?signed\s+int},
3801813087dSJoe Perches	qr{long\s+long\s+(?:un)?signed},
3811813087dSJoe Perches	qr{long\s+(?:un)?signed},
3821813087dSJoe Perches);
3831813087dSJoe Perches
3848905a67cSAndy Whitcroftour @typeList = (
3858905a67cSAndy Whitcroft	qr{void},
3860c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?char},
3870c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?short\s+int},
3880c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?short},
3890c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?int},
3900c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?long\s+int},
3910c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?long\s+long\s+int},
3920c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?long\s+long},
3930c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?long},
3940c773d9dSJoe Perches	qr{(?:un)?signed},
3958905a67cSAndy Whitcroft	qr{float},
3968905a67cSAndy Whitcroft	qr{double},
3978905a67cSAndy Whitcroft	qr{bool},
3988905a67cSAndy Whitcroft	qr{struct\s+$Ident},
3998905a67cSAndy Whitcroft	qr{union\s+$Ident},
4008905a67cSAndy Whitcroft	qr{enum\s+$Ident},
4018905a67cSAndy Whitcroft	qr{${Ident}_t},
4028905a67cSAndy Whitcroft	qr{${Ident}_handler},
4038905a67cSAndy Whitcroft	qr{${Ident}_handler_fn},
4041813087dSJoe Perches	@typeListMisordered,
4058905a67cSAndy Whitcroft);
4068716de38SJoe Perchesour @typeListWithAttr = (
4078716de38SJoe Perches	@typeList,
4088716de38SJoe Perches	qr{struct\s+$InitAttribute\s+$Ident},
4098716de38SJoe Perches	qr{union\s+$InitAttribute\s+$Ident},
4108716de38SJoe Perches);
4118716de38SJoe Perches
412c45dcabdSAndy Whitcroftour @modifierList = (
413c45dcabdSAndy Whitcroft	qr{fastcall},
414c45dcabdSAndy Whitcroft);
4158905a67cSAndy Whitcroft
4162435880fSJoe Perchesour @mode_permission_funcs = (
4172435880fSJoe Perches	["module_param", 3],
4182435880fSJoe Perches	["module_param_(?:array|named|string)", 4],
4192435880fSJoe Perches	["module_param_array_named", 5],
4202435880fSJoe Perches	["debugfs_create_(?:file|u8|u16|u32|u64|x8|x16|x32|x64|size_t|atomic_t|bool|blob|regset32|u32_array)", 2],
4212435880fSJoe Perches	["proc_create(?:_data|)", 2],
4222435880fSJoe Perches	["(?:CLASS|DEVICE|SENSOR)_ATTR", 2],
4232435880fSJoe Perches);
4242435880fSJoe Perches
425515a235eSJoe Perches#Create a search pattern for all these functions to speed up a loop below
426515a235eSJoe Perchesour $mode_perms_search = "";
427515a235eSJoe Perchesforeach my $entry (@mode_permission_funcs) {
428515a235eSJoe Perches	$mode_perms_search .= '|' if ($mode_perms_search ne "");
429515a235eSJoe Perches	$mode_perms_search .= $entry->[0];
430515a235eSJoe Perches}
431515a235eSJoe Perches
4327840a94cSWolfram Sangour $allowed_asm_includes = qr{(?x:
4337840a94cSWolfram Sang	irq|
434cdcee686SSergey Ryazanov	memory|
435cdcee686SSergey Ryazanov	time|
436cdcee686SSergey Ryazanov	reboot
4377840a94cSWolfram Sang)};
4387840a94cSWolfram Sang# memory.h: ARM has a custom one
4397840a94cSWolfram Sang
44066b47b4aSKees Cook# Load common spelling mistakes and build regular expression list.
44166b47b4aSKees Cookmy $misspellings;
44266b47b4aSKees Cookmy %spelling_fix;
44336061e38SJoe Perches
44436061e38SJoe Perchesif (open(my $spelling, '<', $spelling_file)) {
44536061e38SJoe Perches	my @spelling_list;
44666b47b4aSKees Cook	while (<$spelling>) {
44766b47b4aSKees Cook		my $line = $_;
44866b47b4aSKees Cook
44966b47b4aSKees Cook		$line =~ s/\s*\n?$//g;
45066b47b4aSKees Cook		$line =~ s/^\s*//g;
45166b47b4aSKees Cook
45266b47b4aSKees Cook		next if ($line =~ m/^\s*#/);
45366b47b4aSKees Cook		next if ($line =~ m/^\s*$/);
45466b47b4aSKees Cook
45566b47b4aSKees Cook		my ($suspect, $fix) = split(/\|\|/, $line);
45666b47b4aSKees Cook
45766b47b4aSKees Cook		push(@spelling_list, $suspect);
45866b47b4aSKees Cook		$spelling_fix{$suspect} = $fix;
45966b47b4aSKees Cook	}
46066b47b4aSKees Cook	close($spelling);
46166b47b4aSKees Cook	$misspellings = join("|", @spelling_list);
46236061e38SJoe Perches} else {
46336061e38SJoe Perches	warn "No typos will be found - file '$spelling_file': $!\n";
46436061e38SJoe Perches}
46566b47b4aSKees Cook
4668905a67cSAndy Whitcroftsub build_types {
467d2172eb5SAndy Whitcroft	my $mods = "(?x:  \n" . join("|\n  ", @modifierList) . "\n)";
468d2172eb5SAndy Whitcroft	my $all = "(?x:  \n" . join("|\n  ", @typeList) . "\n)";
4691813087dSJoe Perches	my $Misordered = "(?x:  \n" . join("|\n  ", @typeListMisordered) . "\n)";
4708716de38SJoe Perches	my $allWithAttr = "(?x:  \n" . join("|\n  ", @typeListWithAttr) . "\n)";
471c8cb2ca3SAndy Whitcroft	$Modifier	= qr{(?:$Attribute|$Sparse|$mods)};
4728905a67cSAndy Whitcroft	$NonptrType	= qr{
473d2172eb5SAndy Whitcroft			(?:$Modifier\s+|const\s+)*
474cf655043SAndy Whitcroft			(?:
4756b48db24SAndy Whitcroft				(?:typeof|__typeof__)\s*\([^\)]*\)|
4768ed22cadSAndy Whitcroft				(?:$typeTypedefs\b)|
477c45dcabdSAndy Whitcroft				(?:${all}\b)
478cf655043SAndy Whitcroft			)
479c8cb2ca3SAndy Whitcroft			(?:\s+$Modifier|\s+const)*
4808905a67cSAndy Whitcroft		  }x;
4811813087dSJoe Perches	$NonptrTypeMisordered	= qr{
4821813087dSJoe Perches			(?:$Modifier\s+|const\s+)*
4831813087dSJoe Perches			(?:
4841813087dSJoe Perches				(?:${Misordered}\b)
4851813087dSJoe Perches			)
4861813087dSJoe Perches			(?:\s+$Modifier|\s+const)*
4871813087dSJoe Perches		  }x;
4888716de38SJoe Perches	$NonptrTypeWithAttr	= qr{
4898716de38SJoe Perches			(?:$Modifier\s+|const\s+)*
4908716de38SJoe Perches			(?:
4918716de38SJoe Perches				(?:typeof|__typeof__)\s*\([^\)]*\)|
4928716de38SJoe Perches				(?:$typeTypedefs\b)|
4938716de38SJoe Perches				(?:${allWithAttr}\b)
4948716de38SJoe Perches			)
4958716de38SJoe Perches			(?:\s+$Modifier|\s+const)*
4968716de38SJoe Perches		  }x;
4978905a67cSAndy Whitcroft	$Type	= qr{
498c45dcabdSAndy Whitcroft			$NonptrType
4991574a29fSJoe Perches			(?:(?:\s|\*|\[\])+\s*const|(?:\s|\*\s*(?:const\s*)?|\[\])+|(?:\s*\[\s*\])+)?
500c8cb2ca3SAndy Whitcroft			(?:\s+$Inline|\s+$Modifier)*
5018905a67cSAndy Whitcroft		  }x;
5021813087dSJoe Perches	$TypeMisordered	= qr{
5031813087dSJoe Perches			$NonptrTypeMisordered
5041813087dSJoe Perches			(?:(?:\s|\*|\[\])+\s*const|(?:\s|\*\s*(?:const\s*)?|\[\])+|(?:\s*\[\s*\])+)?
5051813087dSJoe Perches			(?:\s+$Inline|\s+$Modifier)*
5061813087dSJoe Perches		  }x;
50791cb5195SJoe Perches	$Declare	= qr{(?:$Storage\s+(?:$Inline\s+)?)?$Type};
5081813087dSJoe Perches	$DeclareMisordered	= qr{(?:$Storage\s+(?:$Inline\s+)?)?$TypeMisordered};
5098905a67cSAndy Whitcroft}
5108905a67cSAndy Whitcroftbuild_types();
5116c72ffaaSAndy Whitcroft
5127d2367afSJoe Perchesour $Typecast	= qr{\s*(\(\s*$NonptrType\s*\)){0,1}\s*};
513d1fe9c09SJoe Perches
514d1fe9c09SJoe Perches# Using $balanced_parens, $LvalOrFunc, or $FuncArg
515d1fe9c09SJoe Perches# requires at least perl version v5.10.0
516d1fe9c09SJoe Perches# Any use must be runtime checked with $^V
517d1fe9c09SJoe Perches
518d1fe9c09SJoe Perchesour $balanced_parens = qr/(\((?:[^\(\)]++|(?-1))*\))/;
5192435880fSJoe Perchesour $LvalOrFunc	= qr{((?:[\&\*]\s*)?$Lval)\s*($balanced_parens{0,1})\s*};
520d7c76ba7SJoe Perchesour $FuncArg = qr{$Typecast{0,1}($LvalOrFunc|$Constant)};
5217d2367afSJoe Perches
522f8422308SJoe Perchesour $declaration_macros = qr{(?x:
523f8422308SJoe Perches	(?:$Storage\s+)?(?:[A-Z_][A-Z0-9]*_){0,2}(?:DEFINE|DECLARE)(?:_[A-Z0-9]+){1,2}\s*\(|
524f8422308SJoe Perches	(?:$Storage\s+)?LIST_HEAD\s*\(|
525f8422308SJoe Perches	(?:$Storage\s+)?${Type}\s+uninitialized_var\s*\(
526f8422308SJoe Perches)};
527f8422308SJoe Perches
5287d2367afSJoe Perchessub deparenthesize {
5297d2367afSJoe Perches	my ($string) = @_;
5307d2367afSJoe Perches	return "" if (!defined($string));
5315b9553abSJoe Perches
5325b9553abSJoe Perches	while ($string =~ /^\s*\(.*\)\s*$/) {
5335b9553abSJoe Perches		$string =~ s@^\s*\(\s*@@;
5345b9553abSJoe Perches		$string =~ s@\s*\)\s*$@@;
5355b9553abSJoe Perches	}
5365b9553abSJoe Perches
5377d2367afSJoe Perches	$string =~ s@\s+@ @g;
5385b9553abSJoe Perches
5397d2367afSJoe Perches	return $string;
5407d2367afSJoe Perches}
5417d2367afSJoe Perches
5423445686aSJoe Perchessub seed_camelcase_file {
5433445686aSJoe Perches	my ($file) = @_;
5443445686aSJoe Perches
5453445686aSJoe Perches	return if (!(-f $file));
5463445686aSJoe Perches
5473445686aSJoe Perches	local $/;
5483445686aSJoe Perches
5493445686aSJoe Perches	open(my $include_file, '<', "$file")
5503445686aSJoe Perches	    or warn "$P: Can't read '$file' $!\n";
5513445686aSJoe Perches	my $text = <$include_file>;
5523445686aSJoe Perches	close($include_file);
5533445686aSJoe Perches
5543445686aSJoe Perches	my @lines = split('\n', $text);
5553445686aSJoe Perches
5563445686aSJoe Perches	foreach my $line (@lines) {
5573445686aSJoe Perches		next if ($line !~ /(?:[A-Z][a-z]|[a-z][A-Z])/);
5583445686aSJoe Perches		if ($line =~ /^[ \t]*(?:#[ \t]*define|typedef\s+$Type)\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)/) {
5593445686aSJoe Perches			$camelcase{$1} = 1;
56011ea516aSJoe Perches		} elsif ($line =~ /^\s*$Declare\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)\s*[\(\[,;]/) {
56111ea516aSJoe Perches			$camelcase{$1} = 1;
56211ea516aSJoe Perches		} elsif ($line =~ /^\s*(?:union|struct|enum)\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)\s*[;\{]/) {
5633445686aSJoe Perches			$camelcase{$1} = 1;
5643445686aSJoe Perches		}
5653445686aSJoe Perches	}
5663445686aSJoe Perches}
5673445686aSJoe Perches
5683445686aSJoe Perchesmy $camelcase_seeded = 0;
5693445686aSJoe Perchessub seed_camelcase_includes {
5703445686aSJoe Perches	return if ($camelcase_seeded);
5713445686aSJoe Perches
5723445686aSJoe Perches	my $files;
573c707a81dSJoe Perches	my $camelcase_cache = "";
574c707a81dSJoe Perches	my @include_files = ();
575c707a81dSJoe Perches
576c707a81dSJoe Perches	$camelcase_seeded = 1;
577351b2a1fSJoe Perches
5783645e328SRichard Genoud	if (-e ".git") {
579351b2a1fSJoe Perches		my $git_last_include_commit = `git log --no-merges --pretty=format:"%h%n" -1 -- include`;
580351b2a1fSJoe Perches		chomp $git_last_include_commit;
581c707a81dSJoe Perches		$camelcase_cache = ".checkpatch-camelcase.git.$git_last_include_commit";
582c707a81dSJoe Perches	} else {
583c707a81dSJoe Perches		my $last_mod_date = 0;
584c707a81dSJoe Perches		$files = `find $root/include -name "*.h"`;
585c707a81dSJoe Perches		@include_files = split('\n', $files);
586c707a81dSJoe Perches		foreach my $file (@include_files) {
587c707a81dSJoe Perches			my $date = POSIX::strftime("%Y%m%d%H%M",
588c707a81dSJoe Perches						   localtime((stat $file)[9]));
589c707a81dSJoe Perches			$last_mod_date = $date if ($last_mod_date < $date);
590c707a81dSJoe Perches		}
591c707a81dSJoe Perches		$camelcase_cache = ".checkpatch-camelcase.date.$last_mod_date";
592c707a81dSJoe Perches	}
593c707a81dSJoe Perches
594c707a81dSJoe Perches	if ($camelcase_cache ne "" && -f $camelcase_cache) {
595c707a81dSJoe Perches		open(my $camelcase_file, '<', "$camelcase_cache")
596c707a81dSJoe Perches		    or warn "$P: Can't read '$camelcase_cache' $!\n";
597351b2a1fSJoe Perches		while (<$camelcase_file>) {
598351b2a1fSJoe Perches			chomp;
599351b2a1fSJoe Perches			$camelcase{$_} = 1;
600351b2a1fSJoe Perches		}
601351b2a1fSJoe Perches		close($camelcase_file);
602351b2a1fSJoe Perches
603351b2a1fSJoe Perches		return;
604351b2a1fSJoe Perches	}
605c707a81dSJoe Perches
6063645e328SRichard Genoud	if (-e ".git") {
607c707a81dSJoe Perches		$files = `git ls-files "include/*.h"`;
608c707a81dSJoe Perches		@include_files = split('\n', $files);
6093445686aSJoe Perches	}
610c707a81dSJoe Perches
6113445686aSJoe Perches	foreach my $file (@include_files) {
6123445686aSJoe Perches		seed_camelcase_file($file);
6133445686aSJoe Perches	}
614351b2a1fSJoe Perches
615c707a81dSJoe Perches	if ($camelcase_cache ne "") {
616351b2a1fSJoe Perches		unlink glob ".checkpatch-camelcase.*";
617c707a81dSJoe Perches		open(my $camelcase_file, '>', "$camelcase_cache")
618c707a81dSJoe Perches		    or warn "$P: Can't write '$camelcase_cache' $!\n";
619351b2a1fSJoe Perches		foreach (sort { lc($a) cmp lc($b) } keys(%camelcase)) {
620351b2a1fSJoe Perches			print $camelcase_file ("$_\n");
621351b2a1fSJoe Perches		}
622351b2a1fSJoe Perches		close($camelcase_file);
623351b2a1fSJoe Perches	}
6243445686aSJoe Perches}
6253445686aSJoe Perches
626d311cd44SJoe Perchessub git_commit_info {
627d311cd44SJoe Perches	my ($commit, $id, $desc) = @_;
628d311cd44SJoe Perches
629d311cd44SJoe Perches	return ($id, $desc) if ((which("git") eq "") || !(-e ".git"));
630d311cd44SJoe Perches
631d311cd44SJoe Perches	my $output = `git log --no-color --format='%H %s' -1 $commit 2>&1`;
632d311cd44SJoe Perches	$output =~ s/^\s*//gm;
633d311cd44SJoe Perches	my @lines = split("\n", $output);
634d311cd44SJoe Perches
635d311cd44SJoe Perches	if ($lines[0] =~ /^error: short SHA1 $commit is ambiguous\./) {
636d311cd44SJoe Perches# Maybe one day convert this block of bash into something that returns
637d311cd44SJoe Perches# all matching commit ids, but it's very slow...
638d311cd44SJoe Perches#
639d311cd44SJoe Perches#		echo "checking commits $1..."
640d311cd44SJoe Perches#		git rev-list --remotes | grep -i "^$1" |
641d311cd44SJoe Perches#		while read line ; do
642d311cd44SJoe Perches#		    git log --format='%H %s' -1 $line |
643d311cd44SJoe Perches#		    echo "commit $(cut -c 1-12,41-)"
644d311cd44SJoe Perches#		done
645d311cd44SJoe Perches	} elsif ($lines[0] =~ /^fatal: ambiguous argument '$commit': unknown revision or path not in the working tree\./) {
646d311cd44SJoe Perches	} else {
647d311cd44SJoe Perches		$id = substr($lines[0], 0, 12);
648d311cd44SJoe Perches		$desc = substr($lines[0], 41);
649d311cd44SJoe Perches	}
650d311cd44SJoe Perches
651d311cd44SJoe Perches	return ($id, $desc);
652d311cd44SJoe Perches}
653d311cd44SJoe Perches
6546c72ffaaSAndy Whitcroft$chk_signoff = 0 if ($file);
6550a920b5bSAndy Whitcroft
65600df344fSAndy Whitcroftmy @rawlines = ();
657c2fdda0dSAndy Whitcroftmy @lines = ();
6583705ce5bSJoe Perchesmy @fixed = ();
659d752fcc8SJoe Perchesmy @fixed_inserted = ();
660d752fcc8SJoe Perchesmy @fixed_deleted = ();
661194f66fcSJoe Perchesmy $fixlinenr = -1;
662194f66fcSJoe Perches
663c2fdda0dSAndy Whitcroftmy $vname;
6646c72ffaaSAndy Whitcroftfor my $filename (@ARGV) {
66521caa13cSAndy Whitcroft	my $FILE;
6666c72ffaaSAndy Whitcroft	if ($file) {
66721caa13cSAndy Whitcroft		open($FILE, '-|', "diff -u /dev/null $filename") ||
6686c72ffaaSAndy Whitcroft			die "$P: $filename: diff failed - $!\n";
66921caa13cSAndy Whitcroft	} elsif ($filename eq '-') {
67021caa13cSAndy Whitcroft		open($FILE, '<&STDIN');
6716c72ffaaSAndy Whitcroft	} else {
67221caa13cSAndy Whitcroft		open($FILE, '<', "$filename") ||
6736c72ffaaSAndy Whitcroft			die "$P: $filename: open failed - $!\n";
6746c72ffaaSAndy Whitcroft	}
675c2fdda0dSAndy Whitcroft	if ($filename eq '-') {
676c2fdda0dSAndy Whitcroft		$vname = 'Your patch';
677c2fdda0dSAndy Whitcroft	} else {
678c2fdda0dSAndy Whitcroft		$vname = $filename;
679c2fdda0dSAndy Whitcroft	}
68021caa13cSAndy Whitcroft	while (<$FILE>) {
6810a920b5bSAndy Whitcroft		chomp;
68200df344fSAndy Whitcroft		push(@rawlines, $_);
6836c72ffaaSAndy Whitcroft	}
68421caa13cSAndy Whitcroft	close($FILE);
685c2fdda0dSAndy Whitcroft	if (!process($filename)) {
6860a920b5bSAndy Whitcroft		$exit = 1;
6870a920b5bSAndy Whitcroft	}
68800df344fSAndy Whitcroft	@rawlines = ();
68913214adfSAndy Whitcroft	@lines = ();
6903705ce5bSJoe Perches	@fixed = ();
691d752fcc8SJoe Perches	@fixed_inserted = ();
692d752fcc8SJoe Perches	@fixed_deleted = ();
693194f66fcSJoe Perches	$fixlinenr = -1;
6940a920b5bSAndy Whitcroft}
6950a920b5bSAndy Whitcroft
6960a920b5bSAndy Whitcroftexit($exit);
6970a920b5bSAndy Whitcroft
6980a920b5bSAndy Whitcroftsub top_of_kernel_tree {
6996c72ffaaSAndy Whitcroft	my ($root) = @_;
7006c72ffaaSAndy Whitcroft
7016c72ffaaSAndy Whitcroft	my @tree_check = (
7026c72ffaaSAndy Whitcroft		"COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
7036c72ffaaSAndy Whitcroft		"README", "Documentation", "arch", "include", "drivers",
7046c72ffaaSAndy Whitcroft		"fs", "init", "ipc", "kernel", "lib", "scripts",
7056c72ffaaSAndy Whitcroft	);
7066c72ffaaSAndy Whitcroft
7076c72ffaaSAndy Whitcroft	foreach my $check (@tree_check) {
7086c72ffaaSAndy Whitcroft		if (! -e $root . '/' . $check) {
7090a920b5bSAndy Whitcroft			return 0;
7100a920b5bSAndy Whitcroft		}
7116c72ffaaSAndy Whitcroft	}
7126c72ffaaSAndy Whitcroft	return 1;
7136c72ffaaSAndy Whitcroft}
7140a920b5bSAndy Whitcroft
71520112475SJoe Perchessub parse_email {
71620112475SJoe Perches	my ($formatted_email) = @_;
71720112475SJoe Perches
71820112475SJoe Perches	my $name = "";
71920112475SJoe Perches	my $address = "";
72020112475SJoe Perches	my $comment = "";
72120112475SJoe Perches
72220112475SJoe Perches	if ($formatted_email =~ /^(.*)<(\S+\@\S+)>(.*)$/) {
72320112475SJoe Perches		$name = $1;
72420112475SJoe Perches		$address = $2;
72520112475SJoe Perches		$comment = $3 if defined $3;
72620112475SJoe Perches	} elsif ($formatted_email =~ /^\s*<(\S+\@\S+)>(.*)$/) {
72720112475SJoe Perches		$address = $1;
72820112475SJoe Perches		$comment = $2 if defined $2;
72920112475SJoe Perches	} elsif ($formatted_email =~ /(\S+\@\S+)(.*)$/) {
73020112475SJoe Perches		$address = $1;
73120112475SJoe Perches		$comment = $2 if defined $2;
73220112475SJoe Perches		$formatted_email =~ s/$address.*$//;
73320112475SJoe Perches		$name = $formatted_email;
7343705ce5bSJoe Perches		$name = trim($name);
73520112475SJoe Perches		$name =~ s/^\"|\"$//g;
73620112475SJoe Perches		# If there's a name left after stripping spaces and
73720112475SJoe Perches		# leading quotes, and the address doesn't have both
73820112475SJoe Perches		# leading and trailing angle brackets, the address
73920112475SJoe Perches		# is invalid. ie:
74020112475SJoe Perches		#   "joe smith [email protected]" bad
74120112475SJoe Perches		#   "joe smith <[email protected]" bad
74220112475SJoe Perches		if ($name ne "" && $address !~ /^<[^>]+>$/) {
74320112475SJoe Perches			$name = "";
74420112475SJoe Perches			$address = "";
74520112475SJoe Perches			$comment = "";
74620112475SJoe Perches		}
74720112475SJoe Perches	}
74820112475SJoe Perches
7493705ce5bSJoe Perches	$name = trim($name);
75020112475SJoe Perches	$name =~ s/^\"|\"$//g;
7513705ce5bSJoe Perches	$address = trim($address);
75220112475SJoe Perches	$address =~ s/^\<|\>$//g;
75320112475SJoe Perches
75420112475SJoe Perches	if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
75520112475SJoe Perches		$name =~ s/(?<!\\)"/\\"/g; ##escape quotes
75620112475SJoe Perches		$name = "\"$name\"";
75720112475SJoe Perches	}
75820112475SJoe Perches
75920112475SJoe Perches	return ($name, $address, $comment);
76020112475SJoe Perches}
76120112475SJoe Perches
76220112475SJoe Perchessub format_email {
76320112475SJoe Perches	my ($name, $address) = @_;
76420112475SJoe Perches
76520112475SJoe Perches	my $formatted_email;
76620112475SJoe Perches
7673705ce5bSJoe Perches	$name = trim($name);
76820112475SJoe Perches	$name =~ s/^\"|\"$//g;
7693705ce5bSJoe Perches	$address = trim($address);
77020112475SJoe Perches
77120112475SJoe Perches	if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
77220112475SJoe Perches		$name =~ s/(?<!\\)"/\\"/g; ##escape quotes
77320112475SJoe Perches		$name = "\"$name\"";
77420112475SJoe Perches	}
77520112475SJoe Perches
77620112475SJoe Perches	if ("$name" eq "") {
77720112475SJoe Perches		$formatted_email = "$address";
77820112475SJoe Perches	} else {
77920112475SJoe Perches		$formatted_email = "$name <$address>";
78020112475SJoe Perches	}
78120112475SJoe Perches
78220112475SJoe Perches	return $formatted_email;
78320112475SJoe Perches}
78420112475SJoe Perches
785d311cd44SJoe Perchessub which {
786d311cd44SJoe Perches	my ($bin) = @_;
787d311cd44SJoe Perches
788d311cd44SJoe Perches	foreach my $path (split(/:/, $ENV{PATH})) {
789d311cd44SJoe Perches		if (-e "$path/$bin") {
790d311cd44SJoe Perches			return "$path/$bin";
791d311cd44SJoe Perches		}
792d311cd44SJoe Perches	}
793d311cd44SJoe Perches
794d311cd44SJoe Perches	return "";
795d311cd44SJoe Perches}
796d311cd44SJoe Perches
797000d1cc1SJoe Perchessub which_conf {
798000d1cc1SJoe Perches	my ($conf) = @_;
799000d1cc1SJoe Perches
800000d1cc1SJoe Perches	foreach my $path (split(/:/, ".:$ENV{HOME}:.scripts")) {
801000d1cc1SJoe Perches		if (-e "$path/$conf") {
802000d1cc1SJoe Perches			return "$path/$conf";
803000d1cc1SJoe Perches		}
804000d1cc1SJoe Perches	}
805000d1cc1SJoe Perches
806000d1cc1SJoe Perches	return "";
807000d1cc1SJoe Perches}
808000d1cc1SJoe Perches
8090a920b5bSAndy Whitcroftsub expand_tabs {
8100a920b5bSAndy Whitcroft	my ($str) = @_;
8110a920b5bSAndy Whitcroft
8120a920b5bSAndy Whitcroft	my $res = '';
8130a920b5bSAndy Whitcroft	my $n = 0;
8140a920b5bSAndy Whitcroft	for my $c (split(//, $str)) {
8150a920b5bSAndy Whitcroft		if ($c eq "\t") {
8160a920b5bSAndy Whitcroft			$res .= ' ';
8170a920b5bSAndy Whitcroft			$n++;
8180a920b5bSAndy Whitcroft			for (; ($n % 8) != 0; $n++) {
8190a920b5bSAndy Whitcroft				$res .= ' ';
8200a920b5bSAndy Whitcroft			}
8210a920b5bSAndy Whitcroft			next;
8220a920b5bSAndy Whitcroft		}
8230a920b5bSAndy Whitcroft		$res .= $c;
8240a920b5bSAndy Whitcroft		$n++;
8250a920b5bSAndy Whitcroft	}
8260a920b5bSAndy Whitcroft
8270a920b5bSAndy Whitcroft	return $res;
8280a920b5bSAndy Whitcroft}
8296c72ffaaSAndy Whitcroftsub copy_spacing {
830773647a0SAndy Whitcroft	(my $res = shift) =~ tr/\t/ /c;
8316c72ffaaSAndy Whitcroft	return $res;
8326c72ffaaSAndy Whitcroft}
8330a920b5bSAndy Whitcroft
8344a0df2efSAndy Whitcroftsub line_stats {
8354a0df2efSAndy Whitcroft	my ($line) = @_;
8364a0df2efSAndy Whitcroft
8374a0df2efSAndy Whitcroft	# Drop the diff line leader and expand tabs
8384a0df2efSAndy Whitcroft	$line =~ s/^.//;
8394a0df2efSAndy Whitcroft	$line = expand_tabs($line);
8404a0df2efSAndy Whitcroft
8414a0df2efSAndy Whitcroft	# Pick the indent from the front of the line.
8424a0df2efSAndy Whitcroft	my ($white) = ($line =~ /^(\s*)/);
8434a0df2efSAndy Whitcroft
8444a0df2efSAndy Whitcroft	return (length($line), length($white));
8454a0df2efSAndy Whitcroft}
8464a0df2efSAndy Whitcroft
847773647a0SAndy Whitcroftmy $sanitise_quote = '';
848773647a0SAndy Whitcroft
849773647a0SAndy Whitcroftsub sanitise_line_reset {
850773647a0SAndy Whitcroft	my ($in_comment) = @_;
851773647a0SAndy Whitcroft
852773647a0SAndy Whitcroft	if ($in_comment) {
853773647a0SAndy Whitcroft		$sanitise_quote = '*/';
854773647a0SAndy Whitcroft	} else {
855773647a0SAndy Whitcroft		$sanitise_quote = '';
856773647a0SAndy Whitcroft	}
857773647a0SAndy Whitcroft}
85800df344fSAndy Whitcroftsub sanitise_line {
85900df344fSAndy Whitcroft	my ($line) = @_;
86000df344fSAndy Whitcroft
86100df344fSAndy Whitcroft	my $res = '';
86200df344fSAndy Whitcroft	my $l = '';
86300df344fSAndy Whitcroft
864c2fdda0dSAndy Whitcroft	my $qlen = 0;
865773647a0SAndy Whitcroft	my $off = 0;
866773647a0SAndy Whitcroft	my $c;
86700df344fSAndy Whitcroft
868773647a0SAndy Whitcroft	# Always copy over the diff marker.
869773647a0SAndy Whitcroft	$res = substr($line, 0, 1);
870773647a0SAndy Whitcroft
871773647a0SAndy Whitcroft	for ($off = 1; $off < length($line); $off++) {
872773647a0SAndy Whitcroft		$c = substr($line, $off, 1);
873773647a0SAndy Whitcroft
874773647a0SAndy Whitcroft		# Comments we are wacking completly including the begin
875773647a0SAndy Whitcroft		# and end, all to $;.
876773647a0SAndy Whitcroft		if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
877773647a0SAndy Whitcroft			$sanitise_quote = '*/';
878773647a0SAndy Whitcroft
879773647a0SAndy Whitcroft			substr($res, $off, 2, "$;$;");
880773647a0SAndy Whitcroft			$off++;
88100df344fSAndy Whitcroft			next;
882773647a0SAndy Whitcroft		}
88381bc0e02SAndy Whitcroft		if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') {
884773647a0SAndy Whitcroft			$sanitise_quote = '';
885773647a0SAndy Whitcroft			substr($res, $off, 2, "$;$;");
886773647a0SAndy Whitcroft			$off++;
887773647a0SAndy Whitcroft			next;
888773647a0SAndy Whitcroft		}
889113f04a8SDaniel Walker		if ($sanitise_quote eq '' && substr($line, $off, 2) eq '//') {
890113f04a8SDaniel Walker			$sanitise_quote = '//';
891113f04a8SDaniel Walker
892113f04a8SDaniel Walker			substr($res, $off, 2, $sanitise_quote);
893113f04a8SDaniel Walker			$off++;
894113f04a8SDaniel Walker			next;
895113f04a8SDaniel Walker		}
896773647a0SAndy Whitcroft
897773647a0SAndy Whitcroft		# A \ in a string means ignore the next character.
898773647a0SAndy Whitcroft		if (($sanitise_quote eq "'" || $sanitise_quote eq '"') &&
899773647a0SAndy Whitcroft		    $c eq "\\") {
900773647a0SAndy Whitcroft			substr($res, $off, 2, 'XX');
901773647a0SAndy Whitcroft			$off++;
902773647a0SAndy Whitcroft			next;
903773647a0SAndy Whitcroft		}
904773647a0SAndy Whitcroft		# Regular quotes.
905773647a0SAndy Whitcroft		if ($c eq "'" || $c eq '"') {
906773647a0SAndy Whitcroft			if ($sanitise_quote eq '') {
907773647a0SAndy Whitcroft				$sanitise_quote = $c;
908773647a0SAndy Whitcroft
909773647a0SAndy Whitcroft				substr($res, $off, 1, $c);
910773647a0SAndy Whitcroft				next;
911773647a0SAndy Whitcroft			} elsif ($sanitise_quote eq $c) {
912773647a0SAndy Whitcroft				$sanitise_quote = '';
91300df344fSAndy Whitcroft			}
91400df344fSAndy Whitcroft		}
915773647a0SAndy Whitcroft
916fae17daeSAndy Whitcroft		#print "c<$c> SQ<$sanitise_quote>\n";
917773647a0SAndy Whitcroft		if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") {
918773647a0SAndy Whitcroft			substr($res, $off, 1, $;);
919113f04a8SDaniel Walker		} elsif ($off != 0 && $sanitise_quote eq '//' && $c ne "\t") {
920113f04a8SDaniel Walker			substr($res, $off, 1, $;);
921773647a0SAndy Whitcroft		} elsif ($off != 0 && $sanitise_quote && $c ne "\t") {
922773647a0SAndy Whitcroft			substr($res, $off, 1, 'X');
92300df344fSAndy Whitcroft		} else {
924773647a0SAndy Whitcroft			substr($res, $off, 1, $c);
92500df344fSAndy Whitcroft		}
926c2fdda0dSAndy Whitcroft	}
927c2fdda0dSAndy Whitcroft
928113f04a8SDaniel Walker	if ($sanitise_quote eq '//') {
929113f04a8SDaniel Walker		$sanitise_quote = '';
930113f04a8SDaniel Walker	}
931113f04a8SDaniel Walker
932c2fdda0dSAndy Whitcroft	# The pathname on a #include may be surrounded by '<' and '>'.
933c45dcabdSAndy Whitcroft	if ($res =~ /^.\s*\#\s*include\s+\<(.*)\>/) {
934c2fdda0dSAndy Whitcroft		my $clean = 'X' x length($1);
935c2fdda0dSAndy Whitcroft		$res =~ s@\<.*\>@<$clean>@;
936c2fdda0dSAndy Whitcroft
937c2fdda0dSAndy Whitcroft	# The whole of a #error is a string.
938c45dcabdSAndy Whitcroft	} elsif ($res =~ /^.\s*\#\s*(?:error|warning)\s+(.*)\b/) {
939c2fdda0dSAndy Whitcroft		my $clean = 'X' x length($1);
940c45dcabdSAndy Whitcroft		$res =~ s@(\#\s*(?:error|warning)\s+).*@$1$clean@;
941c2fdda0dSAndy Whitcroft	}
942c2fdda0dSAndy Whitcroft
94300df344fSAndy Whitcroft	return $res;
94400df344fSAndy Whitcroft}
94500df344fSAndy Whitcroft
946a6962d72SJoe Perchessub get_quoted_string {
947a6962d72SJoe Perches	my ($line, $rawline) = @_;
948a6962d72SJoe Perches
949a6962d72SJoe Perches	return "" if ($line !~ m/(\"[X]+\")/g);
950a6962d72SJoe Perches	return substr($rawline, $-[0], $+[0] - $-[0]);
951a6962d72SJoe Perches}
952a6962d72SJoe Perches
9538905a67cSAndy Whitcroftsub ctx_statement_block {
9548905a67cSAndy Whitcroft	my ($linenr, $remain, $off) = @_;
9558905a67cSAndy Whitcroft	my $line = $linenr - 1;
9568905a67cSAndy Whitcroft	my $blk = '';
9578905a67cSAndy Whitcroft	my $soff = $off;
9588905a67cSAndy Whitcroft	my $coff = $off - 1;
959773647a0SAndy Whitcroft	my $coff_set = 0;
9608905a67cSAndy Whitcroft
96113214adfSAndy Whitcroft	my $loff = 0;
96213214adfSAndy Whitcroft
9638905a67cSAndy Whitcroft	my $type = '';
9648905a67cSAndy Whitcroft	my $level = 0;
965a2750645SAndy Whitcroft	my @stack = ();
966cf655043SAndy Whitcroft	my $p;
9678905a67cSAndy Whitcroft	my $c;
9688905a67cSAndy Whitcroft	my $len = 0;
96913214adfSAndy Whitcroft
97013214adfSAndy Whitcroft	my $remainder;
9718905a67cSAndy Whitcroft	while (1) {
972a2750645SAndy Whitcroft		@stack = (['', 0]) if ($#stack == -1);
973a2750645SAndy Whitcroft
974773647a0SAndy Whitcroft		#warn "CSB: blk<$blk> remain<$remain>\n";
9758905a67cSAndy Whitcroft		# If we are about to drop off the end, pull in more
9768905a67cSAndy Whitcroft		# context.
9778905a67cSAndy Whitcroft		if ($off >= $len) {
9788905a67cSAndy Whitcroft			for (; $remain > 0; $line++) {
979dea33496SAndy Whitcroft				last if (!defined $lines[$line]);
980c2fdda0dSAndy Whitcroft				next if ($lines[$line] =~ /^-/);
9818905a67cSAndy Whitcroft				$remain--;
98213214adfSAndy Whitcroft				$loff = $len;
983c2fdda0dSAndy Whitcroft				$blk .= $lines[$line] . "\n";
9848905a67cSAndy Whitcroft				$len = length($blk);
9858905a67cSAndy Whitcroft				$line++;
9868905a67cSAndy Whitcroft				last;
9878905a67cSAndy Whitcroft			}
9888905a67cSAndy Whitcroft			# Bail if there is no further context.
9898905a67cSAndy Whitcroft			#warn "CSB: blk<$blk> off<$off> len<$len>\n";
99013214adfSAndy Whitcroft			if ($off >= $len) {
9918905a67cSAndy Whitcroft				last;
9928905a67cSAndy Whitcroft			}
993f74bd194SAndy Whitcroft			if ($level == 0 && substr($blk, $off) =~ /^.\s*#\s*define/) {
994f74bd194SAndy Whitcroft				$level++;
995f74bd194SAndy Whitcroft				$type = '#';
996f74bd194SAndy Whitcroft			}
9978905a67cSAndy Whitcroft		}
998cf655043SAndy Whitcroft		$p = $c;
9998905a67cSAndy Whitcroft		$c = substr($blk, $off, 1);
100013214adfSAndy Whitcroft		$remainder = substr($blk, $off);
10018905a67cSAndy Whitcroft
1002773647a0SAndy Whitcroft		#warn "CSB: c<$c> type<$type> level<$level> remainder<$remainder> coff_set<$coff_set>\n";
10034635f4fbSAndy Whitcroft
10044635f4fbSAndy Whitcroft		# Handle nested #if/#else.
10054635f4fbSAndy Whitcroft		if ($remainder =~ /^#\s*(?:ifndef|ifdef|if)\s/) {
10064635f4fbSAndy Whitcroft			push(@stack, [ $type, $level ]);
10074635f4fbSAndy Whitcroft		} elsif ($remainder =~ /^#\s*(?:else|elif)\b/) {
10084635f4fbSAndy Whitcroft			($type, $level) = @{$stack[$#stack - 1]};
10094635f4fbSAndy Whitcroft		} elsif ($remainder =~ /^#\s*endif\b/) {
10104635f4fbSAndy Whitcroft			($type, $level) = @{pop(@stack)};
10114635f4fbSAndy Whitcroft		}
10124635f4fbSAndy Whitcroft
10138905a67cSAndy Whitcroft		# Statement ends at the ';' or a close '}' at the
10148905a67cSAndy Whitcroft		# outermost level.
10158905a67cSAndy Whitcroft		if ($level == 0 && $c eq ';') {
10168905a67cSAndy Whitcroft			last;
10178905a67cSAndy Whitcroft		}
10188905a67cSAndy Whitcroft
101913214adfSAndy Whitcroft		# An else is really a conditional as long as its not else if
1020773647a0SAndy Whitcroft		if ($level == 0 && $coff_set == 0 &&
1021773647a0SAndy Whitcroft				(!defined($p) || $p =~ /(?:\s|\}|\+)/) &&
1022773647a0SAndy Whitcroft				$remainder =~ /^(else)(?:\s|{)/ &&
1023773647a0SAndy Whitcroft				$remainder !~ /^else\s+if\b/) {
1024773647a0SAndy Whitcroft			$coff = $off + length($1) - 1;
1025773647a0SAndy Whitcroft			$coff_set = 1;
1026773647a0SAndy Whitcroft			#warn "CSB: mark coff<$coff> soff<$soff> 1<$1>\n";
1027773647a0SAndy Whitcroft			#warn "[" . substr($blk, $soff, $coff - $soff + 1) . "]\n";
102813214adfSAndy Whitcroft		}
102913214adfSAndy Whitcroft
10308905a67cSAndy Whitcroft		if (($type eq '' || $type eq '(') && $c eq '(') {
10318905a67cSAndy Whitcroft			$level++;
10328905a67cSAndy Whitcroft			$type = '(';
10338905a67cSAndy Whitcroft		}
10348905a67cSAndy Whitcroft		if ($type eq '(' && $c eq ')') {
10358905a67cSAndy Whitcroft			$level--;
10368905a67cSAndy Whitcroft			$type = ($level != 0)? '(' : '';
10378905a67cSAndy Whitcroft
10388905a67cSAndy Whitcroft			if ($level == 0 && $coff < $soff) {
10398905a67cSAndy Whitcroft				$coff = $off;
1040773647a0SAndy Whitcroft				$coff_set = 1;
1041773647a0SAndy Whitcroft				#warn "CSB: mark coff<$coff>\n";
10428905a67cSAndy Whitcroft			}
10438905a67cSAndy Whitcroft		}
10448905a67cSAndy Whitcroft		if (($type eq '' || $type eq '{') && $c eq '{') {
10458905a67cSAndy Whitcroft			$level++;
10468905a67cSAndy Whitcroft			$type = '{';
10478905a67cSAndy Whitcroft		}
10488905a67cSAndy Whitcroft		if ($type eq '{' && $c eq '}') {
10498905a67cSAndy Whitcroft			$level--;
10508905a67cSAndy Whitcroft			$type = ($level != 0)? '{' : '';
10518905a67cSAndy Whitcroft
10528905a67cSAndy Whitcroft			if ($level == 0) {
1053b998e001SPatrick Pannuto				if (substr($blk, $off + 1, 1) eq ';') {
1054b998e001SPatrick Pannuto					$off++;
1055b998e001SPatrick Pannuto				}
10568905a67cSAndy Whitcroft				last;
10578905a67cSAndy Whitcroft			}
10588905a67cSAndy Whitcroft		}
1059f74bd194SAndy Whitcroft		# Preprocessor commands end at the newline unless escaped.
1060f74bd194SAndy Whitcroft		if ($type eq '#' && $c eq "\n" && $p ne "\\") {
1061f74bd194SAndy Whitcroft			$level--;
1062f74bd194SAndy Whitcroft			$type = '';
1063f74bd194SAndy Whitcroft			$off++;
1064f74bd194SAndy Whitcroft			last;
1065f74bd194SAndy Whitcroft		}
10668905a67cSAndy Whitcroft		$off++;
10678905a67cSAndy Whitcroft	}
1068a3bb97a7SAndy Whitcroft	# We are truly at the end, so shuffle to the next line.
106913214adfSAndy Whitcroft	if ($off == $len) {
1070a3bb97a7SAndy Whitcroft		$loff = $len + 1;
107113214adfSAndy Whitcroft		$line++;
107213214adfSAndy Whitcroft		$remain--;
107313214adfSAndy Whitcroft	}
10748905a67cSAndy Whitcroft
10758905a67cSAndy Whitcroft	my $statement = substr($blk, $soff, $off - $soff + 1);
10768905a67cSAndy Whitcroft	my $condition = substr($blk, $soff, $coff - $soff + 1);
10778905a67cSAndy Whitcroft
10788905a67cSAndy Whitcroft	#warn "STATEMENT<$statement>\n";
10798905a67cSAndy Whitcroft	#warn "CONDITION<$condition>\n";
10808905a67cSAndy Whitcroft
1081773647a0SAndy Whitcroft	#print "coff<$coff> soff<$off> loff<$loff>\n";
108213214adfSAndy Whitcroft
108313214adfSAndy Whitcroft	return ($statement, $condition,
108413214adfSAndy Whitcroft			$line, $remain + 1, $off - $loff + 1, $level);
108513214adfSAndy Whitcroft}
108613214adfSAndy Whitcroft
1087cf655043SAndy Whitcroftsub statement_lines {
1088cf655043SAndy Whitcroft	my ($stmt) = @_;
1089cf655043SAndy Whitcroft
1090cf655043SAndy Whitcroft	# Strip the diff line prefixes and rip blank lines at start and end.
1091cf655043SAndy Whitcroft	$stmt =~ s/(^|\n)./$1/g;
1092cf655043SAndy Whitcroft	$stmt =~ s/^\s*//;
1093cf655043SAndy Whitcroft	$stmt =~ s/\s*$//;
1094cf655043SAndy Whitcroft
1095cf655043SAndy Whitcroft	my @stmt_lines = ($stmt =~ /\n/g);
1096cf655043SAndy Whitcroft
1097cf655043SAndy Whitcroft	return $#stmt_lines + 2;
1098cf655043SAndy Whitcroft}
1099cf655043SAndy Whitcroft
1100cf655043SAndy Whitcroftsub statement_rawlines {
1101cf655043SAndy Whitcroft	my ($stmt) = @_;
1102cf655043SAndy Whitcroft
1103cf655043SAndy Whitcroft	my @stmt_lines = ($stmt =~ /\n/g);
1104cf655043SAndy Whitcroft
1105cf655043SAndy Whitcroft	return $#stmt_lines + 2;
1106cf655043SAndy Whitcroft}
1107cf655043SAndy Whitcroft
1108cf655043SAndy Whitcroftsub statement_block_size {
1109cf655043SAndy Whitcroft	my ($stmt) = @_;
1110cf655043SAndy Whitcroft
1111cf655043SAndy Whitcroft	$stmt =~ s/(^|\n)./$1/g;
1112cf655043SAndy Whitcroft	$stmt =~ s/^\s*{//;
1113cf655043SAndy Whitcroft	$stmt =~ s/}\s*$//;
1114cf655043SAndy Whitcroft	$stmt =~ s/^\s*//;
1115cf655043SAndy Whitcroft	$stmt =~ s/\s*$//;
1116cf655043SAndy Whitcroft
1117cf655043SAndy Whitcroft	my @stmt_lines = ($stmt =~ /\n/g);
1118cf655043SAndy Whitcroft	my @stmt_statements = ($stmt =~ /;/g);
1119cf655043SAndy Whitcroft
1120cf655043SAndy Whitcroft	my $stmt_lines = $#stmt_lines + 2;
1121cf655043SAndy Whitcroft	my $stmt_statements = $#stmt_statements + 1;
1122cf655043SAndy Whitcroft
1123cf655043SAndy Whitcroft	if ($stmt_lines > $stmt_statements) {
1124cf655043SAndy Whitcroft		return $stmt_lines;
1125cf655043SAndy Whitcroft	} else {
1126cf655043SAndy Whitcroft		return $stmt_statements;
1127cf655043SAndy Whitcroft	}
1128cf655043SAndy Whitcroft}
1129cf655043SAndy Whitcroft
113013214adfSAndy Whitcroftsub ctx_statement_full {
113113214adfSAndy Whitcroft	my ($linenr, $remain, $off) = @_;
113213214adfSAndy Whitcroft	my ($statement, $condition, $level);
113313214adfSAndy Whitcroft
113413214adfSAndy Whitcroft	my (@chunks);
113513214adfSAndy Whitcroft
1136cf655043SAndy Whitcroft	# Grab the first conditional/block pair.
113713214adfSAndy Whitcroft	($statement, $condition, $linenr, $remain, $off, $level) =
113813214adfSAndy Whitcroft				ctx_statement_block($linenr, $remain, $off);
1139773647a0SAndy Whitcroft	#print "F: c<$condition> s<$statement> remain<$remain>\n";
114013214adfSAndy Whitcroft	push(@chunks, [ $condition, $statement ]);
1141cf655043SAndy Whitcroft	if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
1142cf655043SAndy Whitcroft		return ($level, $linenr, @chunks);
1143cf655043SAndy Whitcroft	}
1144cf655043SAndy Whitcroft
1145cf655043SAndy Whitcroft	# Pull in the following conditional/block pairs and see if they
1146cf655043SAndy Whitcroft	# could continue the statement.
1147cf655043SAndy Whitcroft	for (;;) {
114813214adfSAndy Whitcroft		($statement, $condition, $linenr, $remain, $off, $level) =
114913214adfSAndy Whitcroft				ctx_statement_block($linenr, $remain, $off);
1150cf655043SAndy Whitcroft		#print "C: c<$condition> s<$statement> remain<$remain>\n";
1151773647a0SAndy Whitcroft		last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
1152cf655043SAndy Whitcroft		#print "C: push\n";
1153cf655043SAndy Whitcroft		push(@chunks, [ $condition, $statement ]);
115413214adfSAndy Whitcroft	}
115513214adfSAndy Whitcroft
115613214adfSAndy Whitcroft	return ($level, $linenr, @chunks);
11578905a67cSAndy Whitcroft}
11588905a67cSAndy Whitcroft
11594a0df2efSAndy Whitcroftsub ctx_block_get {
1160f0a594c1SAndy Whitcroft	my ($linenr, $remain, $outer, $open, $close, $off) = @_;
11614a0df2efSAndy Whitcroft	my $line;
11624a0df2efSAndy Whitcroft	my $start = $linenr - 1;
11634a0df2efSAndy Whitcroft	my $blk = '';
11644a0df2efSAndy Whitcroft	my @o;
11654a0df2efSAndy Whitcroft	my @c;
11664a0df2efSAndy Whitcroft	my @res = ();
11674a0df2efSAndy Whitcroft
1168f0a594c1SAndy Whitcroft	my $level = 0;
11694635f4fbSAndy Whitcroft	my @stack = ($level);
117000df344fSAndy Whitcroft	for ($line = $start; $remain > 0; $line++) {
117100df344fSAndy Whitcroft		next if ($rawlines[$line] =~ /^-/);
117200df344fSAndy Whitcroft		$remain--;
117300df344fSAndy Whitcroft
117400df344fSAndy Whitcroft		$blk .= $rawlines[$line];
11754635f4fbSAndy Whitcroft
11764635f4fbSAndy Whitcroft		# Handle nested #if/#else.
117701464f30SAndy Whitcroft		if ($lines[$line] =~ /^.\s*#\s*(?:ifndef|ifdef|if)\s/) {
11784635f4fbSAndy Whitcroft			push(@stack, $level);
117901464f30SAndy Whitcroft		} elsif ($lines[$line] =~ /^.\s*#\s*(?:else|elif)\b/) {
11804635f4fbSAndy Whitcroft			$level = $stack[$#stack - 1];
118101464f30SAndy Whitcroft		} elsif ($lines[$line] =~ /^.\s*#\s*endif\b/) {
11824635f4fbSAndy Whitcroft			$level = pop(@stack);
11834635f4fbSAndy Whitcroft		}
11844635f4fbSAndy Whitcroft
118501464f30SAndy Whitcroft		foreach my $c (split(//, $lines[$line])) {
1186f0a594c1SAndy Whitcroft			##print "C<$c>L<$level><$open$close>O<$off>\n";
1187f0a594c1SAndy Whitcroft			if ($off > 0) {
1188f0a594c1SAndy Whitcroft				$off--;
1189f0a594c1SAndy Whitcroft				next;
1190f0a594c1SAndy Whitcroft			}
11914a0df2efSAndy Whitcroft
1192f0a594c1SAndy Whitcroft			if ($c eq $close && $level > 0) {
1193f0a594c1SAndy Whitcroft				$level--;
1194f0a594c1SAndy Whitcroft				last if ($level == 0);
1195f0a594c1SAndy Whitcroft			} elsif ($c eq $open) {
1196f0a594c1SAndy Whitcroft				$level++;
1197f0a594c1SAndy Whitcroft			}
1198f0a594c1SAndy Whitcroft		}
11994a0df2efSAndy Whitcroft
1200f0a594c1SAndy Whitcroft		if (!$outer || $level <= 1) {
120100df344fSAndy Whitcroft			push(@res, $rawlines[$line]);
12024a0df2efSAndy Whitcroft		}
12034a0df2efSAndy Whitcroft
1204f0a594c1SAndy Whitcroft		last if ($level == 0);
12054a0df2efSAndy Whitcroft	}
12064a0df2efSAndy Whitcroft
1207f0a594c1SAndy Whitcroft	return ($level, @res);
12084a0df2efSAndy Whitcroft}
12094a0df2efSAndy Whitcroftsub ctx_block_outer {
12104a0df2efSAndy Whitcroft	my ($linenr, $remain) = @_;
12114a0df2efSAndy Whitcroft
1212f0a594c1SAndy Whitcroft	my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0);
1213f0a594c1SAndy Whitcroft	return @r;
12144a0df2efSAndy Whitcroft}
12154a0df2efSAndy Whitcroftsub ctx_block {
12164a0df2efSAndy Whitcroft	my ($linenr, $remain) = @_;
12174a0df2efSAndy Whitcroft
1218f0a594c1SAndy Whitcroft	my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0);
1219f0a594c1SAndy Whitcroft	return @r;
1220653d4876SAndy Whitcroft}
1221653d4876SAndy Whitcroftsub ctx_statement {
1222f0a594c1SAndy Whitcroft	my ($linenr, $remain, $off) = @_;
1223f0a594c1SAndy Whitcroft
1224f0a594c1SAndy Whitcroft	my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
1225f0a594c1SAndy Whitcroft	return @r;
1226f0a594c1SAndy Whitcroft}
1227f0a594c1SAndy Whitcroftsub ctx_block_level {
1228653d4876SAndy Whitcroft	my ($linenr, $remain) = @_;
1229653d4876SAndy Whitcroft
1230f0a594c1SAndy Whitcroft	return ctx_block_get($linenr, $remain, 0, '{', '}', 0);
12314a0df2efSAndy Whitcroft}
12329c0ca6f9SAndy Whitcroftsub ctx_statement_level {
12339c0ca6f9SAndy Whitcroft	my ($linenr, $remain, $off) = @_;
12349c0ca6f9SAndy Whitcroft
12359c0ca6f9SAndy Whitcroft	return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
12369c0ca6f9SAndy Whitcroft}
12374a0df2efSAndy Whitcroft
12384a0df2efSAndy Whitcroftsub ctx_locate_comment {
12394a0df2efSAndy Whitcroft	my ($first_line, $end_line) = @_;
12404a0df2efSAndy Whitcroft
12414a0df2efSAndy Whitcroft	# Catch a comment on the end of the line itself.
1242beae6332SAndy Whitcroft	my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@);
12434a0df2efSAndy Whitcroft	return $current_comment if (defined $current_comment);
12444a0df2efSAndy Whitcroft
12454a0df2efSAndy Whitcroft	# Look through the context and try and figure out if there is a
12464a0df2efSAndy Whitcroft	# comment.
12474a0df2efSAndy Whitcroft	my $in_comment = 0;
12484a0df2efSAndy Whitcroft	$current_comment = '';
12494a0df2efSAndy Whitcroft	for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
125000df344fSAndy Whitcroft		my $line = $rawlines[$linenr - 1];
125100df344fSAndy Whitcroft		#warn "           $line\n";
12524a0df2efSAndy Whitcroft		if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
12534a0df2efSAndy Whitcroft			$in_comment = 1;
12544a0df2efSAndy Whitcroft		}
12554a0df2efSAndy Whitcroft		if ($line =~ m@/\*@) {
12564a0df2efSAndy Whitcroft			$in_comment = 1;
12574a0df2efSAndy Whitcroft		}
12584a0df2efSAndy Whitcroft		if (!$in_comment && $current_comment ne '') {
12594a0df2efSAndy Whitcroft			$current_comment = '';
12604a0df2efSAndy Whitcroft		}
12614a0df2efSAndy Whitcroft		$current_comment .= $line . "\n" if ($in_comment);
12624a0df2efSAndy Whitcroft		if ($line =~ m@\*/@) {
12634a0df2efSAndy Whitcroft			$in_comment = 0;
12644a0df2efSAndy Whitcroft		}
12654a0df2efSAndy Whitcroft	}
12664a0df2efSAndy Whitcroft
12674a0df2efSAndy Whitcroft	chomp($current_comment);
12684a0df2efSAndy Whitcroft	return($current_comment);
12694a0df2efSAndy Whitcroft}
12704a0df2efSAndy Whitcroftsub ctx_has_comment {
12714a0df2efSAndy Whitcroft	my ($first_line, $end_line) = @_;
12724a0df2efSAndy Whitcroft	my $cmt = ctx_locate_comment($first_line, $end_line);
12734a0df2efSAndy Whitcroft
127400df344fSAndy Whitcroft	##print "LINE: $rawlines[$end_line - 1 ]\n";
12754a0df2efSAndy Whitcroft	##print "CMMT: $cmt\n";
12764a0df2efSAndy Whitcroft
12774a0df2efSAndy Whitcroft	return ($cmt ne '');
12784a0df2efSAndy Whitcroft}
12794a0df2efSAndy Whitcroft
12804d001e4dSAndy Whitcroftsub raw_line {
12814d001e4dSAndy Whitcroft	my ($linenr, $cnt) = @_;
12824d001e4dSAndy Whitcroft
12834d001e4dSAndy Whitcroft	my $offset = $linenr - 1;
12844d001e4dSAndy Whitcroft	$cnt++;
12854d001e4dSAndy Whitcroft
12864d001e4dSAndy Whitcroft	my $line;
12874d001e4dSAndy Whitcroft	while ($cnt) {
12884d001e4dSAndy Whitcroft		$line = $rawlines[$offset++];
12894d001e4dSAndy Whitcroft		next if (defined($line) && $line =~ /^-/);
12904d001e4dSAndy Whitcroft		$cnt--;
12914d001e4dSAndy Whitcroft	}
12924d001e4dSAndy Whitcroft
12934d001e4dSAndy Whitcroft	return $line;
12944d001e4dSAndy Whitcroft}
12954d001e4dSAndy Whitcroft
12960a920b5bSAndy Whitcroftsub cat_vet {
12970a920b5bSAndy Whitcroft	my ($vet) = @_;
12989c0ca6f9SAndy Whitcroft	my ($res, $coded);
12990a920b5bSAndy Whitcroft
13009c0ca6f9SAndy Whitcroft	$res = '';
13016c72ffaaSAndy Whitcroft	while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
13026c72ffaaSAndy Whitcroft		$res .= $1;
13036c72ffaaSAndy Whitcroft		if ($2 ne '') {
13049c0ca6f9SAndy Whitcroft			$coded = sprintf("^%c", unpack('C', $2) + 64);
13056c72ffaaSAndy Whitcroft			$res .= $coded;
13066c72ffaaSAndy Whitcroft		}
13079c0ca6f9SAndy Whitcroft	}
13089c0ca6f9SAndy Whitcroft	$res =~ s/$/\$/;
13090a920b5bSAndy Whitcroft
13109c0ca6f9SAndy Whitcroft	return $res;
13110a920b5bSAndy Whitcroft}
13120a920b5bSAndy Whitcroft
1313c2fdda0dSAndy Whitcroftmy $av_preprocessor = 0;
1314cf655043SAndy Whitcroftmy $av_pending;
1315c2fdda0dSAndy Whitcroftmy @av_paren_type;
13161f65f947SAndy Whitcroftmy $av_pend_colon;
1317c2fdda0dSAndy Whitcroft
1318c2fdda0dSAndy Whitcroftsub annotate_reset {
1319c2fdda0dSAndy Whitcroft	$av_preprocessor = 0;
1320cf655043SAndy Whitcroft	$av_pending = '_';
1321cf655043SAndy Whitcroft	@av_paren_type = ('E');
13221f65f947SAndy Whitcroft	$av_pend_colon = 'O';
1323c2fdda0dSAndy Whitcroft}
1324c2fdda0dSAndy Whitcroft
13256c72ffaaSAndy Whitcroftsub annotate_values {
13266c72ffaaSAndy Whitcroft	my ($stream, $type) = @_;
13276c72ffaaSAndy Whitcroft
13286c72ffaaSAndy Whitcroft	my $res;
13291f65f947SAndy Whitcroft	my $var = '_' x length($stream);
13306c72ffaaSAndy Whitcroft	my $cur = $stream;
13316c72ffaaSAndy Whitcroft
1332c2fdda0dSAndy Whitcroft	print "$stream\n" if ($dbg_values > 1);
13336c72ffaaSAndy Whitcroft
13346c72ffaaSAndy Whitcroft	while (length($cur)) {
1335773647a0SAndy Whitcroft		@av_paren_type = ('E') if ($#av_paren_type < 0);
1336cf655043SAndy Whitcroft		print " <" . join('', @av_paren_type) .
1337171ae1a4SAndy Whitcroft				"> <$type> <$av_pending>" if ($dbg_values > 1);
13386c72ffaaSAndy Whitcroft		if ($cur =~ /^(\s+)/o) {
1339c2fdda0dSAndy Whitcroft			print "WS($1)\n" if ($dbg_values > 1);
1340c2fdda0dSAndy Whitcroft			if ($1 =~ /\n/ && $av_preprocessor) {
1341cf655043SAndy Whitcroft				$type = pop(@av_paren_type);
1342c2fdda0dSAndy Whitcroft				$av_preprocessor = 0;
13436c72ffaaSAndy Whitcroft			}
13446c72ffaaSAndy Whitcroft
1345c023e473SFlorian Mickler		} elsif ($cur =~ /^(\(\s*$Type\s*)\)/ && $av_pending eq '_') {
13469446ef56SAndy Whitcroft			print "CAST($1)\n" if ($dbg_values > 1);
13479446ef56SAndy Whitcroft			push(@av_paren_type, $type);
1348addcdceaSAndy Whitcroft			$type = 'c';
13499446ef56SAndy Whitcroft
1350e91b6e26SAndy Whitcroft		} elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\(|\s*$)/) {
1351c2fdda0dSAndy Whitcroft			print "DECLARE($1)\n" if ($dbg_values > 1);
13526c72ffaaSAndy Whitcroft			$type = 'T';
13536c72ffaaSAndy Whitcroft
1354389a2fe5SAndy Whitcroft		} elsif ($cur =~ /^($Modifier)\s*/) {
1355389a2fe5SAndy Whitcroft			print "MODIFIER($1)\n" if ($dbg_values > 1);
1356389a2fe5SAndy Whitcroft			$type = 'T';
1357389a2fe5SAndy Whitcroft
1358c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) {
1359171ae1a4SAndy Whitcroft			print "DEFINE($1,$2)\n" if ($dbg_values > 1);
1360c2fdda0dSAndy Whitcroft			$av_preprocessor = 1;
1361171ae1a4SAndy Whitcroft			push(@av_paren_type, $type);
1362171ae1a4SAndy Whitcroft			if ($2 ne '') {
1363cf655043SAndy Whitcroft				$av_pending = 'N';
1364171ae1a4SAndy Whitcroft			}
1365171ae1a4SAndy Whitcroft			$type = 'E';
1366171ae1a4SAndy Whitcroft
1367c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*(?:undef\s*$Ident|include\b))/o) {
1368171ae1a4SAndy Whitcroft			print "UNDEF($1)\n" if ($dbg_values > 1);
1369171ae1a4SAndy Whitcroft			$av_preprocessor = 1;
1370171ae1a4SAndy Whitcroft			push(@av_paren_type, $type);
13716c72ffaaSAndy Whitcroft
1372c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*(?:ifdef|ifndef|if))/o) {
1373cf655043SAndy Whitcroft			print "PRE_START($1)\n" if ($dbg_values > 1);
1374c2fdda0dSAndy Whitcroft			$av_preprocessor = 1;
1375cf655043SAndy Whitcroft
1376cf655043SAndy Whitcroft			push(@av_paren_type, $type);
1377cf655043SAndy Whitcroft			push(@av_paren_type, $type);
1378171ae1a4SAndy Whitcroft			$type = 'E';
1379cf655043SAndy Whitcroft
1380c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*(?:else|elif))/o) {
1381cf655043SAndy Whitcroft			print "PRE_RESTART($1)\n" if ($dbg_values > 1);
1382cf655043SAndy Whitcroft			$av_preprocessor = 1;
1383cf655043SAndy Whitcroft
1384cf655043SAndy Whitcroft			push(@av_paren_type, $av_paren_type[$#av_paren_type]);
1385cf655043SAndy Whitcroft
1386171ae1a4SAndy Whitcroft			$type = 'E';
1387cf655043SAndy Whitcroft
1388c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*(?:endif))/o) {
1389cf655043SAndy Whitcroft			print "PRE_END($1)\n" if ($dbg_values > 1);
1390cf655043SAndy Whitcroft
1391cf655043SAndy Whitcroft			$av_preprocessor = 1;
1392cf655043SAndy Whitcroft
1393cf655043SAndy Whitcroft			# Assume all arms of the conditional end as this
1394cf655043SAndy Whitcroft			# one does, and continue as if the #endif was not here.
1395cf655043SAndy Whitcroft			pop(@av_paren_type);
1396cf655043SAndy Whitcroft			push(@av_paren_type, $type);
1397171ae1a4SAndy Whitcroft			$type = 'E';
13986c72ffaaSAndy Whitcroft
13996c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^(\\\n)/o) {
1400c2fdda0dSAndy Whitcroft			print "PRECONT($1)\n" if ($dbg_values > 1);
14016c72ffaaSAndy Whitcroft
1402171ae1a4SAndy Whitcroft		} elsif ($cur =~ /^(__attribute__)\s*\(?/o) {
1403171ae1a4SAndy Whitcroft			print "ATTR($1)\n" if ($dbg_values > 1);
1404171ae1a4SAndy Whitcroft			$av_pending = $type;
1405171ae1a4SAndy Whitcroft			$type = 'N';
1406171ae1a4SAndy Whitcroft
14076c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
1408c2fdda0dSAndy Whitcroft			print "SIZEOF($1)\n" if ($dbg_values > 1);
14096c72ffaaSAndy Whitcroft			if (defined $2) {
1410cf655043SAndy Whitcroft				$av_pending = 'V';
14116c72ffaaSAndy Whitcroft			}
14126c72ffaaSAndy Whitcroft			$type = 'N';
14136c72ffaaSAndy Whitcroft
141414b111c1SAndy Whitcroft		} elsif ($cur =~ /^(if|while|for)\b/o) {
1415c2fdda0dSAndy Whitcroft			print "COND($1)\n" if ($dbg_values > 1);
141614b111c1SAndy Whitcroft			$av_pending = 'E';
14176c72ffaaSAndy Whitcroft			$type = 'N';
14186c72ffaaSAndy Whitcroft
14191f65f947SAndy Whitcroft		} elsif ($cur =~/^(case)/o) {
14201f65f947SAndy Whitcroft			print "CASE($1)\n" if ($dbg_values > 1);
14211f65f947SAndy Whitcroft			$av_pend_colon = 'C';
14221f65f947SAndy Whitcroft			$type = 'N';
14231f65f947SAndy Whitcroft
142414b111c1SAndy Whitcroft		} elsif ($cur =~/^(return|else|goto|typeof|__typeof__)\b/o) {
1425c2fdda0dSAndy Whitcroft			print "KEYWORD($1)\n" if ($dbg_values > 1);
14266c72ffaaSAndy Whitcroft			$type = 'N';
14276c72ffaaSAndy Whitcroft
14286c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^(\()/o) {
1429c2fdda0dSAndy Whitcroft			print "PAREN('$1')\n" if ($dbg_values > 1);
1430cf655043SAndy Whitcroft			push(@av_paren_type, $av_pending);
1431cf655043SAndy Whitcroft			$av_pending = '_';
14326c72ffaaSAndy Whitcroft			$type = 'N';
14336c72ffaaSAndy Whitcroft
14346c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^(\))/o) {
1435cf655043SAndy Whitcroft			my $new_type = pop(@av_paren_type);
1436cf655043SAndy Whitcroft			if ($new_type ne '_') {
1437cf655043SAndy Whitcroft				$type = $new_type;
1438c2fdda0dSAndy Whitcroft				print "PAREN('$1') -> $type\n"
1439c2fdda0dSAndy Whitcroft							if ($dbg_values > 1);
14406c72ffaaSAndy Whitcroft			} else {
1441c2fdda0dSAndy Whitcroft				print "PAREN('$1')\n" if ($dbg_values > 1);
14426c72ffaaSAndy Whitcroft			}
14436c72ffaaSAndy Whitcroft
1444c8cb2ca3SAndy Whitcroft		} elsif ($cur =~ /^($Ident)\s*\(/o) {
1445c2fdda0dSAndy Whitcroft			print "FUNC($1)\n" if ($dbg_values > 1);
1446c8cb2ca3SAndy Whitcroft			$type = 'V';
1447cf655043SAndy Whitcroft			$av_pending = 'V';
14486c72ffaaSAndy Whitcroft
14498e761b04SAndy Whitcroft		} elsif ($cur =~ /^($Ident\s*):(?:\s*\d+\s*(,|=|;))?/) {
14508e761b04SAndy Whitcroft			if (defined $2 && $type eq 'C' || $type eq 'T') {
14511f65f947SAndy Whitcroft				$av_pend_colon = 'B';
14528e761b04SAndy Whitcroft			} elsif ($type eq 'E') {
14538e761b04SAndy Whitcroft				$av_pend_colon = 'L';
14541f65f947SAndy Whitcroft			}
14551f65f947SAndy Whitcroft			print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1);
14561f65f947SAndy Whitcroft			$type = 'V';
14571f65f947SAndy Whitcroft
14586c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^($Ident|$Constant)/o) {
1459c2fdda0dSAndy Whitcroft			print "IDENT($1)\n" if ($dbg_values > 1);
14606c72ffaaSAndy Whitcroft			$type = 'V';
14616c72ffaaSAndy Whitcroft
14626c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^($Assignment)/o) {
1463c2fdda0dSAndy Whitcroft			print "ASSIGN($1)\n" if ($dbg_values > 1);
14646c72ffaaSAndy Whitcroft			$type = 'N';
14656c72ffaaSAndy Whitcroft
1466cf655043SAndy Whitcroft		} elsif ($cur =~/^(;|{|})/) {
1467c2fdda0dSAndy Whitcroft			print "END($1)\n" if ($dbg_values > 1);
146813214adfSAndy Whitcroft			$type = 'E';
14691f65f947SAndy Whitcroft			$av_pend_colon = 'O';
147013214adfSAndy Whitcroft
14718e761b04SAndy Whitcroft		} elsif ($cur =~/^(,)/) {
14728e761b04SAndy Whitcroft			print "COMMA($1)\n" if ($dbg_values > 1);
14738e761b04SAndy Whitcroft			$type = 'C';
14748e761b04SAndy Whitcroft
14751f65f947SAndy Whitcroft		} elsif ($cur =~ /^(\?)/o) {
14761f65f947SAndy Whitcroft			print "QUESTION($1)\n" if ($dbg_values > 1);
14771f65f947SAndy Whitcroft			$type = 'N';
14781f65f947SAndy Whitcroft
14791f65f947SAndy Whitcroft		} elsif ($cur =~ /^(:)/o) {
14801f65f947SAndy Whitcroft			print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1);
14811f65f947SAndy Whitcroft
14821f65f947SAndy Whitcroft			substr($var, length($res), 1, $av_pend_colon);
14831f65f947SAndy Whitcroft			if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') {
14841f65f947SAndy Whitcroft				$type = 'E';
14851f65f947SAndy Whitcroft			} else {
14861f65f947SAndy Whitcroft				$type = 'N';
14871f65f947SAndy Whitcroft			}
14881f65f947SAndy Whitcroft			$av_pend_colon = 'O';
14891f65f947SAndy Whitcroft
14908e761b04SAndy Whitcroft		} elsif ($cur =~ /^(\[)/o) {
149113214adfSAndy Whitcroft			print "CLOSE($1)\n" if ($dbg_values > 1);
14926c72ffaaSAndy Whitcroft			$type = 'N';
14936c72ffaaSAndy Whitcroft
14940d413866SAndy Whitcroft		} elsif ($cur =~ /^(-(?![->])|\+(?!\+)|\*|\&\&|\&)/o) {
149574048ed8SAndy Whitcroft			my $variant;
149674048ed8SAndy Whitcroft
149774048ed8SAndy Whitcroft			print "OPV($1)\n" if ($dbg_values > 1);
149874048ed8SAndy Whitcroft			if ($type eq 'V') {
149974048ed8SAndy Whitcroft				$variant = 'B';
150074048ed8SAndy Whitcroft			} else {
150174048ed8SAndy Whitcroft				$variant = 'U';
150274048ed8SAndy Whitcroft			}
150374048ed8SAndy Whitcroft
150474048ed8SAndy Whitcroft			substr($var, length($res), 1, $variant);
150574048ed8SAndy Whitcroft			$type = 'N';
150674048ed8SAndy Whitcroft
15076c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^($Operators)/o) {
1508c2fdda0dSAndy Whitcroft			print "OP($1)\n" if ($dbg_values > 1);
15096c72ffaaSAndy Whitcroft			if ($1 ne '++' && $1 ne '--') {
15106c72ffaaSAndy Whitcroft				$type = 'N';
15116c72ffaaSAndy Whitcroft			}
15126c72ffaaSAndy Whitcroft
15136c72ffaaSAndy Whitcroft		} elsif ($cur =~ /(^.)/o) {
1514c2fdda0dSAndy Whitcroft			print "C($1)\n" if ($dbg_values > 1);
15156c72ffaaSAndy Whitcroft		}
15166c72ffaaSAndy Whitcroft		if (defined $1) {
15176c72ffaaSAndy Whitcroft			$cur = substr($cur, length($1));
15186c72ffaaSAndy Whitcroft			$res .= $type x length($1);
15196c72ffaaSAndy Whitcroft		}
15206c72ffaaSAndy Whitcroft	}
15216c72ffaaSAndy Whitcroft
15221f65f947SAndy Whitcroft	return ($res, $var);
15236c72ffaaSAndy Whitcroft}
15246c72ffaaSAndy Whitcroft
15258905a67cSAndy Whitcroftsub possible {
152613214adfSAndy Whitcroft	my ($possible, $line) = @_;
15279a974fdbSAndy Whitcroft	my $notPermitted = qr{(?:
15280776e594SAndy Whitcroft		^(?:
15290776e594SAndy Whitcroft			$Modifier|
15300776e594SAndy Whitcroft			$Storage|
15310776e594SAndy Whitcroft			$Type|
15329a974fdbSAndy Whitcroft			DEFINE_\S+
15339a974fdbSAndy Whitcroft		)$|
15349a974fdbSAndy Whitcroft		^(?:
15350776e594SAndy Whitcroft			goto|
15360776e594SAndy Whitcroft			return|
15370776e594SAndy Whitcroft			case|
15380776e594SAndy Whitcroft			else|
15390776e594SAndy Whitcroft			asm|__asm__|
154089a88353SAndy Whitcroft			do|
154189a88353SAndy Whitcroft			\#|
154289a88353SAndy Whitcroft			\#\#|
15439a974fdbSAndy Whitcroft		)(?:\s|$)|
15440776e594SAndy Whitcroft		^(?:typedef|struct|enum)\b
15459a974fdbSAndy Whitcroft	    )}x;
15469a974fdbSAndy Whitcroft	warn "CHECK<$possible> ($line)\n" if ($dbg_possible > 2);
15479a974fdbSAndy Whitcroft	if ($possible !~ $notPermitted) {
1548c45dcabdSAndy Whitcroft		# Check for modifiers.
1549c45dcabdSAndy Whitcroft		$possible =~ s/\s*$Storage\s*//g;
1550c45dcabdSAndy Whitcroft		$possible =~ s/\s*$Sparse\s*//g;
1551c45dcabdSAndy Whitcroft		if ($possible =~ /^\s*$/) {
1552c45dcabdSAndy Whitcroft
1553c45dcabdSAndy Whitcroft		} elsif ($possible =~ /\s/) {
1554c45dcabdSAndy Whitcroft			$possible =~ s/\s*$Type\s*//g;
1555d2506586SAndy Whitcroft			for my $modifier (split(' ', $possible)) {
15569a974fdbSAndy Whitcroft				if ($modifier !~ $notPermitted) {
1557d2506586SAndy Whitcroft					warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
1558d2506586SAndy Whitcroft					push(@modifierList, $modifier);
1559d2506586SAndy Whitcroft				}
15609a974fdbSAndy Whitcroft			}
1561c45dcabdSAndy Whitcroft
1562c45dcabdSAndy Whitcroft		} else {
156313214adfSAndy Whitcroft			warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
15648905a67cSAndy Whitcroft			push(@typeList, $possible);
1565c45dcabdSAndy Whitcroft		}
15668905a67cSAndy Whitcroft		build_types();
15670776e594SAndy Whitcroft	} else {
15680776e594SAndy Whitcroft		warn "NOTPOSS: $possible ($line)\n" if ($dbg_possible > 1);
15698905a67cSAndy Whitcroft	}
15708905a67cSAndy Whitcroft}
15718905a67cSAndy Whitcroft
15726c72ffaaSAndy Whitcroftmy $prefix = '';
15736c72ffaaSAndy Whitcroft
1574000d1cc1SJoe Perchessub show_type {
1575cbec18afSJoe Perches	my ($type) = @_;
157691bfe484SJoe Perches
1577cbec18afSJoe Perches	return defined $use_type{$type} if (scalar keys %use_type > 0);
1578cbec18afSJoe Perches
1579cbec18afSJoe Perches	return !defined $ignore_type{$type};
1580000d1cc1SJoe Perches}
1581000d1cc1SJoe Perches
1582f0a594c1SAndy Whitcroftsub report {
1583cbec18afSJoe Perches	my ($level, $type, $msg) = @_;
1584cbec18afSJoe Perches
1585cbec18afSJoe Perches	if (!show_type($type) ||
1586cbec18afSJoe Perches	    (defined $tst_only && $msg !~ /\Q$tst_only\E/)) {
1587773647a0SAndy Whitcroft		return 0;
1588773647a0SAndy Whitcroft	}
1589000d1cc1SJoe Perches	my $line;
1590000d1cc1SJoe Perches	if ($show_types) {
1591cbec18afSJoe Perches		$line = "$prefix$level:$type: $msg\n";
1592000d1cc1SJoe Perches	} else {
1593cbec18afSJoe Perches		$line = "$prefix$level: $msg\n";
1594000d1cc1SJoe Perches	}
15958905a67cSAndy Whitcroft	$line = (split('\n', $line))[0] . "\n" if ($terse);
15968905a67cSAndy Whitcroft
159713214adfSAndy Whitcroft	push(our @report, $line);
1598773647a0SAndy Whitcroft
1599773647a0SAndy Whitcroft	return 1;
1600f0a594c1SAndy Whitcroft}
1601cbec18afSJoe Perches
1602f0a594c1SAndy Whitcroftsub report_dump {
160313214adfSAndy Whitcroft	our @report;
1604f0a594c1SAndy Whitcroft}
1605000d1cc1SJoe Perches
1606d752fcc8SJoe Perchessub fixup_current_range {
1607d752fcc8SJoe Perches	my ($lineRef, $offset, $length) = @_;
1608d752fcc8SJoe Perches
1609d752fcc8SJoe Perches	if ($$lineRef =~ /^\@\@ -\d+,\d+ \+(\d+),(\d+) \@\@/) {
1610d752fcc8SJoe Perches		my $o = $1;
1611d752fcc8SJoe Perches		my $l = $2;
1612d752fcc8SJoe Perches		my $no = $o + $offset;
1613d752fcc8SJoe Perches		my $nl = $l + $length;
1614d752fcc8SJoe Perches		$$lineRef =~ s/\+$o,$l \@\@/\+$no,$nl \@\@/;
1615d752fcc8SJoe Perches	}
1616d752fcc8SJoe Perches}
1617d752fcc8SJoe Perches
1618d752fcc8SJoe Perchessub fix_inserted_deleted_lines {
1619d752fcc8SJoe Perches	my ($linesRef, $insertedRef, $deletedRef) = @_;
1620d752fcc8SJoe Perches
1621d752fcc8SJoe Perches	my $range_last_linenr = 0;
1622d752fcc8SJoe Perches	my $delta_offset = 0;
1623d752fcc8SJoe Perches
1624d752fcc8SJoe Perches	my $old_linenr = 0;
1625d752fcc8SJoe Perches	my $new_linenr = 0;
1626d752fcc8SJoe Perches
1627d752fcc8SJoe Perches	my $next_insert = 0;
1628d752fcc8SJoe Perches	my $next_delete = 0;
1629d752fcc8SJoe Perches
1630d752fcc8SJoe Perches	my @lines = ();
1631d752fcc8SJoe Perches
1632d752fcc8SJoe Perches	my $inserted = @{$insertedRef}[$next_insert++];
1633d752fcc8SJoe Perches	my $deleted = @{$deletedRef}[$next_delete++];
1634d752fcc8SJoe Perches
1635d752fcc8SJoe Perches	foreach my $old_line (@{$linesRef}) {
1636d752fcc8SJoe Perches		my $save_line = 1;
1637d752fcc8SJoe Perches		my $line = $old_line;	#don't modify the array
1638d752fcc8SJoe Perches		if ($line =~ /^(?:\+\+\+\|\-\-\-)\s+\S+/) {	#new filename
1639d752fcc8SJoe Perches			$delta_offset = 0;
1640d752fcc8SJoe Perches		} elsif ($line =~ /^\@\@ -\d+,\d+ \+\d+,\d+ \@\@/) {	#new hunk
1641d752fcc8SJoe Perches			$range_last_linenr = $new_linenr;
1642d752fcc8SJoe Perches			fixup_current_range(\$line, $delta_offset, 0);
1643d752fcc8SJoe Perches		}
1644d752fcc8SJoe Perches
1645d752fcc8SJoe Perches		while (defined($deleted) && ${$deleted}{'LINENR'} == $old_linenr) {
1646d752fcc8SJoe Perches			$deleted = @{$deletedRef}[$next_delete++];
1647d752fcc8SJoe Perches			$save_line = 0;
1648d752fcc8SJoe Perches			fixup_current_range(\$lines[$range_last_linenr], $delta_offset--, -1);
1649d752fcc8SJoe Perches		}
1650d752fcc8SJoe Perches
1651d752fcc8SJoe Perches		while (defined($inserted) && ${$inserted}{'LINENR'} == $old_linenr) {
1652d752fcc8SJoe Perches			push(@lines, ${$inserted}{'LINE'});
1653d752fcc8SJoe Perches			$inserted = @{$insertedRef}[$next_insert++];
1654d752fcc8SJoe Perches			$new_linenr++;
1655d752fcc8SJoe Perches			fixup_current_range(\$lines[$range_last_linenr], $delta_offset++, 1);
1656d752fcc8SJoe Perches		}
1657d752fcc8SJoe Perches
1658d752fcc8SJoe Perches		if ($save_line) {
1659d752fcc8SJoe Perches			push(@lines, $line);
1660d752fcc8SJoe Perches			$new_linenr++;
1661d752fcc8SJoe Perches		}
1662d752fcc8SJoe Perches
1663d752fcc8SJoe Perches		$old_linenr++;
1664d752fcc8SJoe Perches	}
1665d752fcc8SJoe Perches
1666d752fcc8SJoe Perches	return @lines;
1667d752fcc8SJoe Perches}
1668d752fcc8SJoe Perches
1669f2d7e4d4SJoe Perchessub fix_insert_line {
1670f2d7e4d4SJoe Perches	my ($linenr, $line) = @_;
1671f2d7e4d4SJoe Perches
1672f2d7e4d4SJoe Perches	my $inserted = {
1673f2d7e4d4SJoe Perches		LINENR => $linenr,
1674f2d7e4d4SJoe Perches		LINE => $line,
1675f2d7e4d4SJoe Perches	};
1676f2d7e4d4SJoe Perches	push(@fixed_inserted, $inserted);
1677f2d7e4d4SJoe Perches}
1678f2d7e4d4SJoe Perches
1679f2d7e4d4SJoe Perchessub fix_delete_line {
1680f2d7e4d4SJoe Perches	my ($linenr, $line) = @_;
1681f2d7e4d4SJoe Perches
1682f2d7e4d4SJoe Perches	my $deleted = {
1683f2d7e4d4SJoe Perches		LINENR => $linenr,
1684f2d7e4d4SJoe Perches		LINE => $line,
1685f2d7e4d4SJoe Perches	};
1686f2d7e4d4SJoe Perches
1687f2d7e4d4SJoe Perches	push(@fixed_deleted, $deleted);
1688f2d7e4d4SJoe Perches}
1689f2d7e4d4SJoe Perches
1690de7d4f0eSAndy Whitcroftsub ERROR {
1691cbec18afSJoe Perches	my ($type, $msg) = @_;
1692cbec18afSJoe Perches
1693cbec18afSJoe Perches	if (report("ERROR", $type, $msg)) {
1694de7d4f0eSAndy Whitcroft		our $clean = 0;
16956c72ffaaSAndy Whitcroft		our $cnt_error++;
16963705ce5bSJoe Perches		return 1;
1697de7d4f0eSAndy Whitcroft	}
16983705ce5bSJoe Perches	return 0;
1699773647a0SAndy Whitcroft}
1700de7d4f0eSAndy Whitcroftsub WARN {
1701cbec18afSJoe Perches	my ($type, $msg) = @_;
1702cbec18afSJoe Perches
1703cbec18afSJoe Perches	if (report("WARNING", $type, $msg)) {
1704de7d4f0eSAndy Whitcroft		our $clean = 0;
17056c72ffaaSAndy Whitcroft		our $cnt_warn++;
17063705ce5bSJoe Perches		return 1;
1707de7d4f0eSAndy Whitcroft	}
17083705ce5bSJoe Perches	return 0;
1709773647a0SAndy Whitcroft}
1710de7d4f0eSAndy Whitcroftsub CHK {
1711cbec18afSJoe Perches	my ($type, $msg) = @_;
1712cbec18afSJoe Perches
1713cbec18afSJoe Perches	if ($check && report("CHECK", $type, $msg)) {
1714de7d4f0eSAndy Whitcroft		our $clean = 0;
17156c72ffaaSAndy Whitcroft		our $cnt_chk++;
17163705ce5bSJoe Perches		return 1;
17176c72ffaaSAndy Whitcroft	}
17183705ce5bSJoe Perches	return 0;
1719de7d4f0eSAndy Whitcroft}
1720de7d4f0eSAndy Whitcroft
17216ecd9674SAndy Whitcroftsub check_absolute_file {
17226ecd9674SAndy Whitcroft	my ($absolute, $herecurr) = @_;
17236ecd9674SAndy Whitcroft	my $file = $absolute;
17246ecd9674SAndy Whitcroft
17256ecd9674SAndy Whitcroft	##print "absolute<$absolute>\n";
17266ecd9674SAndy Whitcroft
17276ecd9674SAndy Whitcroft	# See if any suffix of this path is a path within the tree.
17286ecd9674SAndy Whitcroft	while ($file =~ s@^[^/]*/@@) {
17296ecd9674SAndy Whitcroft		if (-f "$root/$file") {
17306ecd9674SAndy Whitcroft			##print "file<$file>\n";
17316ecd9674SAndy Whitcroft			last;
17326ecd9674SAndy Whitcroft		}
17336ecd9674SAndy Whitcroft	}
17346ecd9674SAndy Whitcroft	if (! -f _)  {
17356ecd9674SAndy Whitcroft		return 0;
17366ecd9674SAndy Whitcroft	}
17376ecd9674SAndy Whitcroft
17386ecd9674SAndy Whitcroft	# It is, so see if the prefix is acceptable.
17396ecd9674SAndy Whitcroft	my $prefix = $absolute;
17406ecd9674SAndy Whitcroft	substr($prefix, -length($file)) = '';
17416ecd9674SAndy Whitcroft
17426ecd9674SAndy Whitcroft	##print "prefix<$prefix>\n";
17436ecd9674SAndy Whitcroft	if ($prefix ne ".../") {
1744000d1cc1SJoe Perches		WARN("USE_RELATIVE_PATH",
1745000d1cc1SJoe Perches		     "use relative pathname instead of absolute in changelog text\n" . $herecurr);
17466ecd9674SAndy Whitcroft	}
17476ecd9674SAndy Whitcroft}
17486ecd9674SAndy Whitcroft
17493705ce5bSJoe Perchessub trim {
17503705ce5bSJoe Perches	my ($string) = @_;
17513705ce5bSJoe Perches
1752b34c648bSJoe Perches	$string =~ s/^\s+|\s+$//g;
1753b34c648bSJoe Perches
1754b34c648bSJoe Perches	return $string;
1755b34c648bSJoe Perches}
1756b34c648bSJoe Perches
1757b34c648bSJoe Perchessub ltrim {
1758b34c648bSJoe Perches	my ($string) = @_;
1759b34c648bSJoe Perches
1760b34c648bSJoe Perches	$string =~ s/^\s+//;
1761b34c648bSJoe Perches
1762b34c648bSJoe Perches	return $string;
1763b34c648bSJoe Perches}
1764b34c648bSJoe Perches
1765b34c648bSJoe Perchessub rtrim {
1766b34c648bSJoe Perches	my ($string) = @_;
1767b34c648bSJoe Perches
1768b34c648bSJoe Perches	$string =~ s/\s+$//;
17693705ce5bSJoe Perches
17703705ce5bSJoe Perches	return $string;
17713705ce5bSJoe Perches}
17723705ce5bSJoe Perches
177352ea8506SJoe Perchessub string_find_replace {
177452ea8506SJoe Perches	my ($string, $find, $replace) = @_;
177552ea8506SJoe Perches
177652ea8506SJoe Perches	$string =~ s/$find/$replace/g;
177752ea8506SJoe Perches
177852ea8506SJoe Perches	return $string;
177952ea8506SJoe Perches}
178052ea8506SJoe Perches
17813705ce5bSJoe Perchessub tabify {
17823705ce5bSJoe Perches	my ($leading) = @_;
17833705ce5bSJoe Perches
17843705ce5bSJoe Perches	my $source_indent = 8;
17853705ce5bSJoe Perches	my $max_spaces_before_tab = $source_indent - 1;
17863705ce5bSJoe Perches	my $spaces_to_tab = " " x $source_indent;
17873705ce5bSJoe Perches
17883705ce5bSJoe Perches	#convert leading spaces to tabs
17893705ce5bSJoe Perches	1 while $leading =~ s@^([\t]*)$spaces_to_tab@$1\t@g;
17903705ce5bSJoe Perches	#Remove spaces before a tab
17913705ce5bSJoe Perches	1 while $leading =~ s@^([\t]*)( {1,$max_spaces_before_tab})\t@$1\t@g;
17923705ce5bSJoe Perches
17933705ce5bSJoe Perches	return "$leading";
17943705ce5bSJoe Perches}
17953705ce5bSJoe Perches
1796d1fe9c09SJoe Perchessub pos_last_openparen {
1797d1fe9c09SJoe Perches	my ($line) = @_;
1798d1fe9c09SJoe Perches
1799d1fe9c09SJoe Perches	my $pos = 0;
1800d1fe9c09SJoe Perches
1801d1fe9c09SJoe Perches	my $opens = $line =~ tr/\(/\(/;
1802d1fe9c09SJoe Perches	my $closes = $line =~ tr/\)/\)/;
1803d1fe9c09SJoe Perches
1804d1fe9c09SJoe Perches	my $last_openparen = 0;
1805d1fe9c09SJoe Perches
1806d1fe9c09SJoe Perches	if (($opens == 0) || ($closes >= $opens)) {
1807d1fe9c09SJoe Perches		return -1;
1808d1fe9c09SJoe Perches	}
1809d1fe9c09SJoe Perches
1810d1fe9c09SJoe Perches	my $len = length($line);
1811d1fe9c09SJoe Perches
1812d1fe9c09SJoe Perches	for ($pos = 0; $pos < $len; $pos++) {
1813d1fe9c09SJoe Perches		my $string = substr($line, $pos);
1814d1fe9c09SJoe Perches		if ($string =~ /^($FuncArg|$balanced_parens)/) {
1815d1fe9c09SJoe Perches			$pos += length($1) - 1;
1816d1fe9c09SJoe Perches		} elsif (substr($line, $pos, 1) eq '(') {
1817d1fe9c09SJoe Perches			$last_openparen = $pos;
1818d1fe9c09SJoe Perches		} elsif (index($string, '(') == -1) {
1819d1fe9c09SJoe Perches			last;
1820d1fe9c09SJoe Perches		}
1821d1fe9c09SJoe Perches	}
1822d1fe9c09SJoe Perches
182391cb5195SJoe Perches	return length(expand_tabs(substr($line, 0, $last_openparen))) + 1;
1824d1fe9c09SJoe Perches}
1825d1fe9c09SJoe Perches
18260a920b5bSAndy Whitcroftsub process {
18270a920b5bSAndy Whitcroft	my $filename = shift;
18280a920b5bSAndy Whitcroft
18290a920b5bSAndy Whitcroft	my $linenr=0;
18300a920b5bSAndy Whitcroft	my $prevline="";
1831c2fdda0dSAndy Whitcroft	my $prevrawline="";
18320a920b5bSAndy Whitcroft	my $stashline="";
1833c2fdda0dSAndy Whitcroft	my $stashrawline="";
18340a920b5bSAndy Whitcroft
18354a0df2efSAndy Whitcroft	my $length;
18360a920b5bSAndy Whitcroft	my $indent;
18370a920b5bSAndy Whitcroft	my $previndent=0;
18380a920b5bSAndy Whitcroft	my $stashindent=0;
18390a920b5bSAndy Whitcroft
1840de7d4f0eSAndy Whitcroft	our $clean = 1;
18410a920b5bSAndy Whitcroft	my $signoff = 0;
18420a920b5bSAndy Whitcroft	my $is_patch = 0;
18430a920b5bSAndy Whitcroft
184429ee1b0cSJoe Perches	my $in_header_lines = $file ? 0 : 1;
184515662b3eSJoe Perches	my $in_commit_log = 0;		#Scanning lines before patch
184613f1937eSJoe Perches	my $reported_maintainer_file = 0;
1847fa64205dSPasi Savanainen	my $non_utf8_charset = 0;
1848fa64205dSPasi Savanainen
1849365dd4eaSJoe Perches	my $last_blank_line = 0;
1850365dd4eaSJoe Perches
185113214adfSAndy Whitcroft	our @report = ();
18526c72ffaaSAndy Whitcroft	our $cnt_lines = 0;
18536c72ffaaSAndy Whitcroft	our $cnt_error = 0;
18546c72ffaaSAndy Whitcroft	our $cnt_warn = 0;
18556c72ffaaSAndy Whitcroft	our $cnt_chk = 0;
18566c72ffaaSAndy Whitcroft
18570a920b5bSAndy Whitcroft	# Trace the real file/line as we go.
18580a920b5bSAndy Whitcroft	my $realfile = '';
18590a920b5bSAndy Whitcroft	my $realline = 0;
18600a920b5bSAndy Whitcroft	my $realcnt = 0;
18610a920b5bSAndy Whitcroft	my $here = '';
18620a920b5bSAndy Whitcroft	my $in_comment = 0;
1863c2fdda0dSAndy Whitcroft	my $comment_edge = 0;
18640a920b5bSAndy Whitcroft	my $first_line = 0;
18651e855726SWolfram Sang	my $p1_prefix = '';
18660a920b5bSAndy Whitcroft
186713214adfSAndy Whitcroft	my $prev_values = 'E';
186813214adfSAndy Whitcroft
186913214adfSAndy Whitcroft	# suppression flags
1870773647a0SAndy Whitcroft	my %suppress_ifbraces;
1871170d3a22SAndy Whitcroft	my %suppress_whiletrailers;
18722b474a1aSAndy Whitcroft	my %suppress_export;
18733e469cdcSAndy Whitcroft	my $suppress_statement = 0;
1874653d4876SAndy Whitcroft
18757e51f197SJoe Perches	my %signatures = ();
1876323c1260SJoe Perches
1877c2fdda0dSAndy Whitcroft	# Pre-scan the patch sanitizing the lines.
1878de7d4f0eSAndy Whitcroft	# Pre-scan the patch looking for any __setup documentation.
1879c2fdda0dSAndy Whitcroft	#
1880de7d4f0eSAndy Whitcroft	my @setup_docs = ();
1881de7d4f0eSAndy Whitcroft	my $setup_docs = 0;
1882773647a0SAndy Whitcroft
1883d8b07710SJoe Perches	my $camelcase_file_seeded = 0;
1884d8b07710SJoe Perches
1885773647a0SAndy Whitcroft	sanitise_line_reset();
1886c2fdda0dSAndy Whitcroft	my $line;
1887c2fdda0dSAndy Whitcroft	foreach my $rawline (@rawlines) {
1888773647a0SAndy Whitcroft		$linenr++;
1889773647a0SAndy Whitcroft		$line = $rawline;
1890c2fdda0dSAndy Whitcroft
18913705ce5bSJoe Perches		push(@fixed, $rawline) if ($fix);
18923705ce5bSJoe Perches
1893773647a0SAndy Whitcroft		if ($rawline=~/^\+\+\+\s+(\S+)/) {
1894de7d4f0eSAndy Whitcroft			$setup_docs = 0;
1895de7d4f0eSAndy Whitcroft			if ($1 =~ m@Documentation/kernel-parameters.txt$@) {
1896de7d4f0eSAndy Whitcroft				$setup_docs = 1;
1897de7d4f0eSAndy Whitcroft			}
1898773647a0SAndy Whitcroft			#next;
1899de7d4f0eSAndy Whitcroft		}
1900773647a0SAndy Whitcroft		if ($rawline=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
1901773647a0SAndy Whitcroft			$realline=$1-1;
1902773647a0SAndy Whitcroft			if (defined $2) {
1903773647a0SAndy Whitcroft				$realcnt=$3+1;
1904773647a0SAndy Whitcroft			} else {
1905773647a0SAndy Whitcroft				$realcnt=1+1;
1906773647a0SAndy Whitcroft			}
1907c45dcabdSAndy Whitcroft			$in_comment = 0;
1908773647a0SAndy Whitcroft
1909773647a0SAndy Whitcroft			# Guestimate if this is a continuing comment.  Run
1910773647a0SAndy Whitcroft			# the context looking for a comment "edge".  If this
1911773647a0SAndy Whitcroft			# edge is a close comment then we must be in a comment
1912773647a0SAndy Whitcroft			# at context start.
1913773647a0SAndy Whitcroft			my $edge;
191401fa9147SAndy Whitcroft			my $cnt = $realcnt;
191501fa9147SAndy Whitcroft			for (my $ln = $linenr + 1; $cnt > 0; $ln++) {
191601fa9147SAndy Whitcroft				next if (defined $rawlines[$ln - 1] &&
191701fa9147SAndy Whitcroft					 $rawlines[$ln - 1] =~ /^-/);
191801fa9147SAndy Whitcroft				$cnt--;
191901fa9147SAndy Whitcroft				#print "RAW<$rawlines[$ln - 1]>\n";
1920721c1cb6SAndy Whitcroft				last if (!defined $rawlines[$ln - 1]);
1921fae17daeSAndy Whitcroft				if ($rawlines[$ln - 1] =~ m@(/\*|\*/)@ &&
1922fae17daeSAndy Whitcroft				    $rawlines[$ln - 1] !~ m@"[^"]*(?:/\*|\*/)[^"]*"@) {
1923fae17daeSAndy Whitcroft					($edge) = $1;
1924fae17daeSAndy Whitcroft					last;
1925fae17daeSAndy Whitcroft				}
1926773647a0SAndy Whitcroft			}
1927773647a0SAndy Whitcroft			if (defined $edge && $edge eq '*/') {
1928773647a0SAndy Whitcroft				$in_comment = 1;
1929773647a0SAndy Whitcroft			}
1930773647a0SAndy Whitcroft
1931773647a0SAndy Whitcroft			# Guestimate if this is a continuing comment.  If this
1932773647a0SAndy Whitcroft			# is the start of a diff block and this line starts
1933773647a0SAndy Whitcroft			# ' *' then it is very likely a comment.
1934773647a0SAndy Whitcroft			if (!defined $edge &&
193583242e0cSAndy Whitcroft			    $rawlines[$linenr] =~ m@^.\s*(?:\*\*+| \*)(?:\s|$)@)
1936773647a0SAndy Whitcroft			{
1937773647a0SAndy Whitcroft				$in_comment = 1;
1938773647a0SAndy Whitcroft			}
1939773647a0SAndy Whitcroft
1940773647a0SAndy Whitcroft			##print "COMMENT:$in_comment edge<$edge> $rawline\n";
1941773647a0SAndy Whitcroft			sanitise_line_reset($in_comment);
1942773647a0SAndy Whitcroft
1943171ae1a4SAndy Whitcroft		} elsif ($realcnt && $rawline =~ /^(?:\+| |$)/) {
1944773647a0SAndy Whitcroft			# Standardise the strings and chars within the input to
1945171ae1a4SAndy Whitcroft			# simplify matching -- only bother with positive lines.
1946773647a0SAndy Whitcroft			$line = sanitise_line($rawline);
1947773647a0SAndy Whitcroft		}
1948773647a0SAndy Whitcroft		push(@lines, $line);
1949773647a0SAndy Whitcroft
1950773647a0SAndy Whitcroft		if ($realcnt > 1) {
1951773647a0SAndy Whitcroft			$realcnt-- if ($line =~ /^(?:\+| |$)/);
1952773647a0SAndy Whitcroft		} else {
1953773647a0SAndy Whitcroft			$realcnt = 0;
1954773647a0SAndy Whitcroft		}
1955773647a0SAndy Whitcroft
1956773647a0SAndy Whitcroft		#print "==>$rawline\n";
1957773647a0SAndy Whitcroft		#print "-->$line\n";
1958de7d4f0eSAndy Whitcroft
1959de7d4f0eSAndy Whitcroft		if ($setup_docs && $line =~ /^\+/) {
1960de7d4f0eSAndy Whitcroft			push(@setup_docs, $line);
1961de7d4f0eSAndy Whitcroft		}
1962de7d4f0eSAndy Whitcroft	}
1963de7d4f0eSAndy Whitcroft
19646c72ffaaSAndy Whitcroft	$prefix = '';
19656c72ffaaSAndy Whitcroft
1966773647a0SAndy Whitcroft	$realcnt = 0;
1967773647a0SAndy Whitcroft	$linenr = 0;
1968194f66fcSJoe Perches	$fixlinenr = -1;
19690a920b5bSAndy Whitcroft	foreach my $line (@lines) {
19700a920b5bSAndy Whitcroft		$linenr++;
1971194f66fcSJoe Perches		$fixlinenr++;
19721b5539b1SJoe Perches		my $sline = $line;	#copy of $line
19731b5539b1SJoe Perches		$sline =~ s/$;/ /g;	#with comments as spaces
19740a920b5bSAndy Whitcroft
1975c2fdda0dSAndy Whitcroft		my $rawline = $rawlines[$linenr - 1];
19766c72ffaaSAndy Whitcroft
19770a920b5bSAndy Whitcroft#extract the line range in the file after the patch is applied
19786c72ffaaSAndy Whitcroft		if ($line=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
19790a920b5bSAndy Whitcroft			$is_patch = 1;
19804a0df2efSAndy Whitcroft			$first_line = $linenr + 1;
19810a920b5bSAndy Whitcroft			$realline=$1-1;
19820a920b5bSAndy Whitcroft			if (defined $2) {
19830a920b5bSAndy Whitcroft				$realcnt=$3+1;
19840a920b5bSAndy Whitcroft			} else {
19850a920b5bSAndy Whitcroft				$realcnt=1+1;
19860a920b5bSAndy Whitcroft			}
1987c2fdda0dSAndy Whitcroft			annotate_reset();
198813214adfSAndy Whitcroft			$prev_values = 'E';
198913214adfSAndy Whitcroft
1990773647a0SAndy Whitcroft			%suppress_ifbraces = ();
1991170d3a22SAndy Whitcroft			%suppress_whiletrailers = ();
19922b474a1aSAndy Whitcroft			%suppress_export = ();
19933e469cdcSAndy Whitcroft			$suppress_statement = 0;
19940a920b5bSAndy Whitcroft			next;
19950a920b5bSAndy Whitcroft
19964a0df2efSAndy Whitcroft# track the line number as we move through the hunk, note that
19974a0df2efSAndy Whitcroft# new versions of GNU diff omit the leading space on completely
19984a0df2efSAndy Whitcroft# blank context lines so we need to count that too.
1999773647a0SAndy Whitcroft		} elsif ($line =~ /^( |\+|$)/) {
20000a920b5bSAndy Whitcroft			$realline++;
2001d8aaf121SAndy Whitcroft			$realcnt-- if ($realcnt != 0);
20020a920b5bSAndy Whitcroft
20034a0df2efSAndy Whitcroft			# Measure the line length and indent.
2004c2fdda0dSAndy Whitcroft			($length, $indent) = line_stats($rawline);
20050a920b5bSAndy Whitcroft
20060a920b5bSAndy Whitcroft			# Track the previous line.
20070a920b5bSAndy Whitcroft			($prevline, $stashline) = ($stashline, $line);
20080a920b5bSAndy Whitcroft			($previndent, $stashindent) = ($stashindent, $indent);
2009c2fdda0dSAndy Whitcroft			($prevrawline, $stashrawline) = ($stashrawline, $rawline);
2010c2fdda0dSAndy Whitcroft
2011773647a0SAndy Whitcroft			#warn "line<$line>\n";
20126c72ffaaSAndy Whitcroft
2013d8aaf121SAndy Whitcroft		} elsif ($realcnt == 1) {
2014d8aaf121SAndy Whitcroft			$realcnt--;
20150a920b5bSAndy Whitcroft		}
20160a920b5bSAndy Whitcroft
2017cc77cdcaSAndy Whitcroft		my $hunk_line = ($realcnt != 0);
2018cc77cdcaSAndy Whitcroft
20190a920b5bSAndy Whitcroft#make up the handle for any error we report on this line
2020773647a0SAndy Whitcroft		$prefix = "$filename:$realline: " if ($emacs && $file);
2021773647a0SAndy Whitcroft		$prefix = "$filename:$linenr: " if ($emacs && !$file);
2022773647a0SAndy Whitcroft
20236c72ffaaSAndy Whitcroft		$here = "#$linenr: " if (!$file);
20246c72ffaaSAndy Whitcroft		$here = "#$realline: " if ($file);
2025773647a0SAndy Whitcroft
20262ac73b4fSJoe Perches		my $found_file = 0;
2027773647a0SAndy Whitcroft		# extract the filename as it passes
20283bf9a009SRabin Vincent		if ($line =~ /^diff --git.*?(\S+)$/) {
20293bf9a009SRabin Vincent			$realfile = $1;
20302b7ab453SJoe Perches			$realfile =~ s@^([^/]*)/@@ if (!$file);
2031270c49a0SJoe Perches			$in_commit_log = 0;
20322ac73b4fSJoe Perches			$found_file = 1;
20333bf9a009SRabin Vincent		} elsif ($line =~ /^\+\+\+\s+(\S+)/) {
2034773647a0SAndy Whitcroft			$realfile = $1;
20352b7ab453SJoe Perches			$realfile =~ s@^([^/]*)/@@ if (!$file);
2036270c49a0SJoe Perches			$in_commit_log = 0;
20371e855726SWolfram Sang
20381e855726SWolfram Sang			$p1_prefix = $1;
2039e2f7aa4bSAndy Whitcroft			if (!$file && $tree && $p1_prefix ne '' &&
2040e2f7aa4bSAndy Whitcroft			    -e "$root/$p1_prefix") {
2041000d1cc1SJoe Perches				WARN("PATCH_PREFIX",
2042000d1cc1SJoe Perches				     "patch prefix '$p1_prefix' exists, appears to be a -p0 patch\n");
20431e855726SWolfram Sang			}
2044773647a0SAndy Whitcroft
2045c1ab3326SAndy Whitcroft			if ($realfile =~ m@^include/asm/@) {
2046000d1cc1SJoe Perches				ERROR("MODIFIED_INCLUDE_ASM",
2047000d1cc1SJoe Perches				      "do not modify files in include/asm, change architecture specific files in include/asm-<architecture>\n" . "$here$rawline\n");
2048773647a0SAndy Whitcroft			}
20492ac73b4fSJoe Perches			$found_file = 1;
20502ac73b4fSJoe Perches		}
20512ac73b4fSJoe Perches
20522ac73b4fSJoe Perches		if ($found_file) {
20532ac73b4fSJoe Perches			if ($realfile =~ m@^(drivers/net/|net/)@) {
20542ac73b4fSJoe Perches				$check = 1;
20552ac73b4fSJoe Perches			} else {
20562ac73b4fSJoe Perches				$check = $check_orig;
20572ac73b4fSJoe Perches			}
2058773647a0SAndy Whitcroft			next;
2059773647a0SAndy Whitcroft		}
2060773647a0SAndy Whitcroft
2061389834b6SRandy Dunlap		$here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
20620a920b5bSAndy Whitcroft
2063c2fdda0dSAndy Whitcroft		my $hereline = "$here\n$rawline\n";
2064c2fdda0dSAndy Whitcroft		my $herecurr = "$here\n$rawline\n";
2065c2fdda0dSAndy Whitcroft		my $hereprev = "$here\n$prevrawline\n$rawline\n";
20660a920b5bSAndy Whitcroft
20676c72ffaaSAndy Whitcroft		$cnt_lines++ if ($realcnt != 0);
20686c72ffaaSAndy Whitcroft
20693bf9a009SRabin Vincent# Check for incorrect file permissions
20703bf9a009SRabin Vincent		if ($line =~ /^new (file )?mode.*[7531]\d{0,2}$/) {
20713bf9a009SRabin Vincent			my $permhere = $here . "FILE: $realfile\n";
207204db4d25SJoe Perches			if ($realfile !~ m@scripts/@ &&
207304db4d25SJoe Perches			    $realfile !~ /\.(py|pl|awk|sh)$/) {
2074000d1cc1SJoe Perches				ERROR("EXECUTE_PERMISSIONS",
2075000d1cc1SJoe Perches				      "do not set execute permissions for source files\n" . $permhere);
20763bf9a009SRabin Vincent			}
20773bf9a009SRabin Vincent		}
20783bf9a009SRabin Vincent
207920112475SJoe Perches# Check the patch for a signoff:
2080d8aaf121SAndy Whitcroft		if ($line =~ /^\s*signed-off-by:/i) {
20814a0df2efSAndy Whitcroft			$signoff++;
208215662b3eSJoe Perches			$in_commit_log = 0;
20830a920b5bSAndy Whitcroft		}
208420112475SJoe Perches
208520112475SJoe Perches# Check signature styles
2086270c49a0SJoe Perches		if (!$in_header_lines &&
2087ce0338dfSJoe Perches		    $line =~ /^(\s*)([a-z0-9_-]+by:|$signature_tags)(\s*)(.*)/i) {
208820112475SJoe Perches			my $space_before = $1;
208920112475SJoe Perches			my $sign_off = $2;
209020112475SJoe Perches			my $space_after = $3;
209120112475SJoe Perches			my $email = $4;
209220112475SJoe Perches			my $ucfirst_sign_off = ucfirst(lc($sign_off));
209320112475SJoe Perches
2094ce0338dfSJoe Perches			if ($sign_off !~ /$signature_tags/) {
2095ce0338dfSJoe Perches				WARN("BAD_SIGN_OFF",
2096ce0338dfSJoe Perches				     "Non-standard signature: $sign_off\n" . $herecurr);
2097ce0338dfSJoe Perches			}
209820112475SJoe Perches			if (defined $space_before && $space_before ne "") {
20993705ce5bSJoe Perches				if (WARN("BAD_SIGN_OFF",
21003705ce5bSJoe Perches					 "Do not use whitespace before $ucfirst_sign_off\n" . $herecurr) &&
21013705ce5bSJoe Perches				    $fix) {
2102194f66fcSJoe Perches					$fixed[$fixlinenr] =
21033705ce5bSJoe Perches					    "$ucfirst_sign_off $email";
21043705ce5bSJoe Perches				}
210520112475SJoe Perches			}
210620112475SJoe Perches			if ($sign_off =~ /-by:$/i && $sign_off ne $ucfirst_sign_off) {
21073705ce5bSJoe Perches				if (WARN("BAD_SIGN_OFF",
21083705ce5bSJoe Perches					 "'$ucfirst_sign_off' is the preferred signature form\n" . $herecurr) &&
21093705ce5bSJoe Perches				    $fix) {
2110194f66fcSJoe Perches					$fixed[$fixlinenr] =
21113705ce5bSJoe Perches					    "$ucfirst_sign_off $email";
21123705ce5bSJoe Perches				}
21133705ce5bSJoe Perches
211420112475SJoe Perches			}
211520112475SJoe Perches			if (!defined $space_after || $space_after ne " ") {
21163705ce5bSJoe Perches				if (WARN("BAD_SIGN_OFF",
21173705ce5bSJoe Perches					 "Use a single space after $ucfirst_sign_off\n" . $herecurr) &&
21183705ce5bSJoe Perches				    $fix) {
2119194f66fcSJoe Perches					$fixed[$fixlinenr] =
21203705ce5bSJoe Perches					    "$ucfirst_sign_off $email";
21213705ce5bSJoe Perches				}
212220112475SJoe Perches			}
212320112475SJoe Perches
212420112475SJoe Perches			my ($email_name, $email_address, $comment) = parse_email($email);
212520112475SJoe Perches			my $suggested_email = format_email(($email_name, $email_address));
212620112475SJoe Perches			if ($suggested_email eq "") {
2127000d1cc1SJoe Perches				ERROR("BAD_SIGN_OFF",
2128000d1cc1SJoe Perches				      "Unrecognized email address: '$email'\n" . $herecurr);
212920112475SJoe Perches			} else {
213020112475SJoe Perches				my $dequoted = $suggested_email;
213120112475SJoe Perches				$dequoted =~ s/^"//;
213220112475SJoe Perches				$dequoted =~ s/" </ </;
213320112475SJoe Perches				# Don't force email to have quotes
213420112475SJoe Perches				# Allow just an angle bracketed address
213520112475SJoe Perches				if ("$dequoted$comment" ne $email &&
213620112475SJoe Perches				    "<$email_address>$comment" ne $email &&
213720112475SJoe Perches				    "$suggested_email$comment" ne $email) {
2138000d1cc1SJoe Perches					WARN("BAD_SIGN_OFF",
2139000d1cc1SJoe Perches					     "email address '$email' might be better as '$suggested_email$comment'\n" . $herecurr);
214020112475SJoe Perches				}
21410a920b5bSAndy Whitcroft			}
21427e51f197SJoe Perches
21437e51f197SJoe Perches# Check for duplicate signatures
21447e51f197SJoe Perches			my $sig_nospace = $line;
21457e51f197SJoe Perches			$sig_nospace =~ s/\s//g;
21467e51f197SJoe Perches			$sig_nospace = lc($sig_nospace);
21477e51f197SJoe Perches			if (defined $signatures{$sig_nospace}) {
21487e51f197SJoe Perches				WARN("BAD_SIGN_OFF",
21497e51f197SJoe Perches				     "Duplicate signature\n" . $herecurr);
21507e51f197SJoe Perches			} else {
21517e51f197SJoe Perches				$signatures{$sig_nospace} = 1;
21527e51f197SJoe Perches			}
21530a920b5bSAndy Whitcroft		}
21540a920b5bSAndy Whitcroft
21559b3189ebSJoe Perches# Check for old stable address
21569b3189ebSJoe Perches		if ($line =~ /^\s*cc:\s*.*<?\bstable\@kernel\.org\b>?.*$/i) {
21579b3189ebSJoe Perches			ERROR("STABLE_ADDRESS",
21589b3189ebSJoe Perches			      "The 'stable' address should be 'stable\@vger.kernel.org'\n" . $herecurr);
21599b3189ebSJoe Perches		}
21609b3189ebSJoe Perches
21617ebd05efSChristopher Covington# Check for unwanted Gerrit info
21627ebd05efSChristopher Covington		if ($in_commit_log && $line =~ /^\s*change-id:/i) {
21637ebd05efSChristopher Covington			ERROR("GERRIT_CHANGE_ID",
21647ebd05efSChristopher Covington			      "Remove Gerrit Change-Id's before submitting upstream.\n" . $herecurr);
21657ebd05efSChristopher Covington		}
21667ebd05efSChristopher Covington
2167d311cd44SJoe Perches# Check for improperly formed commit descriptions
2168d311cd44SJoe Perches		if ($in_commit_log &&
2169d311cd44SJoe Perches		    $line =~ /\bcommit\s+[0-9a-f]{5,}/i &&
217066881735SJoe Perches		    !($line =~ /\b[Cc]ommit [0-9a-f]{12,40} \("/ ||
217166881735SJoe Perches		      ($line =~ /\b[Cc]ommit [0-9a-f]{12,40}\s*$/ &&
217266881735SJoe Perches		       defined $rawlines[$linenr] &&
217366881735SJoe Perches		       $rawlines[$linenr] =~ /^\s*\("/))) {
2174d311cd44SJoe Perches			$line =~ /\b(c)ommit\s+([0-9a-f]{5,})/i;
2175d311cd44SJoe Perches			my $init_char = $1;
2176d311cd44SJoe Perches			my $orig_commit = lc($2);
2177d311cd44SJoe Perches			my $id = '01234567890ab';
2178d311cd44SJoe Perches			my $desc = 'commit description';
2179d311cd44SJoe Perches		        ($id, $desc) = git_commit_info($orig_commit, $id, $desc);
2180d311cd44SJoe Perches			ERROR("GIT_COMMIT_ID",
21813f6316b4SJoe Perches			      "Please use 12 or more chars for the git commit ID like: '${init_char}ommit $id (\"$desc\")'\n" . $herecurr);
2182d311cd44SJoe Perches		}
2183d311cd44SJoe Perches
218413f1937eSJoe Perches# Check for added, moved or deleted files
218513f1937eSJoe Perches		if (!$reported_maintainer_file && !$in_commit_log &&
218613f1937eSJoe Perches		    ($line =~ /^(?:new|deleted) file mode\s*\d+\s*$/ ||
218713f1937eSJoe Perches		     $line =~ /^rename (?:from|to) [\w\/\.\-]+\s*$/ ||
218813f1937eSJoe Perches		     ($line =~ /\{\s*([\w\/\.\-]*)\s*\=\>\s*([\w\/\.\-]*)\s*\}/ &&
218913f1937eSJoe Perches		      (defined($1) || defined($2))))) {
219013f1937eSJoe Perches			$reported_maintainer_file = 1;
219113f1937eSJoe Perches			WARN("FILE_PATH_CHANGES",
219213f1937eSJoe Perches			     "added, moved or deleted file(s), does MAINTAINERS need updating?\n" . $herecurr);
219313f1937eSJoe Perches		}
219413f1937eSJoe Perches
219500df344fSAndy Whitcroft# Check for wrappage within a valid hunk of the file
21968905a67cSAndy Whitcroft		if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) {
2197000d1cc1SJoe Perches			ERROR("CORRUPTED_PATCH",
2198000d1cc1SJoe Perches			      "patch seems to be corrupt (line wrapped?)\n" .
21996c72ffaaSAndy Whitcroft				$herecurr) if (!$emitted_corrupt++);
2200de7d4f0eSAndy Whitcroft		}
2201de7d4f0eSAndy Whitcroft
22026ecd9674SAndy Whitcroft# Check for absolute kernel paths.
22036ecd9674SAndy Whitcroft		if ($tree) {
22046ecd9674SAndy Whitcroft			while ($line =~ m{(?:^|\s)(/\S*)}g) {
22056ecd9674SAndy Whitcroft				my $file = $1;
22066ecd9674SAndy Whitcroft
22076ecd9674SAndy Whitcroft				if ($file =~ m{^(.*?)(?::\d+)+:?$} &&
22086ecd9674SAndy Whitcroft				    check_absolute_file($1, $herecurr)) {
22096ecd9674SAndy Whitcroft					#
22106ecd9674SAndy Whitcroft				} else {
22116ecd9674SAndy Whitcroft					check_absolute_file($file, $herecurr);
22126ecd9674SAndy Whitcroft				}
22136ecd9674SAndy Whitcroft			}
22146ecd9674SAndy Whitcroft		}
22156ecd9674SAndy Whitcroft
2216de7d4f0eSAndy Whitcroft# UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
2217de7d4f0eSAndy Whitcroft		if (($realfile =~ /^$/ || $line =~ /^\+/) &&
2218171ae1a4SAndy Whitcroft		    $rawline !~ m/^$UTF8*$/) {
2219171ae1a4SAndy Whitcroft			my ($utf8_prefix) = ($rawline =~ /^($UTF8*)/);
2220171ae1a4SAndy Whitcroft
2221171ae1a4SAndy Whitcroft			my $blank = copy_spacing($rawline);
2222171ae1a4SAndy Whitcroft			my $ptr = substr($blank, 0, length($utf8_prefix)) . "^";
2223171ae1a4SAndy Whitcroft			my $hereptr = "$hereline$ptr\n";
2224171ae1a4SAndy Whitcroft
222534d99219SJoe Perches			CHK("INVALID_UTF8",
2226000d1cc1SJoe Perches			    "Invalid UTF-8, patch and commit message should be encoded in UTF-8\n" . $hereptr);
222700df344fSAndy Whitcroft		}
22280a920b5bSAndy Whitcroft
222915662b3eSJoe Perches# Check if it's the start of a commit log
223015662b3eSJoe Perches# (not a header line and we haven't seen the patch filename)
223115662b3eSJoe Perches		if ($in_header_lines && $realfile =~ /^$/ &&
223229ee1b0cSJoe Perches		    !($rawline =~ /^\s+\S/ ||
223329ee1b0cSJoe Perches		      $rawline =~ /^(commit\b|from\b|[\w-]+:).*$/i)) {
223415662b3eSJoe Perches			$in_header_lines = 0;
223515662b3eSJoe Perches			$in_commit_log = 1;
223615662b3eSJoe Perches		}
223715662b3eSJoe Perches
2238fa64205dSPasi Savanainen# Check if there is UTF-8 in a commit log when a mail header has explicitly
2239fa64205dSPasi Savanainen# declined it, i.e defined some charset where it is missing.
2240fa64205dSPasi Savanainen		if ($in_header_lines &&
2241fa64205dSPasi Savanainen		    $rawline =~ /^Content-Type:.+charset="(.+)".*$/ &&
2242fa64205dSPasi Savanainen		    $1 !~ /utf-8/i) {
2243fa64205dSPasi Savanainen			$non_utf8_charset = 1;
2244fa64205dSPasi Savanainen		}
2245fa64205dSPasi Savanainen
2246fa64205dSPasi Savanainen		if ($in_commit_log && $non_utf8_charset && $realfile =~ /^$/ &&
224715662b3eSJoe Perches		    $rawline =~ /$NON_ASCII_UTF8/) {
2248fa64205dSPasi Savanainen			WARN("UTF8_BEFORE_PATCH",
224915662b3eSJoe Perches			    "8-bit UTF-8 used in possible commit log\n" . $herecurr);
225015662b3eSJoe Perches		}
225115662b3eSJoe Perches
225266b47b4aSKees Cook# Check for various typo / spelling mistakes
225336061e38SJoe Perches		if (defined($misspellings) && ($in_commit_log || $line =~ /^\+/)) {
225466b47b4aSKees Cook			while ($rawline =~ /(?:^|[^a-z@])($misspellings)(?:$|[^a-z@])/gi) {
225566b47b4aSKees Cook				my $typo = $1;
225666b47b4aSKees Cook				my $typo_fix = $spelling_fix{lc($typo)};
225766b47b4aSKees Cook				$typo_fix = ucfirst($typo_fix) if ($typo =~ /^[A-Z]/);
225866b47b4aSKees Cook				$typo_fix = uc($typo_fix) if ($typo =~ /^[A-Z]+$/);
225966b47b4aSKees Cook				my $msg_type = \&WARN;
226066b47b4aSKees Cook				$msg_type = \&CHK if ($file);
226166b47b4aSKees Cook				if (&{$msg_type}("TYPO_SPELLING",
226266b47b4aSKees Cook						 "'$typo' may be misspelled - perhaps '$typo_fix'?\n" . $herecurr) &&
226366b47b4aSKees Cook				    $fix) {
226466b47b4aSKees Cook					$fixed[$fixlinenr] =~ s/(^|[^A-Za-z@])($typo)($|[^A-Za-z@])/$1$typo_fix$3/;
226566b47b4aSKees Cook				}
226666b47b4aSKees Cook			}
226766b47b4aSKees Cook		}
226866b47b4aSKees Cook
226930670854SAndy Whitcroft# ignore non-hunk lines and lines being removed
227030670854SAndy Whitcroft		next if (!$hunk_line || $line =~ /^-/);
227100df344fSAndy Whitcroft
22720a920b5bSAndy Whitcroft#trailing whitespace
22739c0ca6f9SAndy Whitcroft		if ($line =~ /^\+.*\015/) {
2274c2fdda0dSAndy Whitcroft			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
2275d5e616fcSJoe Perches			if (ERROR("DOS_LINE_ENDINGS",
2276d5e616fcSJoe Perches				  "DOS line endings\n" . $herevet) &&
2277d5e616fcSJoe Perches			    $fix) {
2278194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/[\s\015]+$//;
2279d5e616fcSJoe Perches			}
2280c2fdda0dSAndy Whitcroft		} elsif ($rawline =~ /^\+.*\S\s+$/ || $rawline =~ /^\+\s+$/) {
2281c2fdda0dSAndy Whitcroft			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
22823705ce5bSJoe Perches			if (ERROR("TRAILING_WHITESPACE",
22833705ce5bSJoe Perches				  "trailing whitespace\n" . $herevet) &&
22843705ce5bSJoe Perches			    $fix) {
2285194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\s+$//;
22863705ce5bSJoe Perches			}
22873705ce5bSJoe Perches
2288d2c0a235SAndy Whitcroft			$rpt_cleaners = 1;
22890a920b5bSAndy Whitcroft		}
22905368df20SAndy Whitcroft
22914783f894SJosh Triplett# Check for FSF mailing addresses.
2292109d8cb2SAlexander Duyck		if ($rawline =~ /\bwrite to the Free/i ||
22933e2232f2SJoe Perches		    $rawline =~ /\b59\s+Temple\s+Pl/i ||
22943e2232f2SJoe Perches		    $rawline =~ /\b51\s+Franklin\s+St/i) {
22954783f894SJosh Triplett			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
22964783f894SJosh Triplett			my $msg_type = \&ERROR;
22974783f894SJosh Triplett			$msg_type = \&CHK if ($file);
22984783f894SJosh Triplett			&{$msg_type}("FSF_MAILING_ADDRESS",
22994783f894SJosh Triplett				     "Do not include the paragraph about writing to the Free Software Foundation's mailing address from the sample GPL notice. The FSF has changed addresses in the past, and may do so again. Linux already includes a copy of the GPL.\n" . $herevet)
23004783f894SJosh Triplett		}
23014783f894SJosh Triplett
23023354957aSAndi Kleen# check for Kconfig help text having a real description
23039fe287d7SAndy Whitcroft# Only applies when adding the entry originally, after that we do not have
23049fe287d7SAndy Whitcroft# sufficient context to determine whether it is indeed long enough.
23053354957aSAndi Kleen		if ($realfile =~ /Kconfig/ &&
23068d73e0e7SJoe Perches		    $line =~ /^\+\s*config\s+/) {
23073354957aSAndi Kleen			my $length = 0;
23089fe287d7SAndy Whitcroft			my $cnt = $realcnt;
23099fe287d7SAndy Whitcroft			my $ln = $linenr + 1;
23109fe287d7SAndy Whitcroft			my $f;
2311a1385803SAndy Whitcroft			my $is_start = 0;
23129fe287d7SAndy Whitcroft			my $is_end = 0;
2313a1385803SAndy Whitcroft			for (; $cnt > 0 && defined $lines[$ln - 1]; $ln++) {
23149fe287d7SAndy Whitcroft				$f = $lines[$ln - 1];
23159fe287d7SAndy Whitcroft				$cnt-- if ($lines[$ln - 1] !~ /^-/);
23169fe287d7SAndy Whitcroft				$is_end = $lines[$ln - 1] =~ /^\+/;
23179fe287d7SAndy Whitcroft
23189fe287d7SAndy Whitcroft				next if ($f =~ /^-/);
23198d73e0e7SJoe Perches				last if (!$file && $f =~ /^\@\@/);
2320a1385803SAndy Whitcroft
23218d73e0e7SJoe Perches				if ($lines[$ln - 1] =~ /^\+\s*(?:bool|tristate)\s*\"/) {
2322a1385803SAndy Whitcroft					$is_start = 1;
23238d73e0e7SJoe Perches				} elsif ($lines[$ln - 1] =~ /^\+\s*(?:---)?help(?:---)?$/) {
2324a1385803SAndy Whitcroft					$length = -1;
2325a1385803SAndy Whitcroft				}
2326a1385803SAndy Whitcroft
23279fe287d7SAndy Whitcroft				$f =~ s/^.//;
23283354957aSAndi Kleen				$f =~ s/#.*//;
23293354957aSAndi Kleen				$f =~ s/^\s+//;
23303354957aSAndi Kleen				next if ($f =~ /^$/);
23319fe287d7SAndy Whitcroft				if ($f =~ /^\s*config\s/) {
23329fe287d7SAndy Whitcroft					$is_end = 1;
23339fe287d7SAndy Whitcroft					last;
23349fe287d7SAndy Whitcroft				}
23353354957aSAndi Kleen				$length++;
23363354957aSAndi Kleen			}
233756193274SVadim Bendebury			if ($is_start && $is_end && $length < $min_conf_desc_length) {
2338000d1cc1SJoe Perches				WARN("CONFIG_DESCRIPTION",
233956193274SVadim Bendebury				     "please write a paragraph that describes the config symbol fully\n" . $herecurr);
234056193274SVadim Bendebury			}
2341a1385803SAndy Whitcroft			#print "is_start<$is_start> is_end<$is_end> length<$length>\n";
23423354957aSAndi Kleen		}
23433354957aSAndi Kleen
23441ba8dfd1SKees Cook# discourage the addition of CONFIG_EXPERIMENTAL in Kconfig.
23451ba8dfd1SKees Cook		if ($realfile =~ /Kconfig/ &&
23461ba8dfd1SKees Cook		    $line =~ /.\s*depends on\s+.*\bEXPERIMENTAL\b/) {
23471ba8dfd1SKees Cook			WARN("CONFIG_EXPERIMENTAL",
23481ba8dfd1SKees Cook			     "Use of CONFIG_EXPERIMENTAL is deprecated. For alternatives, see https://lkml.org/lkml/2012/10/23/580\n");
23491ba8dfd1SKees Cook		}
23501ba8dfd1SKees Cook
2351c68e5878SArnaud Lacombe		if (($realfile =~ /Makefile.*/ || $realfile =~ /Kbuild.*/) &&
2352c68e5878SArnaud Lacombe		    ($line =~ /\+(EXTRA_[A-Z]+FLAGS).*/)) {
2353c68e5878SArnaud Lacombe			my $flag = $1;
2354c68e5878SArnaud Lacombe			my $replacement = {
2355c68e5878SArnaud Lacombe				'EXTRA_AFLAGS' =>   'asflags-y',
2356c68e5878SArnaud Lacombe				'EXTRA_CFLAGS' =>   'ccflags-y',
2357c68e5878SArnaud Lacombe				'EXTRA_CPPFLAGS' => 'cppflags-y',
2358c68e5878SArnaud Lacombe				'EXTRA_LDFLAGS' =>  'ldflags-y',
2359c68e5878SArnaud Lacombe			};
2360c68e5878SArnaud Lacombe
2361c68e5878SArnaud Lacombe			WARN("DEPRECATED_VARIABLE",
2362c68e5878SArnaud Lacombe			     "Use of $flag is deprecated, please use \`$replacement->{$flag} instead.\n" . $herecurr) if ($replacement->{$flag});
2363c68e5878SArnaud Lacombe		}
2364c68e5878SArnaud Lacombe
2365bff5da43SRob Herring# check for DT compatible documentation
23667dd05b38SFlorian Vaussard		if (defined $root &&
23677dd05b38SFlorian Vaussard			(($realfile =~ /\.dtsi?$/ && $line =~ /^\+\s*compatible\s*=\s*\"/) ||
23687dd05b38SFlorian Vaussard			 ($realfile =~ /\.[ch]$/ && $line =~ /^\+.*\.compatible\s*=\s*\"/))) {
23697dd05b38SFlorian Vaussard
2370bff5da43SRob Herring			my @compats = $rawline =~ /\"([a-zA-Z0-9\-\,\.\+_]+)\"/g;
2371bff5da43SRob Herring
2372cc93319bSFlorian Vaussard			my $dt_path = $root . "/Documentation/devicetree/bindings/";
2373cc93319bSFlorian Vaussard			my $vp_file = $dt_path . "vendor-prefixes.txt";
2374cc93319bSFlorian Vaussard
2375bff5da43SRob Herring			foreach my $compat (@compats) {
2376bff5da43SRob Herring				my $compat2 = $compat;
2377185d566bSRob Herring				$compat2 =~ s/\,[a-zA-Z0-9]*\-/\,<\.\*>\-/;
2378185d566bSRob Herring				my $compat3 = $compat;
2379185d566bSRob Herring				$compat3 =~ s/\,([a-z]*)[0-9]*\-/\,$1<\.\*>\-/;
2380185d566bSRob Herring				`grep -Erq "$compat|$compat2|$compat3" $dt_path`;
2381bff5da43SRob Herring				if ( $? >> 8 ) {
2382bff5da43SRob Herring					WARN("UNDOCUMENTED_DT_STRING",
2383bff5da43SRob Herring					     "DT compatible string \"$compat\" appears un-documented -- check $dt_path\n" . $herecurr);
2384bff5da43SRob Herring				}
2385bff5da43SRob Herring
23864fbf32a6SFlorian Vaussard				next if $compat !~ /^([a-zA-Z0-9\-]+)\,/;
23874fbf32a6SFlorian Vaussard				my $vendor = $1;
2388cc93319bSFlorian Vaussard				`grep -Eq "^$vendor\\b" $vp_file`;
2389bff5da43SRob Herring				if ( $? >> 8 ) {
2390bff5da43SRob Herring					WARN("UNDOCUMENTED_DT_STRING",
2391cc93319bSFlorian Vaussard					     "DT compatible string vendor \"$vendor\" appears un-documented -- check $vp_file\n" . $herecurr);
2392bff5da43SRob Herring				}
2393bff5da43SRob Herring			}
2394bff5da43SRob Herring		}
2395bff5da43SRob Herring
23965368df20SAndy Whitcroft# check we are in a valid source file if not then ignore this hunk
2397de4c924cSGeert Uytterhoeven		next if ($realfile !~ /\.(h|c|s|S|pl|sh|dtsi|dts)$/);
23985368df20SAndy Whitcroft
23996cd7f386SJoe Perches#line length limit
2400c45dcabdSAndy Whitcroft		if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ &&
2401f4c014c0SAndy Whitcroft		    $rawline !~ /^.\s*\*\s*\@$Ident\s/ &&
24020fccc622SJoe Perches		    !($line =~ /^\+\s*$logFunctions\s*\(\s*(?:(KERN_\S+\s*|[^"]*))?"[X\t]*"\s*(?:|,|\)\s*;)\s*$/ ||
24038bbea968SJoe Perches		    $line =~ /^\+\s*"[^"]*"\s*(?:\s*|,|\)\s*;)\s*$/) &&
24046cd7f386SJoe Perches		    $length > $max_line_length)
2405c45dcabdSAndy Whitcroft		{
2406000d1cc1SJoe Perches			WARN("LONG_LINE",
24076cd7f386SJoe Perches			     "line over $max_line_length characters\n" . $herecurr);
24080a920b5bSAndy Whitcroft		}
24090a920b5bSAndy Whitcroft
2410ca56dc09SJosh Triplett# Check for user-visible strings broken across lines, which breaks the ability
24118c5fcd24SJoe Perches# to grep for the string.  Make exceptions when the previous string ends in a
24128c5fcd24SJoe Perches# newline (multiple lines in one string constant) or '\t', '\r', ';', or '{'
24138c5fcd24SJoe Perches# (common in inline assembly) or is a octal \123 or hexadecimal \xaf value
2414ca56dc09SJosh Triplett		if ($line =~ /^\+\s*"/ &&
2415ca56dc09SJosh Triplett		    $prevline =~ /"\s*$/ &&
24168c5fcd24SJoe Perches		    $prevrawline !~ /(?:\\(?:[ntr]|[0-7]{1,3}|x[0-9a-fA-F]{1,2})|;\s*|\{\s*)"\s*$/) {
2417ca56dc09SJosh Triplett			WARN("SPLIT_STRING",
2418ca56dc09SJosh Triplett			     "quoted string split across lines\n" . $hereprev);
2419ca56dc09SJosh Triplett		}
2420ca56dc09SJosh Triplett
2421ece9659fSDan Carpenter# check for missing a space in a string concatination
2422ece9659fSDan Carpenter		if ($prevrawline =~ /[^\\]\w"$/ && $rawline =~ /^\+[\t ]+"\w/) {
2423ece9659fSDan Carpenter			WARN('MISSING_SPACE',
2424ece9659fSDan Carpenter			     "break quoted strings at a space character\n" . $hereprev);
2425ece9659fSDan Carpenter		}
2426ece9659fSDan Carpenter
24275e79d96eSJoe Perches# check for spaces before a quoted newline
24285e79d96eSJoe Perches		if ($rawline =~ /^.*\".*\s\\n/) {
24293705ce5bSJoe Perches			if (WARN("QUOTED_WHITESPACE_BEFORE_NEWLINE",
24303705ce5bSJoe Perches				 "unnecessary whitespace before a quoted newline\n" . $herecurr) &&
24313705ce5bSJoe Perches			    $fix) {
2432194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/^(\+.*\".*)\s+\\n/$1\\n/;
24333705ce5bSJoe Perches			}
24343705ce5bSJoe Perches
24355e79d96eSJoe Perches		}
24365e79d96eSJoe Perches
24378905a67cSAndy Whitcroft# check for adding lines without a newline.
24388905a67cSAndy Whitcroft		if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
2439000d1cc1SJoe Perches			WARN("MISSING_EOF_NEWLINE",
2440000d1cc1SJoe Perches			     "adding a line without newline at end of file\n" . $herecurr);
24418905a67cSAndy Whitcroft		}
24428905a67cSAndy Whitcroft
244342e41c54SMike Frysinger# Blackfin: use hi/lo macros
244442e41c54SMike Frysinger		if ($realfile =~ m@arch/blackfin/.*\.S$@) {
244542e41c54SMike Frysinger			if ($line =~ /\.[lL][[:space:]]*=.*&[[:space:]]*0x[fF][fF][fF][fF]/) {
244642e41c54SMike Frysinger				my $herevet = "$here\n" . cat_vet($line) . "\n";
2447000d1cc1SJoe Perches				ERROR("LO_MACRO",
2448000d1cc1SJoe Perches				      "use the LO() macro, not (... & 0xFFFF)\n" . $herevet);
244942e41c54SMike Frysinger			}
245042e41c54SMike Frysinger			if ($line =~ /\.[hH][[:space:]]*=.*>>[[:space:]]*16/) {
245142e41c54SMike Frysinger				my $herevet = "$here\n" . cat_vet($line) . "\n";
2452000d1cc1SJoe Perches				ERROR("HI_MACRO",
2453000d1cc1SJoe Perches				      "use the HI() macro, not (... >> 16)\n" . $herevet);
245442e41c54SMike Frysinger			}
245542e41c54SMike Frysinger		}
245642e41c54SMike Frysinger
2457b9ea10d6SAndy Whitcroft# check we are in a valid source file C or perl if not then ignore this hunk
2458de4c924cSGeert Uytterhoeven		next if ($realfile !~ /\.(h|c|pl|dtsi|dts)$/);
24590a920b5bSAndy Whitcroft
24600a920b5bSAndy Whitcroft# at the beginning of a line any tabs must come first and anything
24610a920b5bSAndy Whitcroft# more than 8 must use tabs.
2462c2fdda0dSAndy Whitcroft		if ($rawline =~ /^\+\s* \t\s*\S/ ||
2463c2fdda0dSAndy Whitcroft		    $rawline =~ /^\+\s*        \s*/) {
2464c2fdda0dSAndy Whitcroft			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
2465d2c0a235SAndy Whitcroft			$rpt_cleaners = 1;
24663705ce5bSJoe Perches			if (ERROR("CODE_INDENT",
24673705ce5bSJoe Perches				  "code indent should use tabs where possible\n" . $herevet) &&
24683705ce5bSJoe Perches			    $fix) {
2469194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/^\+([ \t]+)/"\+" . tabify($1)/e;
24703705ce5bSJoe Perches			}
24710a920b5bSAndy Whitcroft		}
24720a920b5bSAndy Whitcroft
247308e44365SAlberto Panizzo# check for space before tabs.
247408e44365SAlberto Panizzo		if ($rawline =~ /^\+/ && $rawline =~ / \t/) {
247508e44365SAlberto Panizzo			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
24763705ce5bSJoe Perches			if (WARN("SPACE_BEFORE_TAB",
24773705ce5bSJoe Perches				"please, no space before tabs\n" . $herevet) &&
24783705ce5bSJoe Perches			    $fix) {
2479194f66fcSJoe Perches				while ($fixed[$fixlinenr] =~
2480d2207ccbSJoe Perches					   s/(^\+.*) {8,8}\t/$1\t\t/) {}
2481194f66fcSJoe Perches				while ($fixed[$fixlinenr] =~
2482c76f4cb3SJoe Perches					   s/(^\+.*) +\t/$1\t/) {}
24833705ce5bSJoe Perches			}
248408e44365SAlberto Panizzo		}
248508e44365SAlberto Panizzo
2486d1fe9c09SJoe Perches# check for && or || at the start of a line
2487d1fe9c09SJoe Perches		if ($rawline =~ /^\+\s*(&&|\|\|)/) {
2488d1fe9c09SJoe Perches			CHK("LOGICAL_CONTINUATIONS",
2489d1fe9c09SJoe Perches			    "Logical continuations should be on the previous line\n" . $hereprev);
2490d1fe9c09SJoe Perches		}
2491d1fe9c09SJoe Perches
2492d1fe9c09SJoe Perches# check multi-line statement indentation matches previous line
2493d1fe9c09SJoe Perches		if ($^V && $^V ge 5.10.0 &&
249491cb5195SJoe Perches		    $prevline =~ /^\+([ \t]*)((?:$c90_Keywords(?:\s+if)\s*)|(?:$Declare\s*)?(?:$Ident|\(\s*\*\s*$Ident\s*\))\s*|$Ident\s*=\s*$Ident\s*)\(.*(\&\&|\|\||,)\s*$/) {
2495d1fe9c09SJoe Perches			$prevline =~ /^\+(\t*)(.*)$/;
2496d1fe9c09SJoe Perches			my $oldindent = $1;
2497d1fe9c09SJoe Perches			my $rest = $2;
2498d1fe9c09SJoe Perches
2499d1fe9c09SJoe Perches			my $pos = pos_last_openparen($rest);
2500d1fe9c09SJoe Perches			if ($pos >= 0) {
2501b34a26f3SJoe Perches				$line =~ /^(\+| )([ \t]*)/;
2502b34a26f3SJoe Perches				my $newindent = $2;
2503d1fe9c09SJoe Perches
2504d1fe9c09SJoe Perches				my $goodtabindent = $oldindent .
2505d1fe9c09SJoe Perches					"\t" x ($pos / 8) .
2506d1fe9c09SJoe Perches					" "  x ($pos % 8);
2507d1fe9c09SJoe Perches				my $goodspaceindent = $oldindent . " "  x $pos;
2508d1fe9c09SJoe Perches
2509d1fe9c09SJoe Perches				if ($newindent ne $goodtabindent &&
2510d1fe9c09SJoe Perches				    $newindent ne $goodspaceindent) {
25113705ce5bSJoe Perches
25123705ce5bSJoe Perches					if (CHK("PARENTHESIS_ALIGNMENT",
25133705ce5bSJoe Perches						"Alignment should match open parenthesis\n" . $hereprev) &&
25143705ce5bSJoe Perches					    $fix && $line =~ /^\+/) {
2515194f66fcSJoe Perches						$fixed[$fixlinenr] =~
25163705ce5bSJoe Perches						    s/^\+[ \t]*/\+$goodtabindent/;
25173705ce5bSJoe Perches					}
2518d1fe9c09SJoe Perches				}
2519d1fe9c09SJoe Perches			}
2520d1fe9c09SJoe Perches		}
2521d1fe9c09SJoe Perches
252204941aa7SJoe Perches		if ($line =~ /^\+.*(\w+\s*)?\(\s*$Type\s*\)[ \t]+(?!$Assignment|$Arithmetic|[,;\({\[\<\>])/ &&
252304941aa7SJoe Perches		    (!defined($1) || $1 !~ /sizeof\s*/)) {
25243705ce5bSJoe Perches			if (CHK("SPACING",
2525f27c95dbSJoe Perches				"No space is necessary after a cast\n" . $herecurr) &&
25263705ce5bSJoe Perches			    $fix) {
2527194f66fcSJoe Perches				$fixed[$fixlinenr] =~
2528f27c95dbSJoe Perches				    s/(\(\s*$Type\s*\))[ \t]+/$1/;
25293705ce5bSJoe Perches			}
2530aad4f614SJoe Perches		}
2531aad4f614SJoe Perches
253205880600SJoe Perches		if ($realfile =~ m@^(drivers/net/|net/)@ &&
2533fdb4bcd6SJoe Perches		    $prevrawline =~ /^\+[ \t]*\/\*[ \t]*$/ &&
253485ad978cSJoe Perches		    $rawline =~ /^\+[ \t]*\*/ &&
253585ad978cSJoe Perches		    $realline > 2) {
253605880600SJoe Perches			WARN("NETWORKING_BLOCK_COMMENT_STYLE",
253705880600SJoe Perches			     "networking block comments don't use an empty /* line, use /* Comment...\n" . $hereprev);
253805880600SJoe Perches		}
253905880600SJoe Perches
254005880600SJoe Perches		if ($realfile =~ m@^(drivers/net/|net/)@ &&
2541a605e32eSJoe Perches		    $prevrawline =~ /^\+[ \t]*\/\*/ &&		#starting /*
2542a605e32eSJoe Perches		    $prevrawline !~ /\*\/[ \t]*$/ &&		#no trailing */
254361135e96SJoe Perches		    $rawline =~ /^\+/ &&			#line is new
2544a605e32eSJoe Perches		    $rawline !~ /^\+[ \t]*\*/) {		#no leading *
2545a605e32eSJoe Perches			WARN("NETWORKING_BLOCK_COMMENT_STYLE",
2546a605e32eSJoe Perches			     "networking block comments start with * on subsequent lines\n" . $hereprev);
2547a605e32eSJoe Perches		}
2548a605e32eSJoe Perches
2549a605e32eSJoe Perches		if ($realfile =~ m@^(drivers/net/|net/)@ &&
2550c24f9f19SJoe Perches		    $rawline !~ m@^\+[ \t]*\*/[ \t]*$@ &&	#trailing */
2551c24f9f19SJoe Perches		    $rawline !~ m@^\+.*/\*.*\*/[ \t]*$@ &&	#inline /*...*/
2552c24f9f19SJoe Perches		    $rawline !~ m@^\+.*\*{2,}/[ \t]*$@ &&	#trailing **/
2553c24f9f19SJoe Perches		    $rawline =~ m@^\+[ \t]*.+\*\/[ \t]*$@) {	#non blank */
255405880600SJoe Perches			WARN("NETWORKING_BLOCK_COMMENT_STYLE",
255505880600SJoe Perches			     "networking block comments put the trailing */ on a separate line\n" . $herecurr);
255605880600SJoe Perches		}
255705880600SJoe Perches
25587f619191SJoe Perches# check for missing blank lines after struct/union declarations
25597f619191SJoe Perches# with exceptions for various attributes and macros
25607f619191SJoe Perches		if ($prevline =~ /^[\+ ]};?\s*$/ &&
25617f619191SJoe Perches		    $line =~ /^\+/ &&
25627f619191SJoe Perches		    !($line =~ /^\+\s*$/ ||
25637f619191SJoe Perches		      $line =~ /^\+\s*EXPORT_SYMBOL/ ||
25647f619191SJoe Perches		      $line =~ /^\+\s*MODULE_/i ||
25657f619191SJoe Perches		      $line =~ /^\+\s*\#\s*(?:end|elif|else)/ ||
25667f619191SJoe Perches		      $line =~ /^\+[a-z_]*init/ ||
25677f619191SJoe Perches		      $line =~ /^\+\s*(?:static\s+)?[A-Z_]*ATTR/ ||
25687f619191SJoe Perches		      $line =~ /^\+\s*DECLARE/ ||
25697f619191SJoe Perches		      $line =~ /^\+\s*__setup/)) {
2570d752fcc8SJoe Perches			if (CHK("LINE_SPACING",
2571d752fcc8SJoe Perches				"Please use a blank line after function/struct/union/enum declarations\n" . $hereprev) &&
2572d752fcc8SJoe Perches			    $fix) {
2573f2d7e4d4SJoe Perches				fix_insert_line($fixlinenr, "\+");
2574d752fcc8SJoe Perches			}
25757f619191SJoe Perches		}
25767f619191SJoe Perches
2577365dd4eaSJoe Perches# check for multiple consecutive blank lines
2578365dd4eaSJoe Perches		if ($prevline =~ /^[\+ ]\s*$/ &&
2579365dd4eaSJoe Perches		    $line =~ /^\+\s*$/ &&
2580365dd4eaSJoe Perches		    $last_blank_line != ($linenr - 1)) {
2581d752fcc8SJoe Perches			if (CHK("LINE_SPACING",
2582d752fcc8SJoe Perches				"Please don't use multiple blank lines\n" . $hereprev) &&
2583d752fcc8SJoe Perches			    $fix) {
2584f2d7e4d4SJoe Perches				fix_delete_line($fixlinenr, $rawline);
2585d752fcc8SJoe Perches			}
2586d752fcc8SJoe Perches
2587365dd4eaSJoe Perches			$last_blank_line = $linenr;
2588365dd4eaSJoe Perches		}
2589365dd4eaSJoe Perches
25903b617e3bSJoe Perches# check for missing blank lines after declarations
25913f7bac03SJoe Perches		if ($sline =~ /^\+\s+\S/ &&			#Not at char 1
25923f7bac03SJoe Perches			# actual declarations
25933f7bac03SJoe Perches		    ($prevline =~ /^\+\s+$Declare\s*$Ident\s*[=,;:\[]/ ||
25945a4e1fd3SJoe Perches			# function pointer declarations
25955a4e1fd3SJoe Perches		     $prevline =~ /^\+\s+$Declare\s*\(\s*\*\s*$Ident\s*\)\s*[=,;:\[\(]/ ||
25963f7bac03SJoe Perches			# foo bar; where foo is some local typedef or #define
25973f7bac03SJoe Perches		     $prevline =~ /^\+\s+$Ident(?:\s+|\s*\*\s*)$Ident\s*[=,;\[]/ ||
25983f7bac03SJoe Perches			# known declaration macros
25993f7bac03SJoe Perches		     $prevline =~ /^\+\s+$declaration_macros/) &&
26003f7bac03SJoe Perches			# for "else if" which can look like "$Ident $Ident"
26013f7bac03SJoe Perches		    !($prevline =~ /^\+\s+$c90_Keywords\b/ ||
26023f7bac03SJoe Perches			# other possible extensions of declaration lines
26033f7bac03SJoe Perches		      $prevline =~ /(?:$Compare|$Assignment|$Operators)\s*$/ ||
26043f7bac03SJoe Perches			# not starting a section or a macro "\" extended line
26053f7bac03SJoe Perches		      $prevline =~ /(?:\{\s*|\\)$/) &&
26063f7bac03SJoe Perches			# looks like a declaration
26073f7bac03SJoe Perches		    !($sline =~ /^\+\s+$Declare\s*$Ident\s*[=,;:\[]/ ||
26085a4e1fd3SJoe Perches			# function pointer declarations
26095a4e1fd3SJoe Perches		      $sline =~ /^\+\s+$Declare\s*\(\s*\*\s*$Ident\s*\)\s*[=,;:\[\(]/ ||
26103f7bac03SJoe Perches			# foo bar; where foo is some local typedef or #define
26113f7bac03SJoe Perches		      $sline =~ /^\+\s+$Ident(?:\s+|\s*\*\s*)$Ident\s*[=,;\[]/ ||
26123f7bac03SJoe Perches			# known declaration macros
26133f7bac03SJoe Perches		      $sline =~ /^\+\s+$declaration_macros/ ||
26143f7bac03SJoe Perches			# start of struct or union or enum
26153b617e3bSJoe Perches		      $sline =~ /^\+\s+(?:union|struct|enum|typedef)\b/ ||
26163f7bac03SJoe Perches			# start or end of block or continuation of declaration
26173f7bac03SJoe Perches		      $sline =~ /^\+\s+(?:$|[\{\}\.\#\"\?\:\(\[])/ ||
26183f7bac03SJoe Perches			# bitfield continuation
26193f7bac03SJoe Perches		      $sline =~ /^\+\s+$Ident\s*:\s*\d+\s*[,;]/ ||
26203f7bac03SJoe Perches			# other possible extensions of declaration lines
26213f7bac03SJoe Perches		      $sline =~ /^\+\s+\(?\s*(?:$Compare|$Assignment|$Operators)/) &&
26223f7bac03SJoe Perches			# indentation of previous and current line are the same
26233f7bac03SJoe Perches		    (($prevline =~ /\+(\s+)\S/) && $sline =~ /^\+$1\S/)) {
2624d752fcc8SJoe Perches			if (WARN("LINE_SPACING",
2625d752fcc8SJoe Perches				 "Missing a blank line after declarations\n" . $hereprev) &&
2626d752fcc8SJoe Perches			    $fix) {
2627f2d7e4d4SJoe Perches				fix_insert_line($fixlinenr, "\+");
2628d752fcc8SJoe Perches			}
26293b617e3bSJoe Perches		}
26303b617e3bSJoe Perches
26315f7ddae6SRaffaele Recalcati# check for spaces at the beginning of a line.
26326b4c5bebSAndy Whitcroft# Exceptions:
26336b4c5bebSAndy Whitcroft#  1) within comments
26346b4c5bebSAndy Whitcroft#  2) indented preprocessor commands
26356b4c5bebSAndy Whitcroft#  3) hanging labels
26363705ce5bSJoe Perches		if ($rawline =~ /^\+ / && $line !~ /^\+ *(?:$;|#|$Ident:)/)  {
26375f7ddae6SRaffaele Recalcati			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
26383705ce5bSJoe Perches			if (WARN("LEADING_SPACE",
26393705ce5bSJoe Perches				 "please, no spaces at the start of a line\n" . $herevet) &&
26403705ce5bSJoe Perches			    $fix) {
2641194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/^\+([ \t]+)/"\+" . tabify($1)/e;
26423705ce5bSJoe Perches			}
26435f7ddae6SRaffaele Recalcati		}
26445f7ddae6SRaffaele Recalcati
2645b9ea10d6SAndy Whitcroft# check we are in a valid C source file if not then ignore this hunk
2646b9ea10d6SAndy Whitcroft		next if ($realfile !~ /\.(h|c)$/);
2647b9ea10d6SAndy Whitcroft
2648032a4c0fSJoe Perches# check indentation of any line with a bare else
2649840080a0SJoe Perches# (but not if it is a multiple line "if (foo) return bar; else return baz;")
2650032a4c0fSJoe Perches# if the previous line is a break or return and is indented 1 tab more...
2651032a4c0fSJoe Perches		if ($sline =~ /^\+([\t]+)(?:}[ \t]*)?else(?:[ \t]*{)?\s*$/) {
2652032a4c0fSJoe Perches			my $tabs = length($1) + 1;
2653840080a0SJoe Perches			if ($prevline =~ /^\+\t{$tabs,$tabs}break\b/ ||
2654840080a0SJoe Perches			    ($prevline =~ /^\+\t{$tabs,$tabs}return\b/ &&
2655840080a0SJoe Perches			     defined $lines[$linenr] &&
2656840080a0SJoe Perches			     $lines[$linenr] !~ /^[ \+]\t{$tabs,$tabs}return/)) {
2657032a4c0fSJoe Perches				WARN("UNNECESSARY_ELSE",
2658032a4c0fSJoe Perches				     "else is not generally useful after a break or return\n" . $hereprev);
2659032a4c0fSJoe Perches			}
2660032a4c0fSJoe Perches		}
2661032a4c0fSJoe Perches
2662c00df19aSJoe Perches# check indentation of a line with a break;
2663c00df19aSJoe Perches# if the previous line is a goto or return and is indented the same # of tabs
2664c00df19aSJoe Perches		if ($sline =~ /^\+([\t]+)break\s*;\s*$/) {
2665c00df19aSJoe Perches			my $tabs = $1;
2666c00df19aSJoe Perches			if ($prevline =~ /^\+$tabs(?:goto|return)\b/) {
2667c00df19aSJoe Perches				WARN("UNNECESSARY_BREAK",
2668c00df19aSJoe Perches				     "break is not useful after a goto or return\n" . $hereprev);
2669c00df19aSJoe Perches			}
2670c00df19aSJoe Perches		}
2671c00df19aSJoe Perches
26721ba8dfd1SKees Cook# discourage the addition of CONFIG_EXPERIMENTAL in #if(def).
26731ba8dfd1SKees Cook		if ($line =~ /^\+\s*\#\s*if.*\bCONFIG_EXPERIMENTAL\b/) {
26741ba8dfd1SKees Cook			WARN("CONFIG_EXPERIMENTAL",
26751ba8dfd1SKees Cook			     "Use of CONFIG_EXPERIMENTAL is deprecated. For alternatives, see https://lkml.org/lkml/2012/10/23/580\n");
26761ba8dfd1SKees Cook		}
26771ba8dfd1SKees Cook
2678c2fdda0dSAndy Whitcroft# check for RCS/CVS revision markers
2679cf655043SAndy Whitcroft		if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) {
2680000d1cc1SJoe Perches			WARN("CVS_KEYWORD",
2681000d1cc1SJoe Perches			     "CVS style keyword markers, these will _not_ be updated\n". $herecurr);
2682c2fdda0dSAndy Whitcroft		}
268322f2a2efSAndy Whitcroft
268442e41c54SMike Frysinger# Blackfin: don't use __builtin_bfin_[cs]sync
268542e41c54SMike Frysinger		if ($line =~ /__builtin_bfin_csync/) {
268642e41c54SMike Frysinger			my $herevet = "$here\n" . cat_vet($line) . "\n";
2687000d1cc1SJoe Perches			ERROR("CSYNC",
2688000d1cc1SJoe Perches			      "use the CSYNC() macro in asm/blackfin.h\n" . $herevet);
268942e41c54SMike Frysinger		}
269042e41c54SMike Frysinger		if ($line =~ /__builtin_bfin_ssync/) {
269142e41c54SMike Frysinger			my $herevet = "$here\n" . cat_vet($line) . "\n";
2692000d1cc1SJoe Perches			ERROR("SSYNC",
2693000d1cc1SJoe Perches			      "use the SSYNC() macro in asm/blackfin.h\n" . $herevet);
269442e41c54SMike Frysinger		}
269542e41c54SMike Frysinger
269656e77d70SJoe Perches# check for old HOTPLUG __dev<foo> section markings
269756e77d70SJoe Perches		if ($line =~ /\b(__dev(init|exit)(data|const|))\b/) {
269856e77d70SJoe Perches			WARN("HOTPLUG_SECTION",
269956e77d70SJoe Perches			     "Using $1 is unnecessary\n" . $herecurr);
270056e77d70SJoe Perches		}
270156e77d70SJoe Perches
27029c0ca6f9SAndy Whitcroft# Check for potential 'bare' types
27032b474a1aSAndy Whitcroft		my ($stat, $cond, $line_nr_next, $remain_next, $off_next,
27042b474a1aSAndy Whitcroft		    $realline_next);
27053e469cdcSAndy Whitcroft#print "LINE<$line>\n";
27063e469cdcSAndy Whitcroft		if ($linenr >= $suppress_statement &&
27071b5539b1SJoe Perches		    $realcnt && $sline =~ /.\s*\S/) {
2708170d3a22SAndy Whitcroft			($stat, $cond, $line_nr_next, $remain_next, $off_next) =
2709f5fe35ddSAndy Whitcroft				ctx_statement_block($linenr, $realcnt, 0);
2710171ae1a4SAndy Whitcroft			$stat =~ s/\n./\n /g;
2711171ae1a4SAndy Whitcroft			$cond =~ s/\n./\n /g;
2712171ae1a4SAndy Whitcroft
27133e469cdcSAndy Whitcroft#print "linenr<$linenr> <$stat>\n";
27143e469cdcSAndy Whitcroft			# If this statement has no statement boundaries within
27153e469cdcSAndy Whitcroft			# it there is no point in retrying a statement scan
27163e469cdcSAndy Whitcroft			# until we hit end of it.
27173e469cdcSAndy Whitcroft			my $frag = $stat; $frag =~ s/;+\s*$//;
27183e469cdcSAndy Whitcroft			if ($frag !~ /(?:{|;)/) {
27193e469cdcSAndy Whitcroft#print "skip<$line_nr_next>\n";
27203e469cdcSAndy Whitcroft				$suppress_statement = $line_nr_next;
27213e469cdcSAndy Whitcroft			}
2722f74bd194SAndy Whitcroft
27232b474a1aSAndy Whitcroft			# Find the real next line.
27242b474a1aSAndy Whitcroft			$realline_next = $line_nr_next;
27252b474a1aSAndy Whitcroft			if (defined $realline_next &&
27262b474a1aSAndy Whitcroft			    (!defined $lines[$realline_next - 1] ||
27272b474a1aSAndy Whitcroft			     substr($lines[$realline_next - 1], $off_next) =~ /^\s*$/)) {
27282b474a1aSAndy Whitcroft				$realline_next++;
27292b474a1aSAndy Whitcroft			}
27302b474a1aSAndy Whitcroft
2731171ae1a4SAndy Whitcroft			my $s = $stat;
2732171ae1a4SAndy Whitcroft			$s =~ s/{.*$//s;
2733cf655043SAndy Whitcroft
2734c2fdda0dSAndy Whitcroft			# Ignore goto labels.
2735171ae1a4SAndy Whitcroft			if ($s =~ /$Ident:\*$/s) {
2736c2fdda0dSAndy Whitcroft
2737c2fdda0dSAndy Whitcroft			# Ignore functions being called
2738171ae1a4SAndy Whitcroft			} elsif ($s =~ /^.\s*$Ident\s*\(/s) {
2739c2fdda0dSAndy Whitcroft
2740463f2864SAndy Whitcroft			} elsif ($s =~ /^.\s*else\b/s) {
2741463f2864SAndy Whitcroft
2742c45dcabdSAndy Whitcroft			# declarations always start with types
2743d2506586SAndy 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) {
2744c45dcabdSAndy Whitcroft				my $type = $1;
2745c45dcabdSAndy Whitcroft				$type =~ s/\s+/ /g;
2746c45dcabdSAndy Whitcroft				possible($type, "A:" . $s);
2747c45dcabdSAndy Whitcroft
27486c72ffaaSAndy Whitcroft			# definitions in global scope can only start with types
2749a6a84062SAndy Whitcroft			} elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b\s*(?!:)/s) {
2750c45dcabdSAndy Whitcroft				possible($1, "B:" . $s);
2751c2fdda0dSAndy Whitcroft			}
27528905a67cSAndy Whitcroft
27536c72ffaaSAndy Whitcroft			# any (foo ... *) is a pointer cast, and foo is a type
275465863862SAndy Whitcroft			while ($s =~ /\(($Ident)(?:\s+$Sparse)*[\s\*]+\s*\)/sg) {
2755c45dcabdSAndy Whitcroft				possible($1, "C:" . $s);
27569c0ca6f9SAndy Whitcroft			}
27578905a67cSAndy Whitcroft
27588905a67cSAndy Whitcroft			# Check for any sort of function declaration.
27598905a67cSAndy Whitcroft			# int foo(something bar, other baz);
27608905a67cSAndy Whitcroft			# void (*store_gdt)(x86_descr_ptr *);
2761171ae1a4SAndy Whitcroft			if ($prev_values eq 'E' && $s =~ /^(.(?:typedef\s*)?(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*(?:\b$Ident|\(\*\s*$Ident\))\s*)\(/s) {
27628905a67cSAndy Whitcroft				my ($name_len) = length($1);
27638905a67cSAndy Whitcroft
2764cf655043SAndy Whitcroft				my $ctx = $s;
2765773647a0SAndy Whitcroft				substr($ctx, 0, $name_len + 1, '');
27668905a67cSAndy Whitcroft				$ctx =~ s/\)[^\)]*$//;
2767cf655043SAndy Whitcroft
27688905a67cSAndy Whitcroft				for my $arg (split(/\s*,\s*/, $ctx)) {
2769c45dcabdSAndy Whitcroft					if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$/s) {
27708905a67cSAndy Whitcroft
2771c45dcabdSAndy Whitcroft						possible($1, "D:" . $s);
27728905a67cSAndy Whitcroft					}
27738905a67cSAndy Whitcroft				}
27748905a67cSAndy Whitcroft			}
27758905a67cSAndy Whitcroft
27769c0ca6f9SAndy Whitcroft		}
27779c0ca6f9SAndy Whitcroft
277800df344fSAndy Whitcroft#
277900df344fSAndy Whitcroft# Checks which may be anchored in the context.
278000df344fSAndy Whitcroft#
278100df344fSAndy Whitcroft
278200df344fSAndy Whitcroft# Check for switch () and associated case and default
278300df344fSAndy Whitcroft# statements should be at the same indent.
278400df344fSAndy Whitcroft		if ($line=~/\bswitch\s*\(.*\)/) {
278500df344fSAndy Whitcroft			my $err = '';
278600df344fSAndy Whitcroft			my $sep = '';
278700df344fSAndy Whitcroft			my @ctx = ctx_block_outer($linenr, $realcnt);
278800df344fSAndy Whitcroft			shift(@ctx);
278900df344fSAndy Whitcroft			for my $ctx (@ctx) {
279000df344fSAndy Whitcroft				my ($clen, $cindent) = line_stats($ctx);
279100df344fSAndy Whitcroft				if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
279200df344fSAndy Whitcroft							$indent != $cindent) {
279300df344fSAndy Whitcroft					$err .= "$sep$ctx\n";
279400df344fSAndy Whitcroft					$sep = '';
279500df344fSAndy Whitcroft				} else {
279600df344fSAndy Whitcroft					$sep = "[...]\n";
279700df344fSAndy Whitcroft				}
279800df344fSAndy Whitcroft			}
279900df344fSAndy Whitcroft			if ($err ne '') {
2800000d1cc1SJoe Perches				ERROR("SWITCH_CASE_INDENT_LEVEL",
2801000d1cc1SJoe Perches				      "switch and case should be at the same indent\n$hereline$err");
2802de7d4f0eSAndy Whitcroft			}
2803de7d4f0eSAndy Whitcroft		}
2804de7d4f0eSAndy Whitcroft
2805de7d4f0eSAndy Whitcroft# if/while/etc brace do not go on next line, unless defining a do while loop,
2806de7d4f0eSAndy Whitcroft# or if that brace on the next line is for something else
28070fe3dc2bSJoe Perches		if ($line =~ /(.*)\b((?:if|while|for|switch|(?:[a-z_]+|)for_each[a-z_]+)\s*\(|do\b|else\b)/ && $line !~ /^.\s*\#/) {
2808773647a0SAndy Whitcroft			my $pre_ctx = "$1$2";
2809773647a0SAndy Whitcroft
28109c0ca6f9SAndy Whitcroft			my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0);
28118eef05ddSJoe Perches
28128eef05ddSJoe Perches			if ($line =~ /^\+\t{6,}/) {
28138eef05ddSJoe Perches				WARN("DEEP_INDENTATION",
28148eef05ddSJoe Perches				     "Too many leading tabs - consider code refactoring\n" . $herecurr);
28158eef05ddSJoe Perches			}
28168eef05ddSJoe Perches
2817de7d4f0eSAndy Whitcroft			my $ctx_cnt = $realcnt - $#ctx - 1;
2818de7d4f0eSAndy Whitcroft			my $ctx = join("\n", @ctx);
2819de7d4f0eSAndy Whitcroft
2820548596d5SAndy Whitcroft			my $ctx_ln = $linenr;
2821548596d5SAndy Whitcroft			my $ctx_skip = $realcnt;
2822de7d4f0eSAndy Whitcroft
2823548596d5SAndy Whitcroft			while ($ctx_skip > $ctx_cnt || ($ctx_skip == $ctx_cnt &&
2824548596d5SAndy Whitcroft					defined $lines[$ctx_ln - 1] &&
2825548596d5SAndy Whitcroft					$lines[$ctx_ln - 1] =~ /^-/)) {
2826548596d5SAndy Whitcroft				##print "SKIP<$ctx_skip> CNT<$ctx_cnt>\n";
2827548596d5SAndy Whitcroft				$ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/);
2828773647a0SAndy Whitcroft				$ctx_ln++;
2829773647a0SAndy Whitcroft			}
2830548596d5SAndy Whitcroft
283153210168SAndy Whitcroft			#print "realcnt<$realcnt> ctx_cnt<$ctx_cnt>\n";
283253210168SAndy Whitcroft			#print "pre<$pre_ctx>\nline<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>\n";
2833773647a0SAndy Whitcroft
2834773647a0SAndy Whitcroft			if ($ctx !~ /{\s*/ && defined($lines[$ctx_ln - 1]) && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
2835000d1cc1SJoe Perches				ERROR("OPEN_BRACE",
2836000d1cc1SJoe Perches				      "that open brace { should be on the previous line\n" .
283701464f30SAndy Whitcroft					"$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
283800df344fSAndy Whitcroft			}
2839773647a0SAndy Whitcroft			if ($level == 0 && $pre_ctx !~ /}\s*while\s*\($/ &&
2840773647a0SAndy Whitcroft			    $ctx =~ /\)\s*\;\s*$/ &&
2841773647a0SAndy Whitcroft			    defined $lines[$ctx_ln - 1])
2842773647a0SAndy Whitcroft			{
28439c0ca6f9SAndy Whitcroft				my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
28449c0ca6f9SAndy Whitcroft				if ($nindent > $indent) {
2845000d1cc1SJoe Perches					WARN("TRAILING_SEMICOLON",
2846000d1cc1SJoe Perches					     "trailing semicolon indicates no statements, indent implies otherwise\n" .
284701464f30SAndy Whitcroft						"$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
28489c0ca6f9SAndy Whitcroft				}
28499c0ca6f9SAndy Whitcroft			}
285000df344fSAndy Whitcroft		}
285100df344fSAndy Whitcroft
28524d001e4dSAndy Whitcroft# Check relative indent for conditionals and blocks.
28530fe3dc2bSJoe Perches		if ($line =~ /\b(?:(?:if|while|for|(?:[a-z_]+|)for_each[a-z_]+)\s*\(|do\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) {
28543e469cdcSAndy Whitcroft			($stat, $cond, $line_nr_next, $remain_next, $off_next) =
28553e469cdcSAndy Whitcroft				ctx_statement_block($linenr, $realcnt, 0)
28563e469cdcSAndy Whitcroft					if (!defined $stat);
28574d001e4dSAndy Whitcroft			my ($s, $c) = ($stat, $cond);
28584d001e4dSAndy Whitcroft
28594d001e4dSAndy Whitcroft			substr($s, 0, length($c), '');
28604d001e4dSAndy Whitcroft
28614d001e4dSAndy Whitcroft			# Make sure we remove the line prefixes as we have
28624d001e4dSAndy Whitcroft			# none on the first line, and are going to readd them
28634d001e4dSAndy Whitcroft			# where necessary.
28644d001e4dSAndy Whitcroft			$s =~ s/\n./\n/gs;
28654d001e4dSAndy Whitcroft
28664d001e4dSAndy Whitcroft			# Find out how long the conditional actually is.
28676f779c18SAndy Whitcroft			my @newlines = ($c =~ /\n/gs);
28686f779c18SAndy Whitcroft			my $cond_lines = 1 + $#newlines;
28694d001e4dSAndy Whitcroft
28704d001e4dSAndy Whitcroft			# We want to check the first line inside the block
28714d001e4dSAndy Whitcroft			# starting at the end of the conditional, so remove:
28724d001e4dSAndy Whitcroft			#  1) any blank line termination
28734d001e4dSAndy Whitcroft			#  2) any opening brace { on end of the line
28744d001e4dSAndy Whitcroft			#  3) any do (...) {
28754d001e4dSAndy Whitcroft			my $continuation = 0;
28764d001e4dSAndy Whitcroft			my $check = 0;
28774d001e4dSAndy Whitcroft			$s =~ s/^.*\bdo\b//;
28784d001e4dSAndy Whitcroft			$s =~ s/^\s*{//;
28794d001e4dSAndy Whitcroft			if ($s =~ s/^\s*\\//) {
28804d001e4dSAndy Whitcroft				$continuation = 1;
28814d001e4dSAndy Whitcroft			}
28829bd49efeSAndy Whitcroft			if ($s =~ s/^\s*?\n//) {
28834d001e4dSAndy Whitcroft				$check = 1;
28844d001e4dSAndy Whitcroft				$cond_lines++;
28854d001e4dSAndy Whitcroft			}
28864d001e4dSAndy Whitcroft
28874d001e4dSAndy Whitcroft			# Also ignore a loop construct at the end of a
28884d001e4dSAndy Whitcroft			# preprocessor statement.
28894d001e4dSAndy Whitcroft			if (($prevline =~ /^.\s*#\s*define\s/ ||
28904d001e4dSAndy Whitcroft			    $prevline =~ /\\\s*$/) && $continuation == 0) {
28914d001e4dSAndy Whitcroft				$check = 0;
28924d001e4dSAndy Whitcroft			}
28934d001e4dSAndy Whitcroft
28949bd49efeSAndy Whitcroft			my $cond_ptr = -1;
2895740504c6SAndy Whitcroft			$continuation = 0;
28969bd49efeSAndy Whitcroft			while ($cond_ptr != $cond_lines) {
28979bd49efeSAndy Whitcroft				$cond_ptr = $cond_lines;
28984d001e4dSAndy Whitcroft
2899f16fa28fSAndy Whitcroft				# If we see an #else/#elif then the code
2900f16fa28fSAndy Whitcroft				# is not linear.
2901f16fa28fSAndy Whitcroft				if ($s =~ /^\s*\#\s*(?:else|elif)/) {
2902f16fa28fSAndy Whitcroft					$check = 0;
2903f16fa28fSAndy Whitcroft				}
2904f16fa28fSAndy Whitcroft
29059bd49efeSAndy Whitcroft				# Ignore:
29069bd49efeSAndy Whitcroft				#  1) blank lines, they should be at 0,
29079bd49efeSAndy Whitcroft				#  2) preprocessor lines, and
29089bd49efeSAndy Whitcroft				#  3) labels.
2909740504c6SAndy Whitcroft				if ($continuation ||
2910740504c6SAndy Whitcroft				    $s =~ /^\s*?\n/ ||
29119bd49efeSAndy Whitcroft				    $s =~ /^\s*#\s*?/ ||
29129bd49efeSAndy Whitcroft				    $s =~ /^\s*$Ident\s*:/) {
2913740504c6SAndy Whitcroft					$continuation = ($s =~ /^.*?\\\n/) ? 1 : 0;
291430dad6ebSAndy Whitcroft					if ($s =~ s/^.*?\n//) {
29159bd49efeSAndy Whitcroft						$cond_lines++;
29169bd49efeSAndy Whitcroft					}
29174d001e4dSAndy Whitcroft				}
291830dad6ebSAndy Whitcroft			}
29194d001e4dSAndy Whitcroft
29204d001e4dSAndy Whitcroft			my (undef, $sindent) = line_stats("+" . $s);
29214d001e4dSAndy Whitcroft			my $stat_real = raw_line($linenr, $cond_lines);
29224d001e4dSAndy Whitcroft
29234d001e4dSAndy Whitcroft			# Check if either of these lines are modified, else
29244d001e4dSAndy Whitcroft			# this is not this patch's fault.
29254d001e4dSAndy Whitcroft			if (!defined($stat_real) ||
29264d001e4dSAndy Whitcroft			    $stat !~ /^\+/ && $stat_real !~ /^\+/) {
29274d001e4dSAndy Whitcroft				$check = 0;
29284d001e4dSAndy Whitcroft			}
29294d001e4dSAndy Whitcroft			if (defined($stat_real) && $cond_lines > 1) {
29304d001e4dSAndy Whitcroft				$stat_real = "[...]\n$stat_real";
29314d001e4dSAndy Whitcroft			}
29324d001e4dSAndy Whitcroft
29339bd49efeSAndy 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";
29344d001e4dSAndy Whitcroft
29354d001e4dSAndy Whitcroft			if ($check && (($sindent % 8) != 0 ||
29364d001e4dSAndy Whitcroft			    ($sindent <= $indent && $s ne ''))) {
2937000d1cc1SJoe Perches				WARN("SUSPECT_CODE_INDENT",
2938000d1cc1SJoe Perches				     "suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n");
29394d001e4dSAndy Whitcroft			}
29404d001e4dSAndy Whitcroft		}
29414d001e4dSAndy Whitcroft
29426c72ffaaSAndy Whitcroft		# Track the 'values' across context and added lines.
29436c72ffaaSAndy Whitcroft		my $opline = $line; $opline =~ s/^./ /;
29441f65f947SAndy Whitcroft		my ($curr_values, $curr_vars) =
29451f65f947SAndy Whitcroft				annotate_values($opline . "\n", $prev_values);
29466c72ffaaSAndy Whitcroft		$curr_values = $prev_values . $curr_values;
2947c2fdda0dSAndy Whitcroft		if ($dbg_values) {
2948c2fdda0dSAndy Whitcroft			my $outline = $opline; $outline =~ s/\t/ /g;
2949cf655043SAndy Whitcroft			print "$linenr > .$outline\n";
2950cf655043SAndy Whitcroft			print "$linenr > $curr_values\n";
29511f65f947SAndy Whitcroft			print "$linenr >  $curr_vars\n";
2952c2fdda0dSAndy Whitcroft		}
29536c72ffaaSAndy Whitcroft		$prev_values = substr($curr_values, -1);
29546c72ffaaSAndy Whitcroft
295500df344fSAndy Whitcroft#ignore lines not being added
29563705ce5bSJoe Perches		next if ($line =~ /^[^\+]/);
295700df344fSAndy Whitcroft
2958653d4876SAndy Whitcroft# TEST: allow direct testing of the type matcher.
29597429c690SAndy Whitcroft		if ($dbg_type) {
29607429c690SAndy Whitcroft			if ($line =~ /^.\s*$Declare\s*$/) {
2961000d1cc1SJoe Perches				ERROR("TEST_TYPE",
2962000d1cc1SJoe Perches				      "TEST: is type\n" . $herecurr);
29637429c690SAndy Whitcroft			} elsif ($dbg_type > 1 && $line =~ /^.+($Declare)/) {
2964000d1cc1SJoe Perches				ERROR("TEST_NOT_TYPE",
2965000d1cc1SJoe Perches				      "TEST: is not type ($1 is)\n". $herecurr);
29667429c690SAndy Whitcroft			}
2967653d4876SAndy Whitcroft			next;
2968653d4876SAndy Whitcroft		}
2969a1ef277eSAndy Whitcroft# TEST: allow direct testing of the attribute matcher.
2970a1ef277eSAndy Whitcroft		if ($dbg_attr) {
29719360b0e5SAndy Whitcroft			if ($line =~ /^.\s*$Modifier\s*$/) {
2972000d1cc1SJoe Perches				ERROR("TEST_ATTR",
2973000d1cc1SJoe Perches				      "TEST: is attr\n" . $herecurr);
29749360b0e5SAndy Whitcroft			} elsif ($dbg_attr > 1 && $line =~ /^.+($Modifier)/) {
2975000d1cc1SJoe Perches				ERROR("TEST_NOT_ATTR",
2976000d1cc1SJoe Perches				      "TEST: is not attr ($1 is)\n". $herecurr);
2977a1ef277eSAndy Whitcroft			}
2978a1ef277eSAndy Whitcroft			next;
2979a1ef277eSAndy Whitcroft		}
2980653d4876SAndy Whitcroft
2981f0a594c1SAndy Whitcroft# check for initialisation to aggregates open brace on the next line
298299423c20SAndy Whitcroft		if ($line =~ /^.\s*{/ &&
298399423c20SAndy Whitcroft		    $prevline =~ /(?:^|[^=])=\s*$/) {
2984d752fcc8SJoe Perches			if (ERROR("OPEN_BRACE",
2985d752fcc8SJoe Perches				  "that open brace { should be on the previous line\n" . $hereprev) &&
2986f2d7e4d4SJoe Perches			    $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
2987f2d7e4d4SJoe Perches				fix_delete_line($fixlinenr - 1, $prevrawline);
2988f2d7e4d4SJoe Perches				fix_delete_line($fixlinenr, $rawline);
2989d752fcc8SJoe Perches				my $fixedline = $prevrawline;
2990d752fcc8SJoe Perches				$fixedline =~ s/\s*=\s*$/ = {/;
2991f2d7e4d4SJoe Perches				fix_insert_line($fixlinenr, $fixedline);
2992d752fcc8SJoe Perches				$fixedline = $line;
2993d752fcc8SJoe Perches				$fixedline =~ s/^(.\s*){\s*/$1/;
2994f2d7e4d4SJoe Perches				fix_insert_line($fixlinenr, $fixedline);
2995d752fcc8SJoe Perches			}
2996f0a594c1SAndy Whitcroft		}
2997f0a594c1SAndy Whitcroft
299800df344fSAndy Whitcroft#
299900df344fSAndy Whitcroft# Checks which are anchored on the added line.
300000df344fSAndy Whitcroft#
300100df344fSAndy Whitcroft
3002653d4876SAndy Whitcroft# check for malformed paths in #include statements (uses RAW line)
3003c45dcabdSAndy Whitcroft		if ($rawline =~ m{^.\s*\#\s*include\s+[<"](.*)[">]}) {
3004653d4876SAndy Whitcroft			my $path = $1;
3005653d4876SAndy Whitcroft			if ($path =~ m{//}) {
3006000d1cc1SJoe Perches				ERROR("MALFORMED_INCLUDE",
3007495e9d84SJoe Perches				      "malformed #include filename\n" . $herecurr);
3008495e9d84SJoe Perches			}
3009495e9d84SJoe Perches			if ($path =~ "^uapi/" && $realfile =~ m@\binclude/uapi/@) {
3010495e9d84SJoe Perches				ERROR("UAPI_INCLUDE",
3011495e9d84SJoe Perches				      "No #include in ...include/uapi/... should use a uapi/ path prefix\n" . $herecurr);
3012653d4876SAndy Whitcroft			}
3013653d4876SAndy Whitcroft		}
3014653d4876SAndy Whitcroft
301500df344fSAndy Whitcroft# no C99 // comments
301600df344fSAndy Whitcroft		if ($line =~ m{//}) {
30173705ce5bSJoe Perches			if (ERROR("C99_COMMENTS",
30183705ce5bSJoe Perches				  "do not use C99 // comments\n" . $herecurr) &&
30193705ce5bSJoe Perches			    $fix) {
3020194f66fcSJoe Perches				my $line = $fixed[$fixlinenr];
30213705ce5bSJoe Perches				if ($line =~ /\/\/(.*)$/) {
30223705ce5bSJoe Perches					my $comment = trim($1);
3023194f66fcSJoe Perches					$fixed[$fixlinenr] =~ s@\/\/(.*)$@/\* $comment \*/@;
30243705ce5bSJoe Perches				}
30253705ce5bSJoe Perches			}
302600df344fSAndy Whitcroft		}
302700df344fSAndy Whitcroft		# Remove C99 comments.
30280a920b5bSAndy Whitcroft		$line =~ s@//.*@@;
30296c72ffaaSAndy Whitcroft		$opline =~ s@//.*@@;
30300a920b5bSAndy Whitcroft
30312b474a1aSAndy Whitcroft# EXPORT_SYMBOL should immediately follow the thing it is exporting, consider
30322b474a1aSAndy Whitcroft# the whole statement.
30332b474a1aSAndy Whitcroft#print "APW <$lines[$realline_next - 1]>\n";
30342b474a1aSAndy Whitcroft		if (defined $realline_next &&
30352b474a1aSAndy Whitcroft		    exists $lines[$realline_next - 1] &&
30362b474a1aSAndy Whitcroft		    !defined $suppress_export{$realline_next} &&
30372b474a1aSAndy Whitcroft		    ($lines[$realline_next - 1] =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
30382b474a1aSAndy Whitcroft		     $lines[$realline_next - 1] =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
30393cbf62dfSAndy Whitcroft			# Handle definitions which produce identifiers with
30403cbf62dfSAndy Whitcroft			# a prefix:
30413cbf62dfSAndy Whitcroft			#   XXX(foo);
30423cbf62dfSAndy Whitcroft			#   EXPORT_SYMBOL(something_foo);
3043653d4876SAndy Whitcroft			my $name = $1;
304487a53877SAndy Whitcroft			if ($stat =~ /^(?:.\s*}\s*\n)?.([A-Z_]+)\s*\(\s*($Ident)/ &&
30453cbf62dfSAndy Whitcroft			    $name =~ /^${Ident}_$2/) {
30463cbf62dfSAndy Whitcroft#print "FOO C name<$name>\n";
30473cbf62dfSAndy Whitcroft				$suppress_export{$realline_next} = 1;
30483cbf62dfSAndy Whitcroft
30493cbf62dfSAndy Whitcroft			} elsif ($stat !~ /(?:
30502b474a1aSAndy Whitcroft				\n.}\s*$|
305148012058SAndy Whitcroft				^.DEFINE_$Ident\(\Q$name\E\)|
305248012058SAndy Whitcroft				^.DECLARE_$Ident\(\Q$name\E\)|
305348012058SAndy Whitcroft				^.LIST_HEAD\(\Q$name\E\)|
30542b474a1aSAndy Whitcroft				^.(?:$Storage\s+)?$Type\s*\(\s*\*\s*\Q$name\E\s*\)\s*\(|
30552b474a1aSAndy Whitcroft				\b\Q$name\E(?:\s+$Attribute)*\s*(?:;|=|\[|\()
305648012058SAndy Whitcroft			    )/x) {
30572b474a1aSAndy Whitcroft#print "FOO A<$lines[$realline_next - 1]> stat<$stat> name<$name>\n";
30582b474a1aSAndy Whitcroft				$suppress_export{$realline_next} = 2;
30592b474a1aSAndy Whitcroft			} else {
30602b474a1aSAndy Whitcroft				$suppress_export{$realline_next} = 1;
30610a920b5bSAndy Whitcroft			}
30620a920b5bSAndy Whitcroft		}
30632b474a1aSAndy Whitcroft		if (!defined $suppress_export{$linenr} &&
30642b474a1aSAndy Whitcroft		    $prevline =~ /^.\s*$/ &&
30652b474a1aSAndy Whitcroft		    ($line =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
30662b474a1aSAndy Whitcroft		     $line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
30672b474a1aSAndy Whitcroft#print "FOO B <$lines[$linenr - 1]>\n";
30682b474a1aSAndy Whitcroft			$suppress_export{$linenr} = 2;
30692b474a1aSAndy Whitcroft		}
30702b474a1aSAndy Whitcroft		if (defined $suppress_export{$linenr} &&
30712b474a1aSAndy Whitcroft		    $suppress_export{$linenr} == 2) {
3072000d1cc1SJoe Perches			WARN("EXPORT_SYMBOL",
3073000d1cc1SJoe Perches			     "EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
30742b474a1aSAndy Whitcroft		}
30750a920b5bSAndy Whitcroft
30765150bda4SJoe Eloff# check for global initialisers.
3077d5e616fcSJoe Perches		if ($line =~ /^\+(\s*$Type\s*$Ident\s*(?:\s+$Modifier))*\s*=\s*(0|NULL|false)\s*;/) {
3078d5e616fcSJoe Perches			if (ERROR("GLOBAL_INITIALISERS",
3079000d1cc1SJoe Perches				  "do not initialise globals to 0 or NULL\n" .
3080d5e616fcSJoe Perches				      $herecurr) &&
3081d5e616fcSJoe Perches			    $fix) {
3082194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/($Type\s*$Ident\s*(?:\s+$Modifier))*\s*=\s*(0|NULL|false)\s*;/$1;/;
3083d5e616fcSJoe Perches			}
3084f0a594c1SAndy Whitcroft		}
30850a920b5bSAndy Whitcroft# check for static initialisers.
3086d5e616fcSJoe Perches		if ($line =~ /^\+.*\bstatic\s.*=\s*(0|NULL|false)\s*;/) {
3087d5e616fcSJoe Perches			if (ERROR("INITIALISED_STATIC",
3088000d1cc1SJoe Perches				  "do not initialise statics to 0 or NULL\n" .
3089d5e616fcSJoe Perches				      $herecurr) &&
3090d5e616fcSJoe Perches			    $fix) {
3091194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/(\bstatic\s.*?)\s*=\s*(0|NULL|false)\s*;/$1;/;
3092d5e616fcSJoe Perches			}
30930a920b5bSAndy Whitcroft		}
30940a920b5bSAndy Whitcroft
30951813087dSJoe Perches# check for misordered declarations of char/short/int/long with signed/unsigned
30961813087dSJoe Perches		while ($sline =~ m{(\b$TypeMisordered\b)}g) {
30971813087dSJoe Perches			my $tmp = trim($1);
30981813087dSJoe Perches			WARN("MISORDERED_TYPE",
30991813087dSJoe Perches			     "type '$tmp' should be specified in [[un]signed] [short|int|long|long long] order\n" . $herecurr);
31001813087dSJoe Perches		}
31011813087dSJoe Perches
3102cb710ecaSJoe Perches# check for static const char * arrays.
3103cb710ecaSJoe Perches		if ($line =~ /\bstatic\s+const\s+char\s*\*\s*(\w+)\s*\[\s*\]\s*=\s*/) {
3104000d1cc1SJoe Perches			WARN("STATIC_CONST_CHAR_ARRAY",
3105000d1cc1SJoe Perches			     "static const char * array should probably be static const char * const\n" .
3106cb710ecaSJoe Perches				$herecurr);
3107cb710ecaSJoe Perches               }
3108cb710ecaSJoe Perches
3109cb710ecaSJoe Perches# check for static char foo[] = "bar" declarations.
3110cb710ecaSJoe Perches		if ($line =~ /\bstatic\s+char\s+(\w+)\s*\[\s*\]\s*=\s*"/) {
3111000d1cc1SJoe Perches			WARN("STATIC_CONST_CHAR_ARRAY",
3112000d1cc1SJoe Perches			     "static char array declaration should probably be static const char\n" .
3113cb710ecaSJoe Perches				$herecurr);
3114cb710ecaSJoe Perches               }
3115cb710ecaSJoe Perches
31169b0fa60dSJoe Perches# check for non-global char *foo[] = {"bar", ...} declarations.
31179b0fa60dSJoe Perches		if ($line =~ /^.\s+(?:static\s+|const\s+)?char\s+\*\s*\w+\s*\[\s*\]\s*=\s*\{/) {
31189b0fa60dSJoe Perches			WARN("STATIC_CONST_CHAR_ARRAY",
31199b0fa60dSJoe Perches			     "char * array declaration might be better as static const\n" .
31209b0fa60dSJoe Perches				$herecurr);
31219b0fa60dSJoe Perches               }
31229b0fa60dSJoe Perches
3123b36190c5SJoe Perches# check for function declarations without arguments like "int foo()"
3124b36190c5SJoe Perches		if ($line =~ /(\b$Type\s+$Ident)\s*\(\s*\)/) {
3125b36190c5SJoe Perches			if (ERROR("FUNCTION_WITHOUT_ARGS",
3126b36190c5SJoe Perches				  "Bad function definition - $1() should probably be $1(void)\n" . $herecurr) &&
3127b36190c5SJoe Perches			    $fix) {
3128194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/(\b($Type)\s+($Ident))\s*\(\s*\)/$2 $3(void)/;
3129b36190c5SJoe Perches			}
3130b36190c5SJoe Perches		}
3131b36190c5SJoe Perches
313292e112fdSJoe Perches# check for uses of DEFINE_PCI_DEVICE_TABLE
313392e112fdSJoe Perches		if ($line =~ /\bDEFINE_PCI_DEVICE_TABLE\s*\(\s*(\w+)\s*\)\s*=/) {
313492e112fdSJoe Perches			if (WARN("DEFINE_PCI_DEVICE_TABLE",
313592e112fdSJoe Perches				 "Prefer struct pci_device_id over deprecated DEFINE_PCI_DEVICE_TABLE\n" . $herecurr) &&
313692e112fdSJoe Perches			    $fix) {
3137194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\b(?:static\s+|)DEFINE_PCI_DEVICE_TABLE\s*\(\s*(\w+)\s*\)\s*=\s*/static const struct pci_device_id $1\[\] = /;
313892e112fdSJoe Perches			}
313993ed0e2dSJoe Perches		}
314093ed0e2dSJoe Perches
3141653d4876SAndy Whitcroft# check for new typedefs, only function parameters and sparse annotations
3142653d4876SAndy Whitcroft# make sense.
3143653d4876SAndy Whitcroft		if ($line =~ /\btypedef\s/ &&
31448054576dSAndy Whitcroft		    $line !~ /\btypedef\s+$Type\s*\(\s*\*?$Ident\s*\)\s*\(/ &&
3145c45dcabdSAndy Whitcroft		    $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ &&
31468ed22cadSAndy Whitcroft		    $line !~ /\b$typeTypedefs\b/ &&
3147653d4876SAndy Whitcroft		    $line !~ /\b__bitwise(?:__|)\b/) {
3148000d1cc1SJoe Perches			WARN("NEW_TYPEDEFS",
3149000d1cc1SJoe Perches			     "do not add new typedefs\n" . $herecurr);
31500a920b5bSAndy Whitcroft		}
31510a920b5bSAndy Whitcroft
31520a920b5bSAndy Whitcroft# * goes on variable not on type
315365863862SAndy Whitcroft		# (char*[ const])
3154bfcb2cc7SAndy Whitcroft		while ($line =~ m{(\($NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)\))}g) {
3155bfcb2cc7SAndy Whitcroft			#print "AA<$1>\n";
31563705ce5bSJoe Perches			my ($ident, $from, $to) = ($1, $2, $2);
3157d8aaf121SAndy Whitcroft
315865863862SAndy Whitcroft			# Should start with a space.
315965863862SAndy Whitcroft			$to =~ s/^(\S)/ $1/;
316065863862SAndy Whitcroft			# Should not end with a space.
316165863862SAndy Whitcroft			$to =~ s/\s+$//;
316265863862SAndy Whitcroft			# '*'s should not have spaces between.
3163f9a0b3d1SAndy Whitcroft			while ($to =~ s/\*\s+\*/\*\*/) {
316465863862SAndy Whitcroft			}
3165d8aaf121SAndy Whitcroft
31663705ce5bSJoe Perches##			print "1: from<$from> to<$to> ident<$ident>\n";
316765863862SAndy Whitcroft			if ($from ne $to) {
31683705ce5bSJoe Perches				if (ERROR("POINTER_LOCATION",
31693705ce5bSJoe Perches					  "\"(foo$from)\" should be \"(foo$to)\"\n" .  $herecurr) &&
31703705ce5bSJoe Perches				    $fix) {
31713705ce5bSJoe Perches					my $sub_from = $ident;
31723705ce5bSJoe Perches					my $sub_to = $ident;
31733705ce5bSJoe Perches					$sub_to =~ s/\Q$from\E/$to/;
3174194f66fcSJoe Perches					$fixed[$fixlinenr] =~
31753705ce5bSJoe Perches					    s@\Q$sub_from\E@$sub_to@;
31763705ce5bSJoe Perches				}
317765863862SAndy Whitcroft			}
3178bfcb2cc7SAndy Whitcroft		}
3179bfcb2cc7SAndy Whitcroft		while ($line =~ m{(\b$NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)($Ident))}g) {
3180bfcb2cc7SAndy Whitcroft			#print "BB<$1>\n";
31813705ce5bSJoe Perches			my ($match, $from, $to, $ident) = ($1, $2, $2, $3);
3182d8aaf121SAndy Whitcroft
318365863862SAndy Whitcroft			# Should start with a space.
318465863862SAndy Whitcroft			$to =~ s/^(\S)/ $1/;
318565863862SAndy Whitcroft			# Should not end with a space.
318665863862SAndy Whitcroft			$to =~ s/\s+$//;
318765863862SAndy Whitcroft			# '*'s should not have spaces between.
3188f9a0b3d1SAndy Whitcroft			while ($to =~ s/\*\s+\*/\*\*/) {
318965863862SAndy Whitcroft			}
319065863862SAndy Whitcroft			# Modifiers should have spaces.
319165863862SAndy Whitcroft			$to =~ s/(\b$Modifier$)/$1 /;
319265863862SAndy Whitcroft
31933705ce5bSJoe Perches##			print "2: from<$from> to<$to> ident<$ident>\n";
3194667026e7SAndy Whitcroft			if ($from ne $to && $ident !~ /^$Modifier$/) {
31953705ce5bSJoe Perches				if (ERROR("POINTER_LOCATION",
31963705ce5bSJoe Perches					  "\"foo${from}bar\" should be \"foo${to}bar\"\n" .  $herecurr) &&
31973705ce5bSJoe Perches				    $fix) {
31983705ce5bSJoe Perches
31993705ce5bSJoe Perches					my $sub_from = $match;
32003705ce5bSJoe Perches					my $sub_to = $match;
32013705ce5bSJoe Perches					$sub_to =~ s/\Q$from\E/$to/;
3202194f66fcSJoe Perches					$fixed[$fixlinenr] =~
32033705ce5bSJoe Perches					    s@\Q$sub_from\E@$sub_to@;
32043705ce5bSJoe Perches				}
320565863862SAndy Whitcroft			}
32060a920b5bSAndy Whitcroft		}
32070a920b5bSAndy Whitcroft
32080a920b5bSAndy Whitcroft# # no BUG() or BUG_ON()
32090a920b5bSAndy Whitcroft# 		if ($line =~ /\b(BUG|BUG_ON)\b/) {
32100a920b5bSAndy Whitcroft# 			print "Try to use WARN_ON & Recovery code rather than BUG() or BUG_ON()\n";
32110a920b5bSAndy Whitcroft# 			print "$herecurr";
32120a920b5bSAndy Whitcroft# 			$clean = 0;
32130a920b5bSAndy Whitcroft# 		}
32140a920b5bSAndy Whitcroft
32158905a67cSAndy Whitcroft		if ($line =~ /\bLINUX_VERSION_CODE\b/) {
3216000d1cc1SJoe Perches			WARN("LINUX_VERSION_CODE",
3217000d1cc1SJoe Perches			     "LINUX_VERSION_CODE should be avoided, code should be for the version to which it is merged\n" . $herecurr);
32188905a67cSAndy Whitcroft		}
32198905a67cSAndy Whitcroft
322017441227SJoe Perches# check for uses of printk_ratelimit
322117441227SJoe Perches		if ($line =~ /\bprintk_ratelimit\s*\(/) {
3222000d1cc1SJoe Perches			WARN("PRINTK_RATELIMITED",
3223000d1cc1SJoe Perches"Prefer printk_ratelimited or pr_<level>_ratelimited to printk_ratelimit\n" . $herecurr);
322417441227SJoe Perches		}
322517441227SJoe Perches
322600df344fSAndy Whitcroft# printk should use KERN_* levels.  Note that follow on printk's on the
322700df344fSAndy Whitcroft# same line do not need a level, so we use the current block context
322800df344fSAndy Whitcroft# to try and find and validate the current printk.  In summary the current
322925985edcSLucas De Marchi# printk includes all preceding printk's which have no newline on the end.
323000df344fSAndy Whitcroft# we assume the first bad printk is the one to report.
3231f0a594c1SAndy Whitcroft		if ($line =~ /\bprintk\((?!KERN_)\s*"/) {
323200df344fSAndy Whitcroft			my $ok = 0;
323300df344fSAndy Whitcroft			for (my $ln = $linenr - 1; $ln >= $first_line; $ln--) {
323400df344fSAndy Whitcroft				#print "CHECK<$lines[$ln - 1]\n";
323525985edcSLucas De Marchi				# we have a preceding printk if it ends
323600df344fSAndy Whitcroft				# with "\n" ignore it, else it is to blame
323700df344fSAndy Whitcroft				if ($lines[$ln - 1] =~ m{\bprintk\(}) {
323800df344fSAndy Whitcroft					if ($rawlines[$ln - 1] !~ m{\\n"}) {
323900df344fSAndy Whitcroft						$ok = 1;
324000df344fSAndy Whitcroft					}
324100df344fSAndy Whitcroft					last;
324200df344fSAndy Whitcroft				}
324300df344fSAndy Whitcroft			}
324400df344fSAndy Whitcroft			if ($ok == 0) {
3245000d1cc1SJoe Perches				WARN("PRINTK_WITHOUT_KERN_LEVEL",
3246000d1cc1SJoe Perches				     "printk() should include KERN_ facility level\n" . $herecurr);
32470a920b5bSAndy Whitcroft			}
324800df344fSAndy Whitcroft		}
32490a920b5bSAndy Whitcroft
3250243f3803SJoe Perches		if ($line =~ /\bprintk\s*\(\s*KERN_([A-Z]+)/) {
3251243f3803SJoe Perches			my $orig = $1;
3252243f3803SJoe Perches			my $level = lc($orig);
3253243f3803SJoe Perches			$level = "warn" if ($level eq "warning");
32548f26b837SJoe Perches			my $level2 = $level;
32558f26b837SJoe Perches			$level2 = "dbg" if ($level eq "debug");
3256243f3803SJoe Perches			WARN("PREFER_PR_LEVEL",
3257daa8b059SYogesh Chaudhari			     "Prefer [subsystem eg: netdev]_$level2([subsystem]dev, ... then dev_$level2(dev, ... then pr_$level(...  to printk(KERN_$orig ...\n" . $herecurr);
3258243f3803SJoe Perches		}
3259243f3803SJoe Perches
3260243f3803SJoe Perches		if ($line =~ /\bpr_warning\s*\(/) {
3261d5e616fcSJoe Perches			if (WARN("PREFER_PR_LEVEL",
3262d5e616fcSJoe Perches				 "Prefer pr_warn(... to pr_warning(...\n" . $herecurr) &&
3263d5e616fcSJoe Perches			    $fix) {
3264194f66fcSJoe Perches				$fixed[$fixlinenr] =~
3265d5e616fcSJoe Perches				    s/\bpr_warning\b/pr_warn/;
3266d5e616fcSJoe Perches			}
3267243f3803SJoe Perches		}
3268243f3803SJoe Perches
3269dc139313SJoe Perches		if ($line =~ /\bdev_printk\s*\(\s*KERN_([A-Z]+)/) {
3270dc139313SJoe Perches			my $orig = $1;
3271dc139313SJoe Perches			my $level = lc($orig);
3272dc139313SJoe Perches			$level = "warn" if ($level eq "warning");
3273dc139313SJoe Perches			$level = "dbg" if ($level eq "debug");
3274dc139313SJoe Perches			WARN("PREFER_DEV_LEVEL",
3275dc139313SJoe Perches			     "Prefer dev_$level(... to dev_printk(KERN_$orig, ...\n" . $herecurr);
3276dc139313SJoe Perches		}
3277dc139313SJoe Perches
3278653d4876SAndy Whitcroft# function brace can't be on same line, except for #defines of do while,
3279653d4876SAndy Whitcroft# or if closed on same line
32808d182478SJoe Perches		if (($line=~/$Type\s*$Ident\(.*\).*\s*{/) and
3281c45dcabdSAndy Whitcroft		    !($line=~/\#\s*define.*do\s{/) and !($line=~/}/)) {
32828d182478SJoe Perches			if (ERROR("OPEN_BRACE",
32838d182478SJoe Perches				  "open brace '{' following function declarations go on the next line\n" . $herecurr) &&
32848d182478SJoe Perches			    $fix) {
32858d182478SJoe Perches				fix_delete_line($fixlinenr, $rawline);
32868d182478SJoe Perches				my $fixed_line = $rawline;
32878d182478SJoe Perches				$fixed_line =~ /(^..*$Type\s*$Ident\(.*\)\s*){(.*)$/;
32888d182478SJoe Perches				my $line1 = $1;
32898d182478SJoe Perches				my $line2 = $2;
32908d182478SJoe Perches				fix_insert_line($fixlinenr, ltrim($line1));
32918d182478SJoe Perches				fix_insert_line($fixlinenr, "\+{");
32928d182478SJoe Perches				if ($line2 !~ /^\s*$/) {
32938d182478SJoe Perches					fix_insert_line($fixlinenr, "\+\t" . trim($line2));
32948d182478SJoe Perches				}
32958d182478SJoe Perches			}
32960a920b5bSAndy Whitcroft		}
3297653d4876SAndy Whitcroft
32988905a67cSAndy Whitcroft# open braces for enum, union and struct go on the same line.
32998905a67cSAndy Whitcroft		if ($line =~ /^.\s*{/ &&
33008905a67cSAndy Whitcroft		    $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
33018d182478SJoe Perches			if (ERROR("OPEN_BRACE",
33028d182478SJoe Perches				  "open brace '{' following $1 go on the same line\n" . $hereprev) &&
33038d182478SJoe Perches			    $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
33048d182478SJoe Perches				fix_delete_line($fixlinenr - 1, $prevrawline);
33058d182478SJoe Perches				fix_delete_line($fixlinenr, $rawline);
33068d182478SJoe Perches				my $fixedline = rtrim($prevrawline) . " {";
33078d182478SJoe Perches				fix_insert_line($fixlinenr, $fixedline);
33088d182478SJoe Perches				$fixedline = $rawline;
33098d182478SJoe Perches				$fixedline =~ s/^(.\s*){\s*/$1\t/;
33108d182478SJoe Perches				if ($fixedline !~ /^\+\s*$/) {
33118d182478SJoe Perches					fix_insert_line($fixlinenr, $fixedline);
33128d182478SJoe Perches				}
33138d182478SJoe Perches			}
33148905a67cSAndy Whitcroft		}
33158905a67cSAndy Whitcroft
33160c73b4ebSAndy Whitcroft# missing space after union, struct or enum definition
33173705ce5bSJoe Perches		if ($line =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident){1,2}[=\{]/) {
33183705ce5bSJoe Perches			if (WARN("SPACING",
33193705ce5bSJoe Perches				 "missing space after $1 definition\n" . $herecurr) &&
33203705ce5bSJoe Perches			    $fix) {
3321194f66fcSJoe Perches				$fixed[$fixlinenr] =~
33223705ce5bSJoe Perches				    s/^(.\s*(?:typedef\s+)?(?:enum|union|struct)(?:\s+$Ident){1,2})([=\{])/$1 $2/;
33233705ce5bSJoe Perches			}
33240c73b4ebSAndy Whitcroft		}
33250c73b4ebSAndy Whitcroft
332631070b5dSJoe Perches# Function pointer declarations
332731070b5dSJoe Perches# check spacing between type, funcptr, and args
332831070b5dSJoe Perches# canonical declaration is "type (*funcptr)(args...)"
332991f72e9cSJoe Perches		if ($line =~ /^.\s*($Declare)\((\s*)\*(\s*)($Ident)(\s*)\)(\s*)\(/) {
333031070b5dSJoe Perches			my $declare = $1;
333131070b5dSJoe Perches			my $pre_pointer_space = $2;
333231070b5dSJoe Perches			my $post_pointer_space = $3;
333331070b5dSJoe Perches			my $funcname = $4;
333431070b5dSJoe Perches			my $post_funcname_space = $5;
333531070b5dSJoe Perches			my $pre_args_space = $6;
333631070b5dSJoe Perches
333791f72e9cSJoe Perches# the $Declare variable will capture all spaces after the type
333891f72e9cSJoe Perches# so check it for a missing trailing missing space but pointer return types
333991f72e9cSJoe Perches# don't need a space so don't warn for those.
334091f72e9cSJoe Perches			my $post_declare_space = "";
334191f72e9cSJoe Perches			if ($declare =~ /(\s+)$/) {
334291f72e9cSJoe Perches				$post_declare_space = $1;
334391f72e9cSJoe Perches				$declare = rtrim($declare);
334491f72e9cSJoe Perches			}
334591f72e9cSJoe Perches			if ($declare !~ /\*$/ && $post_declare_space =~ /^$/) {
334631070b5dSJoe Perches				WARN("SPACING",
334731070b5dSJoe Perches				     "missing space after return type\n" . $herecurr);
334891f72e9cSJoe Perches				$post_declare_space = " ";
334931070b5dSJoe Perches			}
335031070b5dSJoe Perches
335131070b5dSJoe Perches# unnecessary space "type  (*funcptr)(args...)"
335291f72e9cSJoe Perches# This test is not currently implemented because these declarations are
335391f72e9cSJoe Perches# equivalent to
335491f72e9cSJoe Perches#	int  foo(int bar, ...)
335591f72e9cSJoe Perches# and this is form shouldn't/doesn't generate a checkpatch warning.
335691f72e9cSJoe Perches#
335791f72e9cSJoe Perches#			elsif ($declare =~ /\s{2,}$/) {
335891f72e9cSJoe Perches#				WARN("SPACING",
335991f72e9cSJoe Perches#				     "Multiple spaces after return type\n" . $herecurr);
336091f72e9cSJoe Perches#			}
336131070b5dSJoe Perches
336231070b5dSJoe Perches# unnecessary space "type ( *funcptr)(args...)"
336331070b5dSJoe Perches			if (defined $pre_pointer_space &&
336431070b5dSJoe Perches			    $pre_pointer_space =~ /^\s/) {
336531070b5dSJoe Perches				WARN("SPACING",
336631070b5dSJoe Perches				     "Unnecessary space after function pointer open parenthesis\n" . $herecurr);
336731070b5dSJoe Perches			}
336831070b5dSJoe Perches
336931070b5dSJoe Perches# unnecessary space "type (* funcptr)(args...)"
337031070b5dSJoe Perches			if (defined $post_pointer_space &&
337131070b5dSJoe Perches			    $post_pointer_space =~ /^\s/) {
337231070b5dSJoe Perches				WARN("SPACING",
337331070b5dSJoe Perches				     "Unnecessary space before function pointer name\n" . $herecurr);
337431070b5dSJoe Perches			}
337531070b5dSJoe Perches
337631070b5dSJoe Perches# unnecessary space "type (*funcptr )(args...)"
337731070b5dSJoe Perches			if (defined $post_funcname_space &&
337831070b5dSJoe Perches			    $post_funcname_space =~ /^\s/) {
337931070b5dSJoe Perches				WARN("SPACING",
338031070b5dSJoe Perches				     "Unnecessary space after function pointer name\n" . $herecurr);
338131070b5dSJoe Perches			}
338231070b5dSJoe Perches
338331070b5dSJoe Perches# unnecessary space "type (*funcptr) (args...)"
338431070b5dSJoe Perches			if (defined $pre_args_space &&
338531070b5dSJoe Perches			    $pre_args_space =~ /^\s/) {
338631070b5dSJoe Perches				WARN("SPACING",
338731070b5dSJoe Perches				     "Unnecessary space before function pointer arguments\n" . $herecurr);
338831070b5dSJoe Perches			}
338931070b5dSJoe Perches
339031070b5dSJoe Perches			if (show_type("SPACING") && $fix) {
3391194f66fcSJoe Perches				$fixed[$fixlinenr] =~
339291f72e9cSJoe Perches				    s/^(.\s*)$Declare\s*\(\s*\*\s*$Ident\s*\)\s*\(/$1 . $declare . $post_declare_space . '(*' . $funcname . ')('/ex;
339331070b5dSJoe Perches			}
339431070b5dSJoe Perches		}
339531070b5dSJoe Perches
33968d31cfceSAndy Whitcroft# check for spacing round square brackets; allowed:
33978d31cfceSAndy Whitcroft#  1. with a type on the left -- int [] a;
3398fe2a7dbcSAndy Whitcroft#  2. at the beginning of a line for slice initialisers -- [0...10] = 5,
3399fe2a7dbcSAndy Whitcroft#  3. inside a curly brace -- = { [0...10] = 5 }
34008d31cfceSAndy Whitcroft		while ($line =~ /(.*?\s)\[/g) {
34018d31cfceSAndy Whitcroft			my ($where, $prefix) = ($-[1], $1);
34028d31cfceSAndy Whitcroft			if ($prefix !~ /$Type\s+$/ &&
3403fe2a7dbcSAndy Whitcroft			    ($where != 0 || $prefix !~ /^.\s+$/) &&
3404daebc534SAndy Whitcroft			    $prefix !~ /[{,]\s+$/) {
34053705ce5bSJoe Perches				if (ERROR("BRACKET_SPACE",
34063705ce5bSJoe Perches					  "space prohibited before open square bracket '['\n" . $herecurr) &&
34073705ce5bSJoe Perches				    $fix) {
3408194f66fcSJoe Perches				    $fixed[$fixlinenr] =~
34093705ce5bSJoe Perches					s/^(\+.*?)\s+\[/$1\[/;
34103705ce5bSJoe Perches				}
34118d31cfceSAndy Whitcroft			}
34128d31cfceSAndy Whitcroft		}
34138d31cfceSAndy Whitcroft
3414f0a594c1SAndy Whitcroft# check for spaces between functions and their parentheses.
34156c72ffaaSAndy Whitcroft		while ($line =~ /($Ident)\s+\(/g) {
3416c2fdda0dSAndy Whitcroft			my $name = $1;
3417773647a0SAndy Whitcroft			my $ctx_before = substr($line, 0, $-[1]);
3418773647a0SAndy Whitcroft			my $ctx = "$ctx_before$name";
3419c2fdda0dSAndy Whitcroft
3420c2fdda0dSAndy Whitcroft			# Ignore those directives where spaces _are_ permitted.
3421773647a0SAndy Whitcroft			if ($name =~ /^(?:
3422773647a0SAndy Whitcroft				if|for|while|switch|return|case|
3423773647a0SAndy Whitcroft				volatile|__volatile__|
3424773647a0SAndy Whitcroft				__attribute__|format|__extension__|
3425773647a0SAndy Whitcroft				asm|__asm__)$/x)
3426773647a0SAndy Whitcroft			{
3427c2fdda0dSAndy Whitcroft			# cpp #define statements have non-optional spaces, ie
3428c2fdda0dSAndy Whitcroft			# if there is a space between the name and the open
3429c2fdda0dSAndy Whitcroft			# parenthesis it is simply not a parameter group.
3430c45dcabdSAndy Whitcroft			} elsif ($ctx_before =~ /^.\s*\#\s*define\s*$/) {
3431773647a0SAndy Whitcroft
3432773647a0SAndy Whitcroft			# cpp #elif statement condition may start with a (
3433c45dcabdSAndy Whitcroft			} elsif ($ctx =~ /^.\s*\#\s*elif\s*$/) {
3434c2fdda0dSAndy Whitcroft
3435c2fdda0dSAndy Whitcroft			# If this whole things ends with a type its most
3436c2fdda0dSAndy Whitcroft			# likely a typedef for a function.
3437773647a0SAndy Whitcroft			} elsif ($ctx =~ /$Type$/) {
3438c2fdda0dSAndy Whitcroft
3439c2fdda0dSAndy Whitcroft			} else {
34403705ce5bSJoe Perches				if (WARN("SPACING",
34413705ce5bSJoe Perches					 "space prohibited between function name and open parenthesis '('\n" . $herecurr) &&
34423705ce5bSJoe Perches					     $fix) {
3443194f66fcSJoe Perches					$fixed[$fixlinenr] =~
34443705ce5bSJoe Perches					    s/\b$name\s+\(/$name\(/;
34453705ce5bSJoe Perches				}
3446f0a594c1SAndy Whitcroft			}
34476c72ffaaSAndy Whitcroft		}
34489a4cad4eSEric Nelson
3449653d4876SAndy Whitcroft# Check operator spacing.
34500a920b5bSAndy Whitcroft		if (!($line=~/\#\s*include/)) {
34513705ce5bSJoe Perches			my $fixed_line = "";
34523705ce5bSJoe Perches			my $line_fixed = 0;
34533705ce5bSJoe Perches
34549c0ca6f9SAndy Whitcroft			my $ops = qr{
34559c0ca6f9SAndy Whitcroft				<<=|>>=|<=|>=|==|!=|
34569c0ca6f9SAndy Whitcroft				\+=|-=|\*=|\/=|%=|\^=|\|=|&=|
34579c0ca6f9SAndy Whitcroft				=>|->|<<|>>|<|>|=|!|~|
34581f65f947SAndy Whitcroft				&&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%|
345984731623SJoe Perches				\?:|\?|:
34609c0ca6f9SAndy Whitcroft			}x;
3461cf655043SAndy Whitcroft			my @elements = split(/($ops|;)/, $opline);
34623705ce5bSJoe Perches
34633705ce5bSJoe Perches##			print("element count: <" . $#elements . ">\n");
34643705ce5bSJoe Perches##			foreach my $el (@elements) {
34653705ce5bSJoe Perches##				print("el: <$el>\n");
34663705ce5bSJoe Perches##			}
34673705ce5bSJoe Perches
34683705ce5bSJoe Perches			my @fix_elements = ();
346900df344fSAndy Whitcroft			my $off = 0;
34706c72ffaaSAndy Whitcroft
34713705ce5bSJoe Perches			foreach my $el (@elements) {
34723705ce5bSJoe Perches				push(@fix_elements, substr($rawline, $off, length($el)));
34733705ce5bSJoe Perches				$off += length($el);
34743705ce5bSJoe Perches			}
34753705ce5bSJoe Perches
34763705ce5bSJoe Perches			$off = 0;
34773705ce5bSJoe Perches
34786c72ffaaSAndy Whitcroft			my $blank = copy_spacing($opline);
3479b34c648bSJoe Perches			my $last_after = -1;
34806c72ffaaSAndy Whitcroft
34810a920b5bSAndy Whitcroft			for (my $n = 0; $n < $#elements; $n += 2) {
34823705ce5bSJoe Perches
34833705ce5bSJoe Perches				my $good = $fix_elements[$n] . $fix_elements[$n + 1];
34843705ce5bSJoe Perches
34853705ce5bSJoe Perches##				print("n: <$n> good: <$good>\n");
34863705ce5bSJoe Perches
34874a0df2efSAndy Whitcroft				$off += length($elements[$n]);
34884a0df2efSAndy Whitcroft
348925985edcSLucas De Marchi				# Pick up the preceding and succeeding characters.
3490773647a0SAndy Whitcroft				my $ca = substr($opline, 0, $off);
3491773647a0SAndy Whitcroft				my $cc = '';
3492773647a0SAndy Whitcroft				if (length($opline) >= ($off + length($elements[$n + 1]))) {
3493773647a0SAndy Whitcroft					$cc = substr($opline, $off + length($elements[$n + 1]));
3494773647a0SAndy Whitcroft				}
3495773647a0SAndy Whitcroft				my $cb = "$ca$;$cc";
3496773647a0SAndy Whitcroft
34974a0df2efSAndy Whitcroft				my $a = '';
34984a0df2efSAndy Whitcroft				$a = 'V' if ($elements[$n] ne '');
34994a0df2efSAndy Whitcroft				$a = 'W' if ($elements[$n] =~ /\s$/);
3500cf655043SAndy Whitcroft				$a = 'C' if ($elements[$n] =~ /$;$/);
35014a0df2efSAndy Whitcroft				$a = 'B' if ($elements[$n] =~ /(\[|\()$/);
35024a0df2efSAndy Whitcroft				$a = 'O' if ($elements[$n] eq '');
3503773647a0SAndy Whitcroft				$a = 'E' if ($ca =~ /^\s*$/);
35044a0df2efSAndy Whitcroft
35050a920b5bSAndy Whitcroft				my $op = $elements[$n + 1];
35064a0df2efSAndy Whitcroft
35074a0df2efSAndy Whitcroft				my $c = '';
35080a920b5bSAndy Whitcroft				if (defined $elements[$n + 2]) {
35094a0df2efSAndy Whitcroft					$c = 'V' if ($elements[$n + 2] ne '');
35104a0df2efSAndy Whitcroft					$c = 'W' if ($elements[$n + 2] =~ /^\s/);
3511cf655043SAndy Whitcroft					$c = 'C' if ($elements[$n + 2] =~ /^$;/);
35124a0df2efSAndy Whitcroft					$c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
35134a0df2efSAndy Whitcroft					$c = 'O' if ($elements[$n + 2] eq '');
35148b1b3378SAndy Whitcroft					$c = 'E' if ($elements[$n + 2] =~ /^\s*\\$/);
35154a0df2efSAndy Whitcroft				} else {
35164a0df2efSAndy Whitcroft					$c = 'E';
35170a920b5bSAndy Whitcroft				}
35180a920b5bSAndy Whitcroft
35194a0df2efSAndy Whitcroft				my $ctx = "${a}x${c}";
35204a0df2efSAndy Whitcroft
35214a0df2efSAndy Whitcroft				my $at = "(ctx:$ctx)";
35224a0df2efSAndy Whitcroft
35236c72ffaaSAndy Whitcroft				my $ptr = substr($blank, 0, $off) . "^";
3524de7d4f0eSAndy Whitcroft				my $hereptr = "$hereline$ptr\n";
35250a920b5bSAndy Whitcroft
352674048ed8SAndy Whitcroft				# Pull out the value of this operator.
35276c72ffaaSAndy Whitcroft				my $op_type = substr($curr_values, $off + 1, 1);
35280a920b5bSAndy Whitcroft
35291f65f947SAndy Whitcroft				# Get the full operator variant.
35301f65f947SAndy Whitcroft				my $opv = $op . substr($curr_vars, $off, 1);
35311f65f947SAndy Whitcroft
353213214adfSAndy Whitcroft				# Ignore operators passed as parameters.
353313214adfSAndy Whitcroft				if ($op_type ne 'V' &&
353413214adfSAndy Whitcroft				    $ca =~ /\s$/ && $cc =~ /^\s*,/) {
353513214adfSAndy Whitcroft
3536cf655043SAndy Whitcroft#				# Ignore comments
3537cf655043SAndy Whitcroft#				} elsif ($op =~ /^$;+$/) {
353813214adfSAndy Whitcroft
3539d8aaf121SAndy Whitcroft				# ; should have either the end of line or a space or \ after it
354013214adfSAndy Whitcroft				} elsif ($op eq ';') {
3541cf655043SAndy Whitcroft					if ($ctx !~ /.x[WEBC]/ &&
3542cf655043SAndy Whitcroft					    $cc !~ /^\\/ && $cc !~ /^;/) {
35433705ce5bSJoe Perches						if (ERROR("SPACING",
35443705ce5bSJoe Perches							  "space required after that '$op' $at\n" . $hereptr)) {
3545b34c648bSJoe Perches							$good = $fix_elements[$n] . trim($fix_elements[$n + 1]) . " ";
35463705ce5bSJoe Perches							$line_fixed = 1;
35473705ce5bSJoe Perches						}
3548d8aaf121SAndy Whitcroft					}
3549d8aaf121SAndy Whitcroft
3550d8aaf121SAndy Whitcroft				# // is a comment
3551d8aaf121SAndy Whitcroft				} elsif ($op eq '//') {
35520a920b5bSAndy Whitcroft
3553b00e4814SJoe Perches				#   :   when part of a bitfield
3554b00e4814SJoe Perches				} elsif ($opv eq ':B') {
3555b00e4814SJoe Perches					# skip the bitfield test for now
3556b00e4814SJoe Perches
35571f65f947SAndy Whitcroft				# No spaces for:
35581f65f947SAndy Whitcroft				#   ->
3559b00e4814SJoe Perches				} elsif ($op eq '->') {
35604a0df2efSAndy Whitcroft					if ($ctx =~ /Wx.|.xW/) {
35613705ce5bSJoe Perches						if (ERROR("SPACING",
35623705ce5bSJoe Perches							  "spaces prohibited around that '$op' $at\n" . $hereptr)) {
3563b34c648bSJoe Perches							$good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
35643705ce5bSJoe Perches							if (defined $fix_elements[$n + 2]) {
35653705ce5bSJoe Perches								$fix_elements[$n + 2] =~ s/^\s+//;
35663705ce5bSJoe Perches							}
3567b34c648bSJoe Perches							$line_fixed = 1;
35683705ce5bSJoe Perches						}
35690a920b5bSAndy Whitcroft					}
35700a920b5bSAndy Whitcroft
35712381097bSJoe Perches				# , must not have a space before and must have a space on the right.
35720a920b5bSAndy Whitcroft				} elsif ($op eq ',') {
35732381097bSJoe Perches					my $rtrim_before = 0;
35742381097bSJoe Perches					my $space_after = 0;
35752381097bSJoe Perches					if ($ctx =~ /Wx./) {
35762381097bSJoe Perches						if (ERROR("SPACING",
35772381097bSJoe Perches							  "space prohibited before that '$op' $at\n" . $hereptr)) {
35782381097bSJoe Perches							$line_fixed = 1;
35792381097bSJoe Perches							$rtrim_before = 1;
35802381097bSJoe Perches						}
35812381097bSJoe Perches					}
3582cf655043SAndy Whitcroft					if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) {
35833705ce5bSJoe Perches						if (ERROR("SPACING",
35843705ce5bSJoe Perches							  "space required after that '$op' $at\n" . $hereptr)) {
35853705ce5bSJoe Perches							$line_fixed = 1;
3586b34c648bSJoe Perches							$last_after = $n;
35872381097bSJoe Perches							$space_after = 1;
35882381097bSJoe Perches						}
35892381097bSJoe Perches					}
35902381097bSJoe Perches					if ($rtrim_before || $space_after) {
35912381097bSJoe Perches						if ($rtrim_before) {
35922381097bSJoe Perches							$good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
35932381097bSJoe Perches						} else {
35942381097bSJoe Perches							$good = $fix_elements[$n] . trim($fix_elements[$n + 1]);
35952381097bSJoe Perches						}
35962381097bSJoe Perches						if ($space_after) {
35972381097bSJoe Perches							$good .= " ";
35983705ce5bSJoe Perches						}
35990a920b5bSAndy Whitcroft					}
36000a920b5bSAndy Whitcroft
36019c0ca6f9SAndy Whitcroft				# '*' as part of a type definition -- reported already.
360274048ed8SAndy Whitcroft				} elsif ($opv eq '*_') {
36039c0ca6f9SAndy Whitcroft					#warn "'*' is part of type\n";
36049c0ca6f9SAndy Whitcroft
36059c0ca6f9SAndy Whitcroft				# unary operators should have a space before and
36069c0ca6f9SAndy Whitcroft				# none after.  May be left adjacent to another
36079c0ca6f9SAndy Whitcroft				# unary operator, or a cast
36089c0ca6f9SAndy Whitcroft				} elsif ($op eq '!' || $op eq '~' ||
360974048ed8SAndy Whitcroft					 $opv eq '*U' || $opv eq '-U' ||
36100d413866SAndy Whitcroft					 $opv eq '&U' || $opv eq '&&U') {
3611cf655043SAndy Whitcroft					if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
36123705ce5bSJoe Perches						if (ERROR("SPACING",
36133705ce5bSJoe Perches							  "space required before that '$op' $at\n" . $hereptr)) {
3614b34c648bSJoe Perches							if ($n != $last_after + 2) {
3615b34c648bSJoe Perches								$good = $fix_elements[$n] . " " . ltrim($fix_elements[$n + 1]);
36163705ce5bSJoe Perches								$line_fixed = 1;
36173705ce5bSJoe Perches							}
36180a920b5bSAndy Whitcroft						}
3619b34c648bSJoe Perches					}
3620a3340b35SAndy Whitcroft					if ($op eq '*' && $cc =~/\s*$Modifier\b/) {
3621171ae1a4SAndy Whitcroft						# A unary '*' may be const
3622171ae1a4SAndy Whitcroft
3623171ae1a4SAndy Whitcroft					} elsif ($ctx =~ /.xW/) {
36243705ce5bSJoe Perches						if (ERROR("SPACING",
36253705ce5bSJoe Perches							  "space prohibited after that '$op' $at\n" . $hereptr)) {
3626b34c648bSJoe Perches							$good = $fix_elements[$n] . rtrim($fix_elements[$n + 1]);
36273705ce5bSJoe Perches							if (defined $fix_elements[$n + 2]) {
36283705ce5bSJoe Perches								$fix_elements[$n + 2] =~ s/^\s+//;
36293705ce5bSJoe Perches							}
3630b34c648bSJoe Perches							$line_fixed = 1;
36313705ce5bSJoe Perches						}
36320a920b5bSAndy Whitcroft					}
36330a920b5bSAndy Whitcroft
36340a920b5bSAndy Whitcroft				# unary ++ and unary -- are allowed no space on one side.
36350a920b5bSAndy Whitcroft				} elsif ($op eq '++' or $op eq '--') {
3636773647a0SAndy Whitcroft					if ($ctx !~ /[WEOBC]x[^W]/ && $ctx !~ /[^W]x[WOBEC]/) {
36373705ce5bSJoe Perches						if (ERROR("SPACING",
36383705ce5bSJoe Perches							  "space required one side of that '$op' $at\n" . $hereptr)) {
3639b34c648bSJoe Perches							$good = $fix_elements[$n] . trim($fix_elements[$n + 1]) . " ";
36403705ce5bSJoe Perches							$line_fixed = 1;
36413705ce5bSJoe Perches						}
36420a920b5bSAndy Whitcroft					}
3643773647a0SAndy Whitcroft					if ($ctx =~ /Wx[BE]/ ||
3644773647a0SAndy Whitcroft					    ($ctx =~ /Wx./ && $cc =~ /^;/)) {
36453705ce5bSJoe Perches						if (ERROR("SPACING",
36463705ce5bSJoe Perches							  "space prohibited before that '$op' $at\n" . $hereptr)) {
3647b34c648bSJoe Perches							$good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
36483705ce5bSJoe Perches							$line_fixed = 1;
36493705ce5bSJoe Perches						}
3650653d4876SAndy Whitcroft					}
3651773647a0SAndy Whitcroft					if ($ctx =~ /ExW/) {
36523705ce5bSJoe Perches						if (ERROR("SPACING",
36533705ce5bSJoe Perches							  "space prohibited after that '$op' $at\n" . $hereptr)) {
3654b34c648bSJoe Perches							$good = $fix_elements[$n] . trim($fix_elements[$n + 1]);
36553705ce5bSJoe Perches							if (defined $fix_elements[$n + 2]) {
36563705ce5bSJoe Perches								$fix_elements[$n + 2] =~ s/^\s+//;
3657773647a0SAndy Whitcroft							}
3658b34c648bSJoe Perches							$line_fixed = 1;
36593705ce5bSJoe Perches						}
36603705ce5bSJoe Perches					}
36610a920b5bSAndy Whitcroft
36620a920b5bSAndy Whitcroft				# << and >> may either have or not have spaces both sides
36639c0ca6f9SAndy Whitcroft				} elsif ($op eq '<<' or $op eq '>>' or
36649c0ca6f9SAndy Whitcroft					 $op eq '&' or $op eq '^' or $op eq '|' or
36659c0ca6f9SAndy Whitcroft					 $op eq '+' or $op eq '-' or
3666c2fdda0dSAndy Whitcroft					 $op eq '*' or $op eq '/' or
3667c2fdda0dSAndy Whitcroft					 $op eq '%')
36680a920b5bSAndy Whitcroft				{
3669773647a0SAndy Whitcroft					if ($ctx =~ /Wx[^WCE]|[^WCE]xW/) {
36703705ce5bSJoe Perches						if (ERROR("SPACING",
36713705ce5bSJoe Perches							  "need consistent spacing around '$op' $at\n" . $hereptr)) {
3672b34c648bSJoe Perches							$good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
3673b34c648bSJoe Perches							if (defined $fix_elements[$n + 2]) {
3674b34c648bSJoe Perches								$fix_elements[$n + 2] =~ s/^\s+//;
3675b34c648bSJoe Perches							}
36763705ce5bSJoe Perches							$line_fixed = 1;
36773705ce5bSJoe Perches						}
36780a920b5bSAndy Whitcroft					}
36790a920b5bSAndy Whitcroft
36801f65f947SAndy Whitcroft				# A colon needs no spaces before when it is
36811f65f947SAndy Whitcroft				# terminating a case value or a label.
36821f65f947SAndy Whitcroft				} elsif ($opv eq ':C' || $opv eq ':L') {
36831f65f947SAndy Whitcroft					if ($ctx =~ /Wx./) {
36843705ce5bSJoe Perches						if (ERROR("SPACING",
36853705ce5bSJoe Perches							  "space prohibited before that '$op' $at\n" . $hereptr)) {
3686b34c648bSJoe Perches							$good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
36873705ce5bSJoe Perches							$line_fixed = 1;
36883705ce5bSJoe Perches						}
36891f65f947SAndy Whitcroft					}
36901f65f947SAndy Whitcroft
36910a920b5bSAndy Whitcroft				# All the others need spaces both sides.
3692cf655043SAndy Whitcroft				} elsif ($ctx !~ /[EWC]x[CWE]/) {
36931f65f947SAndy Whitcroft					my $ok = 0;
36941f65f947SAndy Whitcroft
369522f2a2efSAndy Whitcroft					# Ignore email addresses <foo@bar>
36961f65f947SAndy Whitcroft					if (($op eq '<' &&
36971f65f947SAndy Whitcroft					     $cc =~ /^\S+\@\S+>/) ||
36981f65f947SAndy Whitcroft					    ($op eq '>' &&
36991f65f947SAndy Whitcroft					     $ca =~ /<\S+\@\S+$/))
37001f65f947SAndy Whitcroft					{
37011f65f947SAndy Whitcroft					    	$ok = 1;
37021f65f947SAndy Whitcroft					}
37031f65f947SAndy Whitcroft
370484731623SJoe Perches					# messages are ERROR, but ?: are CHK
37051f65f947SAndy Whitcroft					if ($ok == 0) {
370684731623SJoe Perches						my $msg_type = \&ERROR;
370784731623SJoe Perches						$msg_type = \&CHK if (($op eq '?:' || $op eq '?' || $op eq ':') && $ctx =~ /VxV/);
370884731623SJoe Perches
370984731623SJoe Perches						if (&{$msg_type}("SPACING",
37103705ce5bSJoe Perches								 "spaces required around that '$op' $at\n" . $hereptr)) {
3711b34c648bSJoe Perches							$good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
3712b34c648bSJoe Perches							if (defined $fix_elements[$n + 2]) {
3713b34c648bSJoe Perches								$fix_elements[$n + 2] =~ s/^\s+//;
3714b34c648bSJoe Perches							}
37153705ce5bSJoe Perches							$line_fixed = 1;
37163705ce5bSJoe Perches						}
37170a920b5bSAndy Whitcroft					}
371822f2a2efSAndy Whitcroft				}
37194a0df2efSAndy Whitcroft				$off += length($elements[$n + 1]);
37203705ce5bSJoe Perches
37213705ce5bSJoe Perches##				print("n: <$n> GOOD: <$good>\n");
37223705ce5bSJoe Perches
37233705ce5bSJoe Perches				$fixed_line = $fixed_line . $good;
37240a920b5bSAndy Whitcroft			}
37253705ce5bSJoe Perches
37263705ce5bSJoe Perches			if (($#elements % 2) == 0) {
37273705ce5bSJoe Perches				$fixed_line = $fixed_line . $fix_elements[$#elements];
37283705ce5bSJoe Perches			}
37293705ce5bSJoe Perches
3730194f66fcSJoe Perches			if ($fix && $line_fixed && $fixed_line ne $fixed[$fixlinenr]) {
3731194f66fcSJoe Perches				$fixed[$fixlinenr] = $fixed_line;
37323705ce5bSJoe Perches			}
37333705ce5bSJoe Perches
37343705ce5bSJoe Perches
37350a920b5bSAndy Whitcroft		}
37360a920b5bSAndy Whitcroft
3737786b6326SJoe Perches# check for whitespace before a non-naked semicolon
3738d2e248e7SJoe Perches		if ($line =~ /^\+.*\S\s+;\s*$/) {
3739786b6326SJoe Perches			if (WARN("SPACING",
3740786b6326SJoe Perches				 "space prohibited before semicolon\n" . $herecurr) &&
3741786b6326SJoe Perches			    $fix) {
3742194f66fcSJoe Perches				1 while $fixed[$fixlinenr] =~
3743786b6326SJoe Perches				    s/^(\+.*\S)\s+;/$1;/;
3744786b6326SJoe Perches			}
3745786b6326SJoe Perches		}
3746786b6326SJoe Perches
3747f0a594c1SAndy Whitcroft# check for multiple assignments
3748f0a594c1SAndy Whitcroft		if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
3749000d1cc1SJoe Perches			CHK("MULTIPLE_ASSIGNMENTS",
3750000d1cc1SJoe Perches			    "multiple assignments should be avoided\n" . $herecurr);
3751f0a594c1SAndy Whitcroft		}
3752f0a594c1SAndy Whitcroft
375322f2a2efSAndy Whitcroft## # check for multiple declarations, allowing for a function declaration
375422f2a2efSAndy Whitcroft## # continuation.
375522f2a2efSAndy Whitcroft## 		if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
375622f2a2efSAndy Whitcroft## 		    $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
375722f2a2efSAndy Whitcroft##
375822f2a2efSAndy Whitcroft## 			# Remove any bracketed sections to ensure we do not
375922f2a2efSAndy Whitcroft## 			# falsly report the parameters of functions.
376022f2a2efSAndy Whitcroft## 			my $ln = $line;
376122f2a2efSAndy Whitcroft## 			while ($ln =~ s/\([^\(\)]*\)//g) {
376222f2a2efSAndy Whitcroft## 			}
376322f2a2efSAndy Whitcroft## 			if ($ln =~ /,/) {
3764000d1cc1SJoe Perches## 				WARN("MULTIPLE_DECLARATION",
3765000d1cc1SJoe Perches##				     "declaring multiple variables together should be avoided\n" . $herecurr);
376622f2a2efSAndy Whitcroft## 			}
376722f2a2efSAndy Whitcroft## 		}
3768f0a594c1SAndy Whitcroft
37690a920b5bSAndy Whitcroft#need space before brace following if, while, etc
377022f2a2efSAndy Whitcroft		if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) ||
377122f2a2efSAndy Whitcroft		    $line =~ /do{/) {
37723705ce5bSJoe Perches			if (ERROR("SPACING",
37733705ce5bSJoe Perches				  "space required before the open brace '{'\n" . $herecurr) &&
37743705ce5bSJoe Perches			    $fix) {
3775194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/^(\+.*(?:do|\))){/$1 {/;
37763705ce5bSJoe Perches			}
3777de7d4f0eSAndy Whitcroft		}
3778de7d4f0eSAndy Whitcroft
3779c4a62ef9SJoe Perches## # check for blank lines before declarations
3780c4a62ef9SJoe Perches##		if ($line =~ /^.\t+$Type\s+$Ident(?:\s*=.*)?;/ &&
3781c4a62ef9SJoe Perches##		    $prevrawline =~ /^.\s*$/) {
3782c4a62ef9SJoe Perches##			WARN("SPACING",
3783c4a62ef9SJoe Perches##			     "No blank lines before declarations\n" . $hereprev);
3784c4a62ef9SJoe Perches##		}
3785c4a62ef9SJoe Perches##
3786c4a62ef9SJoe Perches
3787de7d4f0eSAndy Whitcroft# closing brace should have a space following it when it has anything
3788de7d4f0eSAndy Whitcroft# on the line
3789de7d4f0eSAndy Whitcroft		if ($line =~ /}(?!(?:,|;|\)))\S/) {
3790d5e616fcSJoe Perches			if (ERROR("SPACING",
3791d5e616fcSJoe Perches				  "space required after that close brace '}'\n" . $herecurr) &&
3792d5e616fcSJoe Perches			    $fix) {
3793194f66fcSJoe Perches				$fixed[$fixlinenr] =~
3794d5e616fcSJoe Perches				    s/}((?!(?:,|;|\)))\S)/} $1/;
3795d5e616fcSJoe Perches			}
37960a920b5bSAndy Whitcroft		}
37970a920b5bSAndy Whitcroft
379822f2a2efSAndy Whitcroft# check spacing on square brackets
379922f2a2efSAndy Whitcroft		if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
38003705ce5bSJoe Perches			if (ERROR("SPACING",
38013705ce5bSJoe Perches				  "space prohibited after that open square bracket '['\n" . $herecurr) &&
38023705ce5bSJoe Perches			    $fix) {
3803194f66fcSJoe Perches				$fixed[$fixlinenr] =~
38043705ce5bSJoe Perches				    s/\[\s+/\[/;
38053705ce5bSJoe Perches			}
380622f2a2efSAndy Whitcroft		}
380722f2a2efSAndy Whitcroft		if ($line =~ /\s\]/) {
38083705ce5bSJoe Perches			if (ERROR("SPACING",
38093705ce5bSJoe Perches				  "space prohibited before that close square bracket ']'\n" . $herecurr) &&
38103705ce5bSJoe Perches			    $fix) {
3811194f66fcSJoe Perches				$fixed[$fixlinenr] =~
38123705ce5bSJoe Perches				    s/\s+\]/\]/;
38133705ce5bSJoe Perches			}
381422f2a2efSAndy Whitcroft		}
381522f2a2efSAndy Whitcroft
3816c45dcabdSAndy Whitcroft# check spacing on parentheses
38179c0ca6f9SAndy Whitcroft		if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
38189c0ca6f9SAndy Whitcroft		    $line !~ /for\s*\(\s+;/) {
38193705ce5bSJoe Perches			if (ERROR("SPACING",
38203705ce5bSJoe Perches				  "space prohibited after that open parenthesis '('\n" . $herecurr) &&
38213705ce5bSJoe Perches			    $fix) {
3822194f66fcSJoe Perches				$fixed[$fixlinenr] =~
38233705ce5bSJoe Perches				    s/\(\s+/\(/;
38243705ce5bSJoe Perches			}
382522f2a2efSAndy Whitcroft		}
382613214adfSAndy Whitcroft		if ($line =~ /(\s+)\)/ && $line !~ /^.\s*\)/ &&
3827c45dcabdSAndy Whitcroft		    $line !~ /for\s*\(.*;\s+\)/ &&
3828c45dcabdSAndy Whitcroft		    $line !~ /:\s+\)/) {
38293705ce5bSJoe Perches			if (ERROR("SPACING",
38303705ce5bSJoe Perches				  "space prohibited before that close parenthesis ')'\n" . $herecurr) &&
38313705ce5bSJoe Perches			    $fix) {
3832194f66fcSJoe Perches				$fixed[$fixlinenr] =~
38333705ce5bSJoe Perches				    s/\s+\)/\)/;
38343705ce5bSJoe Perches			}
383522f2a2efSAndy Whitcroft		}
383622f2a2efSAndy Whitcroft
3837e2826fd0SJoe Perches# check unnecessary parentheses around addressof/dereference single $Lvals
3838e2826fd0SJoe Perches# ie: &(foo->bar) should be &foo->bar and *(foo->bar) should be *foo->bar
3839e2826fd0SJoe Perches
3840e2826fd0SJoe Perches		while ($line =~ /(?:[^&]&\s*|\*)\(\s*($Ident\s*(?:$Member\s*)+)\s*\)/g) {
3841e2826fd0SJoe Perches			CHK("UNNECESSARY_PARENTHESES",
3842e2826fd0SJoe Perches			    "Unnecessary parentheses around $1\n" . $herecurr);
3843e2826fd0SJoe Perches		    }
3844e2826fd0SJoe Perches
38450a920b5bSAndy Whitcroft#goto labels aren't indented, allow a single space however
38464a0df2efSAndy Whitcroft		if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
38470a920b5bSAndy Whitcroft		   !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
38483705ce5bSJoe Perches			if (WARN("INDENTED_LABEL",
38493705ce5bSJoe Perches				 "labels should not be indented\n" . $herecurr) &&
38503705ce5bSJoe Perches			    $fix) {
3851194f66fcSJoe Perches				$fixed[$fixlinenr] =~
38523705ce5bSJoe Perches				    s/^(.)\s+/$1/;
38533705ce5bSJoe Perches			}
38540a920b5bSAndy Whitcroft		}
38550a920b5bSAndy Whitcroft
38565b9553abSJoe Perches# return is not a function
3857507e5141SJoe Perches		if (defined($stat) && $stat =~ /^.\s*return(\s*)\(/s) {
3858c45dcabdSAndy Whitcroft			my $spacing = $1;
3859507e5141SJoe Perches			if ($^V && $^V ge 5.10.0 &&
38605b9553abSJoe Perches			    $stat =~ /^.\s*return\s*($balanced_parens)\s*;\s*$/) {
38615b9553abSJoe Perches				my $value = $1;
38625b9553abSJoe Perches				$value = deparenthesize($value);
38635b9553abSJoe Perches				if ($value =~ m/^\s*$FuncArg\s*(?:\?|$)/) {
3864000d1cc1SJoe Perches					ERROR("RETURN_PARENTHESES",
3865000d1cc1SJoe Perches					      "return is not a function, parentheses are not required\n" . $herecurr);
38665b9553abSJoe Perches				}
3867c45dcabdSAndy Whitcroft			} elsif ($spacing !~ /\s+/) {
3868000d1cc1SJoe Perches				ERROR("SPACING",
3869000d1cc1SJoe Perches				      "space required before the open parenthesis '('\n" . $herecurr);
3870c45dcabdSAndy Whitcroft			}
3871c45dcabdSAndy Whitcroft		}
3872507e5141SJoe Perches
3873b43ae21bSJoe Perches# unnecessary return in a void function
3874b43ae21bSJoe Perches# at end-of-function, with the previous line a single leading tab, then return;
3875b43ae21bSJoe Perches# and the line before that not a goto label target like "out:"
3876b43ae21bSJoe Perches		if ($sline =~ /^[ \+]}\s*$/ &&
3877b43ae21bSJoe Perches		    $prevline =~ /^\+\treturn\s*;\s*$/ &&
3878b43ae21bSJoe Perches		    $linenr >= 3 &&
3879b43ae21bSJoe Perches		    $lines[$linenr - 3] =~ /^[ +]/ &&
3880b43ae21bSJoe Perches		    $lines[$linenr - 3] !~ /^[ +]\s*$Ident\s*:/) {
38819819cf25SJoe Perches			WARN("RETURN_VOID",
3882b43ae21bSJoe Perches			     "void function return statements are not generally useful\n" . $hereprev);
38839819cf25SJoe Perches               }
38849819cf25SJoe Perches
3885189248d8SJoe Perches# if statements using unnecessary parentheses - ie: if ((foo == bar))
3886189248d8SJoe Perches		if ($^V && $^V ge 5.10.0 &&
3887189248d8SJoe Perches		    $line =~ /\bif\s*((?:\(\s*){2,})/) {
3888189248d8SJoe Perches			my $openparens = $1;
3889189248d8SJoe Perches			my $count = $openparens =~ tr@\(@\(@;
3890189248d8SJoe Perches			my $msg = "";
3891189248d8SJoe Perches			if ($line =~ /\bif\s*(?:\(\s*){$count,$count}$LvalOrFunc\s*($Compare)\s*$LvalOrFunc(?:\s*\)){$count,$count}/) {
3892189248d8SJoe Perches				my $comp = $4;	#Not $1 because of $LvalOrFunc
3893189248d8SJoe Perches				$msg = " - maybe == should be = ?" if ($comp eq "==");
3894189248d8SJoe Perches				WARN("UNNECESSARY_PARENTHESES",
3895189248d8SJoe Perches				     "Unnecessary parentheses$msg\n" . $herecurr);
3896189248d8SJoe Perches			}
3897189248d8SJoe Perches		}
3898189248d8SJoe Perches
389953a3c448SAndy Whitcroft# Return of what appears to be an errno should normally be -'ve
390053a3c448SAndy Whitcroft		if ($line =~ /^.\s*return\s*(E[A-Z]*)\s*;/) {
390153a3c448SAndy Whitcroft			my $name = $1;
390253a3c448SAndy Whitcroft			if ($name ne 'EOF' && $name ne 'ERROR') {
3903000d1cc1SJoe Perches				WARN("USE_NEGATIVE_ERRNO",
3904000d1cc1SJoe Perches				     "return of an errno should typically be -ve (return -$1)\n" . $herecurr);
390553a3c448SAndy Whitcroft			}
390653a3c448SAndy Whitcroft		}
3907c45dcabdSAndy Whitcroft
39080a920b5bSAndy Whitcroft# Need a space before open parenthesis after if, while etc
39094a0df2efSAndy Whitcroft		if ($line =~ /\b(if|while|for|switch)\(/) {
39103705ce5bSJoe Perches			if (ERROR("SPACING",
39113705ce5bSJoe Perches				  "space required before the open parenthesis '('\n" . $herecurr) &&
39123705ce5bSJoe Perches			    $fix) {
3913194f66fcSJoe Perches				$fixed[$fixlinenr] =~
39143705ce5bSJoe Perches				    s/\b(if|while|for|switch)\(/$1 \(/;
39153705ce5bSJoe Perches			}
39160a920b5bSAndy Whitcroft		}
39170a920b5bSAndy Whitcroft
3918f5fe35ddSAndy Whitcroft# Check for illegal assignment in if conditional -- and check for trailing
3919f5fe35ddSAndy Whitcroft# statements after the conditional.
3920170d3a22SAndy Whitcroft		if ($line =~ /do\s*(?!{)/) {
39213e469cdcSAndy Whitcroft			($stat, $cond, $line_nr_next, $remain_next, $off_next) =
39223e469cdcSAndy Whitcroft				ctx_statement_block($linenr, $realcnt, 0)
39233e469cdcSAndy Whitcroft					if (!defined $stat);
3924170d3a22SAndy Whitcroft			my ($stat_next) = ctx_statement_block($line_nr_next,
3925170d3a22SAndy Whitcroft						$remain_next, $off_next);
3926170d3a22SAndy Whitcroft			$stat_next =~ s/\n./\n /g;
3927170d3a22SAndy Whitcroft			##print "stat<$stat> stat_next<$stat_next>\n";
3928170d3a22SAndy Whitcroft
3929170d3a22SAndy Whitcroft			if ($stat_next =~ /^\s*while\b/) {
3930170d3a22SAndy Whitcroft				# If the statement carries leading newlines,
3931170d3a22SAndy Whitcroft				# then count those as offsets.
3932170d3a22SAndy Whitcroft				my ($whitespace) =
3933170d3a22SAndy Whitcroft					($stat_next =~ /^((?:\s*\n[+-])*\s*)/s);
3934170d3a22SAndy Whitcroft				my $offset =
3935170d3a22SAndy Whitcroft					statement_rawlines($whitespace) - 1;
3936170d3a22SAndy Whitcroft
3937170d3a22SAndy Whitcroft				$suppress_whiletrailers{$line_nr_next +
3938170d3a22SAndy Whitcroft								$offset} = 1;
3939170d3a22SAndy Whitcroft			}
3940170d3a22SAndy Whitcroft		}
3941170d3a22SAndy Whitcroft		if (!defined $suppress_whiletrailers{$linenr} &&
3942c11230f4SJoe Perches		    defined($stat) && defined($cond) &&
3943170d3a22SAndy Whitcroft		    $line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) {
3944171ae1a4SAndy Whitcroft			my ($s, $c) = ($stat, $cond);
39458905a67cSAndy Whitcroft
3946b53c8e10SAndy Whitcroft			if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/s) {
3947000d1cc1SJoe Perches				ERROR("ASSIGN_IN_IF",
3948000d1cc1SJoe Perches				      "do not use assignment in if condition\n" . $herecurr);
39498905a67cSAndy Whitcroft			}
39508905a67cSAndy Whitcroft
39518905a67cSAndy Whitcroft			# Find out what is on the end of the line after the
39528905a67cSAndy Whitcroft			# conditional.
3953773647a0SAndy Whitcroft			substr($s, 0, length($c), '');
39548905a67cSAndy Whitcroft			$s =~ s/\n.*//g;
395513214adfSAndy Whitcroft			$s =~ s/$;//g; 	# Remove any comments
395653210168SAndy Whitcroft			if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ &&
395753210168SAndy Whitcroft			    $c !~ /}\s*while\s*/)
3958773647a0SAndy Whitcroft			{
3959bb44ad39SAndy Whitcroft				# Find out how long the conditional actually is.
3960bb44ad39SAndy Whitcroft				my @newlines = ($c =~ /\n/gs);
3961bb44ad39SAndy Whitcroft				my $cond_lines = 1 + $#newlines;
396242bdf74cSHidetoshi Seto				my $stat_real = '';
3963bb44ad39SAndy Whitcroft
396442bdf74cSHidetoshi Seto				$stat_real = raw_line($linenr, $cond_lines)
396542bdf74cSHidetoshi Seto							. "\n" if ($cond_lines);
3966bb44ad39SAndy Whitcroft				if (defined($stat_real) && $cond_lines > 1) {
3967bb44ad39SAndy Whitcroft					$stat_real = "[...]\n$stat_real";
3968bb44ad39SAndy Whitcroft				}
3969bb44ad39SAndy Whitcroft
3970000d1cc1SJoe Perches				ERROR("TRAILING_STATEMENTS",
3971000d1cc1SJoe Perches				      "trailing statements should be on next line\n" . $herecurr . $stat_real);
39728905a67cSAndy Whitcroft			}
39738905a67cSAndy Whitcroft		}
39748905a67cSAndy Whitcroft
397513214adfSAndy Whitcroft# Check for bitwise tests written as boolean
397613214adfSAndy Whitcroft		if ($line =~ /
397713214adfSAndy Whitcroft			(?:
397813214adfSAndy Whitcroft				(?:\[|\(|\&\&|\|\|)
397913214adfSAndy Whitcroft				\s*0[xX][0-9]+\s*
398013214adfSAndy Whitcroft				(?:\&\&|\|\|)
398113214adfSAndy Whitcroft			|
398213214adfSAndy Whitcroft				(?:\&\&|\|\|)
398313214adfSAndy Whitcroft				\s*0[xX][0-9]+\s*
398413214adfSAndy Whitcroft				(?:\&\&|\|\||\)|\])
398513214adfSAndy Whitcroft			)/x)
398613214adfSAndy Whitcroft		{
3987000d1cc1SJoe Perches			WARN("HEXADECIMAL_BOOLEAN_TEST",
3988000d1cc1SJoe Perches			     "boolean test with hexadecimal, perhaps just 1 \& or \|?\n" . $herecurr);
398913214adfSAndy Whitcroft		}
399013214adfSAndy Whitcroft
39918905a67cSAndy Whitcroft# if and else should not have general statements after it
399213214adfSAndy Whitcroft		if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/) {
399313214adfSAndy Whitcroft			my $s = $1;
399413214adfSAndy Whitcroft			$s =~ s/$;//g; 	# Remove any comments
399513214adfSAndy Whitcroft			if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) {
3996000d1cc1SJoe Perches				ERROR("TRAILING_STATEMENTS",
3997000d1cc1SJoe Perches				      "trailing statements should be on next line\n" . $herecurr);
39980a920b5bSAndy Whitcroft			}
399913214adfSAndy Whitcroft		}
400039667782SAndy Whitcroft# if should not continue a brace
400139667782SAndy Whitcroft		if ($line =~ /}\s*if\b/) {
4002000d1cc1SJoe Perches			ERROR("TRAILING_STATEMENTS",
4003048b123fSRasmus Villemoes			      "trailing statements should be on next line (or did you mean 'else if'?)\n" .
400439667782SAndy Whitcroft				$herecurr);
400539667782SAndy Whitcroft		}
4006a1080bf8SAndy Whitcroft# case and default should not have general statements after them
4007a1080bf8SAndy Whitcroft		if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
4008a1080bf8SAndy Whitcroft		    $line !~ /\G(?:
40093fef12d6SAndy Whitcroft			(?:\s*$;*)(?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$|
4010a1080bf8SAndy Whitcroft			\s*return\s+
4011a1080bf8SAndy Whitcroft		    )/xg)
4012a1080bf8SAndy Whitcroft		{
4013000d1cc1SJoe Perches			ERROR("TRAILING_STATEMENTS",
4014000d1cc1SJoe Perches			      "trailing statements should be on next line\n" . $herecurr);
4015a1080bf8SAndy Whitcroft		}
40160a920b5bSAndy Whitcroft
40170a920b5bSAndy Whitcroft		# Check for }<nl>else {, these must be at the same
40180a920b5bSAndy Whitcroft		# indent level to be relevant to each other.
40198b8856f4SJoe Perches		if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ &&
40200a920b5bSAndy Whitcroft		    $previndent == $indent) {
40218b8856f4SJoe Perches			if (ERROR("ELSE_AFTER_BRACE",
40228b8856f4SJoe Perches				  "else should follow close brace '}'\n" . $hereprev) &&
40238b8856f4SJoe Perches			    $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
40248b8856f4SJoe Perches				fix_delete_line($fixlinenr - 1, $prevrawline);
40258b8856f4SJoe Perches				fix_delete_line($fixlinenr, $rawline);
40268b8856f4SJoe Perches				my $fixedline = $prevrawline;
40278b8856f4SJoe Perches				$fixedline =~ s/}\s*$//;
40288b8856f4SJoe Perches				if ($fixedline !~ /^\+\s*$/) {
40298b8856f4SJoe Perches					fix_insert_line($fixlinenr, $fixedline);
40308b8856f4SJoe Perches				}
40318b8856f4SJoe Perches				$fixedline = $rawline;
40328b8856f4SJoe Perches				$fixedline =~ s/^(.\s*)else/$1} else/;
40338b8856f4SJoe Perches				fix_insert_line($fixlinenr, $fixedline);
40348b8856f4SJoe Perches			}
40350a920b5bSAndy Whitcroft		}
40360a920b5bSAndy Whitcroft
40378b8856f4SJoe Perches		if ($prevline=~/}\s*$/ and $line=~/^.\s*while\s*/ &&
4038c2fdda0dSAndy Whitcroft		    $previndent == $indent) {
4039c2fdda0dSAndy Whitcroft			my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0);
4040c2fdda0dSAndy Whitcroft
4041c2fdda0dSAndy Whitcroft			# Find out what is on the end of the line after the
4042c2fdda0dSAndy Whitcroft			# conditional.
4043773647a0SAndy Whitcroft			substr($s, 0, length($c), '');
4044c2fdda0dSAndy Whitcroft			$s =~ s/\n.*//g;
4045c2fdda0dSAndy Whitcroft
4046c2fdda0dSAndy Whitcroft			if ($s =~ /^\s*;/) {
40478b8856f4SJoe Perches				if (ERROR("WHILE_AFTER_BRACE",
40488b8856f4SJoe Perches					  "while should follow close brace '}'\n" . $hereprev) &&
40498b8856f4SJoe Perches				    $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
40508b8856f4SJoe Perches					fix_delete_line($fixlinenr - 1, $prevrawline);
40518b8856f4SJoe Perches					fix_delete_line($fixlinenr, $rawline);
40528b8856f4SJoe Perches					my $fixedline = $prevrawline;
40538b8856f4SJoe Perches					my $trailing = $rawline;
40548b8856f4SJoe Perches					$trailing =~ s/^\+//;
40558b8856f4SJoe Perches					$trailing = trim($trailing);
40568b8856f4SJoe Perches					$fixedline =~ s/}\s*$/} $trailing/;
40578b8856f4SJoe Perches					fix_insert_line($fixlinenr, $fixedline);
40588b8856f4SJoe Perches				}
4059c2fdda0dSAndy Whitcroft			}
4060c2fdda0dSAndy Whitcroft		}
4061c2fdda0dSAndy Whitcroft
406295e2c602SJoe Perches#Specific variable tests
4063323c1260SJoe Perches		while ($line =~ m{($Constant|$Lval)}g) {
4064323c1260SJoe Perches			my $var = $1;
406595e2c602SJoe Perches
406695e2c602SJoe Perches#gcc binary extension
406795e2c602SJoe Perches			if ($var =~ /^$Binary$/) {
4068d5e616fcSJoe Perches				if (WARN("GCC_BINARY_CONSTANT",
4069d5e616fcSJoe Perches					 "Avoid gcc v4.3+ binary constant extension: <$var>\n" . $herecurr) &&
4070d5e616fcSJoe Perches				    $fix) {
4071d5e616fcSJoe Perches					my $hexval = sprintf("0x%x", oct($var));
4072194f66fcSJoe Perches					$fixed[$fixlinenr] =~
4073d5e616fcSJoe Perches					    s/\b$var\b/$hexval/;
4074d5e616fcSJoe Perches				}
407595e2c602SJoe Perches			}
407695e2c602SJoe Perches
407795e2c602SJoe Perches#CamelCase
4078807bd26cSJoe Perches			if ($var !~ /^$Constant$/ &&
4079be79794bSJoe Perches			    $var =~ /[A-Z][a-z]|[a-z][A-Z]/ &&
408022735ce8SJoe Perches#Ignore Page<foo> variants
4081807bd26cSJoe Perches			    $var !~ /^(?:Clear|Set|TestClear|TestSet|)Page[A-Z]/ &&
408222735ce8SJoe Perches#Ignore SI style variants like nS, mV and dB (ie: max_uV, regulator_min_uA_show)
40833445686aSJoe Perches			    $var !~ /^(?:[a-z_]*?)_?[a-z][A-Z](?:_[a-z_]+)?$/) {
40847e781f67SJoe Perches				while ($var =~ m{($Ident)}g) {
40857e781f67SJoe Perches					my $word = $1;
40867e781f67SJoe Perches					next if ($word !~ /[A-Z][a-z]|[a-z][A-Z]/);
4087d8b07710SJoe Perches					if ($check) {
4088d8b07710SJoe Perches						seed_camelcase_includes();
4089d8b07710SJoe Perches						if (!$file && !$camelcase_file_seeded) {
4090d8b07710SJoe Perches							seed_camelcase_file($realfile);
4091d8b07710SJoe Perches							$camelcase_file_seeded = 1;
4092d8b07710SJoe Perches						}
4093d8b07710SJoe Perches					}
40947e781f67SJoe Perches					if (!defined $camelcase{$word}) {
40957e781f67SJoe Perches						$camelcase{$word} = 1;
4096be79794bSJoe Perches						CHK("CAMELCASE",
40977e781f67SJoe Perches						    "Avoid CamelCase: <$word>\n" . $herecurr);
40987e781f67SJoe Perches					}
4099323c1260SJoe Perches				}
4100323c1260SJoe Perches			}
41013445686aSJoe Perches		}
41020a920b5bSAndy Whitcroft
41030a920b5bSAndy Whitcroft#no spaces allowed after \ in define
4104d5e616fcSJoe Perches		if ($line =~ /\#\s*define.*\\\s+$/) {
4105d5e616fcSJoe Perches			if (WARN("WHITESPACE_AFTER_LINE_CONTINUATION",
4106d5e616fcSJoe Perches				 "Whitespace after \\ makes next lines useless\n" . $herecurr) &&
4107d5e616fcSJoe Perches			    $fix) {
4108194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\s+$//;
4109d5e616fcSJoe Perches			}
41100a920b5bSAndy Whitcroft		}
41110a920b5bSAndy Whitcroft
4112653d4876SAndy Whitcroft#warn if <asm/foo.h> is #included and <linux/foo.h> is available (uses RAW line)
4113c45dcabdSAndy Whitcroft		if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) {
4114e09dec48SAndy Whitcroft			my $file = "$1.h";
4115e09dec48SAndy Whitcroft			my $checkfile = "include/linux/$file";
4116e09dec48SAndy Whitcroft			if (-f "$root/$checkfile" &&
4117e09dec48SAndy Whitcroft			    $realfile ne $checkfile &&
41187840a94cSWolfram Sang			    $1 !~ /$allowed_asm_includes/)
4119c45dcabdSAndy Whitcroft			{
4120e09dec48SAndy Whitcroft				if ($realfile =~ m{^arch/}) {
4121000d1cc1SJoe Perches					CHK("ARCH_INCLUDE_LINUX",
4122000d1cc1SJoe Perches					    "Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
4123e09dec48SAndy Whitcroft				} else {
4124000d1cc1SJoe Perches					WARN("INCLUDE_LINUX",
4125000d1cc1SJoe Perches					     "Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
4126e09dec48SAndy Whitcroft				}
41270a920b5bSAndy Whitcroft			}
41280a920b5bSAndy Whitcroft		}
41290a920b5bSAndy Whitcroft
4130653d4876SAndy Whitcroft# multi-statement macros should be enclosed in a do while loop, grab the
4131653d4876SAndy Whitcroft# first statement and ensure its the whole macro if its not enclosed
4132cf655043SAndy Whitcroft# in a known good container
4133b8f96a31SAndy Whitcroft		if ($realfile !~ m@/vmlinux.lds.h$@ &&
4134b8f96a31SAndy Whitcroft		    $line =~ /^.\s*\#\s*define\s*$Ident(\()?/) {
4135d8aaf121SAndy Whitcroft			my $ln = $linenr;
4136d8aaf121SAndy Whitcroft			my $cnt = $realcnt;
4137c45dcabdSAndy Whitcroft			my ($off, $dstat, $dcond, $rest);
4138c45dcabdSAndy Whitcroft			my $ctx = '';
413908a2843eSJoe Perches			my $has_flow_statement = 0;
414008a2843eSJoe Perches			my $has_arg_concat = 0;
4141c45dcabdSAndy Whitcroft			($dstat, $dcond, $ln, $cnt, $off) =
4142f74bd194SAndy Whitcroft				ctx_statement_block($linenr, $realcnt, 0);
4143f74bd194SAndy Whitcroft			$ctx = $dstat;
4144c45dcabdSAndy Whitcroft			#print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n";
4145a3bb97a7SAndy Whitcroft			#print "LINE<$lines[$ln-1]> len<" . length($lines[$ln-1]) . "\n";
4146c45dcabdSAndy Whitcroft
414708a2843eSJoe Perches			$has_flow_statement = 1 if ($ctx =~ /\b(goto|return)\b/);
414808a2843eSJoe Perches			$has_arg_concat = 1 if ($ctx =~ /\#\#/);
414908a2843eSJoe Perches
4150f74bd194SAndy Whitcroft			$dstat =~ s/^.\s*\#\s*define\s+$Ident(?:\([^\)]*\))?\s*//;
4151292f1a9bSAndy Whitcroft			$dstat =~ s/$;//g;
4152c45dcabdSAndy Whitcroft			$dstat =~ s/\\\n.//g;
4153c45dcabdSAndy Whitcroft			$dstat =~ s/^\s*//s;
4154c45dcabdSAndy Whitcroft			$dstat =~ s/\s*$//s;
4155c45dcabdSAndy Whitcroft
4156c45dcabdSAndy Whitcroft			# Flatten any parentheses and braces
4157bf30d6edSAndy Whitcroft			while ($dstat =~ s/\([^\(\)]*\)/1/ ||
4158bf30d6edSAndy Whitcroft			       $dstat =~ s/\{[^\{\}]*\}/1/ ||
4159c81769fdSAndy Whitcroft			       $dstat =~ s/\[[^\[\]]*\]/1/)
4160bf30d6edSAndy Whitcroft			{
4161c45dcabdSAndy Whitcroft			}
4162c45dcabdSAndy Whitcroft
4163e45bab8eSAndy Whitcroft			# Flatten any obvious string concatentation.
4164e45bab8eSAndy Whitcroft			while ($dstat =~ s/("X*")\s*$Ident/$1/ ||
4165e45bab8eSAndy Whitcroft			       $dstat =~ s/$Ident\s*("X*")/$1/)
4166e45bab8eSAndy Whitcroft			{
4167e45bab8eSAndy Whitcroft			}
4168e45bab8eSAndy Whitcroft
4169c45dcabdSAndy Whitcroft			my $exceptions = qr{
4170c45dcabdSAndy Whitcroft				$Declare|
4171c45dcabdSAndy Whitcroft				module_param_named|
4172a0a0a7a9SKees Cook				MODULE_PARM_DESC|
4173c45dcabdSAndy Whitcroft				DECLARE_PER_CPU|
4174c45dcabdSAndy Whitcroft				DEFINE_PER_CPU|
4175383099fdSAndy Whitcroft				__typeof__\(|
417622fd2d3eSStefani Seibold				union|
417722fd2d3eSStefani Seibold				struct|
4178ea71a0a0SAndy Whitcroft				\.$Ident\s*=\s*|
4179ea71a0a0SAndy Whitcroft				^\"|\"$
4180c45dcabdSAndy Whitcroft			}x;
41815eaa20b9SAndy Whitcroft			#print "REST<$rest> dstat<$dstat> ctx<$ctx>\n";
4182f74bd194SAndy Whitcroft			if ($dstat ne '' &&
4183f74bd194SAndy Whitcroft			    $dstat !~ /^(?:$Ident|-?$Constant),$/ &&			# 10, // foo(),
4184f74bd194SAndy Whitcroft			    $dstat !~ /^(?:$Ident|-?$Constant);$/ &&			# foo();
41853cc4b1c3SJoe Perches			    $dstat !~ /^[!~-]?(?:$Lval|$Constant)$/ &&		# 10 // foo() // !foo // ~foo // -foo // foo->bar // foo.bar->baz
4186356fd398SJoe Perches			    $dstat !~ /^'X'$/ && $dstat !~ /^'XX'$/ &&			# character constants
4187f74bd194SAndy Whitcroft			    $dstat !~ /$exceptions/ &&
4188f74bd194SAndy Whitcroft			    $dstat !~ /^\.$Ident\s*=/ &&				# .foo =
4189e942e2c3SJoe Perches			    $dstat !~ /^(?:\#\s*$Ident|\#\s*$Constant)\s*$/ &&		# stringification #foo
419072f115f9SAndy Whitcroft			    $dstat !~ /^do\s*$Constant\s*while\s*$Constant;?$/ &&	# do {...} while (...); // do {...} while (...)
4191f74bd194SAndy Whitcroft			    $dstat !~ /^for\s*$Constant$/ &&				# for (...)
4192f74bd194SAndy Whitcroft			    $dstat !~ /^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ &&	# for (...) bar()
4193f74bd194SAndy Whitcroft			    $dstat !~ /^do\s*{/ &&					# do {...
4194f95a7e6aSJoe Perches			    $dstat !~ /^\({/ &&						# ({...
4195f95a7e6aSJoe Perches			    $ctx !~ /^.\s*#\s*define\s+TRACE_(?:SYSTEM|INCLUDE_FILE|INCLUDE_PATH)\b/)
4196c45dcabdSAndy Whitcroft			{
4197f74bd194SAndy Whitcroft				$ctx =~ s/\n*$//;
4198f74bd194SAndy Whitcroft				my $herectx = $here . "\n";
4199f74bd194SAndy Whitcroft				my $cnt = statement_rawlines($ctx);
4200f74bd194SAndy Whitcroft
4201f74bd194SAndy Whitcroft				for (my $n = 0; $n < $cnt; $n++) {
4202f74bd194SAndy Whitcroft					$herectx .= raw_line($linenr, $n) . "\n";
4203c45dcabdSAndy Whitcroft				}
4204c45dcabdSAndy Whitcroft
4205f74bd194SAndy Whitcroft				if ($dstat =~ /;/) {
4206f74bd194SAndy Whitcroft					ERROR("MULTISTATEMENT_MACRO_USE_DO_WHILE",
4207f74bd194SAndy Whitcroft					      "Macros with multiple statements should be enclosed in a do - while loop\n" . "$herectx");
4208f74bd194SAndy Whitcroft				} else {
4209000d1cc1SJoe Perches					ERROR("COMPLEX_MACRO",
4210388982b5SAndrew Morton					      "Macros with complex values should be enclosed in parentheses\n" . "$herectx");
4211d8aaf121SAndy Whitcroft				}
42120a920b5bSAndy Whitcroft			}
42135023d347SJoe Perches
421408a2843eSJoe Perches# check for macros with flow control, but without ## concatenation
421508a2843eSJoe Perches# ## concatenation is commonly a macro that defines a function so ignore those
421608a2843eSJoe Perches			if ($has_flow_statement && !$has_arg_concat) {
421708a2843eSJoe Perches				my $herectx = $here . "\n";
421808a2843eSJoe Perches				my $cnt = statement_rawlines($ctx);
421908a2843eSJoe Perches
422008a2843eSJoe Perches				for (my $n = 0; $n < $cnt; $n++) {
422108a2843eSJoe Perches					$herectx .= raw_line($linenr, $n) . "\n";
422208a2843eSJoe Perches				}
422308a2843eSJoe Perches				WARN("MACRO_WITH_FLOW_CONTROL",
422408a2843eSJoe Perches				     "Macros with flow control statements should be avoided\n" . "$herectx");
422508a2843eSJoe Perches			}
422608a2843eSJoe Perches
4227481eb486SJoe Perches# check for line continuations outside of #defines, preprocessor #, and asm
42285023d347SJoe Perches
42295023d347SJoe Perches		} else {
42305023d347SJoe Perches			if ($prevline !~ /^..*\\$/ &&
4231481eb486SJoe Perches			    $line !~ /^\+\s*\#.*\\$/ &&		# preprocessor
4232481eb486SJoe Perches			    $line !~ /^\+.*\b(__asm__|asm)\b.*\\$/ &&	# asm
42335023d347SJoe Perches			    $line =~ /^\+.*\\$/) {
42345023d347SJoe Perches				WARN("LINE_CONTINUATIONS",
42355023d347SJoe Perches				     "Avoid unnecessary line continuations\n" . $herecurr);
42365023d347SJoe Perches			}
4237653d4876SAndy Whitcroft		}
42380a920b5bSAndy Whitcroft
4239b13edf7fSJoe Perches# do {} while (0) macro tests:
4240b13edf7fSJoe Perches# single-statement macros do not need to be enclosed in do while (0) loop,
4241b13edf7fSJoe Perches# macro should not end with a semicolon
4242b13edf7fSJoe Perches		if ($^V && $^V ge 5.10.0 &&
4243b13edf7fSJoe Perches		    $realfile !~ m@/vmlinux.lds.h$@ &&
4244b13edf7fSJoe Perches		    $line =~ /^.\s*\#\s*define\s+$Ident(\()?/) {
4245b13edf7fSJoe Perches			my $ln = $linenr;
4246b13edf7fSJoe Perches			my $cnt = $realcnt;
4247b13edf7fSJoe Perches			my ($off, $dstat, $dcond, $rest);
4248b13edf7fSJoe Perches			my $ctx = '';
4249b13edf7fSJoe Perches			($dstat, $dcond, $ln, $cnt, $off) =
4250b13edf7fSJoe Perches				ctx_statement_block($linenr, $realcnt, 0);
4251b13edf7fSJoe Perches			$ctx = $dstat;
4252b13edf7fSJoe Perches
4253b13edf7fSJoe Perches			$dstat =~ s/\\\n.//g;
4254b13edf7fSJoe Perches
4255b13edf7fSJoe Perches			if ($dstat =~ /^\+\s*#\s*define\s+$Ident\s*${balanced_parens}\s*do\s*{(.*)\s*}\s*while\s*\(\s*0\s*\)\s*([;\s]*)\s*$/) {
4256b13edf7fSJoe Perches				my $stmts = $2;
4257b13edf7fSJoe Perches				my $semis = $3;
4258b13edf7fSJoe Perches
4259b13edf7fSJoe Perches				$ctx =~ s/\n*$//;
4260b13edf7fSJoe Perches				my $cnt = statement_rawlines($ctx);
4261b13edf7fSJoe Perches				my $herectx = $here . "\n";
4262b13edf7fSJoe Perches
4263b13edf7fSJoe Perches				for (my $n = 0; $n < $cnt; $n++) {
4264b13edf7fSJoe Perches					$herectx .= raw_line($linenr, $n) . "\n";
4265b13edf7fSJoe Perches				}
4266b13edf7fSJoe Perches
4267ac8e97f8SJoe Perches				if (($stmts =~ tr/;/;/) == 1 &&
4268ac8e97f8SJoe Perches				    $stmts !~ /^\s*(if|while|for|switch)\b/) {
4269b13edf7fSJoe Perches					WARN("SINGLE_STATEMENT_DO_WHILE_MACRO",
4270b13edf7fSJoe Perches					     "Single statement macros should not use a do {} while (0) loop\n" . "$herectx");
4271b13edf7fSJoe Perches				}
4272b13edf7fSJoe Perches				if (defined $semis && $semis ne "") {
4273b13edf7fSJoe Perches					WARN("DO_WHILE_MACRO_WITH_TRAILING_SEMICOLON",
4274b13edf7fSJoe Perches					     "do {} while (0) macros should not be semicolon terminated\n" . "$herectx");
4275b13edf7fSJoe Perches				}
4276f5ef95b1SJoe Perches			} elsif ($dstat =~ /^\+\s*#\s*define\s+$Ident.*;\s*$/) {
4277f5ef95b1SJoe Perches				$ctx =~ s/\n*$//;
4278f5ef95b1SJoe Perches				my $cnt = statement_rawlines($ctx);
4279f5ef95b1SJoe Perches				my $herectx = $here . "\n";
4280f5ef95b1SJoe Perches
4281f5ef95b1SJoe Perches				for (my $n = 0; $n < $cnt; $n++) {
4282f5ef95b1SJoe Perches					$herectx .= raw_line($linenr, $n) . "\n";
4283f5ef95b1SJoe Perches				}
4284f5ef95b1SJoe Perches
4285f5ef95b1SJoe Perches				WARN("TRAILING_SEMICOLON",
4286f5ef95b1SJoe Perches				     "macros should not use a trailing semicolon\n" . "$herectx");
4287b13edf7fSJoe Perches			}
4288b13edf7fSJoe Perches		}
4289b13edf7fSJoe Perches
4290080ba929SMike Frysinger# make sure symbols are always wrapped with VMLINUX_SYMBOL() ...
4291080ba929SMike Frysinger# all assignments may have only one of the following with an assignment:
4292080ba929SMike Frysinger#	.
4293080ba929SMike Frysinger#	ALIGN(...)
4294080ba929SMike Frysinger#	VMLINUX_SYMBOL(...)
4295080ba929SMike Frysinger		if ($realfile eq 'vmlinux.lds.h' && $line =~ /(?:(?:^|\s)$Ident\s*=|=\s*$Ident(?:\s|$))/) {
4296000d1cc1SJoe Perches			WARN("MISSING_VMLINUX_SYMBOL",
4297000d1cc1SJoe Perches			     "vmlinux.lds.h needs VMLINUX_SYMBOL() around C-visible symbols\n" . $herecurr);
4298080ba929SMike Frysinger		}
4299080ba929SMike Frysinger
4300f0a594c1SAndy Whitcroft# check for redundant bracing round if etc
430113214adfSAndy Whitcroft		if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) {
430213214adfSAndy Whitcroft			my ($level, $endln, @chunks) =
4303cf655043SAndy Whitcroft				ctx_statement_full($linenr, $realcnt, 1);
430413214adfSAndy Whitcroft			#print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n";
4305cf655043SAndy Whitcroft			#print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n";
4306cf655043SAndy Whitcroft			if ($#chunks > 0 && $level == 0) {
4307aad4f614SJoe Perches				my @allowed = ();
4308aad4f614SJoe Perches				my $allow = 0;
430913214adfSAndy Whitcroft				my $seen = 0;
4310773647a0SAndy Whitcroft				my $herectx = $here . "\n";
4311cf655043SAndy Whitcroft				my $ln = $linenr - 1;
431213214adfSAndy Whitcroft				for my $chunk (@chunks) {
431313214adfSAndy Whitcroft					my ($cond, $block) = @{$chunk};
431413214adfSAndy Whitcroft
4315773647a0SAndy Whitcroft					# If the condition carries leading newlines, then count those as offsets.
4316773647a0SAndy Whitcroft					my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s);
4317773647a0SAndy Whitcroft					my $offset = statement_rawlines($whitespace) - 1;
4318773647a0SAndy Whitcroft
4319aad4f614SJoe Perches					$allowed[$allow] = 0;
4320773647a0SAndy Whitcroft					#print "COND<$cond> whitespace<$whitespace> offset<$offset>\n";
4321773647a0SAndy Whitcroft
4322773647a0SAndy Whitcroft					# We have looked at and allowed this specific line.
4323773647a0SAndy Whitcroft					$suppress_ifbraces{$ln + $offset} = 1;
4324773647a0SAndy Whitcroft
4325773647a0SAndy Whitcroft					$herectx .= "$rawlines[$ln + $offset]\n[...]\n";
4326cf655043SAndy Whitcroft					$ln += statement_rawlines($block) - 1;
4327cf655043SAndy Whitcroft
4328773647a0SAndy Whitcroft					substr($block, 0, length($cond), '');
432913214adfSAndy Whitcroft
433013214adfSAndy Whitcroft					$seen++ if ($block =~ /^\s*{/);
433113214adfSAndy Whitcroft
4332aad4f614SJoe Perches					#print "cond<$cond> block<$block> allowed<$allowed[$allow]>\n";
4333cf655043SAndy Whitcroft					if (statement_lines($cond) > 1) {
4334cf655043SAndy Whitcroft						#print "APW: ALLOWED: cond<$cond>\n";
4335aad4f614SJoe Perches						$allowed[$allow] = 1;
433613214adfSAndy Whitcroft					}
433713214adfSAndy Whitcroft					if ($block =~/\b(?:if|for|while)\b/) {
4338cf655043SAndy Whitcroft						#print "APW: ALLOWED: block<$block>\n";
4339aad4f614SJoe Perches						$allowed[$allow] = 1;
434013214adfSAndy Whitcroft					}
4341cf655043SAndy Whitcroft					if (statement_block_size($block) > 1) {
4342cf655043SAndy Whitcroft						#print "APW: ALLOWED: lines block<$block>\n";
4343aad4f614SJoe Perches						$allowed[$allow] = 1;
434413214adfSAndy Whitcroft					}
4345aad4f614SJoe Perches					$allow++;
434613214adfSAndy Whitcroft				}
4347aad4f614SJoe Perches				if ($seen) {
4348aad4f614SJoe Perches					my $sum_allowed = 0;
4349aad4f614SJoe Perches					foreach (@allowed) {
4350aad4f614SJoe Perches						$sum_allowed += $_;
4351aad4f614SJoe Perches					}
4352aad4f614SJoe Perches					if ($sum_allowed == 0) {
4353000d1cc1SJoe Perches						WARN("BRACES",
4354000d1cc1SJoe Perches						     "braces {} are not necessary for any arm of this statement\n" . $herectx);
4355aad4f614SJoe Perches					} elsif ($sum_allowed != $allow &&
4356aad4f614SJoe Perches						 $seen != $allow) {
4357aad4f614SJoe Perches						CHK("BRACES",
4358aad4f614SJoe Perches						    "braces {} should be used on all arms of this statement\n" . $herectx);
4359aad4f614SJoe Perches					}
436013214adfSAndy Whitcroft				}
436113214adfSAndy Whitcroft			}
436213214adfSAndy Whitcroft		}
4363773647a0SAndy Whitcroft		if (!defined $suppress_ifbraces{$linenr - 1} &&
436413214adfSAndy Whitcroft					$line =~ /\b(if|while|for|else)\b/) {
4365cf655043SAndy Whitcroft			my $allowed = 0;
4366f0a594c1SAndy Whitcroft
4367cf655043SAndy Whitcroft			# Check the pre-context.
4368cf655043SAndy Whitcroft			if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) {
4369cf655043SAndy Whitcroft				#print "APW: ALLOWED: pre<$1>\n";
4370cf655043SAndy Whitcroft				$allowed = 1;
4371f0a594c1SAndy Whitcroft			}
4372773647a0SAndy Whitcroft
4373773647a0SAndy Whitcroft			my ($level, $endln, @chunks) =
4374773647a0SAndy Whitcroft				ctx_statement_full($linenr, $realcnt, $-[0]);
4375773647a0SAndy Whitcroft
4376cf655043SAndy Whitcroft			# Check the condition.
4377cf655043SAndy Whitcroft			my ($cond, $block) = @{$chunks[0]};
4378773647a0SAndy Whitcroft			#print "CHECKING<$linenr> cond<$cond> block<$block>\n";
4379cf655043SAndy Whitcroft			if (defined $cond) {
4380773647a0SAndy Whitcroft				substr($block, 0, length($cond), '');
4381cf655043SAndy Whitcroft			}
4382cf655043SAndy Whitcroft			if (statement_lines($cond) > 1) {
4383cf655043SAndy Whitcroft				#print "APW: ALLOWED: cond<$cond>\n";
4384cf655043SAndy Whitcroft				$allowed = 1;
4385cf655043SAndy Whitcroft			}
4386cf655043SAndy Whitcroft			if ($block =~/\b(?:if|for|while)\b/) {
4387cf655043SAndy Whitcroft				#print "APW: ALLOWED: block<$block>\n";
4388cf655043SAndy Whitcroft				$allowed = 1;
4389cf655043SAndy Whitcroft			}
4390cf655043SAndy Whitcroft			if (statement_block_size($block) > 1) {
4391cf655043SAndy Whitcroft				#print "APW: ALLOWED: lines block<$block>\n";
4392cf655043SAndy Whitcroft				$allowed = 1;
4393cf655043SAndy Whitcroft			}
4394cf655043SAndy Whitcroft			# Check the post-context.
4395cf655043SAndy Whitcroft			if (defined $chunks[1]) {
4396cf655043SAndy Whitcroft				my ($cond, $block) = @{$chunks[1]};
4397cf655043SAndy Whitcroft				if (defined $cond) {
4398773647a0SAndy Whitcroft					substr($block, 0, length($cond), '');
4399cf655043SAndy Whitcroft				}
4400cf655043SAndy Whitcroft				if ($block =~ /^\s*\{/) {
4401cf655043SAndy Whitcroft					#print "APW: ALLOWED: chunk-1 block<$block>\n";
4402cf655043SAndy Whitcroft					$allowed = 1;
4403cf655043SAndy Whitcroft				}
4404cf655043SAndy Whitcroft			}
4405cf655043SAndy Whitcroft			if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
440669932487SJustin P. Mattock				my $herectx = $here . "\n";
4407f055663cSAndy Whitcroft				my $cnt = statement_rawlines($block);
4408cf655043SAndy Whitcroft
4409f055663cSAndy Whitcroft				for (my $n = 0; $n < $cnt; $n++) {
441069932487SJustin P. Mattock					$herectx .= raw_line($linenr, $n) . "\n";
4411cf655043SAndy Whitcroft				}
4412cf655043SAndy Whitcroft
4413000d1cc1SJoe Perches				WARN("BRACES",
4414000d1cc1SJoe Perches				     "braces {} are not necessary for single statement blocks\n" . $herectx);
4415f0a594c1SAndy Whitcroft			}
4416f0a594c1SAndy Whitcroft		}
4417f0a594c1SAndy Whitcroft
44180979ae66SJoe Perches# check for unnecessary blank lines around braces
441977b9a53aSJoe Perches		if (($line =~ /^.\s*}\s*$/ && $prevrawline =~ /^.\s*$/)) {
44200979ae66SJoe Perches			CHK("BRACES",
44210979ae66SJoe Perches			    "Blank lines aren't necessary before a close brace '}'\n" . $hereprev);
44220979ae66SJoe Perches		}
442377b9a53aSJoe Perches		if (($rawline =~ /^.\s*$/ && $prevline =~ /^..*{\s*$/)) {
44240979ae66SJoe Perches			CHK("BRACES",
44250979ae66SJoe Perches			    "Blank lines aren't necessary after an open brace '{'\n" . $hereprev);
44260979ae66SJoe Perches		}
44270979ae66SJoe Perches
44284a0df2efSAndy Whitcroft# no volatiles please
44296c72ffaaSAndy Whitcroft		my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
44306c72ffaaSAndy Whitcroft		if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
4431000d1cc1SJoe Perches			WARN("VOLATILE",
4432000d1cc1SJoe Perches			     "Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt\n" . $herecurr);
44334a0df2efSAndy Whitcroft		}
44344a0df2efSAndy Whitcroft
4435f17dba4fSJoe Perches# concatenated string without spaces between elements
4436f17dba4fSJoe Perches		if ($line =~ /"X+"[A-Z_]+/ || $line =~ /[A-Z_]+"X+"/) {
4437f17dba4fSJoe Perches			CHK("CONCATENATED_STRING",
4438f17dba4fSJoe Perches			    "Concatenated strings should use spaces between elements\n" . $herecurr);
4439f17dba4fSJoe Perches		}
4440f17dba4fSJoe Perches
444100df344fSAndy Whitcroft# warn about #if 0
4442c45dcabdSAndy Whitcroft		if ($line =~ /^.\s*\#\s*if\s+0\b/) {
4443000d1cc1SJoe Perches			CHK("REDUNDANT_CODE",
4444000d1cc1SJoe Perches			    "if this code is redundant consider removing it\n" .
4445de7d4f0eSAndy Whitcroft				$herecurr);
44464a0df2efSAndy Whitcroft		}
44474a0df2efSAndy Whitcroft
444803df4b51SAndy Whitcroft# check for needless "if (<foo>) fn(<foo>)" uses
444903df4b51SAndy Whitcroft		if ($prevline =~ /\bif\s*\(\s*($Lval)\s*\)/) {
445003df4b51SAndy Whitcroft			my $expr = '\s*\(\s*' . quotemeta($1) . '\s*\)\s*;';
445103df4b51SAndy Whitcroft			if ($line =~ /\b(kfree|usb_free_urb|debugfs_remove(?:_recursive)?)$expr/) {
445203df4b51SAndy Whitcroft				WARN('NEEDLESS_IF',
445315160f90SFabio Estevam				     "$1(NULL) is safe and this check is probably not required\n" . $hereprev);
44544c432a8fSGreg Kroah-Hartman			}
44554c432a8fSGreg Kroah-Hartman		}
4456f0a594c1SAndy Whitcroft
4457ebfdc409SJoe Perches# check for unnecessary "Out of Memory" messages
4458ebfdc409SJoe Perches		if ($line =~ /^\+.*\b$logFunctions\s*\(/ &&
4459ebfdc409SJoe Perches		    $prevline =~ /^[ \+]\s*if\s*\(\s*(\!\s*|NULL\s*==\s*)?($Lval)(\s*==\s*NULL\s*)?\s*\)/ &&
4460ebfdc409SJoe Perches		    (defined $1 || defined $3) &&
4461ebfdc409SJoe Perches		    $linenr > 3) {
4462ebfdc409SJoe Perches			my $testval = $2;
4463ebfdc409SJoe Perches			my $testline = $lines[$linenr - 3];
4464ebfdc409SJoe Perches
4465ebfdc409SJoe Perches			my ($s, $c) = ctx_statement_block($linenr - 3, $realcnt, 0);
4466ebfdc409SJoe Perches#			print("line: <$line>\nprevline: <$prevline>\ns: <$s>\nc: <$c>\n\n\n");
4467ebfdc409SJoe Perches
4468ebfdc409SJoe Perches			if ($c =~ /(?:^|\n)[ \+]\s*(?:$Type\s*)?\Q$testval\E\s*=\s*(?:\([^\)]*\)\s*)?\s*(?:devm_)?(?:[kv][czm]alloc(?:_node|_array)?\b|kstrdup|(?:dev_)?alloc_skb)/) {
4469ebfdc409SJoe Perches				WARN("OOM_MESSAGE",
4470ebfdc409SJoe Perches				     "Possible unnecessary 'out of memory' message\n" . $hereprev);
4471ebfdc409SJoe Perches			}
4472ebfdc409SJoe Perches		}
4473ebfdc409SJoe Perches
4474f78d98f6SJoe Perches# check for logging functions with KERN_<LEVEL>
4475f78d98f6SJoe Perches		if ($line !~ /printk\s*\(/ &&
4476f78d98f6SJoe Perches		    $line =~ /\b$logFunctions\s*\(.*\b(KERN_[A-Z]+)\b/) {
4477f78d98f6SJoe Perches			my $level = $1;
4478f78d98f6SJoe Perches			if (WARN("UNNECESSARY_KERN_LEVEL",
4479f78d98f6SJoe Perches				 "Possible unnecessary $level\n" . $herecurr) &&
4480f78d98f6SJoe Perches			    $fix) {
4481f78d98f6SJoe Perches				$fixed[$fixlinenr] =~ s/\s*$level\s*//;
4482f78d98f6SJoe Perches			}
4483f78d98f6SJoe Perches		}
4484f78d98f6SJoe Perches
4485*abb08a53SJoe Perches# check for mask then right shift without a parentheses
4486*abb08a53SJoe Perches		if ($^V && $^V ge 5.10.0 &&
4487*abb08a53SJoe Perches		    $line =~ /$LvalOrFunc\s*\&\s*($LvalOrFunc)\s*>>/ &&
4488*abb08a53SJoe Perches		    $4 !~ /^\&/) { # $LvalOrFunc may be &foo, ignore if so
4489*abb08a53SJoe Perches			WARN("MASK_THEN_SHIFT",
4490*abb08a53SJoe Perches			     "Possible precedence defect with mask then right shift - may need parentheses\n" . $herecurr);
4491*abb08a53SJoe Perches		}
4492*abb08a53SJoe Perches
44938716de38SJoe Perches# check for bad placement of section $InitAttribute (e.g.: __initdata)
44948716de38SJoe Perches		if ($line =~ /(\b$InitAttribute\b)/) {
44958716de38SJoe Perches			my $attr = $1;
44968716de38SJoe Perches			if ($line =~ /^\+\s*static\s+(?:const\s+)?(?:$attr\s+)?($NonptrTypeWithAttr)\s+(?:$attr\s+)?($Ident(?:\[[^]]*\])?)\s*[=;]/) {
44978716de38SJoe Perches				my $ptr = $1;
44988716de38SJoe Perches				my $var = $2;
44998716de38SJoe Perches				if ((($ptr =~ /\b(union|struct)\s+$attr\b/ &&
45008716de38SJoe Perches				      ERROR("MISPLACED_INIT",
45018716de38SJoe Perches					    "$attr should be placed after $var\n" . $herecurr)) ||
45028716de38SJoe Perches				     ($ptr !~ /\b(union|struct)\s+$attr\b/ &&
45038716de38SJoe Perches				      WARN("MISPLACED_INIT",
45048716de38SJoe Perches					   "$attr should be placed after $var\n" . $herecurr))) &&
45058716de38SJoe Perches				    $fix) {
4506194f66fcSJoe Perches					$fixed[$fixlinenr] =~ s/(\bstatic\s+(?:const\s+)?)(?:$attr\s+)?($NonptrTypeWithAttr)\s+(?:$attr\s+)?($Ident(?:\[[^]]*\])?)\s*([=;])\s*/"$1" . trim(string_find_replace($2, "\\s*$attr\\s*", " ")) . " " . trim(string_find_replace($3, "\\s*$attr\\s*", "")) . " $attr" . ("$4" eq ";" ? ";" : " = ")/e;
45078716de38SJoe Perches				}
45088716de38SJoe Perches			}
45098716de38SJoe Perches		}
45108716de38SJoe Perches
4511e970b884SJoe Perches# check for $InitAttributeData (ie: __initdata) with const
4512e970b884SJoe Perches		if ($line =~ /\bconst\b/ && $line =~ /($InitAttributeData)/) {
4513e970b884SJoe Perches			my $attr = $1;
4514e970b884SJoe Perches			$attr =~ /($InitAttributePrefix)(.*)/;
4515e970b884SJoe Perches			my $attr_prefix = $1;
4516e970b884SJoe Perches			my $attr_type = $2;
4517e970b884SJoe Perches			if (ERROR("INIT_ATTRIBUTE",
4518e970b884SJoe Perches				  "Use of const init definition must use ${attr_prefix}initconst\n" . $herecurr) &&
4519e970b884SJoe Perches			    $fix) {
4520194f66fcSJoe Perches				$fixed[$fixlinenr] =~
4521e970b884SJoe Perches				    s/$InitAttributeData/${attr_prefix}initconst/;
4522e970b884SJoe Perches			}
4523e970b884SJoe Perches		}
4524e970b884SJoe Perches
4525e970b884SJoe Perches# check for $InitAttributeConst (ie: __initconst) without const
4526e970b884SJoe Perches		if ($line !~ /\bconst\b/ && $line =~ /($InitAttributeConst)/) {
4527e970b884SJoe Perches			my $attr = $1;
4528e970b884SJoe Perches			if (ERROR("INIT_ATTRIBUTE",
4529e970b884SJoe Perches				  "Use of $attr requires a separate use of const\n" . $herecurr) &&
4530e970b884SJoe Perches			    $fix) {
4531194f66fcSJoe Perches				my $lead = $fixed[$fixlinenr] =~
4532e970b884SJoe Perches				    /(^\+\s*(?:static\s+))/;
4533e970b884SJoe Perches				$lead = rtrim($1);
4534e970b884SJoe Perches				$lead = "$lead " if ($lead !~ /^\+$/);
4535e970b884SJoe Perches				$lead = "${lead}const ";
4536194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/(^\+\s*(?:static\s+))/$lead/;
4537e970b884SJoe Perches			}
4538e970b884SJoe Perches		}
4539e970b884SJoe Perches
4540fbdb8138SJoe Perches# don't use __constant_<foo> functions outside of include/uapi/
4541fbdb8138SJoe Perches		if ($realfile !~ m@^include/uapi/@ &&
4542fbdb8138SJoe Perches		    $line =~ /(__constant_(?:htons|ntohs|[bl]e(?:16|32|64)_to_cpu|cpu_to_[bl]e(?:16|32|64)))\s*\(/) {
4543fbdb8138SJoe Perches			my $constant_func = $1;
4544fbdb8138SJoe Perches			my $func = $constant_func;
4545fbdb8138SJoe Perches			$func =~ s/^__constant_//;
4546fbdb8138SJoe Perches			if (WARN("CONSTANT_CONVERSION",
4547fbdb8138SJoe Perches				 "$constant_func should be $func\n" . $herecurr) &&
4548fbdb8138SJoe Perches			    $fix) {
4549194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\b$constant_func\b/$func/g;
4550fbdb8138SJoe Perches			}
4551fbdb8138SJoe Perches		}
4552fbdb8138SJoe Perches
45531a15a250SPatrick Pannuto# prefer usleep_range over udelay
455437581c28SBruce Allan		if ($line =~ /\budelay\s*\(\s*(\d+)\s*\)/) {
455543c1d77cSJoe Perches			my $delay = $1;
45561a15a250SPatrick Pannuto			# ignore udelay's < 10, however
455743c1d77cSJoe Perches			if (! ($delay < 10) ) {
4558000d1cc1SJoe Perches				CHK("USLEEP_RANGE",
455943c1d77cSJoe Perches				    "usleep_range is preferred over udelay; see Documentation/timers/timers-howto.txt\n" . $herecurr);
456043c1d77cSJoe Perches			}
456143c1d77cSJoe Perches			if ($delay > 2000) {
456243c1d77cSJoe Perches				WARN("LONG_UDELAY",
456343c1d77cSJoe Perches				     "long udelay - prefer mdelay; see arch/arm/include/asm/delay.h\n" . $herecurr);
45641a15a250SPatrick Pannuto			}
45651a15a250SPatrick Pannuto		}
45661a15a250SPatrick Pannuto
456709ef8725SPatrick Pannuto# warn about unexpectedly long msleep's
456809ef8725SPatrick Pannuto		if ($line =~ /\bmsleep\s*\((\d+)\);/) {
456909ef8725SPatrick Pannuto			if ($1 < 20) {
4570000d1cc1SJoe Perches				WARN("MSLEEP",
457143c1d77cSJoe Perches				     "msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt\n" . $herecurr);
457209ef8725SPatrick Pannuto			}
457309ef8725SPatrick Pannuto		}
457409ef8725SPatrick Pannuto
457536ec1939SJoe Perches# check for comparisons of jiffies
457636ec1939SJoe Perches		if ($line =~ /\bjiffies\s*$Compare|$Compare\s*jiffies\b/) {
457736ec1939SJoe Perches			WARN("JIFFIES_COMPARISON",
457836ec1939SJoe Perches			     "Comparing jiffies is almost always wrong; prefer time_after, time_before and friends\n" . $herecurr);
457936ec1939SJoe Perches		}
458036ec1939SJoe Perches
45819d7a34a5SJoe Perches# check for comparisons of get_jiffies_64()
45829d7a34a5SJoe Perches		if ($line =~ /\bget_jiffies_64\s*\(\s*\)\s*$Compare|$Compare\s*get_jiffies_64\s*\(\s*\)/) {
45839d7a34a5SJoe Perches			WARN("JIFFIES_COMPARISON",
45849d7a34a5SJoe Perches			     "Comparing get_jiffies_64() is almost always wrong; prefer time_after64, time_before64 and friends\n" . $herecurr);
45859d7a34a5SJoe Perches		}
45869d7a34a5SJoe Perches
458700df344fSAndy Whitcroft# warn about #ifdefs in C files
4588c45dcabdSAndy Whitcroft#		if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
458900df344fSAndy Whitcroft#			print "#ifdef in C files should be avoided\n";
459000df344fSAndy Whitcroft#			print "$herecurr";
459100df344fSAndy Whitcroft#			$clean = 0;
459200df344fSAndy Whitcroft#		}
459300df344fSAndy Whitcroft
459422f2a2efSAndy Whitcroft# warn about spacing in #ifdefs
4595c45dcabdSAndy Whitcroft		if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) {
45963705ce5bSJoe Perches			if (ERROR("SPACING",
45973705ce5bSJoe Perches				  "exactly one space required after that #$1\n" . $herecurr) &&
45983705ce5bSJoe Perches			    $fix) {
4599194f66fcSJoe Perches				$fixed[$fixlinenr] =~
46003705ce5bSJoe Perches				    s/^(.\s*\#\s*(ifdef|ifndef|elif))\s{2,}/$1 /;
46013705ce5bSJoe Perches			}
46023705ce5bSJoe Perches
460322f2a2efSAndy Whitcroft		}
460422f2a2efSAndy Whitcroft
46054a0df2efSAndy Whitcroft# check for spinlock_t definitions without a comment.
4606171ae1a4SAndy Whitcroft		if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ ||
4607171ae1a4SAndy Whitcroft		    $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) {
46084a0df2efSAndy Whitcroft			my $which = $1;
46094a0df2efSAndy Whitcroft			if (!ctx_has_comment($first_line, $linenr)) {
4610000d1cc1SJoe Perches				CHK("UNCOMMENTED_DEFINITION",
4611000d1cc1SJoe Perches				    "$1 definition without comment\n" . $herecurr);
46124a0df2efSAndy Whitcroft			}
46134a0df2efSAndy Whitcroft		}
46144a0df2efSAndy Whitcroft# check for memory barriers without a comment.
46154a0df2efSAndy Whitcroft		if ($line =~ /\b(mb|rmb|wmb|read_barrier_depends|smp_mb|smp_rmb|smp_wmb|smp_read_barrier_depends)\(/) {
46164a0df2efSAndy Whitcroft			if (!ctx_has_comment($first_line, $linenr)) {
4617c1fd7bb9SJoe Perches				WARN("MEMORY_BARRIER",
4618000d1cc1SJoe Perches				     "memory barrier without comment\n" . $herecurr);
46194a0df2efSAndy Whitcroft			}
46204a0df2efSAndy Whitcroft		}
46214a0df2efSAndy Whitcroft# check of hardware specific defines
4622c45dcabdSAndy Whitcroft		if ($line =~ m@^.\s*\#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
4623000d1cc1SJoe Perches			CHK("ARCH_DEFINES",
4624000d1cc1SJoe Perches			    "architecture specific defines should be avoided\n" .  $herecurr);
46250a920b5bSAndy Whitcroft		}
4626653d4876SAndy Whitcroft
4627d4977c78STobias Klauser# Check that the storage class is at the beginning of a declaration
4628d4977c78STobias Klauser		if ($line =~ /\b$Storage\b/ && $line !~ /^.\s*$Storage\b/) {
4629000d1cc1SJoe Perches			WARN("STORAGE_CLASS",
4630000d1cc1SJoe Perches			     "storage class should be at the beginning of the declaration\n" . $herecurr)
4631d4977c78STobias Klauser		}
4632d4977c78STobias Klauser
4633de7d4f0eSAndy Whitcroft# check the location of the inline attribute, that it is between
4634de7d4f0eSAndy Whitcroft# storage class and type.
46359c0ca6f9SAndy Whitcroft		if ($line =~ /\b$Type\s+$Inline\b/ ||
46369c0ca6f9SAndy Whitcroft		    $line =~ /\b$Inline\s+$Storage\b/) {
4637000d1cc1SJoe Perches			ERROR("INLINE_LOCATION",
4638000d1cc1SJoe Perches			      "inline keyword should sit between storage class and type\n" . $herecurr);
4639de7d4f0eSAndy Whitcroft		}
4640de7d4f0eSAndy Whitcroft
46418905a67cSAndy Whitcroft# Check for __inline__ and __inline, prefer inline
46422b7ab453SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
46432b7ab453SJoe Perches		    $line =~ /\b(__inline__|__inline)\b/) {
4644d5e616fcSJoe Perches			if (WARN("INLINE",
4645d5e616fcSJoe Perches				 "plain inline is preferred over $1\n" . $herecurr) &&
4646d5e616fcSJoe Perches			    $fix) {
4647194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\b(__inline__|__inline)\b/inline/;
4648d5e616fcSJoe Perches
4649d5e616fcSJoe Perches			}
46508905a67cSAndy Whitcroft		}
46518905a67cSAndy Whitcroft
46523d130fd0SJoe Perches# Check for __attribute__ packed, prefer __packed
46532b7ab453SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
46542b7ab453SJoe Perches		    $line =~ /\b__attribute__\s*\(\s*\(.*\bpacked\b/) {
4655000d1cc1SJoe Perches			WARN("PREFER_PACKED",
4656000d1cc1SJoe Perches			     "__packed is preferred over __attribute__((packed))\n" . $herecurr);
46573d130fd0SJoe Perches		}
46583d130fd0SJoe Perches
465939b7e287SJoe Perches# Check for __attribute__ aligned, prefer __aligned
46602b7ab453SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
46612b7ab453SJoe Perches		    $line =~ /\b__attribute__\s*\(\s*\(.*aligned/) {
4662000d1cc1SJoe Perches			WARN("PREFER_ALIGNED",
4663000d1cc1SJoe Perches			     "__aligned(size) is preferred over __attribute__((aligned(size)))\n" . $herecurr);
466439b7e287SJoe Perches		}
466539b7e287SJoe Perches
46665f14d3bdSJoe Perches# Check for __attribute__ format(printf, prefer __printf
46672b7ab453SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
46682b7ab453SJoe Perches		    $line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf/) {
4669d5e616fcSJoe Perches			if (WARN("PREFER_PRINTF",
4670d5e616fcSJoe Perches				 "__printf(string-index, first-to-check) is preferred over __attribute__((format(printf, string-index, first-to-check)))\n" . $herecurr) &&
4671d5e616fcSJoe Perches			    $fix) {
4672194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf\s*,\s*(.*)\)\s*\)\s*\)/"__printf(" . trim($1) . ")"/ex;
4673d5e616fcSJoe Perches
4674d5e616fcSJoe Perches			}
46755f14d3bdSJoe Perches		}
46765f14d3bdSJoe Perches
46776061d949SJoe Perches# Check for __attribute__ format(scanf, prefer __scanf
46782b7ab453SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
46792b7ab453SJoe Perches		    $line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*scanf\b/) {
4680d5e616fcSJoe Perches			if (WARN("PREFER_SCANF",
4681d5e616fcSJoe Perches				 "__scanf(string-index, first-to-check) is preferred over __attribute__((format(scanf, string-index, first-to-check)))\n" . $herecurr) &&
4682d5e616fcSJoe Perches			    $fix) {
4683194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\b__attribute__\s*\(\s*\(\s*format\s*\(\s*scanf\s*,\s*(.*)\)\s*\)\s*\)/"__scanf(" . trim($1) . ")"/ex;
4684d5e616fcSJoe Perches			}
46856061d949SJoe Perches		}
46866061d949SJoe Perches
4687619a908aSJoe Perches# Check for __attribute__ weak, or __weak declarations (may have link issues)
4688619a908aSJoe Perches		if ($^V && $^V ge 5.10.0 &&
4689619a908aSJoe Perches		    $line =~ /(?:$Declare|$DeclareMisordered)\s*$Ident\s*$balanced_parens\s*(?:$Attribute)?\s*;/ &&
4690619a908aSJoe Perches		    ($line =~ /\b__attribute__\s*\(\s*\(.*\bweak\b/ ||
4691619a908aSJoe Perches		     $line =~ /\b__weak\b/)) {
4692619a908aSJoe Perches			ERROR("WEAK_DECLARATION",
4693619a908aSJoe Perches			      "Using weak declarations can have unintended link defects\n" . $herecurr);
4694619a908aSJoe Perches		}
4695619a908aSJoe Perches
46968f53a9b8SJoe Perches# check for sizeof(&)
46978f53a9b8SJoe Perches		if ($line =~ /\bsizeof\s*\(\s*\&/) {
4698000d1cc1SJoe Perches			WARN("SIZEOF_ADDRESS",
4699000d1cc1SJoe Perches			     "sizeof(& should be avoided\n" . $herecurr);
47008f53a9b8SJoe Perches		}
47018f53a9b8SJoe Perches
470266c80b60SJoe Perches# check for sizeof without parenthesis
470366c80b60SJoe Perches		if ($line =~ /\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/) {
4704d5e616fcSJoe Perches			if (WARN("SIZEOF_PARENTHESIS",
4705d5e616fcSJoe Perches				 "sizeof $1 should be sizeof($1)\n" . $herecurr) &&
4706d5e616fcSJoe Perches			    $fix) {
4707194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/"sizeof(" . trim($1) . ")"/ex;
4708d5e616fcSJoe Perches			}
470966c80b60SJoe Perches		}
471066c80b60SJoe Perches
4711428e2fdcSJoe Perches# check for line continuations in quoted strings with odd counts of "
4712428e2fdcSJoe Perches		if ($rawline =~ /\\$/ && $rawline =~ tr/"/"/ % 2) {
4713000d1cc1SJoe Perches			WARN("LINE_CONTINUATIONS",
4714000d1cc1SJoe Perches			     "Avoid line continuations in quoted strings\n" . $herecurr);
4715428e2fdcSJoe Perches		}
4716428e2fdcSJoe Perches
471788982feaSJoe Perches# check for struct spinlock declarations
471888982feaSJoe Perches		if ($line =~ /^.\s*\bstruct\s+spinlock\s+\w+\s*;/) {
471988982feaSJoe Perches			WARN("USE_SPINLOCK_T",
472088982feaSJoe Perches			     "struct spinlock should be spinlock_t\n" . $herecurr);
472188982feaSJoe Perches		}
472288982feaSJoe Perches
4723a6962d72SJoe Perches# check for seq_printf uses that could be seq_puts
472406668727SJoe Perches		if ($sline =~ /\bseq_printf\s*\(.*"\s*\)\s*;\s*$/) {
4725a6962d72SJoe Perches			my $fmt = get_quoted_string($line, $rawline);
472606668727SJoe Perches			if ($fmt ne "" && $fmt !~ /[^\\]\%/) {
4727d5e616fcSJoe Perches				if (WARN("PREFER_SEQ_PUTS",
4728d5e616fcSJoe Perches					 "Prefer seq_puts to seq_printf\n" . $herecurr) &&
4729d5e616fcSJoe Perches				    $fix) {
4730194f66fcSJoe Perches					$fixed[$fixlinenr] =~ s/\bseq_printf\b/seq_puts/;
4731d5e616fcSJoe Perches				}
4732a6962d72SJoe Perches			}
4733a6962d72SJoe Perches		}
4734a6962d72SJoe Perches
4735554e165cSAndy Whitcroft# Check for misused memsets
4736d1fe9c09SJoe Perches		if ($^V && $^V ge 5.10.0 &&
4737d1fe9c09SJoe Perches		    defined $stat &&
4738d7c76ba7SJoe Perches		    $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*$FuncArg\s*\)/s) {
4739554e165cSAndy Whitcroft
4740d7c76ba7SJoe Perches			my $ms_addr = $2;
4741d1fe9c09SJoe Perches			my $ms_val = $7;
4742d1fe9c09SJoe Perches			my $ms_size = $12;
4743d7c76ba7SJoe Perches
4744554e165cSAndy Whitcroft			if ($ms_size =~ /^(0x|)0$/i) {
4745554e165cSAndy Whitcroft				ERROR("MEMSET",
4746d7c76ba7SJoe Perches				      "memset to 0's uses 0 as the 2nd argument, not the 3rd\n" . "$here\n$stat\n");
4747554e165cSAndy Whitcroft			} elsif ($ms_size =~ /^(0x|)1$/i) {
4748554e165cSAndy Whitcroft				WARN("MEMSET",
4749d7c76ba7SJoe Perches				     "single byte memset is suspicious. Swapped 2nd/3rd argument?\n" . "$here\n$stat\n");
4750d7c76ba7SJoe Perches			}
4751d7c76ba7SJoe Perches		}
4752d7c76ba7SJoe Perches
475398a9bba5SJoe Perches# Check for memcpy(foo, bar, ETH_ALEN) that could be ether_addr_copy(foo, bar)
475498a9bba5SJoe Perches		if ($^V && $^V ge 5.10.0 &&
475598a9bba5SJoe Perches		    $line =~ /^\+(?:.*?)\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/s) {
475698a9bba5SJoe Perches			if (WARN("PREFER_ETHER_ADDR_COPY",
475798a9bba5SJoe Perches				 "Prefer ether_addr_copy() over memcpy() if the Ethernet addresses are __aligned(2)\n" . $herecurr) &&
475898a9bba5SJoe Perches			    $fix) {
4759194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/ether_addr_copy($2, $7)/;
476098a9bba5SJoe Perches			}
476198a9bba5SJoe Perches		}
476298a9bba5SJoe Perches
4763d7c76ba7SJoe Perches# typecasts on min/max could be min_t/max_t
4764d1fe9c09SJoe Perches		if ($^V && $^V ge 5.10.0 &&
4765d1fe9c09SJoe Perches		    defined $stat &&
4766d7c76ba7SJoe Perches		    $stat =~ /^\+(?:.*?)\b(min|max)\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\)/) {
4767d1fe9c09SJoe Perches			if (defined $2 || defined $7) {
4768d7c76ba7SJoe Perches				my $call = $1;
4769d7c76ba7SJoe Perches				my $cast1 = deparenthesize($2);
4770d7c76ba7SJoe Perches				my $arg1 = $3;
4771d1fe9c09SJoe Perches				my $cast2 = deparenthesize($7);
4772d1fe9c09SJoe Perches				my $arg2 = $8;
4773d7c76ba7SJoe Perches				my $cast;
4774d7c76ba7SJoe Perches
4775d1fe9c09SJoe Perches				if ($cast1 ne "" && $cast2 ne "" && $cast1 ne $cast2) {
4776d7c76ba7SJoe Perches					$cast = "$cast1 or $cast2";
4777d7c76ba7SJoe Perches				} elsif ($cast1 ne "") {
4778d7c76ba7SJoe Perches					$cast = $cast1;
4779d7c76ba7SJoe Perches				} else {
4780d7c76ba7SJoe Perches					$cast = $cast2;
4781d7c76ba7SJoe Perches				}
4782d7c76ba7SJoe Perches				WARN("MINMAX",
4783d7c76ba7SJoe Perches				     "$call() should probably be ${call}_t($cast, $arg1, $arg2)\n" . "$here\n$stat\n");
4784554e165cSAndy Whitcroft			}
4785554e165cSAndy Whitcroft		}
4786554e165cSAndy Whitcroft
47874a273195SJoe Perches# check usleep_range arguments
47884a273195SJoe Perches		if ($^V && $^V ge 5.10.0 &&
47894a273195SJoe Perches		    defined $stat &&
47904a273195SJoe Perches		    $stat =~ /^\+(?:.*?)\busleep_range\s*\(\s*($FuncArg)\s*,\s*($FuncArg)\s*\)/) {
47914a273195SJoe Perches			my $min = $1;
47924a273195SJoe Perches			my $max = $7;
47934a273195SJoe Perches			if ($min eq $max) {
47944a273195SJoe Perches				WARN("USLEEP_RANGE",
47954a273195SJoe Perches				     "usleep_range should not use min == max args; see Documentation/timers/timers-howto.txt\n" . "$here\n$stat\n");
47964a273195SJoe Perches			} elsif ($min =~ /^\d+$/ && $max =~ /^\d+$/ &&
47974a273195SJoe Perches				 $min > $max) {
47984a273195SJoe Perches				WARN("USLEEP_RANGE",
47994a273195SJoe Perches				     "usleep_range args reversed, use min then max; see Documentation/timers/timers-howto.txt\n" . "$here\n$stat\n");
48004a273195SJoe Perches			}
48014a273195SJoe Perches		}
48024a273195SJoe Perches
4803823b794cSJoe Perches# check for naked sscanf
4804823b794cSJoe Perches		if ($^V && $^V ge 5.10.0 &&
4805823b794cSJoe Perches		    defined $stat &&
48066c8bd707SJoe Perches		    $line =~ /\bsscanf\b/ &&
4807823b794cSJoe Perches		    ($stat !~ /$Ident\s*=\s*sscanf\s*$balanced_parens/ &&
4808823b794cSJoe Perches		     $stat !~ /\bsscanf\s*$balanced_parens\s*(?:$Compare)/ &&
4809823b794cSJoe Perches		     $stat !~ /(?:$Compare)\s*\bsscanf\s*$balanced_parens/)) {
4810823b794cSJoe Perches			my $lc = $stat =~ tr@\n@@;
4811823b794cSJoe Perches			$lc = $lc + $linenr;
4812823b794cSJoe Perches			my $stat_real = raw_line($linenr, 0);
4813823b794cSJoe Perches		        for (my $count = $linenr + 1; $count <= $lc; $count++) {
4814823b794cSJoe Perches				$stat_real = $stat_real . "\n" . raw_line($count, 0);
4815823b794cSJoe Perches			}
4816823b794cSJoe Perches			WARN("NAKED_SSCANF",
4817823b794cSJoe Perches			     "unchecked sscanf return value\n" . "$here\n$stat_real\n");
4818823b794cSJoe Perches		}
4819823b794cSJoe Perches
4820afc819abSJoe Perches# check for simple sscanf that should be kstrto<foo>
4821afc819abSJoe Perches		if ($^V && $^V ge 5.10.0 &&
4822afc819abSJoe Perches		    defined $stat &&
4823afc819abSJoe Perches		    $line =~ /\bsscanf\b/) {
4824afc819abSJoe Perches			my $lc = $stat =~ tr@\n@@;
4825afc819abSJoe Perches			$lc = $lc + $linenr;
4826afc819abSJoe Perches			my $stat_real = raw_line($linenr, 0);
4827afc819abSJoe Perches		        for (my $count = $linenr + 1; $count <= $lc; $count++) {
4828afc819abSJoe Perches				$stat_real = $stat_real . "\n" . raw_line($count, 0);
4829afc819abSJoe Perches			}
4830afc819abSJoe Perches			if ($stat_real =~ /\bsscanf\b\s*\(\s*$FuncArg\s*,\s*("[^"]+")/) {
4831afc819abSJoe Perches				my $format = $6;
4832afc819abSJoe Perches				my $count = $format =~ tr@%@%@;
4833afc819abSJoe Perches				if ($count == 1 &&
4834afc819abSJoe Perches				    $format =~ /^"\%(?i:ll[udxi]|[udxi]ll|ll|[hl]h?[udxi]|[udxi][hl]h?|[hl]h?|[udxi])"$/) {
4835afc819abSJoe Perches					WARN("SSCANF_TO_KSTRTO",
4836afc819abSJoe Perches					     "Prefer kstrto<type> to single variable sscanf\n" . "$here\n$stat_real\n");
4837afc819abSJoe Perches				}
4838afc819abSJoe Perches			}
4839afc819abSJoe Perches		}
4840afc819abSJoe Perches
484170dc8a48SJoe Perches# check for new externs in .h files.
484270dc8a48SJoe Perches		if ($realfile =~ /\.h$/ &&
484370dc8a48SJoe Perches		    $line =~ /^\+\s*(extern\s+)$Type\s*$Ident\s*\(/s) {
4844d1d85780SJoe Perches			if (CHK("AVOID_EXTERNS",
484570dc8a48SJoe Perches				"extern prototypes should be avoided in .h files\n" . $herecurr) &&
484670dc8a48SJoe Perches			    $fix) {
4847194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/(.*)\bextern\b\s*(.*)/$1$2/;
484870dc8a48SJoe Perches			}
484970dc8a48SJoe Perches		}
485070dc8a48SJoe Perches
4851de7d4f0eSAndy Whitcroft# check for new externs in .c files.
4852171ae1a4SAndy Whitcroft		if ($realfile =~ /\.c$/ && defined $stat &&
4853c45dcabdSAndy Whitcroft		    $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s)
4854171ae1a4SAndy Whitcroft		{
4855c45dcabdSAndy Whitcroft			my $function_name = $1;
4856c45dcabdSAndy Whitcroft			my $paren_space = $2;
4857171ae1a4SAndy Whitcroft
4858171ae1a4SAndy Whitcroft			my $s = $stat;
4859171ae1a4SAndy Whitcroft			if (defined $cond) {
4860171ae1a4SAndy Whitcroft				substr($s, 0, length($cond), '');
4861171ae1a4SAndy Whitcroft			}
4862c45dcabdSAndy Whitcroft			if ($s =~ /^\s*;/ &&
4863c45dcabdSAndy Whitcroft			    $function_name ne 'uninitialized_var')
4864c45dcabdSAndy Whitcroft			{
4865000d1cc1SJoe Perches				WARN("AVOID_EXTERNS",
4866000d1cc1SJoe Perches				     "externs should be avoided in .c files\n" .  $herecurr);
4867de7d4f0eSAndy Whitcroft			}
4868de7d4f0eSAndy Whitcroft
4869171ae1a4SAndy Whitcroft			if ($paren_space =~ /\n/) {
4870000d1cc1SJoe Perches				WARN("FUNCTION_ARGUMENTS",
4871000d1cc1SJoe Perches				     "arguments for function declarations should follow identifier\n" . $herecurr);
4872171ae1a4SAndy Whitcroft			}
48739c9ba34eSAndy Whitcroft
48749c9ba34eSAndy Whitcroft		} elsif ($realfile =~ /\.c$/ && defined $stat &&
48759c9ba34eSAndy Whitcroft		    $stat =~ /^.\s*extern\s+/)
48769c9ba34eSAndy Whitcroft		{
4877000d1cc1SJoe Perches			WARN("AVOID_EXTERNS",
4878000d1cc1SJoe Perches			     "externs should be avoided in .c files\n" .  $herecurr);
4879171ae1a4SAndy Whitcroft		}
4880171ae1a4SAndy Whitcroft
4881de7d4f0eSAndy Whitcroft# checks for new __setup's
4882de7d4f0eSAndy Whitcroft		if ($rawline =~ /\b__setup\("([^"]*)"/) {
4883de7d4f0eSAndy Whitcroft			my $name = $1;
4884de7d4f0eSAndy Whitcroft
4885de7d4f0eSAndy Whitcroft			if (!grep(/$name/, @setup_docs)) {
4886000d1cc1SJoe Perches				CHK("UNDOCUMENTED_SETUP",
4887000d1cc1SJoe Perches				    "__setup appears un-documented -- check Documentation/kernel-parameters.txt\n" . $herecurr);
4888de7d4f0eSAndy Whitcroft			}
4889653d4876SAndy Whitcroft		}
48909c0ca6f9SAndy Whitcroft
48919c0ca6f9SAndy Whitcroft# check for pointless casting of kmalloc return
4892caf2a54fSJoe Perches		if ($line =~ /\*\s*\)\s*[kv][czm]alloc(_node){0,1}\b/) {
4893000d1cc1SJoe Perches			WARN("UNNECESSARY_CASTS",
4894000d1cc1SJoe Perches			     "unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
48959c0ca6f9SAndy Whitcroft		}
489613214adfSAndy Whitcroft
4897a640d25cSJoe Perches# alloc style
4898a640d25cSJoe Perches# p = alloc(sizeof(struct foo), ...) should be p = alloc(sizeof(*p), ...)
4899a640d25cSJoe Perches		if ($^V && $^V ge 5.10.0 &&
4900a640d25cSJoe Perches		    $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*([kv][mz]alloc(?:_node)?)\s*\(\s*(sizeof\s*\(\s*struct\s+$Lval\s*\))/) {
4901a640d25cSJoe Perches			CHK("ALLOC_SIZEOF_STRUCT",
4902a640d25cSJoe Perches			    "Prefer $3(sizeof(*$1)...) over $3($4...)\n" . $herecurr);
4903a640d25cSJoe Perches		}
4904a640d25cSJoe Perches
490560a55369SJoe Perches# check for k[mz]alloc with multiplies that could be kmalloc_array/kcalloc
490660a55369SJoe Perches		if ($^V && $^V ge 5.10.0 &&
4907e367455aSJoe Perches		    $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*(k[mz]alloc)\s*\(\s*($FuncArg)\s*\*\s*($FuncArg)\s*,/) {
490860a55369SJoe Perches			my $oldfunc = $3;
490960a55369SJoe Perches			my $a1 = $4;
491060a55369SJoe Perches			my $a2 = $10;
491160a55369SJoe Perches			my $newfunc = "kmalloc_array";
491260a55369SJoe Perches			$newfunc = "kcalloc" if ($oldfunc eq "kzalloc");
491360a55369SJoe Perches			my $r1 = $a1;
491460a55369SJoe Perches			my $r2 = $a2;
491560a55369SJoe Perches			if ($a1 =~ /^sizeof\s*\S/) {
491660a55369SJoe Perches				$r1 = $a2;
491760a55369SJoe Perches				$r2 = $a1;
491860a55369SJoe Perches			}
4919e367455aSJoe Perches			if ($r1 !~ /^sizeof\b/ && $r2 =~ /^sizeof\s*\S/ &&
4920e367455aSJoe Perches			    !($r1 =~ /^$Constant$/ || $r1 =~ /^[A-Z_][A-Z0-9_]*$/)) {
4921e367455aSJoe Perches				if (WARN("ALLOC_WITH_MULTIPLY",
4922e367455aSJoe Perches					 "Prefer $newfunc over $oldfunc with multiply\n" . $herecurr) &&
4923e367455aSJoe Perches				    $fix) {
4924194f66fcSJoe Perches					$fixed[$fixlinenr] =~ s/\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*(k[mz]alloc)\s*\(\s*($FuncArg)\s*\*\s*($FuncArg)/$1 . ' = ' . "$newfunc(" . trim($r1) . ', ' . trim($r2)/e;
492560a55369SJoe Perches
492660a55369SJoe Perches				}
492760a55369SJoe Perches			}
492860a55369SJoe Perches		}
492960a55369SJoe Perches
4930972fdea2SJoe Perches# check for krealloc arg reuse
4931972fdea2SJoe Perches		if ($^V && $^V ge 5.10.0 &&
4932972fdea2SJoe Perches		    $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*krealloc\s*\(\s*\1\s*,/) {
4933972fdea2SJoe Perches			WARN("KREALLOC_ARG_REUSE",
4934972fdea2SJoe Perches			     "Reusing the krealloc arg is almost always a bug\n" . $herecurr);
4935972fdea2SJoe Perches		}
4936972fdea2SJoe Perches
49375ce59ae0SJoe Perches# check for alloc argument mismatch
49385ce59ae0SJoe Perches		if ($line =~ /\b(kcalloc|kmalloc_array)\s*\(\s*sizeof\b/) {
49395ce59ae0SJoe Perches			WARN("ALLOC_ARRAY_ARGS",
49405ce59ae0SJoe Perches			     "$1 uses number as first arg, sizeof is generally wrong\n" . $herecurr);
49415ce59ae0SJoe Perches		}
49425ce59ae0SJoe Perches
4943caf2a54fSJoe Perches# check for multiple semicolons
4944caf2a54fSJoe Perches		if ($line =~ /;\s*;\s*$/) {
4945d5e616fcSJoe Perches			if (WARN("ONE_SEMICOLON",
4946d5e616fcSJoe Perches				 "Statements terminations use 1 semicolon\n" . $herecurr) &&
4947d5e616fcSJoe Perches			    $fix) {
4948194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/(\s*;\s*){2,}$/;/g;
4949d5e616fcSJoe Perches			}
4950d1e2ad07SJoe Perches		}
4951d1e2ad07SJoe Perches
4952e81f239bSJoe Perches# check for case / default statements not preceded by break/fallthrough/switch
4953c34c09a8SJoe Perches		if ($line =~ /^.\s*(?:case\s+(?:$Ident|$Constant)\s*|default):/) {
4954c34c09a8SJoe Perches			my $has_break = 0;
4955c34c09a8SJoe Perches			my $has_statement = 0;
4956c34c09a8SJoe Perches			my $count = 0;
4957c34c09a8SJoe Perches			my $prevline = $linenr;
4958e81f239bSJoe Perches			while ($prevline > 1 && ($file || $count < 3) && !$has_break) {
4959c34c09a8SJoe Perches				$prevline--;
4960c34c09a8SJoe Perches				my $rline = $rawlines[$prevline - 1];
4961c34c09a8SJoe Perches				my $fline = $lines[$prevline - 1];
4962c34c09a8SJoe Perches				last if ($fline =~ /^\@\@/);
4963c34c09a8SJoe Perches				next if ($fline =~ /^\-/);
4964c34c09a8SJoe Perches				next if ($fline =~ /^.(?:\s*(?:case\s+(?:$Ident|$Constant)[\s$;]*|default):[\s$;]*)*$/);
4965c34c09a8SJoe Perches				$has_break = 1 if ($rline =~ /fall[\s_-]*(through|thru)/i);
4966c34c09a8SJoe Perches				next if ($fline =~ /^.[\s$;]*$/);
4967c34c09a8SJoe Perches				$has_statement = 1;
4968c34c09a8SJoe Perches				$count++;
4969c34c09a8SJoe Perches				$has_break = 1 if ($fline =~ /\bswitch\b|\b(?:break\s*;[\s$;]*$|return\b|goto\b|continue\b)/);
4970c34c09a8SJoe Perches			}
4971c34c09a8SJoe Perches			if (!$has_break && $has_statement) {
4972c34c09a8SJoe Perches				WARN("MISSING_BREAK",
4973c34c09a8SJoe Perches				     "Possible switch case/default not preceeded by break or fallthrough comment\n" . $herecurr);
4974c34c09a8SJoe Perches			}
4975c34c09a8SJoe Perches		}
4976c34c09a8SJoe Perches
4977d1e2ad07SJoe Perches# check for switch/default statements without a break;
4978d1e2ad07SJoe Perches		if ($^V && $^V ge 5.10.0 &&
4979d1e2ad07SJoe Perches		    defined $stat &&
4980d1e2ad07SJoe Perches		    $stat =~ /^\+[$;\s]*(?:case[$;\s]+\w+[$;\s]*:[$;\s]*|)*[$;\s]*\bdefault[$;\s]*:[$;\s]*;/g) {
4981d1e2ad07SJoe Perches			my $ctx = '';
4982d1e2ad07SJoe Perches			my $herectx = $here . "\n";
4983d1e2ad07SJoe Perches			my $cnt = statement_rawlines($stat);
4984d1e2ad07SJoe Perches			for (my $n = 0; $n < $cnt; $n++) {
4985d1e2ad07SJoe Perches				$herectx .= raw_line($linenr, $n) . "\n";
4986d1e2ad07SJoe Perches			}
4987d1e2ad07SJoe Perches			WARN("DEFAULT_NO_BREAK",
4988d1e2ad07SJoe Perches			     "switch default: should use break\n" . $herectx);
4989caf2a54fSJoe Perches		}
4990caf2a54fSJoe Perches
499113214adfSAndy Whitcroft# check for gcc specific __FUNCTION__
4992d5e616fcSJoe Perches		if ($line =~ /\b__FUNCTION__\b/) {
4993d5e616fcSJoe Perches			if (WARN("USE_FUNC",
4994d5e616fcSJoe Perches				 "__func__ should be used instead of gcc specific __FUNCTION__\n"  . $herecurr) &&
4995d5e616fcSJoe Perches			    $fix) {
4996194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\b__FUNCTION__\b/__func__/g;
4997d5e616fcSJoe Perches			}
499813214adfSAndy Whitcroft		}
4999773647a0SAndy Whitcroft
50002c92488aSJoe Perches# check for use of yield()
50012c92488aSJoe Perches		if ($line =~ /\byield\s*\(\s*\)/) {
50022c92488aSJoe Perches			WARN("YIELD",
50032c92488aSJoe Perches			     "Using yield() is generally wrong. See yield() kernel-doc (sched/core.c)\n"  . $herecurr);
50042c92488aSJoe Perches		}
50052c92488aSJoe Perches
5006179f8f40SJoe Perches# check for comparisons against true and false
5007179f8f40SJoe Perches		if ($line =~ /\+\s*(.*?)\b(true|false|$Lval)\s*(==|\!=)\s*(true|false|$Lval)\b(.*)$/i) {
5008179f8f40SJoe Perches			my $lead = $1;
5009179f8f40SJoe Perches			my $arg = $2;
5010179f8f40SJoe Perches			my $test = $3;
5011179f8f40SJoe Perches			my $otype = $4;
5012179f8f40SJoe Perches			my $trail = $5;
5013179f8f40SJoe Perches			my $op = "!";
5014179f8f40SJoe Perches
5015179f8f40SJoe Perches			($arg, $otype) = ($otype, $arg) if ($arg =~ /^(?:true|false)$/i);
5016179f8f40SJoe Perches
5017179f8f40SJoe Perches			my $type = lc($otype);
5018179f8f40SJoe Perches			if ($type =~ /^(?:true|false)$/) {
5019179f8f40SJoe Perches				if (("$test" eq "==" && "$type" eq "true") ||
5020179f8f40SJoe Perches				    ("$test" eq "!=" && "$type" eq "false")) {
5021179f8f40SJoe Perches					$op = "";
5022179f8f40SJoe Perches				}
5023179f8f40SJoe Perches
5024179f8f40SJoe Perches				CHK("BOOL_COMPARISON",
5025179f8f40SJoe Perches				    "Using comparison to $otype is error prone\n" . $herecurr);
5026179f8f40SJoe Perches
5027179f8f40SJoe Perches## maybe suggesting a correct construct would better
5028179f8f40SJoe Perches##				    "Using comparison to $otype is error prone.  Perhaps use '${lead}${op}${arg}${trail}'\n" . $herecurr);
5029179f8f40SJoe Perches
5030179f8f40SJoe Perches			}
5031179f8f40SJoe Perches		}
5032179f8f40SJoe Perches
50334882720bSThomas Gleixner# check for semaphores initialized locked
50344882720bSThomas Gleixner		if ($line =~ /^.\s*sema_init.+,\W?0\W?\)/) {
5035000d1cc1SJoe Perches			WARN("CONSIDER_COMPLETION",
5036000d1cc1SJoe Perches			     "consider using a completion\n" . $herecurr);
5037773647a0SAndy Whitcroft		}
50386712d858SJoe Perches
503967d0a075SJoe Perches# recommend kstrto* over simple_strto* and strict_strto*
504067d0a075SJoe Perches		if ($line =~ /\b((simple|strict)_(strto(l|ll|ul|ull)))\s*\(/) {
5041000d1cc1SJoe Perches			WARN("CONSIDER_KSTRTO",
504267d0a075SJoe Perches			     "$1 is obsolete, use k$3 instead\n" . $herecurr);
5043773647a0SAndy Whitcroft		}
50446712d858SJoe Perches
5045ae3ccc46SFabian Frederick# check for __initcall(), use device_initcall() explicitly or more appropriate function please
5046f3db6639SMichael Ellerman		if ($line =~ /^.\s*__initcall\s*\(/) {
5047000d1cc1SJoe Perches			WARN("USE_DEVICE_INITCALL",
5048ae3ccc46SFabian Frederick			     "please use device_initcall() or more appropriate function instead of __initcall() (see include/linux/init.h)\n" . $herecurr);
5049f3db6639SMichael Ellerman		}
50506712d858SJoe Perches
505179404849SEmese Revfy# check for various ops structs, ensure they are const.
505279404849SEmese Revfy		my $struct_ops = qr{acpi_dock_ops|
505379404849SEmese Revfy				address_space_operations|
505479404849SEmese Revfy				backlight_ops|
505579404849SEmese Revfy				block_device_operations|
505679404849SEmese Revfy				dentry_operations|
505779404849SEmese Revfy				dev_pm_ops|
505879404849SEmese Revfy				dma_map_ops|
505979404849SEmese Revfy				extent_io_ops|
506079404849SEmese Revfy				file_lock_operations|
506179404849SEmese Revfy				file_operations|
506279404849SEmese Revfy				hv_ops|
506379404849SEmese Revfy				ide_dma_ops|
506479404849SEmese Revfy				intel_dvo_dev_ops|
506579404849SEmese Revfy				item_operations|
506679404849SEmese Revfy				iwl_ops|
506779404849SEmese Revfy				kgdb_arch|
506879404849SEmese Revfy				kgdb_io|
506979404849SEmese Revfy				kset_uevent_ops|
507079404849SEmese Revfy				lock_manager_operations|
507179404849SEmese Revfy				microcode_ops|
507279404849SEmese Revfy				mtrr_ops|
507379404849SEmese Revfy				neigh_ops|
507479404849SEmese Revfy				nlmsvc_binding|
507579404849SEmese Revfy				pci_raw_ops|
507679404849SEmese Revfy				pipe_buf_operations|
507779404849SEmese Revfy				platform_hibernation_ops|
507879404849SEmese Revfy				platform_suspend_ops|
507979404849SEmese Revfy				proto_ops|
508079404849SEmese Revfy				rpc_pipe_ops|
508179404849SEmese Revfy				seq_operations|
508279404849SEmese Revfy				snd_ac97_build_ops|
508379404849SEmese Revfy				soc_pcmcia_socket_ops|
508479404849SEmese Revfy				stacktrace_ops|
508579404849SEmese Revfy				sysfs_ops|
508679404849SEmese Revfy				tty_operations|
508779404849SEmese Revfy				usb_mon_operations|
508879404849SEmese Revfy				wd_ops}x;
50896903ffb2SAndy Whitcroft		if ($line !~ /\bconst\b/ &&
509079404849SEmese Revfy		    $line =~ /\bstruct\s+($struct_ops)\b/) {
5091000d1cc1SJoe Perches			WARN("CONST_STRUCT",
5092000d1cc1SJoe Perches			     "struct $1 should normally be const\n" .
50936903ffb2SAndy Whitcroft				$herecurr);
50942b6db5cbSAndy Whitcroft		}
5095773647a0SAndy Whitcroft
5096773647a0SAndy Whitcroft# use of NR_CPUS is usually wrong
5097773647a0SAndy Whitcroft# ignore definitions of NR_CPUS and usage to define arrays as likely right
5098773647a0SAndy Whitcroft		if ($line =~ /\bNR_CPUS\b/ &&
5099c45dcabdSAndy Whitcroft		    $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ &&
5100c45dcabdSAndy Whitcroft		    $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ &&
5101171ae1a4SAndy Whitcroft		    $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ &&
5102171ae1a4SAndy Whitcroft		    $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ &&
5103171ae1a4SAndy Whitcroft		    $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/)
5104773647a0SAndy Whitcroft		{
5105000d1cc1SJoe Perches			WARN("NR_CPUS",
5106000d1cc1SJoe Perches			     "usage of NR_CPUS is often wrong - consider using cpu_possible(), num_possible_cpus(), for_each_possible_cpu(), etc\n" . $herecurr);
5107773647a0SAndy Whitcroft		}
51089c9ba34eSAndy Whitcroft
510952ea8506SJoe Perches# Use of __ARCH_HAS_<FOO> or ARCH_HAVE_<BAR> is wrong.
511052ea8506SJoe Perches		if ($line =~ /\+\s*#\s*define\s+((?:__)?ARCH_(?:HAS|HAVE)\w*)\b/) {
511152ea8506SJoe Perches			ERROR("DEFINE_ARCH_HAS",
511252ea8506SJoe Perches			      "#define of '$1' is wrong - use Kconfig variables or standard guards instead\n" . $herecurr);
511352ea8506SJoe Perches		}
511452ea8506SJoe Perches
51159c9ba34eSAndy Whitcroft# check for %L{u,d,i} in strings
51169c9ba34eSAndy Whitcroft		my $string;
51179c9ba34eSAndy Whitcroft		while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) {
51189c9ba34eSAndy Whitcroft			$string = substr($rawline, $-[1], $+[1] - $-[1]);
51192a1bc5d5SAndy Whitcroft			$string =~ s/%%/__/g;
51209c9ba34eSAndy Whitcroft			if ($string =~ /(?<!%)%L[udi]/) {
5121000d1cc1SJoe Perches				WARN("PRINTF_L",
5122000d1cc1SJoe Perches				     "\%Ld/%Lu are not-standard C, use %lld/%llu\n" . $herecurr);
51239c9ba34eSAndy Whitcroft				last;
51249c9ba34eSAndy Whitcroft			}
51259c9ba34eSAndy Whitcroft		}
5126691d77b6SAndy Whitcroft
5127691d77b6SAndy Whitcroft# whine mightly about in_atomic
5128691d77b6SAndy Whitcroft		if ($line =~ /\bin_atomic\s*\(/) {
5129691d77b6SAndy Whitcroft			if ($realfile =~ m@^drivers/@) {
5130000d1cc1SJoe Perches				ERROR("IN_ATOMIC",
5131000d1cc1SJoe Perches				      "do not use in_atomic in drivers\n" . $herecurr);
5132f4a87736SAndy Whitcroft			} elsif ($realfile !~ m@^kernel/@) {
5133000d1cc1SJoe Perches				WARN("IN_ATOMIC",
5134000d1cc1SJoe Perches				     "use of in_atomic() is incorrect outside core kernel code\n" . $herecurr);
5135691d77b6SAndy Whitcroft			}
5136691d77b6SAndy Whitcroft		}
51371704f47bSPeter Zijlstra
51381704f47bSPeter Zijlstra# check for lockdep_set_novalidate_class
51391704f47bSPeter Zijlstra		if ($line =~ /^.\s*lockdep_set_novalidate_class\s*\(/ ||
51401704f47bSPeter Zijlstra		    $line =~ /__lockdep_no_validate__\s*\)/ ) {
51411704f47bSPeter Zijlstra			if ($realfile !~ m@^kernel/lockdep@ &&
51421704f47bSPeter Zijlstra			    $realfile !~ m@^include/linux/lockdep@ &&
51431704f47bSPeter Zijlstra			    $realfile !~ m@^drivers/base/core@) {
5144000d1cc1SJoe Perches				ERROR("LOCKDEP",
5145000d1cc1SJoe Perches				      "lockdep_no_validate class is reserved for device->mutex.\n" . $herecurr);
51461704f47bSPeter Zijlstra			}
51471704f47bSPeter Zijlstra		}
514888f8831cSDave Jones
514988f8831cSDave Jones		if ($line =~ /debugfs_create_file.*S_IWUGO/ ||
515088f8831cSDave Jones		    $line =~ /DEVICE_ATTR.*S_IWUGO/ ) {
5151000d1cc1SJoe Perches			WARN("EXPORTED_WORLD_WRITABLE",
5152000d1cc1SJoe Perches			     "Exporting world writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr);
515388f8831cSDave Jones		}
51542435880fSJoe Perches
5155515a235eSJoe Perches# Mode permission misuses where it seems decimal should be octal
5156515a235eSJoe Perches# This uses a shortcut match to avoid unnecessary uses of a slow foreach loop
5157515a235eSJoe Perches		if ($^V && $^V ge 5.10.0 &&
5158515a235eSJoe Perches		    $line =~ /$mode_perms_search/) {
51592435880fSJoe Perches			foreach my $entry (@mode_permission_funcs) {
51602435880fSJoe Perches				my $func = $entry->[0];
51612435880fSJoe Perches				my $arg_pos = $entry->[1];
51622435880fSJoe Perches
51632435880fSJoe Perches				my $skip_args = "";
51642435880fSJoe Perches				if ($arg_pos > 1) {
51652435880fSJoe Perches					$arg_pos--;
51662435880fSJoe Perches					$skip_args = "(?:\\s*$FuncArg\\s*,\\s*){$arg_pos,$arg_pos}";
51672435880fSJoe Perches				}
51682435880fSJoe Perches				my $test = "\\b$func\\s*\\(${skip_args}([\\d]+)\\s*[,\\)]";
5169515a235eSJoe Perches				if ($line =~ /$test/) {
51702435880fSJoe Perches					my $val = $1;
51712435880fSJoe Perches					$val = $6 if ($skip_args ne "");
51722435880fSJoe Perches
51731727cc70SJoe Perches					if ($val !~ /^0$/ &&
51741727cc70SJoe Perches					    (($val =~ /^$Int$/ && $val !~ /^$Octal$/) ||
51751727cc70SJoe Perches					     length($val) ne 4)) {
51762435880fSJoe Perches						ERROR("NON_OCTAL_PERMISSIONS",
51771727cc70SJoe Perches						      "Use 4 digit octal (0777) not decimal permissions\n" . $herecurr);
51782435880fSJoe Perches					}
51792435880fSJoe Perches				}
51802435880fSJoe Perches			}
518113214adfSAndy Whitcroft		}
5182515a235eSJoe Perches	}
518313214adfSAndy Whitcroft
518413214adfSAndy Whitcroft	# If we have no input at all, then there is nothing to report on
518513214adfSAndy Whitcroft	# so just keep quiet.
518613214adfSAndy Whitcroft	if ($#rawlines == -1) {
518713214adfSAndy Whitcroft		exit(0);
51880a920b5bSAndy Whitcroft	}
51890a920b5bSAndy Whitcroft
51908905a67cSAndy Whitcroft	# In mailback mode only produce a report in the negative, for
51918905a67cSAndy Whitcroft	# things that appear to be patches.
51928905a67cSAndy Whitcroft	if ($mailback && ($clean == 1 || !$is_patch)) {
51938905a67cSAndy Whitcroft		exit(0);
51948905a67cSAndy Whitcroft	}
51958905a67cSAndy Whitcroft
51968905a67cSAndy Whitcroft	# This is not a patch, and we are are in 'no-patch' mode so
51978905a67cSAndy Whitcroft	# just keep quiet.
51988905a67cSAndy Whitcroft	if (!$chk_patch && !$is_patch) {
51998905a67cSAndy Whitcroft		exit(0);
52008905a67cSAndy Whitcroft	}
52018905a67cSAndy Whitcroft
52028905a67cSAndy Whitcroft	if (!$is_patch) {
5203000d1cc1SJoe Perches		ERROR("NOT_UNIFIED_DIFF",
5204000d1cc1SJoe Perches		      "Does not appear to be a unified-diff format patch\n");
52050a920b5bSAndy Whitcroft	}
52060a920b5bSAndy Whitcroft	if ($is_patch && $chk_signoff && $signoff == 0) {
5207000d1cc1SJoe Perches		ERROR("MISSING_SIGN_OFF",
5208000d1cc1SJoe Perches		      "Missing Signed-off-by: line(s)\n");
52090a920b5bSAndy Whitcroft	}
52100a920b5bSAndy Whitcroft
5211f0a594c1SAndy Whitcroft	print report_dump();
521213214adfSAndy Whitcroft	if ($summary && !($clean == 1 && $quiet == 1)) {
521313214adfSAndy Whitcroft		print "$filename " if ($summary_file);
52146c72ffaaSAndy Whitcroft		print "total: $cnt_error errors, $cnt_warn warnings, " .
52156c72ffaaSAndy Whitcroft			(($check)? "$cnt_chk checks, " : "") .
52166c72ffaaSAndy Whitcroft			"$cnt_lines lines checked\n";
52178905a67cSAndy Whitcroft		print "\n" if ($quiet == 0);
52186c72ffaaSAndy Whitcroft	}
52198905a67cSAndy Whitcroft
5220d2c0a235SAndy Whitcroft	if ($quiet == 0) {
5221d1fe9c09SJoe Perches
5222d1fe9c09SJoe Perches		if ($^V lt 5.10.0) {
5223d1fe9c09SJoe Perches			print("NOTE: perl $^V is not modern enough to detect all possible issues.\n");
5224d1fe9c09SJoe Perches			print("An upgrade to at least perl v5.10.0 is suggested.\n\n");
5225d1fe9c09SJoe Perches		}
5226d1fe9c09SJoe Perches
5227d2c0a235SAndy Whitcroft		# If there were whitespace errors which cleanpatch can fix
5228d2c0a235SAndy Whitcroft		# then suggest that.
5229d2c0a235SAndy Whitcroft		if ($rpt_cleaners) {
5230d2c0a235SAndy Whitcroft			print "NOTE: whitespace errors detected, you may wish to use scripts/cleanpatch or\n";
5231d2c0a235SAndy Whitcroft			print "      scripts/cleanfile\n\n";
5232b0781216SMike Frysinger			$rpt_cleaners = 0;
5233d2c0a235SAndy Whitcroft		}
5234d2c0a235SAndy Whitcroft	}
5235d2c0a235SAndy Whitcroft
523691bfe484SJoe Perches	hash_show_words(\%use_type, "Used");
523791bfe484SJoe Perches	hash_show_words(\%ignore_type, "Ignored");
5238000d1cc1SJoe Perches
5239d752fcc8SJoe Perches	if ($clean == 0 && $fix &&
5240d752fcc8SJoe Perches	    ("@rawlines" ne "@fixed" ||
5241d752fcc8SJoe Perches	     $#fixed_inserted >= 0 || $#fixed_deleted >= 0)) {
52429624b8d6SJoe Perches		my $newfile = $filename;
52439624b8d6SJoe Perches		$newfile .= ".EXPERIMENTAL-checkpatch-fixes" if (!$fix_inplace);
52443705ce5bSJoe Perches		my $linecount = 0;
52453705ce5bSJoe Perches		my $f;
52463705ce5bSJoe Perches
5247d752fcc8SJoe Perches		@fixed = fix_inserted_deleted_lines(\@fixed, \@fixed_inserted, \@fixed_deleted);
5248d752fcc8SJoe Perches
52493705ce5bSJoe Perches		open($f, '>', $newfile)
52503705ce5bSJoe Perches		    or die "$P: Can't open $newfile for write\n";
52513705ce5bSJoe Perches		foreach my $fixed_line (@fixed) {
52523705ce5bSJoe Perches			$linecount++;
52533705ce5bSJoe Perches			if ($file) {
52543705ce5bSJoe Perches				if ($linecount > 3) {
52553705ce5bSJoe Perches					$fixed_line =~ s/^\+//;
52563705ce5bSJoe Perches					print $f $fixed_line . "\n";
52573705ce5bSJoe Perches				}
52583705ce5bSJoe Perches			} else {
52593705ce5bSJoe Perches				print $f $fixed_line . "\n";
52603705ce5bSJoe Perches			}
52613705ce5bSJoe Perches		}
52623705ce5bSJoe Perches		close($f);
52633705ce5bSJoe Perches
52643705ce5bSJoe Perches		if (!$quiet) {
52653705ce5bSJoe Perches			print << "EOM";
52663705ce5bSJoe PerchesWrote EXPERIMENTAL --fix correction(s) to '$newfile'
52673705ce5bSJoe Perches
52683705ce5bSJoe PerchesDo _NOT_ trust the results written to this file.
52693705ce5bSJoe PerchesDo _NOT_ submit these changes without inspecting them for correctness.
52703705ce5bSJoe Perches
52713705ce5bSJoe PerchesThis EXPERIMENTAL file is simply a convenience to help rewrite patches.
52723705ce5bSJoe PerchesNo warranties, expressed or implied...
52733705ce5bSJoe Perches
52743705ce5bSJoe PerchesEOM
52753705ce5bSJoe Perches		}
52763705ce5bSJoe Perches	}
52773705ce5bSJoe Perches
52780a920b5bSAndy Whitcroft	if ($clean == 1 && $quiet == 0) {
5279c2fdda0dSAndy Whitcroft		print "$vname has no obvious style problems and is ready for submission.\n"
52800a920b5bSAndy Whitcroft	}
52810a920b5bSAndy Whitcroft	if ($clean == 0 && $quiet == 0) {
5282000d1cc1SJoe Perches		print << "EOM";
5283000d1cc1SJoe Perches$vname has style problems, please review.
5284000d1cc1SJoe Perches
5285000d1cc1SJoe PerchesIf any of these errors are false positives, please report
5286000d1cc1SJoe Perchesthem to the maintainer, see CHECKPATCH in MAINTAINERS.
5287000d1cc1SJoe PerchesEOM
52880a920b5bSAndy Whitcroft	}
528913214adfSAndy Whitcroft
52900a920b5bSAndy Whitcroft	return $clean;
52910a920b5bSAndy Whitcroft}
5292