xref: /linux-6.15/scripts/checkpatch.pl (revision 879be4f3)
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';
1257230297SJoe Perchesuse Term::ANSIColor qw(:constants);
130a920b5bSAndy Whitcroft
140a920b5bSAndy Whitcroftmy $P = $0;
1536061e38SJoe Perchesmy $D = dirname(abs_path($P));
160a920b5bSAndy Whitcroft
17000d1cc1SJoe Perchesmy $V = '0.32';
180a920b5bSAndy Whitcroft
190a920b5bSAndy Whitcroftuse Getopt::Long qw(:config no_auto_abbrev);
200a920b5bSAndy Whitcroft
210a920b5bSAndy Whitcroftmy $quiet = 0;
220a920b5bSAndy Whitcroftmy $tree = 1;
230a920b5bSAndy Whitcroftmy $chk_signoff = 1;
240a920b5bSAndy Whitcroftmy $chk_patch = 1;
25773647a0SAndy Whitcroftmy $tst_only;
266c72ffaaSAndy Whitcroftmy $emacs = 0;
278905a67cSAndy Whitcroftmy $terse = 0;
2834d8815fSJoe Perchesmy $showfile = 0;
296c72ffaaSAndy Whitcroftmy $file = 0;
304a593c34SDu, Changbinmy $git = 0;
310dea9f1eSJoe Perchesmy %git_commits = ();
326c72ffaaSAndy Whitcroftmy $check = 0;
332ac73b4fSJoe Perchesmy $check_orig = 0;
348905a67cSAndy Whitcroftmy $summary = 1;
358905a67cSAndy Whitcroftmy $mailback = 0;
3613214adfSAndy Whitcroftmy $summary_file = 0;
37000d1cc1SJoe Perchesmy $show_types = 0;
383beb42ecSJoe Perchesmy $list_types = 0;
393705ce5bSJoe Perchesmy $fix = 0;
409624b8d6SJoe Perchesmy $fix_inplace = 0;
416c72ffaaSAndy Whitcroftmy $root;
42c2fdda0dSAndy Whitcroftmy %debug;
433445686aSJoe Perchesmy %camelcase = ();
4491bfe484SJoe Perchesmy %use_type = ();
4591bfe484SJoe Perchesmy @use = ();
4691bfe484SJoe Perchesmy %ignore_type = ();
47000d1cc1SJoe Perchesmy @ignore = ();
4877f5b10aSHannes Edermy $help = 0;
49000d1cc1SJoe Perchesmy $configuration_file = ".checkpatch.conf";
506cd7f386SJoe Perchesmy $max_line_length = 80;
51d62a201fSDave Hansenmy $ignore_perl_version = 0;
52d62a201fSDave Hansenmy $minimum_perl_version = 5.10.0;
5356193274SVadim Bendeburymy $min_conf_desc_length = 4;
5466b47b4aSKees Cookmy $spelling_file = "$D/spelling.txt";
55ebfd7d62SJoe Perchesmy $codespell = 0;
56f1a63678SMaxim Uvarovmy $codespellfile = "/usr/share/codespell/dictionary.txt";
5757230297SJoe Perchesmy $color = 1;
5877f5b10aSHannes Eder
5977f5b10aSHannes Edersub help {
6077f5b10aSHannes Eder	my ($exitcode) = @_;
6177f5b10aSHannes Eder
6277f5b10aSHannes Eder	print << "EOM";
6377f5b10aSHannes EderUsage: $P [OPTION]... [FILE]...
6477f5b10aSHannes EderVersion: $V
6577f5b10aSHannes Eder
6677f5b10aSHannes EderOptions:
6777f5b10aSHannes Eder  -q, --quiet                quiet
6877f5b10aSHannes Eder  --no-tree                  run without a kernel tree
6977f5b10aSHannes Eder  --no-signoff               do not check for 'Signed-off-by' line
7077f5b10aSHannes Eder  --patch                    treat FILE as patchfile (default)
7177f5b10aSHannes Eder  --emacs                    emacs compile window format
7277f5b10aSHannes Eder  --terse                    one line per report
7334d8815fSJoe Perches  --showfile                 emit diffed file position, not input file position
744a593c34SDu, Changbin  -g, --git                  treat FILE as a single commit or git revision range
754a593c34SDu, Changbin                             single git commit with:
764a593c34SDu, Changbin                               <rev>
774a593c34SDu, Changbin                               <rev>^
784a593c34SDu, Changbin                               <rev>~n
794a593c34SDu, Changbin                             multiple git commits with:
804a593c34SDu, Changbin                               <rev1>..<rev2>
814a593c34SDu, Changbin                               <rev1>...<rev2>
824a593c34SDu, Changbin                               <rev>-<count>
834a593c34SDu, Changbin                             git merges are ignored
8477f5b10aSHannes Eder  -f, --file                 treat FILE as regular source file
8577f5b10aSHannes Eder  --subjective, --strict     enable more subjective tests
863beb42ecSJoe Perches  --list-types               list the possible message types
8791bfe484SJoe Perches  --types TYPE(,TYPE2...)    show only these comma separated message types
88000d1cc1SJoe Perches  --ignore TYPE(,TYPE2...)   ignore various comma separated message types
893beb42ecSJoe Perches  --show-types               show the specific message type in the output
906cd7f386SJoe Perches  --max-line-length=n        set the maximum line length, if exceeded, warn
9156193274SVadim Bendebury  --min-conf-desc-length=n   set the min description length, if shorter, warn
9277f5b10aSHannes Eder  --root=PATH                PATH to the kernel tree root
9377f5b10aSHannes Eder  --no-summary               suppress the per-file summary
9477f5b10aSHannes Eder  --mailback                 only produce a report in case of warnings/errors
9577f5b10aSHannes Eder  --summary-file             include the filename in summary
9677f5b10aSHannes Eder  --debug KEY=[0|1]          turn on/off debugging of KEY, where KEY is one of
9777f5b10aSHannes Eder                             'values', 'possible', 'type', and 'attr' (default
9877f5b10aSHannes Eder                             is all off)
9977f5b10aSHannes Eder  --test-only=WORD           report only warnings/errors containing WORD
10077f5b10aSHannes Eder                             literally
1013705ce5bSJoe Perches  --fix                      EXPERIMENTAL - may create horrible results
1023705ce5bSJoe Perches                             If correctable single-line errors exist, create
1033705ce5bSJoe Perches                             "<inputfile>.EXPERIMENTAL-checkpatch-fixes"
1043705ce5bSJoe Perches                             with potential errors corrected to the preferred
1053705ce5bSJoe Perches                             checkpatch style
1069624b8d6SJoe Perches  --fix-inplace              EXPERIMENTAL - may create horrible results
1079624b8d6SJoe Perches                             Is the same as --fix, but overwrites the input
1089624b8d6SJoe Perches                             file.  It's your fault if there's no backup or git
109d62a201fSDave Hansen  --ignore-perl-version      override checking of perl version.  expect
110d62a201fSDave Hansen                             runtime errors.
111ebfd7d62SJoe Perches  --codespell                Use the codespell dictionary for spelling/typos
112f1a63678SMaxim Uvarov                             (default:/usr/share/codespell/dictionary.txt)
113ebfd7d62SJoe Perches  --codespellfile            Use this codespell dictionary
11457230297SJoe Perches  --color                    Use colors when output is STDOUT (default: on)
11577f5b10aSHannes Eder  -h, --help, --version      display this help and exit
11677f5b10aSHannes Eder
11777f5b10aSHannes EderWhen FILE is - read standard input.
11877f5b10aSHannes EderEOM
11977f5b10aSHannes Eder
12077f5b10aSHannes Eder	exit($exitcode);
12177f5b10aSHannes Eder}
12277f5b10aSHannes Eder
1233beb42ecSJoe Perchessub uniq {
1243beb42ecSJoe Perches	my %seen;
1253beb42ecSJoe Perches	return grep { !$seen{$_}++ } @_;
1263beb42ecSJoe Perches}
1273beb42ecSJoe Perches
1283beb42ecSJoe Perchessub list_types {
1293beb42ecSJoe Perches	my ($exitcode) = @_;
1303beb42ecSJoe Perches
1313beb42ecSJoe Perches	my $count = 0;
1323beb42ecSJoe Perches
1333beb42ecSJoe Perches	local $/ = undef;
1343beb42ecSJoe Perches
1353beb42ecSJoe Perches	open(my $script, '<', abs_path($P)) or
1363beb42ecSJoe Perches	    die "$P: Can't read '$P' $!\n";
1373beb42ecSJoe Perches
1383beb42ecSJoe Perches	my $text = <$script>;
1393beb42ecSJoe Perches	close($script);
1403beb42ecSJoe Perches
1413beb42ecSJoe Perches	my @types = ();
1423beb42ecSJoe Perches	for ($text =~ /\b(?:(?:CHK|WARN|ERROR)\s*\(\s*"([^"]+)")/g) {
1433beb42ecSJoe Perches		push (@types, $_);
1443beb42ecSJoe Perches	}
1453beb42ecSJoe Perches	@types = sort(uniq(@types));
1463beb42ecSJoe Perches	print("#\tMessage type\n\n");
1473beb42ecSJoe Perches	foreach my $type (@types) {
1483beb42ecSJoe Perches		print(++$count . "\t" . $type . "\n");
1493beb42ecSJoe Perches	}
1503beb42ecSJoe Perches
1513beb42ecSJoe Perches	exit($exitcode);
1523beb42ecSJoe Perches}
1533beb42ecSJoe Perches
154000d1cc1SJoe Perchesmy $conf = which_conf($configuration_file);
155000d1cc1SJoe Perchesif (-f $conf) {
156000d1cc1SJoe Perches	my @conf_args;
157000d1cc1SJoe Perches	open(my $conffile, '<', "$conf")
158000d1cc1SJoe Perches	    or warn "$P: Can't find a readable $configuration_file file $!\n";
159000d1cc1SJoe Perches
160000d1cc1SJoe Perches	while (<$conffile>) {
161000d1cc1SJoe Perches		my $line = $_;
162000d1cc1SJoe Perches
163000d1cc1SJoe Perches		$line =~ s/\s*\n?$//g;
164000d1cc1SJoe Perches		$line =~ s/^\s*//g;
165000d1cc1SJoe Perches		$line =~ s/\s+/ /g;
166000d1cc1SJoe Perches
167000d1cc1SJoe Perches		next if ($line =~ m/^\s*#/);
168000d1cc1SJoe Perches		next if ($line =~ m/^\s*$/);
169000d1cc1SJoe Perches
170000d1cc1SJoe Perches		my @words = split(" ", $line);
171000d1cc1SJoe Perches		foreach my $word (@words) {
172000d1cc1SJoe Perches			last if ($word =~ m/^#/);
173000d1cc1SJoe Perches			push (@conf_args, $word);
174000d1cc1SJoe Perches		}
175000d1cc1SJoe Perches	}
176000d1cc1SJoe Perches	close($conffile);
177000d1cc1SJoe Perches	unshift(@ARGV, @conf_args) if @conf_args;
178000d1cc1SJoe Perches}
179000d1cc1SJoe Perches
1800a920b5bSAndy WhitcroftGetOptions(
1816c72ffaaSAndy Whitcroft	'q|quiet+'	=> \$quiet,
1820a920b5bSAndy Whitcroft	'tree!'		=> \$tree,
1830a920b5bSAndy Whitcroft	'signoff!'	=> \$chk_signoff,
1840a920b5bSAndy Whitcroft	'patch!'	=> \$chk_patch,
1856c72ffaaSAndy Whitcroft	'emacs!'	=> \$emacs,
1868905a67cSAndy Whitcroft	'terse!'	=> \$terse,
18734d8815fSJoe Perches	'showfile!'	=> \$showfile,
18877f5b10aSHannes Eder	'f|file!'	=> \$file,
1894a593c34SDu, Changbin	'g|git!'	=> \$git,
1906c72ffaaSAndy Whitcroft	'subjective!'	=> \$check,
1916c72ffaaSAndy Whitcroft	'strict!'	=> \$check,
192000d1cc1SJoe Perches	'ignore=s'	=> \@ignore,
19391bfe484SJoe Perches	'types=s'	=> \@use,
194000d1cc1SJoe Perches	'show-types!'	=> \$show_types,
1953beb42ecSJoe Perches	'list-types!'	=> \$list_types,
1966cd7f386SJoe Perches	'max-line-length=i' => \$max_line_length,
19756193274SVadim Bendebury	'min-conf-desc-length=i' => \$min_conf_desc_length,
1986c72ffaaSAndy Whitcroft	'root=s'	=> \$root,
1998905a67cSAndy Whitcroft	'summary!'	=> \$summary,
2008905a67cSAndy Whitcroft	'mailback!'	=> \$mailback,
20113214adfSAndy Whitcroft	'summary-file!'	=> \$summary_file,
2023705ce5bSJoe Perches	'fix!'		=> \$fix,
2039624b8d6SJoe Perches	'fix-inplace!'	=> \$fix_inplace,
204d62a201fSDave Hansen	'ignore-perl-version!' => \$ignore_perl_version,
205c2fdda0dSAndy Whitcroft	'debug=s'	=> \%debug,
206773647a0SAndy Whitcroft	'test-only=s'	=> \$tst_only,
207ebfd7d62SJoe Perches	'codespell!'	=> \$codespell,
208ebfd7d62SJoe Perches	'codespellfile=s'	=> \$codespellfile,
20957230297SJoe Perches	'color!'	=> \$color,
21077f5b10aSHannes Eder	'h|help'	=> \$help,
21177f5b10aSHannes Eder	'version'	=> \$help
21277f5b10aSHannes Eder) or help(1);
21377f5b10aSHannes Eder
21477f5b10aSHannes Ederhelp(0) if ($help);
2150a920b5bSAndy Whitcroft
2163beb42ecSJoe Percheslist_types(0) if ($list_types);
2173beb42ecSJoe Perches
2189624b8d6SJoe Perches$fix = 1 if ($fix_inplace);
2192ac73b4fSJoe Perches$check_orig = $check;
2209624b8d6SJoe Perches
2210a920b5bSAndy Whitcroftmy $exit = 0;
2220a920b5bSAndy Whitcroft
223d62a201fSDave Hansenif ($^V && $^V lt $minimum_perl_version) {
224d62a201fSDave Hansen	printf "$P: requires at least perl version %vd\n", $minimum_perl_version;
225d62a201fSDave Hansen	if (!$ignore_perl_version) {
226d62a201fSDave Hansen		exit(1);
227d62a201fSDave Hansen	}
228d62a201fSDave Hansen}
229d62a201fSDave Hansen
2300a920b5bSAndy Whitcroftif ($#ARGV < 0) {
23177f5b10aSHannes Eder	print "$P: no input files\n";
2320a920b5bSAndy Whitcroft	exit(1);
2330a920b5bSAndy Whitcroft}
2340a920b5bSAndy Whitcroft
23591bfe484SJoe Perchessub hash_save_array_words {
23691bfe484SJoe Perches	my ($hashRef, $arrayRef) = @_;
23791bfe484SJoe Perches
23891bfe484SJoe Perches	my @array = split(/,/, join(',', @$arrayRef));
23991bfe484SJoe Perches	foreach my $word (@array) {
240000d1cc1SJoe Perches		$word =~ s/\s*\n?$//g;
241000d1cc1SJoe Perches		$word =~ s/^\s*//g;
242000d1cc1SJoe Perches		$word =~ s/\s+/ /g;
243000d1cc1SJoe Perches		$word =~ tr/[a-z]/[A-Z]/;
244000d1cc1SJoe Perches
245000d1cc1SJoe Perches		next if ($word =~ m/^\s*#/);
246000d1cc1SJoe Perches		next if ($word =~ m/^\s*$/);
247000d1cc1SJoe Perches
24891bfe484SJoe Perches		$hashRef->{$word}++;
249000d1cc1SJoe Perches	}
25091bfe484SJoe Perches}
25191bfe484SJoe Perches
25291bfe484SJoe Perchessub hash_show_words {
25391bfe484SJoe Perches	my ($hashRef, $prefix) = @_;
25491bfe484SJoe Perches
2553c816e49SJoe Perches	if (keys %$hashRef) {
256d8469f16SJoe Perches		print "\nNOTE: $prefix message types:";
25758cb3cf6SJoe Perches		foreach my $word (sort keys %$hashRef) {
25891bfe484SJoe Perches			print " $word";
25991bfe484SJoe Perches		}
260d8469f16SJoe Perches		print "\n";
26191bfe484SJoe Perches	}
26291bfe484SJoe Perches}
26391bfe484SJoe Perches
26491bfe484SJoe Percheshash_save_array_words(\%ignore_type, \@ignore);
26591bfe484SJoe Percheshash_save_array_words(\%use_type, \@use);
266000d1cc1SJoe Perches
267c2fdda0dSAndy Whitcroftmy $dbg_values = 0;
268c2fdda0dSAndy Whitcroftmy $dbg_possible = 0;
2697429c690SAndy Whitcroftmy $dbg_type = 0;
270a1ef277eSAndy Whitcroftmy $dbg_attr = 0;
271c2fdda0dSAndy Whitcroftfor my $key (keys %debug) {
27221caa13cSAndy Whitcroft	## no critic
27321caa13cSAndy Whitcroft	eval "\${dbg_$key} = '$debug{$key}';";
27421caa13cSAndy Whitcroft	die "$@" if ($@);
275c2fdda0dSAndy Whitcroft}
276c2fdda0dSAndy Whitcroft
277d2c0a235SAndy Whitcroftmy $rpt_cleaners = 0;
278d2c0a235SAndy Whitcroft
2798905a67cSAndy Whitcroftif ($terse) {
2808905a67cSAndy Whitcroft	$emacs = 1;
2818905a67cSAndy Whitcroft	$quiet++;
2828905a67cSAndy Whitcroft}
2838905a67cSAndy Whitcroft
2846c72ffaaSAndy Whitcroftif ($tree) {
2856c72ffaaSAndy Whitcroft	if (defined $root) {
2866c72ffaaSAndy Whitcroft		if (!top_of_kernel_tree($root)) {
2876c72ffaaSAndy Whitcroft			die "$P: $root: --root does not point at a valid tree\n";
2886c72ffaaSAndy Whitcroft		}
2896c72ffaaSAndy Whitcroft	} else {
2906c72ffaaSAndy Whitcroft		if (top_of_kernel_tree('.')) {
2916c72ffaaSAndy Whitcroft			$root = '.';
2926c72ffaaSAndy Whitcroft		} elsif ($0 =~ m@(.*)/scripts/[^/]*$@ &&
2936c72ffaaSAndy Whitcroft						top_of_kernel_tree($1)) {
2946c72ffaaSAndy Whitcroft			$root = $1;
2956c72ffaaSAndy Whitcroft		}
2966c72ffaaSAndy Whitcroft	}
2976c72ffaaSAndy Whitcroft
2986c72ffaaSAndy Whitcroft	if (!defined $root) {
2990a920b5bSAndy Whitcroft		print "Must be run from the top-level dir. of a kernel tree\n";
3000a920b5bSAndy Whitcroft		exit(2);
3010a920b5bSAndy Whitcroft	}
3026c72ffaaSAndy Whitcroft}
3036c72ffaaSAndy Whitcroft
3046c72ffaaSAndy Whitcroftmy $emitted_corrupt = 0;
3056c72ffaaSAndy Whitcroft
3062ceb532bSAndy Whitcroftour $Ident	= qr{
3072ceb532bSAndy Whitcroft			[A-Za-z_][A-Za-z\d_]*
3082ceb532bSAndy Whitcroft			(?:\s*\#\#\s*[A-Za-z_][A-Za-z\d_]*)*
3092ceb532bSAndy Whitcroft		}x;
3106c72ffaaSAndy Whitcroftour $Storage	= qr{extern|static|asmlinkage};
3116c72ffaaSAndy Whitcroftour $Sparse	= qr{
3126c72ffaaSAndy Whitcroft			__user|
3136c72ffaaSAndy Whitcroft			__kernel|
3146c72ffaaSAndy Whitcroft			__force|
3156c72ffaaSAndy Whitcroft			__iomem|
31654507b51SJoe Perches			__pmem|
3176c72ffaaSAndy Whitcroft			__must_check|
3186c72ffaaSAndy Whitcroft			__init_refok|
319417495edSAndy Whitcroft			__kprobes|
320165e72a6SSven Eckelmann			__ref|
321ad315455SBoqun Feng			__rcu|
322ad315455SBoqun Feng			__private
3236c72ffaaSAndy Whitcroft		}x;
324e970b884SJoe Perchesour $InitAttributePrefix = qr{__(?:mem|cpu|dev|net_|)};
325e970b884SJoe Perchesour $InitAttributeData = qr{$InitAttributePrefix(?:initdata\b)};
326e970b884SJoe Perchesour $InitAttributeConst = qr{$InitAttributePrefix(?:initconst\b)};
327e970b884SJoe Perchesour $InitAttributeInit = qr{$InitAttributePrefix(?:init\b)};
328e970b884SJoe Perchesour $InitAttribute = qr{$InitAttributeData|$InitAttributeConst|$InitAttributeInit};
3298716de38SJoe Perches
33052131292SWolfram Sang# Notes to $Attribute:
33152131292SWolfram Sang# We need \b after 'init' otherwise 'initconst' will cause a false positive in a check
3326c72ffaaSAndy Whitcroftour $Attribute	= qr{
3336c72ffaaSAndy Whitcroft			const|
33403f1df7dSJoe Perches			__percpu|
33503f1df7dSJoe Perches			__nocast|
33603f1df7dSJoe Perches			__safe|
33703f1df7dSJoe Perches			__bitwise__|
33803f1df7dSJoe Perches			__packed__|
33903f1df7dSJoe Perches			__packed2__|
34003f1df7dSJoe Perches			__naked|
34103f1df7dSJoe Perches			__maybe_unused|
34203f1df7dSJoe Perches			__always_unused|
34303f1df7dSJoe Perches			__noreturn|
34403f1df7dSJoe Perches			__used|
34503f1df7dSJoe Perches			__cold|
346e23ef1f3SJoe Perches			__pure|
34703f1df7dSJoe Perches			__noclone|
34803f1df7dSJoe Perches			__deprecated|
3496c72ffaaSAndy Whitcroft			__read_mostly|
3506c72ffaaSAndy Whitcroft			__kprobes|
3518716de38SJoe Perches			$InitAttribute|
35224e1d81aSAndy Whitcroft			____cacheline_aligned|
35324e1d81aSAndy Whitcroft			____cacheline_aligned_in_smp|
3545fe3af11SAndy Whitcroft			____cacheline_internodealigned_in_smp|
3555fe3af11SAndy Whitcroft			__weak
3566c72ffaaSAndy Whitcroft		  }x;
357c45dcabdSAndy Whitcroftour $Modifier;
35891cb5195SJoe Perchesour $Inline	= qr{inline|__always_inline|noinline|__inline|__inline__};
3596c72ffaaSAndy Whitcroftour $Member	= qr{->$Ident|\.$Ident|\[[^]]*\]};
3606c72ffaaSAndy Whitcroftour $Lval	= qr{$Ident(?:$Member)*};
3616c72ffaaSAndy Whitcroft
36295e2c602SJoe Perchesour $Int_type	= qr{(?i)llu|ull|ll|lu|ul|l|u};
36395e2c602SJoe Perchesour $Binary	= qr{(?i)0b[01]+$Int_type?};
36495e2c602SJoe Perchesour $Hex	= qr{(?i)0x[0-9a-f]+$Int_type?};
36595e2c602SJoe Perchesour $Int	= qr{[0-9]+$Int_type?};
3662435880fSJoe Perchesour $Octal	= qr{0[0-7]+$Int_type?};
367c0a5c898SJoe Perchesour $String	= qr{"[X\t]*"};
368326b1ffcSJoe Perchesour $Float_hex	= qr{(?i)0x[0-9a-f]+p-?[0-9]+[fl]?};
369326b1ffcSJoe Perchesour $Float_dec	= qr{(?i)(?:[0-9]+\.[0-9]*|[0-9]*\.[0-9]+)(?:e-?[0-9]+)?[fl]?};
370326b1ffcSJoe Perchesour $Float_int	= qr{(?i)[0-9]+e-?[0-9]+[fl]?};
37174349bccSJoe Perchesour $Float	= qr{$Float_hex|$Float_dec|$Float_int};
3722435880fSJoe Perchesour $Constant	= qr{$Float|$Binary|$Octal|$Hex|$Int};
373326b1ffcSJoe Perchesour $Assignment	= qr{\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=};
374447432f3SJoe Perchesour $Compare    = qr{<=|>=|==|!=|<|(?<!-)>};
37523f780c9SJoe Perchesour $Arithmetic = qr{\+|-|\*|\/|%};
3766c72ffaaSAndy Whitcroftour $Operators	= qr{
3776c72ffaaSAndy Whitcroft			<=|>=|==|!=|
3786c72ffaaSAndy Whitcroft			=>|->|<<|>>|<|>|!|~|
37923f780c9SJoe Perches			&&|\|\||,|\^|\+\+|--|&|\||$Arithmetic
3806c72ffaaSAndy Whitcroft		  }x;
3816c72ffaaSAndy Whitcroft
38291cb5195SJoe Perchesour $c90_Keywords = qr{do|for|while|if|else|return|goto|continue|switch|default|case|break}x;
38391cb5195SJoe Perches
384ab7e23f3SJoe Perchesour $BasicType;
3858905a67cSAndy Whitcroftour $NonptrType;
3861813087dSJoe Perchesour $NonptrTypeMisordered;
3878716de38SJoe Perchesour $NonptrTypeWithAttr;
3888905a67cSAndy Whitcroftour $Type;
3891813087dSJoe Perchesour $TypeMisordered;
3908905a67cSAndy Whitcroftour $Declare;
3911813087dSJoe Perchesour $DeclareMisordered;
3928905a67cSAndy Whitcroft
39315662b3eSJoe Perchesour $NON_ASCII_UTF8	= qr{
39415662b3eSJoe Perches	[\xC2-\xDF][\x80-\xBF]               # non-overlong 2-byte
395171ae1a4SAndy Whitcroft	|  \xE0[\xA0-\xBF][\x80-\xBF]        # excluding overlongs
396171ae1a4SAndy Whitcroft	| [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2}  # straight 3-byte
397171ae1a4SAndy Whitcroft	|  \xED[\x80-\x9F][\x80-\xBF]        # excluding surrogates
398171ae1a4SAndy Whitcroft	|  \xF0[\x90-\xBF][\x80-\xBF]{2}     # planes 1-3
399171ae1a4SAndy Whitcroft	| [\xF1-\xF3][\x80-\xBF]{3}          # planes 4-15
400171ae1a4SAndy Whitcroft	|  \xF4[\x80-\x8F][\x80-\xBF]{2}     # plane 16
401171ae1a4SAndy Whitcroft}x;
402171ae1a4SAndy Whitcroft
40315662b3eSJoe Perchesour $UTF8	= qr{
40415662b3eSJoe Perches	[\x09\x0A\x0D\x20-\x7E]              # ASCII
40515662b3eSJoe Perches	| $NON_ASCII_UTF8
40615662b3eSJoe Perches}x;
40715662b3eSJoe Perches
408e6176fa4SJoe Perchesour $typeC99Typedefs = qr{(?:__)?(?:[us]_?)?int_?(?:8|16|32|64)_t};
409021158b4SJoe Perchesour $typeOtherOSTypedefs = qr{(?x:
410021158b4SJoe Perches	u_(?:char|short|int|long) |          # bsd
411021158b4SJoe Perches	u(?:nchar|short|int|long)            # sysv
412021158b4SJoe Perches)};
413e6176fa4SJoe Perchesour $typeKernelTypedefs = qr{(?x:
414fb9e9096SAndy Whitcroft	(?:__)?(?:u|s|be|le)(?:8|16|32|64)|
4158ed22cadSAndy Whitcroft	atomic_t
4168ed22cadSAndy Whitcroft)};
417e6176fa4SJoe Perchesour $typeTypedefs = qr{(?x:
418e6176fa4SJoe Perches	$typeC99Typedefs\b|
419e6176fa4SJoe Perches	$typeOtherOSTypedefs\b|
420e6176fa4SJoe Perches	$typeKernelTypedefs\b
421e6176fa4SJoe Perches)};
4228ed22cadSAndy Whitcroft
4236d32f7a3SJoe Perchesour $zero_initializer = qr{(?:(?:0[xX])?0+$Int_type?|NULL|false)\b};
4246d32f7a3SJoe Perches
425691e669bSJoe Perchesour $logFunctions = qr{(?x:
4266e60c02eSJoe Perches	printk(?:_ratelimited|_once|)|
4277d0b6594SJacob Keller	(?:[a-z0-9]+_){1,2}(?:printk|emerg|alert|crit|err|warning|warn|notice|info|debug|dbg|vdbg|devel|cont|WARN)(?:_ratelimited|_once|)|
4286e60c02eSJoe Perches	WARN(?:_RATELIMIT|_ONCE|)|
429b0531722SJoe Perches	panic|
43006668727SJoe Perches	MODULE_[A-Z_]+|
43106668727SJoe Perches	seq_vprintf|seq_printf|seq_puts
432691e669bSJoe Perches)};
433691e669bSJoe Perches
43420112475SJoe Perchesour $signature_tags = qr{(?xi:
43520112475SJoe Perches	Signed-off-by:|
43620112475SJoe Perches	Acked-by:|
43720112475SJoe Perches	Tested-by:|
43820112475SJoe Perches	Reviewed-by:|
43920112475SJoe Perches	Reported-by:|
4408543ae12SMugunthan V N	Suggested-by:|
44120112475SJoe Perches	To:|
44220112475SJoe Perches	Cc:
44320112475SJoe Perches)};
44420112475SJoe Perches
4451813087dSJoe Perchesour @typeListMisordered = (
4461813087dSJoe Perches	qr{char\s+(?:un)?signed},
4471813087dSJoe Perches	qr{int\s+(?:(?:un)?signed\s+)?short\s},
4481813087dSJoe Perches	qr{int\s+short(?:\s+(?:un)?signed)},
4491813087dSJoe Perches	qr{short\s+int(?:\s+(?:un)?signed)},
4501813087dSJoe Perches	qr{(?:un)?signed\s+int\s+short},
4511813087dSJoe Perches	qr{short\s+(?:un)?signed},
4521813087dSJoe Perches	qr{long\s+int\s+(?:un)?signed},
4531813087dSJoe Perches	qr{int\s+long\s+(?:un)?signed},
4541813087dSJoe Perches	qr{long\s+(?:un)?signed\s+int},
4551813087dSJoe Perches	qr{int\s+(?:un)?signed\s+long},
4561813087dSJoe Perches	qr{int\s+(?:un)?signed},
4571813087dSJoe Perches	qr{int\s+long\s+long\s+(?:un)?signed},
4581813087dSJoe Perches	qr{long\s+long\s+int\s+(?:un)?signed},
4591813087dSJoe Perches	qr{long\s+long\s+(?:un)?signed\s+int},
4601813087dSJoe Perches	qr{long\s+long\s+(?:un)?signed},
4611813087dSJoe Perches	qr{long\s+(?:un)?signed},
4621813087dSJoe Perches);
4631813087dSJoe Perches
4648905a67cSAndy Whitcroftour @typeList = (
4658905a67cSAndy Whitcroft	qr{void},
4660c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?char},
4670c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?short\s+int},
4680c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?short},
4690c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?int},
4700c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?long\s+int},
4710c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?long\s+long\s+int},
4720c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?long\s+long},
4730c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?long},
4740c773d9dSJoe Perches	qr{(?:un)?signed},
4758905a67cSAndy Whitcroft	qr{float},
4768905a67cSAndy Whitcroft	qr{double},
4778905a67cSAndy Whitcroft	qr{bool},
4788905a67cSAndy Whitcroft	qr{struct\s+$Ident},
4798905a67cSAndy Whitcroft	qr{union\s+$Ident},
4808905a67cSAndy Whitcroft	qr{enum\s+$Ident},
4818905a67cSAndy Whitcroft	qr{${Ident}_t},
4828905a67cSAndy Whitcroft	qr{${Ident}_handler},
4838905a67cSAndy Whitcroft	qr{${Ident}_handler_fn},
4841813087dSJoe Perches	@typeListMisordered,
4858905a67cSAndy Whitcroft);
486938224b5SJoe Perches
487938224b5SJoe Perchesour $C90_int_types = qr{(?x:
488938224b5SJoe Perches	long\s+long\s+int\s+(?:un)?signed|
489938224b5SJoe Perches	long\s+long\s+(?:un)?signed\s+int|
490938224b5SJoe Perches	long\s+long\s+(?:un)?signed|
491938224b5SJoe Perches	(?:(?:un)?signed\s+)?long\s+long\s+int|
492938224b5SJoe Perches	(?:(?:un)?signed\s+)?long\s+long|
493938224b5SJoe Perches	int\s+long\s+long\s+(?:un)?signed|
494938224b5SJoe Perches	int\s+(?:(?:un)?signed\s+)?long\s+long|
495938224b5SJoe Perches
496938224b5SJoe Perches	long\s+int\s+(?:un)?signed|
497938224b5SJoe Perches	long\s+(?:un)?signed\s+int|
498938224b5SJoe Perches	long\s+(?:un)?signed|
499938224b5SJoe Perches	(?:(?:un)?signed\s+)?long\s+int|
500938224b5SJoe Perches	(?:(?:un)?signed\s+)?long|
501938224b5SJoe Perches	int\s+long\s+(?:un)?signed|
502938224b5SJoe Perches	int\s+(?:(?:un)?signed\s+)?long|
503938224b5SJoe Perches
504938224b5SJoe Perches	int\s+(?:un)?signed|
505938224b5SJoe Perches	(?:(?:un)?signed\s+)?int
506938224b5SJoe Perches)};
507938224b5SJoe Perches
508485ff23eSAlex Dowadour @typeListFile = ();
5098716de38SJoe Perchesour @typeListWithAttr = (
5108716de38SJoe Perches	@typeList,
5118716de38SJoe Perches	qr{struct\s+$InitAttribute\s+$Ident},
5128716de38SJoe Perches	qr{union\s+$InitAttribute\s+$Ident},
5138716de38SJoe Perches);
5148716de38SJoe Perches
515c45dcabdSAndy Whitcroftour @modifierList = (
516c45dcabdSAndy Whitcroft	qr{fastcall},
517c45dcabdSAndy Whitcroft);
518485ff23eSAlex Dowadour @modifierListFile = ();
5198905a67cSAndy Whitcroft
5202435880fSJoe Perchesour @mode_permission_funcs = (
5212435880fSJoe Perches	["module_param", 3],
5222435880fSJoe Perches	["module_param_(?:array|named|string)", 4],
5232435880fSJoe Perches	["module_param_array_named", 5],
5242435880fSJoe Perches	["debugfs_create_(?:file|u8|u16|u32|u64|x8|x16|x32|x64|size_t|atomic_t|bool|blob|regset32|u32_array)", 2],
5252435880fSJoe Perches	["proc_create(?:_data|)", 2],
5262435880fSJoe Perches	["(?:CLASS|DEVICE|SENSOR)_ATTR", 2],
5272435880fSJoe Perches);
5282435880fSJoe Perches
529515a235eSJoe Perches#Create a search pattern for all these functions to speed up a loop below
530515a235eSJoe Perchesour $mode_perms_search = "";
531515a235eSJoe Perchesforeach my $entry (@mode_permission_funcs) {
532515a235eSJoe Perches	$mode_perms_search .= '|' if ($mode_perms_search ne "");
533515a235eSJoe Perches	$mode_perms_search .= $entry->[0];
534515a235eSJoe Perches}
535515a235eSJoe Perches
536b392c64fSJoe Perchesour $mode_perms_world_writable = qr{
537b392c64fSJoe Perches	S_IWUGO		|
538b392c64fSJoe Perches	S_IWOTH		|
539b392c64fSJoe Perches	S_IRWXUGO	|
540b392c64fSJoe Perches	S_IALLUGO	|
541b392c64fSJoe Perches	0[0-7][0-7][2367]
542b392c64fSJoe Perches}x;
543b392c64fSJoe Perches
5447840a94cSWolfram Sangour $allowed_asm_includes = qr{(?x:
5457840a94cSWolfram Sang	irq|
546cdcee686SSergey Ryazanov	memory|
547cdcee686SSergey Ryazanov	time|
548cdcee686SSergey Ryazanov	reboot
5497840a94cSWolfram Sang)};
5507840a94cSWolfram Sang# memory.h: ARM has a custom one
5517840a94cSWolfram Sang
55266b47b4aSKees Cook# Load common spelling mistakes and build regular expression list.
55366b47b4aSKees Cookmy $misspellings;
55466b47b4aSKees Cookmy %spelling_fix;
55536061e38SJoe Perches
55636061e38SJoe Perchesif (open(my $spelling, '<', $spelling_file)) {
55766b47b4aSKees Cook	while (<$spelling>) {
55866b47b4aSKees Cook		my $line = $_;
55966b47b4aSKees Cook
56066b47b4aSKees Cook		$line =~ s/\s*\n?$//g;
56166b47b4aSKees Cook		$line =~ s/^\s*//g;
56266b47b4aSKees Cook
56366b47b4aSKees Cook		next if ($line =~ m/^\s*#/);
56466b47b4aSKees Cook		next if ($line =~ m/^\s*$/);
56566b47b4aSKees Cook
56666b47b4aSKees Cook		my ($suspect, $fix) = split(/\|\|/, $line);
56766b47b4aSKees Cook
56866b47b4aSKees Cook		$spelling_fix{$suspect} = $fix;
56966b47b4aSKees Cook	}
57066b47b4aSKees Cook	close($spelling);
57136061e38SJoe Perches} else {
57236061e38SJoe Perches	warn "No typos will be found - file '$spelling_file': $!\n";
57336061e38SJoe Perches}
57466b47b4aSKees Cook
575ebfd7d62SJoe Perchesif ($codespell) {
576ebfd7d62SJoe Perches	if (open(my $spelling, '<', $codespellfile)) {
577ebfd7d62SJoe Perches		while (<$spelling>) {
578ebfd7d62SJoe Perches			my $line = $_;
579ebfd7d62SJoe Perches
580ebfd7d62SJoe Perches			$line =~ s/\s*\n?$//g;
581ebfd7d62SJoe Perches			$line =~ s/^\s*//g;
582ebfd7d62SJoe Perches
583ebfd7d62SJoe Perches			next if ($line =~ m/^\s*#/);
584ebfd7d62SJoe Perches			next if ($line =~ m/^\s*$/);
585ebfd7d62SJoe Perches			next if ($line =~ m/, disabled/i);
586ebfd7d62SJoe Perches
587ebfd7d62SJoe Perches			$line =~ s/,.*$//;
588ebfd7d62SJoe Perches
589ebfd7d62SJoe Perches			my ($suspect, $fix) = split(/->/, $line);
590ebfd7d62SJoe Perches
591ebfd7d62SJoe Perches			$spelling_fix{$suspect} = $fix;
592ebfd7d62SJoe Perches		}
593ebfd7d62SJoe Perches		close($spelling);
594ebfd7d62SJoe Perches	} else {
595ebfd7d62SJoe Perches		warn "No codespell typos will be found - file '$codespellfile': $!\n";
596ebfd7d62SJoe Perches	}
597ebfd7d62SJoe Perches}
598ebfd7d62SJoe Perches
599ebfd7d62SJoe Perches$misspellings = join("|", sort keys %spelling_fix) if keys %spelling_fix;
600ebfd7d62SJoe Perches
6018905a67cSAndy Whitcroftsub build_types {
602485ff23eSAlex Dowad	my $mods = "(?x:  \n" . join("|\n  ", (@modifierList, @modifierListFile)) . "\n)";
603485ff23eSAlex Dowad	my $all = "(?x:  \n" . join("|\n  ", (@typeList, @typeListFile)) . "\n)";
6041813087dSJoe Perches	my $Misordered = "(?x:  \n" . join("|\n  ", @typeListMisordered) . "\n)";
6058716de38SJoe Perches	my $allWithAttr = "(?x:  \n" . join("|\n  ", @typeListWithAttr) . "\n)";
606c8cb2ca3SAndy Whitcroft	$Modifier	= qr{(?:$Attribute|$Sparse|$mods)};
607ab7e23f3SJoe Perches	$BasicType	= qr{
608ab7e23f3SJoe Perches				(?:$typeTypedefs\b)|
609ab7e23f3SJoe Perches				(?:${all}\b)
610ab7e23f3SJoe Perches		}x;
6118905a67cSAndy Whitcroft	$NonptrType	= qr{
612d2172eb5SAndy Whitcroft			(?:$Modifier\s+|const\s+)*
613cf655043SAndy Whitcroft			(?:
6146b48db24SAndy Whitcroft				(?:typeof|__typeof__)\s*\([^\)]*\)|
6158ed22cadSAndy Whitcroft				(?:$typeTypedefs\b)|
616c45dcabdSAndy Whitcroft				(?:${all}\b)
617cf655043SAndy Whitcroft			)
618c8cb2ca3SAndy Whitcroft			(?:\s+$Modifier|\s+const)*
6198905a67cSAndy Whitcroft		  }x;
6201813087dSJoe Perches	$NonptrTypeMisordered	= qr{
6211813087dSJoe Perches			(?:$Modifier\s+|const\s+)*
6221813087dSJoe Perches			(?:
6231813087dSJoe Perches				(?:${Misordered}\b)
6241813087dSJoe Perches			)
6251813087dSJoe Perches			(?:\s+$Modifier|\s+const)*
6261813087dSJoe Perches		  }x;
6278716de38SJoe Perches	$NonptrTypeWithAttr	= qr{
6288716de38SJoe Perches			(?:$Modifier\s+|const\s+)*
6298716de38SJoe Perches			(?:
6308716de38SJoe Perches				(?:typeof|__typeof__)\s*\([^\)]*\)|
6318716de38SJoe Perches				(?:$typeTypedefs\b)|
6328716de38SJoe Perches				(?:${allWithAttr}\b)
6338716de38SJoe Perches			)
6348716de38SJoe Perches			(?:\s+$Modifier|\s+const)*
6358716de38SJoe Perches		  }x;
6368905a67cSAndy Whitcroft	$Type	= qr{
637c45dcabdSAndy Whitcroft			$NonptrType
6381574a29fSJoe Perches			(?:(?:\s|\*|\[\])+\s*const|(?:\s|\*\s*(?:const\s*)?|\[\])+|(?:\s*\[\s*\])+)?
639c8cb2ca3SAndy Whitcroft			(?:\s+$Inline|\s+$Modifier)*
6408905a67cSAndy Whitcroft		  }x;
6411813087dSJoe Perches	$TypeMisordered	= qr{
6421813087dSJoe Perches			$NonptrTypeMisordered
6431813087dSJoe Perches			(?:(?:\s|\*|\[\])+\s*const|(?:\s|\*\s*(?:const\s*)?|\[\])+|(?:\s*\[\s*\])+)?
6441813087dSJoe Perches			(?:\s+$Inline|\s+$Modifier)*
6451813087dSJoe Perches		  }x;
64691cb5195SJoe Perches	$Declare	= qr{(?:$Storage\s+(?:$Inline\s+)?)?$Type};
6471813087dSJoe Perches	$DeclareMisordered	= qr{(?:$Storage\s+(?:$Inline\s+)?)?$TypeMisordered};
6488905a67cSAndy Whitcroft}
6498905a67cSAndy Whitcroftbuild_types();
6506c72ffaaSAndy Whitcroft
6517d2367afSJoe Perchesour $Typecast	= qr{\s*(\(\s*$NonptrType\s*\)){0,1}\s*};
652d1fe9c09SJoe Perches
653d1fe9c09SJoe Perches# Using $balanced_parens, $LvalOrFunc, or $FuncArg
654d1fe9c09SJoe Perches# requires at least perl version v5.10.0
655d1fe9c09SJoe Perches# Any use must be runtime checked with $^V
656d1fe9c09SJoe Perches
657d1fe9c09SJoe Perchesour $balanced_parens = qr/(\((?:[^\(\)]++|(?-1))*\))/;
6582435880fSJoe Perchesour $LvalOrFunc	= qr{((?:[\&\*]\s*)?$Lval)\s*($balanced_parens{0,1})\s*};
659c0a5c898SJoe Perchesour $FuncArg = qr{$Typecast{0,1}($LvalOrFunc|$Constant|$String)};
6607d2367afSJoe Perches
661f8422308SJoe Perchesour $declaration_macros = qr{(?x:
6623e838b6cSJoe Perches	(?:$Storage\s+)?(?:[A-Z_][A-Z0-9]*_){0,2}(?:DEFINE|DECLARE)(?:_[A-Z0-9]+){1,6}\s*\(|
663f8422308SJoe Perches	(?:$Storage\s+)?LIST_HEAD\s*\(|
664f8422308SJoe Perches	(?:$Storage\s+)?${Type}\s+uninitialized_var\s*\(
665f8422308SJoe Perches)};
666f8422308SJoe Perches
6677d2367afSJoe Perchessub deparenthesize {
6687d2367afSJoe Perches	my ($string) = @_;
6697d2367afSJoe Perches	return "" if (!defined($string));
6705b9553abSJoe Perches
6715b9553abSJoe Perches	while ($string =~ /^\s*\(.*\)\s*$/) {
6725b9553abSJoe Perches		$string =~ s@^\s*\(\s*@@;
6735b9553abSJoe Perches		$string =~ s@\s*\)\s*$@@;
6745b9553abSJoe Perches	}
6755b9553abSJoe Perches
6767d2367afSJoe Perches	$string =~ s@\s+@ @g;
6775b9553abSJoe Perches
6787d2367afSJoe Perches	return $string;
6797d2367afSJoe Perches}
6807d2367afSJoe Perches
6813445686aSJoe Perchessub seed_camelcase_file {
6823445686aSJoe Perches	my ($file) = @_;
6833445686aSJoe Perches
6843445686aSJoe Perches	return if (!(-f $file));
6853445686aSJoe Perches
6863445686aSJoe Perches	local $/;
6873445686aSJoe Perches
6883445686aSJoe Perches	open(my $include_file, '<', "$file")
6893445686aSJoe Perches	    or warn "$P: Can't read '$file' $!\n";
6903445686aSJoe Perches	my $text = <$include_file>;
6913445686aSJoe Perches	close($include_file);
6923445686aSJoe Perches
6933445686aSJoe Perches	my @lines = split('\n', $text);
6943445686aSJoe Perches
6953445686aSJoe Perches	foreach my $line (@lines) {
6963445686aSJoe Perches		next if ($line !~ /(?:[A-Z][a-z]|[a-z][A-Z])/);
6973445686aSJoe Perches		if ($line =~ /^[ \t]*(?:#[ \t]*define|typedef\s+$Type)\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)/) {
6983445686aSJoe Perches			$camelcase{$1} = 1;
69911ea516aSJoe Perches		} elsif ($line =~ /^\s*$Declare\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)\s*[\(\[,;]/) {
70011ea516aSJoe Perches			$camelcase{$1} = 1;
70111ea516aSJoe Perches		} elsif ($line =~ /^\s*(?:union|struct|enum)\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)\s*[;\{]/) {
7023445686aSJoe Perches			$camelcase{$1} = 1;
7033445686aSJoe Perches		}
7043445686aSJoe Perches	}
7053445686aSJoe Perches}
7063445686aSJoe Perches
7073445686aSJoe Perchesmy $camelcase_seeded = 0;
7083445686aSJoe Perchessub seed_camelcase_includes {
7093445686aSJoe Perches	return if ($camelcase_seeded);
7103445686aSJoe Perches
7113445686aSJoe Perches	my $files;
712c707a81dSJoe Perches	my $camelcase_cache = "";
713c707a81dSJoe Perches	my @include_files = ();
714c707a81dSJoe Perches
715c707a81dSJoe Perches	$camelcase_seeded = 1;
716351b2a1fSJoe Perches
7173645e328SRichard Genoud	if (-e ".git") {
718351b2a1fSJoe Perches		my $git_last_include_commit = `git log --no-merges --pretty=format:"%h%n" -1 -- include`;
719351b2a1fSJoe Perches		chomp $git_last_include_commit;
720c707a81dSJoe Perches		$camelcase_cache = ".checkpatch-camelcase.git.$git_last_include_commit";
721c707a81dSJoe Perches	} else {
722c707a81dSJoe Perches		my $last_mod_date = 0;
723c707a81dSJoe Perches		$files = `find $root/include -name "*.h"`;
724c707a81dSJoe Perches		@include_files = split('\n', $files);
725c707a81dSJoe Perches		foreach my $file (@include_files) {
726c707a81dSJoe Perches			my $date = POSIX::strftime("%Y%m%d%H%M",
727c707a81dSJoe Perches						   localtime((stat $file)[9]));
728c707a81dSJoe Perches			$last_mod_date = $date if ($last_mod_date < $date);
729c707a81dSJoe Perches		}
730c707a81dSJoe Perches		$camelcase_cache = ".checkpatch-camelcase.date.$last_mod_date";
731c707a81dSJoe Perches	}
732c707a81dSJoe Perches
733c707a81dSJoe Perches	if ($camelcase_cache ne "" && -f $camelcase_cache) {
734c707a81dSJoe Perches		open(my $camelcase_file, '<', "$camelcase_cache")
735c707a81dSJoe Perches		    or warn "$P: Can't read '$camelcase_cache' $!\n";
736351b2a1fSJoe Perches		while (<$camelcase_file>) {
737351b2a1fSJoe Perches			chomp;
738351b2a1fSJoe Perches			$camelcase{$_} = 1;
739351b2a1fSJoe Perches		}
740351b2a1fSJoe Perches		close($camelcase_file);
741351b2a1fSJoe Perches
742351b2a1fSJoe Perches		return;
743351b2a1fSJoe Perches	}
744c707a81dSJoe Perches
7453645e328SRichard Genoud	if (-e ".git") {
746c707a81dSJoe Perches		$files = `git ls-files "include/*.h"`;
747c707a81dSJoe Perches		@include_files = split('\n', $files);
7483445686aSJoe Perches	}
749c707a81dSJoe Perches
7503445686aSJoe Perches	foreach my $file (@include_files) {
7513445686aSJoe Perches		seed_camelcase_file($file);
7523445686aSJoe Perches	}
753351b2a1fSJoe Perches
754c707a81dSJoe Perches	if ($camelcase_cache ne "") {
755351b2a1fSJoe Perches		unlink glob ".checkpatch-camelcase.*";
756c707a81dSJoe Perches		open(my $camelcase_file, '>', "$camelcase_cache")
757c707a81dSJoe Perches		    or warn "$P: Can't write '$camelcase_cache' $!\n";
758351b2a1fSJoe Perches		foreach (sort { lc($a) cmp lc($b) } keys(%camelcase)) {
759351b2a1fSJoe Perches			print $camelcase_file ("$_\n");
760351b2a1fSJoe Perches		}
761351b2a1fSJoe Perches		close($camelcase_file);
762351b2a1fSJoe Perches	}
7633445686aSJoe Perches}
7643445686aSJoe Perches
765d311cd44SJoe Perchessub git_commit_info {
766d311cd44SJoe Perches	my ($commit, $id, $desc) = @_;
767d311cd44SJoe Perches
768d311cd44SJoe Perches	return ($id, $desc) if ((which("git") eq "") || !(-e ".git"));
769d311cd44SJoe Perches
770d311cd44SJoe Perches	my $output = `git log --no-color --format='%H %s' -1 $commit 2>&1`;
771d311cd44SJoe Perches	$output =~ s/^\s*//gm;
772d311cd44SJoe Perches	my @lines = split("\n", $output);
773d311cd44SJoe Perches
7740d7835fcSJoe Perches	return ($id, $desc) if ($#lines < 0);
7750d7835fcSJoe Perches
776d311cd44SJoe Perches	if ($lines[0] =~ /^error: short SHA1 $commit is ambiguous\./) {
777d311cd44SJoe Perches# Maybe one day convert this block of bash into something that returns
778d311cd44SJoe Perches# all matching commit ids, but it's very slow...
779d311cd44SJoe Perches#
780d311cd44SJoe Perches#		echo "checking commits $1..."
781d311cd44SJoe Perches#		git rev-list --remotes | grep -i "^$1" |
782d311cd44SJoe Perches#		while read line ; do
783d311cd44SJoe Perches#		    git log --format='%H %s' -1 $line |
784d311cd44SJoe Perches#		    echo "commit $(cut -c 1-12,41-)"
785d311cd44SJoe Perches#		done
786d311cd44SJoe Perches	} elsif ($lines[0] =~ /^fatal: ambiguous argument '$commit': unknown revision or path not in the working tree\./) {
787d311cd44SJoe Perches	} else {
788d311cd44SJoe Perches		$id = substr($lines[0], 0, 12);
789d311cd44SJoe Perches		$desc = substr($lines[0], 41);
790d311cd44SJoe Perches	}
791d311cd44SJoe Perches
792d311cd44SJoe Perches	return ($id, $desc);
793d311cd44SJoe Perches}
794d311cd44SJoe Perches
7956c72ffaaSAndy Whitcroft$chk_signoff = 0 if ($file);
7960a920b5bSAndy Whitcroft
79700df344fSAndy Whitcroftmy @rawlines = ();
798c2fdda0dSAndy Whitcroftmy @lines = ();
7993705ce5bSJoe Perchesmy @fixed = ();
800d752fcc8SJoe Perchesmy @fixed_inserted = ();
801d752fcc8SJoe Perchesmy @fixed_deleted = ();
802194f66fcSJoe Perchesmy $fixlinenr = -1;
803194f66fcSJoe Perches
8044a593c34SDu, Changbin# If input is git commits, extract all commits from the commit expressions.
8054a593c34SDu, Changbin# For example, HEAD-3 means we need check 'HEAD, HEAD~1, HEAD~2'.
8064a593c34SDu, Changbindie "$P: No git repository found\n" if ($git && !-e ".git");
8074a593c34SDu, Changbin
8084a593c34SDu, Changbinif ($git) {
8094a593c34SDu, Changbin	my @commits = ();
8100dea9f1eSJoe Perches	foreach my $commit_expr (@ARGV) {
8114a593c34SDu, Changbin		my $git_range;
81228898fd1SJoe Perches		if ($commit_expr =~ m/^(.*)-(\d+)$/) {
81328898fd1SJoe Perches			$git_range = "-$2 $1";
8144a593c34SDu, Changbin		} elsif ($commit_expr =~ m/\.\./) {
8154a593c34SDu, Changbin			$git_range = "$commit_expr";
8164a593c34SDu, Changbin		} else {
8170dea9f1eSJoe Perches			$git_range = "-1 $commit_expr";
8180dea9f1eSJoe Perches		}
8190dea9f1eSJoe Perches		my $lines = `git log --no-color --no-merges --pretty=format:'%H %s' $git_range`;
8200dea9f1eSJoe Perches		foreach my $line (split(/\n/, $lines)) {
82128898fd1SJoe Perches			$line =~ /^([0-9a-fA-F]{40,40}) (.*)$/;
82228898fd1SJoe Perches			next if (!defined($1) || !defined($2));
8230dea9f1eSJoe Perches			my $sha1 = $1;
8240dea9f1eSJoe Perches			my $subject = $2;
8250dea9f1eSJoe Perches			unshift(@commits, $sha1);
8260dea9f1eSJoe Perches			$git_commits{$sha1} = $subject;
8274a593c34SDu, Changbin		}
8284a593c34SDu, Changbin	}
8294a593c34SDu, Changbin	die "$P: no git commits after extraction!\n" if (@commits == 0);
8304a593c34SDu, Changbin	@ARGV = @commits;
8314a593c34SDu, Changbin}
8324a593c34SDu, Changbin
833c2fdda0dSAndy Whitcroftmy $vname;
8346c72ffaaSAndy Whitcroftfor my $filename (@ARGV) {
83521caa13cSAndy Whitcroft	my $FILE;
8364a593c34SDu, Changbin	if ($git) {
8374a593c34SDu, Changbin		open($FILE, '-|', "git format-patch -M --stdout -1 $filename") ||
8384a593c34SDu, Changbin			die "$P: $filename: git format-patch failed - $!\n";
8394a593c34SDu, Changbin	} elsif ($file) {
84021caa13cSAndy Whitcroft		open($FILE, '-|', "diff -u /dev/null $filename") ||
8416c72ffaaSAndy Whitcroft			die "$P: $filename: diff failed - $!\n";
84221caa13cSAndy Whitcroft	} elsif ($filename eq '-') {
84321caa13cSAndy Whitcroft		open($FILE, '<&STDIN');
8446c72ffaaSAndy Whitcroft	} else {
84521caa13cSAndy Whitcroft		open($FILE, '<', "$filename") ||
8466c72ffaaSAndy Whitcroft			die "$P: $filename: open failed - $!\n";
8476c72ffaaSAndy Whitcroft	}
848c2fdda0dSAndy Whitcroft	if ($filename eq '-') {
849c2fdda0dSAndy Whitcroft		$vname = 'Your patch';
8504a593c34SDu, Changbin	} elsif ($git) {
8510dea9f1eSJoe Perches		$vname = "Commit " . substr($filename, 0, 12) . ' ("' . $git_commits{$filename} . '")';
852c2fdda0dSAndy Whitcroft	} else {
853c2fdda0dSAndy Whitcroft		$vname = $filename;
854c2fdda0dSAndy Whitcroft	}
85521caa13cSAndy Whitcroft	while (<$FILE>) {
8560a920b5bSAndy Whitcroft		chomp;
85700df344fSAndy Whitcroft		push(@rawlines, $_);
8586c72ffaaSAndy Whitcroft	}
85921caa13cSAndy Whitcroft	close($FILE);
860d8469f16SJoe Perches
861d8469f16SJoe Perches	if ($#ARGV > 0 && $quiet == 0) {
862d8469f16SJoe Perches		print '-' x length($vname) . "\n";
863d8469f16SJoe Perches		print "$vname\n";
864d8469f16SJoe Perches		print '-' x length($vname) . "\n";
865d8469f16SJoe Perches	}
866d8469f16SJoe Perches
867c2fdda0dSAndy Whitcroft	if (!process($filename)) {
8680a920b5bSAndy Whitcroft		$exit = 1;
8690a920b5bSAndy Whitcroft	}
87000df344fSAndy Whitcroft	@rawlines = ();
87113214adfSAndy Whitcroft	@lines = ();
8723705ce5bSJoe Perches	@fixed = ();
873d752fcc8SJoe Perches	@fixed_inserted = ();
874d752fcc8SJoe Perches	@fixed_deleted = ();
875194f66fcSJoe Perches	$fixlinenr = -1;
876485ff23eSAlex Dowad	@modifierListFile = ();
877485ff23eSAlex Dowad	@typeListFile = ();
878485ff23eSAlex Dowad	build_types();
8790a920b5bSAndy Whitcroft}
8800a920b5bSAndy Whitcroft
881d8469f16SJoe Perchesif (!$quiet) {
8823c816e49SJoe Perches	hash_show_words(\%use_type, "Used");
8833c816e49SJoe Perches	hash_show_words(\%ignore_type, "Ignored");
8843c816e49SJoe Perches
885d8469f16SJoe Perches	if ($^V lt 5.10.0) {
886d8469f16SJoe Perches		print << "EOM"
887d8469f16SJoe Perches
888d8469f16SJoe PerchesNOTE: perl $^V is not modern enough to detect all possible issues.
889d8469f16SJoe Perches      An upgrade to at least perl v5.10.0 is suggested.
890d8469f16SJoe PerchesEOM
891d8469f16SJoe Perches	}
892d8469f16SJoe Perches	if ($exit) {
893d8469f16SJoe Perches		print << "EOM"
894d8469f16SJoe Perches
895d8469f16SJoe PerchesNOTE: If any of the errors are false positives, please report
896d8469f16SJoe Perches      them to the maintainer, see CHECKPATCH in MAINTAINERS.
897d8469f16SJoe PerchesEOM
898d8469f16SJoe Perches	}
899d8469f16SJoe Perches}
900d8469f16SJoe Perches
9010a920b5bSAndy Whitcroftexit($exit);
9020a920b5bSAndy Whitcroft
9030a920b5bSAndy Whitcroftsub top_of_kernel_tree {
9046c72ffaaSAndy Whitcroft	my ($root) = @_;
9056c72ffaaSAndy Whitcroft
9066c72ffaaSAndy Whitcroft	my @tree_check = (
9076c72ffaaSAndy Whitcroft		"COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
9086c72ffaaSAndy Whitcroft		"README", "Documentation", "arch", "include", "drivers",
9096c72ffaaSAndy Whitcroft		"fs", "init", "ipc", "kernel", "lib", "scripts",
9106c72ffaaSAndy Whitcroft	);
9116c72ffaaSAndy Whitcroft
9126c72ffaaSAndy Whitcroft	foreach my $check (@tree_check) {
9136c72ffaaSAndy Whitcroft		if (! -e $root . '/' . $check) {
9140a920b5bSAndy Whitcroft			return 0;
9150a920b5bSAndy Whitcroft		}
9166c72ffaaSAndy Whitcroft	}
9176c72ffaaSAndy Whitcroft	return 1;
9186c72ffaaSAndy Whitcroft}
9190a920b5bSAndy Whitcroft
92020112475SJoe Perchessub parse_email {
92120112475SJoe Perches	my ($formatted_email) = @_;
92220112475SJoe Perches
92320112475SJoe Perches	my $name = "";
92420112475SJoe Perches	my $address = "";
92520112475SJoe Perches	my $comment = "";
92620112475SJoe Perches
92720112475SJoe Perches	if ($formatted_email =~ /^(.*)<(\S+\@\S+)>(.*)$/) {
92820112475SJoe Perches		$name = $1;
92920112475SJoe Perches		$address = $2;
93020112475SJoe Perches		$comment = $3 if defined $3;
93120112475SJoe Perches	} elsif ($formatted_email =~ /^\s*<(\S+\@\S+)>(.*)$/) {
93220112475SJoe Perches		$address = $1;
93320112475SJoe Perches		$comment = $2 if defined $2;
93420112475SJoe Perches	} elsif ($formatted_email =~ /(\S+\@\S+)(.*)$/) {
93520112475SJoe Perches		$address = $1;
93620112475SJoe Perches		$comment = $2 if defined $2;
93720112475SJoe Perches		$formatted_email =~ s/$address.*$//;
93820112475SJoe Perches		$name = $formatted_email;
9393705ce5bSJoe Perches		$name = trim($name);
94020112475SJoe Perches		$name =~ s/^\"|\"$//g;
94120112475SJoe Perches		# If there's a name left after stripping spaces and
94220112475SJoe Perches		# leading quotes, and the address doesn't have both
94320112475SJoe Perches		# leading and trailing angle brackets, the address
94420112475SJoe Perches		# is invalid. ie:
94520112475SJoe Perches		#   "joe smith [email protected]" bad
94620112475SJoe Perches		#   "joe smith <[email protected]" bad
94720112475SJoe Perches		if ($name ne "" && $address !~ /^<[^>]+>$/) {
94820112475SJoe Perches			$name = "";
94920112475SJoe Perches			$address = "";
95020112475SJoe Perches			$comment = "";
95120112475SJoe Perches		}
95220112475SJoe Perches	}
95320112475SJoe Perches
9543705ce5bSJoe Perches	$name = trim($name);
95520112475SJoe Perches	$name =~ s/^\"|\"$//g;
9563705ce5bSJoe Perches	$address = trim($address);
95720112475SJoe Perches	$address =~ s/^\<|\>$//g;
95820112475SJoe Perches
95920112475SJoe Perches	if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
96020112475SJoe Perches		$name =~ s/(?<!\\)"/\\"/g; ##escape quotes
96120112475SJoe Perches		$name = "\"$name\"";
96220112475SJoe Perches	}
96320112475SJoe Perches
96420112475SJoe Perches	return ($name, $address, $comment);
96520112475SJoe Perches}
96620112475SJoe Perches
96720112475SJoe Perchessub format_email {
96820112475SJoe Perches	my ($name, $address) = @_;
96920112475SJoe Perches
97020112475SJoe Perches	my $formatted_email;
97120112475SJoe Perches
9723705ce5bSJoe Perches	$name = trim($name);
97320112475SJoe Perches	$name =~ s/^\"|\"$//g;
9743705ce5bSJoe Perches	$address = trim($address);
97520112475SJoe Perches
97620112475SJoe Perches	if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
97720112475SJoe Perches		$name =~ s/(?<!\\)"/\\"/g; ##escape quotes
97820112475SJoe Perches		$name = "\"$name\"";
97920112475SJoe Perches	}
98020112475SJoe Perches
98120112475SJoe Perches	if ("$name" eq "") {
98220112475SJoe Perches		$formatted_email = "$address";
98320112475SJoe Perches	} else {
98420112475SJoe Perches		$formatted_email = "$name <$address>";
98520112475SJoe Perches	}
98620112475SJoe Perches
98720112475SJoe Perches	return $formatted_email;
98820112475SJoe Perches}
98920112475SJoe Perches
990d311cd44SJoe Perchessub which {
991d311cd44SJoe Perches	my ($bin) = @_;
992d311cd44SJoe Perches
993d311cd44SJoe Perches	foreach my $path (split(/:/, $ENV{PATH})) {
994d311cd44SJoe Perches		if (-e "$path/$bin") {
995d311cd44SJoe Perches			return "$path/$bin";
996d311cd44SJoe Perches		}
997d311cd44SJoe Perches	}
998d311cd44SJoe Perches
999d311cd44SJoe Perches	return "";
1000d311cd44SJoe Perches}
1001d311cd44SJoe Perches
1002000d1cc1SJoe Perchessub which_conf {
1003000d1cc1SJoe Perches	my ($conf) = @_;
1004000d1cc1SJoe Perches
1005000d1cc1SJoe Perches	foreach my $path (split(/:/, ".:$ENV{HOME}:.scripts")) {
1006000d1cc1SJoe Perches		if (-e "$path/$conf") {
1007000d1cc1SJoe Perches			return "$path/$conf";
1008000d1cc1SJoe Perches		}
1009000d1cc1SJoe Perches	}
1010000d1cc1SJoe Perches
1011000d1cc1SJoe Perches	return "";
1012000d1cc1SJoe Perches}
1013000d1cc1SJoe Perches
10140a920b5bSAndy Whitcroftsub expand_tabs {
10150a920b5bSAndy Whitcroft	my ($str) = @_;
10160a920b5bSAndy Whitcroft
10170a920b5bSAndy Whitcroft	my $res = '';
10180a920b5bSAndy Whitcroft	my $n = 0;
10190a920b5bSAndy Whitcroft	for my $c (split(//, $str)) {
10200a920b5bSAndy Whitcroft		if ($c eq "\t") {
10210a920b5bSAndy Whitcroft			$res .= ' ';
10220a920b5bSAndy Whitcroft			$n++;
10230a920b5bSAndy Whitcroft			for (; ($n % 8) != 0; $n++) {
10240a920b5bSAndy Whitcroft				$res .= ' ';
10250a920b5bSAndy Whitcroft			}
10260a920b5bSAndy Whitcroft			next;
10270a920b5bSAndy Whitcroft		}
10280a920b5bSAndy Whitcroft		$res .= $c;
10290a920b5bSAndy Whitcroft		$n++;
10300a920b5bSAndy Whitcroft	}
10310a920b5bSAndy Whitcroft
10320a920b5bSAndy Whitcroft	return $res;
10330a920b5bSAndy Whitcroft}
10346c72ffaaSAndy Whitcroftsub copy_spacing {
1035773647a0SAndy Whitcroft	(my $res = shift) =~ tr/\t/ /c;
10366c72ffaaSAndy Whitcroft	return $res;
10376c72ffaaSAndy Whitcroft}
10380a920b5bSAndy Whitcroft
10394a0df2efSAndy Whitcroftsub line_stats {
10404a0df2efSAndy Whitcroft	my ($line) = @_;
10414a0df2efSAndy Whitcroft
10424a0df2efSAndy Whitcroft	# Drop the diff line leader and expand tabs
10434a0df2efSAndy Whitcroft	$line =~ s/^.//;
10444a0df2efSAndy Whitcroft	$line = expand_tabs($line);
10454a0df2efSAndy Whitcroft
10464a0df2efSAndy Whitcroft	# Pick the indent from the front of the line.
10474a0df2efSAndy Whitcroft	my ($white) = ($line =~ /^(\s*)/);
10484a0df2efSAndy Whitcroft
10494a0df2efSAndy Whitcroft	return (length($line), length($white));
10504a0df2efSAndy Whitcroft}
10514a0df2efSAndy Whitcroft
1052773647a0SAndy Whitcroftmy $sanitise_quote = '';
1053773647a0SAndy Whitcroft
1054773647a0SAndy Whitcroftsub sanitise_line_reset {
1055773647a0SAndy Whitcroft	my ($in_comment) = @_;
1056773647a0SAndy Whitcroft
1057773647a0SAndy Whitcroft	if ($in_comment) {
1058773647a0SAndy Whitcroft		$sanitise_quote = '*/';
1059773647a0SAndy Whitcroft	} else {
1060773647a0SAndy Whitcroft		$sanitise_quote = '';
1061773647a0SAndy Whitcroft	}
1062773647a0SAndy Whitcroft}
106300df344fSAndy Whitcroftsub sanitise_line {
106400df344fSAndy Whitcroft	my ($line) = @_;
106500df344fSAndy Whitcroft
106600df344fSAndy Whitcroft	my $res = '';
106700df344fSAndy Whitcroft	my $l = '';
106800df344fSAndy Whitcroft
1069c2fdda0dSAndy Whitcroft	my $qlen = 0;
1070773647a0SAndy Whitcroft	my $off = 0;
1071773647a0SAndy Whitcroft	my $c;
107200df344fSAndy Whitcroft
1073773647a0SAndy Whitcroft	# Always copy over the diff marker.
1074773647a0SAndy Whitcroft	$res = substr($line, 0, 1);
1075773647a0SAndy Whitcroft
1076773647a0SAndy Whitcroft	for ($off = 1; $off < length($line); $off++) {
1077773647a0SAndy Whitcroft		$c = substr($line, $off, 1);
1078773647a0SAndy Whitcroft
1079773647a0SAndy Whitcroft		# Comments we are wacking completly including the begin
1080773647a0SAndy Whitcroft		# and end, all to $;.
1081773647a0SAndy Whitcroft		if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
1082773647a0SAndy Whitcroft			$sanitise_quote = '*/';
1083773647a0SAndy Whitcroft
1084773647a0SAndy Whitcroft			substr($res, $off, 2, "$;$;");
1085773647a0SAndy Whitcroft			$off++;
108600df344fSAndy Whitcroft			next;
1087773647a0SAndy Whitcroft		}
108881bc0e02SAndy Whitcroft		if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') {
1089773647a0SAndy Whitcroft			$sanitise_quote = '';
1090773647a0SAndy Whitcroft			substr($res, $off, 2, "$;$;");
1091773647a0SAndy Whitcroft			$off++;
1092773647a0SAndy Whitcroft			next;
1093773647a0SAndy Whitcroft		}
1094113f04a8SDaniel Walker		if ($sanitise_quote eq '' && substr($line, $off, 2) eq '//') {
1095113f04a8SDaniel Walker			$sanitise_quote = '//';
1096113f04a8SDaniel Walker
1097113f04a8SDaniel Walker			substr($res, $off, 2, $sanitise_quote);
1098113f04a8SDaniel Walker			$off++;
1099113f04a8SDaniel Walker			next;
1100113f04a8SDaniel Walker		}
1101773647a0SAndy Whitcroft
1102773647a0SAndy Whitcroft		# A \ in a string means ignore the next character.
1103773647a0SAndy Whitcroft		if (($sanitise_quote eq "'" || $sanitise_quote eq '"') &&
1104773647a0SAndy Whitcroft		    $c eq "\\") {
1105773647a0SAndy Whitcroft			substr($res, $off, 2, 'XX');
1106773647a0SAndy Whitcroft			$off++;
1107773647a0SAndy Whitcroft			next;
1108773647a0SAndy Whitcroft		}
1109773647a0SAndy Whitcroft		# Regular quotes.
1110773647a0SAndy Whitcroft		if ($c eq "'" || $c eq '"') {
1111773647a0SAndy Whitcroft			if ($sanitise_quote eq '') {
1112773647a0SAndy Whitcroft				$sanitise_quote = $c;
1113773647a0SAndy Whitcroft
1114773647a0SAndy Whitcroft				substr($res, $off, 1, $c);
1115773647a0SAndy Whitcroft				next;
1116773647a0SAndy Whitcroft			} elsif ($sanitise_quote eq $c) {
1117773647a0SAndy Whitcroft				$sanitise_quote = '';
111800df344fSAndy Whitcroft			}
111900df344fSAndy Whitcroft		}
1120773647a0SAndy Whitcroft
1121fae17daeSAndy Whitcroft		#print "c<$c> SQ<$sanitise_quote>\n";
1122773647a0SAndy Whitcroft		if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") {
1123773647a0SAndy Whitcroft			substr($res, $off, 1, $;);
1124113f04a8SDaniel Walker		} elsif ($off != 0 && $sanitise_quote eq '//' && $c ne "\t") {
1125113f04a8SDaniel Walker			substr($res, $off, 1, $;);
1126773647a0SAndy Whitcroft		} elsif ($off != 0 && $sanitise_quote && $c ne "\t") {
1127773647a0SAndy Whitcroft			substr($res, $off, 1, 'X');
112800df344fSAndy Whitcroft		} else {
1129773647a0SAndy Whitcroft			substr($res, $off, 1, $c);
113000df344fSAndy Whitcroft		}
1131c2fdda0dSAndy Whitcroft	}
1132c2fdda0dSAndy Whitcroft
1133113f04a8SDaniel Walker	if ($sanitise_quote eq '//') {
1134113f04a8SDaniel Walker		$sanitise_quote = '';
1135113f04a8SDaniel Walker	}
1136113f04a8SDaniel Walker
1137c2fdda0dSAndy Whitcroft	# The pathname on a #include may be surrounded by '<' and '>'.
1138c45dcabdSAndy Whitcroft	if ($res =~ /^.\s*\#\s*include\s+\<(.*)\>/) {
1139c2fdda0dSAndy Whitcroft		my $clean = 'X' x length($1);
1140c2fdda0dSAndy Whitcroft		$res =~ s@\<.*\>@<$clean>@;
1141c2fdda0dSAndy Whitcroft
1142c2fdda0dSAndy Whitcroft	# The whole of a #error is a string.
1143c45dcabdSAndy Whitcroft	} elsif ($res =~ /^.\s*\#\s*(?:error|warning)\s+(.*)\b/) {
1144c2fdda0dSAndy Whitcroft		my $clean = 'X' x length($1);
1145c45dcabdSAndy Whitcroft		$res =~ s@(\#\s*(?:error|warning)\s+).*@$1$clean@;
1146c2fdda0dSAndy Whitcroft	}
1147c2fdda0dSAndy Whitcroft
114800df344fSAndy Whitcroft	return $res;
114900df344fSAndy Whitcroft}
115000df344fSAndy Whitcroft
1151a6962d72SJoe Perchessub get_quoted_string {
1152a6962d72SJoe Perches	my ($line, $rawline) = @_;
1153a6962d72SJoe Perches
115433acb54aSJoe Perches	return "" if ($line !~ m/($String)/g);
1155a6962d72SJoe Perches	return substr($rawline, $-[0], $+[0] - $-[0]);
1156a6962d72SJoe Perches}
1157a6962d72SJoe Perches
11588905a67cSAndy Whitcroftsub ctx_statement_block {
11598905a67cSAndy Whitcroft	my ($linenr, $remain, $off) = @_;
11608905a67cSAndy Whitcroft	my $line = $linenr - 1;
11618905a67cSAndy Whitcroft	my $blk = '';
11628905a67cSAndy Whitcroft	my $soff = $off;
11638905a67cSAndy Whitcroft	my $coff = $off - 1;
1164773647a0SAndy Whitcroft	my $coff_set = 0;
11658905a67cSAndy Whitcroft
116613214adfSAndy Whitcroft	my $loff = 0;
116713214adfSAndy Whitcroft
11688905a67cSAndy Whitcroft	my $type = '';
11698905a67cSAndy Whitcroft	my $level = 0;
1170a2750645SAndy Whitcroft	my @stack = ();
1171cf655043SAndy Whitcroft	my $p;
11728905a67cSAndy Whitcroft	my $c;
11738905a67cSAndy Whitcroft	my $len = 0;
117413214adfSAndy Whitcroft
117513214adfSAndy Whitcroft	my $remainder;
11768905a67cSAndy Whitcroft	while (1) {
1177a2750645SAndy Whitcroft		@stack = (['', 0]) if ($#stack == -1);
1178a2750645SAndy Whitcroft
1179773647a0SAndy Whitcroft		#warn "CSB: blk<$blk> remain<$remain>\n";
11808905a67cSAndy Whitcroft		# If we are about to drop off the end, pull in more
11818905a67cSAndy Whitcroft		# context.
11828905a67cSAndy Whitcroft		if ($off >= $len) {
11838905a67cSAndy Whitcroft			for (; $remain > 0; $line++) {
1184dea33496SAndy Whitcroft				last if (!defined $lines[$line]);
1185c2fdda0dSAndy Whitcroft				next if ($lines[$line] =~ /^-/);
11868905a67cSAndy Whitcroft				$remain--;
118713214adfSAndy Whitcroft				$loff = $len;
1188c2fdda0dSAndy Whitcroft				$blk .= $lines[$line] . "\n";
11898905a67cSAndy Whitcroft				$len = length($blk);
11908905a67cSAndy Whitcroft				$line++;
11918905a67cSAndy Whitcroft				last;
11928905a67cSAndy Whitcroft			}
11938905a67cSAndy Whitcroft			# Bail if there is no further context.
11948905a67cSAndy Whitcroft			#warn "CSB: blk<$blk> off<$off> len<$len>\n";
119513214adfSAndy Whitcroft			if ($off >= $len) {
11968905a67cSAndy Whitcroft				last;
11978905a67cSAndy Whitcroft			}
1198f74bd194SAndy Whitcroft			if ($level == 0 && substr($blk, $off) =~ /^.\s*#\s*define/) {
1199f74bd194SAndy Whitcroft				$level++;
1200f74bd194SAndy Whitcroft				$type = '#';
1201f74bd194SAndy Whitcroft			}
12028905a67cSAndy Whitcroft		}
1203cf655043SAndy Whitcroft		$p = $c;
12048905a67cSAndy Whitcroft		$c = substr($blk, $off, 1);
120513214adfSAndy Whitcroft		$remainder = substr($blk, $off);
12068905a67cSAndy Whitcroft
1207773647a0SAndy Whitcroft		#warn "CSB: c<$c> type<$type> level<$level> remainder<$remainder> coff_set<$coff_set>\n";
12084635f4fbSAndy Whitcroft
12094635f4fbSAndy Whitcroft		# Handle nested #if/#else.
12104635f4fbSAndy Whitcroft		if ($remainder =~ /^#\s*(?:ifndef|ifdef|if)\s/) {
12114635f4fbSAndy Whitcroft			push(@stack, [ $type, $level ]);
12124635f4fbSAndy Whitcroft		} elsif ($remainder =~ /^#\s*(?:else|elif)\b/) {
12134635f4fbSAndy Whitcroft			($type, $level) = @{$stack[$#stack - 1]};
12144635f4fbSAndy Whitcroft		} elsif ($remainder =~ /^#\s*endif\b/) {
12154635f4fbSAndy Whitcroft			($type, $level) = @{pop(@stack)};
12164635f4fbSAndy Whitcroft		}
12174635f4fbSAndy Whitcroft
12188905a67cSAndy Whitcroft		# Statement ends at the ';' or a close '}' at the
12198905a67cSAndy Whitcroft		# outermost level.
12208905a67cSAndy Whitcroft		if ($level == 0 && $c eq ';') {
12218905a67cSAndy Whitcroft			last;
12228905a67cSAndy Whitcroft		}
12238905a67cSAndy Whitcroft
122413214adfSAndy Whitcroft		# An else is really a conditional as long as its not else if
1225773647a0SAndy Whitcroft		if ($level == 0 && $coff_set == 0 &&
1226773647a0SAndy Whitcroft				(!defined($p) || $p =~ /(?:\s|\}|\+)/) &&
1227773647a0SAndy Whitcroft				$remainder =~ /^(else)(?:\s|{)/ &&
1228773647a0SAndy Whitcroft				$remainder !~ /^else\s+if\b/) {
1229773647a0SAndy Whitcroft			$coff = $off + length($1) - 1;
1230773647a0SAndy Whitcroft			$coff_set = 1;
1231773647a0SAndy Whitcroft			#warn "CSB: mark coff<$coff> soff<$soff> 1<$1>\n";
1232773647a0SAndy Whitcroft			#warn "[" . substr($blk, $soff, $coff - $soff + 1) . "]\n";
123313214adfSAndy Whitcroft		}
123413214adfSAndy Whitcroft
12358905a67cSAndy Whitcroft		if (($type eq '' || $type eq '(') && $c eq '(') {
12368905a67cSAndy Whitcroft			$level++;
12378905a67cSAndy Whitcroft			$type = '(';
12388905a67cSAndy Whitcroft		}
12398905a67cSAndy Whitcroft		if ($type eq '(' && $c eq ')') {
12408905a67cSAndy Whitcroft			$level--;
12418905a67cSAndy Whitcroft			$type = ($level != 0)? '(' : '';
12428905a67cSAndy Whitcroft
12438905a67cSAndy Whitcroft			if ($level == 0 && $coff < $soff) {
12448905a67cSAndy Whitcroft				$coff = $off;
1245773647a0SAndy Whitcroft				$coff_set = 1;
1246773647a0SAndy Whitcroft				#warn "CSB: mark coff<$coff>\n";
12478905a67cSAndy Whitcroft			}
12488905a67cSAndy Whitcroft		}
12498905a67cSAndy Whitcroft		if (($type eq '' || $type eq '{') && $c eq '{') {
12508905a67cSAndy Whitcroft			$level++;
12518905a67cSAndy Whitcroft			$type = '{';
12528905a67cSAndy Whitcroft		}
12538905a67cSAndy Whitcroft		if ($type eq '{' && $c eq '}') {
12548905a67cSAndy Whitcroft			$level--;
12558905a67cSAndy Whitcroft			$type = ($level != 0)? '{' : '';
12568905a67cSAndy Whitcroft
12578905a67cSAndy Whitcroft			if ($level == 0) {
1258b998e001SPatrick Pannuto				if (substr($blk, $off + 1, 1) eq ';') {
1259b998e001SPatrick Pannuto					$off++;
1260b998e001SPatrick Pannuto				}
12618905a67cSAndy Whitcroft				last;
12628905a67cSAndy Whitcroft			}
12638905a67cSAndy Whitcroft		}
1264f74bd194SAndy Whitcroft		# Preprocessor commands end at the newline unless escaped.
1265f74bd194SAndy Whitcroft		if ($type eq '#' && $c eq "\n" && $p ne "\\") {
1266f74bd194SAndy Whitcroft			$level--;
1267f74bd194SAndy Whitcroft			$type = '';
1268f74bd194SAndy Whitcroft			$off++;
1269f74bd194SAndy Whitcroft			last;
1270f74bd194SAndy Whitcroft		}
12718905a67cSAndy Whitcroft		$off++;
12728905a67cSAndy Whitcroft	}
1273a3bb97a7SAndy Whitcroft	# We are truly at the end, so shuffle to the next line.
127413214adfSAndy Whitcroft	if ($off == $len) {
1275a3bb97a7SAndy Whitcroft		$loff = $len + 1;
127613214adfSAndy Whitcroft		$line++;
127713214adfSAndy Whitcroft		$remain--;
127813214adfSAndy Whitcroft	}
12798905a67cSAndy Whitcroft
12808905a67cSAndy Whitcroft	my $statement = substr($blk, $soff, $off - $soff + 1);
12818905a67cSAndy Whitcroft	my $condition = substr($blk, $soff, $coff - $soff + 1);
12828905a67cSAndy Whitcroft
12838905a67cSAndy Whitcroft	#warn "STATEMENT<$statement>\n";
12848905a67cSAndy Whitcroft	#warn "CONDITION<$condition>\n";
12858905a67cSAndy Whitcroft
1286773647a0SAndy Whitcroft	#print "coff<$coff> soff<$off> loff<$loff>\n";
128713214adfSAndy Whitcroft
128813214adfSAndy Whitcroft	return ($statement, $condition,
128913214adfSAndy Whitcroft			$line, $remain + 1, $off - $loff + 1, $level);
129013214adfSAndy Whitcroft}
129113214adfSAndy Whitcroft
1292cf655043SAndy Whitcroftsub statement_lines {
1293cf655043SAndy Whitcroft	my ($stmt) = @_;
1294cf655043SAndy Whitcroft
1295cf655043SAndy Whitcroft	# Strip the diff line prefixes and rip blank lines at start and end.
1296cf655043SAndy Whitcroft	$stmt =~ s/(^|\n)./$1/g;
1297cf655043SAndy Whitcroft	$stmt =~ s/^\s*//;
1298cf655043SAndy Whitcroft	$stmt =~ s/\s*$//;
1299cf655043SAndy Whitcroft
1300cf655043SAndy Whitcroft	my @stmt_lines = ($stmt =~ /\n/g);
1301cf655043SAndy Whitcroft
1302cf655043SAndy Whitcroft	return $#stmt_lines + 2;
1303cf655043SAndy Whitcroft}
1304cf655043SAndy Whitcroft
1305cf655043SAndy Whitcroftsub statement_rawlines {
1306cf655043SAndy Whitcroft	my ($stmt) = @_;
1307cf655043SAndy Whitcroft
1308cf655043SAndy Whitcroft	my @stmt_lines = ($stmt =~ /\n/g);
1309cf655043SAndy Whitcroft
1310cf655043SAndy Whitcroft	return $#stmt_lines + 2;
1311cf655043SAndy Whitcroft}
1312cf655043SAndy Whitcroft
1313cf655043SAndy Whitcroftsub statement_block_size {
1314cf655043SAndy Whitcroft	my ($stmt) = @_;
1315cf655043SAndy Whitcroft
1316cf655043SAndy Whitcroft	$stmt =~ s/(^|\n)./$1/g;
1317cf655043SAndy Whitcroft	$stmt =~ s/^\s*{//;
1318cf655043SAndy Whitcroft	$stmt =~ s/}\s*$//;
1319cf655043SAndy Whitcroft	$stmt =~ s/^\s*//;
1320cf655043SAndy Whitcroft	$stmt =~ s/\s*$//;
1321cf655043SAndy Whitcroft
1322cf655043SAndy Whitcroft	my @stmt_lines = ($stmt =~ /\n/g);
1323cf655043SAndy Whitcroft	my @stmt_statements = ($stmt =~ /;/g);
1324cf655043SAndy Whitcroft
1325cf655043SAndy Whitcroft	my $stmt_lines = $#stmt_lines + 2;
1326cf655043SAndy Whitcroft	my $stmt_statements = $#stmt_statements + 1;
1327cf655043SAndy Whitcroft
1328cf655043SAndy Whitcroft	if ($stmt_lines > $stmt_statements) {
1329cf655043SAndy Whitcroft		return $stmt_lines;
1330cf655043SAndy Whitcroft	} else {
1331cf655043SAndy Whitcroft		return $stmt_statements;
1332cf655043SAndy Whitcroft	}
1333cf655043SAndy Whitcroft}
1334cf655043SAndy Whitcroft
133513214adfSAndy Whitcroftsub ctx_statement_full {
133613214adfSAndy Whitcroft	my ($linenr, $remain, $off) = @_;
133713214adfSAndy Whitcroft	my ($statement, $condition, $level);
133813214adfSAndy Whitcroft
133913214adfSAndy Whitcroft	my (@chunks);
134013214adfSAndy Whitcroft
1341cf655043SAndy Whitcroft	# Grab the first conditional/block pair.
134213214adfSAndy Whitcroft	($statement, $condition, $linenr, $remain, $off, $level) =
134313214adfSAndy Whitcroft				ctx_statement_block($linenr, $remain, $off);
1344773647a0SAndy Whitcroft	#print "F: c<$condition> s<$statement> remain<$remain>\n";
134513214adfSAndy Whitcroft	push(@chunks, [ $condition, $statement ]);
1346cf655043SAndy Whitcroft	if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
1347cf655043SAndy Whitcroft		return ($level, $linenr, @chunks);
1348cf655043SAndy Whitcroft	}
1349cf655043SAndy Whitcroft
1350cf655043SAndy Whitcroft	# Pull in the following conditional/block pairs and see if they
1351cf655043SAndy Whitcroft	# could continue the statement.
1352cf655043SAndy Whitcroft	for (;;) {
135313214adfSAndy Whitcroft		($statement, $condition, $linenr, $remain, $off, $level) =
135413214adfSAndy Whitcroft				ctx_statement_block($linenr, $remain, $off);
1355cf655043SAndy Whitcroft		#print "C: c<$condition> s<$statement> remain<$remain>\n";
1356773647a0SAndy Whitcroft		last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
1357cf655043SAndy Whitcroft		#print "C: push\n";
1358cf655043SAndy Whitcroft		push(@chunks, [ $condition, $statement ]);
135913214adfSAndy Whitcroft	}
136013214adfSAndy Whitcroft
136113214adfSAndy Whitcroft	return ($level, $linenr, @chunks);
13628905a67cSAndy Whitcroft}
13638905a67cSAndy Whitcroft
13644a0df2efSAndy Whitcroftsub ctx_block_get {
1365f0a594c1SAndy Whitcroft	my ($linenr, $remain, $outer, $open, $close, $off) = @_;
13664a0df2efSAndy Whitcroft	my $line;
13674a0df2efSAndy Whitcroft	my $start = $linenr - 1;
13684a0df2efSAndy Whitcroft	my $blk = '';
13694a0df2efSAndy Whitcroft	my @o;
13704a0df2efSAndy Whitcroft	my @c;
13714a0df2efSAndy Whitcroft	my @res = ();
13724a0df2efSAndy Whitcroft
1373f0a594c1SAndy Whitcroft	my $level = 0;
13744635f4fbSAndy Whitcroft	my @stack = ($level);
137500df344fSAndy Whitcroft	for ($line = $start; $remain > 0; $line++) {
137600df344fSAndy Whitcroft		next if ($rawlines[$line] =~ /^-/);
137700df344fSAndy Whitcroft		$remain--;
137800df344fSAndy Whitcroft
137900df344fSAndy Whitcroft		$blk .= $rawlines[$line];
13804635f4fbSAndy Whitcroft
13814635f4fbSAndy Whitcroft		# Handle nested #if/#else.
138201464f30SAndy Whitcroft		if ($lines[$line] =~ /^.\s*#\s*(?:ifndef|ifdef|if)\s/) {
13834635f4fbSAndy Whitcroft			push(@stack, $level);
138401464f30SAndy Whitcroft		} elsif ($lines[$line] =~ /^.\s*#\s*(?:else|elif)\b/) {
13854635f4fbSAndy Whitcroft			$level = $stack[$#stack - 1];
138601464f30SAndy Whitcroft		} elsif ($lines[$line] =~ /^.\s*#\s*endif\b/) {
13874635f4fbSAndy Whitcroft			$level = pop(@stack);
13884635f4fbSAndy Whitcroft		}
13894635f4fbSAndy Whitcroft
139001464f30SAndy Whitcroft		foreach my $c (split(//, $lines[$line])) {
1391f0a594c1SAndy Whitcroft			##print "C<$c>L<$level><$open$close>O<$off>\n";
1392f0a594c1SAndy Whitcroft			if ($off > 0) {
1393f0a594c1SAndy Whitcroft				$off--;
1394f0a594c1SAndy Whitcroft				next;
1395f0a594c1SAndy Whitcroft			}
13964a0df2efSAndy Whitcroft
1397f0a594c1SAndy Whitcroft			if ($c eq $close && $level > 0) {
1398f0a594c1SAndy Whitcroft				$level--;
1399f0a594c1SAndy Whitcroft				last if ($level == 0);
1400f0a594c1SAndy Whitcroft			} elsif ($c eq $open) {
1401f0a594c1SAndy Whitcroft				$level++;
1402f0a594c1SAndy Whitcroft			}
1403f0a594c1SAndy Whitcroft		}
14044a0df2efSAndy Whitcroft
1405f0a594c1SAndy Whitcroft		if (!$outer || $level <= 1) {
140600df344fSAndy Whitcroft			push(@res, $rawlines[$line]);
14074a0df2efSAndy Whitcroft		}
14084a0df2efSAndy Whitcroft
1409f0a594c1SAndy Whitcroft		last if ($level == 0);
14104a0df2efSAndy Whitcroft	}
14114a0df2efSAndy Whitcroft
1412f0a594c1SAndy Whitcroft	return ($level, @res);
14134a0df2efSAndy Whitcroft}
14144a0df2efSAndy Whitcroftsub ctx_block_outer {
14154a0df2efSAndy Whitcroft	my ($linenr, $remain) = @_;
14164a0df2efSAndy Whitcroft
1417f0a594c1SAndy Whitcroft	my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0);
1418f0a594c1SAndy Whitcroft	return @r;
14194a0df2efSAndy Whitcroft}
14204a0df2efSAndy Whitcroftsub ctx_block {
14214a0df2efSAndy Whitcroft	my ($linenr, $remain) = @_;
14224a0df2efSAndy Whitcroft
1423f0a594c1SAndy Whitcroft	my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0);
1424f0a594c1SAndy Whitcroft	return @r;
1425653d4876SAndy Whitcroft}
1426653d4876SAndy Whitcroftsub ctx_statement {
1427f0a594c1SAndy Whitcroft	my ($linenr, $remain, $off) = @_;
1428f0a594c1SAndy Whitcroft
1429f0a594c1SAndy Whitcroft	my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
1430f0a594c1SAndy Whitcroft	return @r;
1431f0a594c1SAndy Whitcroft}
1432f0a594c1SAndy Whitcroftsub ctx_block_level {
1433653d4876SAndy Whitcroft	my ($linenr, $remain) = @_;
1434653d4876SAndy Whitcroft
1435f0a594c1SAndy Whitcroft	return ctx_block_get($linenr, $remain, 0, '{', '}', 0);
14364a0df2efSAndy Whitcroft}
14379c0ca6f9SAndy Whitcroftsub ctx_statement_level {
14389c0ca6f9SAndy Whitcroft	my ($linenr, $remain, $off) = @_;
14399c0ca6f9SAndy Whitcroft
14409c0ca6f9SAndy Whitcroft	return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
14419c0ca6f9SAndy Whitcroft}
14424a0df2efSAndy Whitcroft
14434a0df2efSAndy Whitcroftsub ctx_locate_comment {
14444a0df2efSAndy Whitcroft	my ($first_line, $end_line) = @_;
14454a0df2efSAndy Whitcroft
14464a0df2efSAndy Whitcroft	# Catch a comment on the end of the line itself.
1447beae6332SAndy Whitcroft	my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@);
14484a0df2efSAndy Whitcroft	return $current_comment if (defined $current_comment);
14494a0df2efSAndy Whitcroft
14504a0df2efSAndy Whitcroft	# Look through the context and try and figure out if there is a
14514a0df2efSAndy Whitcroft	# comment.
14524a0df2efSAndy Whitcroft	my $in_comment = 0;
14534a0df2efSAndy Whitcroft	$current_comment = '';
14544a0df2efSAndy Whitcroft	for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
145500df344fSAndy Whitcroft		my $line = $rawlines[$linenr - 1];
145600df344fSAndy Whitcroft		#warn "           $line\n";
14574a0df2efSAndy Whitcroft		if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
14584a0df2efSAndy Whitcroft			$in_comment = 1;
14594a0df2efSAndy Whitcroft		}
14604a0df2efSAndy Whitcroft		if ($line =~ m@/\*@) {
14614a0df2efSAndy Whitcroft			$in_comment = 1;
14624a0df2efSAndy Whitcroft		}
14634a0df2efSAndy Whitcroft		if (!$in_comment && $current_comment ne '') {
14644a0df2efSAndy Whitcroft			$current_comment = '';
14654a0df2efSAndy Whitcroft		}
14664a0df2efSAndy Whitcroft		$current_comment .= $line . "\n" if ($in_comment);
14674a0df2efSAndy Whitcroft		if ($line =~ m@\*/@) {
14684a0df2efSAndy Whitcroft			$in_comment = 0;
14694a0df2efSAndy Whitcroft		}
14704a0df2efSAndy Whitcroft	}
14714a0df2efSAndy Whitcroft
14724a0df2efSAndy Whitcroft	chomp($current_comment);
14734a0df2efSAndy Whitcroft	return($current_comment);
14744a0df2efSAndy Whitcroft}
14754a0df2efSAndy Whitcroftsub ctx_has_comment {
14764a0df2efSAndy Whitcroft	my ($first_line, $end_line) = @_;
14774a0df2efSAndy Whitcroft	my $cmt = ctx_locate_comment($first_line, $end_line);
14784a0df2efSAndy Whitcroft
147900df344fSAndy Whitcroft	##print "LINE: $rawlines[$end_line - 1 ]\n";
14804a0df2efSAndy Whitcroft	##print "CMMT: $cmt\n";
14814a0df2efSAndy Whitcroft
14824a0df2efSAndy Whitcroft	return ($cmt ne '');
14834a0df2efSAndy Whitcroft}
14844a0df2efSAndy Whitcroft
14854d001e4dSAndy Whitcroftsub raw_line {
14864d001e4dSAndy Whitcroft	my ($linenr, $cnt) = @_;
14874d001e4dSAndy Whitcroft
14884d001e4dSAndy Whitcroft	my $offset = $linenr - 1;
14894d001e4dSAndy Whitcroft	$cnt++;
14904d001e4dSAndy Whitcroft
14914d001e4dSAndy Whitcroft	my $line;
14924d001e4dSAndy Whitcroft	while ($cnt) {
14934d001e4dSAndy Whitcroft		$line = $rawlines[$offset++];
14944d001e4dSAndy Whitcroft		next if (defined($line) && $line =~ /^-/);
14954d001e4dSAndy Whitcroft		$cnt--;
14964d001e4dSAndy Whitcroft	}
14974d001e4dSAndy Whitcroft
14984d001e4dSAndy Whitcroft	return $line;
14994d001e4dSAndy Whitcroft}
15004d001e4dSAndy Whitcroft
15010a920b5bSAndy Whitcroftsub cat_vet {
15020a920b5bSAndy Whitcroft	my ($vet) = @_;
15039c0ca6f9SAndy Whitcroft	my ($res, $coded);
15040a920b5bSAndy Whitcroft
15059c0ca6f9SAndy Whitcroft	$res = '';
15066c72ffaaSAndy Whitcroft	while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
15076c72ffaaSAndy Whitcroft		$res .= $1;
15086c72ffaaSAndy Whitcroft		if ($2 ne '') {
15099c0ca6f9SAndy Whitcroft			$coded = sprintf("^%c", unpack('C', $2) + 64);
15106c72ffaaSAndy Whitcroft			$res .= $coded;
15116c72ffaaSAndy Whitcroft		}
15129c0ca6f9SAndy Whitcroft	}
15139c0ca6f9SAndy Whitcroft	$res =~ s/$/\$/;
15140a920b5bSAndy Whitcroft
15159c0ca6f9SAndy Whitcroft	return $res;
15160a920b5bSAndy Whitcroft}
15170a920b5bSAndy Whitcroft
1518c2fdda0dSAndy Whitcroftmy $av_preprocessor = 0;
1519cf655043SAndy Whitcroftmy $av_pending;
1520c2fdda0dSAndy Whitcroftmy @av_paren_type;
15211f65f947SAndy Whitcroftmy $av_pend_colon;
1522c2fdda0dSAndy Whitcroft
1523c2fdda0dSAndy Whitcroftsub annotate_reset {
1524c2fdda0dSAndy Whitcroft	$av_preprocessor = 0;
1525cf655043SAndy Whitcroft	$av_pending = '_';
1526cf655043SAndy Whitcroft	@av_paren_type = ('E');
15271f65f947SAndy Whitcroft	$av_pend_colon = 'O';
1528c2fdda0dSAndy Whitcroft}
1529c2fdda0dSAndy Whitcroft
15306c72ffaaSAndy Whitcroftsub annotate_values {
15316c72ffaaSAndy Whitcroft	my ($stream, $type) = @_;
15326c72ffaaSAndy Whitcroft
15336c72ffaaSAndy Whitcroft	my $res;
15341f65f947SAndy Whitcroft	my $var = '_' x length($stream);
15356c72ffaaSAndy Whitcroft	my $cur = $stream;
15366c72ffaaSAndy Whitcroft
1537c2fdda0dSAndy Whitcroft	print "$stream\n" if ($dbg_values > 1);
15386c72ffaaSAndy Whitcroft
15396c72ffaaSAndy Whitcroft	while (length($cur)) {
1540773647a0SAndy Whitcroft		@av_paren_type = ('E') if ($#av_paren_type < 0);
1541cf655043SAndy Whitcroft		print " <" . join('', @av_paren_type) .
1542171ae1a4SAndy Whitcroft				"> <$type> <$av_pending>" if ($dbg_values > 1);
15436c72ffaaSAndy Whitcroft		if ($cur =~ /^(\s+)/o) {
1544c2fdda0dSAndy Whitcroft			print "WS($1)\n" if ($dbg_values > 1);
1545c2fdda0dSAndy Whitcroft			if ($1 =~ /\n/ && $av_preprocessor) {
1546cf655043SAndy Whitcroft				$type = pop(@av_paren_type);
1547c2fdda0dSAndy Whitcroft				$av_preprocessor = 0;
15486c72ffaaSAndy Whitcroft			}
15496c72ffaaSAndy Whitcroft
1550c023e473SFlorian Mickler		} elsif ($cur =~ /^(\(\s*$Type\s*)\)/ && $av_pending eq '_') {
15519446ef56SAndy Whitcroft			print "CAST($1)\n" if ($dbg_values > 1);
15529446ef56SAndy Whitcroft			push(@av_paren_type, $type);
1553addcdceaSAndy Whitcroft			$type = 'c';
15549446ef56SAndy Whitcroft
1555e91b6e26SAndy Whitcroft		} elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\(|\s*$)/) {
1556c2fdda0dSAndy Whitcroft			print "DECLARE($1)\n" if ($dbg_values > 1);
15576c72ffaaSAndy Whitcroft			$type = 'T';
15586c72ffaaSAndy Whitcroft
1559389a2fe5SAndy Whitcroft		} elsif ($cur =~ /^($Modifier)\s*/) {
1560389a2fe5SAndy Whitcroft			print "MODIFIER($1)\n" if ($dbg_values > 1);
1561389a2fe5SAndy Whitcroft			$type = 'T';
1562389a2fe5SAndy Whitcroft
1563c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) {
1564171ae1a4SAndy Whitcroft			print "DEFINE($1,$2)\n" if ($dbg_values > 1);
1565c2fdda0dSAndy Whitcroft			$av_preprocessor = 1;
1566171ae1a4SAndy Whitcroft			push(@av_paren_type, $type);
1567171ae1a4SAndy Whitcroft			if ($2 ne '') {
1568cf655043SAndy Whitcroft				$av_pending = 'N';
1569171ae1a4SAndy Whitcroft			}
1570171ae1a4SAndy Whitcroft			$type = 'E';
1571171ae1a4SAndy Whitcroft
1572c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*(?:undef\s*$Ident|include\b))/o) {
1573171ae1a4SAndy Whitcroft			print "UNDEF($1)\n" if ($dbg_values > 1);
1574171ae1a4SAndy Whitcroft			$av_preprocessor = 1;
1575171ae1a4SAndy Whitcroft			push(@av_paren_type, $type);
15766c72ffaaSAndy Whitcroft
1577c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*(?:ifdef|ifndef|if))/o) {
1578cf655043SAndy Whitcroft			print "PRE_START($1)\n" if ($dbg_values > 1);
1579c2fdda0dSAndy Whitcroft			$av_preprocessor = 1;
1580cf655043SAndy Whitcroft
1581cf655043SAndy Whitcroft			push(@av_paren_type, $type);
1582cf655043SAndy Whitcroft			push(@av_paren_type, $type);
1583171ae1a4SAndy Whitcroft			$type = 'E';
1584cf655043SAndy Whitcroft
1585c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*(?:else|elif))/o) {
1586cf655043SAndy Whitcroft			print "PRE_RESTART($1)\n" if ($dbg_values > 1);
1587cf655043SAndy Whitcroft			$av_preprocessor = 1;
1588cf655043SAndy Whitcroft
1589cf655043SAndy Whitcroft			push(@av_paren_type, $av_paren_type[$#av_paren_type]);
1590cf655043SAndy Whitcroft
1591171ae1a4SAndy Whitcroft			$type = 'E';
1592cf655043SAndy Whitcroft
1593c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*(?:endif))/o) {
1594cf655043SAndy Whitcroft			print "PRE_END($1)\n" if ($dbg_values > 1);
1595cf655043SAndy Whitcroft
1596cf655043SAndy Whitcroft			$av_preprocessor = 1;
1597cf655043SAndy Whitcroft
1598cf655043SAndy Whitcroft			# Assume all arms of the conditional end as this
1599cf655043SAndy Whitcroft			# one does, and continue as if the #endif was not here.
1600cf655043SAndy Whitcroft			pop(@av_paren_type);
1601cf655043SAndy Whitcroft			push(@av_paren_type, $type);
1602171ae1a4SAndy Whitcroft			$type = 'E';
16036c72ffaaSAndy Whitcroft
16046c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^(\\\n)/o) {
1605c2fdda0dSAndy Whitcroft			print "PRECONT($1)\n" if ($dbg_values > 1);
16066c72ffaaSAndy Whitcroft
1607171ae1a4SAndy Whitcroft		} elsif ($cur =~ /^(__attribute__)\s*\(?/o) {
1608171ae1a4SAndy Whitcroft			print "ATTR($1)\n" if ($dbg_values > 1);
1609171ae1a4SAndy Whitcroft			$av_pending = $type;
1610171ae1a4SAndy Whitcroft			$type = 'N';
1611171ae1a4SAndy Whitcroft
16126c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
1613c2fdda0dSAndy Whitcroft			print "SIZEOF($1)\n" if ($dbg_values > 1);
16146c72ffaaSAndy Whitcroft			if (defined $2) {
1615cf655043SAndy Whitcroft				$av_pending = 'V';
16166c72ffaaSAndy Whitcroft			}
16176c72ffaaSAndy Whitcroft			$type = 'N';
16186c72ffaaSAndy Whitcroft
161914b111c1SAndy Whitcroft		} elsif ($cur =~ /^(if|while|for)\b/o) {
1620c2fdda0dSAndy Whitcroft			print "COND($1)\n" if ($dbg_values > 1);
162114b111c1SAndy Whitcroft			$av_pending = 'E';
16226c72ffaaSAndy Whitcroft			$type = 'N';
16236c72ffaaSAndy Whitcroft
16241f65f947SAndy Whitcroft		} elsif ($cur =~/^(case)/o) {
16251f65f947SAndy Whitcroft			print "CASE($1)\n" if ($dbg_values > 1);
16261f65f947SAndy Whitcroft			$av_pend_colon = 'C';
16271f65f947SAndy Whitcroft			$type = 'N';
16281f65f947SAndy Whitcroft
162914b111c1SAndy Whitcroft		} elsif ($cur =~/^(return|else|goto|typeof|__typeof__)\b/o) {
1630c2fdda0dSAndy Whitcroft			print "KEYWORD($1)\n" if ($dbg_values > 1);
16316c72ffaaSAndy Whitcroft			$type = 'N';
16326c72ffaaSAndy Whitcroft
16336c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^(\()/o) {
1634c2fdda0dSAndy Whitcroft			print "PAREN('$1')\n" if ($dbg_values > 1);
1635cf655043SAndy Whitcroft			push(@av_paren_type, $av_pending);
1636cf655043SAndy Whitcroft			$av_pending = '_';
16376c72ffaaSAndy Whitcroft			$type = 'N';
16386c72ffaaSAndy Whitcroft
16396c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^(\))/o) {
1640cf655043SAndy Whitcroft			my $new_type = pop(@av_paren_type);
1641cf655043SAndy Whitcroft			if ($new_type ne '_') {
1642cf655043SAndy Whitcroft				$type = $new_type;
1643c2fdda0dSAndy Whitcroft				print "PAREN('$1') -> $type\n"
1644c2fdda0dSAndy Whitcroft							if ($dbg_values > 1);
16456c72ffaaSAndy Whitcroft			} else {
1646c2fdda0dSAndy Whitcroft				print "PAREN('$1')\n" if ($dbg_values > 1);
16476c72ffaaSAndy Whitcroft			}
16486c72ffaaSAndy Whitcroft
1649c8cb2ca3SAndy Whitcroft		} elsif ($cur =~ /^($Ident)\s*\(/o) {
1650c2fdda0dSAndy Whitcroft			print "FUNC($1)\n" if ($dbg_values > 1);
1651c8cb2ca3SAndy Whitcroft			$type = 'V';
1652cf655043SAndy Whitcroft			$av_pending = 'V';
16536c72ffaaSAndy Whitcroft
16548e761b04SAndy Whitcroft		} elsif ($cur =~ /^($Ident\s*):(?:\s*\d+\s*(,|=|;))?/) {
16558e761b04SAndy Whitcroft			if (defined $2 && $type eq 'C' || $type eq 'T') {
16561f65f947SAndy Whitcroft				$av_pend_colon = 'B';
16578e761b04SAndy Whitcroft			} elsif ($type eq 'E') {
16588e761b04SAndy Whitcroft				$av_pend_colon = 'L';
16591f65f947SAndy Whitcroft			}
16601f65f947SAndy Whitcroft			print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1);
16611f65f947SAndy Whitcroft			$type = 'V';
16621f65f947SAndy Whitcroft
16636c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^($Ident|$Constant)/o) {
1664c2fdda0dSAndy Whitcroft			print "IDENT($1)\n" if ($dbg_values > 1);
16656c72ffaaSAndy Whitcroft			$type = 'V';
16666c72ffaaSAndy Whitcroft
16676c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^($Assignment)/o) {
1668c2fdda0dSAndy Whitcroft			print "ASSIGN($1)\n" if ($dbg_values > 1);
16696c72ffaaSAndy Whitcroft			$type = 'N';
16706c72ffaaSAndy Whitcroft
1671cf655043SAndy Whitcroft		} elsif ($cur =~/^(;|{|})/) {
1672c2fdda0dSAndy Whitcroft			print "END($1)\n" if ($dbg_values > 1);
167313214adfSAndy Whitcroft			$type = 'E';
16741f65f947SAndy Whitcroft			$av_pend_colon = 'O';
167513214adfSAndy Whitcroft
16768e761b04SAndy Whitcroft		} elsif ($cur =~/^(,)/) {
16778e761b04SAndy Whitcroft			print "COMMA($1)\n" if ($dbg_values > 1);
16788e761b04SAndy Whitcroft			$type = 'C';
16798e761b04SAndy Whitcroft
16801f65f947SAndy Whitcroft		} elsif ($cur =~ /^(\?)/o) {
16811f65f947SAndy Whitcroft			print "QUESTION($1)\n" if ($dbg_values > 1);
16821f65f947SAndy Whitcroft			$type = 'N';
16831f65f947SAndy Whitcroft
16841f65f947SAndy Whitcroft		} elsif ($cur =~ /^(:)/o) {
16851f65f947SAndy Whitcroft			print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1);
16861f65f947SAndy Whitcroft
16871f65f947SAndy Whitcroft			substr($var, length($res), 1, $av_pend_colon);
16881f65f947SAndy Whitcroft			if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') {
16891f65f947SAndy Whitcroft				$type = 'E';
16901f65f947SAndy Whitcroft			} else {
16911f65f947SAndy Whitcroft				$type = 'N';
16921f65f947SAndy Whitcroft			}
16931f65f947SAndy Whitcroft			$av_pend_colon = 'O';
16941f65f947SAndy Whitcroft
16958e761b04SAndy Whitcroft		} elsif ($cur =~ /^(\[)/o) {
169613214adfSAndy Whitcroft			print "CLOSE($1)\n" if ($dbg_values > 1);
16976c72ffaaSAndy Whitcroft			$type = 'N';
16986c72ffaaSAndy Whitcroft
16990d413866SAndy Whitcroft		} elsif ($cur =~ /^(-(?![->])|\+(?!\+)|\*|\&\&|\&)/o) {
170074048ed8SAndy Whitcroft			my $variant;
170174048ed8SAndy Whitcroft
170274048ed8SAndy Whitcroft			print "OPV($1)\n" if ($dbg_values > 1);
170374048ed8SAndy Whitcroft			if ($type eq 'V') {
170474048ed8SAndy Whitcroft				$variant = 'B';
170574048ed8SAndy Whitcroft			} else {
170674048ed8SAndy Whitcroft				$variant = 'U';
170774048ed8SAndy Whitcroft			}
170874048ed8SAndy Whitcroft
170974048ed8SAndy Whitcroft			substr($var, length($res), 1, $variant);
171074048ed8SAndy Whitcroft			$type = 'N';
171174048ed8SAndy Whitcroft
17126c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^($Operators)/o) {
1713c2fdda0dSAndy Whitcroft			print "OP($1)\n" if ($dbg_values > 1);
17146c72ffaaSAndy Whitcroft			if ($1 ne '++' && $1 ne '--') {
17156c72ffaaSAndy Whitcroft				$type = 'N';
17166c72ffaaSAndy Whitcroft			}
17176c72ffaaSAndy Whitcroft
17186c72ffaaSAndy Whitcroft		} elsif ($cur =~ /(^.)/o) {
1719c2fdda0dSAndy Whitcroft			print "C($1)\n" if ($dbg_values > 1);
17206c72ffaaSAndy Whitcroft		}
17216c72ffaaSAndy Whitcroft		if (defined $1) {
17226c72ffaaSAndy Whitcroft			$cur = substr($cur, length($1));
17236c72ffaaSAndy Whitcroft			$res .= $type x length($1);
17246c72ffaaSAndy Whitcroft		}
17256c72ffaaSAndy Whitcroft	}
17266c72ffaaSAndy Whitcroft
17271f65f947SAndy Whitcroft	return ($res, $var);
17286c72ffaaSAndy Whitcroft}
17296c72ffaaSAndy Whitcroft
17308905a67cSAndy Whitcroftsub possible {
173113214adfSAndy Whitcroft	my ($possible, $line) = @_;
17329a974fdbSAndy Whitcroft	my $notPermitted = qr{(?:
17330776e594SAndy Whitcroft		^(?:
17340776e594SAndy Whitcroft			$Modifier|
17350776e594SAndy Whitcroft			$Storage|
17360776e594SAndy Whitcroft			$Type|
17379a974fdbSAndy Whitcroft			DEFINE_\S+
17389a974fdbSAndy Whitcroft		)$|
17399a974fdbSAndy Whitcroft		^(?:
17400776e594SAndy Whitcroft			goto|
17410776e594SAndy Whitcroft			return|
17420776e594SAndy Whitcroft			case|
17430776e594SAndy Whitcroft			else|
17440776e594SAndy Whitcroft			asm|__asm__|
174589a88353SAndy Whitcroft			do|
174689a88353SAndy Whitcroft			\#|
174789a88353SAndy Whitcroft			\#\#|
17489a974fdbSAndy Whitcroft		)(?:\s|$)|
17490776e594SAndy Whitcroft		^(?:typedef|struct|enum)\b
17509a974fdbSAndy Whitcroft	    )}x;
17519a974fdbSAndy Whitcroft	warn "CHECK<$possible> ($line)\n" if ($dbg_possible > 2);
17529a974fdbSAndy Whitcroft	if ($possible !~ $notPermitted) {
1753c45dcabdSAndy Whitcroft		# Check for modifiers.
1754c45dcabdSAndy Whitcroft		$possible =~ s/\s*$Storage\s*//g;
1755c45dcabdSAndy Whitcroft		$possible =~ s/\s*$Sparse\s*//g;
1756c45dcabdSAndy Whitcroft		if ($possible =~ /^\s*$/) {
1757c45dcabdSAndy Whitcroft
1758c45dcabdSAndy Whitcroft		} elsif ($possible =~ /\s/) {
1759c45dcabdSAndy Whitcroft			$possible =~ s/\s*$Type\s*//g;
1760d2506586SAndy Whitcroft			for my $modifier (split(' ', $possible)) {
17619a974fdbSAndy Whitcroft				if ($modifier !~ $notPermitted) {
1762d2506586SAndy Whitcroft					warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
1763485ff23eSAlex Dowad					push(@modifierListFile, $modifier);
1764d2506586SAndy Whitcroft				}
17659a974fdbSAndy Whitcroft			}
1766c45dcabdSAndy Whitcroft
1767c45dcabdSAndy Whitcroft		} else {
176813214adfSAndy Whitcroft			warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
1769485ff23eSAlex Dowad			push(@typeListFile, $possible);
1770c45dcabdSAndy Whitcroft		}
17718905a67cSAndy Whitcroft		build_types();
17720776e594SAndy Whitcroft	} else {
17730776e594SAndy Whitcroft		warn "NOTPOSS: $possible ($line)\n" if ($dbg_possible > 1);
17748905a67cSAndy Whitcroft	}
17758905a67cSAndy Whitcroft}
17768905a67cSAndy Whitcroft
17776c72ffaaSAndy Whitcroftmy $prefix = '';
17786c72ffaaSAndy Whitcroft
1779000d1cc1SJoe Perchessub show_type {
1780cbec18afSJoe Perches	my ($type) = @_;
178191bfe484SJoe Perches
1782cbec18afSJoe Perches	return defined $use_type{$type} if (scalar keys %use_type > 0);
1783cbec18afSJoe Perches
1784cbec18afSJoe Perches	return !defined $ignore_type{$type};
1785000d1cc1SJoe Perches}
1786000d1cc1SJoe Perches
1787f0a594c1SAndy Whitcroftsub report {
1788cbec18afSJoe Perches	my ($level, $type, $msg) = @_;
1789cbec18afSJoe Perches
1790cbec18afSJoe Perches	if (!show_type($type) ||
1791cbec18afSJoe Perches	    (defined $tst_only && $msg !~ /\Q$tst_only\E/)) {
1792773647a0SAndy Whitcroft		return 0;
1793773647a0SAndy Whitcroft	}
179457230297SJoe Perches	my $output = '';
179557230297SJoe Perches	if (-t STDOUT && $color) {
179657230297SJoe Perches		if ($level eq 'ERROR') {
179757230297SJoe Perches			$output .= RED;
179857230297SJoe Perches		} elsif ($level eq 'WARNING') {
179957230297SJoe Perches			$output .= YELLOW;
1800000d1cc1SJoe Perches		} else {
180157230297SJoe Perches			$output .= GREEN;
1802000d1cc1SJoe Perches		}
180357230297SJoe Perches	}
180457230297SJoe Perches	$output .= $prefix . $level . ':';
180557230297SJoe Perches	if ($show_types) {
180657230297SJoe Perches		$output .= BLUE if (-t STDOUT && $color);
180757230297SJoe Perches		$output .= "$type:";
180857230297SJoe Perches	}
180957230297SJoe Perches	$output .= RESET if (-t STDOUT && $color);
181057230297SJoe Perches	$output .= ' ' . $msg . "\n";
181134d8815fSJoe Perches
181234d8815fSJoe Perches	if ($showfile) {
181334d8815fSJoe Perches		my @lines = split("\n", $output, -1);
181434d8815fSJoe Perches		splice(@lines, 1, 1);
181534d8815fSJoe Perches		$output = join("\n", @lines);
181634d8815fSJoe Perches	}
181757230297SJoe Perches	$output = (split('\n', $output))[0] . "\n" if ($terse);
18188905a67cSAndy Whitcroft
181957230297SJoe Perches	push(our @report, $output);
1820773647a0SAndy Whitcroft
1821773647a0SAndy Whitcroft	return 1;
1822f0a594c1SAndy Whitcroft}
1823cbec18afSJoe Perches
1824f0a594c1SAndy Whitcroftsub report_dump {
182513214adfSAndy Whitcroft	our @report;
1826f0a594c1SAndy Whitcroft}
1827000d1cc1SJoe Perches
1828d752fcc8SJoe Perchessub fixup_current_range {
1829d752fcc8SJoe Perches	my ($lineRef, $offset, $length) = @_;
1830d752fcc8SJoe Perches
1831d752fcc8SJoe Perches	if ($$lineRef =~ /^\@\@ -\d+,\d+ \+(\d+),(\d+) \@\@/) {
1832d752fcc8SJoe Perches		my $o = $1;
1833d752fcc8SJoe Perches		my $l = $2;
1834d752fcc8SJoe Perches		my $no = $o + $offset;
1835d752fcc8SJoe Perches		my $nl = $l + $length;
1836d752fcc8SJoe Perches		$$lineRef =~ s/\+$o,$l \@\@/\+$no,$nl \@\@/;
1837d752fcc8SJoe Perches	}
1838d752fcc8SJoe Perches}
1839d752fcc8SJoe Perches
1840d752fcc8SJoe Perchessub fix_inserted_deleted_lines {
1841d752fcc8SJoe Perches	my ($linesRef, $insertedRef, $deletedRef) = @_;
1842d752fcc8SJoe Perches
1843d752fcc8SJoe Perches	my $range_last_linenr = 0;
1844d752fcc8SJoe Perches	my $delta_offset = 0;
1845d752fcc8SJoe Perches
1846d752fcc8SJoe Perches	my $old_linenr = 0;
1847d752fcc8SJoe Perches	my $new_linenr = 0;
1848d752fcc8SJoe Perches
1849d752fcc8SJoe Perches	my $next_insert = 0;
1850d752fcc8SJoe Perches	my $next_delete = 0;
1851d752fcc8SJoe Perches
1852d752fcc8SJoe Perches	my @lines = ();
1853d752fcc8SJoe Perches
1854d752fcc8SJoe Perches	my $inserted = @{$insertedRef}[$next_insert++];
1855d752fcc8SJoe Perches	my $deleted = @{$deletedRef}[$next_delete++];
1856d752fcc8SJoe Perches
1857d752fcc8SJoe Perches	foreach my $old_line (@{$linesRef}) {
1858d752fcc8SJoe Perches		my $save_line = 1;
1859d752fcc8SJoe Perches		my $line = $old_line;	#don't modify the array
1860323b267fSJoe Perches		if ($line =~ /^(?:\+\+\+|\-\-\-)\s+\S+/) {	#new filename
1861d752fcc8SJoe Perches			$delta_offset = 0;
1862d752fcc8SJoe Perches		} elsif ($line =~ /^\@\@ -\d+,\d+ \+\d+,\d+ \@\@/) {	#new hunk
1863d752fcc8SJoe Perches			$range_last_linenr = $new_linenr;
1864d752fcc8SJoe Perches			fixup_current_range(\$line, $delta_offset, 0);
1865d752fcc8SJoe Perches		}
1866d752fcc8SJoe Perches
1867d752fcc8SJoe Perches		while (defined($deleted) && ${$deleted}{'LINENR'} == $old_linenr) {
1868d752fcc8SJoe Perches			$deleted = @{$deletedRef}[$next_delete++];
1869d752fcc8SJoe Perches			$save_line = 0;
1870d752fcc8SJoe Perches			fixup_current_range(\$lines[$range_last_linenr], $delta_offset--, -1);
1871d752fcc8SJoe Perches		}
1872d752fcc8SJoe Perches
1873d752fcc8SJoe Perches		while (defined($inserted) && ${$inserted}{'LINENR'} == $old_linenr) {
1874d752fcc8SJoe Perches			push(@lines, ${$inserted}{'LINE'});
1875d752fcc8SJoe Perches			$inserted = @{$insertedRef}[$next_insert++];
1876d752fcc8SJoe Perches			$new_linenr++;
1877d752fcc8SJoe Perches			fixup_current_range(\$lines[$range_last_linenr], $delta_offset++, 1);
1878d752fcc8SJoe Perches		}
1879d752fcc8SJoe Perches
1880d752fcc8SJoe Perches		if ($save_line) {
1881d752fcc8SJoe Perches			push(@lines, $line);
1882d752fcc8SJoe Perches			$new_linenr++;
1883d752fcc8SJoe Perches		}
1884d752fcc8SJoe Perches
1885d752fcc8SJoe Perches		$old_linenr++;
1886d752fcc8SJoe Perches	}
1887d752fcc8SJoe Perches
1888d752fcc8SJoe Perches	return @lines;
1889d752fcc8SJoe Perches}
1890d752fcc8SJoe Perches
1891f2d7e4d4SJoe Perchessub fix_insert_line {
1892f2d7e4d4SJoe Perches	my ($linenr, $line) = @_;
1893f2d7e4d4SJoe Perches
1894f2d7e4d4SJoe Perches	my $inserted = {
1895f2d7e4d4SJoe Perches		LINENR => $linenr,
1896f2d7e4d4SJoe Perches		LINE => $line,
1897f2d7e4d4SJoe Perches	};
1898f2d7e4d4SJoe Perches	push(@fixed_inserted, $inserted);
1899f2d7e4d4SJoe Perches}
1900f2d7e4d4SJoe Perches
1901f2d7e4d4SJoe Perchessub fix_delete_line {
1902f2d7e4d4SJoe Perches	my ($linenr, $line) = @_;
1903f2d7e4d4SJoe Perches
1904f2d7e4d4SJoe Perches	my $deleted = {
1905f2d7e4d4SJoe Perches		LINENR => $linenr,
1906f2d7e4d4SJoe Perches		LINE => $line,
1907f2d7e4d4SJoe Perches	};
1908f2d7e4d4SJoe Perches
1909f2d7e4d4SJoe Perches	push(@fixed_deleted, $deleted);
1910f2d7e4d4SJoe Perches}
1911f2d7e4d4SJoe Perches
1912de7d4f0eSAndy Whitcroftsub ERROR {
1913cbec18afSJoe Perches	my ($type, $msg) = @_;
1914cbec18afSJoe Perches
1915cbec18afSJoe Perches	if (report("ERROR", $type, $msg)) {
1916de7d4f0eSAndy Whitcroft		our $clean = 0;
19176c72ffaaSAndy Whitcroft		our $cnt_error++;
19183705ce5bSJoe Perches		return 1;
1919de7d4f0eSAndy Whitcroft	}
19203705ce5bSJoe Perches	return 0;
1921773647a0SAndy Whitcroft}
1922de7d4f0eSAndy Whitcroftsub WARN {
1923cbec18afSJoe Perches	my ($type, $msg) = @_;
1924cbec18afSJoe Perches
1925cbec18afSJoe Perches	if (report("WARNING", $type, $msg)) {
1926de7d4f0eSAndy Whitcroft		our $clean = 0;
19276c72ffaaSAndy Whitcroft		our $cnt_warn++;
19283705ce5bSJoe Perches		return 1;
1929de7d4f0eSAndy Whitcroft	}
19303705ce5bSJoe Perches	return 0;
1931773647a0SAndy Whitcroft}
1932de7d4f0eSAndy Whitcroftsub CHK {
1933cbec18afSJoe Perches	my ($type, $msg) = @_;
1934cbec18afSJoe Perches
1935cbec18afSJoe Perches	if ($check && report("CHECK", $type, $msg)) {
1936de7d4f0eSAndy Whitcroft		our $clean = 0;
19376c72ffaaSAndy Whitcroft		our $cnt_chk++;
19383705ce5bSJoe Perches		return 1;
19396c72ffaaSAndy Whitcroft	}
19403705ce5bSJoe Perches	return 0;
1941de7d4f0eSAndy Whitcroft}
1942de7d4f0eSAndy Whitcroft
19436ecd9674SAndy Whitcroftsub check_absolute_file {
19446ecd9674SAndy Whitcroft	my ($absolute, $herecurr) = @_;
19456ecd9674SAndy Whitcroft	my $file = $absolute;
19466ecd9674SAndy Whitcroft
19476ecd9674SAndy Whitcroft	##print "absolute<$absolute>\n";
19486ecd9674SAndy Whitcroft
19496ecd9674SAndy Whitcroft	# See if any suffix of this path is a path within the tree.
19506ecd9674SAndy Whitcroft	while ($file =~ s@^[^/]*/@@) {
19516ecd9674SAndy Whitcroft		if (-f "$root/$file") {
19526ecd9674SAndy Whitcroft			##print "file<$file>\n";
19536ecd9674SAndy Whitcroft			last;
19546ecd9674SAndy Whitcroft		}
19556ecd9674SAndy Whitcroft	}
19566ecd9674SAndy Whitcroft	if (! -f _)  {
19576ecd9674SAndy Whitcroft		return 0;
19586ecd9674SAndy Whitcroft	}
19596ecd9674SAndy Whitcroft
19606ecd9674SAndy Whitcroft	# It is, so see if the prefix is acceptable.
19616ecd9674SAndy Whitcroft	my $prefix = $absolute;
19626ecd9674SAndy Whitcroft	substr($prefix, -length($file)) = '';
19636ecd9674SAndy Whitcroft
19646ecd9674SAndy Whitcroft	##print "prefix<$prefix>\n";
19656ecd9674SAndy Whitcroft	if ($prefix ne ".../") {
1966000d1cc1SJoe Perches		WARN("USE_RELATIVE_PATH",
1967000d1cc1SJoe Perches		     "use relative pathname instead of absolute in changelog text\n" . $herecurr);
19686ecd9674SAndy Whitcroft	}
19696ecd9674SAndy Whitcroft}
19706ecd9674SAndy Whitcroft
19713705ce5bSJoe Perchessub trim {
19723705ce5bSJoe Perches	my ($string) = @_;
19733705ce5bSJoe Perches
1974b34c648bSJoe Perches	$string =~ s/^\s+|\s+$//g;
1975b34c648bSJoe Perches
1976b34c648bSJoe Perches	return $string;
1977b34c648bSJoe Perches}
1978b34c648bSJoe Perches
1979b34c648bSJoe Perchessub ltrim {
1980b34c648bSJoe Perches	my ($string) = @_;
1981b34c648bSJoe Perches
1982b34c648bSJoe Perches	$string =~ s/^\s+//;
1983b34c648bSJoe Perches
1984b34c648bSJoe Perches	return $string;
1985b34c648bSJoe Perches}
1986b34c648bSJoe Perches
1987b34c648bSJoe Perchessub rtrim {
1988b34c648bSJoe Perches	my ($string) = @_;
1989b34c648bSJoe Perches
1990b34c648bSJoe Perches	$string =~ s/\s+$//;
19913705ce5bSJoe Perches
19923705ce5bSJoe Perches	return $string;
19933705ce5bSJoe Perches}
19943705ce5bSJoe Perches
199552ea8506SJoe Perchessub string_find_replace {
199652ea8506SJoe Perches	my ($string, $find, $replace) = @_;
199752ea8506SJoe Perches
199852ea8506SJoe Perches	$string =~ s/$find/$replace/g;
199952ea8506SJoe Perches
200052ea8506SJoe Perches	return $string;
200152ea8506SJoe Perches}
200252ea8506SJoe Perches
20033705ce5bSJoe Perchessub tabify {
20043705ce5bSJoe Perches	my ($leading) = @_;
20053705ce5bSJoe Perches
20063705ce5bSJoe Perches	my $source_indent = 8;
20073705ce5bSJoe Perches	my $max_spaces_before_tab = $source_indent - 1;
20083705ce5bSJoe Perches	my $spaces_to_tab = " " x $source_indent;
20093705ce5bSJoe Perches
20103705ce5bSJoe Perches	#convert leading spaces to tabs
20113705ce5bSJoe Perches	1 while $leading =~ s@^([\t]*)$spaces_to_tab@$1\t@g;
20123705ce5bSJoe Perches	#Remove spaces before a tab
20133705ce5bSJoe Perches	1 while $leading =~ s@^([\t]*)( {1,$max_spaces_before_tab})\t@$1\t@g;
20143705ce5bSJoe Perches
20153705ce5bSJoe Perches	return "$leading";
20163705ce5bSJoe Perches}
20173705ce5bSJoe Perches
2018d1fe9c09SJoe Perchessub pos_last_openparen {
2019d1fe9c09SJoe Perches	my ($line) = @_;
2020d1fe9c09SJoe Perches
2021d1fe9c09SJoe Perches	my $pos = 0;
2022d1fe9c09SJoe Perches
2023d1fe9c09SJoe Perches	my $opens = $line =~ tr/\(/\(/;
2024d1fe9c09SJoe Perches	my $closes = $line =~ tr/\)/\)/;
2025d1fe9c09SJoe Perches
2026d1fe9c09SJoe Perches	my $last_openparen = 0;
2027d1fe9c09SJoe Perches
2028d1fe9c09SJoe Perches	if (($opens == 0) || ($closes >= $opens)) {
2029d1fe9c09SJoe Perches		return -1;
2030d1fe9c09SJoe Perches	}
2031d1fe9c09SJoe Perches
2032d1fe9c09SJoe Perches	my $len = length($line);
2033d1fe9c09SJoe Perches
2034d1fe9c09SJoe Perches	for ($pos = 0; $pos < $len; $pos++) {
2035d1fe9c09SJoe Perches		my $string = substr($line, $pos);
2036d1fe9c09SJoe Perches		if ($string =~ /^($FuncArg|$balanced_parens)/) {
2037d1fe9c09SJoe Perches			$pos += length($1) - 1;
2038d1fe9c09SJoe Perches		} elsif (substr($line, $pos, 1) eq '(') {
2039d1fe9c09SJoe Perches			$last_openparen = $pos;
2040d1fe9c09SJoe Perches		} elsif (index($string, '(') == -1) {
2041d1fe9c09SJoe Perches			last;
2042d1fe9c09SJoe Perches		}
2043d1fe9c09SJoe Perches	}
2044d1fe9c09SJoe Perches
204591cb5195SJoe Perches	return length(expand_tabs(substr($line, 0, $last_openparen))) + 1;
2046d1fe9c09SJoe Perches}
2047d1fe9c09SJoe Perches
20480a920b5bSAndy Whitcroftsub process {
20490a920b5bSAndy Whitcroft	my $filename = shift;
20500a920b5bSAndy Whitcroft
20510a920b5bSAndy Whitcroft	my $linenr=0;
20520a920b5bSAndy Whitcroft	my $prevline="";
2053c2fdda0dSAndy Whitcroft	my $prevrawline="";
20540a920b5bSAndy Whitcroft	my $stashline="";
2055c2fdda0dSAndy Whitcroft	my $stashrawline="";
20560a920b5bSAndy Whitcroft
20574a0df2efSAndy Whitcroft	my $length;
20580a920b5bSAndy Whitcroft	my $indent;
20590a920b5bSAndy Whitcroft	my $previndent=0;
20600a920b5bSAndy Whitcroft	my $stashindent=0;
20610a920b5bSAndy Whitcroft
2062de7d4f0eSAndy Whitcroft	our $clean = 1;
20630a920b5bSAndy Whitcroft	my $signoff = 0;
20640a920b5bSAndy Whitcroft	my $is_patch = 0;
206529ee1b0cSJoe Perches	my $in_header_lines = $file ? 0 : 1;
206615662b3eSJoe Perches	my $in_commit_log = 0;		#Scanning lines before patch
2067bf4daf12SJoe Perches       my $commit_log_possible_stack_dump = 0;
20682a076f40SJoe Perches	my $commit_log_long_line = 0;
2069e518e9a5SJoe Perches	my $commit_log_has_diff = 0;
207013f1937eSJoe Perches	my $reported_maintainer_file = 0;
2071fa64205dSPasi Savanainen	my $non_utf8_charset = 0;
2072fa64205dSPasi Savanainen
2073365dd4eaSJoe Perches	my $last_blank_line = 0;
20745e4f6ba5SJoe Perches	my $last_coalesced_string_linenr = -1;
2075365dd4eaSJoe Perches
207613214adfSAndy Whitcroft	our @report = ();
20776c72ffaaSAndy Whitcroft	our $cnt_lines = 0;
20786c72ffaaSAndy Whitcroft	our $cnt_error = 0;
20796c72ffaaSAndy Whitcroft	our $cnt_warn = 0;
20806c72ffaaSAndy Whitcroft	our $cnt_chk = 0;
20816c72ffaaSAndy Whitcroft
20820a920b5bSAndy Whitcroft	# Trace the real file/line as we go.
20830a920b5bSAndy Whitcroft	my $realfile = '';
20840a920b5bSAndy Whitcroft	my $realline = 0;
20850a920b5bSAndy Whitcroft	my $realcnt = 0;
20860a920b5bSAndy Whitcroft	my $here = '';
20870a920b5bSAndy Whitcroft	my $in_comment = 0;
2088c2fdda0dSAndy Whitcroft	my $comment_edge = 0;
20890a920b5bSAndy Whitcroft	my $first_line = 0;
20901e855726SWolfram Sang	my $p1_prefix = '';
20910a920b5bSAndy Whitcroft
209213214adfSAndy Whitcroft	my $prev_values = 'E';
209313214adfSAndy Whitcroft
209413214adfSAndy Whitcroft	# suppression flags
2095773647a0SAndy Whitcroft	my %suppress_ifbraces;
2096170d3a22SAndy Whitcroft	my %suppress_whiletrailers;
20972b474a1aSAndy Whitcroft	my %suppress_export;
20983e469cdcSAndy Whitcroft	my $suppress_statement = 0;
2099653d4876SAndy Whitcroft
21007e51f197SJoe Perches	my %signatures = ();
2101323c1260SJoe Perches
2102c2fdda0dSAndy Whitcroft	# Pre-scan the patch sanitizing the lines.
2103de7d4f0eSAndy Whitcroft	# Pre-scan the patch looking for any __setup documentation.
2104c2fdda0dSAndy Whitcroft	#
2105de7d4f0eSAndy Whitcroft	my @setup_docs = ();
2106de7d4f0eSAndy Whitcroft	my $setup_docs = 0;
2107773647a0SAndy Whitcroft
2108d8b07710SJoe Perches	my $camelcase_file_seeded = 0;
2109d8b07710SJoe Perches
2110773647a0SAndy Whitcroft	sanitise_line_reset();
2111c2fdda0dSAndy Whitcroft	my $line;
2112c2fdda0dSAndy Whitcroft	foreach my $rawline (@rawlines) {
2113773647a0SAndy Whitcroft		$linenr++;
2114773647a0SAndy Whitcroft		$line = $rawline;
2115c2fdda0dSAndy Whitcroft
21163705ce5bSJoe Perches		push(@fixed, $rawline) if ($fix);
21173705ce5bSJoe Perches
2118773647a0SAndy Whitcroft		if ($rawline=~/^\+\+\+\s+(\S+)/) {
2119de7d4f0eSAndy Whitcroft			$setup_docs = 0;
2120de7d4f0eSAndy Whitcroft			if ($1 =~ m@Documentation/kernel-parameters.txt$@) {
2121de7d4f0eSAndy Whitcroft				$setup_docs = 1;
2122de7d4f0eSAndy Whitcroft			}
2123773647a0SAndy Whitcroft			#next;
2124de7d4f0eSAndy Whitcroft		}
2125773647a0SAndy Whitcroft		if ($rawline=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
2126773647a0SAndy Whitcroft			$realline=$1-1;
2127773647a0SAndy Whitcroft			if (defined $2) {
2128773647a0SAndy Whitcroft				$realcnt=$3+1;
2129773647a0SAndy Whitcroft			} else {
2130773647a0SAndy Whitcroft				$realcnt=1+1;
2131773647a0SAndy Whitcroft			}
2132c45dcabdSAndy Whitcroft			$in_comment = 0;
2133773647a0SAndy Whitcroft
2134773647a0SAndy Whitcroft			# Guestimate if this is a continuing comment.  Run
2135773647a0SAndy Whitcroft			# the context looking for a comment "edge".  If this
2136773647a0SAndy Whitcroft			# edge is a close comment then we must be in a comment
2137773647a0SAndy Whitcroft			# at context start.
2138773647a0SAndy Whitcroft			my $edge;
213901fa9147SAndy Whitcroft			my $cnt = $realcnt;
214001fa9147SAndy Whitcroft			for (my $ln = $linenr + 1; $cnt > 0; $ln++) {
214101fa9147SAndy Whitcroft				next if (defined $rawlines[$ln - 1] &&
214201fa9147SAndy Whitcroft					 $rawlines[$ln - 1] =~ /^-/);
214301fa9147SAndy Whitcroft				$cnt--;
214401fa9147SAndy Whitcroft				#print "RAW<$rawlines[$ln - 1]>\n";
2145721c1cb6SAndy Whitcroft				last if (!defined $rawlines[$ln - 1]);
2146fae17daeSAndy Whitcroft				if ($rawlines[$ln - 1] =~ m@(/\*|\*/)@ &&
2147fae17daeSAndy Whitcroft				    $rawlines[$ln - 1] !~ m@"[^"]*(?:/\*|\*/)[^"]*"@) {
2148fae17daeSAndy Whitcroft					($edge) = $1;
2149fae17daeSAndy Whitcroft					last;
2150fae17daeSAndy Whitcroft				}
2151773647a0SAndy Whitcroft			}
2152773647a0SAndy Whitcroft			if (defined $edge && $edge eq '*/') {
2153773647a0SAndy Whitcroft				$in_comment = 1;
2154773647a0SAndy Whitcroft			}
2155773647a0SAndy Whitcroft
2156773647a0SAndy Whitcroft			# Guestimate if this is a continuing comment.  If this
2157773647a0SAndy Whitcroft			# is the start of a diff block and this line starts
2158773647a0SAndy Whitcroft			# ' *' then it is very likely a comment.
2159773647a0SAndy Whitcroft			if (!defined $edge &&
216083242e0cSAndy Whitcroft			    $rawlines[$linenr] =~ m@^.\s*(?:\*\*+| \*)(?:\s|$)@)
2161773647a0SAndy Whitcroft			{
2162773647a0SAndy Whitcroft				$in_comment = 1;
2163773647a0SAndy Whitcroft			}
2164773647a0SAndy Whitcroft
2165773647a0SAndy Whitcroft			##print "COMMENT:$in_comment edge<$edge> $rawline\n";
2166773647a0SAndy Whitcroft			sanitise_line_reset($in_comment);
2167773647a0SAndy Whitcroft
2168171ae1a4SAndy Whitcroft		} elsif ($realcnt && $rawline =~ /^(?:\+| |$)/) {
2169773647a0SAndy Whitcroft			# Standardise the strings and chars within the input to
2170171ae1a4SAndy Whitcroft			# simplify matching -- only bother with positive lines.
2171773647a0SAndy Whitcroft			$line = sanitise_line($rawline);
2172773647a0SAndy Whitcroft		}
2173773647a0SAndy Whitcroft		push(@lines, $line);
2174773647a0SAndy Whitcroft
2175773647a0SAndy Whitcroft		if ($realcnt > 1) {
2176773647a0SAndy Whitcroft			$realcnt-- if ($line =~ /^(?:\+| |$)/);
2177773647a0SAndy Whitcroft		} else {
2178773647a0SAndy Whitcroft			$realcnt = 0;
2179773647a0SAndy Whitcroft		}
2180773647a0SAndy Whitcroft
2181773647a0SAndy Whitcroft		#print "==>$rawline\n";
2182773647a0SAndy Whitcroft		#print "-->$line\n";
2183de7d4f0eSAndy Whitcroft
2184de7d4f0eSAndy Whitcroft		if ($setup_docs && $line =~ /^\+/) {
2185de7d4f0eSAndy Whitcroft			push(@setup_docs, $line);
2186de7d4f0eSAndy Whitcroft		}
2187de7d4f0eSAndy Whitcroft	}
2188de7d4f0eSAndy Whitcroft
21896c72ffaaSAndy Whitcroft	$prefix = '';
21906c72ffaaSAndy Whitcroft
2191773647a0SAndy Whitcroft	$realcnt = 0;
2192773647a0SAndy Whitcroft	$linenr = 0;
2193194f66fcSJoe Perches	$fixlinenr = -1;
21940a920b5bSAndy Whitcroft	foreach my $line (@lines) {
21950a920b5bSAndy Whitcroft		$linenr++;
2196194f66fcSJoe Perches		$fixlinenr++;
21971b5539b1SJoe Perches		my $sline = $line;	#copy of $line
21981b5539b1SJoe Perches		$sline =~ s/$;/ /g;	#with comments as spaces
21990a920b5bSAndy Whitcroft
2200c2fdda0dSAndy Whitcroft		my $rawline = $rawlines[$linenr - 1];
22016c72ffaaSAndy Whitcroft
22020a920b5bSAndy Whitcroft#extract the line range in the file after the patch is applied
2203e518e9a5SJoe Perches		if (!$in_commit_log &&
2204e518e9a5SJoe Perches		    $line =~ /^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
22050a920b5bSAndy Whitcroft			$is_patch = 1;
22064a0df2efSAndy Whitcroft			$first_line = $linenr + 1;
22070a920b5bSAndy Whitcroft			$realline=$1-1;
22080a920b5bSAndy Whitcroft			if (defined $2) {
22090a920b5bSAndy Whitcroft				$realcnt=$3+1;
22100a920b5bSAndy Whitcroft			} else {
22110a920b5bSAndy Whitcroft				$realcnt=1+1;
22120a920b5bSAndy Whitcroft			}
2213c2fdda0dSAndy Whitcroft			annotate_reset();
221413214adfSAndy Whitcroft			$prev_values = 'E';
221513214adfSAndy Whitcroft
2216773647a0SAndy Whitcroft			%suppress_ifbraces = ();
2217170d3a22SAndy Whitcroft			%suppress_whiletrailers = ();
22182b474a1aSAndy Whitcroft			%suppress_export = ();
22193e469cdcSAndy Whitcroft			$suppress_statement = 0;
22200a920b5bSAndy Whitcroft			next;
22210a920b5bSAndy Whitcroft
22224a0df2efSAndy Whitcroft# track the line number as we move through the hunk, note that
22234a0df2efSAndy Whitcroft# new versions of GNU diff omit the leading space on completely
22244a0df2efSAndy Whitcroft# blank context lines so we need to count that too.
2225773647a0SAndy Whitcroft		} elsif ($line =~ /^( |\+|$)/) {
22260a920b5bSAndy Whitcroft			$realline++;
2227d8aaf121SAndy Whitcroft			$realcnt-- if ($realcnt != 0);
22280a920b5bSAndy Whitcroft
22294a0df2efSAndy Whitcroft			# Measure the line length and indent.
2230c2fdda0dSAndy Whitcroft			($length, $indent) = line_stats($rawline);
22310a920b5bSAndy Whitcroft
22320a920b5bSAndy Whitcroft			# Track the previous line.
22330a920b5bSAndy Whitcroft			($prevline, $stashline) = ($stashline, $line);
22340a920b5bSAndy Whitcroft			($previndent, $stashindent) = ($stashindent, $indent);
2235c2fdda0dSAndy Whitcroft			($prevrawline, $stashrawline) = ($stashrawline, $rawline);
2236c2fdda0dSAndy Whitcroft
2237773647a0SAndy Whitcroft			#warn "line<$line>\n";
22386c72ffaaSAndy Whitcroft
2239d8aaf121SAndy Whitcroft		} elsif ($realcnt == 1) {
2240d8aaf121SAndy Whitcroft			$realcnt--;
22410a920b5bSAndy Whitcroft		}
22420a920b5bSAndy Whitcroft
2243cc77cdcaSAndy Whitcroft		my $hunk_line = ($realcnt != 0);
2244cc77cdcaSAndy Whitcroft
22456c72ffaaSAndy Whitcroft		$here = "#$linenr: " if (!$file);
22466c72ffaaSAndy Whitcroft		$here = "#$realline: " if ($file);
2247773647a0SAndy Whitcroft
22482ac73b4fSJoe Perches		my $found_file = 0;
2249773647a0SAndy Whitcroft		# extract the filename as it passes
22503bf9a009SRabin Vincent		if ($line =~ /^diff --git.*?(\S+)$/) {
22513bf9a009SRabin Vincent			$realfile = $1;
22522b7ab453SJoe Perches			$realfile =~ s@^([^/]*)/@@ if (!$file);
2253270c49a0SJoe Perches			$in_commit_log = 0;
22542ac73b4fSJoe Perches			$found_file = 1;
22553bf9a009SRabin Vincent		} elsif ($line =~ /^\+\+\+\s+(\S+)/) {
2256773647a0SAndy Whitcroft			$realfile = $1;
22572b7ab453SJoe Perches			$realfile =~ s@^([^/]*)/@@ if (!$file);
2258270c49a0SJoe Perches			$in_commit_log = 0;
22591e855726SWolfram Sang
22601e855726SWolfram Sang			$p1_prefix = $1;
2261e2f7aa4bSAndy Whitcroft			if (!$file && $tree && $p1_prefix ne '' &&
2262e2f7aa4bSAndy Whitcroft			    -e "$root/$p1_prefix") {
2263000d1cc1SJoe Perches				WARN("PATCH_PREFIX",
2264000d1cc1SJoe Perches				     "patch prefix '$p1_prefix' exists, appears to be a -p0 patch\n");
22651e855726SWolfram Sang			}
2266773647a0SAndy Whitcroft
2267c1ab3326SAndy Whitcroft			if ($realfile =~ m@^include/asm/@) {
2268000d1cc1SJoe Perches				ERROR("MODIFIED_INCLUDE_ASM",
2269000d1cc1SJoe Perches				      "do not modify files in include/asm, change architecture specific files in include/asm-<architecture>\n" . "$here$rawline\n");
2270773647a0SAndy Whitcroft			}
22712ac73b4fSJoe Perches			$found_file = 1;
22722ac73b4fSJoe Perches		}
22732ac73b4fSJoe Perches
227434d8815fSJoe Perches#make up the handle for any error we report on this line
227534d8815fSJoe Perches		if ($showfile) {
227634d8815fSJoe Perches			$prefix = "$realfile:$realline: "
227734d8815fSJoe Perches		} elsif ($emacs) {
22787d3a9f67SJoe Perches			if ($file) {
22797d3a9f67SJoe Perches				$prefix = "$filename:$realline: ";
22807d3a9f67SJoe Perches			} else {
228134d8815fSJoe Perches				$prefix = "$filename:$linenr: ";
228234d8815fSJoe Perches			}
22837d3a9f67SJoe Perches		}
228434d8815fSJoe Perches
22852ac73b4fSJoe Perches		if ($found_file) {
22867bd7e483SJoe Perches			if ($realfile =~ m@^(?:drivers/net/|net/|drivers/staging/)@) {
22872ac73b4fSJoe Perches				$check = 1;
22882ac73b4fSJoe Perches			} else {
22892ac73b4fSJoe Perches				$check = $check_orig;
22902ac73b4fSJoe Perches			}
2291773647a0SAndy Whitcroft			next;
2292773647a0SAndy Whitcroft		}
2293773647a0SAndy Whitcroft
2294389834b6SRandy Dunlap		$here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
22950a920b5bSAndy Whitcroft
2296c2fdda0dSAndy Whitcroft		my $hereline = "$here\n$rawline\n";
2297c2fdda0dSAndy Whitcroft		my $herecurr = "$here\n$rawline\n";
2298c2fdda0dSAndy Whitcroft		my $hereprev = "$here\n$prevrawline\n$rawline\n";
22990a920b5bSAndy Whitcroft
23006c72ffaaSAndy Whitcroft		$cnt_lines++ if ($realcnt != 0);
23016c72ffaaSAndy Whitcroft
2302e518e9a5SJoe Perches# Check if the commit log has what seems like a diff which can confuse patch
2303e518e9a5SJoe Perches		if ($in_commit_log && !$commit_log_has_diff &&
2304e518e9a5SJoe Perches		    (($line =~ m@^\s+diff\b.*a/[\w/]+@ &&
2305e518e9a5SJoe Perches		      $line =~ m@^\s+diff\b.*a/([\w/]+)\s+b/$1\b@) ||
2306e518e9a5SJoe Perches		     $line =~ m@^\s*(?:\-\-\-\s+a/|\+\+\+\s+b/)@ ||
2307e518e9a5SJoe Perches		     $line =~ m/^\s*\@\@ \-\d+,\d+ \+\d+,\d+ \@\@/)) {
2308e518e9a5SJoe Perches			ERROR("DIFF_IN_COMMIT_MSG",
2309e518e9a5SJoe Perches			      "Avoid using diff content in the commit message - patch(1) might not work\n" . $herecurr);
2310e518e9a5SJoe Perches			$commit_log_has_diff = 1;
2311e518e9a5SJoe Perches		}
2312e518e9a5SJoe Perches
23133bf9a009SRabin Vincent# Check for incorrect file permissions
23143bf9a009SRabin Vincent		if ($line =~ /^new (file )?mode.*[7531]\d{0,2}$/) {
23153bf9a009SRabin Vincent			my $permhere = $here . "FILE: $realfile\n";
231604db4d25SJoe Perches			if ($realfile !~ m@scripts/@ &&
231704db4d25SJoe Perches			    $realfile !~ /\.(py|pl|awk|sh)$/) {
2318000d1cc1SJoe Perches				ERROR("EXECUTE_PERMISSIONS",
2319000d1cc1SJoe Perches				      "do not set execute permissions for source files\n" . $permhere);
23203bf9a009SRabin Vincent			}
23213bf9a009SRabin Vincent		}
23223bf9a009SRabin Vincent
232320112475SJoe Perches# Check the patch for a signoff:
2324d8aaf121SAndy Whitcroft		if ($line =~ /^\s*signed-off-by:/i) {
23254a0df2efSAndy Whitcroft			$signoff++;
232615662b3eSJoe Perches			$in_commit_log = 0;
23270a920b5bSAndy Whitcroft		}
232820112475SJoe Perches
2329e0d975b1SJoe Perches# Check if MAINTAINERS is being updated.  If so, there's probably no need to
2330e0d975b1SJoe Perches# emit the "does MAINTAINERS need updating?" message on file add/move/delete
2331e0d975b1SJoe Perches		if ($line =~ /^\s*MAINTAINERS\s*\|/) {
2332e0d975b1SJoe Perches			$reported_maintainer_file = 1;
2333e0d975b1SJoe Perches		}
2334e0d975b1SJoe Perches
233520112475SJoe Perches# Check signature styles
2336270c49a0SJoe Perches		if (!$in_header_lines &&
2337ce0338dfSJoe Perches		    $line =~ /^(\s*)([a-z0-9_-]+by:|$signature_tags)(\s*)(.*)/i) {
233820112475SJoe Perches			my $space_before = $1;
233920112475SJoe Perches			my $sign_off = $2;
234020112475SJoe Perches			my $space_after = $3;
234120112475SJoe Perches			my $email = $4;
234220112475SJoe Perches			my $ucfirst_sign_off = ucfirst(lc($sign_off));
234320112475SJoe Perches
2344ce0338dfSJoe Perches			if ($sign_off !~ /$signature_tags/) {
2345ce0338dfSJoe Perches				WARN("BAD_SIGN_OFF",
2346ce0338dfSJoe Perches				     "Non-standard signature: $sign_off\n" . $herecurr);
2347ce0338dfSJoe Perches			}
234820112475SJoe Perches			if (defined $space_before && $space_before ne "") {
23493705ce5bSJoe Perches				if (WARN("BAD_SIGN_OFF",
23503705ce5bSJoe Perches					 "Do not use whitespace before $ucfirst_sign_off\n" . $herecurr) &&
23513705ce5bSJoe Perches				    $fix) {
2352194f66fcSJoe Perches					$fixed[$fixlinenr] =
23533705ce5bSJoe Perches					    "$ucfirst_sign_off $email";
23543705ce5bSJoe Perches				}
235520112475SJoe Perches			}
235620112475SJoe Perches			if ($sign_off =~ /-by:$/i && $sign_off ne $ucfirst_sign_off) {
23573705ce5bSJoe Perches				if (WARN("BAD_SIGN_OFF",
23583705ce5bSJoe Perches					 "'$ucfirst_sign_off' is the preferred signature form\n" . $herecurr) &&
23593705ce5bSJoe Perches				    $fix) {
2360194f66fcSJoe Perches					$fixed[$fixlinenr] =
23613705ce5bSJoe Perches					    "$ucfirst_sign_off $email";
23623705ce5bSJoe Perches				}
23633705ce5bSJoe Perches
236420112475SJoe Perches			}
236520112475SJoe Perches			if (!defined $space_after || $space_after ne " ") {
23663705ce5bSJoe Perches				if (WARN("BAD_SIGN_OFF",
23673705ce5bSJoe Perches					 "Use a single space after $ucfirst_sign_off\n" . $herecurr) &&
23683705ce5bSJoe Perches				    $fix) {
2369194f66fcSJoe Perches					$fixed[$fixlinenr] =
23703705ce5bSJoe Perches					    "$ucfirst_sign_off $email";
23713705ce5bSJoe Perches				}
237220112475SJoe Perches			}
237320112475SJoe Perches
237420112475SJoe Perches			my ($email_name, $email_address, $comment) = parse_email($email);
237520112475SJoe Perches			my $suggested_email = format_email(($email_name, $email_address));
237620112475SJoe Perches			if ($suggested_email eq "") {
2377000d1cc1SJoe Perches				ERROR("BAD_SIGN_OFF",
2378000d1cc1SJoe Perches				      "Unrecognized email address: '$email'\n" . $herecurr);
237920112475SJoe Perches			} else {
238020112475SJoe Perches				my $dequoted = $suggested_email;
238120112475SJoe Perches				$dequoted =~ s/^"//;
238220112475SJoe Perches				$dequoted =~ s/" </ </;
238320112475SJoe Perches				# Don't force email to have quotes
238420112475SJoe Perches				# Allow just an angle bracketed address
238520112475SJoe Perches				if ("$dequoted$comment" ne $email &&
238620112475SJoe Perches				    "<$email_address>$comment" ne $email &&
238720112475SJoe Perches				    "$suggested_email$comment" ne $email) {
2388000d1cc1SJoe Perches					WARN("BAD_SIGN_OFF",
2389000d1cc1SJoe Perches					     "email address '$email' might be better as '$suggested_email$comment'\n" . $herecurr);
239020112475SJoe Perches				}
23910a920b5bSAndy Whitcroft			}
23927e51f197SJoe Perches
23937e51f197SJoe Perches# Check for duplicate signatures
23947e51f197SJoe Perches			my $sig_nospace = $line;
23957e51f197SJoe Perches			$sig_nospace =~ s/\s//g;
23967e51f197SJoe Perches			$sig_nospace = lc($sig_nospace);
23977e51f197SJoe Perches			if (defined $signatures{$sig_nospace}) {
23987e51f197SJoe Perches				WARN("BAD_SIGN_OFF",
23997e51f197SJoe Perches				     "Duplicate signature\n" . $herecurr);
24007e51f197SJoe Perches			} else {
24017e51f197SJoe Perches				$signatures{$sig_nospace} = 1;
24027e51f197SJoe Perches			}
24030a920b5bSAndy Whitcroft		}
24040a920b5bSAndy Whitcroft
2405a2fe16b9SJoe Perches# Check email subject for common tools that don't need to be mentioned
2406a2fe16b9SJoe Perches		if ($in_header_lines &&
2407a2fe16b9SJoe Perches		    $line =~ /^Subject:.*\b(?:checkpatch|sparse|smatch)\b[^:]/i) {
2408a2fe16b9SJoe Perches			WARN("EMAIL_SUBJECT",
2409a2fe16b9SJoe Perches			     "A patch subject line should describe the change not the tool that found it\n" . $herecurr);
2410a2fe16b9SJoe Perches		}
2411a2fe16b9SJoe Perches
24129b3189ebSJoe Perches# Check for old stable address
24139b3189ebSJoe Perches		if ($line =~ /^\s*cc:\s*.*<?\bstable\@kernel\.org\b>?.*$/i) {
24149b3189ebSJoe Perches			ERROR("STABLE_ADDRESS",
24159b3189ebSJoe Perches			      "The 'stable' address should be 'stable\@vger.kernel.org'\n" . $herecurr);
24169b3189ebSJoe Perches		}
24179b3189ebSJoe Perches
24187ebd05efSChristopher Covington# Check for unwanted Gerrit info
24197ebd05efSChristopher Covington		if ($in_commit_log && $line =~ /^\s*change-id:/i) {
24207ebd05efSChristopher Covington			ERROR("GERRIT_CHANGE_ID",
24217ebd05efSChristopher Covington			      "Remove Gerrit Change-Id's before submitting upstream.\n" . $herecurr);
24227ebd05efSChristopher Covington		}
24237ebd05efSChristopher Covington
2424369c8dd3SJoe Perches# Check if the commit log is in a possible stack dump
2425369c8dd3SJoe Perches		if ($in_commit_log && !$commit_log_possible_stack_dump &&
2426369c8dd3SJoe Perches		    ($line =~ /^\s*(?:WARNING:|BUG:)/ ||
2427369c8dd3SJoe Perches		     $line =~ /^\s*\[\s*\d+\.\d{6,6}\s*\]/ ||
2428369c8dd3SJoe Perches					# timestamp
2429369c8dd3SJoe Perches		     $line =~ /^\s*\[\<[0-9a-fA-F]{8,}\>\]/)) {
2430369c8dd3SJoe Perches					# stack dump address
2431369c8dd3SJoe Perches			$commit_log_possible_stack_dump = 1;
2432369c8dd3SJoe Perches		}
2433369c8dd3SJoe Perches
24342a076f40SJoe Perches# Check for line lengths > 75 in commit log, warn once
24352a076f40SJoe Perches		if ($in_commit_log && !$commit_log_long_line &&
2436bf4daf12SJoe Perches		    length($line) > 75 &&
2437bf4daf12SJoe Perches		    !($line =~ /^\s*[a-zA-Z0-9_\/\.]+\s+\|\s+\d+/ ||
2438bf4daf12SJoe Perches					# file delta changes
2439bf4daf12SJoe Perches		      $line =~ /^\s*(?:[\w\.\-]+\/)++[\w\.\-]+:/ ||
2440bf4daf12SJoe Perches					# filename then :
2441bf4daf12SJoe Perches		      $line =~ /^\s*(?:Fixes:|Link:)/i ||
2442bf4daf12SJoe Perches					# A Fixes: or Link: line
2443bf4daf12SJoe Perches		      $commit_log_possible_stack_dump)) {
24442a076f40SJoe Perches			WARN("COMMIT_LOG_LONG_LINE",
24452a076f40SJoe Perches			     "Possible unwrapped commit description (prefer a maximum 75 chars per line)\n" . $herecurr);
24462a076f40SJoe Perches			$commit_log_long_line = 1;
24472a076f40SJoe Perches		}
24482a076f40SJoe Perches
2449bf4daf12SJoe Perches# Reset possible stack dump if a blank line is found
2450bf4daf12SJoe Perches		if ($in_commit_log && $commit_log_possible_stack_dump &&
2451bf4daf12SJoe Perches		    $line =~ /^\s*$/) {
2452bf4daf12SJoe Perches			$commit_log_possible_stack_dump = 0;
2453bf4daf12SJoe Perches		}
2454bf4daf12SJoe Perches
24550d7835fcSJoe Perches# Check for git id commit length and improperly formed commit descriptions
2456369c8dd3SJoe Perches		if ($in_commit_log && !$commit_log_possible_stack_dump &&
2457*879be4f3SJoe Perches		    $line !~ /^\s*(?:Link|Patchwork|http|BugLink):/i &&
2458fe043ea1SJoe Perches		    ($line =~ /\bcommit\s+[0-9a-f]{5,}\b/i ||
2459bf4daf12SJoe Perches		     ($line =~ /\b[0-9a-f]{12,40}\b/i &&
2460369c8dd3SJoe Perches		      $line !~ /[\<\[][0-9a-f]{12,40}[\>\]]/i &&
2461bf4daf12SJoe Perches		      $line !~ /\bfixes:\s*[0-9a-f]{12,40}/i))) {
2462fe043ea1SJoe Perches			my $init_char = "c";
2463fe043ea1SJoe Perches			my $orig_commit = "";
24640d7835fcSJoe Perches			my $short = 1;
24650d7835fcSJoe Perches			my $long = 0;
24660d7835fcSJoe Perches			my $case = 1;
24670d7835fcSJoe Perches			my $space = 1;
24680d7835fcSJoe Perches			my $hasdesc = 0;
246919c146a6SJoe Perches			my $hasparens = 0;
24700d7835fcSJoe Perches			my $id = '0123456789ab';
24710d7835fcSJoe Perches			my $orig_desc = "commit description";
24720d7835fcSJoe Perches			my $description = "";
24730d7835fcSJoe Perches
2474fe043ea1SJoe Perches			if ($line =~ /\b(c)ommit\s+([0-9a-f]{5,})\b/i) {
2475fe043ea1SJoe Perches				$init_char = $1;
2476fe043ea1SJoe Perches				$orig_commit = lc($2);
2477fe043ea1SJoe Perches			} elsif ($line =~ /\b([0-9a-f]{12,40})\b/i) {
2478fe043ea1SJoe Perches				$orig_commit = lc($1);
2479fe043ea1SJoe Perches			}
2480fe043ea1SJoe Perches
24810d7835fcSJoe Perches			$short = 0 if ($line =~ /\bcommit\s+[0-9a-f]{12,40}/i);
24820d7835fcSJoe Perches			$long = 1 if ($line =~ /\bcommit\s+[0-9a-f]{41,}/i);
24830d7835fcSJoe Perches			$space = 0 if ($line =~ /\bcommit [0-9a-f]/i);
24840d7835fcSJoe Perches			$case = 0 if ($line =~ /\b[Cc]ommit\s+[0-9a-f]{5,40}[^A-F]/);
24850d7835fcSJoe Perches			if ($line =~ /\bcommit\s+[0-9a-f]{5,}\s+\("([^"]+)"\)/i) {
24860d7835fcSJoe Perches				$orig_desc = $1;
248719c146a6SJoe Perches				$hasparens = 1;
24880d7835fcSJoe Perches			} elsif ($line =~ /\bcommit\s+[0-9a-f]{5,}\s*$/i &&
24890d7835fcSJoe Perches				 defined $rawlines[$linenr] &&
24900d7835fcSJoe Perches				 $rawlines[$linenr] =~ /^\s*\("([^"]+)"\)/) {
24910d7835fcSJoe Perches				$orig_desc = $1;
249219c146a6SJoe Perches				$hasparens = 1;
2493b671fde0SJoe Perches			} elsif ($line =~ /\bcommit\s+[0-9a-f]{5,}\s+\("[^"]+$/i &&
2494b671fde0SJoe Perches				 defined $rawlines[$linenr] &&
2495b671fde0SJoe Perches				 $rawlines[$linenr] =~ /^\s*[^"]+"\)/) {
2496b671fde0SJoe Perches				$line =~ /\bcommit\s+[0-9a-f]{5,}\s+\("([^"]+)$/i;
2497b671fde0SJoe Perches				$orig_desc = $1;
2498b671fde0SJoe Perches				$rawlines[$linenr] =~ /^\s*([^"]+)"\)/;
2499b671fde0SJoe Perches				$orig_desc .= " " . $1;
250019c146a6SJoe Perches				$hasparens = 1;
25010d7835fcSJoe Perches			}
25020d7835fcSJoe Perches
25030d7835fcSJoe Perches			($id, $description) = git_commit_info($orig_commit,
25040d7835fcSJoe Perches							      $id, $orig_desc);
25050d7835fcSJoe Perches
250619c146a6SJoe Perches			if ($short || $long || $space || $case || ($orig_desc ne $description) || !$hasparens) {
2507d311cd44SJoe Perches				ERROR("GIT_COMMIT_ID",
25080d7835fcSJoe Perches				      "Please use git commit description style 'commit <12+ chars of sha1> (\"<title line>\")' - ie: '${init_char}ommit $id (\"$description\")'\n" . $herecurr);
25090d7835fcSJoe Perches			}
2510d311cd44SJoe Perches		}
2511d311cd44SJoe Perches
251213f1937eSJoe Perches# Check for added, moved or deleted files
251313f1937eSJoe Perches		if (!$reported_maintainer_file && !$in_commit_log &&
251413f1937eSJoe Perches		    ($line =~ /^(?:new|deleted) file mode\s*\d+\s*$/ ||
251513f1937eSJoe Perches		     $line =~ /^rename (?:from|to) [\w\/\.\-]+\s*$/ ||
251613f1937eSJoe Perches		     ($line =~ /\{\s*([\w\/\.\-]*)\s*\=\>\s*([\w\/\.\-]*)\s*\}/ &&
251713f1937eSJoe Perches		      (defined($1) || defined($2))))) {
251813f1937eSJoe Perches			$reported_maintainer_file = 1;
251913f1937eSJoe Perches			WARN("FILE_PATH_CHANGES",
252013f1937eSJoe Perches			     "added, moved or deleted file(s), does MAINTAINERS need updating?\n" . $herecurr);
252113f1937eSJoe Perches		}
252213f1937eSJoe Perches
252300df344fSAndy Whitcroft# Check for wrappage within a valid hunk of the file
25248905a67cSAndy Whitcroft		if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) {
2525000d1cc1SJoe Perches			ERROR("CORRUPTED_PATCH",
2526000d1cc1SJoe Perches			      "patch seems to be corrupt (line wrapped?)\n" .
25276c72ffaaSAndy Whitcroft				$herecurr) if (!$emitted_corrupt++);
2528de7d4f0eSAndy Whitcroft		}
2529de7d4f0eSAndy Whitcroft
25306ecd9674SAndy Whitcroft# Check for absolute kernel paths.
25316ecd9674SAndy Whitcroft		if ($tree) {
25326ecd9674SAndy Whitcroft			while ($line =~ m{(?:^|\s)(/\S*)}g) {
25336ecd9674SAndy Whitcroft				my $file = $1;
25346ecd9674SAndy Whitcroft
25356ecd9674SAndy Whitcroft				if ($file =~ m{^(.*?)(?::\d+)+:?$} &&
25366ecd9674SAndy Whitcroft				    check_absolute_file($1, $herecurr)) {
25376ecd9674SAndy Whitcroft					#
25386ecd9674SAndy Whitcroft				} else {
25396ecd9674SAndy Whitcroft					check_absolute_file($file, $herecurr);
25406ecd9674SAndy Whitcroft				}
25416ecd9674SAndy Whitcroft			}
25426ecd9674SAndy Whitcroft		}
25436ecd9674SAndy Whitcroft
2544de7d4f0eSAndy Whitcroft# UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
2545de7d4f0eSAndy Whitcroft		if (($realfile =~ /^$/ || $line =~ /^\+/) &&
2546171ae1a4SAndy Whitcroft		    $rawline !~ m/^$UTF8*$/) {
2547171ae1a4SAndy Whitcroft			my ($utf8_prefix) = ($rawline =~ /^($UTF8*)/);
2548171ae1a4SAndy Whitcroft
2549171ae1a4SAndy Whitcroft			my $blank = copy_spacing($rawline);
2550171ae1a4SAndy Whitcroft			my $ptr = substr($blank, 0, length($utf8_prefix)) . "^";
2551171ae1a4SAndy Whitcroft			my $hereptr = "$hereline$ptr\n";
2552171ae1a4SAndy Whitcroft
255334d99219SJoe Perches			CHK("INVALID_UTF8",
2554000d1cc1SJoe Perches			    "Invalid UTF-8, patch and commit message should be encoded in UTF-8\n" . $hereptr);
255500df344fSAndy Whitcroft		}
25560a920b5bSAndy Whitcroft
255715662b3eSJoe Perches# Check if it's the start of a commit log
255815662b3eSJoe Perches# (not a header line and we haven't seen the patch filename)
255915662b3eSJoe Perches		if ($in_header_lines && $realfile =~ /^$/ &&
256029ee1b0cSJoe Perches		    !($rawline =~ /^\s+\S/ ||
256129ee1b0cSJoe Perches		      $rawline =~ /^(commit\b|from\b|[\w-]+:).*$/i)) {
256215662b3eSJoe Perches			$in_header_lines = 0;
256315662b3eSJoe Perches			$in_commit_log = 1;
256415662b3eSJoe Perches		}
256515662b3eSJoe Perches
2566fa64205dSPasi Savanainen# Check if there is UTF-8 in a commit log when a mail header has explicitly
2567fa64205dSPasi Savanainen# declined it, i.e defined some charset where it is missing.
2568fa64205dSPasi Savanainen		if ($in_header_lines &&
2569fa64205dSPasi Savanainen		    $rawline =~ /^Content-Type:.+charset="(.+)".*$/ &&
2570fa64205dSPasi Savanainen		    $1 !~ /utf-8/i) {
2571fa64205dSPasi Savanainen			$non_utf8_charset = 1;
2572fa64205dSPasi Savanainen		}
2573fa64205dSPasi Savanainen
2574fa64205dSPasi Savanainen		if ($in_commit_log && $non_utf8_charset && $realfile =~ /^$/ &&
257515662b3eSJoe Perches		    $rawline =~ /$NON_ASCII_UTF8/) {
2576fa64205dSPasi Savanainen			WARN("UTF8_BEFORE_PATCH",
257715662b3eSJoe Perches			    "8-bit UTF-8 used in possible commit log\n" . $herecurr);
257815662b3eSJoe Perches		}
257915662b3eSJoe Perches
258066b47b4aSKees Cook# Check for various typo / spelling mistakes
258166d7a382SJoe Perches		if (defined($misspellings) &&
258266d7a382SJoe Perches		    ($in_commit_log || $line =~ /^(?:\+|Subject:)/i)) {
2583ebfd7d62SJoe Perches			while ($rawline =~ /(?:^|[^a-z@])($misspellings)(?:\b|$|[^a-z@])/gi) {
258466b47b4aSKees Cook				my $typo = $1;
258566b47b4aSKees Cook				my $typo_fix = $spelling_fix{lc($typo)};
258666b47b4aSKees Cook				$typo_fix = ucfirst($typo_fix) if ($typo =~ /^[A-Z]/);
258766b47b4aSKees Cook				$typo_fix = uc($typo_fix) if ($typo =~ /^[A-Z]+$/);
258866b47b4aSKees Cook				my $msg_type = \&WARN;
258966b47b4aSKees Cook				$msg_type = \&CHK if ($file);
259066b47b4aSKees Cook				if (&{$msg_type}("TYPO_SPELLING",
259166b47b4aSKees Cook						 "'$typo' may be misspelled - perhaps '$typo_fix'?\n" . $herecurr) &&
259266b47b4aSKees Cook				    $fix) {
259366b47b4aSKees Cook					$fixed[$fixlinenr] =~ s/(^|[^A-Za-z@])($typo)($|[^A-Za-z@])/$1$typo_fix$3/;
259466b47b4aSKees Cook				}
259566b47b4aSKees Cook			}
259666b47b4aSKees Cook		}
259766b47b4aSKees Cook
259830670854SAndy Whitcroft# ignore non-hunk lines and lines being removed
259930670854SAndy Whitcroft		next if (!$hunk_line || $line =~ /^-/);
260000df344fSAndy Whitcroft
26010a920b5bSAndy Whitcroft#trailing whitespace
26029c0ca6f9SAndy Whitcroft		if ($line =~ /^\+.*\015/) {
2603c2fdda0dSAndy Whitcroft			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
2604d5e616fcSJoe Perches			if (ERROR("DOS_LINE_ENDINGS",
2605d5e616fcSJoe Perches				  "DOS line endings\n" . $herevet) &&
2606d5e616fcSJoe Perches			    $fix) {
2607194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/[\s\015]+$//;
2608d5e616fcSJoe Perches			}
2609c2fdda0dSAndy Whitcroft		} elsif ($rawline =~ /^\+.*\S\s+$/ || $rawline =~ /^\+\s+$/) {
2610c2fdda0dSAndy Whitcroft			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
26113705ce5bSJoe Perches			if (ERROR("TRAILING_WHITESPACE",
26123705ce5bSJoe Perches				  "trailing whitespace\n" . $herevet) &&
26133705ce5bSJoe Perches			    $fix) {
2614194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\s+$//;
26153705ce5bSJoe Perches			}
26163705ce5bSJoe Perches
2617d2c0a235SAndy Whitcroft			$rpt_cleaners = 1;
26180a920b5bSAndy Whitcroft		}
26195368df20SAndy Whitcroft
26204783f894SJosh Triplett# Check for FSF mailing addresses.
2621109d8cb2SAlexander Duyck		if ($rawline =~ /\bwrite to the Free/i ||
26223e2232f2SJoe Perches		    $rawline =~ /\b59\s+Temple\s+Pl/i ||
26233e2232f2SJoe Perches		    $rawline =~ /\b51\s+Franklin\s+St/i) {
26244783f894SJosh Triplett			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
26254783f894SJosh Triplett			my $msg_type = \&ERROR;
26264783f894SJosh Triplett			$msg_type = \&CHK if ($file);
26274783f894SJosh Triplett			&{$msg_type}("FSF_MAILING_ADDRESS",
26284783f894SJosh 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)
26294783f894SJosh Triplett		}
26304783f894SJosh Triplett
26313354957aSAndi Kleen# check for Kconfig help text having a real description
26329fe287d7SAndy Whitcroft# Only applies when adding the entry originally, after that we do not have
26339fe287d7SAndy Whitcroft# sufficient context to determine whether it is indeed long enough.
26343354957aSAndi Kleen		if ($realfile =~ /Kconfig/ &&
26358d73e0e7SJoe Perches		    $line =~ /^\+\s*config\s+/) {
26363354957aSAndi Kleen			my $length = 0;
26379fe287d7SAndy Whitcroft			my $cnt = $realcnt;
26389fe287d7SAndy Whitcroft			my $ln = $linenr + 1;
26399fe287d7SAndy Whitcroft			my $f;
2640a1385803SAndy Whitcroft			my $is_start = 0;
26419fe287d7SAndy Whitcroft			my $is_end = 0;
2642a1385803SAndy Whitcroft			for (; $cnt > 0 && defined $lines[$ln - 1]; $ln++) {
26439fe287d7SAndy Whitcroft				$f = $lines[$ln - 1];
26449fe287d7SAndy Whitcroft				$cnt-- if ($lines[$ln - 1] !~ /^-/);
26459fe287d7SAndy Whitcroft				$is_end = $lines[$ln - 1] =~ /^\+/;
26469fe287d7SAndy Whitcroft
26479fe287d7SAndy Whitcroft				next if ($f =~ /^-/);
26488d73e0e7SJoe Perches				last if (!$file && $f =~ /^\@\@/);
2649a1385803SAndy Whitcroft
26508d73e0e7SJoe Perches				if ($lines[$ln - 1] =~ /^\+\s*(?:bool|tristate)\s*\"/) {
2651a1385803SAndy Whitcroft					$is_start = 1;
26528d73e0e7SJoe Perches				} elsif ($lines[$ln - 1] =~ /^\+\s*(?:---)?help(?:---)?$/) {
2653a1385803SAndy Whitcroft					$length = -1;
2654a1385803SAndy Whitcroft				}
2655a1385803SAndy Whitcroft
26569fe287d7SAndy Whitcroft				$f =~ s/^.//;
26573354957aSAndi Kleen				$f =~ s/#.*//;
26583354957aSAndi Kleen				$f =~ s/^\s+//;
26593354957aSAndi Kleen				next if ($f =~ /^$/);
26609fe287d7SAndy Whitcroft				if ($f =~ /^\s*config\s/) {
26619fe287d7SAndy Whitcroft					$is_end = 1;
26629fe287d7SAndy Whitcroft					last;
26639fe287d7SAndy Whitcroft				}
26643354957aSAndi Kleen				$length++;
26653354957aSAndi Kleen			}
266656193274SVadim Bendebury			if ($is_start && $is_end && $length < $min_conf_desc_length) {
2667000d1cc1SJoe Perches				WARN("CONFIG_DESCRIPTION",
266856193274SVadim Bendebury				     "please write a paragraph that describes the config symbol fully\n" . $herecurr);
266956193274SVadim Bendebury			}
2670a1385803SAndy Whitcroft			#print "is_start<$is_start> is_end<$is_end> length<$length>\n";
26713354957aSAndi Kleen		}
26723354957aSAndi Kleen
26731ba8dfd1SKees Cook# discourage the addition of CONFIG_EXPERIMENTAL in Kconfig.
26741ba8dfd1SKees Cook		if ($realfile =~ /Kconfig/ &&
26751ba8dfd1SKees Cook		    $line =~ /.\s*depends on\s+.*\bEXPERIMENTAL\b/) {
26761ba8dfd1SKees Cook			WARN("CONFIG_EXPERIMENTAL",
26771ba8dfd1SKees Cook			     "Use of CONFIG_EXPERIMENTAL is deprecated. For alternatives, see https://lkml.org/lkml/2012/10/23/580\n");
26781ba8dfd1SKees Cook		}
26791ba8dfd1SKees Cook
2680327953e9SChristoph Jaeger# discourage the use of boolean for type definition attributes of Kconfig options
2681327953e9SChristoph Jaeger		if ($realfile =~ /Kconfig/ &&
2682327953e9SChristoph Jaeger		    $line =~ /^\+\s*\bboolean\b/) {
2683327953e9SChristoph Jaeger			WARN("CONFIG_TYPE_BOOLEAN",
2684327953e9SChristoph Jaeger			     "Use of boolean is deprecated, please use bool instead.\n" . $herecurr);
2685327953e9SChristoph Jaeger		}
2686327953e9SChristoph Jaeger
2687c68e5878SArnaud Lacombe		if (($realfile =~ /Makefile.*/ || $realfile =~ /Kbuild.*/) &&
2688c68e5878SArnaud Lacombe		    ($line =~ /\+(EXTRA_[A-Z]+FLAGS).*/)) {
2689c68e5878SArnaud Lacombe			my $flag = $1;
2690c68e5878SArnaud Lacombe			my $replacement = {
2691c68e5878SArnaud Lacombe				'EXTRA_AFLAGS' =>   'asflags-y',
2692c68e5878SArnaud Lacombe				'EXTRA_CFLAGS' =>   'ccflags-y',
2693c68e5878SArnaud Lacombe				'EXTRA_CPPFLAGS' => 'cppflags-y',
2694c68e5878SArnaud Lacombe				'EXTRA_LDFLAGS' =>  'ldflags-y',
2695c68e5878SArnaud Lacombe			};
2696c68e5878SArnaud Lacombe
2697c68e5878SArnaud Lacombe			WARN("DEPRECATED_VARIABLE",
2698c68e5878SArnaud Lacombe			     "Use of $flag is deprecated, please use \`$replacement->{$flag} instead.\n" . $herecurr) if ($replacement->{$flag});
2699c68e5878SArnaud Lacombe		}
2700c68e5878SArnaud Lacombe
2701bff5da43SRob Herring# check for DT compatible documentation
27027dd05b38SFlorian Vaussard		if (defined $root &&
27037dd05b38SFlorian Vaussard			(($realfile =~ /\.dtsi?$/ && $line =~ /^\+\s*compatible\s*=\s*\"/) ||
27047dd05b38SFlorian Vaussard			 ($realfile =~ /\.[ch]$/ && $line =~ /^\+.*\.compatible\s*=\s*\"/))) {
27057dd05b38SFlorian Vaussard
2706bff5da43SRob Herring			my @compats = $rawline =~ /\"([a-zA-Z0-9\-\,\.\+_]+)\"/g;
2707bff5da43SRob Herring
2708cc93319bSFlorian Vaussard			my $dt_path = $root . "/Documentation/devicetree/bindings/";
2709cc93319bSFlorian Vaussard			my $vp_file = $dt_path . "vendor-prefixes.txt";
2710cc93319bSFlorian Vaussard
2711bff5da43SRob Herring			foreach my $compat (@compats) {
2712bff5da43SRob Herring				my $compat2 = $compat;
2713185d566bSRob Herring				$compat2 =~ s/\,[a-zA-Z0-9]*\-/\,<\.\*>\-/;
2714185d566bSRob Herring				my $compat3 = $compat;
2715185d566bSRob Herring				$compat3 =~ s/\,([a-z]*)[0-9]*\-/\,$1<\.\*>\-/;
2716185d566bSRob Herring				`grep -Erq "$compat|$compat2|$compat3" $dt_path`;
2717bff5da43SRob Herring				if ( $? >> 8 ) {
2718bff5da43SRob Herring					WARN("UNDOCUMENTED_DT_STRING",
2719bff5da43SRob Herring					     "DT compatible string \"$compat\" appears un-documented -- check $dt_path\n" . $herecurr);
2720bff5da43SRob Herring				}
2721bff5da43SRob Herring
27224fbf32a6SFlorian Vaussard				next if $compat !~ /^([a-zA-Z0-9\-]+)\,/;
27234fbf32a6SFlorian Vaussard				my $vendor = $1;
2724cc93319bSFlorian Vaussard				`grep -Eq "^$vendor\\b" $vp_file`;
2725bff5da43SRob Herring				if ( $? >> 8 ) {
2726bff5da43SRob Herring					WARN("UNDOCUMENTED_DT_STRING",
2727cc93319bSFlorian Vaussard					     "DT compatible string vendor \"$vendor\" appears un-documented -- check $vp_file\n" . $herecurr);
2728bff5da43SRob Herring				}
2729bff5da43SRob Herring			}
2730bff5da43SRob Herring		}
2731bff5da43SRob Herring
27325368df20SAndy Whitcroft# check we are in a valid source file if not then ignore this hunk
2733de4c924cSGeert Uytterhoeven		next if ($realfile !~ /\.(h|c|s|S|pl|sh|dtsi|dts)$/);
27345368df20SAndy Whitcroft
273547e0c88bSJoe Perches# line length limit (with some exclusions)
273647e0c88bSJoe Perches#
273747e0c88bSJoe Perches# There are a few types of lines that may extend beyond $max_line_length:
273847e0c88bSJoe Perches#	logging functions like pr_info that end in a string
273947e0c88bSJoe Perches#	lines with a single string
274047e0c88bSJoe Perches#	#defines that are a single string
274147e0c88bSJoe Perches#
274247e0c88bSJoe Perches# There are 3 different line length message types:
274347e0c88bSJoe Perches# LONG_LINE_COMMENT	a comment starts before but extends beyond $max_linelength
274447e0c88bSJoe Perches# LONG_LINE_STRING	a string starts before but extends beyond $max_line_length
274547e0c88bSJoe Perches# LONG_LINE		all other lines longer than $max_line_length
274647e0c88bSJoe Perches#
274747e0c88bSJoe Perches# if LONG_LINE is ignored, the other 2 types are also ignored
274847e0c88bSJoe Perches#
274947e0c88bSJoe Perches
2750b4749e96SJoe Perches		if ($line =~ /^\+/ && $length > $max_line_length) {
275147e0c88bSJoe Perches			my $msg_type = "LONG_LINE";
275247e0c88bSJoe Perches
275347e0c88bSJoe Perches			# Check the allowed long line types first
275447e0c88bSJoe Perches
275547e0c88bSJoe Perches			# logging functions that end in a string that starts
275647e0c88bSJoe Perches			# before $max_line_length
275747e0c88bSJoe Perches			if ($line =~ /^\+\s*$logFunctions\s*\(\s*(?:(?:KERN_\S+\s*|[^"]*))?($String\s*(?:|,|\)\s*;)\s*)$/ &&
275847e0c88bSJoe Perches			    length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
275947e0c88bSJoe Perches				$msg_type = "";
276047e0c88bSJoe Perches
276147e0c88bSJoe Perches			# lines with only strings (w/ possible termination)
276247e0c88bSJoe Perches			# #defines with only strings
276347e0c88bSJoe Perches			} elsif ($line =~ /^\+\s*$String\s*(?:\s*|,|\)\s*;)\s*$/ ||
276447e0c88bSJoe Perches				 $line =~ /^\+\s*#\s*define\s+\w+\s+$String$/) {
276547e0c88bSJoe Perches				$msg_type = "";
276647e0c88bSJoe Perches
276747e0c88bSJoe Perches			# Otherwise set the alternate message types
276847e0c88bSJoe Perches
276947e0c88bSJoe Perches			# a comment starts before $max_line_length
277047e0c88bSJoe Perches			} elsif ($line =~ /($;[\s$;]*)$/ &&
277147e0c88bSJoe Perches				 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
277247e0c88bSJoe Perches				$msg_type = "LONG_LINE_COMMENT"
277347e0c88bSJoe Perches
277447e0c88bSJoe Perches			# a quoted string starts before $max_line_length
277547e0c88bSJoe Perches			} elsif ($sline =~ /\s*($String(?:\s*(?:\\|,\s*|\)\s*;\s*))?)$/ &&
277647e0c88bSJoe Perches				 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
277747e0c88bSJoe Perches				$msg_type = "LONG_LINE_STRING"
277847e0c88bSJoe Perches			}
277947e0c88bSJoe Perches
278047e0c88bSJoe Perches			if ($msg_type ne "" &&
278147e0c88bSJoe Perches			    (show_type("LONG_LINE") || show_type($msg_type))) {
278247e0c88bSJoe Perches				WARN($msg_type,
27836cd7f386SJoe Perches				     "line over $max_line_length characters\n" . $herecurr);
27840a920b5bSAndy Whitcroft			}
278547e0c88bSJoe Perches		}
27860a920b5bSAndy Whitcroft
27878905a67cSAndy Whitcroft# check for adding lines without a newline.
27888905a67cSAndy Whitcroft		if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
2789000d1cc1SJoe Perches			WARN("MISSING_EOF_NEWLINE",
2790000d1cc1SJoe Perches			     "adding a line without newline at end of file\n" . $herecurr);
27918905a67cSAndy Whitcroft		}
27928905a67cSAndy Whitcroft
279342e41c54SMike Frysinger# Blackfin: use hi/lo macros
279442e41c54SMike Frysinger		if ($realfile =~ m@arch/blackfin/.*\.S$@) {
279542e41c54SMike Frysinger			if ($line =~ /\.[lL][[:space:]]*=.*&[[:space:]]*0x[fF][fF][fF][fF]/) {
279642e41c54SMike Frysinger				my $herevet = "$here\n" . cat_vet($line) . "\n";
2797000d1cc1SJoe Perches				ERROR("LO_MACRO",
2798000d1cc1SJoe Perches				      "use the LO() macro, not (... & 0xFFFF)\n" . $herevet);
279942e41c54SMike Frysinger			}
280042e41c54SMike Frysinger			if ($line =~ /\.[hH][[:space:]]*=.*>>[[:space:]]*16/) {
280142e41c54SMike Frysinger				my $herevet = "$here\n" . cat_vet($line) . "\n";
2802000d1cc1SJoe Perches				ERROR("HI_MACRO",
2803000d1cc1SJoe Perches				      "use the HI() macro, not (... >> 16)\n" . $herevet);
280442e41c54SMike Frysinger			}
280542e41c54SMike Frysinger		}
280642e41c54SMike Frysinger
2807b9ea10d6SAndy Whitcroft# check we are in a valid source file C or perl if not then ignore this hunk
2808de4c924cSGeert Uytterhoeven		next if ($realfile !~ /\.(h|c|pl|dtsi|dts)$/);
28090a920b5bSAndy Whitcroft
28100a920b5bSAndy Whitcroft# at the beginning of a line any tabs must come first and anything
28110a920b5bSAndy Whitcroft# more than 8 must use tabs.
2812c2fdda0dSAndy Whitcroft		if ($rawline =~ /^\+\s* \t\s*\S/ ||
2813c2fdda0dSAndy Whitcroft		    $rawline =~ /^\+\s*        \s*/) {
2814c2fdda0dSAndy Whitcroft			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
2815d2c0a235SAndy Whitcroft			$rpt_cleaners = 1;
28163705ce5bSJoe Perches			if (ERROR("CODE_INDENT",
28173705ce5bSJoe Perches				  "code indent should use tabs where possible\n" . $herevet) &&
28183705ce5bSJoe Perches			    $fix) {
2819194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/^\+([ \t]+)/"\+" . tabify($1)/e;
28203705ce5bSJoe Perches			}
28210a920b5bSAndy Whitcroft		}
28220a920b5bSAndy Whitcroft
282308e44365SAlberto Panizzo# check for space before tabs.
282408e44365SAlberto Panizzo		if ($rawline =~ /^\+/ && $rawline =~ / \t/) {
282508e44365SAlberto Panizzo			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
28263705ce5bSJoe Perches			if (WARN("SPACE_BEFORE_TAB",
28273705ce5bSJoe Perches				"please, no space before tabs\n" . $herevet) &&
28283705ce5bSJoe Perches			    $fix) {
2829194f66fcSJoe Perches				while ($fixed[$fixlinenr] =~
2830d2207ccbSJoe Perches					   s/(^\+.*) {8,8}\t/$1\t\t/) {}
2831194f66fcSJoe Perches				while ($fixed[$fixlinenr] =~
2832c76f4cb3SJoe Perches					   s/(^\+.*) +\t/$1\t/) {}
28333705ce5bSJoe Perches			}
283408e44365SAlberto Panizzo		}
283508e44365SAlberto Panizzo
2836d1fe9c09SJoe Perches# check for && or || at the start of a line
2837d1fe9c09SJoe Perches		if ($rawline =~ /^\+\s*(&&|\|\|)/) {
2838d1fe9c09SJoe Perches			CHK("LOGICAL_CONTINUATIONS",
2839d1fe9c09SJoe Perches			    "Logical continuations should be on the previous line\n" . $hereprev);
2840d1fe9c09SJoe Perches		}
2841d1fe9c09SJoe Perches
2842a91e8994SJoe Perches# check indentation starts on a tab stop
2843a91e8994SJoe Perches		if ($^V && $^V ge 5.10.0 &&
2844a91e8994SJoe Perches		    $sline =~ /^\+\t+( +)(?:$c90_Keywords\b|\{\s*$|\}\s*(?:else\b|while\b|\s*$))/) {
2845a91e8994SJoe Perches			my $indent = length($1);
2846a91e8994SJoe Perches			if ($indent % 8) {
2847a91e8994SJoe Perches				if (WARN("TABSTOP",
2848a91e8994SJoe Perches					 "Statements should start on a tabstop\n" . $herecurr) &&
2849a91e8994SJoe Perches				    $fix) {
2850a91e8994SJoe Perches					$fixed[$fixlinenr] =~ s@(^\+\t+) +@$1 . "\t" x ($indent/8)@e;
2851a91e8994SJoe Perches				}
2852a91e8994SJoe Perches			}
2853a91e8994SJoe Perches		}
2854a91e8994SJoe Perches
2855d1fe9c09SJoe Perches# check multi-line statement indentation matches previous line
2856d1fe9c09SJoe Perches		if ($^V && $^V ge 5.10.0 &&
285791cb5195SJoe Perches		    $prevline =~ /^\+([ \t]*)((?:$c90_Keywords(?:\s+if)\s*)|(?:$Declare\s*)?(?:$Ident|\(\s*\*\s*$Ident\s*\))\s*|$Ident\s*=\s*$Ident\s*)\(.*(\&\&|\|\||,)\s*$/) {
2858d1fe9c09SJoe Perches			$prevline =~ /^\+(\t*)(.*)$/;
2859d1fe9c09SJoe Perches			my $oldindent = $1;
2860d1fe9c09SJoe Perches			my $rest = $2;
2861d1fe9c09SJoe Perches
2862d1fe9c09SJoe Perches			my $pos = pos_last_openparen($rest);
2863d1fe9c09SJoe Perches			if ($pos >= 0) {
2864b34a26f3SJoe Perches				$line =~ /^(\+| )([ \t]*)/;
2865b34a26f3SJoe Perches				my $newindent = $2;
2866d1fe9c09SJoe Perches
2867d1fe9c09SJoe Perches				my $goodtabindent = $oldindent .
2868d1fe9c09SJoe Perches					"\t" x ($pos / 8) .
2869d1fe9c09SJoe Perches					" "  x ($pos % 8);
2870d1fe9c09SJoe Perches				my $goodspaceindent = $oldindent . " "  x $pos;
2871d1fe9c09SJoe Perches
2872d1fe9c09SJoe Perches				if ($newindent ne $goodtabindent &&
2873d1fe9c09SJoe Perches				    $newindent ne $goodspaceindent) {
28743705ce5bSJoe Perches
28753705ce5bSJoe Perches					if (CHK("PARENTHESIS_ALIGNMENT",
28763705ce5bSJoe Perches						"Alignment should match open parenthesis\n" . $hereprev) &&
28773705ce5bSJoe Perches					    $fix && $line =~ /^\+/) {
2878194f66fcSJoe Perches						$fixed[$fixlinenr] =~
28793705ce5bSJoe Perches						    s/^\+[ \t]*/\+$goodtabindent/;
28803705ce5bSJoe Perches					}
2881d1fe9c09SJoe Perches				}
2882d1fe9c09SJoe Perches			}
2883d1fe9c09SJoe Perches		}
2884d1fe9c09SJoe Perches
28856ab3a970SJoe Perches# check for space after cast like "(int) foo" or "(struct foo) bar"
28866ab3a970SJoe Perches# avoid checking a few false positives:
28876ab3a970SJoe Perches#   "sizeof(<type>)" or "__alignof__(<type>)"
28886ab3a970SJoe Perches#   function pointer declarations like "(*foo)(int) = bar;"
28896ab3a970SJoe Perches#   structure definitions like "(struct foo) { 0 };"
28906ab3a970SJoe Perches#   multiline macros that define functions
28916ab3a970SJoe Perches#   known attributes or the __attribute__ keyword
28926ab3a970SJoe Perches		if ($line =~ /^\+(.*)\(\s*$Type\s*\)([ \t]++)((?![={]|\\$|$Attribute|__attribute__))/ &&
28936ab3a970SJoe Perches		    (!defined($1) || $1 !~ /\b(?:sizeof|__alignof__)\s*$/)) {
28943705ce5bSJoe Perches			if (CHK("SPACING",
2895f27c95dbSJoe Perches				"No space is necessary after a cast\n" . $herecurr) &&
28963705ce5bSJoe Perches			    $fix) {
2897194f66fcSJoe Perches				$fixed[$fixlinenr] =~
2898f27c95dbSJoe Perches				    s/(\(\s*$Type\s*\))[ \t]+/$1/;
28993705ce5bSJoe Perches			}
2900aad4f614SJoe Perches		}
2901aad4f614SJoe Perches
290286406b1cSJoe Perches# Block comment styles
290386406b1cSJoe Perches# Networking with an initial /*
290405880600SJoe Perches		if ($realfile =~ m@^(drivers/net/|net/)@ &&
2905fdb4bcd6SJoe Perches		    $prevrawline =~ /^\+[ \t]*\/\*[ \t]*$/ &&
290685ad978cSJoe Perches		    $rawline =~ /^\+[ \t]*\*/ &&
290785ad978cSJoe Perches		    $realline > 2) {
290805880600SJoe Perches			WARN("NETWORKING_BLOCK_COMMENT_STYLE",
290905880600SJoe Perches			     "networking block comments don't use an empty /* line, use /* Comment...\n" . $hereprev);
291005880600SJoe Perches		}
291105880600SJoe Perches
291286406b1cSJoe Perches# Block comments use * on subsequent lines
291386406b1cSJoe Perches		if ($prevline =~ /$;[ \t]*$/ &&			#ends in comment
291486406b1cSJoe Perches		    $prevrawline =~ /^\+.*?\/\*/ &&		#starting /*
2915a605e32eSJoe Perches		    $prevrawline !~ /\*\/[ \t]*$/ &&		#no trailing */
291661135e96SJoe Perches		    $rawline =~ /^\+/ &&			#line is new
2917a605e32eSJoe Perches		    $rawline !~ /^\+[ \t]*\*/) {		#no leading *
291886406b1cSJoe Perches			WARN("BLOCK_COMMENT_STYLE",
291986406b1cSJoe Perches			     "Block comments use * on subsequent lines\n" . $hereprev);
2920a605e32eSJoe Perches		}
2921a605e32eSJoe Perches
292286406b1cSJoe Perches# Block comments use */ on trailing lines
292386406b1cSJoe Perches		if ($rawline !~ m@^\+[ \t]*\*/[ \t]*$@ &&	#trailing */
2924c24f9f19SJoe Perches		    $rawline !~ m@^\+.*/\*.*\*/[ \t]*$@ &&	#inline /*...*/
2925c24f9f19SJoe Perches		    $rawline !~ m@^\+.*\*{2,}/[ \t]*$@ &&	#trailing **/
2926c24f9f19SJoe Perches		    $rawline =~ m@^\+[ \t]*.+\*\/[ \t]*$@) {	#non blank */
292786406b1cSJoe Perches			WARN("BLOCK_COMMENT_STYLE",
292886406b1cSJoe Perches			     "Block comments use a trailing */ on a separate line\n" . $herecurr);
292905880600SJoe Perches		}
293005880600SJoe Perches
29317f619191SJoe Perches# check for missing blank lines after struct/union declarations
29327f619191SJoe Perches# with exceptions for various attributes and macros
29337f619191SJoe Perches		if ($prevline =~ /^[\+ ]};?\s*$/ &&
29347f619191SJoe Perches		    $line =~ /^\+/ &&
29357f619191SJoe Perches		    !($line =~ /^\+\s*$/ ||
29367f619191SJoe Perches		      $line =~ /^\+\s*EXPORT_SYMBOL/ ||
29377f619191SJoe Perches		      $line =~ /^\+\s*MODULE_/i ||
29387f619191SJoe Perches		      $line =~ /^\+\s*\#\s*(?:end|elif|else)/ ||
29397f619191SJoe Perches		      $line =~ /^\+[a-z_]*init/ ||
29407f619191SJoe Perches		      $line =~ /^\+\s*(?:static\s+)?[A-Z_]*ATTR/ ||
29417f619191SJoe Perches		      $line =~ /^\+\s*DECLARE/ ||
29427f619191SJoe Perches		      $line =~ /^\+\s*__setup/)) {
2943d752fcc8SJoe Perches			if (CHK("LINE_SPACING",
2944d752fcc8SJoe Perches				"Please use a blank line after function/struct/union/enum declarations\n" . $hereprev) &&
2945d752fcc8SJoe Perches			    $fix) {
2946f2d7e4d4SJoe Perches				fix_insert_line($fixlinenr, "\+");
2947d752fcc8SJoe Perches			}
29487f619191SJoe Perches		}
29497f619191SJoe Perches
2950365dd4eaSJoe Perches# check for multiple consecutive blank lines
2951365dd4eaSJoe Perches		if ($prevline =~ /^[\+ ]\s*$/ &&
2952365dd4eaSJoe Perches		    $line =~ /^\+\s*$/ &&
2953365dd4eaSJoe Perches		    $last_blank_line != ($linenr - 1)) {
2954d752fcc8SJoe Perches			if (CHK("LINE_SPACING",
2955d752fcc8SJoe Perches				"Please don't use multiple blank lines\n" . $hereprev) &&
2956d752fcc8SJoe Perches			    $fix) {
2957f2d7e4d4SJoe Perches				fix_delete_line($fixlinenr, $rawline);
2958d752fcc8SJoe Perches			}
2959d752fcc8SJoe Perches
2960365dd4eaSJoe Perches			$last_blank_line = $linenr;
2961365dd4eaSJoe Perches		}
2962365dd4eaSJoe Perches
29633b617e3bSJoe Perches# check for missing blank lines after declarations
29643f7bac03SJoe Perches		if ($sline =~ /^\+\s+\S/ &&			#Not at char 1
29653f7bac03SJoe Perches			# actual declarations
29663f7bac03SJoe Perches		    ($prevline =~ /^\+\s+$Declare\s*$Ident\s*[=,;:\[]/ ||
29675a4e1fd3SJoe Perches			# function pointer declarations
29685a4e1fd3SJoe Perches		     $prevline =~ /^\+\s+$Declare\s*\(\s*\*\s*$Ident\s*\)\s*[=,;:\[\(]/ ||
29693f7bac03SJoe Perches			# foo bar; where foo is some local typedef or #define
29703f7bac03SJoe Perches		     $prevline =~ /^\+\s+$Ident(?:\s+|\s*\*\s*)$Ident\s*[=,;\[]/ ||
29713f7bac03SJoe Perches			# known declaration macros
29723f7bac03SJoe Perches		     $prevline =~ /^\+\s+$declaration_macros/) &&
29733f7bac03SJoe Perches			# for "else if" which can look like "$Ident $Ident"
29743f7bac03SJoe Perches		    !($prevline =~ /^\+\s+$c90_Keywords\b/ ||
29753f7bac03SJoe Perches			# other possible extensions of declaration lines
29763f7bac03SJoe Perches		      $prevline =~ /(?:$Compare|$Assignment|$Operators)\s*$/ ||
29773f7bac03SJoe Perches			# not starting a section or a macro "\" extended line
29783f7bac03SJoe Perches		      $prevline =~ /(?:\{\s*|\\)$/) &&
29793f7bac03SJoe Perches			# looks like a declaration
29803f7bac03SJoe Perches		    !($sline =~ /^\+\s+$Declare\s*$Ident\s*[=,;:\[]/ ||
29815a4e1fd3SJoe Perches			# function pointer declarations
29825a4e1fd3SJoe Perches		      $sline =~ /^\+\s+$Declare\s*\(\s*\*\s*$Ident\s*\)\s*[=,;:\[\(]/ ||
29833f7bac03SJoe Perches			# foo bar; where foo is some local typedef or #define
29843f7bac03SJoe Perches		      $sline =~ /^\+\s+$Ident(?:\s+|\s*\*\s*)$Ident\s*[=,;\[]/ ||
29853f7bac03SJoe Perches			# known declaration macros
29863f7bac03SJoe Perches		      $sline =~ /^\+\s+$declaration_macros/ ||
29873f7bac03SJoe Perches			# start of struct or union or enum
29883b617e3bSJoe Perches		      $sline =~ /^\+\s+(?:union|struct|enum|typedef)\b/ ||
29893f7bac03SJoe Perches			# start or end of block or continuation of declaration
29903f7bac03SJoe Perches		      $sline =~ /^\+\s+(?:$|[\{\}\.\#\"\?\:\(\[])/ ||
29913f7bac03SJoe Perches			# bitfield continuation
29923f7bac03SJoe Perches		      $sline =~ /^\+\s+$Ident\s*:\s*\d+\s*[,;]/ ||
29933f7bac03SJoe Perches			# other possible extensions of declaration lines
29943f7bac03SJoe Perches		      $sline =~ /^\+\s+\(?\s*(?:$Compare|$Assignment|$Operators)/) &&
29953f7bac03SJoe Perches			# indentation of previous and current line are the same
29963f7bac03SJoe Perches		    (($prevline =~ /\+(\s+)\S/) && $sline =~ /^\+$1\S/)) {
2997d752fcc8SJoe Perches			if (WARN("LINE_SPACING",
2998d752fcc8SJoe Perches				 "Missing a blank line after declarations\n" . $hereprev) &&
2999d752fcc8SJoe Perches			    $fix) {
3000f2d7e4d4SJoe Perches				fix_insert_line($fixlinenr, "\+");
3001d752fcc8SJoe Perches			}
30023b617e3bSJoe Perches		}
30033b617e3bSJoe Perches
30045f7ddae6SRaffaele Recalcati# check for spaces at the beginning of a line.
30056b4c5bebSAndy Whitcroft# Exceptions:
30066b4c5bebSAndy Whitcroft#  1) within comments
30076b4c5bebSAndy Whitcroft#  2) indented preprocessor commands
30086b4c5bebSAndy Whitcroft#  3) hanging labels
30093705ce5bSJoe Perches		if ($rawline =~ /^\+ / && $line !~ /^\+ *(?:$;|#|$Ident:)/)  {
30105f7ddae6SRaffaele Recalcati			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
30113705ce5bSJoe Perches			if (WARN("LEADING_SPACE",
30123705ce5bSJoe Perches				 "please, no spaces at the start of a line\n" . $herevet) &&
30133705ce5bSJoe Perches			    $fix) {
3014194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/^\+([ \t]+)/"\+" . tabify($1)/e;
30153705ce5bSJoe Perches			}
30165f7ddae6SRaffaele Recalcati		}
30175f7ddae6SRaffaele Recalcati
3018b9ea10d6SAndy Whitcroft# check we are in a valid C source file if not then ignore this hunk
3019b9ea10d6SAndy Whitcroft		next if ($realfile !~ /\.(h|c)$/);
3020b9ea10d6SAndy Whitcroft
3021032a4c0fSJoe Perches# check indentation of any line with a bare else
3022840080a0SJoe Perches# (but not if it is a multiple line "if (foo) return bar; else return baz;")
3023032a4c0fSJoe Perches# if the previous line is a break or return and is indented 1 tab more...
3024032a4c0fSJoe Perches		if ($sline =~ /^\+([\t]+)(?:}[ \t]*)?else(?:[ \t]*{)?\s*$/) {
3025032a4c0fSJoe Perches			my $tabs = length($1) + 1;
3026840080a0SJoe Perches			if ($prevline =~ /^\+\t{$tabs,$tabs}break\b/ ||
3027840080a0SJoe Perches			    ($prevline =~ /^\+\t{$tabs,$tabs}return\b/ &&
3028840080a0SJoe Perches			     defined $lines[$linenr] &&
3029840080a0SJoe Perches			     $lines[$linenr] !~ /^[ \+]\t{$tabs,$tabs}return/)) {
3030032a4c0fSJoe Perches				WARN("UNNECESSARY_ELSE",
3031032a4c0fSJoe Perches				     "else is not generally useful after a break or return\n" . $hereprev);
3032032a4c0fSJoe Perches			}
3033032a4c0fSJoe Perches		}
3034032a4c0fSJoe Perches
3035c00df19aSJoe Perches# check indentation of a line with a break;
3036c00df19aSJoe Perches# if the previous line is a goto or return and is indented the same # of tabs
3037c00df19aSJoe Perches		if ($sline =~ /^\+([\t]+)break\s*;\s*$/) {
3038c00df19aSJoe Perches			my $tabs = $1;
3039c00df19aSJoe Perches			if ($prevline =~ /^\+$tabs(?:goto|return)\b/) {
3040c00df19aSJoe Perches				WARN("UNNECESSARY_BREAK",
3041c00df19aSJoe Perches				     "break is not useful after a goto or return\n" . $hereprev);
3042c00df19aSJoe Perches			}
3043c00df19aSJoe Perches		}
3044c00df19aSJoe Perches
30451ba8dfd1SKees Cook# discourage the addition of CONFIG_EXPERIMENTAL in #if(def).
30461ba8dfd1SKees Cook		if ($line =~ /^\+\s*\#\s*if.*\bCONFIG_EXPERIMENTAL\b/) {
30471ba8dfd1SKees Cook			WARN("CONFIG_EXPERIMENTAL",
30481ba8dfd1SKees Cook			     "Use of CONFIG_EXPERIMENTAL is deprecated. For alternatives, see https://lkml.org/lkml/2012/10/23/580\n");
30491ba8dfd1SKees Cook		}
30501ba8dfd1SKees Cook
3051c2fdda0dSAndy Whitcroft# check for RCS/CVS revision markers
3052cf655043SAndy Whitcroft		if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) {
3053000d1cc1SJoe Perches			WARN("CVS_KEYWORD",
3054000d1cc1SJoe Perches			     "CVS style keyword markers, these will _not_ be updated\n". $herecurr);
3055c2fdda0dSAndy Whitcroft		}
305622f2a2efSAndy Whitcroft
305742e41c54SMike Frysinger# Blackfin: don't use __builtin_bfin_[cs]sync
305842e41c54SMike Frysinger		if ($line =~ /__builtin_bfin_csync/) {
305942e41c54SMike Frysinger			my $herevet = "$here\n" . cat_vet($line) . "\n";
3060000d1cc1SJoe Perches			ERROR("CSYNC",
3061000d1cc1SJoe Perches			      "use the CSYNC() macro in asm/blackfin.h\n" . $herevet);
306242e41c54SMike Frysinger		}
306342e41c54SMike Frysinger		if ($line =~ /__builtin_bfin_ssync/) {
306442e41c54SMike Frysinger			my $herevet = "$here\n" . cat_vet($line) . "\n";
3065000d1cc1SJoe Perches			ERROR("SSYNC",
3066000d1cc1SJoe Perches			      "use the SSYNC() macro in asm/blackfin.h\n" . $herevet);
306742e41c54SMike Frysinger		}
306842e41c54SMike Frysinger
306956e77d70SJoe Perches# check for old HOTPLUG __dev<foo> section markings
307056e77d70SJoe Perches		if ($line =~ /\b(__dev(init|exit)(data|const|))\b/) {
307156e77d70SJoe Perches			WARN("HOTPLUG_SECTION",
307256e77d70SJoe Perches			     "Using $1 is unnecessary\n" . $herecurr);
307356e77d70SJoe Perches		}
307456e77d70SJoe Perches
30759c0ca6f9SAndy Whitcroft# Check for potential 'bare' types
30762b474a1aSAndy Whitcroft		my ($stat, $cond, $line_nr_next, $remain_next, $off_next,
30772b474a1aSAndy Whitcroft		    $realline_next);
30783e469cdcSAndy Whitcroft#print "LINE<$line>\n";
30793e469cdcSAndy Whitcroft		if ($linenr >= $suppress_statement &&
30801b5539b1SJoe Perches		    $realcnt && $sline =~ /.\s*\S/) {
3081170d3a22SAndy Whitcroft			($stat, $cond, $line_nr_next, $remain_next, $off_next) =
3082f5fe35ddSAndy Whitcroft				ctx_statement_block($linenr, $realcnt, 0);
3083171ae1a4SAndy Whitcroft			$stat =~ s/\n./\n /g;
3084171ae1a4SAndy Whitcroft			$cond =~ s/\n./\n /g;
3085171ae1a4SAndy Whitcroft
30863e469cdcSAndy Whitcroft#print "linenr<$linenr> <$stat>\n";
30873e469cdcSAndy Whitcroft			# If this statement has no statement boundaries within
30883e469cdcSAndy Whitcroft			# it there is no point in retrying a statement scan
30893e469cdcSAndy Whitcroft			# until we hit end of it.
30903e469cdcSAndy Whitcroft			my $frag = $stat; $frag =~ s/;+\s*$//;
30913e469cdcSAndy Whitcroft			if ($frag !~ /(?:{|;)/) {
30923e469cdcSAndy Whitcroft#print "skip<$line_nr_next>\n";
30933e469cdcSAndy Whitcroft				$suppress_statement = $line_nr_next;
30943e469cdcSAndy Whitcroft			}
3095f74bd194SAndy Whitcroft
30962b474a1aSAndy Whitcroft			# Find the real next line.
30972b474a1aSAndy Whitcroft			$realline_next = $line_nr_next;
30982b474a1aSAndy Whitcroft			if (defined $realline_next &&
30992b474a1aSAndy Whitcroft			    (!defined $lines[$realline_next - 1] ||
31002b474a1aSAndy Whitcroft			     substr($lines[$realline_next - 1], $off_next) =~ /^\s*$/)) {
31012b474a1aSAndy Whitcroft				$realline_next++;
31022b474a1aSAndy Whitcroft			}
31032b474a1aSAndy Whitcroft
3104171ae1a4SAndy Whitcroft			my $s = $stat;
3105171ae1a4SAndy Whitcroft			$s =~ s/{.*$//s;
3106cf655043SAndy Whitcroft
3107c2fdda0dSAndy Whitcroft			# Ignore goto labels.
3108171ae1a4SAndy Whitcroft			if ($s =~ /$Ident:\*$/s) {
3109c2fdda0dSAndy Whitcroft
3110c2fdda0dSAndy Whitcroft			# Ignore functions being called
3111171ae1a4SAndy Whitcroft			} elsif ($s =~ /^.\s*$Ident\s*\(/s) {
3112c2fdda0dSAndy Whitcroft
3113463f2864SAndy Whitcroft			} elsif ($s =~ /^.\s*else\b/s) {
3114463f2864SAndy Whitcroft
3115c45dcabdSAndy Whitcroft			# declarations always start with types
3116d2506586SAndy 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) {
3117c45dcabdSAndy Whitcroft				my $type = $1;
3118c45dcabdSAndy Whitcroft				$type =~ s/\s+/ /g;
3119c45dcabdSAndy Whitcroft				possible($type, "A:" . $s);
3120c45dcabdSAndy Whitcroft
31216c72ffaaSAndy Whitcroft			# definitions in global scope can only start with types
3122a6a84062SAndy Whitcroft			} elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b\s*(?!:)/s) {
3123c45dcabdSAndy Whitcroft				possible($1, "B:" . $s);
3124c2fdda0dSAndy Whitcroft			}
31258905a67cSAndy Whitcroft
31266c72ffaaSAndy Whitcroft			# any (foo ... *) is a pointer cast, and foo is a type
312765863862SAndy Whitcroft			while ($s =~ /\(($Ident)(?:\s+$Sparse)*[\s\*]+\s*\)/sg) {
3128c45dcabdSAndy Whitcroft				possible($1, "C:" . $s);
31299c0ca6f9SAndy Whitcroft			}
31308905a67cSAndy Whitcroft
31318905a67cSAndy Whitcroft			# Check for any sort of function declaration.
31328905a67cSAndy Whitcroft			# int foo(something bar, other baz);
31338905a67cSAndy Whitcroft			# void (*store_gdt)(x86_descr_ptr *);
3134171ae1a4SAndy Whitcroft			if ($prev_values eq 'E' && $s =~ /^(.(?:typedef\s*)?(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*(?:\b$Ident|\(\*\s*$Ident\))\s*)\(/s) {
31358905a67cSAndy Whitcroft				my ($name_len) = length($1);
31368905a67cSAndy Whitcroft
3137cf655043SAndy Whitcroft				my $ctx = $s;
3138773647a0SAndy Whitcroft				substr($ctx, 0, $name_len + 1, '');
31398905a67cSAndy Whitcroft				$ctx =~ s/\)[^\)]*$//;
3140cf655043SAndy Whitcroft
31418905a67cSAndy Whitcroft				for my $arg (split(/\s*,\s*/, $ctx)) {
3142c45dcabdSAndy Whitcroft					if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$/s) {
31438905a67cSAndy Whitcroft
3144c45dcabdSAndy Whitcroft						possible($1, "D:" . $s);
31458905a67cSAndy Whitcroft					}
31468905a67cSAndy Whitcroft				}
31478905a67cSAndy Whitcroft			}
31488905a67cSAndy Whitcroft
31499c0ca6f9SAndy Whitcroft		}
31509c0ca6f9SAndy Whitcroft
315100df344fSAndy Whitcroft#
315200df344fSAndy Whitcroft# Checks which may be anchored in the context.
315300df344fSAndy Whitcroft#
315400df344fSAndy Whitcroft
315500df344fSAndy Whitcroft# Check for switch () and associated case and default
315600df344fSAndy Whitcroft# statements should be at the same indent.
315700df344fSAndy Whitcroft		if ($line=~/\bswitch\s*\(.*\)/) {
315800df344fSAndy Whitcroft			my $err = '';
315900df344fSAndy Whitcroft			my $sep = '';
316000df344fSAndy Whitcroft			my @ctx = ctx_block_outer($linenr, $realcnt);
316100df344fSAndy Whitcroft			shift(@ctx);
316200df344fSAndy Whitcroft			for my $ctx (@ctx) {
316300df344fSAndy Whitcroft				my ($clen, $cindent) = line_stats($ctx);
316400df344fSAndy Whitcroft				if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
316500df344fSAndy Whitcroft							$indent != $cindent) {
316600df344fSAndy Whitcroft					$err .= "$sep$ctx\n";
316700df344fSAndy Whitcroft					$sep = '';
316800df344fSAndy Whitcroft				} else {
316900df344fSAndy Whitcroft					$sep = "[...]\n";
317000df344fSAndy Whitcroft				}
317100df344fSAndy Whitcroft			}
317200df344fSAndy Whitcroft			if ($err ne '') {
3173000d1cc1SJoe Perches				ERROR("SWITCH_CASE_INDENT_LEVEL",
3174000d1cc1SJoe Perches				      "switch and case should be at the same indent\n$hereline$err");
3175de7d4f0eSAndy Whitcroft			}
3176de7d4f0eSAndy Whitcroft		}
3177de7d4f0eSAndy Whitcroft
3178de7d4f0eSAndy Whitcroft# if/while/etc brace do not go on next line, unless defining a do while loop,
3179de7d4f0eSAndy Whitcroft# or if that brace on the next line is for something else
31800fe3dc2bSJoe Perches		if ($line =~ /(.*)\b((?:if|while|for|switch|(?:[a-z_]+|)for_each[a-z_]+)\s*\(|do\b|else\b)/ && $line !~ /^.\s*\#/) {
3181773647a0SAndy Whitcroft			my $pre_ctx = "$1$2";
3182773647a0SAndy Whitcroft
31839c0ca6f9SAndy Whitcroft			my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0);
31848eef05ddSJoe Perches
31858eef05ddSJoe Perches			if ($line =~ /^\+\t{6,}/) {
31868eef05ddSJoe Perches				WARN("DEEP_INDENTATION",
31878eef05ddSJoe Perches				     "Too many leading tabs - consider code refactoring\n" . $herecurr);
31888eef05ddSJoe Perches			}
31898eef05ddSJoe Perches
3190de7d4f0eSAndy Whitcroft			my $ctx_cnt = $realcnt - $#ctx - 1;
3191de7d4f0eSAndy Whitcroft			my $ctx = join("\n", @ctx);
3192de7d4f0eSAndy Whitcroft
3193548596d5SAndy Whitcroft			my $ctx_ln = $linenr;
3194548596d5SAndy Whitcroft			my $ctx_skip = $realcnt;
3195de7d4f0eSAndy Whitcroft
3196548596d5SAndy Whitcroft			while ($ctx_skip > $ctx_cnt || ($ctx_skip == $ctx_cnt &&
3197548596d5SAndy Whitcroft					defined $lines[$ctx_ln - 1] &&
3198548596d5SAndy Whitcroft					$lines[$ctx_ln - 1] =~ /^-/)) {
3199548596d5SAndy Whitcroft				##print "SKIP<$ctx_skip> CNT<$ctx_cnt>\n";
3200548596d5SAndy Whitcroft				$ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/);
3201773647a0SAndy Whitcroft				$ctx_ln++;
3202773647a0SAndy Whitcroft			}
3203548596d5SAndy Whitcroft
320453210168SAndy Whitcroft			#print "realcnt<$realcnt> ctx_cnt<$ctx_cnt>\n";
320553210168SAndy Whitcroft			#print "pre<$pre_ctx>\nline<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>\n";
3206773647a0SAndy Whitcroft
3207773647a0SAndy Whitcroft			if ($ctx !~ /{\s*/ && defined($lines[$ctx_ln - 1]) && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
3208000d1cc1SJoe Perches				ERROR("OPEN_BRACE",
3209000d1cc1SJoe Perches				      "that open brace { should be on the previous line\n" .
321001464f30SAndy Whitcroft					"$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
321100df344fSAndy Whitcroft			}
3212773647a0SAndy Whitcroft			if ($level == 0 && $pre_ctx !~ /}\s*while\s*\($/ &&
3213773647a0SAndy Whitcroft			    $ctx =~ /\)\s*\;\s*$/ &&
3214773647a0SAndy Whitcroft			    defined $lines[$ctx_ln - 1])
3215773647a0SAndy Whitcroft			{
32169c0ca6f9SAndy Whitcroft				my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
32179c0ca6f9SAndy Whitcroft				if ($nindent > $indent) {
3218000d1cc1SJoe Perches					WARN("TRAILING_SEMICOLON",
3219000d1cc1SJoe Perches					     "trailing semicolon indicates no statements, indent implies otherwise\n" .
322001464f30SAndy Whitcroft						"$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
32219c0ca6f9SAndy Whitcroft				}
32229c0ca6f9SAndy Whitcroft			}
322300df344fSAndy Whitcroft		}
322400df344fSAndy Whitcroft
32254d001e4dSAndy Whitcroft# Check relative indent for conditionals and blocks.
32260fe3dc2bSJoe Perches		if ($line =~ /\b(?:(?:if|while|for|(?:[a-z_]+|)for_each[a-z_]+)\s*\(|do\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) {
32273e469cdcSAndy Whitcroft			($stat, $cond, $line_nr_next, $remain_next, $off_next) =
32283e469cdcSAndy Whitcroft				ctx_statement_block($linenr, $realcnt, 0)
32293e469cdcSAndy Whitcroft					if (!defined $stat);
32304d001e4dSAndy Whitcroft			my ($s, $c) = ($stat, $cond);
32314d001e4dSAndy Whitcroft
32324d001e4dSAndy Whitcroft			substr($s, 0, length($c), '');
32334d001e4dSAndy Whitcroft
32349f5af480SJoe Perches			# remove inline comments
32359f5af480SJoe Perches			$s =~ s/$;/ /g;
32369f5af480SJoe Perches			$c =~ s/$;/ /g;
32374d001e4dSAndy Whitcroft
32384d001e4dSAndy Whitcroft			# Find out how long the conditional actually is.
32396f779c18SAndy Whitcroft			my @newlines = ($c =~ /\n/gs);
32406f779c18SAndy Whitcroft			my $cond_lines = 1 + $#newlines;
32414d001e4dSAndy Whitcroft
32429f5af480SJoe Perches			# Make sure we remove the line prefixes as we have
32439f5af480SJoe Perches			# none on the first line, and are going to readd them
32449f5af480SJoe Perches			# where necessary.
32459f5af480SJoe Perches			$s =~ s/\n./\n/gs;
32469f5af480SJoe Perches			while ($s =~ /\n\s+\\\n/) {
32479f5af480SJoe Perches				$cond_lines += $s =~ s/\n\s+\\\n/\n/g;
32489f5af480SJoe Perches			}
32499f5af480SJoe Perches
32504d001e4dSAndy Whitcroft			# We want to check the first line inside the block
32514d001e4dSAndy Whitcroft			# starting at the end of the conditional, so remove:
32524d001e4dSAndy Whitcroft			#  1) any blank line termination
32534d001e4dSAndy Whitcroft			#  2) any opening brace { on end of the line
32544d001e4dSAndy Whitcroft			#  3) any do (...) {
32554d001e4dSAndy Whitcroft			my $continuation = 0;
32564d001e4dSAndy Whitcroft			my $check = 0;
32574d001e4dSAndy Whitcroft			$s =~ s/^.*\bdo\b//;
32584d001e4dSAndy Whitcroft			$s =~ s/^\s*{//;
32594d001e4dSAndy Whitcroft			if ($s =~ s/^\s*\\//) {
32604d001e4dSAndy Whitcroft				$continuation = 1;
32614d001e4dSAndy Whitcroft			}
32629bd49efeSAndy Whitcroft			if ($s =~ s/^\s*?\n//) {
32634d001e4dSAndy Whitcroft				$check = 1;
32644d001e4dSAndy Whitcroft				$cond_lines++;
32654d001e4dSAndy Whitcroft			}
32664d001e4dSAndy Whitcroft
32674d001e4dSAndy Whitcroft			# Also ignore a loop construct at the end of a
32684d001e4dSAndy Whitcroft			# preprocessor statement.
32694d001e4dSAndy Whitcroft			if (($prevline =~ /^.\s*#\s*define\s/ ||
32704d001e4dSAndy Whitcroft			    $prevline =~ /\\\s*$/) && $continuation == 0) {
32714d001e4dSAndy Whitcroft				$check = 0;
32724d001e4dSAndy Whitcroft			}
32734d001e4dSAndy Whitcroft
32749bd49efeSAndy Whitcroft			my $cond_ptr = -1;
3275740504c6SAndy Whitcroft			$continuation = 0;
32769bd49efeSAndy Whitcroft			while ($cond_ptr != $cond_lines) {
32779bd49efeSAndy Whitcroft				$cond_ptr = $cond_lines;
32784d001e4dSAndy Whitcroft
3279f16fa28fSAndy Whitcroft				# If we see an #else/#elif then the code
3280f16fa28fSAndy Whitcroft				# is not linear.
3281f16fa28fSAndy Whitcroft				if ($s =~ /^\s*\#\s*(?:else|elif)/) {
3282f16fa28fSAndy Whitcroft					$check = 0;
3283f16fa28fSAndy Whitcroft				}
3284f16fa28fSAndy Whitcroft
32859bd49efeSAndy Whitcroft				# Ignore:
32869bd49efeSAndy Whitcroft				#  1) blank lines, they should be at 0,
32879bd49efeSAndy Whitcroft				#  2) preprocessor lines, and
32889bd49efeSAndy Whitcroft				#  3) labels.
3289740504c6SAndy Whitcroft				if ($continuation ||
3290740504c6SAndy Whitcroft				    $s =~ /^\s*?\n/ ||
32919bd49efeSAndy Whitcroft				    $s =~ /^\s*#\s*?/ ||
32929bd49efeSAndy Whitcroft				    $s =~ /^\s*$Ident\s*:/) {
3293740504c6SAndy Whitcroft					$continuation = ($s =~ /^.*?\\\n/) ? 1 : 0;
329430dad6ebSAndy Whitcroft					if ($s =~ s/^.*?\n//) {
32959bd49efeSAndy Whitcroft						$cond_lines++;
32969bd49efeSAndy Whitcroft					}
32974d001e4dSAndy Whitcroft				}
329830dad6ebSAndy Whitcroft			}
32994d001e4dSAndy Whitcroft
33004d001e4dSAndy Whitcroft			my (undef, $sindent) = line_stats("+" . $s);
33014d001e4dSAndy Whitcroft			my $stat_real = raw_line($linenr, $cond_lines);
33024d001e4dSAndy Whitcroft
33034d001e4dSAndy Whitcroft			# Check if either of these lines are modified, else
33044d001e4dSAndy Whitcroft			# this is not this patch's fault.
33054d001e4dSAndy Whitcroft			if (!defined($stat_real) ||
33064d001e4dSAndy Whitcroft			    $stat !~ /^\+/ && $stat_real !~ /^\+/) {
33074d001e4dSAndy Whitcroft				$check = 0;
33084d001e4dSAndy Whitcroft			}
33094d001e4dSAndy Whitcroft			if (defined($stat_real) && $cond_lines > 1) {
33104d001e4dSAndy Whitcroft				$stat_real = "[...]\n$stat_real";
33114d001e4dSAndy Whitcroft			}
33124d001e4dSAndy Whitcroft
33139bd49efeSAndy 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";
33144d001e4dSAndy Whitcroft
33159f5af480SJoe Perches			if ($check && $s ne '' &&
33169f5af480SJoe Perches			    (($sindent % 8) != 0 ||
33179f5af480SJoe Perches			     ($sindent < $indent) ||
33189f5af480SJoe Perches			     ($sindent > $indent + 8))) {
3319000d1cc1SJoe Perches				WARN("SUSPECT_CODE_INDENT",
3320000d1cc1SJoe Perches				     "suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n");
33214d001e4dSAndy Whitcroft			}
33224d001e4dSAndy Whitcroft		}
33234d001e4dSAndy Whitcroft
33246c72ffaaSAndy Whitcroft		# Track the 'values' across context and added lines.
33256c72ffaaSAndy Whitcroft		my $opline = $line; $opline =~ s/^./ /;
33261f65f947SAndy Whitcroft		my ($curr_values, $curr_vars) =
33271f65f947SAndy Whitcroft				annotate_values($opline . "\n", $prev_values);
33286c72ffaaSAndy Whitcroft		$curr_values = $prev_values . $curr_values;
3329c2fdda0dSAndy Whitcroft		if ($dbg_values) {
3330c2fdda0dSAndy Whitcroft			my $outline = $opline; $outline =~ s/\t/ /g;
3331cf655043SAndy Whitcroft			print "$linenr > .$outline\n";
3332cf655043SAndy Whitcroft			print "$linenr > $curr_values\n";
33331f65f947SAndy Whitcroft			print "$linenr >  $curr_vars\n";
3334c2fdda0dSAndy Whitcroft		}
33356c72ffaaSAndy Whitcroft		$prev_values = substr($curr_values, -1);
33366c72ffaaSAndy Whitcroft
333700df344fSAndy Whitcroft#ignore lines not being added
33383705ce5bSJoe Perches		next if ($line =~ /^[^\+]/);
333900df344fSAndy Whitcroft
3340a1ce18e4SJoe Perches# check for declarations of signed or unsigned without int
3341207a8e84SJoe Perches		while ($line =~ m{($Declare)\s*(?!char\b|short\b|int\b|long\b)\s*($Ident)?\s*[=,;\[\)\(]}g) {
3342a1ce18e4SJoe Perches			my $type = $1;
3343a1ce18e4SJoe Perches			my $var = $2;
3344207a8e84SJoe Perches			$var = "" if (!defined $var);
3345207a8e84SJoe Perches			if ($type =~ /^(?:(?:$Storage|$Inline|$Attribute)\s+)*((?:un)?signed)((?:\s*\*)*)\s*$/) {
3346a1ce18e4SJoe Perches				my $sign = $1;
3347a1ce18e4SJoe Perches				my $pointer = $2;
3348a1ce18e4SJoe Perches
3349a1ce18e4SJoe Perches				$pointer = "" if (!defined $pointer);
3350a1ce18e4SJoe Perches
3351a1ce18e4SJoe Perches				if (WARN("UNSPECIFIED_INT",
3352a1ce18e4SJoe Perches					 "Prefer '" . trim($sign) . " int" . rtrim($pointer) . "' to bare use of '$sign" . rtrim($pointer) . "'\n" . $herecurr) &&
3353a1ce18e4SJoe Perches				    $fix) {
3354a1ce18e4SJoe Perches					my $decl = trim($sign) . " int ";
3355207a8e84SJoe Perches					my $comp_pointer = $pointer;
3356207a8e84SJoe Perches					$comp_pointer =~ s/\s//g;
3357207a8e84SJoe Perches					$decl .= $comp_pointer;
3358207a8e84SJoe Perches					$decl = rtrim($decl) if ($var eq "");
3359207a8e84SJoe Perches					$fixed[$fixlinenr] =~ s@\b$sign\s*\Q$pointer\E\s*$var\b@$decl$var@;
3360a1ce18e4SJoe Perches				}
3361a1ce18e4SJoe Perches			}
3362a1ce18e4SJoe Perches		}
3363a1ce18e4SJoe Perches
3364653d4876SAndy Whitcroft# TEST: allow direct testing of the type matcher.
33657429c690SAndy Whitcroft		if ($dbg_type) {
33667429c690SAndy Whitcroft			if ($line =~ /^.\s*$Declare\s*$/) {
3367000d1cc1SJoe Perches				ERROR("TEST_TYPE",
3368000d1cc1SJoe Perches				      "TEST: is type\n" . $herecurr);
33697429c690SAndy Whitcroft			} elsif ($dbg_type > 1 && $line =~ /^.+($Declare)/) {
3370000d1cc1SJoe Perches				ERROR("TEST_NOT_TYPE",
3371000d1cc1SJoe Perches				      "TEST: is not type ($1 is)\n". $herecurr);
33727429c690SAndy Whitcroft			}
3373653d4876SAndy Whitcroft			next;
3374653d4876SAndy Whitcroft		}
3375a1ef277eSAndy Whitcroft# TEST: allow direct testing of the attribute matcher.
3376a1ef277eSAndy Whitcroft		if ($dbg_attr) {
33779360b0e5SAndy Whitcroft			if ($line =~ /^.\s*$Modifier\s*$/) {
3378000d1cc1SJoe Perches				ERROR("TEST_ATTR",
3379000d1cc1SJoe Perches				      "TEST: is attr\n" . $herecurr);
33809360b0e5SAndy Whitcroft			} elsif ($dbg_attr > 1 && $line =~ /^.+($Modifier)/) {
3381000d1cc1SJoe Perches				ERROR("TEST_NOT_ATTR",
3382000d1cc1SJoe Perches				      "TEST: is not attr ($1 is)\n". $herecurr);
3383a1ef277eSAndy Whitcroft			}
3384a1ef277eSAndy Whitcroft			next;
3385a1ef277eSAndy Whitcroft		}
3386653d4876SAndy Whitcroft
3387f0a594c1SAndy Whitcroft# check for initialisation to aggregates open brace on the next line
338899423c20SAndy Whitcroft		if ($line =~ /^.\s*{/ &&
338999423c20SAndy Whitcroft		    $prevline =~ /(?:^|[^=])=\s*$/) {
3390d752fcc8SJoe Perches			if (ERROR("OPEN_BRACE",
3391d752fcc8SJoe Perches				  "that open brace { should be on the previous line\n" . $hereprev) &&
3392f2d7e4d4SJoe Perches			    $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
3393f2d7e4d4SJoe Perches				fix_delete_line($fixlinenr - 1, $prevrawline);
3394f2d7e4d4SJoe Perches				fix_delete_line($fixlinenr, $rawline);
3395d752fcc8SJoe Perches				my $fixedline = $prevrawline;
3396d752fcc8SJoe Perches				$fixedline =~ s/\s*=\s*$/ = {/;
3397f2d7e4d4SJoe Perches				fix_insert_line($fixlinenr, $fixedline);
3398d752fcc8SJoe Perches				$fixedline = $line;
3399d752fcc8SJoe Perches				$fixedline =~ s/^(.\s*){\s*/$1/;
3400f2d7e4d4SJoe Perches				fix_insert_line($fixlinenr, $fixedline);
3401d752fcc8SJoe Perches			}
3402f0a594c1SAndy Whitcroft		}
3403f0a594c1SAndy Whitcroft
340400df344fSAndy Whitcroft#
340500df344fSAndy Whitcroft# Checks which are anchored on the added line.
340600df344fSAndy Whitcroft#
340700df344fSAndy Whitcroft
3408653d4876SAndy Whitcroft# check for malformed paths in #include statements (uses RAW line)
3409c45dcabdSAndy Whitcroft		if ($rawline =~ m{^.\s*\#\s*include\s+[<"](.*)[">]}) {
3410653d4876SAndy Whitcroft			my $path = $1;
3411653d4876SAndy Whitcroft			if ($path =~ m{//}) {
3412000d1cc1SJoe Perches				ERROR("MALFORMED_INCLUDE",
3413495e9d84SJoe Perches				      "malformed #include filename\n" . $herecurr);
3414495e9d84SJoe Perches			}
3415495e9d84SJoe Perches			if ($path =~ "^uapi/" && $realfile =~ m@\binclude/uapi/@) {
3416495e9d84SJoe Perches				ERROR("UAPI_INCLUDE",
3417495e9d84SJoe Perches				      "No #include in ...include/uapi/... should use a uapi/ path prefix\n" . $herecurr);
3418653d4876SAndy Whitcroft			}
3419653d4876SAndy Whitcroft		}
3420653d4876SAndy Whitcroft
342100df344fSAndy Whitcroft# no C99 // comments
342200df344fSAndy Whitcroft		if ($line =~ m{//}) {
34233705ce5bSJoe Perches			if (ERROR("C99_COMMENTS",
34243705ce5bSJoe Perches				  "do not use C99 // comments\n" . $herecurr) &&
34253705ce5bSJoe Perches			    $fix) {
3426194f66fcSJoe Perches				my $line = $fixed[$fixlinenr];
34273705ce5bSJoe Perches				if ($line =~ /\/\/(.*)$/) {
34283705ce5bSJoe Perches					my $comment = trim($1);
3429194f66fcSJoe Perches					$fixed[$fixlinenr] =~ s@\/\/(.*)$@/\* $comment \*/@;
34303705ce5bSJoe Perches				}
34313705ce5bSJoe Perches			}
343200df344fSAndy Whitcroft		}
343300df344fSAndy Whitcroft		# Remove C99 comments.
34340a920b5bSAndy Whitcroft		$line =~ s@//.*@@;
34356c72ffaaSAndy Whitcroft		$opline =~ s@//.*@@;
34360a920b5bSAndy Whitcroft
34372b474a1aSAndy Whitcroft# EXPORT_SYMBOL should immediately follow the thing it is exporting, consider
34382b474a1aSAndy Whitcroft# the whole statement.
34392b474a1aSAndy Whitcroft#print "APW <$lines[$realline_next - 1]>\n";
34402b474a1aSAndy Whitcroft		if (defined $realline_next &&
34412b474a1aSAndy Whitcroft		    exists $lines[$realline_next - 1] &&
34422b474a1aSAndy Whitcroft		    !defined $suppress_export{$realline_next} &&
34432b474a1aSAndy Whitcroft		    ($lines[$realline_next - 1] =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
34442b474a1aSAndy Whitcroft		     $lines[$realline_next - 1] =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
34453cbf62dfSAndy Whitcroft			# Handle definitions which produce identifiers with
34463cbf62dfSAndy Whitcroft			# a prefix:
34473cbf62dfSAndy Whitcroft			#   XXX(foo);
34483cbf62dfSAndy Whitcroft			#   EXPORT_SYMBOL(something_foo);
3449653d4876SAndy Whitcroft			my $name = $1;
345087a53877SAndy Whitcroft			if ($stat =~ /^(?:.\s*}\s*\n)?.([A-Z_]+)\s*\(\s*($Ident)/ &&
34513cbf62dfSAndy Whitcroft			    $name =~ /^${Ident}_$2/) {
34523cbf62dfSAndy Whitcroft#print "FOO C name<$name>\n";
34533cbf62dfSAndy Whitcroft				$suppress_export{$realline_next} = 1;
34543cbf62dfSAndy Whitcroft
34553cbf62dfSAndy Whitcroft			} elsif ($stat !~ /(?:
34562b474a1aSAndy Whitcroft				\n.}\s*$|
345748012058SAndy Whitcroft				^.DEFINE_$Ident\(\Q$name\E\)|
345848012058SAndy Whitcroft				^.DECLARE_$Ident\(\Q$name\E\)|
345948012058SAndy Whitcroft				^.LIST_HEAD\(\Q$name\E\)|
34602b474a1aSAndy Whitcroft				^.(?:$Storage\s+)?$Type\s*\(\s*\*\s*\Q$name\E\s*\)\s*\(|
34612b474a1aSAndy Whitcroft				\b\Q$name\E(?:\s+$Attribute)*\s*(?:;|=|\[|\()
346248012058SAndy Whitcroft			    )/x) {
34632b474a1aSAndy Whitcroft#print "FOO A<$lines[$realline_next - 1]> stat<$stat> name<$name>\n";
34642b474a1aSAndy Whitcroft				$suppress_export{$realline_next} = 2;
34652b474a1aSAndy Whitcroft			} else {
34662b474a1aSAndy Whitcroft				$suppress_export{$realline_next} = 1;
34670a920b5bSAndy Whitcroft			}
34680a920b5bSAndy Whitcroft		}
34692b474a1aSAndy Whitcroft		if (!defined $suppress_export{$linenr} &&
34702b474a1aSAndy Whitcroft		    $prevline =~ /^.\s*$/ &&
34712b474a1aSAndy Whitcroft		    ($line =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
34722b474a1aSAndy Whitcroft		     $line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
34732b474a1aSAndy Whitcroft#print "FOO B <$lines[$linenr - 1]>\n";
34742b474a1aSAndy Whitcroft			$suppress_export{$linenr} = 2;
34752b474a1aSAndy Whitcroft		}
34762b474a1aSAndy Whitcroft		if (defined $suppress_export{$linenr} &&
34772b474a1aSAndy Whitcroft		    $suppress_export{$linenr} == 2) {
3478000d1cc1SJoe Perches			WARN("EXPORT_SYMBOL",
3479000d1cc1SJoe Perches			     "EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
34802b474a1aSAndy Whitcroft		}
34810a920b5bSAndy Whitcroft
34825150bda4SJoe Eloff# check for global initialisers.
34836d32f7a3SJoe Perches		if ($line =~ /^\+$Type\s*$Ident(?:\s+$Modifier)*\s*=\s*($zero_initializer)\s*;/) {
3484d5e616fcSJoe Perches			if (ERROR("GLOBAL_INITIALISERS",
34856d32f7a3SJoe Perches				  "do not initialise globals to $1\n" . $herecurr) &&
3486d5e616fcSJoe Perches			    $fix) {
34876d32f7a3SJoe Perches				$fixed[$fixlinenr] =~ s/(^.$Type\s*$Ident(?:\s+$Modifier)*)\s*=\s*$zero_initializer\s*;/$1;/;
3488d5e616fcSJoe Perches			}
3489f0a594c1SAndy Whitcroft		}
34900a920b5bSAndy Whitcroft# check for static initialisers.
34916d32f7a3SJoe Perches		if ($line =~ /^\+.*\bstatic\s.*=\s*($zero_initializer)\s*;/) {
3492d5e616fcSJoe Perches			if (ERROR("INITIALISED_STATIC",
34936d32f7a3SJoe Perches				  "do not initialise statics to $1\n" .
3494d5e616fcSJoe Perches				      $herecurr) &&
3495d5e616fcSJoe Perches			    $fix) {
34966d32f7a3SJoe Perches				$fixed[$fixlinenr] =~ s/(\bstatic\s.*?)\s*=\s*$zero_initializer\s*;/$1;/;
3497d5e616fcSJoe Perches			}
34980a920b5bSAndy Whitcroft		}
34990a920b5bSAndy Whitcroft
35001813087dSJoe Perches# check for misordered declarations of char/short/int/long with signed/unsigned
35011813087dSJoe Perches		while ($sline =~ m{(\b$TypeMisordered\b)}g) {
35021813087dSJoe Perches			my $tmp = trim($1);
35031813087dSJoe Perches			WARN("MISORDERED_TYPE",
35041813087dSJoe Perches			     "type '$tmp' should be specified in [[un]signed] [short|int|long|long long] order\n" . $herecurr);
35051813087dSJoe Perches		}
35061813087dSJoe Perches
3507cb710ecaSJoe Perches# check for static const char * arrays.
3508cb710ecaSJoe Perches		if ($line =~ /\bstatic\s+const\s+char\s*\*\s*(\w+)\s*\[\s*\]\s*=\s*/) {
3509000d1cc1SJoe Perches			WARN("STATIC_CONST_CHAR_ARRAY",
3510000d1cc1SJoe Perches			     "static const char * array should probably be static const char * const\n" .
3511cb710ecaSJoe Perches				$herecurr);
3512cb710ecaSJoe Perches               }
3513cb710ecaSJoe Perches
3514cb710ecaSJoe Perches# check for static char foo[] = "bar" declarations.
3515cb710ecaSJoe Perches		if ($line =~ /\bstatic\s+char\s+(\w+)\s*\[\s*\]\s*=\s*"/) {
3516000d1cc1SJoe Perches			WARN("STATIC_CONST_CHAR_ARRAY",
3517000d1cc1SJoe Perches			     "static char array declaration should probably be static const char\n" .
3518cb710ecaSJoe Perches				$herecurr);
3519cb710ecaSJoe Perches               }
3520cb710ecaSJoe Perches
3521ab7e23f3SJoe Perches# check for const <foo> const where <foo> is not a pointer or array type
3522ab7e23f3SJoe Perches		if ($sline =~ /\bconst\s+($BasicType)\s+const\b/) {
3523ab7e23f3SJoe Perches			my $found = $1;
3524ab7e23f3SJoe Perches			if ($sline =~ /\bconst\s+\Q$found\E\s+const\b\s*\*/) {
3525ab7e23f3SJoe Perches				WARN("CONST_CONST",
3526ab7e23f3SJoe Perches				     "'const $found const *' should probably be 'const $found * const'\n" . $herecurr);
3527ab7e23f3SJoe Perches			} elsif ($sline !~ /\bconst\s+\Q$found\E\s+const\s+\w+\s*\[/) {
3528ab7e23f3SJoe Perches				WARN("CONST_CONST",
3529ab7e23f3SJoe Perches				     "'const $found const' should probably be 'const $found'\n" . $herecurr);
3530ab7e23f3SJoe Perches			}
3531ab7e23f3SJoe Perches		}
3532ab7e23f3SJoe Perches
35339b0fa60dSJoe Perches# check for non-global char *foo[] = {"bar", ...} declarations.
35349b0fa60dSJoe Perches		if ($line =~ /^.\s+(?:static\s+|const\s+)?char\s+\*\s*\w+\s*\[\s*\]\s*=\s*\{/) {
35359b0fa60dSJoe Perches			WARN("STATIC_CONST_CHAR_ARRAY",
35369b0fa60dSJoe Perches			     "char * array declaration might be better as static const\n" .
35379b0fa60dSJoe Perches				$herecurr);
35389b0fa60dSJoe Perches               }
35399b0fa60dSJoe Perches
3540b598b670SJoe Perches# check for sizeof(foo)/sizeof(foo[0]) that could be ARRAY_SIZE(foo)
3541b598b670SJoe Perches		if ($line =~ m@\bsizeof\s*\(\s*($Lval)\s*\)@) {
3542b598b670SJoe Perches			my $array = $1;
3543b598b670SJoe Perches			if ($line =~ m@\b(sizeof\s*\(\s*\Q$array\E\s*\)\s*/\s*sizeof\s*\(\s*\Q$array\E\s*\[\s*0\s*\]\s*\))@) {
3544b598b670SJoe Perches				my $array_div = $1;
3545b598b670SJoe Perches				if (WARN("ARRAY_SIZE",
3546b598b670SJoe Perches					 "Prefer ARRAY_SIZE($array)\n" . $herecurr) &&
3547b598b670SJoe Perches				    $fix) {
3548b598b670SJoe Perches					$fixed[$fixlinenr] =~ s/\Q$array_div\E/ARRAY_SIZE($array)/;
3549b598b670SJoe Perches				}
3550b598b670SJoe Perches			}
3551b598b670SJoe Perches		}
3552b598b670SJoe Perches
3553b36190c5SJoe Perches# check for function declarations without arguments like "int foo()"
3554b36190c5SJoe Perches		if ($line =~ /(\b$Type\s+$Ident)\s*\(\s*\)/) {
3555b36190c5SJoe Perches			if (ERROR("FUNCTION_WITHOUT_ARGS",
3556b36190c5SJoe Perches				  "Bad function definition - $1() should probably be $1(void)\n" . $herecurr) &&
3557b36190c5SJoe Perches			    $fix) {
3558194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/(\b($Type)\s+($Ident))\s*\(\s*\)/$2 $3(void)/;
3559b36190c5SJoe Perches			}
3560b36190c5SJoe Perches		}
3561b36190c5SJoe Perches
356292e112fdSJoe Perches# check for uses of DEFINE_PCI_DEVICE_TABLE
356392e112fdSJoe Perches		if ($line =~ /\bDEFINE_PCI_DEVICE_TABLE\s*\(\s*(\w+)\s*\)\s*=/) {
356492e112fdSJoe Perches			if (WARN("DEFINE_PCI_DEVICE_TABLE",
356592e112fdSJoe Perches				 "Prefer struct pci_device_id over deprecated DEFINE_PCI_DEVICE_TABLE\n" . $herecurr) &&
356692e112fdSJoe Perches			    $fix) {
3567194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\b(?:static\s+|)DEFINE_PCI_DEVICE_TABLE\s*\(\s*(\w+)\s*\)\s*=\s*/static const struct pci_device_id $1\[\] = /;
356892e112fdSJoe Perches			}
356993ed0e2dSJoe Perches		}
357093ed0e2dSJoe Perches
3571653d4876SAndy Whitcroft# check for new typedefs, only function parameters and sparse annotations
3572653d4876SAndy Whitcroft# make sense.
3573653d4876SAndy Whitcroft		if ($line =~ /\btypedef\s/ &&
35748054576dSAndy Whitcroft		    $line !~ /\btypedef\s+$Type\s*\(\s*\*?$Ident\s*\)\s*\(/ &&
3575c45dcabdSAndy Whitcroft		    $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ &&
35768ed22cadSAndy Whitcroft		    $line !~ /\b$typeTypedefs\b/ &&
3577653d4876SAndy Whitcroft		    $line !~ /\b__bitwise(?:__|)\b/) {
3578000d1cc1SJoe Perches			WARN("NEW_TYPEDEFS",
3579000d1cc1SJoe Perches			     "do not add new typedefs\n" . $herecurr);
35800a920b5bSAndy Whitcroft		}
35810a920b5bSAndy Whitcroft
35820a920b5bSAndy Whitcroft# * goes on variable not on type
358365863862SAndy Whitcroft		# (char*[ const])
3584bfcb2cc7SAndy Whitcroft		while ($line =~ m{(\($NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)\))}g) {
3585bfcb2cc7SAndy Whitcroft			#print "AA<$1>\n";
35863705ce5bSJoe Perches			my ($ident, $from, $to) = ($1, $2, $2);
3587d8aaf121SAndy Whitcroft
358865863862SAndy Whitcroft			# Should start with a space.
358965863862SAndy Whitcroft			$to =~ s/^(\S)/ $1/;
359065863862SAndy Whitcroft			# Should not end with a space.
359165863862SAndy Whitcroft			$to =~ s/\s+$//;
359265863862SAndy Whitcroft			# '*'s should not have spaces between.
3593f9a0b3d1SAndy Whitcroft			while ($to =~ s/\*\s+\*/\*\*/) {
359465863862SAndy Whitcroft			}
3595d8aaf121SAndy Whitcroft
35963705ce5bSJoe Perches##			print "1: from<$from> to<$to> ident<$ident>\n";
359765863862SAndy Whitcroft			if ($from ne $to) {
35983705ce5bSJoe Perches				if (ERROR("POINTER_LOCATION",
35993705ce5bSJoe Perches					  "\"(foo$from)\" should be \"(foo$to)\"\n" .  $herecurr) &&
36003705ce5bSJoe Perches				    $fix) {
36013705ce5bSJoe Perches					my $sub_from = $ident;
36023705ce5bSJoe Perches					my $sub_to = $ident;
36033705ce5bSJoe Perches					$sub_to =~ s/\Q$from\E/$to/;
3604194f66fcSJoe Perches					$fixed[$fixlinenr] =~
36053705ce5bSJoe Perches					    s@\Q$sub_from\E@$sub_to@;
36063705ce5bSJoe Perches				}
360765863862SAndy Whitcroft			}
3608bfcb2cc7SAndy Whitcroft		}
3609bfcb2cc7SAndy Whitcroft		while ($line =~ m{(\b$NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)($Ident))}g) {
3610bfcb2cc7SAndy Whitcroft			#print "BB<$1>\n";
36113705ce5bSJoe Perches			my ($match, $from, $to, $ident) = ($1, $2, $2, $3);
3612d8aaf121SAndy Whitcroft
361365863862SAndy Whitcroft			# Should start with a space.
361465863862SAndy Whitcroft			$to =~ s/^(\S)/ $1/;
361565863862SAndy Whitcroft			# Should not end with a space.
361665863862SAndy Whitcroft			$to =~ s/\s+$//;
361765863862SAndy Whitcroft			# '*'s should not have spaces between.
3618f9a0b3d1SAndy Whitcroft			while ($to =~ s/\*\s+\*/\*\*/) {
361965863862SAndy Whitcroft			}
362065863862SAndy Whitcroft			# Modifiers should have spaces.
362165863862SAndy Whitcroft			$to =~ s/(\b$Modifier$)/$1 /;
362265863862SAndy Whitcroft
36233705ce5bSJoe Perches##			print "2: from<$from> to<$to> ident<$ident>\n";
3624667026e7SAndy Whitcroft			if ($from ne $to && $ident !~ /^$Modifier$/) {
36253705ce5bSJoe Perches				if (ERROR("POINTER_LOCATION",
36263705ce5bSJoe Perches					  "\"foo${from}bar\" should be \"foo${to}bar\"\n" .  $herecurr) &&
36273705ce5bSJoe Perches				    $fix) {
36283705ce5bSJoe Perches
36293705ce5bSJoe Perches					my $sub_from = $match;
36303705ce5bSJoe Perches					my $sub_to = $match;
36313705ce5bSJoe Perches					$sub_to =~ s/\Q$from\E/$to/;
3632194f66fcSJoe Perches					$fixed[$fixlinenr] =~
36333705ce5bSJoe Perches					    s@\Q$sub_from\E@$sub_to@;
36343705ce5bSJoe Perches				}
363565863862SAndy Whitcroft			}
36360a920b5bSAndy Whitcroft		}
36370a920b5bSAndy Whitcroft
36389d3e3c70SJoe Perches# avoid BUG() or BUG_ON()
36399d3e3c70SJoe Perches		if ($line =~ /\b(?:BUG|BUG_ON)\b/) {
36409d3e3c70SJoe Perches			my $msg_type = \&WARN;
36419d3e3c70SJoe Perches			$msg_type = \&CHK if ($file);
36429d3e3c70SJoe Perches			&{$msg_type}("AVOID_BUG",
36439d3e3c70SJoe Perches				     "Avoid crashing the kernel - try using WARN_ON & recovery code rather than BUG() or BUG_ON()\n" . $herecurr);
36449d3e3c70SJoe Perches		}
36450a920b5bSAndy Whitcroft
36469d3e3c70SJoe Perches# avoid LINUX_VERSION_CODE
36478905a67cSAndy Whitcroft		if ($line =~ /\bLINUX_VERSION_CODE\b/) {
3648000d1cc1SJoe Perches			WARN("LINUX_VERSION_CODE",
3649000d1cc1SJoe Perches			     "LINUX_VERSION_CODE should be avoided, code should be for the version to which it is merged\n" . $herecurr);
36508905a67cSAndy Whitcroft		}
36518905a67cSAndy Whitcroft
365217441227SJoe Perches# check for uses of printk_ratelimit
365317441227SJoe Perches		if ($line =~ /\bprintk_ratelimit\s*\(/) {
3654000d1cc1SJoe Perches			WARN("PRINTK_RATELIMITED",
3655000d1cc1SJoe Perches			     "Prefer printk_ratelimited or pr_<level>_ratelimited to printk_ratelimit\n" . $herecurr);
365617441227SJoe Perches		}
365717441227SJoe Perches
365800df344fSAndy Whitcroft# printk should use KERN_* levels.  Note that follow on printk's on the
365900df344fSAndy Whitcroft# same line do not need a level, so we use the current block context
366000df344fSAndy Whitcroft# to try and find and validate the current printk.  In summary the current
366125985edcSLucas De Marchi# printk includes all preceding printk's which have no newline on the end.
366200df344fSAndy Whitcroft# we assume the first bad printk is the one to report.
3663f0a594c1SAndy Whitcroft		if ($line =~ /\bprintk\((?!KERN_)\s*"/) {
366400df344fSAndy Whitcroft			my $ok = 0;
366500df344fSAndy Whitcroft			for (my $ln = $linenr - 1; $ln >= $first_line; $ln--) {
366600df344fSAndy Whitcroft				#print "CHECK<$lines[$ln - 1]\n";
366725985edcSLucas De Marchi				# we have a preceding printk if it ends
366800df344fSAndy Whitcroft				# with "\n" ignore it, else it is to blame
366900df344fSAndy Whitcroft				if ($lines[$ln - 1] =~ m{\bprintk\(}) {
367000df344fSAndy Whitcroft					if ($rawlines[$ln - 1] !~ m{\\n"}) {
367100df344fSAndy Whitcroft						$ok = 1;
367200df344fSAndy Whitcroft					}
367300df344fSAndy Whitcroft					last;
367400df344fSAndy Whitcroft				}
367500df344fSAndy Whitcroft			}
367600df344fSAndy Whitcroft			if ($ok == 0) {
3677000d1cc1SJoe Perches				WARN("PRINTK_WITHOUT_KERN_LEVEL",
3678000d1cc1SJoe Perches				     "printk() should include KERN_ facility level\n" . $herecurr);
36790a920b5bSAndy Whitcroft			}
368000df344fSAndy Whitcroft		}
36810a920b5bSAndy Whitcroft
3682243f3803SJoe Perches		if ($line =~ /\bprintk\s*\(\s*KERN_([A-Z]+)/) {
3683243f3803SJoe Perches			my $orig = $1;
3684243f3803SJoe Perches			my $level = lc($orig);
3685243f3803SJoe Perches			$level = "warn" if ($level eq "warning");
36868f26b837SJoe Perches			my $level2 = $level;
36878f26b837SJoe Perches			$level2 = "dbg" if ($level eq "debug");
3688243f3803SJoe Perches			WARN("PREFER_PR_LEVEL",
3689daa8b059SYogesh Chaudhari			     "Prefer [subsystem eg: netdev]_$level2([subsystem]dev, ... then dev_$level2(dev, ... then pr_$level(...  to printk(KERN_$orig ...\n" . $herecurr);
3690243f3803SJoe Perches		}
3691243f3803SJoe Perches
3692243f3803SJoe Perches		if ($line =~ /\bpr_warning\s*\(/) {
3693d5e616fcSJoe Perches			if (WARN("PREFER_PR_LEVEL",
3694d5e616fcSJoe Perches				 "Prefer pr_warn(... to pr_warning(...\n" . $herecurr) &&
3695d5e616fcSJoe Perches			    $fix) {
3696194f66fcSJoe Perches				$fixed[$fixlinenr] =~
3697d5e616fcSJoe Perches				    s/\bpr_warning\b/pr_warn/;
3698d5e616fcSJoe Perches			}
3699243f3803SJoe Perches		}
3700243f3803SJoe Perches
3701dc139313SJoe Perches		if ($line =~ /\bdev_printk\s*\(\s*KERN_([A-Z]+)/) {
3702dc139313SJoe Perches			my $orig = $1;
3703dc139313SJoe Perches			my $level = lc($orig);
3704dc139313SJoe Perches			$level = "warn" if ($level eq "warning");
3705dc139313SJoe Perches			$level = "dbg" if ($level eq "debug");
3706dc139313SJoe Perches			WARN("PREFER_DEV_LEVEL",
3707dc139313SJoe Perches			     "Prefer dev_$level(... to dev_printk(KERN_$orig, ...\n" . $herecurr);
3708dc139313SJoe Perches		}
3709dc139313SJoe Perches
371091c9afafSAndy Lutomirski# ENOSYS means "bad syscall nr" and nothing else.  This will have a small
371191c9afafSAndy Lutomirski# number of false positives, but assembly files are not checked, so at
371291c9afafSAndy Lutomirski# least the arch entry code will not trigger this warning.
371391c9afafSAndy Lutomirski		if ($line =~ /\bENOSYS\b/) {
371491c9afafSAndy Lutomirski			WARN("ENOSYS",
371591c9afafSAndy Lutomirski			     "ENOSYS means 'invalid syscall nr' and nothing else\n" . $herecurr);
371691c9afafSAndy Lutomirski		}
371791c9afafSAndy Lutomirski
3718653d4876SAndy Whitcroft# function brace can't be on same line, except for #defines of do while,
3719653d4876SAndy Whitcroft# or if closed on same line
37208d182478SJoe Perches		if (($line=~/$Type\s*$Ident\(.*\).*\s*{/) and
37214e5d56bdSEddie Kovsky		    !($line=~/\#\s*define.*do\s\{/) and !($line=~/}/)) {
37228d182478SJoe Perches			if (ERROR("OPEN_BRACE",
37238d182478SJoe Perches				  "open brace '{' following function declarations go on the next line\n" . $herecurr) &&
37248d182478SJoe Perches			    $fix) {
37258d182478SJoe Perches				fix_delete_line($fixlinenr, $rawline);
37268d182478SJoe Perches				my $fixed_line = $rawline;
37278d182478SJoe Perches				$fixed_line =~ /(^..*$Type\s*$Ident\(.*\)\s*){(.*)$/;
37288d182478SJoe Perches				my $line1 = $1;
37298d182478SJoe Perches				my $line2 = $2;
37308d182478SJoe Perches				fix_insert_line($fixlinenr, ltrim($line1));
37318d182478SJoe Perches				fix_insert_line($fixlinenr, "\+{");
37328d182478SJoe Perches				if ($line2 !~ /^\s*$/) {
37338d182478SJoe Perches					fix_insert_line($fixlinenr, "\+\t" . trim($line2));
37348d182478SJoe Perches				}
37358d182478SJoe Perches			}
37360a920b5bSAndy Whitcroft		}
3737653d4876SAndy Whitcroft
37388905a67cSAndy Whitcroft# open braces for enum, union and struct go on the same line.
37398905a67cSAndy Whitcroft		if ($line =~ /^.\s*{/ &&
37408905a67cSAndy Whitcroft		    $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
37418d182478SJoe Perches			if (ERROR("OPEN_BRACE",
37428d182478SJoe Perches				  "open brace '{' following $1 go on the same line\n" . $hereprev) &&
37438d182478SJoe Perches			    $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
37448d182478SJoe Perches				fix_delete_line($fixlinenr - 1, $prevrawline);
37458d182478SJoe Perches				fix_delete_line($fixlinenr, $rawline);
37468d182478SJoe Perches				my $fixedline = rtrim($prevrawline) . " {";
37478d182478SJoe Perches				fix_insert_line($fixlinenr, $fixedline);
37488d182478SJoe Perches				$fixedline = $rawline;
37498d182478SJoe Perches				$fixedline =~ s/^(.\s*){\s*/$1\t/;
37508d182478SJoe Perches				if ($fixedline !~ /^\+\s*$/) {
37518d182478SJoe Perches					fix_insert_line($fixlinenr, $fixedline);
37528d182478SJoe Perches				}
37538d182478SJoe Perches			}
37548905a67cSAndy Whitcroft		}
37558905a67cSAndy Whitcroft
37560c73b4ebSAndy Whitcroft# missing space after union, struct or enum definition
37573705ce5bSJoe Perches		if ($line =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident){1,2}[=\{]/) {
37583705ce5bSJoe Perches			if (WARN("SPACING",
37593705ce5bSJoe Perches				 "missing space after $1 definition\n" . $herecurr) &&
37603705ce5bSJoe Perches			    $fix) {
3761194f66fcSJoe Perches				$fixed[$fixlinenr] =~
37623705ce5bSJoe Perches				    s/^(.\s*(?:typedef\s+)?(?:enum|union|struct)(?:\s+$Ident){1,2})([=\{])/$1 $2/;
37633705ce5bSJoe Perches			}
37640c73b4ebSAndy Whitcroft		}
37650c73b4ebSAndy Whitcroft
376631070b5dSJoe Perches# Function pointer declarations
376731070b5dSJoe Perches# check spacing between type, funcptr, and args
376831070b5dSJoe Perches# canonical declaration is "type (*funcptr)(args...)"
376991f72e9cSJoe Perches		if ($line =~ /^.\s*($Declare)\((\s*)\*(\s*)($Ident)(\s*)\)(\s*)\(/) {
377031070b5dSJoe Perches			my $declare = $1;
377131070b5dSJoe Perches			my $pre_pointer_space = $2;
377231070b5dSJoe Perches			my $post_pointer_space = $3;
377331070b5dSJoe Perches			my $funcname = $4;
377431070b5dSJoe Perches			my $post_funcname_space = $5;
377531070b5dSJoe Perches			my $pre_args_space = $6;
377631070b5dSJoe Perches
377791f72e9cSJoe Perches# the $Declare variable will capture all spaces after the type
377891f72e9cSJoe Perches# so check it for a missing trailing missing space but pointer return types
377991f72e9cSJoe Perches# don't need a space so don't warn for those.
378091f72e9cSJoe Perches			my $post_declare_space = "";
378191f72e9cSJoe Perches			if ($declare =~ /(\s+)$/) {
378291f72e9cSJoe Perches				$post_declare_space = $1;
378391f72e9cSJoe Perches				$declare = rtrim($declare);
378491f72e9cSJoe Perches			}
378591f72e9cSJoe Perches			if ($declare !~ /\*$/ && $post_declare_space =~ /^$/) {
378631070b5dSJoe Perches				WARN("SPACING",
378731070b5dSJoe Perches				     "missing space after return type\n" . $herecurr);
378891f72e9cSJoe Perches				$post_declare_space = " ";
378931070b5dSJoe Perches			}
379031070b5dSJoe Perches
379131070b5dSJoe Perches# unnecessary space "type  (*funcptr)(args...)"
379291f72e9cSJoe Perches# This test is not currently implemented because these declarations are
379391f72e9cSJoe Perches# equivalent to
379491f72e9cSJoe Perches#	int  foo(int bar, ...)
379591f72e9cSJoe Perches# and this is form shouldn't/doesn't generate a checkpatch warning.
379691f72e9cSJoe Perches#
379791f72e9cSJoe Perches#			elsif ($declare =~ /\s{2,}$/) {
379891f72e9cSJoe Perches#				WARN("SPACING",
379991f72e9cSJoe Perches#				     "Multiple spaces after return type\n" . $herecurr);
380091f72e9cSJoe Perches#			}
380131070b5dSJoe Perches
380231070b5dSJoe Perches# unnecessary space "type ( *funcptr)(args...)"
380331070b5dSJoe Perches			if (defined $pre_pointer_space &&
380431070b5dSJoe Perches			    $pre_pointer_space =~ /^\s/) {
380531070b5dSJoe Perches				WARN("SPACING",
380631070b5dSJoe Perches				     "Unnecessary space after function pointer open parenthesis\n" . $herecurr);
380731070b5dSJoe Perches			}
380831070b5dSJoe Perches
380931070b5dSJoe Perches# unnecessary space "type (* funcptr)(args...)"
381031070b5dSJoe Perches			if (defined $post_pointer_space &&
381131070b5dSJoe Perches			    $post_pointer_space =~ /^\s/) {
381231070b5dSJoe Perches				WARN("SPACING",
381331070b5dSJoe Perches				     "Unnecessary space before function pointer name\n" . $herecurr);
381431070b5dSJoe Perches			}
381531070b5dSJoe Perches
381631070b5dSJoe Perches# unnecessary space "type (*funcptr )(args...)"
381731070b5dSJoe Perches			if (defined $post_funcname_space &&
381831070b5dSJoe Perches			    $post_funcname_space =~ /^\s/) {
381931070b5dSJoe Perches				WARN("SPACING",
382031070b5dSJoe Perches				     "Unnecessary space after function pointer name\n" . $herecurr);
382131070b5dSJoe Perches			}
382231070b5dSJoe Perches
382331070b5dSJoe Perches# unnecessary space "type (*funcptr) (args...)"
382431070b5dSJoe Perches			if (defined $pre_args_space &&
382531070b5dSJoe Perches			    $pre_args_space =~ /^\s/) {
382631070b5dSJoe Perches				WARN("SPACING",
382731070b5dSJoe Perches				     "Unnecessary space before function pointer arguments\n" . $herecurr);
382831070b5dSJoe Perches			}
382931070b5dSJoe Perches
383031070b5dSJoe Perches			if (show_type("SPACING") && $fix) {
3831194f66fcSJoe Perches				$fixed[$fixlinenr] =~
383291f72e9cSJoe Perches				    s/^(.\s*)$Declare\s*\(\s*\*\s*$Ident\s*\)\s*\(/$1 . $declare . $post_declare_space . '(*' . $funcname . ')('/ex;
383331070b5dSJoe Perches			}
383431070b5dSJoe Perches		}
383531070b5dSJoe Perches
38368d31cfceSAndy Whitcroft# check for spacing round square brackets; allowed:
38378d31cfceSAndy Whitcroft#  1. with a type on the left -- int [] a;
3838fe2a7dbcSAndy Whitcroft#  2. at the beginning of a line for slice initialisers -- [0...10] = 5,
3839fe2a7dbcSAndy Whitcroft#  3. inside a curly brace -- = { [0...10] = 5 }
38408d31cfceSAndy Whitcroft		while ($line =~ /(.*?\s)\[/g) {
38418d31cfceSAndy Whitcroft			my ($where, $prefix) = ($-[1], $1);
38428d31cfceSAndy Whitcroft			if ($prefix !~ /$Type\s+$/ &&
3843fe2a7dbcSAndy Whitcroft			    ($where != 0 || $prefix !~ /^.\s+$/) &&
3844daebc534SAndy Whitcroft			    $prefix !~ /[{,]\s+$/) {
38453705ce5bSJoe Perches				if (ERROR("BRACKET_SPACE",
38463705ce5bSJoe Perches					  "space prohibited before open square bracket '['\n" . $herecurr) &&
38473705ce5bSJoe Perches				    $fix) {
3848194f66fcSJoe Perches				    $fixed[$fixlinenr] =~
38493705ce5bSJoe Perches					s/^(\+.*?)\s+\[/$1\[/;
38503705ce5bSJoe Perches				}
38518d31cfceSAndy Whitcroft			}
38528d31cfceSAndy Whitcroft		}
38538d31cfceSAndy Whitcroft
3854f0a594c1SAndy Whitcroft# check for spaces between functions and their parentheses.
38556c72ffaaSAndy Whitcroft		while ($line =~ /($Ident)\s+\(/g) {
3856c2fdda0dSAndy Whitcroft			my $name = $1;
3857773647a0SAndy Whitcroft			my $ctx_before = substr($line, 0, $-[1]);
3858773647a0SAndy Whitcroft			my $ctx = "$ctx_before$name";
3859c2fdda0dSAndy Whitcroft
3860c2fdda0dSAndy Whitcroft			# Ignore those directives where spaces _are_ permitted.
3861773647a0SAndy Whitcroft			if ($name =~ /^(?:
3862773647a0SAndy Whitcroft				if|for|while|switch|return|case|
3863773647a0SAndy Whitcroft				volatile|__volatile__|
3864773647a0SAndy Whitcroft				__attribute__|format|__extension__|
3865773647a0SAndy Whitcroft				asm|__asm__)$/x)
3866773647a0SAndy Whitcroft			{
3867c2fdda0dSAndy Whitcroft			# cpp #define statements have non-optional spaces, ie
3868c2fdda0dSAndy Whitcroft			# if there is a space between the name and the open
3869c2fdda0dSAndy Whitcroft			# parenthesis it is simply not a parameter group.
3870c45dcabdSAndy Whitcroft			} elsif ($ctx_before =~ /^.\s*\#\s*define\s*$/) {
3871773647a0SAndy Whitcroft
3872773647a0SAndy Whitcroft			# cpp #elif statement condition may start with a (
3873c45dcabdSAndy Whitcroft			} elsif ($ctx =~ /^.\s*\#\s*elif\s*$/) {
3874c2fdda0dSAndy Whitcroft
3875c2fdda0dSAndy Whitcroft			# If this whole things ends with a type its most
3876c2fdda0dSAndy Whitcroft			# likely a typedef for a function.
3877773647a0SAndy Whitcroft			} elsif ($ctx =~ /$Type$/) {
3878c2fdda0dSAndy Whitcroft
3879c2fdda0dSAndy Whitcroft			} else {
38803705ce5bSJoe Perches				if (WARN("SPACING",
38813705ce5bSJoe Perches					 "space prohibited between function name and open parenthesis '('\n" . $herecurr) &&
38823705ce5bSJoe Perches					     $fix) {
3883194f66fcSJoe Perches					$fixed[$fixlinenr] =~
38843705ce5bSJoe Perches					    s/\b$name\s+\(/$name\(/;
38853705ce5bSJoe Perches				}
3886f0a594c1SAndy Whitcroft			}
38876c72ffaaSAndy Whitcroft		}
38889a4cad4eSEric Nelson
3889653d4876SAndy Whitcroft# Check operator spacing.
38900a920b5bSAndy Whitcroft		if (!($line=~/\#\s*include/)) {
38913705ce5bSJoe Perches			my $fixed_line = "";
38923705ce5bSJoe Perches			my $line_fixed = 0;
38933705ce5bSJoe Perches
38949c0ca6f9SAndy Whitcroft			my $ops = qr{
38959c0ca6f9SAndy Whitcroft				<<=|>>=|<=|>=|==|!=|
38969c0ca6f9SAndy Whitcroft				\+=|-=|\*=|\/=|%=|\^=|\|=|&=|
38979c0ca6f9SAndy Whitcroft				=>|->|<<|>>|<|>|=|!|~|
38981f65f947SAndy Whitcroft				&&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%|
389984731623SJoe Perches				\?:|\?|:
39009c0ca6f9SAndy Whitcroft			}x;
3901cf655043SAndy Whitcroft			my @elements = split(/($ops|;)/, $opline);
39023705ce5bSJoe Perches
39033705ce5bSJoe Perches##			print("element count: <" . $#elements . ">\n");
39043705ce5bSJoe Perches##			foreach my $el (@elements) {
39053705ce5bSJoe Perches##				print("el: <$el>\n");
39063705ce5bSJoe Perches##			}
39073705ce5bSJoe Perches
39083705ce5bSJoe Perches			my @fix_elements = ();
390900df344fSAndy Whitcroft			my $off = 0;
39106c72ffaaSAndy Whitcroft
39113705ce5bSJoe Perches			foreach my $el (@elements) {
39123705ce5bSJoe Perches				push(@fix_elements, substr($rawline, $off, length($el)));
39133705ce5bSJoe Perches				$off += length($el);
39143705ce5bSJoe Perches			}
39153705ce5bSJoe Perches
39163705ce5bSJoe Perches			$off = 0;
39173705ce5bSJoe Perches
39186c72ffaaSAndy Whitcroft			my $blank = copy_spacing($opline);
3919b34c648bSJoe Perches			my $last_after = -1;
39206c72ffaaSAndy Whitcroft
39210a920b5bSAndy Whitcroft			for (my $n = 0; $n < $#elements; $n += 2) {
39223705ce5bSJoe Perches
39233705ce5bSJoe Perches				my $good = $fix_elements[$n] . $fix_elements[$n + 1];
39243705ce5bSJoe Perches
39253705ce5bSJoe Perches##				print("n: <$n> good: <$good>\n");
39263705ce5bSJoe Perches
39274a0df2efSAndy Whitcroft				$off += length($elements[$n]);
39284a0df2efSAndy Whitcroft
392925985edcSLucas De Marchi				# Pick up the preceding and succeeding characters.
3930773647a0SAndy Whitcroft				my $ca = substr($opline, 0, $off);
3931773647a0SAndy Whitcroft				my $cc = '';
3932773647a0SAndy Whitcroft				if (length($opline) >= ($off + length($elements[$n + 1]))) {
3933773647a0SAndy Whitcroft					$cc = substr($opline, $off + length($elements[$n + 1]));
3934773647a0SAndy Whitcroft				}
3935773647a0SAndy Whitcroft				my $cb = "$ca$;$cc";
3936773647a0SAndy Whitcroft
39374a0df2efSAndy Whitcroft				my $a = '';
39384a0df2efSAndy Whitcroft				$a = 'V' if ($elements[$n] ne '');
39394a0df2efSAndy Whitcroft				$a = 'W' if ($elements[$n] =~ /\s$/);
3940cf655043SAndy Whitcroft				$a = 'C' if ($elements[$n] =~ /$;$/);
39414a0df2efSAndy Whitcroft				$a = 'B' if ($elements[$n] =~ /(\[|\()$/);
39424a0df2efSAndy Whitcroft				$a = 'O' if ($elements[$n] eq '');
3943773647a0SAndy Whitcroft				$a = 'E' if ($ca =~ /^\s*$/);
39444a0df2efSAndy Whitcroft
39450a920b5bSAndy Whitcroft				my $op = $elements[$n + 1];
39464a0df2efSAndy Whitcroft
39474a0df2efSAndy Whitcroft				my $c = '';
39480a920b5bSAndy Whitcroft				if (defined $elements[$n + 2]) {
39494a0df2efSAndy Whitcroft					$c = 'V' if ($elements[$n + 2] ne '');
39504a0df2efSAndy Whitcroft					$c = 'W' if ($elements[$n + 2] =~ /^\s/);
3951cf655043SAndy Whitcroft					$c = 'C' if ($elements[$n + 2] =~ /^$;/);
39524a0df2efSAndy Whitcroft					$c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
39534a0df2efSAndy Whitcroft					$c = 'O' if ($elements[$n + 2] eq '');
39548b1b3378SAndy Whitcroft					$c = 'E' if ($elements[$n + 2] =~ /^\s*\\$/);
39554a0df2efSAndy Whitcroft				} else {
39564a0df2efSAndy Whitcroft					$c = 'E';
39570a920b5bSAndy Whitcroft				}
39580a920b5bSAndy Whitcroft
39594a0df2efSAndy Whitcroft				my $ctx = "${a}x${c}";
39604a0df2efSAndy Whitcroft
39614a0df2efSAndy Whitcroft				my $at = "(ctx:$ctx)";
39624a0df2efSAndy Whitcroft
39636c72ffaaSAndy Whitcroft				my $ptr = substr($blank, 0, $off) . "^";
3964de7d4f0eSAndy Whitcroft				my $hereptr = "$hereline$ptr\n";
39650a920b5bSAndy Whitcroft
396674048ed8SAndy Whitcroft				# Pull out the value of this operator.
39676c72ffaaSAndy Whitcroft				my $op_type = substr($curr_values, $off + 1, 1);
39680a920b5bSAndy Whitcroft
39691f65f947SAndy Whitcroft				# Get the full operator variant.
39701f65f947SAndy Whitcroft				my $opv = $op . substr($curr_vars, $off, 1);
39711f65f947SAndy Whitcroft
397213214adfSAndy Whitcroft				# Ignore operators passed as parameters.
397313214adfSAndy Whitcroft				if ($op_type ne 'V' &&
3974d7fe8065SSam Bobroff				    $ca =~ /\s$/ && $cc =~ /^\s*[,\)]/) {
397513214adfSAndy Whitcroft
3976cf655043SAndy Whitcroft#				# Ignore comments
3977cf655043SAndy Whitcroft#				} elsif ($op =~ /^$;+$/) {
397813214adfSAndy Whitcroft
3979d8aaf121SAndy Whitcroft				# ; should have either the end of line or a space or \ after it
398013214adfSAndy Whitcroft				} elsif ($op eq ';') {
3981cf655043SAndy Whitcroft					if ($ctx !~ /.x[WEBC]/ &&
3982cf655043SAndy Whitcroft					    $cc !~ /^\\/ && $cc !~ /^;/) {
39833705ce5bSJoe Perches						if (ERROR("SPACING",
39843705ce5bSJoe Perches							  "space required after that '$op' $at\n" . $hereptr)) {
3985b34c648bSJoe Perches							$good = $fix_elements[$n] . trim($fix_elements[$n + 1]) . " ";
39863705ce5bSJoe Perches							$line_fixed = 1;
39873705ce5bSJoe Perches						}
3988d8aaf121SAndy Whitcroft					}
3989d8aaf121SAndy Whitcroft
3990d8aaf121SAndy Whitcroft				# // is a comment
3991d8aaf121SAndy Whitcroft				} elsif ($op eq '//') {
39920a920b5bSAndy Whitcroft
3993b00e4814SJoe Perches				#   :   when part of a bitfield
3994b00e4814SJoe Perches				} elsif ($opv eq ':B') {
3995b00e4814SJoe Perches					# skip the bitfield test for now
3996b00e4814SJoe Perches
39971f65f947SAndy Whitcroft				# No spaces for:
39981f65f947SAndy Whitcroft				#   ->
3999b00e4814SJoe Perches				} elsif ($op eq '->') {
40004a0df2efSAndy Whitcroft					if ($ctx =~ /Wx.|.xW/) {
40013705ce5bSJoe Perches						if (ERROR("SPACING",
40023705ce5bSJoe Perches							  "spaces prohibited around that '$op' $at\n" . $hereptr)) {
4003b34c648bSJoe Perches							$good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
40043705ce5bSJoe Perches							if (defined $fix_elements[$n + 2]) {
40053705ce5bSJoe Perches								$fix_elements[$n + 2] =~ s/^\s+//;
40063705ce5bSJoe Perches							}
4007b34c648bSJoe Perches							$line_fixed = 1;
40083705ce5bSJoe Perches						}
40090a920b5bSAndy Whitcroft					}
40100a920b5bSAndy Whitcroft
40112381097bSJoe Perches				# , must not have a space before and must have a space on the right.
40120a920b5bSAndy Whitcroft				} elsif ($op eq ',') {
40132381097bSJoe Perches					my $rtrim_before = 0;
40142381097bSJoe Perches					my $space_after = 0;
40152381097bSJoe Perches					if ($ctx =~ /Wx./) {
40162381097bSJoe Perches						if (ERROR("SPACING",
40172381097bSJoe Perches							  "space prohibited before that '$op' $at\n" . $hereptr)) {
40182381097bSJoe Perches							$line_fixed = 1;
40192381097bSJoe Perches							$rtrim_before = 1;
40202381097bSJoe Perches						}
40212381097bSJoe Perches					}
4022cf655043SAndy Whitcroft					if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) {
40233705ce5bSJoe Perches						if (ERROR("SPACING",
40243705ce5bSJoe Perches							  "space required after that '$op' $at\n" . $hereptr)) {
40253705ce5bSJoe Perches							$line_fixed = 1;
4026b34c648bSJoe Perches							$last_after = $n;
40272381097bSJoe Perches							$space_after = 1;
40282381097bSJoe Perches						}
40292381097bSJoe Perches					}
40302381097bSJoe Perches					if ($rtrim_before || $space_after) {
40312381097bSJoe Perches						if ($rtrim_before) {
40322381097bSJoe Perches							$good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
40332381097bSJoe Perches						} else {
40342381097bSJoe Perches							$good = $fix_elements[$n] . trim($fix_elements[$n + 1]);
40352381097bSJoe Perches						}
40362381097bSJoe Perches						if ($space_after) {
40372381097bSJoe Perches							$good .= " ";
40383705ce5bSJoe Perches						}
40390a920b5bSAndy Whitcroft					}
40400a920b5bSAndy Whitcroft
40419c0ca6f9SAndy Whitcroft				# '*' as part of a type definition -- reported already.
404274048ed8SAndy Whitcroft				} elsif ($opv eq '*_') {
40439c0ca6f9SAndy Whitcroft					#warn "'*' is part of type\n";
40449c0ca6f9SAndy Whitcroft
40459c0ca6f9SAndy Whitcroft				# unary operators should have a space before and
40469c0ca6f9SAndy Whitcroft				# none after.  May be left adjacent to another
40479c0ca6f9SAndy Whitcroft				# unary operator, or a cast
40489c0ca6f9SAndy Whitcroft				} elsif ($op eq '!' || $op eq '~' ||
404974048ed8SAndy Whitcroft					 $opv eq '*U' || $opv eq '-U' ||
40500d413866SAndy Whitcroft					 $opv eq '&U' || $opv eq '&&U') {
4051cf655043SAndy Whitcroft					if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
40523705ce5bSJoe Perches						if (ERROR("SPACING",
40533705ce5bSJoe Perches							  "space required before that '$op' $at\n" . $hereptr)) {
4054b34c648bSJoe Perches							if ($n != $last_after + 2) {
4055b34c648bSJoe Perches								$good = $fix_elements[$n] . " " . ltrim($fix_elements[$n + 1]);
40563705ce5bSJoe Perches								$line_fixed = 1;
40573705ce5bSJoe Perches							}
40580a920b5bSAndy Whitcroft						}
4059b34c648bSJoe Perches					}
4060a3340b35SAndy Whitcroft					if ($op eq '*' && $cc =~/\s*$Modifier\b/) {
4061171ae1a4SAndy Whitcroft						# A unary '*' may be const
4062171ae1a4SAndy Whitcroft
4063171ae1a4SAndy Whitcroft					} elsif ($ctx =~ /.xW/) {
40643705ce5bSJoe Perches						if (ERROR("SPACING",
40653705ce5bSJoe Perches							  "space prohibited after that '$op' $at\n" . $hereptr)) {
4066b34c648bSJoe Perches							$good = $fix_elements[$n] . rtrim($fix_elements[$n + 1]);
40673705ce5bSJoe Perches							if (defined $fix_elements[$n + 2]) {
40683705ce5bSJoe Perches								$fix_elements[$n + 2] =~ s/^\s+//;
40693705ce5bSJoe Perches							}
4070b34c648bSJoe Perches							$line_fixed = 1;
40713705ce5bSJoe Perches						}
40720a920b5bSAndy Whitcroft					}
40730a920b5bSAndy Whitcroft
40740a920b5bSAndy Whitcroft				# unary ++ and unary -- are allowed no space on one side.
40750a920b5bSAndy Whitcroft				} elsif ($op eq '++' or $op eq '--') {
4076773647a0SAndy Whitcroft					if ($ctx !~ /[WEOBC]x[^W]/ && $ctx !~ /[^W]x[WOBEC]/) {
40773705ce5bSJoe Perches						if (ERROR("SPACING",
40783705ce5bSJoe Perches							  "space required one side of that '$op' $at\n" . $hereptr)) {
4079b34c648bSJoe Perches							$good = $fix_elements[$n] . trim($fix_elements[$n + 1]) . " ";
40803705ce5bSJoe Perches							$line_fixed = 1;
40813705ce5bSJoe Perches						}
40820a920b5bSAndy Whitcroft					}
4083773647a0SAndy Whitcroft					if ($ctx =~ /Wx[BE]/ ||
4084773647a0SAndy Whitcroft					    ($ctx =~ /Wx./ && $cc =~ /^;/)) {
40853705ce5bSJoe Perches						if (ERROR("SPACING",
40863705ce5bSJoe Perches							  "space prohibited before that '$op' $at\n" . $hereptr)) {
4087b34c648bSJoe Perches							$good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
40883705ce5bSJoe Perches							$line_fixed = 1;
40893705ce5bSJoe Perches						}
4090653d4876SAndy Whitcroft					}
4091773647a0SAndy Whitcroft					if ($ctx =~ /ExW/) {
40923705ce5bSJoe Perches						if (ERROR("SPACING",
40933705ce5bSJoe Perches							  "space prohibited after that '$op' $at\n" . $hereptr)) {
4094b34c648bSJoe Perches							$good = $fix_elements[$n] . trim($fix_elements[$n + 1]);
40953705ce5bSJoe Perches							if (defined $fix_elements[$n + 2]) {
40963705ce5bSJoe Perches								$fix_elements[$n + 2] =~ s/^\s+//;
4097773647a0SAndy Whitcroft							}
4098b34c648bSJoe Perches							$line_fixed = 1;
40993705ce5bSJoe Perches						}
41003705ce5bSJoe Perches					}
41010a920b5bSAndy Whitcroft
41020a920b5bSAndy Whitcroft				# << and >> may either have or not have spaces both sides
41039c0ca6f9SAndy Whitcroft				} elsif ($op eq '<<' or $op eq '>>' or
41049c0ca6f9SAndy Whitcroft					 $op eq '&' or $op eq '^' or $op eq '|' or
41059c0ca6f9SAndy Whitcroft					 $op eq '+' or $op eq '-' or
4106c2fdda0dSAndy Whitcroft					 $op eq '*' or $op eq '/' or
4107c2fdda0dSAndy Whitcroft					 $op eq '%')
41080a920b5bSAndy Whitcroft				{
4109d2e025f3SJoe Perches					if ($check) {
4110d2e025f3SJoe Perches						if (defined $fix_elements[$n + 2] && $ctx !~ /[EW]x[EW]/) {
4111d2e025f3SJoe Perches							if (CHK("SPACING",
4112d2e025f3SJoe Perches								"spaces preferred around that '$op' $at\n" . $hereptr)) {
4113d2e025f3SJoe Perches								$good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
4114d2e025f3SJoe Perches								$fix_elements[$n + 2] =~ s/^\s+//;
4115d2e025f3SJoe Perches								$line_fixed = 1;
4116d2e025f3SJoe Perches							}
4117d2e025f3SJoe Perches						} elsif (!defined $fix_elements[$n + 2] && $ctx !~ /Wx[OE]/) {
4118d2e025f3SJoe Perches							if (CHK("SPACING",
4119d2e025f3SJoe Perches								"space preferred before that '$op' $at\n" . $hereptr)) {
4120d2e025f3SJoe Perches								$good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]);
4121d2e025f3SJoe Perches								$line_fixed = 1;
4122d2e025f3SJoe Perches							}
4123d2e025f3SJoe Perches						}
4124d2e025f3SJoe Perches					} elsif ($ctx =~ /Wx[^WCE]|[^WCE]xW/) {
41253705ce5bSJoe Perches						if (ERROR("SPACING",
41263705ce5bSJoe Perches							  "need consistent spacing around '$op' $at\n" . $hereptr)) {
4127b34c648bSJoe Perches							$good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
4128b34c648bSJoe Perches							if (defined $fix_elements[$n + 2]) {
4129b34c648bSJoe Perches								$fix_elements[$n + 2] =~ s/^\s+//;
4130b34c648bSJoe Perches							}
41313705ce5bSJoe Perches							$line_fixed = 1;
41323705ce5bSJoe Perches						}
41330a920b5bSAndy Whitcroft					}
41340a920b5bSAndy Whitcroft
41351f65f947SAndy Whitcroft				# A colon needs no spaces before when it is
41361f65f947SAndy Whitcroft				# terminating a case value or a label.
41371f65f947SAndy Whitcroft				} elsif ($opv eq ':C' || $opv eq ':L') {
41381f65f947SAndy Whitcroft					if ($ctx =~ /Wx./) {
41393705ce5bSJoe Perches						if (ERROR("SPACING",
41403705ce5bSJoe Perches							  "space prohibited before that '$op' $at\n" . $hereptr)) {
4141b34c648bSJoe Perches							$good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
41423705ce5bSJoe Perches							$line_fixed = 1;
41433705ce5bSJoe Perches						}
41441f65f947SAndy Whitcroft					}
41451f65f947SAndy Whitcroft
41460a920b5bSAndy Whitcroft				# All the others need spaces both sides.
4147cf655043SAndy Whitcroft				} elsif ($ctx !~ /[EWC]x[CWE]/) {
41481f65f947SAndy Whitcroft					my $ok = 0;
41491f65f947SAndy Whitcroft
415022f2a2efSAndy Whitcroft					# Ignore email addresses <foo@bar>
41511f65f947SAndy Whitcroft					if (($op eq '<' &&
41521f65f947SAndy Whitcroft					     $cc =~ /^\S+\@\S+>/) ||
41531f65f947SAndy Whitcroft					    ($op eq '>' &&
41541f65f947SAndy Whitcroft					     $ca =~ /<\S+\@\S+$/))
41551f65f947SAndy Whitcroft					{
41561f65f947SAndy Whitcroft					    	$ok = 1;
41571f65f947SAndy Whitcroft					}
41581f65f947SAndy Whitcroft
4159e0df7e1fSJoe Perches					# for asm volatile statements
4160e0df7e1fSJoe Perches					# ignore a colon with another
4161e0df7e1fSJoe Perches					# colon immediately before or after
4162e0df7e1fSJoe Perches					if (($op eq ':') &&
4163e0df7e1fSJoe Perches					    ($ca =~ /:$/ || $cc =~ /^:/)) {
4164e0df7e1fSJoe Perches						$ok = 1;
4165e0df7e1fSJoe Perches					}
4166e0df7e1fSJoe Perches
416784731623SJoe Perches					# messages are ERROR, but ?: are CHK
41681f65f947SAndy Whitcroft					if ($ok == 0) {
416984731623SJoe Perches						my $msg_type = \&ERROR;
417084731623SJoe Perches						$msg_type = \&CHK if (($op eq '?:' || $op eq '?' || $op eq ':') && $ctx =~ /VxV/);
417184731623SJoe Perches
417284731623SJoe Perches						if (&{$msg_type}("SPACING",
41733705ce5bSJoe Perches								 "spaces required around that '$op' $at\n" . $hereptr)) {
4174b34c648bSJoe Perches							$good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
4175b34c648bSJoe Perches							if (defined $fix_elements[$n + 2]) {
4176b34c648bSJoe Perches								$fix_elements[$n + 2] =~ s/^\s+//;
4177b34c648bSJoe Perches							}
41783705ce5bSJoe Perches							$line_fixed = 1;
41793705ce5bSJoe Perches						}
41800a920b5bSAndy Whitcroft					}
418122f2a2efSAndy Whitcroft				}
41824a0df2efSAndy Whitcroft				$off += length($elements[$n + 1]);
41833705ce5bSJoe Perches
41843705ce5bSJoe Perches##				print("n: <$n> GOOD: <$good>\n");
41853705ce5bSJoe Perches
41863705ce5bSJoe Perches				$fixed_line = $fixed_line . $good;
41870a920b5bSAndy Whitcroft			}
41883705ce5bSJoe Perches
41893705ce5bSJoe Perches			if (($#elements % 2) == 0) {
41903705ce5bSJoe Perches				$fixed_line = $fixed_line . $fix_elements[$#elements];
41913705ce5bSJoe Perches			}
41923705ce5bSJoe Perches
4193194f66fcSJoe Perches			if ($fix && $line_fixed && $fixed_line ne $fixed[$fixlinenr]) {
4194194f66fcSJoe Perches				$fixed[$fixlinenr] = $fixed_line;
41953705ce5bSJoe Perches			}
41963705ce5bSJoe Perches
41973705ce5bSJoe Perches
41980a920b5bSAndy Whitcroft		}
41990a920b5bSAndy Whitcroft
4200786b6326SJoe Perches# check for whitespace before a non-naked semicolon
4201d2e248e7SJoe Perches		if ($line =~ /^\+.*\S\s+;\s*$/) {
4202786b6326SJoe Perches			if (WARN("SPACING",
4203786b6326SJoe Perches				 "space prohibited before semicolon\n" . $herecurr) &&
4204786b6326SJoe Perches			    $fix) {
4205194f66fcSJoe Perches				1 while $fixed[$fixlinenr] =~
4206786b6326SJoe Perches				    s/^(\+.*\S)\s+;/$1;/;
4207786b6326SJoe Perches			}
4208786b6326SJoe Perches		}
4209786b6326SJoe Perches
4210f0a594c1SAndy Whitcroft# check for multiple assignments
4211f0a594c1SAndy Whitcroft		if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
4212000d1cc1SJoe Perches			CHK("MULTIPLE_ASSIGNMENTS",
4213000d1cc1SJoe Perches			    "multiple assignments should be avoided\n" . $herecurr);
4214f0a594c1SAndy Whitcroft		}
4215f0a594c1SAndy Whitcroft
421622f2a2efSAndy Whitcroft## # check for multiple declarations, allowing for a function declaration
421722f2a2efSAndy Whitcroft## # continuation.
421822f2a2efSAndy Whitcroft## 		if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
421922f2a2efSAndy Whitcroft## 		    $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
422022f2a2efSAndy Whitcroft##
422122f2a2efSAndy Whitcroft## 			# Remove any bracketed sections to ensure we do not
422222f2a2efSAndy Whitcroft## 			# falsly report the parameters of functions.
422322f2a2efSAndy Whitcroft## 			my $ln = $line;
422422f2a2efSAndy Whitcroft## 			while ($ln =~ s/\([^\(\)]*\)//g) {
422522f2a2efSAndy Whitcroft## 			}
422622f2a2efSAndy Whitcroft## 			if ($ln =~ /,/) {
4227000d1cc1SJoe Perches## 				WARN("MULTIPLE_DECLARATION",
4228000d1cc1SJoe Perches##				     "declaring multiple variables together should be avoided\n" . $herecurr);
422922f2a2efSAndy Whitcroft## 			}
423022f2a2efSAndy Whitcroft## 		}
4231f0a594c1SAndy Whitcroft
42320a920b5bSAndy Whitcroft#need space before brace following if, while, etc
42336b8c69e4SGeyslan G. Bem		if (($line =~ /\(.*\)\{/ && $line !~ /\($Type\)\{/) ||
42344e5d56bdSEddie Kovsky		    $line =~ /do\{/) {
42353705ce5bSJoe Perches			if (ERROR("SPACING",
42363705ce5bSJoe Perches				  "space required before the open brace '{'\n" . $herecurr) &&
42373705ce5bSJoe Perches			    $fix) {
4238194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/^(\+.*(?:do|\))){/$1 {/;
42393705ce5bSJoe Perches			}
4240de7d4f0eSAndy Whitcroft		}
4241de7d4f0eSAndy Whitcroft
4242c4a62ef9SJoe Perches## # check for blank lines before declarations
4243c4a62ef9SJoe Perches##		if ($line =~ /^.\t+$Type\s+$Ident(?:\s*=.*)?;/ &&
4244c4a62ef9SJoe Perches##		    $prevrawline =~ /^.\s*$/) {
4245c4a62ef9SJoe Perches##			WARN("SPACING",
4246c4a62ef9SJoe Perches##			     "No blank lines before declarations\n" . $hereprev);
4247c4a62ef9SJoe Perches##		}
4248c4a62ef9SJoe Perches##
4249c4a62ef9SJoe Perches
4250de7d4f0eSAndy Whitcroft# closing brace should have a space following it when it has anything
4251de7d4f0eSAndy Whitcroft# on the line
4252de7d4f0eSAndy Whitcroft		if ($line =~ /}(?!(?:,|;|\)))\S/) {
4253d5e616fcSJoe Perches			if (ERROR("SPACING",
4254d5e616fcSJoe Perches				  "space required after that close brace '}'\n" . $herecurr) &&
4255d5e616fcSJoe Perches			    $fix) {
4256194f66fcSJoe Perches				$fixed[$fixlinenr] =~
4257d5e616fcSJoe Perches				    s/}((?!(?:,|;|\)))\S)/} $1/;
4258d5e616fcSJoe Perches			}
42590a920b5bSAndy Whitcroft		}
42600a920b5bSAndy Whitcroft
426122f2a2efSAndy Whitcroft# check spacing on square brackets
426222f2a2efSAndy Whitcroft		if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
42633705ce5bSJoe Perches			if (ERROR("SPACING",
42643705ce5bSJoe Perches				  "space prohibited after that open square bracket '['\n" . $herecurr) &&
42653705ce5bSJoe Perches			    $fix) {
4266194f66fcSJoe Perches				$fixed[$fixlinenr] =~
42673705ce5bSJoe Perches				    s/\[\s+/\[/;
42683705ce5bSJoe Perches			}
426922f2a2efSAndy Whitcroft		}
427022f2a2efSAndy Whitcroft		if ($line =~ /\s\]/) {
42713705ce5bSJoe Perches			if (ERROR("SPACING",
42723705ce5bSJoe Perches				  "space prohibited before that close square bracket ']'\n" . $herecurr) &&
42733705ce5bSJoe Perches			    $fix) {
4274194f66fcSJoe Perches				$fixed[$fixlinenr] =~
42753705ce5bSJoe Perches				    s/\s+\]/\]/;
42763705ce5bSJoe Perches			}
427722f2a2efSAndy Whitcroft		}
427822f2a2efSAndy Whitcroft
4279c45dcabdSAndy Whitcroft# check spacing on parentheses
42809c0ca6f9SAndy Whitcroft		if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
42819c0ca6f9SAndy Whitcroft		    $line !~ /for\s*\(\s+;/) {
42823705ce5bSJoe Perches			if (ERROR("SPACING",
42833705ce5bSJoe Perches				  "space prohibited after that open parenthesis '('\n" . $herecurr) &&
42843705ce5bSJoe Perches			    $fix) {
4285194f66fcSJoe Perches				$fixed[$fixlinenr] =~
42863705ce5bSJoe Perches				    s/\(\s+/\(/;
42873705ce5bSJoe Perches			}
428822f2a2efSAndy Whitcroft		}
428913214adfSAndy Whitcroft		if ($line =~ /(\s+)\)/ && $line !~ /^.\s*\)/ &&
4290c45dcabdSAndy Whitcroft		    $line !~ /for\s*\(.*;\s+\)/ &&
4291c45dcabdSAndy Whitcroft		    $line !~ /:\s+\)/) {
42923705ce5bSJoe Perches			if (ERROR("SPACING",
42933705ce5bSJoe Perches				  "space prohibited before that close parenthesis ')'\n" . $herecurr) &&
42943705ce5bSJoe Perches			    $fix) {
4295194f66fcSJoe Perches				$fixed[$fixlinenr] =~
42963705ce5bSJoe Perches				    s/\s+\)/\)/;
42973705ce5bSJoe Perches			}
429822f2a2efSAndy Whitcroft		}
429922f2a2efSAndy Whitcroft
4300e2826fd0SJoe Perches# check unnecessary parentheses around addressof/dereference single $Lvals
4301e2826fd0SJoe Perches# ie: &(foo->bar) should be &foo->bar and *(foo->bar) should be *foo->bar
4302e2826fd0SJoe Perches
4303e2826fd0SJoe Perches		while ($line =~ /(?:[^&]&\s*|\*)\(\s*($Ident\s*(?:$Member\s*)+)\s*\)/g) {
4304ea4acbb1SJoe Perches			my $var = $1;
4305ea4acbb1SJoe Perches			if (CHK("UNNECESSARY_PARENTHESES",
4306ea4acbb1SJoe Perches				"Unnecessary parentheses around $var\n" . $herecurr) &&
4307ea4acbb1SJoe Perches			    $fix) {
4308ea4acbb1SJoe Perches				$fixed[$fixlinenr] =~ s/\(\s*\Q$var\E\s*\)/$var/;
4309ea4acbb1SJoe Perches			}
4310ea4acbb1SJoe Perches		}
4311ea4acbb1SJoe Perches
4312ea4acbb1SJoe Perches# check for unnecessary parentheses around function pointer uses
4313ea4acbb1SJoe Perches# ie: (foo->bar)(); should be foo->bar();
4314ea4acbb1SJoe Perches# but not "if (foo->bar) (" to avoid some false positives
4315ea4acbb1SJoe Perches		if ($line =~ /(\bif\s*|)(\(\s*$Ident\s*(?:$Member\s*)+\))[ \t]*\(/ && $1 !~ /^if/) {
4316ea4acbb1SJoe Perches			my $var = $2;
4317ea4acbb1SJoe Perches			if (CHK("UNNECESSARY_PARENTHESES",
4318ea4acbb1SJoe Perches				"Unnecessary parentheses around function pointer $var\n" . $herecurr) &&
4319ea4acbb1SJoe Perches			    $fix) {
4320ea4acbb1SJoe Perches				my $var2 = deparenthesize($var);
4321ea4acbb1SJoe Perches				$var2 =~ s/\s//g;
4322ea4acbb1SJoe Perches				$fixed[$fixlinenr] =~ s/\Q$var\E/$var2/;
4323ea4acbb1SJoe Perches			}
4324e2826fd0SJoe Perches		}
4325e2826fd0SJoe Perches
43260a920b5bSAndy Whitcroft#goto labels aren't indented, allow a single space however
43274a0df2efSAndy Whitcroft		if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
43280a920b5bSAndy Whitcroft		   !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
43293705ce5bSJoe Perches			if (WARN("INDENTED_LABEL",
43303705ce5bSJoe Perches				 "labels should not be indented\n" . $herecurr) &&
43313705ce5bSJoe Perches			    $fix) {
4332194f66fcSJoe Perches				$fixed[$fixlinenr] =~
43333705ce5bSJoe Perches				    s/^(.)\s+/$1/;
43343705ce5bSJoe Perches			}
43350a920b5bSAndy Whitcroft		}
43360a920b5bSAndy Whitcroft
43375b9553abSJoe Perches# return is not a function
4338507e5141SJoe Perches		if (defined($stat) && $stat =~ /^.\s*return(\s*)\(/s) {
4339c45dcabdSAndy Whitcroft			my $spacing = $1;
4340507e5141SJoe Perches			if ($^V && $^V ge 5.10.0 &&
43415b9553abSJoe Perches			    $stat =~ /^.\s*return\s*($balanced_parens)\s*;\s*$/) {
43425b9553abSJoe Perches				my $value = $1;
43435b9553abSJoe Perches				$value = deparenthesize($value);
43445b9553abSJoe Perches				if ($value =~ m/^\s*$FuncArg\s*(?:\?|$)/) {
4345000d1cc1SJoe Perches					ERROR("RETURN_PARENTHESES",
4346000d1cc1SJoe Perches					      "return is not a function, parentheses are not required\n" . $herecurr);
43475b9553abSJoe Perches				}
4348c45dcabdSAndy Whitcroft			} elsif ($spacing !~ /\s+/) {
4349000d1cc1SJoe Perches				ERROR("SPACING",
4350000d1cc1SJoe Perches				      "space required before the open parenthesis '('\n" . $herecurr);
4351c45dcabdSAndy Whitcroft			}
4352c45dcabdSAndy Whitcroft		}
4353507e5141SJoe Perches
4354b43ae21bSJoe Perches# unnecessary return in a void function
4355b43ae21bSJoe Perches# at end-of-function, with the previous line a single leading tab, then return;
4356b43ae21bSJoe Perches# and the line before that not a goto label target like "out:"
4357b43ae21bSJoe Perches		if ($sline =~ /^[ \+]}\s*$/ &&
4358b43ae21bSJoe Perches		    $prevline =~ /^\+\treturn\s*;\s*$/ &&
4359b43ae21bSJoe Perches		    $linenr >= 3 &&
4360b43ae21bSJoe Perches		    $lines[$linenr - 3] =~ /^[ +]/ &&
4361b43ae21bSJoe Perches		    $lines[$linenr - 3] !~ /^[ +]\s*$Ident\s*:/) {
43629819cf25SJoe Perches			WARN("RETURN_VOID",
4363b43ae21bSJoe Perches			     "void function return statements are not generally useful\n" . $hereprev);
43649819cf25SJoe Perches               }
43659819cf25SJoe Perches
4366189248d8SJoe Perches# if statements using unnecessary parentheses - ie: if ((foo == bar))
4367189248d8SJoe Perches		if ($^V && $^V ge 5.10.0 &&
4368189248d8SJoe Perches		    $line =~ /\bif\s*((?:\(\s*){2,})/) {
4369189248d8SJoe Perches			my $openparens = $1;
4370189248d8SJoe Perches			my $count = $openparens =~ tr@\(@\(@;
4371189248d8SJoe Perches			my $msg = "";
4372189248d8SJoe Perches			if ($line =~ /\bif\s*(?:\(\s*){$count,$count}$LvalOrFunc\s*($Compare)\s*$LvalOrFunc(?:\s*\)){$count,$count}/) {
4373189248d8SJoe Perches				my $comp = $4;	#Not $1 because of $LvalOrFunc
4374189248d8SJoe Perches				$msg = " - maybe == should be = ?" if ($comp eq "==");
4375189248d8SJoe Perches				WARN("UNNECESSARY_PARENTHESES",
4376189248d8SJoe Perches				     "Unnecessary parentheses$msg\n" . $herecurr);
4377189248d8SJoe Perches			}
4378189248d8SJoe Perches		}
4379189248d8SJoe Perches
4380c5595fa2SJoe Perches# comparisons with a constant or upper case identifier on the left
4381c5595fa2SJoe Perches#	avoid cases like "foo + BAR < baz"
4382c5595fa2SJoe Perches#	only fix matches surrounded by parentheses to avoid incorrect
4383c5595fa2SJoe Perches#	conversions like "FOO < baz() + 5" being "misfixed" to "baz() > FOO + 5"
4384c5595fa2SJoe Perches		if ($^V && $^V ge 5.10.0 &&
4385c5595fa2SJoe Perches		    $line =~ /^\+(.*)\b($Constant|[A-Z_][A-Z0-9_]*)\s*($Compare)\s*($LvalOrFunc)/) {
4386c5595fa2SJoe Perches			my $lead = $1;
4387c5595fa2SJoe Perches			my $const = $2;
4388c5595fa2SJoe Perches			my $comp = $3;
4389c5595fa2SJoe Perches			my $to = $4;
4390c5595fa2SJoe Perches			my $newcomp = $comp;
4391f39e1769SJoe Perches			if ($lead !~ /(?:$Operators|\.)\s*$/ &&
4392c5595fa2SJoe Perches			    $to !~ /^(?:Constant|[A-Z_][A-Z0-9_]*)$/ &&
4393c5595fa2SJoe Perches			    WARN("CONSTANT_COMPARISON",
4394c5595fa2SJoe Perches				 "Comparisons should place the constant on the right side of the test\n" . $herecurr) &&
4395c5595fa2SJoe Perches			    $fix) {
4396c5595fa2SJoe Perches				if ($comp eq "<") {
4397c5595fa2SJoe Perches					$newcomp = ">";
4398c5595fa2SJoe Perches				} elsif ($comp eq "<=") {
4399c5595fa2SJoe Perches					$newcomp = ">=";
4400c5595fa2SJoe Perches				} elsif ($comp eq ">") {
4401c5595fa2SJoe Perches					$newcomp = "<";
4402c5595fa2SJoe Perches				} elsif ($comp eq ">=") {
4403c5595fa2SJoe Perches					$newcomp = "<=";
4404c5595fa2SJoe Perches				}
4405c5595fa2SJoe Perches				$fixed[$fixlinenr] =~ s/\(\s*\Q$const\E\s*$Compare\s*\Q$to\E\s*\)/($to $newcomp $const)/;
4406c5595fa2SJoe Perches			}
4407c5595fa2SJoe Perches		}
4408c5595fa2SJoe Perches
4409f34e4a4fSJoe Perches# Return of what appears to be an errno should normally be negative
4410f34e4a4fSJoe Perches		if ($sline =~ /\breturn(?:\s*\(+\s*|\s+)(E[A-Z]+)(?:\s*\)+\s*|\s*)[;:,]/) {
441153a3c448SAndy Whitcroft			my $name = $1;
441253a3c448SAndy Whitcroft			if ($name ne 'EOF' && $name ne 'ERROR') {
4413000d1cc1SJoe Perches				WARN("USE_NEGATIVE_ERRNO",
4414f34e4a4fSJoe Perches				     "return of an errno should typically be negative (ie: return -$1)\n" . $herecurr);
441553a3c448SAndy Whitcroft			}
441653a3c448SAndy Whitcroft		}
4417c45dcabdSAndy Whitcroft
44180a920b5bSAndy Whitcroft# Need a space before open parenthesis after if, while etc
44194a0df2efSAndy Whitcroft		if ($line =~ /\b(if|while|for|switch)\(/) {
44203705ce5bSJoe Perches			if (ERROR("SPACING",
44213705ce5bSJoe Perches				  "space required before the open parenthesis '('\n" . $herecurr) &&
44223705ce5bSJoe Perches			    $fix) {
4423194f66fcSJoe Perches				$fixed[$fixlinenr] =~
44243705ce5bSJoe Perches				    s/\b(if|while|for|switch)\(/$1 \(/;
44253705ce5bSJoe Perches			}
44260a920b5bSAndy Whitcroft		}
44270a920b5bSAndy Whitcroft
4428f5fe35ddSAndy Whitcroft# Check for illegal assignment in if conditional -- and check for trailing
4429f5fe35ddSAndy Whitcroft# statements after the conditional.
4430170d3a22SAndy Whitcroft		if ($line =~ /do\s*(?!{)/) {
44313e469cdcSAndy Whitcroft			($stat, $cond, $line_nr_next, $remain_next, $off_next) =
44323e469cdcSAndy Whitcroft				ctx_statement_block($linenr, $realcnt, 0)
44333e469cdcSAndy Whitcroft					if (!defined $stat);
4434170d3a22SAndy Whitcroft			my ($stat_next) = ctx_statement_block($line_nr_next,
4435170d3a22SAndy Whitcroft						$remain_next, $off_next);
4436170d3a22SAndy Whitcroft			$stat_next =~ s/\n./\n /g;
4437170d3a22SAndy Whitcroft			##print "stat<$stat> stat_next<$stat_next>\n";
4438170d3a22SAndy Whitcroft
4439170d3a22SAndy Whitcroft			if ($stat_next =~ /^\s*while\b/) {
4440170d3a22SAndy Whitcroft				# If the statement carries leading newlines,
4441170d3a22SAndy Whitcroft				# then count those as offsets.
4442170d3a22SAndy Whitcroft				my ($whitespace) =
4443170d3a22SAndy Whitcroft					($stat_next =~ /^((?:\s*\n[+-])*\s*)/s);
4444170d3a22SAndy Whitcroft				my $offset =
4445170d3a22SAndy Whitcroft					statement_rawlines($whitespace) - 1;
4446170d3a22SAndy Whitcroft
4447170d3a22SAndy Whitcroft				$suppress_whiletrailers{$line_nr_next +
4448170d3a22SAndy Whitcroft								$offset} = 1;
4449170d3a22SAndy Whitcroft			}
4450170d3a22SAndy Whitcroft		}
4451170d3a22SAndy Whitcroft		if (!defined $suppress_whiletrailers{$linenr} &&
4452c11230f4SJoe Perches		    defined($stat) && defined($cond) &&
4453170d3a22SAndy Whitcroft		    $line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) {
4454171ae1a4SAndy Whitcroft			my ($s, $c) = ($stat, $cond);
44558905a67cSAndy Whitcroft
4456b53c8e10SAndy Whitcroft			if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/s) {
4457000d1cc1SJoe Perches				ERROR("ASSIGN_IN_IF",
4458000d1cc1SJoe Perches				      "do not use assignment in if condition\n" . $herecurr);
44598905a67cSAndy Whitcroft			}
44608905a67cSAndy Whitcroft
44618905a67cSAndy Whitcroft			# Find out what is on the end of the line after the
44628905a67cSAndy Whitcroft			# conditional.
4463773647a0SAndy Whitcroft			substr($s, 0, length($c), '');
44648905a67cSAndy Whitcroft			$s =~ s/\n.*//g;
446513214adfSAndy Whitcroft			$s =~ s/$;//g; 	# Remove any comments
446653210168SAndy Whitcroft			if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ &&
446753210168SAndy Whitcroft			    $c !~ /}\s*while\s*/)
4468773647a0SAndy Whitcroft			{
4469bb44ad39SAndy Whitcroft				# Find out how long the conditional actually is.
4470bb44ad39SAndy Whitcroft				my @newlines = ($c =~ /\n/gs);
4471bb44ad39SAndy Whitcroft				my $cond_lines = 1 + $#newlines;
447242bdf74cSHidetoshi Seto				my $stat_real = '';
4473bb44ad39SAndy Whitcroft
447442bdf74cSHidetoshi Seto				$stat_real = raw_line($linenr, $cond_lines)
447542bdf74cSHidetoshi Seto							. "\n" if ($cond_lines);
4476bb44ad39SAndy Whitcroft				if (defined($stat_real) && $cond_lines > 1) {
4477bb44ad39SAndy Whitcroft					$stat_real = "[...]\n$stat_real";
4478bb44ad39SAndy Whitcroft				}
4479bb44ad39SAndy Whitcroft
4480000d1cc1SJoe Perches				ERROR("TRAILING_STATEMENTS",
4481000d1cc1SJoe Perches				      "trailing statements should be on next line\n" . $herecurr . $stat_real);
44828905a67cSAndy Whitcroft			}
44838905a67cSAndy Whitcroft		}
44848905a67cSAndy Whitcroft
448513214adfSAndy Whitcroft# Check for bitwise tests written as boolean
448613214adfSAndy Whitcroft		if ($line =~ /
448713214adfSAndy Whitcroft			(?:
448813214adfSAndy Whitcroft				(?:\[|\(|\&\&|\|\|)
448913214adfSAndy Whitcroft				\s*0[xX][0-9]+\s*
449013214adfSAndy Whitcroft				(?:\&\&|\|\|)
449113214adfSAndy Whitcroft			|
449213214adfSAndy Whitcroft				(?:\&\&|\|\|)
449313214adfSAndy Whitcroft				\s*0[xX][0-9]+\s*
449413214adfSAndy Whitcroft				(?:\&\&|\|\||\)|\])
449513214adfSAndy Whitcroft			)/x)
449613214adfSAndy Whitcroft		{
4497000d1cc1SJoe Perches			WARN("HEXADECIMAL_BOOLEAN_TEST",
4498000d1cc1SJoe Perches			     "boolean test with hexadecimal, perhaps just 1 \& or \|?\n" . $herecurr);
449913214adfSAndy Whitcroft		}
450013214adfSAndy Whitcroft
45018905a67cSAndy Whitcroft# if and else should not have general statements after it
450213214adfSAndy Whitcroft		if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/) {
450313214adfSAndy Whitcroft			my $s = $1;
450413214adfSAndy Whitcroft			$s =~ s/$;//g; 	# Remove any comments
450513214adfSAndy Whitcroft			if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) {
4506000d1cc1SJoe Perches				ERROR("TRAILING_STATEMENTS",
4507000d1cc1SJoe Perches				      "trailing statements should be on next line\n" . $herecurr);
45080a920b5bSAndy Whitcroft			}
450913214adfSAndy Whitcroft		}
451039667782SAndy Whitcroft# if should not continue a brace
451139667782SAndy Whitcroft		if ($line =~ /}\s*if\b/) {
4512000d1cc1SJoe Perches			ERROR("TRAILING_STATEMENTS",
4513048b123fSRasmus Villemoes			      "trailing statements should be on next line (or did you mean 'else if'?)\n" .
451439667782SAndy Whitcroft				$herecurr);
451539667782SAndy Whitcroft		}
4516a1080bf8SAndy Whitcroft# case and default should not have general statements after them
4517a1080bf8SAndy Whitcroft		if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
4518a1080bf8SAndy Whitcroft		    $line !~ /\G(?:
45193fef12d6SAndy Whitcroft			(?:\s*$;*)(?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$|
4520a1080bf8SAndy Whitcroft			\s*return\s+
4521a1080bf8SAndy Whitcroft		    )/xg)
4522a1080bf8SAndy Whitcroft		{
4523000d1cc1SJoe Perches			ERROR("TRAILING_STATEMENTS",
4524000d1cc1SJoe Perches			      "trailing statements should be on next line\n" . $herecurr);
4525a1080bf8SAndy Whitcroft		}
45260a920b5bSAndy Whitcroft
45270a920b5bSAndy Whitcroft		# Check for }<nl>else {, these must be at the same
45280a920b5bSAndy Whitcroft		# indent level to be relevant to each other.
45298b8856f4SJoe Perches		if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ &&
45300a920b5bSAndy Whitcroft		    $previndent == $indent) {
45318b8856f4SJoe Perches			if (ERROR("ELSE_AFTER_BRACE",
45328b8856f4SJoe Perches				  "else should follow close brace '}'\n" . $hereprev) &&
45338b8856f4SJoe Perches			    $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
45348b8856f4SJoe Perches				fix_delete_line($fixlinenr - 1, $prevrawline);
45358b8856f4SJoe Perches				fix_delete_line($fixlinenr, $rawline);
45368b8856f4SJoe Perches				my $fixedline = $prevrawline;
45378b8856f4SJoe Perches				$fixedline =~ s/}\s*$//;
45388b8856f4SJoe Perches				if ($fixedline !~ /^\+\s*$/) {
45398b8856f4SJoe Perches					fix_insert_line($fixlinenr, $fixedline);
45408b8856f4SJoe Perches				}
45418b8856f4SJoe Perches				$fixedline = $rawline;
45428b8856f4SJoe Perches				$fixedline =~ s/^(.\s*)else/$1} else/;
45438b8856f4SJoe Perches				fix_insert_line($fixlinenr, $fixedline);
45448b8856f4SJoe Perches			}
45450a920b5bSAndy Whitcroft		}
45460a920b5bSAndy Whitcroft
45478b8856f4SJoe Perches		if ($prevline=~/}\s*$/ and $line=~/^.\s*while\s*/ &&
4548c2fdda0dSAndy Whitcroft		    $previndent == $indent) {
4549c2fdda0dSAndy Whitcroft			my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0);
4550c2fdda0dSAndy Whitcroft
4551c2fdda0dSAndy Whitcroft			# Find out what is on the end of the line after the
4552c2fdda0dSAndy Whitcroft			# conditional.
4553773647a0SAndy Whitcroft			substr($s, 0, length($c), '');
4554c2fdda0dSAndy Whitcroft			$s =~ s/\n.*//g;
4555c2fdda0dSAndy Whitcroft
4556c2fdda0dSAndy Whitcroft			if ($s =~ /^\s*;/) {
45578b8856f4SJoe Perches				if (ERROR("WHILE_AFTER_BRACE",
45588b8856f4SJoe Perches					  "while should follow close brace '}'\n" . $hereprev) &&
45598b8856f4SJoe Perches				    $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
45608b8856f4SJoe Perches					fix_delete_line($fixlinenr - 1, $prevrawline);
45618b8856f4SJoe Perches					fix_delete_line($fixlinenr, $rawline);
45628b8856f4SJoe Perches					my $fixedline = $prevrawline;
45638b8856f4SJoe Perches					my $trailing = $rawline;
45648b8856f4SJoe Perches					$trailing =~ s/^\+//;
45658b8856f4SJoe Perches					$trailing = trim($trailing);
45668b8856f4SJoe Perches					$fixedline =~ s/}\s*$/} $trailing/;
45678b8856f4SJoe Perches					fix_insert_line($fixlinenr, $fixedline);
45688b8856f4SJoe Perches				}
4569c2fdda0dSAndy Whitcroft			}
4570c2fdda0dSAndy Whitcroft		}
4571c2fdda0dSAndy Whitcroft
457295e2c602SJoe Perches#Specific variable tests
4573323c1260SJoe Perches		while ($line =~ m{($Constant|$Lval)}g) {
4574323c1260SJoe Perches			my $var = $1;
457595e2c602SJoe Perches
457695e2c602SJoe Perches#gcc binary extension
457795e2c602SJoe Perches			if ($var =~ /^$Binary$/) {
4578d5e616fcSJoe Perches				if (WARN("GCC_BINARY_CONSTANT",
4579d5e616fcSJoe Perches					 "Avoid gcc v4.3+ binary constant extension: <$var>\n" . $herecurr) &&
4580d5e616fcSJoe Perches				    $fix) {
4581d5e616fcSJoe Perches					my $hexval = sprintf("0x%x", oct($var));
4582194f66fcSJoe Perches					$fixed[$fixlinenr] =~
4583d5e616fcSJoe Perches					    s/\b$var\b/$hexval/;
4584d5e616fcSJoe Perches				}
458595e2c602SJoe Perches			}
458695e2c602SJoe Perches
458795e2c602SJoe Perches#CamelCase
4588807bd26cSJoe Perches			if ($var !~ /^$Constant$/ &&
4589be79794bSJoe Perches			    $var =~ /[A-Z][a-z]|[a-z][A-Z]/ &&
459022735ce8SJoe Perches#Ignore Page<foo> variants
4591807bd26cSJoe Perches			    $var !~ /^(?:Clear|Set|TestClear|TestSet|)Page[A-Z]/ &&
459222735ce8SJoe Perches#Ignore SI style variants like nS, mV and dB (ie: max_uV, regulator_min_uA_show)
4593f5123576SJulius Werner			    $var !~ /^(?:[a-z_]*?)_?[a-z][A-Z](?:_[a-z_]+)?$/ &&
4594f5123576SJulius Werner#Ignore some three character SI units explicitly, like MiB and KHz
4595f5123576SJulius Werner			    $var !~ /^(?:[a-z_]*?)_?(?:[KMGT]iB|[KMGT]?Hz)(?:_[a-z_]+)?$/) {
45967e781f67SJoe Perches				while ($var =~ m{($Ident)}g) {
45977e781f67SJoe Perches					my $word = $1;
45987e781f67SJoe Perches					next if ($word !~ /[A-Z][a-z]|[a-z][A-Z]/);
4599d8b07710SJoe Perches					if ($check) {
4600d8b07710SJoe Perches						seed_camelcase_includes();
4601d8b07710SJoe Perches						if (!$file && !$camelcase_file_seeded) {
4602d8b07710SJoe Perches							seed_camelcase_file($realfile);
4603d8b07710SJoe Perches							$camelcase_file_seeded = 1;
4604d8b07710SJoe Perches						}
4605d8b07710SJoe Perches					}
46067e781f67SJoe Perches					if (!defined $camelcase{$word}) {
46077e781f67SJoe Perches						$camelcase{$word} = 1;
4608be79794bSJoe Perches						CHK("CAMELCASE",
46097e781f67SJoe Perches						    "Avoid CamelCase: <$word>\n" . $herecurr);
46107e781f67SJoe Perches					}
4611323c1260SJoe Perches				}
4612323c1260SJoe Perches			}
46133445686aSJoe Perches		}
46140a920b5bSAndy Whitcroft
46150a920b5bSAndy Whitcroft#no spaces allowed after \ in define
4616d5e616fcSJoe Perches		if ($line =~ /\#\s*define.*\\\s+$/) {
4617d5e616fcSJoe Perches			if (WARN("WHITESPACE_AFTER_LINE_CONTINUATION",
4618d5e616fcSJoe Perches				 "Whitespace after \\ makes next lines useless\n" . $herecurr) &&
4619d5e616fcSJoe Perches			    $fix) {
4620194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\s+$//;
4621d5e616fcSJoe Perches			}
46220a920b5bSAndy Whitcroft		}
46230a920b5bSAndy Whitcroft
46240e212e0aSFabian Frederick# warn if <asm/foo.h> is #included and <linux/foo.h> is available and includes
46250e212e0aSFabian Frederick# itself <asm/foo.h> (uses RAW line)
4626c45dcabdSAndy Whitcroft		if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) {
4627e09dec48SAndy Whitcroft			my $file = "$1.h";
4628e09dec48SAndy Whitcroft			my $checkfile = "include/linux/$file";
4629e09dec48SAndy Whitcroft			if (-f "$root/$checkfile" &&
4630e09dec48SAndy Whitcroft			    $realfile ne $checkfile &&
46317840a94cSWolfram Sang			    $1 !~ /$allowed_asm_includes/)
4632c45dcabdSAndy Whitcroft			{
46330e212e0aSFabian Frederick				my $asminclude = `grep -Ec "#include\\s+<asm/$file>" $root/$checkfile`;
46340e212e0aSFabian Frederick				if ($asminclude > 0) {
4635e09dec48SAndy Whitcroft					if ($realfile =~ m{^arch/}) {
4636000d1cc1SJoe Perches						CHK("ARCH_INCLUDE_LINUX",
4637000d1cc1SJoe Perches						    "Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
4638e09dec48SAndy Whitcroft					} else {
4639000d1cc1SJoe Perches						WARN("INCLUDE_LINUX",
4640000d1cc1SJoe Perches						     "Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
4641e09dec48SAndy Whitcroft					}
46420a920b5bSAndy Whitcroft				}
46430a920b5bSAndy Whitcroft			}
46440e212e0aSFabian Frederick		}
46450a920b5bSAndy Whitcroft
4646653d4876SAndy Whitcroft# multi-statement macros should be enclosed in a do while loop, grab the
4647653d4876SAndy Whitcroft# first statement and ensure its the whole macro if its not enclosed
4648cf655043SAndy Whitcroft# in a known good container
4649b8f96a31SAndy Whitcroft		if ($realfile !~ m@/vmlinux.lds.h$@ &&
4650b8f96a31SAndy Whitcroft		    $line =~ /^.\s*\#\s*define\s*$Ident(\()?/) {
4651d8aaf121SAndy Whitcroft			my $ln = $linenr;
4652d8aaf121SAndy Whitcroft			my $cnt = $realcnt;
4653c45dcabdSAndy Whitcroft			my ($off, $dstat, $dcond, $rest);
4654c45dcabdSAndy Whitcroft			my $ctx = '';
465508a2843eSJoe Perches			my $has_flow_statement = 0;
465608a2843eSJoe Perches			my $has_arg_concat = 0;
4657c45dcabdSAndy Whitcroft			($dstat, $dcond, $ln, $cnt, $off) =
4658f74bd194SAndy Whitcroft				ctx_statement_block($linenr, $realcnt, 0);
4659f74bd194SAndy Whitcroft			$ctx = $dstat;
4660c45dcabdSAndy Whitcroft			#print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n";
4661a3bb97a7SAndy Whitcroft			#print "LINE<$lines[$ln-1]> len<" . length($lines[$ln-1]) . "\n";
4662c45dcabdSAndy Whitcroft
466308a2843eSJoe Perches			$has_flow_statement = 1 if ($ctx =~ /\b(goto|return)\b/);
466462e15a6dSJoe Perches			$has_arg_concat = 1 if ($ctx =~ /\#\#/ && $ctx !~ /\#\#\s*(?:__VA_ARGS__|args)\b/);
466508a2843eSJoe Perches
4666f74bd194SAndy Whitcroft			$dstat =~ s/^.\s*\#\s*define\s+$Ident(?:\([^\)]*\))?\s*//;
4667292f1a9bSAndy Whitcroft			$dstat =~ s/$;//g;
4668c45dcabdSAndy Whitcroft			$dstat =~ s/\\\n.//g;
4669c45dcabdSAndy Whitcroft			$dstat =~ s/^\s*//s;
4670c45dcabdSAndy Whitcroft			$dstat =~ s/\s*$//s;
4671c45dcabdSAndy Whitcroft
4672c45dcabdSAndy Whitcroft			# Flatten any parentheses and braces
4673bf30d6edSAndy Whitcroft			while ($dstat =~ s/\([^\(\)]*\)/1/ ||
4674bf30d6edSAndy Whitcroft			       $dstat =~ s/\{[^\{\}]*\}/1/ ||
46756b10df42SVladimir Zapolskiy			       $dstat =~ s/.\[[^\[\]]*\]/1/)
4676bf30d6edSAndy Whitcroft			{
4677c45dcabdSAndy Whitcroft			}
4678c45dcabdSAndy Whitcroft
4679e45bab8eSAndy Whitcroft			# Flatten any obvious string concatentation.
468033acb54aSJoe Perches			while ($dstat =~ s/($String)\s*$Ident/$1/ ||
468133acb54aSJoe Perches			       $dstat =~ s/$Ident\s*($String)/$1/)
4682e45bab8eSAndy Whitcroft			{
4683e45bab8eSAndy Whitcroft			}
4684e45bab8eSAndy Whitcroft
468542e15293SJoe Perches			# Make asm volatile uses seem like a generic function
468642e15293SJoe Perches			$dstat =~ s/\b_*asm_*\s+_*volatile_*\b/asm_volatile/g;
468742e15293SJoe Perches
4688c45dcabdSAndy Whitcroft			my $exceptions = qr{
4689c45dcabdSAndy Whitcroft				$Declare|
4690c45dcabdSAndy Whitcroft				module_param_named|
4691a0a0a7a9SKees Cook				MODULE_PARM_DESC|
4692c45dcabdSAndy Whitcroft				DECLARE_PER_CPU|
4693c45dcabdSAndy Whitcroft				DEFINE_PER_CPU|
4694383099fdSAndy Whitcroft				__typeof__\(|
469522fd2d3eSStefani Seibold				union|
469622fd2d3eSStefani Seibold				struct|
4697ea71a0a0SAndy Whitcroft				\.$Ident\s*=\s*|
46986b10df42SVladimir Zapolskiy				^\"|\"$|
46996b10df42SVladimir Zapolskiy				^\[
4700c45dcabdSAndy Whitcroft			}x;
47015eaa20b9SAndy Whitcroft			#print "REST<$rest> dstat<$dstat> ctx<$ctx>\n";
4702f74bd194SAndy Whitcroft			if ($dstat ne '' &&
4703f74bd194SAndy Whitcroft			    $dstat !~ /^(?:$Ident|-?$Constant),$/ &&			# 10, // foo(),
4704f74bd194SAndy Whitcroft			    $dstat !~ /^(?:$Ident|-?$Constant);$/ &&			# foo();
47053cc4b1c3SJoe Perches			    $dstat !~ /^[!~-]?(?:$Lval|$Constant)$/ &&		# 10 // foo() // !foo // ~foo // -foo // foo->bar // foo.bar->baz
4706356fd398SJoe Perches			    $dstat !~ /^'X'$/ && $dstat !~ /^'XX'$/ &&			# character constants
4707f74bd194SAndy Whitcroft			    $dstat !~ /$exceptions/ &&
4708f74bd194SAndy Whitcroft			    $dstat !~ /^\.$Ident\s*=/ &&				# .foo =
4709e942e2c3SJoe Perches			    $dstat !~ /^(?:\#\s*$Ident|\#\s*$Constant)\s*$/ &&		# stringification #foo
471072f115f9SAndy Whitcroft			    $dstat !~ /^do\s*$Constant\s*while\s*$Constant;?$/ &&	# do {...} while (...); // do {...} while (...)
4711f74bd194SAndy Whitcroft			    $dstat !~ /^for\s*$Constant$/ &&				# for (...)
4712f74bd194SAndy Whitcroft			    $dstat !~ /^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ &&	# for (...) bar()
4713f74bd194SAndy Whitcroft			    $dstat !~ /^do\s*{/ &&					# do {...
47144e5d56bdSEddie Kovsky			    $dstat !~ /^\(\{/ &&						# ({...
4715f95a7e6aSJoe Perches			    $ctx !~ /^.\s*#\s*define\s+TRACE_(?:SYSTEM|INCLUDE_FILE|INCLUDE_PATH)\b/)
4716c45dcabdSAndy Whitcroft			{
4717f74bd194SAndy Whitcroft				$ctx =~ s/\n*$//;
4718f74bd194SAndy Whitcroft				my $herectx = $here . "\n";
4719f74bd194SAndy Whitcroft				my $cnt = statement_rawlines($ctx);
4720f74bd194SAndy Whitcroft
4721f74bd194SAndy Whitcroft				for (my $n = 0; $n < $cnt; $n++) {
4722f74bd194SAndy Whitcroft					$herectx .= raw_line($linenr, $n) . "\n";
4723c45dcabdSAndy Whitcroft				}
4724c45dcabdSAndy Whitcroft
4725f74bd194SAndy Whitcroft				if ($dstat =~ /;/) {
4726f74bd194SAndy Whitcroft					ERROR("MULTISTATEMENT_MACRO_USE_DO_WHILE",
4727f74bd194SAndy Whitcroft					      "Macros with multiple statements should be enclosed in a do - while loop\n" . "$herectx");
4728f74bd194SAndy Whitcroft				} else {
4729000d1cc1SJoe Perches					ERROR("COMPLEX_MACRO",
4730388982b5SAndrew Morton					      "Macros with complex values should be enclosed in parentheses\n" . "$herectx");
4731d8aaf121SAndy Whitcroft				}
47320a920b5bSAndy Whitcroft			}
47335023d347SJoe Perches
473408a2843eSJoe Perches# check for macros with flow control, but without ## concatenation
473508a2843eSJoe Perches# ## concatenation is commonly a macro that defines a function so ignore those
473608a2843eSJoe Perches			if ($has_flow_statement && !$has_arg_concat) {
473708a2843eSJoe Perches				my $herectx = $here . "\n";
473808a2843eSJoe Perches				my $cnt = statement_rawlines($ctx);
473908a2843eSJoe Perches
474008a2843eSJoe Perches				for (my $n = 0; $n < $cnt; $n++) {
474108a2843eSJoe Perches					$herectx .= raw_line($linenr, $n) . "\n";
474208a2843eSJoe Perches				}
474308a2843eSJoe Perches				WARN("MACRO_WITH_FLOW_CONTROL",
474408a2843eSJoe Perches				     "Macros with flow control statements should be avoided\n" . "$herectx");
474508a2843eSJoe Perches			}
474608a2843eSJoe Perches
4747481eb486SJoe Perches# check for line continuations outside of #defines, preprocessor #, and asm
47485023d347SJoe Perches
47495023d347SJoe Perches		} else {
47505023d347SJoe Perches			if ($prevline !~ /^..*\\$/ &&
4751481eb486SJoe Perches			    $line !~ /^\+\s*\#.*\\$/ &&		# preprocessor
4752481eb486SJoe Perches			    $line !~ /^\+.*\b(__asm__|asm)\b.*\\$/ &&	# asm
47535023d347SJoe Perches			    $line =~ /^\+.*\\$/) {
47545023d347SJoe Perches				WARN("LINE_CONTINUATIONS",
47555023d347SJoe Perches				     "Avoid unnecessary line continuations\n" . $herecurr);
47565023d347SJoe Perches			}
4757653d4876SAndy Whitcroft		}
47580a920b5bSAndy Whitcroft
4759b13edf7fSJoe Perches# do {} while (0) macro tests:
4760b13edf7fSJoe Perches# single-statement macros do not need to be enclosed in do while (0) loop,
4761b13edf7fSJoe Perches# macro should not end with a semicolon
4762b13edf7fSJoe Perches		if ($^V && $^V ge 5.10.0 &&
4763b13edf7fSJoe Perches		    $realfile !~ m@/vmlinux.lds.h$@ &&
4764b13edf7fSJoe Perches		    $line =~ /^.\s*\#\s*define\s+$Ident(\()?/) {
4765b13edf7fSJoe Perches			my $ln = $linenr;
4766b13edf7fSJoe Perches			my $cnt = $realcnt;
4767b13edf7fSJoe Perches			my ($off, $dstat, $dcond, $rest);
4768b13edf7fSJoe Perches			my $ctx = '';
4769b13edf7fSJoe Perches			($dstat, $dcond, $ln, $cnt, $off) =
4770b13edf7fSJoe Perches				ctx_statement_block($linenr, $realcnt, 0);
4771b13edf7fSJoe Perches			$ctx = $dstat;
4772b13edf7fSJoe Perches
4773b13edf7fSJoe Perches			$dstat =~ s/\\\n.//g;
47741b36b201SJoe Perches			$dstat =~ s/$;/ /g;
4775b13edf7fSJoe Perches
4776b13edf7fSJoe Perches			if ($dstat =~ /^\+\s*#\s*define\s+$Ident\s*${balanced_parens}\s*do\s*{(.*)\s*}\s*while\s*\(\s*0\s*\)\s*([;\s]*)\s*$/) {
4777b13edf7fSJoe Perches				my $stmts = $2;
4778b13edf7fSJoe Perches				my $semis = $3;
4779b13edf7fSJoe Perches
4780b13edf7fSJoe Perches				$ctx =~ s/\n*$//;
4781b13edf7fSJoe Perches				my $cnt = statement_rawlines($ctx);
4782b13edf7fSJoe Perches				my $herectx = $here . "\n";
4783b13edf7fSJoe Perches
4784b13edf7fSJoe Perches				for (my $n = 0; $n < $cnt; $n++) {
4785b13edf7fSJoe Perches					$herectx .= raw_line($linenr, $n) . "\n";
4786b13edf7fSJoe Perches				}
4787b13edf7fSJoe Perches
4788ac8e97f8SJoe Perches				if (($stmts =~ tr/;/;/) == 1 &&
4789ac8e97f8SJoe Perches				    $stmts !~ /^\s*(if|while|for|switch)\b/) {
4790b13edf7fSJoe Perches					WARN("SINGLE_STATEMENT_DO_WHILE_MACRO",
4791b13edf7fSJoe Perches					     "Single statement macros should not use a do {} while (0) loop\n" . "$herectx");
4792b13edf7fSJoe Perches				}
4793b13edf7fSJoe Perches				if (defined $semis && $semis ne "") {
4794b13edf7fSJoe Perches					WARN("DO_WHILE_MACRO_WITH_TRAILING_SEMICOLON",
4795b13edf7fSJoe Perches					     "do {} while (0) macros should not be semicolon terminated\n" . "$herectx");
4796b13edf7fSJoe Perches				}
4797f5ef95b1SJoe Perches			} elsif ($dstat =~ /^\+\s*#\s*define\s+$Ident.*;\s*$/) {
4798f5ef95b1SJoe Perches				$ctx =~ s/\n*$//;
4799f5ef95b1SJoe Perches				my $cnt = statement_rawlines($ctx);
4800f5ef95b1SJoe Perches				my $herectx = $here . "\n";
4801f5ef95b1SJoe Perches
4802f5ef95b1SJoe Perches				for (my $n = 0; $n < $cnt; $n++) {
4803f5ef95b1SJoe Perches					$herectx .= raw_line($linenr, $n) . "\n";
4804f5ef95b1SJoe Perches				}
4805f5ef95b1SJoe Perches
4806f5ef95b1SJoe Perches				WARN("TRAILING_SEMICOLON",
4807f5ef95b1SJoe Perches				     "macros should not use a trailing semicolon\n" . "$herectx");
4808b13edf7fSJoe Perches			}
4809b13edf7fSJoe Perches		}
4810b13edf7fSJoe Perches
4811080ba929SMike Frysinger# make sure symbols are always wrapped with VMLINUX_SYMBOL() ...
4812080ba929SMike Frysinger# all assignments may have only one of the following with an assignment:
4813080ba929SMike Frysinger#	.
4814080ba929SMike Frysinger#	ALIGN(...)
4815080ba929SMike Frysinger#	VMLINUX_SYMBOL(...)
4816080ba929SMike Frysinger		if ($realfile eq 'vmlinux.lds.h' && $line =~ /(?:(?:^|\s)$Ident\s*=|=\s*$Ident(?:\s|$))/) {
4817000d1cc1SJoe Perches			WARN("MISSING_VMLINUX_SYMBOL",
4818000d1cc1SJoe Perches			     "vmlinux.lds.h needs VMLINUX_SYMBOL() around C-visible symbols\n" . $herecurr);
4819080ba929SMike Frysinger		}
4820080ba929SMike Frysinger
4821f0a594c1SAndy Whitcroft# check for redundant bracing round if etc
482213214adfSAndy Whitcroft		if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) {
482313214adfSAndy Whitcroft			my ($level, $endln, @chunks) =
4824cf655043SAndy Whitcroft				ctx_statement_full($linenr, $realcnt, 1);
482513214adfSAndy Whitcroft			#print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n";
4826cf655043SAndy Whitcroft			#print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n";
4827cf655043SAndy Whitcroft			if ($#chunks > 0 && $level == 0) {
4828aad4f614SJoe Perches				my @allowed = ();
4829aad4f614SJoe Perches				my $allow = 0;
483013214adfSAndy Whitcroft				my $seen = 0;
4831773647a0SAndy Whitcroft				my $herectx = $here . "\n";
4832cf655043SAndy Whitcroft				my $ln = $linenr - 1;
483313214adfSAndy Whitcroft				for my $chunk (@chunks) {
483413214adfSAndy Whitcroft					my ($cond, $block) = @{$chunk};
483513214adfSAndy Whitcroft
4836773647a0SAndy Whitcroft					# If the condition carries leading newlines, then count those as offsets.
4837773647a0SAndy Whitcroft					my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s);
4838773647a0SAndy Whitcroft					my $offset = statement_rawlines($whitespace) - 1;
4839773647a0SAndy Whitcroft
4840aad4f614SJoe Perches					$allowed[$allow] = 0;
4841773647a0SAndy Whitcroft					#print "COND<$cond> whitespace<$whitespace> offset<$offset>\n";
4842773647a0SAndy Whitcroft
4843773647a0SAndy Whitcroft					# We have looked at and allowed this specific line.
4844773647a0SAndy Whitcroft					$suppress_ifbraces{$ln + $offset} = 1;
4845773647a0SAndy Whitcroft
4846773647a0SAndy Whitcroft					$herectx .= "$rawlines[$ln + $offset]\n[...]\n";
4847cf655043SAndy Whitcroft					$ln += statement_rawlines($block) - 1;
4848cf655043SAndy Whitcroft
4849773647a0SAndy Whitcroft					substr($block, 0, length($cond), '');
485013214adfSAndy Whitcroft
485113214adfSAndy Whitcroft					$seen++ if ($block =~ /^\s*{/);
485213214adfSAndy Whitcroft
4853aad4f614SJoe Perches					#print "cond<$cond> block<$block> allowed<$allowed[$allow]>\n";
4854cf655043SAndy Whitcroft					if (statement_lines($cond) > 1) {
4855cf655043SAndy Whitcroft						#print "APW: ALLOWED: cond<$cond>\n";
4856aad4f614SJoe Perches						$allowed[$allow] = 1;
485713214adfSAndy Whitcroft					}
485813214adfSAndy Whitcroft					if ($block =~/\b(?:if|for|while)\b/) {
4859cf655043SAndy Whitcroft						#print "APW: ALLOWED: block<$block>\n";
4860aad4f614SJoe Perches						$allowed[$allow] = 1;
486113214adfSAndy Whitcroft					}
4862cf655043SAndy Whitcroft					if (statement_block_size($block) > 1) {
4863cf655043SAndy Whitcroft						#print "APW: ALLOWED: lines block<$block>\n";
4864aad4f614SJoe Perches						$allowed[$allow] = 1;
486513214adfSAndy Whitcroft					}
4866aad4f614SJoe Perches					$allow++;
486713214adfSAndy Whitcroft				}
4868aad4f614SJoe Perches				if ($seen) {
4869aad4f614SJoe Perches					my $sum_allowed = 0;
4870aad4f614SJoe Perches					foreach (@allowed) {
4871aad4f614SJoe Perches						$sum_allowed += $_;
4872aad4f614SJoe Perches					}
4873aad4f614SJoe Perches					if ($sum_allowed == 0) {
4874000d1cc1SJoe Perches						WARN("BRACES",
4875000d1cc1SJoe Perches						     "braces {} are not necessary for any arm of this statement\n" . $herectx);
4876aad4f614SJoe Perches					} elsif ($sum_allowed != $allow &&
4877aad4f614SJoe Perches						 $seen != $allow) {
4878aad4f614SJoe Perches						CHK("BRACES",
4879aad4f614SJoe Perches						    "braces {} should be used on all arms of this statement\n" . $herectx);
4880aad4f614SJoe Perches					}
488113214adfSAndy Whitcroft				}
488213214adfSAndy Whitcroft			}
488313214adfSAndy Whitcroft		}
4884773647a0SAndy Whitcroft		if (!defined $suppress_ifbraces{$linenr - 1} &&
488513214adfSAndy Whitcroft					$line =~ /\b(if|while|for|else)\b/) {
4886cf655043SAndy Whitcroft			my $allowed = 0;
4887f0a594c1SAndy Whitcroft
4888cf655043SAndy Whitcroft			# Check the pre-context.
4889cf655043SAndy Whitcroft			if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) {
4890cf655043SAndy Whitcroft				#print "APW: ALLOWED: pre<$1>\n";
4891cf655043SAndy Whitcroft				$allowed = 1;
4892f0a594c1SAndy Whitcroft			}
4893773647a0SAndy Whitcroft
4894773647a0SAndy Whitcroft			my ($level, $endln, @chunks) =
4895773647a0SAndy Whitcroft				ctx_statement_full($linenr, $realcnt, $-[0]);
4896773647a0SAndy Whitcroft
4897cf655043SAndy Whitcroft			# Check the condition.
4898cf655043SAndy Whitcroft			my ($cond, $block) = @{$chunks[0]};
4899773647a0SAndy Whitcroft			#print "CHECKING<$linenr> cond<$cond> block<$block>\n";
4900cf655043SAndy Whitcroft			if (defined $cond) {
4901773647a0SAndy Whitcroft				substr($block, 0, length($cond), '');
4902cf655043SAndy Whitcroft			}
4903cf655043SAndy Whitcroft			if (statement_lines($cond) > 1) {
4904cf655043SAndy Whitcroft				#print "APW: ALLOWED: cond<$cond>\n";
4905cf655043SAndy Whitcroft				$allowed = 1;
4906cf655043SAndy Whitcroft			}
4907cf655043SAndy Whitcroft			if ($block =~/\b(?:if|for|while)\b/) {
4908cf655043SAndy Whitcroft				#print "APW: ALLOWED: block<$block>\n";
4909cf655043SAndy Whitcroft				$allowed = 1;
4910cf655043SAndy Whitcroft			}
4911cf655043SAndy Whitcroft			if (statement_block_size($block) > 1) {
4912cf655043SAndy Whitcroft				#print "APW: ALLOWED: lines block<$block>\n";
4913cf655043SAndy Whitcroft				$allowed = 1;
4914cf655043SAndy Whitcroft			}
4915cf655043SAndy Whitcroft			# Check the post-context.
4916cf655043SAndy Whitcroft			if (defined $chunks[1]) {
4917cf655043SAndy Whitcroft				my ($cond, $block) = @{$chunks[1]};
4918cf655043SAndy Whitcroft				if (defined $cond) {
4919773647a0SAndy Whitcroft					substr($block, 0, length($cond), '');
4920cf655043SAndy Whitcroft				}
4921cf655043SAndy Whitcroft				if ($block =~ /^\s*\{/) {
4922cf655043SAndy Whitcroft					#print "APW: ALLOWED: chunk-1 block<$block>\n";
4923cf655043SAndy Whitcroft					$allowed = 1;
4924cf655043SAndy Whitcroft				}
4925cf655043SAndy Whitcroft			}
4926cf655043SAndy Whitcroft			if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
492769932487SJustin P. Mattock				my $herectx = $here . "\n";
4928f055663cSAndy Whitcroft				my $cnt = statement_rawlines($block);
4929cf655043SAndy Whitcroft
4930f055663cSAndy Whitcroft				for (my $n = 0; $n < $cnt; $n++) {
493169932487SJustin P. Mattock					$herectx .= raw_line($linenr, $n) . "\n";
4932cf655043SAndy Whitcroft				}
4933cf655043SAndy Whitcroft
4934000d1cc1SJoe Perches				WARN("BRACES",
4935000d1cc1SJoe Perches				     "braces {} are not necessary for single statement blocks\n" . $herectx);
4936f0a594c1SAndy Whitcroft			}
4937f0a594c1SAndy Whitcroft		}
4938f0a594c1SAndy Whitcroft
49390979ae66SJoe Perches# check for unnecessary blank lines around braces
494077b9a53aSJoe Perches		if (($line =~ /^.\s*}\s*$/ && $prevrawline =~ /^.\s*$/)) {
4941f8e58219SJoe Perches			if (CHK("BRACES",
4942f8e58219SJoe Perches				"Blank lines aren't necessary before a close brace '}'\n" . $hereprev) &&
4943f8e58219SJoe Perches			    $fix && $prevrawline =~ /^\+/) {
4944f8e58219SJoe Perches				fix_delete_line($fixlinenr - 1, $prevrawline);
4945f8e58219SJoe Perches			}
49460979ae66SJoe Perches		}
494777b9a53aSJoe Perches		if (($rawline =~ /^.\s*$/ && $prevline =~ /^..*{\s*$/)) {
4948f8e58219SJoe Perches			if (CHK("BRACES",
4949f8e58219SJoe Perches				"Blank lines aren't necessary after an open brace '{'\n" . $hereprev) &&
4950f8e58219SJoe Perches			    $fix) {
4951f8e58219SJoe Perches				fix_delete_line($fixlinenr, $rawline);
4952f8e58219SJoe Perches			}
49530979ae66SJoe Perches		}
49540979ae66SJoe Perches
49554a0df2efSAndy Whitcroft# no volatiles please
49566c72ffaaSAndy Whitcroft		my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
49576c72ffaaSAndy Whitcroft		if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
4958000d1cc1SJoe Perches			WARN("VOLATILE",
4959000d1cc1SJoe Perches			     "Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt\n" . $herecurr);
49604a0df2efSAndy Whitcroft		}
49614a0df2efSAndy Whitcroft
49625e4f6ba5SJoe Perches# Check for user-visible strings broken across lines, which breaks the ability
49635e4f6ba5SJoe Perches# to grep for the string.  Make exceptions when the previous string ends in a
49645e4f6ba5SJoe Perches# newline (multiple lines in one string constant) or '\t', '\r', ';', or '{'
49655e4f6ba5SJoe Perches# (common in inline assembly) or is a octal \123 or hexadecimal \xaf value
496633acb54aSJoe Perches		if ($line =~ /^\+\s*$String/ &&
49675e4f6ba5SJoe Perches		    $prevline =~ /"\s*$/ &&
49685e4f6ba5SJoe Perches		    $prevrawline !~ /(?:\\(?:[ntr]|[0-7]{1,3}|x[0-9a-fA-F]{1,2})|;\s*|\{\s*)"\s*$/) {
49695e4f6ba5SJoe Perches			if (WARN("SPLIT_STRING",
49705e4f6ba5SJoe Perches				 "quoted string split across lines\n" . $hereprev) &&
49715e4f6ba5SJoe Perches				     $fix &&
49725e4f6ba5SJoe Perches				     $prevrawline =~ /^\+.*"\s*$/ &&
49735e4f6ba5SJoe Perches				     $last_coalesced_string_linenr != $linenr - 1) {
49745e4f6ba5SJoe Perches				my $extracted_string = get_quoted_string($line, $rawline);
49755e4f6ba5SJoe Perches				my $comma_close = "";
49765e4f6ba5SJoe Perches				if ($rawline =~ /\Q$extracted_string\E(\s*\)\s*;\s*$|\s*,\s*)/) {
49775e4f6ba5SJoe Perches					$comma_close = $1;
49785e4f6ba5SJoe Perches				}
49795e4f6ba5SJoe Perches
49805e4f6ba5SJoe Perches				fix_delete_line($fixlinenr - 1, $prevrawline);
49815e4f6ba5SJoe Perches				fix_delete_line($fixlinenr, $rawline);
49825e4f6ba5SJoe Perches				my $fixedline = $prevrawline;
49835e4f6ba5SJoe Perches				$fixedline =~ s/"\s*$//;
49845e4f6ba5SJoe Perches				$fixedline .= substr($extracted_string, 1) . trim($comma_close);
49855e4f6ba5SJoe Perches				fix_insert_line($fixlinenr - 1, $fixedline);
49865e4f6ba5SJoe Perches				$fixedline = $rawline;
49875e4f6ba5SJoe Perches				$fixedline =~ s/\Q$extracted_string\E\Q$comma_close\E//;
49885e4f6ba5SJoe Perches				if ($fixedline !~ /\+\s*$/) {
49895e4f6ba5SJoe Perches					fix_insert_line($fixlinenr, $fixedline);
49905e4f6ba5SJoe Perches				}
49915e4f6ba5SJoe Perches				$last_coalesced_string_linenr = $linenr;
49925e4f6ba5SJoe Perches			}
49935e4f6ba5SJoe Perches		}
49945e4f6ba5SJoe Perches
49955e4f6ba5SJoe Perches# check for missing a space in a string concatenation
49965e4f6ba5SJoe Perches		if ($prevrawline =~ /[^\\]\w"$/ && $rawline =~ /^\+[\t ]+"\w/) {
49975e4f6ba5SJoe Perches			WARN('MISSING_SPACE',
49985e4f6ba5SJoe Perches			     "break quoted strings at a space character\n" . $hereprev);
49995e4f6ba5SJoe Perches		}
50005e4f6ba5SJoe Perches
50015e4f6ba5SJoe Perches# check for spaces before a quoted newline
50025e4f6ba5SJoe Perches		if ($rawline =~ /^.*\".*\s\\n/) {
50035e4f6ba5SJoe Perches			if (WARN("QUOTED_WHITESPACE_BEFORE_NEWLINE",
50045e4f6ba5SJoe Perches				 "unnecessary whitespace before a quoted newline\n" . $herecurr) &&
50055e4f6ba5SJoe Perches			    $fix) {
50065e4f6ba5SJoe Perches				$fixed[$fixlinenr] =~ s/^(\+.*\".*)\s+\\n/$1\\n/;
50075e4f6ba5SJoe Perches			}
50085e4f6ba5SJoe Perches
50095e4f6ba5SJoe Perches		}
50105e4f6ba5SJoe Perches
5011f17dba4fSJoe Perches# concatenated string without spaces between elements
501233acb54aSJoe Perches		if ($line =~ /$String[A-Z_]/ || $line =~ /[A-Za-z0-9_]$String/) {
5013f17dba4fSJoe Perches			CHK("CONCATENATED_STRING",
5014f17dba4fSJoe Perches			    "Concatenated strings should use spaces between elements\n" . $herecurr);
5015f17dba4fSJoe Perches		}
5016f17dba4fSJoe Perches
501790ad30e5SJoe Perches# uncoalesced string fragments
501833acb54aSJoe Perches		if ($line =~ /$String\s*"/) {
501990ad30e5SJoe Perches			WARN("STRING_FRAGMENTS",
502090ad30e5SJoe Perches			     "Consecutive strings are generally better as a single string\n" . $herecurr);
502190ad30e5SJoe Perches		}
502290ad30e5SJoe Perches
50236e300757SJoe Perches# check for %L{u,d,i} and 0x%[udi] in strings
50245e4f6ba5SJoe Perches		my $string;
50255e4f6ba5SJoe Perches		while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) {
50265e4f6ba5SJoe Perches			$string = substr($rawline, $-[1], $+[1] - $-[1]);
50275e4f6ba5SJoe Perches			$string =~ s/%%/__/g;
50286e300757SJoe Perches			if ($string =~ /(?<!%)%[\*\d\.\$]*L[udi]/) {
50295e4f6ba5SJoe Perches				WARN("PRINTF_L",
50305e4f6ba5SJoe Perches				     "\%Ld/%Lu are not-standard C, use %lld/%llu\n" . $herecurr);
50315e4f6ba5SJoe Perches				last;
50325e4f6ba5SJoe Perches			}
50336e300757SJoe Perches			if ($string =~ /0x%[\*\d\.\$\Llzth]*[udi]/) {
50346e300757SJoe Perches				ERROR("PRINTF_0xDECIMAL",
50356e300757SJoe Perches				      "Prefixing 0x with decimal output is defective\n" . $herecurr);
50366e300757SJoe Perches			}
50375e4f6ba5SJoe Perches		}
50385e4f6ba5SJoe Perches
50395e4f6ba5SJoe Perches# check for line continuations in quoted strings with odd counts of "
50405e4f6ba5SJoe Perches		if ($rawline =~ /\\$/ && $rawline =~ tr/"/"/ % 2) {
50415e4f6ba5SJoe Perches			WARN("LINE_CONTINUATIONS",
50425e4f6ba5SJoe Perches			     "Avoid line continuations in quoted strings\n" . $herecurr);
50435e4f6ba5SJoe Perches		}
50445e4f6ba5SJoe Perches
504500df344fSAndy Whitcroft# warn about #if 0
5046c45dcabdSAndy Whitcroft		if ($line =~ /^.\s*\#\s*if\s+0\b/) {
5047000d1cc1SJoe Perches			CHK("REDUNDANT_CODE",
5048000d1cc1SJoe Perches			    "if this code is redundant consider removing it\n" .
5049de7d4f0eSAndy Whitcroft				$herecurr);
50504a0df2efSAndy Whitcroft		}
50514a0df2efSAndy Whitcroft
505203df4b51SAndy Whitcroft# check for needless "if (<foo>) fn(<foo>)" uses
505303df4b51SAndy Whitcroft		if ($prevline =~ /\bif\s*\(\s*($Lval)\s*\)/) {
5054100425deSJoe Perches			my $tested = quotemeta($1);
5055100425deSJoe Perches			my $expr = '\s*\(\s*' . $tested . '\s*\)\s*;';
5056100425deSJoe Perches			if ($line =~ /\b(kfree|usb_free_urb|debugfs_remove(?:_recursive)?|(?:kmem_cache|mempool|dma_pool)_destroy)$expr/) {
5057100425deSJoe Perches				my $func = $1;
5058100425deSJoe Perches				if (WARN('NEEDLESS_IF',
5059100425deSJoe Perches					 "$func(NULL) is safe and this check is probably not required\n" . $hereprev) &&
5060100425deSJoe Perches				    $fix) {
5061100425deSJoe Perches					my $do_fix = 1;
5062100425deSJoe Perches					my $leading_tabs = "";
5063100425deSJoe Perches					my $new_leading_tabs = "";
5064100425deSJoe Perches					if ($lines[$linenr - 2] =~ /^\+(\t*)if\s*\(\s*$tested\s*\)\s*$/) {
5065100425deSJoe Perches						$leading_tabs = $1;
5066100425deSJoe Perches					} else {
5067100425deSJoe Perches						$do_fix = 0;
5068100425deSJoe Perches					}
5069100425deSJoe Perches					if ($lines[$linenr - 1] =~ /^\+(\t+)$func\s*\(\s*$tested\s*\)\s*;\s*$/) {
5070100425deSJoe Perches						$new_leading_tabs = $1;
5071100425deSJoe Perches						if (length($leading_tabs) + 1 ne length($new_leading_tabs)) {
5072100425deSJoe Perches							$do_fix = 0;
5073100425deSJoe Perches						}
5074100425deSJoe Perches					} else {
5075100425deSJoe Perches						$do_fix = 0;
5076100425deSJoe Perches					}
5077100425deSJoe Perches					if ($do_fix) {
5078100425deSJoe Perches						fix_delete_line($fixlinenr - 1, $prevrawline);
5079100425deSJoe Perches						$fixed[$fixlinenr] =~ s/^\+$new_leading_tabs/\+$leading_tabs/;
5080100425deSJoe Perches					}
5081100425deSJoe Perches				}
50824c432a8fSGreg Kroah-Hartman			}
50834c432a8fSGreg Kroah-Hartman		}
5084f0a594c1SAndy Whitcroft
5085ebfdc409SJoe Perches# check for unnecessary "Out of Memory" messages
5086ebfdc409SJoe Perches		if ($line =~ /^\+.*\b$logFunctions\s*\(/ &&
5087ebfdc409SJoe Perches		    $prevline =~ /^[ \+]\s*if\s*\(\s*(\!\s*|NULL\s*==\s*)?($Lval)(\s*==\s*NULL\s*)?\s*\)/ &&
5088ebfdc409SJoe Perches		    (defined $1 || defined $3) &&
5089ebfdc409SJoe Perches		    $linenr > 3) {
5090ebfdc409SJoe Perches			my $testval = $2;
5091ebfdc409SJoe Perches			my $testline = $lines[$linenr - 3];
5092ebfdc409SJoe Perches
5093ebfdc409SJoe Perches			my ($s, $c) = ctx_statement_block($linenr - 3, $realcnt, 0);
5094ebfdc409SJoe Perches#			print("line: <$line>\nprevline: <$prevline>\ns: <$s>\nc: <$c>\n\n\n");
5095ebfdc409SJoe Perches
5096ebfdc409SJoe 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)/) {
5097ebfdc409SJoe Perches				WARN("OOM_MESSAGE",
5098ebfdc409SJoe Perches				     "Possible unnecessary 'out of memory' message\n" . $hereprev);
5099ebfdc409SJoe Perches			}
5100ebfdc409SJoe Perches		}
5101ebfdc409SJoe Perches
5102f78d98f6SJoe Perches# check for logging functions with KERN_<LEVEL>
5103dcaf1123SPaolo Bonzini		if ($line !~ /printk(?:_ratelimited|_once)?\s*\(/ &&
5104f78d98f6SJoe Perches		    $line =~ /\b$logFunctions\s*\(.*\b(KERN_[A-Z]+)\b/) {
5105f78d98f6SJoe Perches			my $level = $1;
5106f78d98f6SJoe Perches			if (WARN("UNNECESSARY_KERN_LEVEL",
5107f78d98f6SJoe Perches				 "Possible unnecessary $level\n" . $herecurr) &&
5108f78d98f6SJoe Perches			    $fix) {
5109f78d98f6SJoe Perches				$fixed[$fixlinenr] =~ s/\s*$level\s*//;
5110f78d98f6SJoe Perches			}
5111f78d98f6SJoe Perches		}
5112f78d98f6SJoe Perches
5113abb08a53SJoe Perches# check for mask then right shift without a parentheses
5114abb08a53SJoe Perches		if ($^V && $^V ge 5.10.0 &&
5115abb08a53SJoe Perches		    $line =~ /$LvalOrFunc\s*\&\s*($LvalOrFunc)\s*>>/ &&
5116abb08a53SJoe Perches		    $4 !~ /^\&/) { # $LvalOrFunc may be &foo, ignore if so
5117abb08a53SJoe Perches			WARN("MASK_THEN_SHIFT",
5118abb08a53SJoe Perches			     "Possible precedence defect with mask then right shift - may need parentheses\n" . $herecurr);
5119abb08a53SJoe Perches		}
5120abb08a53SJoe Perches
5121b75ac618SJoe Perches# check for pointer comparisons to NULL
5122b75ac618SJoe Perches		if ($^V && $^V ge 5.10.0) {
5123b75ac618SJoe Perches			while ($line =~ /\b$LvalOrFunc\s*(==|\!=)\s*NULL\b/g) {
5124b75ac618SJoe Perches				my $val = $1;
5125b75ac618SJoe Perches				my $equal = "!";
5126b75ac618SJoe Perches				$equal = "" if ($4 eq "!=");
5127b75ac618SJoe Perches				if (CHK("COMPARISON_TO_NULL",
5128b75ac618SJoe Perches					"Comparison to NULL could be written \"${equal}${val}\"\n" . $herecurr) &&
5129b75ac618SJoe Perches					    $fix) {
5130b75ac618SJoe Perches					$fixed[$fixlinenr] =~ s/\b\Q$val\E\s*(?:==|\!=)\s*NULL\b/$equal$val/;
5131b75ac618SJoe Perches				}
5132b75ac618SJoe Perches			}
5133b75ac618SJoe Perches		}
5134b75ac618SJoe Perches
51358716de38SJoe Perches# check for bad placement of section $InitAttribute (e.g.: __initdata)
51368716de38SJoe Perches		if ($line =~ /(\b$InitAttribute\b)/) {
51378716de38SJoe Perches			my $attr = $1;
51388716de38SJoe Perches			if ($line =~ /^\+\s*static\s+(?:const\s+)?(?:$attr\s+)?($NonptrTypeWithAttr)\s+(?:$attr\s+)?($Ident(?:\[[^]]*\])?)\s*[=;]/) {
51398716de38SJoe Perches				my $ptr = $1;
51408716de38SJoe Perches				my $var = $2;
51418716de38SJoe Perches				if ((($ptr =~ /\b(union|struct)\s+$attr\b/ &&
51428716de38SJoe Perches				      ERROR("MISPLACED_INIT",
51438716de38SJoe Perches					    "$attr should be placed after $var\n" . $herecurr)) ||
51448716de38SJoe Perches				     ($ptr !~ /\b(union|struct)\s+$attr\b/ &&
51458716de38SJoe Perches				      WARN("MISPLACED_INIT",
51468716de38SJoe Perches					   "$attr should be placed after $var\n" . $herecurr))) &&
51478716de38SJoe Perches				    $fix) {
5148194f66fcSJoe 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;
51498716de38SJoe Perches				}
51508716de38SJoe Perches			}
51518716de38SJoe Perches		}
51528716de38SJoe Perches
5153e970b884SJoe Perches# check for $InitAttributeData (ie: __initdata) with const
5154e970b884SJoe Perches		if ($line =~ /\bconst\b/ && $line =~ /($InitAttributeData)/) {
5155e970b884SJoe Perches			my $attr = $1;
5156e970b884SJoe Perches			$attr =~ /($InitAttributePrefix)(.*)/;
5157e970b884SJoe Perches			my $attr_prefix = $1;
5158e970b884SJoe Perches			my $attr_type = $2;
5159e970b884SJoe Perches			if (ERROR("INIT_ATTRIBUTE",
5160e970b884SJoe Perches				  "Use of const init definition must use ${attr_prefix}initconst\n" . $herecurr) &&
5161e970b884SJoe Perches			    $fix) {
5162194f66fcSJoe Perches				$fixed[$fixlinenr] =~
5163e970b884SJoe Perches				    s/$InitAttributeData/${attr_prefix}initconst/;
5164e970b884SJoe Perches			}
5165e970b884SJoe Perches		}
5166e970b884SJoe Perches
5167e970b884SJoe Perches# check for $InitAttributeConst (ie: __initconst) without const
5168e970b884SJoe Perches		if ($line !~ /\bconst\b/ && $line =~ /($InitAttributeConst)/) {
5169e970b884SJoe Perches			my $attr = $1;
5170e970b884SJoe Perches			if (ERROR("INIT_ATTRIBUTE",
5171e970b884SJoe Perches				  "Use of $attr requires a separate use of const\n" . $herecurr) &&
5172e970b884SJoe Perches			    $fix) {
5173194f66fcSJoe Perches				my $lead = $fixed[$fixlinenr] =~
5174e970b884SJoe Perches				    /(^\+\s*(?:static\s+))/;
5175e970b884SJoe Perches				$lead = rtrim($1);
5176e970b884SJoe Perches				$lead = "$lead " if ($lead !~ /^\+$/);
5177e970b884SJoe Perches				$lead = "${lead}const ";
5178194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/(^\+\s*(?:static\s+))/$lead/;
5179e970b884SJoe Perches			}
5180e970b884SJoe Perches		}
5181e970b884SJoe Perches
5182c17893c7SJoe Perches# check for __read_mostly with const non-pointer (should just be const)
5183c17893c7SJoe Perches		if ($line =~ /\b__read_mostly\b/ &&
5184c17893c7SJoe Perches		    $line =~ /($Type)\s*$Ident/ && $1 !~ /\*\s*$/ && $1 =~ /\bconst\b/) {
5185c17893c7SJoe Perches			if (ERROR("CONST_READ_MOSTLY",
5186c17893c7SJoe Perches				  "Invalid use of __read_mostly with const type\n" . $herecurr) &&
5187c17893c7SJoe Perches			    $fix) {
5188c17893c7SJoe Perches				$fixed[$fixlinenr] =~ s/\s+__read_mostly\b//;
5189c17893c7SJoe Perches			}
5190c17893c7SJoe Perches		}
5191c17893c7SJoe Perches
5192fbdb8138SJoe Perches# don't use __constant_<foo> functions outside of include/uapi/
5193fbdb8138SJoe Perches		if ($realfile !~ m@^include/uapi/@ &&
5194fbdb8138SJoe Perches		    $line =~ /(__constant_(?:htons|ntohs|[bl]e(?:16|32|64)_to_cpu|cpu_to_[bl]e(?:16|32|64)))\s*\(/) {
5195fbdb8138SJoe Perches			my $constant_func = $1;
5196fbdb8138SJoe Perches			my $func = $constant_func;
5197fbdb8138SJoe Perches			$func =~ s/^__constant_//;
5198fbdb8138SJoe Perches			if (WARN("CONSTANT_CONVERSION",
5199fbdb8138SJoe Perches				 "$constant_func should be $func\n" . $herecurr) &&
5200fbdb8138SJoe Perches			    $fix) {
5201194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\b$constant_func\b/$func/g;
5202fbdb8138SJoe Perches			}
5203fbdb8138SJoe Perches		}
5204fbdb8138SJoe Perches
52051a15a250SPatrick Pannuto# prefer usleep_range over udelay
520637581c28SBruce Allan		if ($line =~ /\budelay\s*\(\s*(\d+)\s*\)/) {
520743c1d77cSJoe Perches			my $delay = $1;
52081a15a250SPatrick Pannuto			# ignore udelay's < 10, however
520943c1d77cSJoe Perches			if (! ($delay < 10) ) {
5210000d1cc1SJoe Perches				CHK("USLEEP_RANGE",
521143c1d77cSJoe Perches				    "usleep_range is preferred over udelay; see Documentation/timers/timers-howto.txt\n" . $herecurr);
521243c1d77cSJoe Perches			}
521343c1d77cSJoe Perches			if ($delay > 2000) {
521443c1d77cSJoe Perches				WARN("LONG_UDELAY",
521543c1d77cSJoe Perches				     "long udelay - prefer mdelay; see arch/arm/include/asm/delay.h\n" . $herecurr);
52161a15a250SPatrick Pannuto			}
52171a15a250SPatrick Pannuto		}
52181a15a250SPatrick Pannuto
521909ef8725SPatrick Pannuto# warn about unexpectedly long msleep's
522009ef8725SPatrick Pannuto		if ($line =~ /\bmsleep\s*\((\d+)\);/) {
522109ef8725SPatrick Pannuto			if ($1 < 20) {
5222000d1cc1SJoe Perches				WARN("MSLEEP",
522343c1d77cSJoe Perches				     "msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt\n" . $herecurr);
522409ef8725SPatrick Pannuto			}
522509ef8725SPatrick Pannuto		}
522609ef8725SPatrick Pannuto
522736ec1939SJoe Perches# check for comparisons of jiffies
522836ec1939SJoe Perches		if ($line =~ /\bjiffies\s*$Compare|$Compare\s*jiffies\b/) {
522936ec1939SJoe Perches			WARN("JIFFIES_COMPARISON",
523036ec1939SJoe Perches			     "Comparing jiffies is almost always wrong; prefer time_after, time_before and friends\n" . $herecurr);
523136ec1939SJoe Perches		}
523236ec1939SJoe Perches
52339d7a34a5SJoe Perches# check for comparisons of get_jiffies_64()
52349d7a34a5SJoe Perches		if ($line =~ /\bget_jiffies_64\s*\(\s*\)\s*$Compare|$Compare\s*get_jiffies_64\s*\(\s*\)/) {
52359d7a34a5SJoe Perches			WARN("JIFFIES_COMPARISON",
52369d7a34a5SJoe Perches			     "Comparing get_jiffies_64() is almost always wrong; prefer time_after64, time_before64 and friends\n" . $herecurr);
52379d7a34a5SJoe Perches		}
52389d7a34a5SJoe Perches
523900df344fSAndy Whitcroft# warn about #ifdefs in C files
5240c45dcabdSAndy Whitcroft#		if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
524100df344fSAndy Whitcroft#			print "#ifdef in C files should be avoided\n";
524200df344fSAndy Whitcroft#			print "$herecurr";
524300df344fSAndy Whitcroft#			$clean = 0;
524400df344fSAndy Whitcroft#		}
524500df344fSAndy Whitcroft
524622f2a2efSAndy Whitcroft# warn about spacing in #ifdefs
5247c45dcabdSAndy Whitcroft		if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) {
52483705ce5bSJoe Perches			if (ERROR("SPACING",
52493705ce5bSJoe Perches				  "exactly one space required after that #$1\n" . $herecurr) &&
52503705ce5bSJoe Perches			    $fix) {
5251194f66fcSJoe Perches				$fixed[$fixlinenr] =~
52523705ce5bSJoe Perches				    s/^(.\s*\#\s*(ifdef|ifndef|elif))\s{2,}/$1 /;
52533705ce5bSJoe Perches			}
52543705ce5bSJoe Perches
525522f2a2efSAndy Whitcroft		}
525622f2a2efSAndy Whitcroft
52574a0df2efSAndy Whitcroft# check for spinlock_t definitions without a comment.
5258171ae1a4SAndy Whitcroft		if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ ||
5259171ae1a4SAndy Whitcroft		    $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) {
52604a0df2efSAndy Whitcroft			my $which = $1;
52614a0df2efSAndy Whitcroft			if (!ctx_has_comment($first_line, $linenr)) {
5262000d1cc1SJoe Perches				CHK("UNCOMMENTED_DEFINITION",
5263000d1cc1SJoe Perches				    "$1 definition without comment\n" . $herecurr);
52644a0df2efSAndy Whitcroft			}
52654a0df2efSAndy Whitcroft		}
52664a0df2efSAndy Whitcroft# check for memory barriers without a comment.
5267402c2553SMichael S. Tsirkin
5268402c2553SMichael S. Tsirkin		my $barriers = qr{
5269402c2553SMichael S. Tsirkin			mb|
5270402c2553SMichael S. Tsirkin			rmb|
5271402c2553SMichael S. Tsirkin			wmb|
5272402c2553SMichael S. Tsirkin			read_barrier_depends
5273402c2553SMichael S. Tsirkin		}x;
5274402c2553SMichael S. Tsirkin		my $barrier_stems = qr{
5275402c2553SMichael S. Tsirkin			mb__before_atomic|
5276402c2553SMichael S. Tsirkin			mb__after_atomic|
5277402c2553SMichael S. Tsirkin			store_release|
5278402c2553SMichael S. Tsirkin			load_acquire|
5279402c2553SMichael S. Tsirkin			store_mb|
5280402c2553SMichael S. Tsirkin			(?:$barriers)
5281402c2553SMichael S. Tsirkin		}x;
5282402c2553SMichael S. Tsirkin		my $all_barriers = qr{
5283402c2553SMichael S. Tsirkin			(?:$barriers)|
528443e361f2SMichael S. Tsirkin			smp_(?:$barrier_stems)|
528543e361f2SMichael S. Tsirkin			virt_(?:$barrier_stems)
5286402c2553SMichael S. Tsirkin		}x;
5287402c2553SMichael S. Tsirkin
5288402c2553SMichael S. Tsirkin		if ($line =~ /\b(?:$all_barriers)\s*\(/) {
52894a0df2efSAndy Whitcroft			if (!ctx_has_comment($first_line, $linenr)) {
5290c1fd7bb9SJoe Perches				WARN("MEMORY_BARRIER",
5291000d1cc1SJoe Perches				     "memory barrier without comment\n" . $herecurr);
52924a0df2efSAndy Whitcroft			}
52934a0df2efSAndy Whitcroft		}
52943ad81779SPaul E. McKenney
5295f4073b0fSMichael S. Tsirkin		my $underscore_smp_barriers = qr{__smp_(?:$barrier_stems)}x;
5296f4073b0fSMichael S. Tsirkin
5297f4073b0fSMichael S. Tsirkin		if ($realfile !~ m@^include/asm-generic/@ &&
5298f4073b0fSMichael S. Tsirkin		    $realfile !~ m@/barrier\.h$@ &&
5299f4073b0fSMichael S. Tsirkin		    $line =~ m/\b(?:$underscore_smp_barriers)\s*\(/ &&
5300f4073b0fSMichael S. Tsirkin		    $line !~ m/^.\s*\#\s*define\s+(?:$underscore_smp_barriers)\s*\(/) {
5301f4073b0fSMichael S. Tsirkin			WARN("MEMORY_BARRIER",
5302f4073b0fSMichael S. Tsirkin			     "__smp memory barriers shouldn't be used outside barrier.h and asm-generic\n" . $herecurr);
5303f4073b0fSMichael S. Tsirkin		}
5304f4073b0fSMichael S. Tsirkin
5305cb426e99SJoe Perches# check for waitqueue_active without a comment.
5306cb426e99SJoe Perches		if ($line =~ /\bwaitqueue_active\s*\(/) {
5307cb426e99SJoe Perches			if (!ctx_has_comment($first_line, $linenr)) {
5308cb426e99SJoe Perches				WARN("WAITQUEUE_ACTIVE",
5309cb426e99SJoe Perches				     "waitqueue_active without comment\n" . $herecurr);
5310cb426e99SJoe Perches			}
5311cb426e99SJoe Perches		}
53123ad81779SPaul E. McKenney
53133ad81779SPaul E. McKenney# Check for expedited grace periods that interrupt non-idle non-nohz
53143ad81779SPaul E. McKenney# online CPUs.  These expedited can therefore degrade real-time response
53153ad81779SPaul E. McKenney# if used carelessly, and should be avoided where not absolutely
53163ad81779SPaul E. McKenney# needed.  It is always OK to use synchronize_rcu_expedited() and
53173ad81779SPaul E. McKenney# synchronize_sched_expedited() at boot time (before real-time applications
53183ad81779SPaul E. McKenney# start) and in error situations where real-time response is compromised in
53193ad81779SPaul E. McKenney# any case.  Note that synchronize_srcu_expedited() does -not- interrupt
53203ad81779SPaul E. McKenney# other CPUs, so don't warn on uses of synchronize_srcu_expedited().
53213ad81779SPaul E. McKenney# Of course, nothing comes for free, and srcu_read_lock() and
53223ad81779SPaul E. McKenney# srcu_read_unlock() do contain full memory barriers in payment for
53233ad81779SPaul E. McKenney# synchronize_srcu_expedited() non-interruption properties.
53243ad81779SPaul E. McKenney		if ($line =~ /\b(synchronize_rcu_expedited|synchronize_sched_expedited)\(/) {
53253ad81779SPaul E. McKenney			WARN("EXPEDITED_RCU_GRACE_PERIOD",
53263ad81779SPaul E. McKenney			     "expedited RCU grace periods should be avoided where they can degrade real-time response\n" . $herecurr);
53273ad81779SPaul E. McKenney
53283ad81779SPaul E. McKenney		}
53293ad81779SPaul E. McKenney
53304a0df2efSAndy Whitcroft# check of hardware specific defines
5331c45dcabdSAndy Whitcroft		if ($line =~ m@^.\s*\#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
5332000d1cc1SJoe Perches			CHK("ARCH_DEFINES",
5333000d1cc1SJoe Perches			    "architecture specific defines should be avoided\n" .  $herecurr);
53340a920b5bSAndy Whitcroft		}
5335653d4876SAndy Whitcroft
5336d4977c78STobias Klauser# Check that the storage class is at the beginning of a declaration
5337d4977c78STobias Klauser		if ($line =~ /\b$Storage\b/ && $line !~ /^.\s*$Storage\b/) {
5338000d1cc1SJoe Perches			WARN("STORAGE_CLASS",
5339000d1cc1SJoe Perches			     "storage class should be at the beginning of the declaration\n" . $herecurr)
5340d4977c78STobias Klauser		}
5341d4977c78STobias Klauser
5342de7d4f0eSAndy Whitcroft# check the location of the inline attribute, that it is between
5343de7d4f0eSAndy Whitcroft# storage class and type.
53449c0ca6f9SAndy Whitcroft		if ($line =~ /\b$Type\s+$Inline\b/ ||
53459c0ca6f9SAndy Whitcroft		    $line =~ /\b$Inline\s+$Storage\b/) {
5346000d1cc1SJoe Perches			ERROR("INLINE_LOCATION",
5347000d1cc1SJoe Perches			      "inline keyword should sit between storage class and type\n" . $herecurr);
5348de7d4f0eSAndy Whitcroft		}
5349de7d4f0eSAndy Whitcroft
53508905a67cSAndy Whitcroft# Check for __inline__ and __inline, prefer inline
53512b7ab453SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
53522b7ab453SJoe Perches		    $line =~ /\b(__inline__|__inline)\b/) {
5353d5e616fcSJoe Perches			if (WARN("INLINE",
5354d5e616fcSJoe Perches				 "plain inline is preferred over $1\n" . $herecurr) &&
5355d5e616fcSJoe Perches			    $fix) {
5356194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\b(__inline__|__inline)\b/inline/;
5357d5e616fcSJoe Perches
5358d5e616fcSJoe Perches			}
53598905a67cSAndy Whitcroft		}
53608905a67cSAndy Whitcroft
53613d130fd0SJoe Perches# Check for __attribute__ packed, prefer __packed
53622b7ab453SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
53632b7ab453SJoe Perches		    $line =~ /\b__attribute__\s*\(\s*\(.*\bpacked\b/) {
5364000d1cc1SJoe Perches			WARN("PREFER_PACKED",
5365000d1cc1SJoe Perches			     "__packed is preferred over __attribute__((packed))\n" . $herecurr);
53663d130fd0SJoe Perches		}
53673d130fd0SJoe Perches
536839b7e287SJoe Perches# Check for __attribute__ aligned, prefer __aligned
53692b7ab453SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
53702b7ab453SJoe Perches		    $line =~ /\b__attribute__\s*\(\s*\(.*aligned/) {
5371000d1cc1SJoe Perches			WARN("PREFER_ALIGNED",
5372000d1cc1SJoe Perches			     "__aligned(size) is preferred over __attribute__((aligned(size)))\n" . $herecurr);
537339b7e287SJoe Perches		}
537439b7e287SJoe Perches
53755f14d3bdSJoe Perches# Check for __attribute__ format(printf, prefer __printf
53762b7ab453SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
53772b7ab453SJoe Perches		    $line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf/) {
5378d5e616fcSJoe Perches			if (WARN("PREFER_PRINTF",
5379d5e616fcSJoe Perches				 "__printf(string-index, first-to-check) is preferred over __attribute__((format(printf, string-index, first-to-check)))\n" . $herecurr) &&
5380d5e616fcSJoe Perches			    $fix) {
5381194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf\s*,\s*(.*)\)\s*\)\s*\)/"__printf(" . trim($1) . ")"/ex;
5382d5e616fcSJoe Perches
5383d5e616fcSJoe Perches			}
53845f14d3bdSJoe Perches		}
53855f14d3bdSJoe Perches
53866061d949SJoe Perches# Check for __attribute__ format(scanf, prefer __scanf
53872b7ab453SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
53882b7ab453SJoe Perches		    $line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*scanf\b/) {
5389d5e616fcSJoe Perches			if (WARN("PREFER_SCANF",
5390d5e616fcSJoe Perches				 "__scanf(string-index, first-to-check) is preferred over __attribute__((format(scanf, string-index, first-to-check)))\n" . $herecurr) &&
5391d5e616fcSJoe Perches			    $fix) {
5392194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\b__attribute__\s*\(\s*\(\s*format\s*\(\s*scanf\s*,\s*(.*)\)\s*\)\s*\)/"__scanf(" . trim($1) . ")"/ex;
5393d5e616fcSJoe Perches			}
53946061d949SJoe Perches		}
53956061d949SJoe Perches
5396619a908aSJoe Perches# Check for __attribute__ weak, or __weak declarations (may have link issues)
5397619a908aSJoe Perches		if ($^V && $^V ge 5.10.0 &&
5398619a908aSJoe Perches		    $line =~ /(?:$Declare|$DeclareMisordered)\s*$Ident\s*$balanced_parens\s*(?:$Attribute)?\s*;/ &&
5399619a908aSJoe Perches		    ($line =~ /\b__attribute__\s*\(\s*\(.*\bweak\b/ ||
5400619a908aSJoe Perches		     $line =~ /\b__weak\b/)) {
5401619a908aSJoe Perches			ERROR("WEAK_DECLARATION",
5402619a908aSJoe Perches			      "Using weak declarations can have unintended link defects\n" . $herecurr);
5403619a908aSJoe Perches		}
5404619a908aSJoe Perches
5405e6176fa4SJoe Perches# check for c99 types like uint8_t used outside of uapi/
5406e6176fa4SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
5407e6176fa4SJoe Perches		    $line =~ /\b($Declare)\s*$Ident\s*[=;,\[]/) {
5408e6176fa4SJoe Perches			my $type = $1;
5409e6176fa4SJoe Perches			if ($type =~ /\b($typeC99Typedefs)\b/) {
5410e6176fa4SJoe Perches				$type = $1;
5411e6176fa4SJoe Perches				my $kernel_type = 'u';
5412e6176fa4SJoe Perches				$kernel_type = 's' if ($type =~ /^_*[si]/);
5413e6176fa4SJoe Perches				$type =~ /(\d+)/;
5414e6176fa4SJoe Perches				$kernel_type .= $1;
5415e6176fa4SJoe Perches				if (CHK("PREFER_KERNEL_TYPES",
5416e6176fa4SJoe Perches					"Prefer kernel type '$kernel_type' over '$type'\n" . $herecurr) &&
5417e6176fa4SJoe Perches				    $fix) {
5418e6176fa4SJoe Perches					$fixed[$fixlinenr] =~ s/\b$type\b/$kernel_type/;
5419e6176fa4SJoe Perches				}
5420e6176fa4SJoe Perches			}
5421e6176fa4SJoe Perches		}
5422e6176fa4SJoe Perches
5423938224b5SJoe Perches# check for cast of C90 native int or longer types constants
5424938224b5SJoe Perches		if ($line =~ /(\(\s*$C90_int_types\s*\)\s*)($Constant)\b/) {
5425938224b5SJoe Perches			my $cast = $1;
5426938224b5SJoe Perches			my $const = $2;
5427938224b5SJoe Perches			if (WARN("TYPECAST_INT_CONSTANT",
5428938224b5SJoe Perches				 "Unnecessary typecast of c90 int constant\n" . $herecurr) &&
5429938224b5SJoe Perches			    $fix) {
5430938224b5SJoe Perches				my $suffix = "";
5431938224b5SJoe Perches				my $newconst = $const;
5432938224b5SJoe Perches				$newconst =~ s/${Int_type}$//;
5433938224b5SJoe Perches				$suffix .= 'U' if ($cast =~ /\bunsigned\b/);
5434938224b5SJoe Perches				if ($cast =~ /\blong\s+long\b/) {
5435938224b5SJoe Perches					$suffix .= 'LL';
5436938224b5SJoe Perches				} elsif ($cast =~ /\blong\b/) {
5437938224b5SJoe Perches					$suffix .= 'L';
5438938224b5SJoe Perches				}
5439938224b5SJoe Perches				$fixed[$fixlinenr] =~ s/\Q$cast\E$const\b/$newconst$suffix/;
5440938224b5SJoe Perches			}
5441938224b5SJoe Perches		}
5442938224b5SJoe Perches
54438f53a9b8SJoe Perches# check for sizeof(&)
54448f53a9b8SJoe Perches		if ($line =~ /\bsizeof\s*\(\s*\&/) {
5445000d1cc1SJoe Perches			WARN("SIZEOF_ADDRESS",
5446000d1cc1SJoe Perches			     "sizeof(& should be avoided\n" . $herecurr);
54478f53a9b8SJoe Perches		}
54488f53a9b8SJoe Perches
544966c80b60SJoe Perches# check for sizeof without parenthesis
545066c80b60SJoe Perches		if ($line =~ /\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/) {
5451d5e616fcSJoe Perches			if (WARN("SIZEOF_PARENTHESIS",
5452d5e616fcSJoe Perches				 "sizeof $1 should be sizeof($1)\n" . $herecurr) &&
5453d5e616fcSJoe Perches			    $fix) {
5454194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/"sizeof(" . trim($1) . ")"/ex;
5455d5e616fcSJoe Perches			}
545666c80b60SJoe Perches		}
545766c80b60SJoe Perches
545888982feaSJoe Perches# check for struct spinlock declarations
545988982feaSJoe Perches		if ($line =~ /^.\s*\bstruct\s+spinlock\s+\w+\s*;/) {
546088982feaSJoe Perches			WARN("USE_SPINLOCK_T",
546188982feaSJoe Perches			     "struct spinlock should be spinlock_t\n" . $herecurr);
546288982feaSJoe Perches		}
546388982feaSJoe Perches
5464a6962d72SJoe Perches# check for seq_printf uses that could be seq_puts
546506668727SJoe Perches		if ($sline =~ /\bseq_printf\s*\(.*"\s*\)\s*;\s*$/) {
5466a6962d72SJoe Perches			my $fmt = get_quoted_string($line, $rawline);
5467caac1d5fSHeba Aamer			$fmt =~ s/%%//g;
5468caac1d5fSHeba Aamer			if ($fmt !~ /%/) {
5469d5e616fcSJoe Perches				if (WARN("PREFER_SEQ_PUTS",
5470d5e616fcSJoe Perches					 "Prefer seq_puts to seq_printf\n" . $herecurr) &&
5471d5e616fcSJoe Perches				    $fix) {
5472194f66fcSJoe Perches					$fixed[$fixlinenr] =~ s/\bseq_printf\b/seq_puts/;
5473d5e616fcSJoe Perches				}
5474a6962d72SJoe Perches			}
5475a6962d72SJoe Perches		}
5476a6962d72SJoe Perches
5477554e165cSAndy Whitcroft# Check for misused memsets
5478d1fe9c09SJoe Perches		if ($^V && $^V ge 5.10.0 &&
5479d1fe9c09SJoe Perches		    defined $stat &&
54809e20a853SMateusz Kulikowski		    $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*$FuncArg\s*\)/) {
5481554e165cSAndy Whitcroft
5482d7c76ba7SJoe Perches			my $ms_addr = $2;
5483d1fe9c09SJoe Perches			my $ms_val = $7;
5484d1fe9c09SJoe Perches			my $ms_size = $12;
5485d7c76ba7SJoe Perches
5486554e165cSAndy Whitcroft			if ($ms_size =~ /^(0x|)0$/i) {
5487554e165cSAndy Whitcroft				ERROR("MEMSET",
5488d7c76ba7SJoe Perches				      "memset to 0's uses 0 as the 2nd argument, not the 3rd\n" . "$here\n$stat\n");
5489554e165cSAndy Whitcroft			} elsif ($ms_size =~ /^(0x|)1$/i) {
5490554e165cSAndy Whitcroft				WARN("MEMSET",
5491d7c76ba7SJoe Perches				     "single byte memset is suspicious. Swapped 2nd/3rd argument?\n" . "$here\n$stat\n");
5492d7c76ba7SJoe Perches			}
5493d7c76ba7SJoe Perches		}
5494d7c76ba7SJoe Perches
549598a9bba5SJoe Perches# Check for memcpy(foo, bar, ETH_ALEN) that could be ether_addr_copy(foo, bar)
549698a9bba5SJoe Perches		if ($^V && $^V ge 5.10.0 &&
549710895d2cSMateusz Kulikowski		    defined $stat &&
549810895d2cSMateusz Kulikowski		    $stat =~ /^\+(?:.*?)\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
549998a9bba5SJoe Perches			if (WARN("PREFER_ETHER_ADDR_COPY",
550010895d2cSMateusz Kulikowski				 "Prefer ether_addr_copy() over memcpy() if the Ethernet addresses are __aligned(2)\n" . "$here\n$stat\n") &&
550198a9bba5SJoe Perches			    $fix) {
5502194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/ether_addr_copy($2, $7)/;
550398a9bba5SJoe Perches			}
550498a9bba5SJoe Perches		}
550598a9bba5SJoe Perches
5506b6117d17SMateusz Kulikowski# Check for memcmp(foo, bar, ETH_ALEN) that could be ether_addr_equal*(foo, bar)
5507b6117d17SMateusz Kulikowski		if ($^V && $^V ge 5.10.0 &&
5508b6117d17SMateusz Kulikowski		    defined $stat &&
5509b6117d17SMateusz Kulikowski		    $stat =~ /^\+(?:.*?)\bmemcmp\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
5510b6117d17SMateusz Kulikowski			WARN("PREFER_ETHER_ADDR_EQUAL",
5511b6117d17SMateusz Kulikowski			     "Prefer ether_addr_equal() or ether_addr_equal_unaligned() over memcmp()\n" . "$here\n$stat\n")
5512b6117d17SMateusz Kulikowski		}
5513b6117d17SMateusz Kulikowski
55148617cd09SMateusz Kulikowski# check for memset(foo, 0x0, ETH_ALEN) that could be eth_zero_addr
55158617cd09SMateusz Kulikowski# check for memset(foo, 0xFF, ETH_ALEN) that could be eth_broadcast_addr
55168617cd09SMateusz Kulikowski		if ($^V && $^V ge 5.10.0 &&
55178617cd09SMateusz Kulikowski		    defined $stat &&
55188617cd09SMateusz Kulikowski		    $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
55198617cd09SMateusz Kulikowski
55208617cd09SMateusz Kulikowski			my $ms_val = $7;
55218617cd09SMateusz Kulikowski
55228617cd09SMateusz Kulikowski			if ($ms_val =~ /^(?:0x|)0+$/i) {
55238617cd09SMateusz Kulikowski				if (WARN("PREFER_ETH_ZERO_ADDR",
55248617cd09SMateusz Kulikowski					 "Prefer eth_zero_addr over memset()\n" . "$here\n$stat\n") &&
55258617cd09SMateusz Kulikowski				    $fix) {
55268617cd09SMateusz Kulikowski					$fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_zero_addr($2)/;
55278617cd09SMateusz Kulikowski				}
55288617cd09SMateusz Kulikowski			} elsif ($ms_val =~ /^(?:0xff|255)$/i) {
55298617cd09SMateusz Kulikowski				if (WARN("PREFER_ETH_BROADCAST_ADDR",
55308617cd09SMateusz Kulikowski					 "Prefer eth_broadcast_addr() over memset()\n" . "$here\n$stat\n") &&
55318617cd09SMateusz Kulikowski				    $fix) {
55328617cd09SMateusz Kulikowski					$fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_broadcast_addr($2)/;
55338617cd09SMateusz Kulikowski				}
55348617cd09SMateusz Kulikowski			}
55358617cd09SMateusz Kulikowski		}
55368617cd09SMateusz Kulikowski
5537d7c76ba7SJoe Perches# typecasts on min/max could be min_t/max_t
5538d1fe9c09SJoe Perches		if ($^V && $^V ge 5.10.0 &&
5539d1fe9c09SJoe Perches		    defined $stat &&
5540d7c76ba7SJoe Perches		    $stat =~ /^\+(?:.*?)\b(min|max)\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\)/) {
5541d1fe9c09SJoe Perches			if (defined $2 || defined $7) {
5542d7c76ba7SJoe Perches				my $call = $1;
5543d7c76ba7SJoe Perches				my $cast1 = deparenthesize($2);
5544d7c76ba7SJoe Perches				my $arg1 = $3;
5545d1fe9c09SJoe Perches				my $cast2 = deparenthesize($7);
5546d1fe9c09SJoe Perches				my $arg2 = $8;
5547d7c76ba7SJoe Perches				my $cast;
5548d7c76ba7SJoe Perches
5549d1fe9c09SJoe Perches				if ($cast1 ne "" && $cast2 ne "" && $cast1 ne $cast2) {
5550d7c76ba7SJoe Perches					$cast = "$cast1 or $cast2";
5551d7c76ba7SJoe Perches				} elsif ($cast1 ne "") {
5552d7c76ba7SJoe Perches					$cast = $cast1;
5553d7c76ba7SJoe Perches				} else {
5554d7c76ba7SJoe Perches					$cast = $cast2;
5555d7c76ba7SJoe Perches				}
5556d7c76ba7SJoe Perches				WARN("MINMAX",
5557d7c76ba7SJoe Perches				     "$call() should probably be ${call}_t($cast, $arg1, $arg2)\n" . "$here\n$stat\n");
5558554e165cSAndy Whitcroft			}
5559554e165cSAndy Whitcroft		}
5560554e165cSAndy Whitcroft
55614a273195SJoe Perches# check usleep_range arguments
55624a273195SJoe Perches		if ($^V && $^V ge 5.10.0 &&
55634a273195SJoe Perches		    defined $stat &&
55644a273195SJoe Perches		    $stat =~ /^\+(?:.*?)\busleep_range\s*\(\s*($FuncArg)\s*,\s*($FuncArg)\s*\)/) {
55654a273195SJoe Perches			my $min = $1;
55664a273195SJoe Perches			my $max = $7;
55674a273195SJoe Perches			if ($min eq $max) {
55684a273195SJoe Perches				WARN("USLEEP_RANGE",
55694a273195SJoe Perches				     "usleep_range should not use min == max args; see Documentation/timers/timers-howto.txt\n" . "$here\n$stat\n");
55704a273195SJoe Perches			} elsif ($min =~ /^\d+$/ && $max =~ /^\d+$/ &&
55714a273195SJoe Perches				 $min > $max) {
55724a273195SJoe Perches				WARN("USLEEP_RANGE",
55734a273195SJoe Perches				     "usleep_range args reversed, use min then max; see Documentation/timers/timers-howto.txt\n" . "$here\n$stat\n");
55744a273195SJoe Perches			}
55754a273195SJoe Perches		}
55764a273195SJoe Perches
5577823b794cSJoe Perches# check for naked sscanf
5578823b794cSJoe Perches		if ($^V && $^V ge 5.10.0 &&
5579823b794cSJoe Perches		    defined $stat &&
55806c8bd707SJoe Perches		    $line =~ /\bsscanf\b/ &&
5581823b794cSJoe Perches		    ($stat !~ /$Ident\s*=\s*sscanf\s*$balanced_parens/ &&
5582823b794cSJoe Perches		     $stat !~ /\bsscanf\s*$balanced_parens\s*(?:$Compare)/ &&
5583823b794cSJoe Perches		     $stat !~ /(?:$Compare)\s*\bsscanf\s*$balanced_parens/)) {
5584823b794cSJoe Perches			my $lc = $stat =~ tr@\n@@;
5585823b794cSJoe Perches			$lc = $lc + $linenr;
5586823b794cSJoe Perches			my $stat_real = raw_line($linenr, 0);
5587823b794cSJoe Perches		        for (my $count = $linenr + 1; $count <= $lc; $count++) {
5588823b794cSJoe Perches				$stat_real = $stat_real . "\n" . raw_line($count, 0);
5589823b794cSJoe Perches			}
5590823b794cSJoe Perches			WARN("NAKED_SSCANF",
5591823b794cSJoe Perches			     "unchecked sscanf return value\n" . "$here\n$stat_real\n");
5592823b794cSJoe Perches		}
5593823b794cSJoe Perches
5594afc819abSJoe Perches# check for simple sscanf that should be kstrto<foo>
5595afc819abSJoe Perches		if ($^V && $^V ge 5.10.0 &&
5596afc819abSJoe Perches		    defined $stat &&
5597afc819abSJoe Perches		    $line =~ /\bsscanf\b/) {
5598afc819abSJoe Perches			my $lc = $stat =~ tr@\n@@;
5599afc819abSJoe Perches			$lc = $lc + $linenr;
5600afc819abSJoe Perches			my $stat_real = raw_line($linenr, 0);
5601afc819abSJoe Perches		        for (my $count = $linenr + 1; $count <= $lc; $count++) {
5602afc819abSJoe Perches				$stat_real = $stat_real . "\n" . raw_line($count, 0);
5603afc819abSJoe Perches			}
5604afc819abSJoe Perches			if ($stat_real =~ /\bsscanf\b\s*\(\s*$FuncArg\s*,\s*("[^"]+")/) {
5605afc819abSJoe Perches				my $format = $6;
5606afc819abSJoe Perches				my $count = $format =~ tr@%@%@;
5607afc819abSJoe Perches				if ($count == 1 &&
5608afc819abSJoe Perches				    $format =~ /^"\%(?i:ll[udxi]|[udxi]ll|ll|[hl]h?[udxi]|[udxi][hl]h?|[hl]h?|[udxi])"$/) {
5609afc819abSJoe Perches					WARN("SSCANF_TO_KSTRTO",
5610afc819abSJoe Perches					     "Prefer kstrto<type> to single variable sscanf\n" . "$here\n$stat_real\n");
5611afc819abSJoe Perches				}
5612afc819abSJoe Perches			}
5613afc819abSJoe Perches		}
5614afc819abSJoe Perches
561570dc8a48SJoe Perches# check for new externs in .h files.
561670dc8a48SJoe Perches		if ($realfile =~ /\.h$/ &&
561770dc8a48SJoe Perches		    $line =~ /^\+\s*(extern\s+)$Type\s*$Ident\s*\(/s) {
5618d1d85780SJoe Perches			if (CHK("AVOID_EXTERNS",
561970dc8a48SJoe Perches				"extern prototypes should be avoided in .h files\n" . $herecurr) &&
562070dc8a48SJoe Perches			    $fix) {
5621194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/(.*)\bextern\b\s*(.*)/$1$2/;
562270dc8a48SJoe Perches			}
562370dc8a48SJoe Perches		}
562470dc8a48SJoe Perches
5625de7d4f0eSAndy Whitcroft# check for new externs in .c files.
5626171ae1a4SAndy Whitcroft		if ($realfile =~ /\.c$/ && defined $stat &&
5627c45dcabdSAndy Whitcroft		    $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s)
5628171ae1a4SAndy Whitcroft		{
5629c45dcabdSAndy Whitcroft			my $function_name = $1;
5630c45dcabdSAndy Whitcroft			my $paren_space = $2;
5631171ae1a4SAndy Whitcroft
5632171ae1a4SAndy Whitcroft			my $s = $stat;
5633171ae1a4SAndy Whitcroft			if (defined $cond) {
5634171ae1a4SAndy Whitcroft				substr($s, 0, length($cond), '');
5635171ae1a4SAndy Whitcroft			}
5636c45dcabdSAndy Whitcroft			if ($s =~ /^\s*;/ &&
5637c45dcabdSAndy Whitcroft			    $function_name ne 'uninitialized_var')
5638c45dcabdSAndy Whitcroft			{
5639000d1cc1SJoe Perches				WARN("AVOID_EXTERNS",
5640000d1cc1SJoe Perches				     "externs should be avoided in .c files\n" .  $herecurr);
5641de7d4f0eSAndy Whitcroft			}
5642de7d4f0eSAndy Whitcroft
5643171ae1a4SAndy Whitcroft			if ($paren_space =~ /\n/) {
5644000d1cc1SJoe Perches				WARN("FUNCTION_ARGUMENTS",
5645000d1cc1SJoe Perches				     "arguments for function declarations should follow identifier\n" . $herecurr);
5646171ae1a4SAndy Whitcroft			}
56479c9ba34eSAndy Whitcroft
56489c9ba34eSAndy Whitcroft		} elsif ($realfile =~ /\.c$/ && defined $stat &&
56499c9ba34eSAndy Whitcroft		    $stat =~ /^.\s*extern\s+/)
56509c9ba34eSAndy Whitcroft		{
5651000d1cc1SJoe Perches			WARN("AVOID_EXTERNS",
5652000d1cc1SJoe Perches			     "externs should be avoided in .c files\n" .  $herecurr);
5653171ae1a4SAndy Whitcroft		}
5654171ae1a4SAndy Whitcroft
5655de7d4f0eSAndy Whitcroft# checks for new __setup's
5656de7d4f0eSAndy Whitcroft		if ($rawline =~ /\b__setup\("([^"]*)"/) {
5657de7d4f0eSAndy Whitcroft			my $name = $1;
5658de7d4f0eSAndy Whitcroft
5659de7d4f0eSAndy Whitcroft			if (!grep(/$name/, @setup_docs)) {
5660000d1cc1SJoe Perches				CHK("UNDOCUMENTED_SETUP",
5661000d1cc1SJoe Perches				    "__setup appears un-documented -- check Documentation/kernel-parameters.txt\n" . $herecurr);
5662de7d4f0eSAndy Whitcroft			}
5663653d4876SAndy Whitcroft		}
56649c0ca6f9SAndy Whitcroft
56659c0ca6f9SAndy Whitcroft# check for pointless casting of kmalloc return
5666caf2a54fSJoe Perches		if ($line =~ /\*\s*\)\s*[kv][czm]alloc(_node){0,1}\b/) {
5667000d1cc1SJoe Perches			WARN("UNNECESSARY_CASTS",
5668000d1cc1SJoe Perches			     "unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
56699c0ca6f9SAndy Whitcroft		}
567013214adfSAndy Whitcroft
5671a640d25cSJoe Perches# alloc style
5672a640d25cSJoe Perches# p = alloc(sizeof(struct foo), ...) should be p = alloc(sizeof(*p), ...)
5673a640d25cSJoe Perches		if ($^V && $^V ge 5.10.0 &&
5674a640d25cSJoe Perches		    $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*([kv][mz]alloc(?:_node)?)\s*\(\s*(sizeof\s*\(\s*struct\s+$Lval\s*\))/) {
5675a640d25cSJoe Perches			CHK("ALLOC_SIZEOF_STRUCT",
5676a640d25cSJoe Perches			    "Prefer $3(sizeof(*$1)...) over $3($4...)\n" . $herecurr);
5677a640d25cSJoe Perches		}
5678a640d25cSJoe Perches
567960a55369SJoe Perches# check for k[mz]alloc with multiplies that could be kmalloc_array/kcalloc
568060a55369SJoe Perches		if ($^V && $^V ge 5.10.0 &&
5681e367455aSJoe Perches		    $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*(k[mz]alloc)\s*\(\s*($FuncArg)\s*\*\s*($FuncArg)\s*,/) {
568260a55369SJoe Perches			my $oldfunc = $3;
568360a55369SJoe Perches			my $a1 = $4;
568460a55369SJoe Perches			my $a2 = $10;
568560a55369SJoe Perches			my $newfunc = "kmalloc_array";
568660a55369SJoe Perches			$newfunc = "kcalloc" if ($oldfunc eq "kzalloc");
568760a55369SJoe Perches			my $r1 = $a1;
568860a55369SJoe Perches			my $r2 = $a2;
568960a55369SJoe Perches			if ($a1 =~ /^sizeof\s*\S/) {
569060a55369SJoe Perches				$r1 = $a2;
569160a55369SJoe Perches				$r2 = $a1;
569260a55369SJoe Perches			}
5693e367455aSJoe Perches			if ($r1 !~ /^sizeof\b/ && $r2 =~ /^sizeof\s*\S/ &&
5694e367455aSJoe Perches			    !($r1 =~ /^$Constant$/ || $r1 =~ /^[A-Z_][A-Z0-9_]*$/)) {
5695e367455aSJoe Perches				if (WARN("ALLOC_WITH_MULTIPLY",
5696e367455aSJoe Perches					 "Prefer $newfunc over $oldfunc with multiply\n" . $herecurr) &&
5697e367455aSJoe Perches				    $fix) {
5698194f66fcSJoe 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;
569960a55369SJoe Perches
570060a55369SJoe Perches				}
570160a55369SJoe Perches			}
570260a55369SJoe Perches		}
570360a55369SJoe Perches
5704972fdea2SJoe Perches# check for krealloc arg reuse
5705972fdea2SJoe Perches		if ($^V && $^V ge 5.10.0 &&
5706972fdea2SJoe Perches		    $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*krealloc\s*\(\s*\1\s*,/) {
5707972fdea2SJoe Perches			WARN("KREALLOC_ARG_REUSE",
5708972fdea2SJoe Perches			     "Reusing the krealloc arg is almost always a bug\n" . $herecurr);
5709972fdea2SJoe Perches		}
5710972fdea2SJoe Perches
57115ce59ae0SJoe Perches# check for alloc argument mismatch
57125ce59ae0SJoe Perches		if ($line =~ /\b(kcalloc|kmalloc_array)\s*\(\s*sizeof\b/) {
57135ce59ae0SJoe Perches			WARN("ALLOC_ARRAY_ARGS",
57145ce59ae0SJoe Perches			     "$1 uses number as first arg, sizeof is generally wrong\n" . $herecurr);
57155ce59ae0SJoe Perches		}
57165ce59ae0SJoe Perches
5717caf2a54fSJoe Perches# check for multiple semicolons
5718caf2a54fSJoe Perches		if ($line =~ /;\s*;\s*$/) {
5719d5e616fcSJoe Perches			if (WARN("ONE_SEMICOLON",
5720d5e616fcSJoe Perches				 "Statements terminations use 1 semicolon\n" . $herecurr) &&
5721d5e616fcSJoe Perches			    $fix) {
5722194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/(\s*;\s*){2,}$/;/g;
5723d5e616fcSJoe Perches			}
5724d1e2ad07SJoe Perches		}
5725d1e2ad07SJoe Perches
57260ab90191SJoe Perches# check for #defines like: 1 << <digit> that could be BIT(digit)
57270ab90191SJoe Perches		if ($line =~ /#\s*define\s+\w+\s+\(?\s*1\s*([ulUL]*)\s*\<\<\s*(?:\d+|$Ident)\s*\)?/) {
57280ab90191SJoe Perches			my $ull = "";
57290ab90191SJoe Perches			$ull = "_ULL" if (defined($1) && $1 =~ /ll/i);
57300ab90191SJoe Perches			if (CHK("BIT_MACRO",
57310ab90191SJoe Perches				"Prefer using the BIT$ull macro\n" . $herecurr) &&
57320ab90191SJoe Perches			    $fix) {
57330ab90191SJoe Perches				$fixed[$fixlinenr] =~ s/\(?\s*1\s*[ulUL]*\s*<<\s*(\d+|$Ident)\s*\)?/BIT${ull}($1)/;
57340ab90191SJoe Perches			}
57350ab90191SJoe Perches		}
57360ab90191SJoe Perches
57372d632745SJoe Perches# check for #if defined CONFIG_<FOO> || defined CONFIG_<FOO>_MODULE
57382d632745SJoe Perches		if ($line =~ /^\+\s*#\s*if\s+defined(?:\s*\(?\s*|\s+)(CONFIG_[A-Z_]+)\s*\)?\s*\|\|\s*defined(?:\s*\(?\s*|\s+)\1_MODULE\s*\)?\s*$/) {
57392d632745SJoe Perches			my $config = $1;
57402d632745SJoe Perches			if (WARN("PREFER_IS_ENABLED",
57412d632745SJoe Perches				 "Prefer IS_ENABLED(<FOO>) to CONFIG_<FOO> || CONFIG_<FOO>_MODULE\n" . $herecurr) &&
57422d632745SJoe Perches			    $fix) {
57432d632745SJoe Perches				$fixed[$fixlinenr] = "\+#if IS_ENABLED($config)";
57442d632745SJoe Perches			}
57452d632745SJoe Perches		}
57462d632745SJoe Perches
5747e81f239bSJoe Perches# check for case / default statements not preceded by break/fallthrough/switch
5748c34c09a8SJoe Perches		if ($line =~ /^.\s*(?:case\s+(?:$Ident|$Constant)\s*|default):/) {
5749c34c09a8SJoe Perches			my $has_break = 0;
5750c34c09a8SJoe Perches			my $has_statement = 0;
5751c34c09a8SJoe Perches			my $count = 0;
5752c34c09a8SJoe Perches			my $prevline = $linenr;
5753e81f239bSJoe Perches			while ($prevline > 1 && ($file || $count < 3) && !$has_break) {
5754c34c09a8SJoe Perches				$prevline--;
5755c34c09a8SJoe Perches				my $rline = $rawlines[$prevline - 1];
5756c34c09a8SJoe Perches				my $fline = $lines[$prevline - 1];
5757c34c09a8SJoe Perches				last if ($fline =~ /^\@\@/);
5758c34c09a8SJoe Perches				next if ($fline =~ /^\-/);
5759c34c09a8SJoe Perches				next if ($fline =~ /^.(?:\s*(?:case\s+(?:$Ident|$Constant)[\s$;]*|default):[\s$;]*)*$/);
5760c34c09a8SJoe Perches				$has_break = 1 if ($rline =~ /fall[\s_-]*(through|thru)/i);
5761c34c09a8SJoe Perches				next if ($fline =~ /^.[\s$;]*$/);
5762c34c09a8SJoe Perches				$has_statement = 1;
5763c34c09a8SJoe Perches				$count++;
5764c34c09a8SJoe Perches				$has_break = 1 if ($fline =~ /\bswitch\b|\b(?:break\s*;[\s$;]*$|return\b|goto\b|continue\b)/);
5765c34c09a8SJoe Perches			}
5766c34c09a8SJoe Perches			if (!$has_break && $has_statement) {
5767c34c09a8SJoe Perches				WARN("MISSING_BREAK",
5768c34c09a8SJoe Perches				     "Possible switch case/default not preceeded by break or fallthrough comment\n" . $herecurr);
5769c34c09a8SJoe Perches			}
5770c34c09a8SJoe Perches		}
5771c34c09a8SJoe Perches
5772d1e2ad07SJoe Perches# check for switch/default statements without a break;
5773d1e2ad07SJoe Perches		if ($^V && $^V ge 5.10.0 &&
5774d1e2ad07SJoe Perches		    defined $stat &&
5775d1e2ad07SJoe Perches		    $stat =~ /^\+[$;\s]*(?:case[$;\s]+\w+[$;\s]*:[$;\s]*|)*[$;\s]*\bdefault[$;\s]*:[$;\s]*;/g) {
5776d1e2ad07SJoe Perches			my $ctx = '';
5777d1e2ad07SJoe Perches			my $herectx = $here . "\n";
5778d1e2ad07SJoe Perches			my $cnt = statement_rawlines($stat);
5779d1e2ad07SJoe Perches			for (my $n = 0; $n < $cnt; $n++) {
5780d1e2ad07SJoe Perches				$herectx .= raw_line($linenr, $n) . "\n";
5781d1e2ad07SJoe Perches			}
5782d1e2ad07SJoe Perches			WARN("DEFAULT_NO_BREAK",
5783d1e2ad07SJoe Perches			     "switch default: should use break\n" . $herectx);
5784caf2a54fSJoe Perches		}
5785caf2a54fSJoe Perches
578613214adfSAndy Whitcroft# check for gcc specific __FUNCTION__
5787d5e616fcSJoe Perches		if ($line =~ /\b__FUNCTION__\b/) {
5788d5e616fcSJoe Perches			if (WARN("USE_FUNC",
5789d5e616fcSJoe Perches				 "__func__ should be used instead of gcc specific __FUNCTION__\n"  . $herecurr) &&
5790d5e616fcSJoe Perches			    $fix) {
5791194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\b__FUNCTION__\b/__func__/g;
5792d5e616fcSJoe Perches			}
579313214adfSAndy Whitcroft		}
5794773647a0SAndy Whitcroft
579562ec818fSJoe Perches# check for uses of __DATE__, __TIME__, __TIMESTAMP__
579662ec818fSJoe Perches		while ($line =~ /\b(__(?:DATE|TIME|TIMESTAMP)__)\b/g) {
579762ec818fSJoe Perches			ERROR("DATE_TIME",
579862ec818fSJoe Perches			      "Use of the '$1' macro makes the build non-deterministic\n" . $herecurr);
579962ec818fSJoe Perches		}
580062ec818fSJoe Perches
58012c92488aSJoe Perches# check for use of yield()
58022c92488aSJoe Perches		if ($line =~ /\byield\s*\(\s*\)/) {
58032c92488aSJoe Perches			WARN("YIELD",
58042c92488aSJoe Perches			     "Using yield() is generally wrong. See yield() kernel-doc (sched/core.c)\n"  . $herecurr);
58052c92488aSJoe Perches		}
58062c92488aSJoe Perches
5807179f8f40SJoe Perches# check for comparisons against true and false
5808179f8f40SJoe Perches		if ($line =~ /\+\s*(.*?)\b(true|false|$Lval)\s*(==|\!=)\s*(true|false|$Lval)\b(.*)$/i) {
5809179f8f40SJoe Perches			my $lead = $1;
5810179f8f40SJoe Perches			my $arg = $2;
5811179f8f40SJoe Perches			my $test = $3;
5812179f8f40SJoe Perches			my $otype = $4;
5813179f8f40SJoe Perches			my $trail = $5;
5814179f8f40SJoe Perches			my $op = "!";
5815179f8f40SJoe Perches
5816179f8f40SJoe Perches			($arg, $otype) = ($otype, $arg) if ($arg =~ /^(?:true|false)$/i);
5817179f8f40SJoe Perches
5818179f8f40SJoe Perches			my $type = lc($otype);
5819179f8f40SJoe Perches			if ($type =~ /^(?:true|false)$/) {
5820179f8f40SJoe Perches				if (("$test" eq "==" && "$type" eq "true") ||
5821179f8f40SJoe Perches				    ("$test" eq "!=" && "$type" eq "false")) {
5822179f8f40SJoe Perches					$op = "";
5823179f8f40SJoe Perches				}
5824179f8f40SJoe Perches
5825179f8f40SJoe Perches				CHK("BOOL_COMPARISON",
5826179f8f40SJoe Perches				    "Using comparison to $otype is error prone\n" . $herecurr);
5827179f8f40SJoe Perches
5828179f8f40SJoe Perches## maybe suggesting a correct construct would better
5829179f8f40SJoe Perches##				    "Using comparison to $otype is error prone.  Perhaps use '${lead}${op}${arg}${trail}'\n" . $herecurr);
5830179f8f40SJoe Perches
5831179f8f40SJoe Perches			}
5832179f8f40SJoe Perches		}
5833179f8f40SJoe Perches
58344882720bSThomas Gleixner# check for semaphores initialized locked
58354882720bSThomas Gleixner		if ($line =~ /^.\s*sema_init.+,\W?0\W?\)/) {
5836000d1cc1SJoe Perches			WARN("CONSIDER_COMPLETION",
5837000d1cc1SJoe Perches			     "consider using a completion\n" . $herecurr);
5838773647a0SAndy Whitcroft		}
58396712d858SJoe Perches
584067d0a075SJoe Perches# recommend kstrto* over simple_strto* and strict_strto*
584167d0a075SJoe Perches		if ($line =~ /\b((simple|strict)_(strto(l|ll|ul|ull)))\s*\(/) {
5842000d1cc1SJoe Perches			WARN("CONSIDER_KSTRTO",
584367d0a075SJoe Perches			     "$1 is obsolete, use k$3 instead\n" . $herecurr);
5844773647a0SAndy Whitcroft		}
58456712d858SJoe Perches
5846ae3ccc46SFabian Frederick# check for __initcall(), use device_initcall() explicitly or more appropriate function please
5847f3db6639SMichael Ellerman		if ($line =~ /^.\s*__initcall\s*\(/) {
5848000d1cc1SJoe Perches			WARN("USE_DEVICE_INITCALL",
5849ae3ccc46SFabian Frederick			     "please use device_initcall() or more appropriate function instead of __initcall() (see include/linux/init.h)\n" . $herecurr);
5850f3db6639SMichael Ellerman		}
58516712d858SJoe Perches
58520f3c5aabSJoe Perches# check for various structs that are normally const (ops, kgdb, device_tree)
58530f3c5aabSJoe Perches		my $const_structs = qr{
58540f3c5aabSJoe Perches				acpi_dock_ops|
585579404849SEmese Revfy				address_space_operations|
585679404849SEmese Revfy				backlight_ops|
585779404849SEmese Revfy				block_device_operations|
585879404849SEmese Revfy				dentry_operations|
585979404849SEmese Revfy				dev_pm_ops|
586079404849SEmese Revfy				dma_map_ops|
586179404849SEmese Revfy				extent_io_ops|
586279404849SEmese Revfy				file_lock_operations|
586379404849SEmese Revfy				file_operations|
586479404849SEmese Revfy				hv_ops|
586579404849SEmese Revfy				ide_dma_ops|
586679404849SEmese Revfy				intel_dvo_dev_ops|
586779404849SEmese Revfy				item_operations|
586879404849SEmese Revfy				iwl_ops|
586979404849SEmese Revfy				kgdb_arch|
587079404849SEmese Revfy				kgdb_io|
587179404849SEmese Revfy				kset_uevent_ops|
587279404849SEmese Revfy				lock_manager_operations|
587379404849SEmese Revfy				microcode_ops|
587479404849SEmese Revfy				mtrr_ops|
587579404849SEmese Revfy				neigh_ops|
587679404849SEmese Revfy				nlmsvc_binding|
58770f3c5aabSJoe Perches				of_device_id|
587879404849SEmese Revfy				pci_raw_ops|
587979404849SEmese Revfy				pipe_buf_operations|
588079404849SEmese Revfy				platform_hibernation_ops|
588179404849SEmese Revfy				platform_suspend_ops|
588279404849SEmese Revfy				proto_ops|
588379404849SEmese Revfy				rpc_pipe_ops|
588479404849SEmese Revfy				seq_operations|
588579404849SEmese Revfy				snd_ac97_build_ops|
588679404849SEmese Revfy				soc_pcmcia_socket_ops|
588779404849SEmese Revfy				stacktrace_ops|
588879404849SEmese Revfy				sysfs_ops|
588979404849SEmese Revfy				tty_operations|
58906d07d01bSJoe Perches				uart_ops|
589179404849SEmese Revfy				usb_mon_operations|
589279404849SEmese Revfy				wd_ops}x;
58936903ffb2SAndy Whitcroft		if ($line !~ /\bconst\b/ &&
58940f3c5aabSJoe Perches		    $line =~ /\bstruct\s+($const_structs)\b/) {
5895000d1cc1SJoe Perches			WARN("CONST_STRUCT",
5896000d1cc1SJoe Perches			     "struct $1 should normally be const\n" .
58976903ffb2SAndy Whitcroft				$herecurr);
58982b6db5cbSAndy Whitcroft		}
5899773647a0SAndy Whitcroft
5900773647a0SAndy Whitcroft# use of NR_CPUS is usually wrong
5901773647a0SAndy Whitcroft# ignore definitions of NR_CPUS and usage to define arrays as likely right
5902773647a0SAndy Whitcroft		if ($line =~ /\bNR_CPUS\b/ &&
5903c45dcabdSAndy Whitcroft		    $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ &&
5904c45dcabdSAndy Whitcroft		    $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ &&
5905171ae1a4SAndy Whitcroft		    $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ &&
5906171ae1a4SAndy Whitcroft		    $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ &&
5907171ae1a4SAndy Whitcroft		    $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/)
5908773647a0SAndy Whitcroft		{
5909000d1cc1SJoe Perches			WARN("NR_CPUS",
5910000d1cc1SJoe Perches			     "usage of NR_CPUS is often wrong - consider using cpu_possible(), num_possible_cpus(), for_each_possible_cpu(), etc\n" . $herecurr);
5911773647a0SAndy Whitcroft		}
59129c9ba34eSAndy Whitcroft
591352ea8506SJoe Perches# Use of __ARCH_HAS_<FOO> or ARCH_HAVE_<BAR> is wrong.
591452ea8506SJoe Perches		if ($line =~ /\+\s*#\s*define\s+((?:__)?ARCH_(?:HAS|HAVE)\w*)\b/) {
591552ea8506SJoe Perches			ERROR("DEFINE_ARCH_HAS",
591652ea8506SJoe Perches			      "#define of '$1' is wrong - use Kconfig variables or standard guards instead\n" . $herecurr);
591752ea8506SJoe Perches		}
591852ea8506SJoe Perches
5919acd9362cSJoe Perches# likely/unlikely comparisons similar to "(likely(foo) > 0)"
5920acd9362cSJoe Perches		if ($^V && $^V ge 5.10.0 &&
5921acd9362cSJoe Perches		    $line =~ /\b((?:un)?likely)\s*\(\s*$FuncArg\s*\)\s*$Compare/) {
5922acd9362cSJoe Perches			WARN("LIKELY_MISUSE",
5923acd9362cSJoe Perches			     "Using $1 should generally have parentheses around the comparison\n" . $herecurr);
5924acd9362cSJoe Perches		}
5925acd9362cSJoe Perches
5926691d77b6SAndy Whitcroft# whine mightly about in_atomic
5927691d77b6SAndy Whitcroft		if ($line =~ /\bin_atomic\s*\(/) {
5928691d77b6SAndy Whitcroft			if ($realfile =~ m@^drivers/@) {
5929000d1cc1SJoe Perches				ERROR("IN_ATOMIC",
5930000d1cc1SJoe Perches				      "do not use in_atomic in drivers\n" . $herecurr);
5931f4a87736SAndy Whitcroft			} elsif ($realfile !~ m@^kernel/@) {
5932000d1cc1SJoe Perches				WARN("IN_ATOMIC",
5933000d1cc1SJoe Perches				     "use of in_atomic() is incorrect outside core kernel code\n" . $herecurr);
5934691d77b6SAndy Whitcroft			}
5935691d77b6SAndy Whitcroft		}
59361704f47bSPeter Zijlstra
5937481aea5cSJoe Perches# whine about ACCESS_ONCE
5938481aea5cSJoe Perches		if ($^V && $^V ge 5.10.0 &&
5939481aea5cSJoe Perches		    $line =~ /\bACCESS_ONCE\s*$balanced_parens\s*(=(?!=))?\s*($FuncArg)?/) {
5940481aea5cSJoe Perches			my $par = $1;
5941481aea5cSJoe Perches			my $eq = $2;
5942481aea5cSJoe Perches			my $fun = $3;
5943481aea5cSJoe Perches			$par =~ s/^\(\s*(.*)\s*\)$/$1/;
5944481aea5cSJoe Perches			if (defined($eq)) {
5945481aea5cSJoe Perches				if (WARN("PREFER_WRITE_ONCE",
5946481aea5cSJoe Perches					 "Prefer WRITE_ONCE(<FOO>, <BAR>) over ACCESS_ONCE(<FOO>) = <BAR>\n" . $herecurr) &&
5947481aea5cSJoe Perches				    $fix) {
5948481aea5cSJoe Perches					$fixed[$fixlinenr] =~ s/\bACCESS_ONCE\s*\(\s*\Q$par\E\s*\)\s*$eq\s*\Q$fun\E/WRITE_ONCE($par, $fun)/;
5949481aea5cSJoe Perches				}
5950481aea5cSJoe Perches			} else {
5951481aea5cSJoe Perches				if (WARN("PREFER_READ_ONCE",
5952481aea5cSJoe Perches					 "Prefer READ_ONCE(<FOO>) over ACCESS_ONCE(<FOO>)\n" . $herecurr) &&
5953481aea5cSJoe Perches				    $fix) {
5954481aea5cSJoe Perches					$fixed[$fixlinenr] =~ s/\bACCESS_ONCE\s*\(\s*\Q$par\E\s*\)/READ_ONCE($par)/;
5955481aea5cSJoe Perches				}
5956481aea5cSJoe Perches			}
5957481aea5cSJoe Perches		}
5958481aea5cSJoe Perches
59591704f47bSPeter Zijlstra# check for lockdep_set_novalidate_class
59601704f47bSPeter Zijlstra		if ($line =~ /^.\s*lockdep_set_novalidate_class\s*\(/ ||
59611704f47bSPeter Zijlstra		    $line =~ /__lockdep_no_validate__\s*\)/ ) {
59621704f47bSPeter Zijlstra			if ($realfile !~ m@^kernel/lockdep@ &&
59631704f47bSPeter Zijlstra			    $realfile !~ m@^include/linux/lockdep@ &&
59641704f47bSPeter Zijlstra			    $realfile !~ m@^drivers/base/core@) {
5965000d1cc1SJoe Perches				ERROR("LOCKDEP",
5966000d1cc1SJoe Perches				      "lockdep_no_validate class is reserved for device->mutex.\n" . $herecurr);
59671704f47bSPeter Zijlstra			}
59681704f47bSPeter Zijlstra		}
596988f8831cSDave Jones
5970b392c64fSJoe Perches		if ($line =~ /debugfs_create_\w+.*\b$mode_perms_world_writable\b/ ||
5971b392c64fSJoe Perches		    $line =~ /DEVICE_ATTR.*\b$mode_perms_world_writable\b/) {
5972000d1cc1SJoe Perches			WARN("EXPORTED_WORLD_WRITABLE",
5973000d1cc1SJoe Perches			     "Exporting world writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr);
597488f8831cSDave Jones		}
59752435880fSJoe Perches
5976515a235eSJoe Perches# Mode permission misuses where it seems decimal should be octal
5977515a235eSJoe Perches# This uses a shortcut match to avoid unnecessary uses of a slow foreach loop
5978515a235eSJoe Perches		if ($^V && $^V ge 5.10.0 &&
5979515a235eSJoe Perches		    $line =~ /$mode_perms_search/) {
59802435880fSJoe Perches			foreach my $entry (@mode_permission_funcs) {
59812435880fSJoe Perches				my $func = $entry->[0];
59822435880fSJoe Perches				my $arg_pos = $entry->[1];
59832435880fSJoe Perches
59842435880fSJoe Perches				my $skip_args = "";
59852435880fSJoe Perches				if ($arg_pos > 1) {
59862435880fSJoe Perches					$arg_pos--;
59872435880fSJoe Perches					$skip_args = "(?:\\s*$FuncArg\\s*,\\s*){$arg_pos,$arg_pos}";
59882435880fSJoe Perches				}
59892435880fSJoe Perches				my $test = "\\b$func\\s*\\(${skip_args}([\\d]+)\\s*[,\\)]";
5990515a235eSJoe Perches				if ($line =~ /$test/) {
59912435880fSJoe Perches					my $val = $1;
59922435880fSJoe Perches					$val = $6 if ($skip_args ne "");
59932435880fSJoe Perches
59941727cc70SJoe Perches					if ($val !~ /^0$/ &&
59951727cc70SJoe Perches					    (($val =~ /^$Int$/ && $val !~ /^$Octal$/) ||
59961727cc70SJoe Perches					     length($val) ne 4)) {
59972435880fSJoe Perches						ERROR("NON_OCTAL_PERMISSIONS",
59981727cc70SJoe Perches						      "Use 4 digit octal (0777) not decimal permissions\n" . $herecurr);
5999c0a5c898SJoe Perches					} elsif ($val =~ /^$Octal$/ && (oct($val) & 02)) {
6000c0a5c898SJoe Perches						ERROR("EXPORTED_WORLD_WRITABLE",
6001c0a5c898SJoe Perches						      "Exporting writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr);
60022435880fSJoe Perches					}
60032435880fSJoe Perches				}
60042435880fSJoe Perches			}
600513214adfSAndy Whitcroft		}
60065a6d20ceSBjorn Andersson
60075a6d20ceSBjorn Andersson# validate content of MODULE_LICENSE against list from include/linux/module.h
60085a6d20ceSBjorn Andersson		if ($line =~ /\bMODULE_LICENSE\s*\(\s*($String)\s*\)/) {
60095a6d20ceSBjorn Andersson			my $extracted_string = get_quoted_string($line, $rawline);
60105a6d20ceSBjorn Andersson			my $valid_licenses = qr{
60115a6d20ceSBjorn Andersson						GPL|
60125a6d20ceSBjorn Andersson						GPL\ v2|
60135a6d20ceSBjorn Andersson						GPL\ and\ additional\ rights|
60145a6d20ceSBjorn Andersson						Dual\ BSD/GPL|
60155a6d20ceSBjorn Andersson						Dual\ MIT/GPL|
60165a6d20ceSBjorn Andersson						Dual\ MPL/GPL|
60175a6d20ceSBjorn Andersson						Proprietary
60185a6d20ceSBjorn Andersson					}x;
60195a6d20ceSBjorn Andersson			if ($extracted_string !~ /^"(?:$valid_licenses)"$/x) {
60205a6d20ceSBjorn Andersson				WARN("MODULE_LICENSE",
60215a6d20ceSBjorn Andersson				     "unknown module license " . $extracted_string . "\n" . $herecurr);
60225a6d20ceSBjorn Andersson			}
60235a6d20ceSBjorn Andersson		}
6024515a235eSJoe Perches	}
602513214adfSAndy Whitcroft
602613214adfSAndy Whitcroft	# If we have no input at all, then there is nothing to report on
602713214adfSAndy Whitcroft	# so just keep quiet.
602813214adfSAndy Whitcroft	if ($#rawlines == -1) {
602913214adfSAndy Whitcroft		exit(0);
60300a920b5bSAndy Whitcroft	}
60310a920b5bSAndy Whitcroft
60328905a67cSAndy Whitcroft	# In mailback mode only produce a report in the negative, for
60338905a67cSAndy Whitcroft	# things that appear to be patches.
60348905a67cSAndy Whitcroft	if ($mailback && ($clean == 1 || !$is_patch)) {
60358905a67cSAndy Whitcroft		exit(0);
60368905a67cSAndy Whitcroft	}
60378905a67cSAndy Whitcroft
60388905a67cSAndy Whitcroft	# This is not a patch, and we are are in 'no-patch' mode so
60398905a67cSAndy Whitcroft	# just keep quiet.
60408905a67cSAndy Whitcroft	if (!$chk_patch && !$is_patch) {
60418905a67cSAndy Whitcroft		exit(0);
60428905a67cSAndy Whitcroft	}
60438905a67cSAndy Whitcroft
604406330fc4SJoe Perches	if (!$is_patch && $file !~ /cover-letter\.patch$/) {
6045000d1cc1SJoe Perches		ERROR("NOT_UNIFIED_DIFF",
6046000d1cc1SJoe Perches		      "Does not appear to be a unified-diff format patch\n");
60470a920b5bSAndy Whitcroft	}
604834d8815fSJoe Perches	if ($is_patch && $filename ne '-' && $chk_signoff && $signoff == 0) {
6049000d1cc1SJoe Perches		ERROR("MISSING_SIGN_OFF",
6050000d1cc1SJoe Perches		      "Missing Signed-off-by: line(s)\n");
60510a920b5bSAndy Whitcroft	}
60520a920b5bSAndy Whitcroft
6053f0a594c1SAndy Whitcroft	print report_dump();
605413214adfSAndy Whitcroft	if ($summary && !($clean == 1 && $quiet == 1)) {
605513214adfSAndy Whitcroft		print "$filename " if ($summary_file);
60566c72ffaaSAndy Whitcroft		print "total: $cnt_error errors, $cnt_warn warnings, " .
60576c72ffaaSAndy Whitcroft			(($check)? "$cnt_chk checks, " : "") .
60586c72ffaaSAndy Whitcroft			"$cnt_lines lines checked\n";
60596c72ffaaSAndy Whitcroft	}
60608905a67cSAndy Whitcroft
6061d2c0a235SAndy Whitcroft	if ($quiet == 0) {
6062ef212196SJoe Perches		# If there were any defects found and not already fixing them
6063ef212196SJoe Perches		if (!$clean and !$fix) {
6064ef212196SJoe Perches			print << "EOM"
6065ef212196SJoe Perches
6066ef212196SJoe PerchesNOTE: For some of the reported defects, checkpatch may be able to
6067ef212196SJoe Perches      mechanically convert to the typical style using --fix or --fix-inplace.
6068ef212196SJoe PerchesEOM
6069ef212196SJoe Perches		}
6070d2c0a235SAndy Whitcroft		# If there were whitespace errors which cleanpatch can fix
6071d2c0a235SAndy Whitcroft		# then suggest that.
6072d2c0a235SAndy Whitcroft		if ($rpt_cleaners) {
6073b0781216SMike Frysinger			$rpt_cleaners = 0;
6074d8469f16SJoe Perches			print << "EOM"
6075d8469f16SJoe Perches
6076d8469f16SJoe PerchesNOTE: Whitespace errors detected.
6077d8469f16SJoe Perches      You may wish to use scripts/cleanpatch or scripts/cleanfile
6078d8469f16SJoe PerchesEOM
6079d2c0a235SAndy Whitcroft		}
6080d2c0a235SAndy Whitcroft	}
6081d2c0a235SAndy Whitcroft
6082d752fcc8SJoe Perches	if ($clean == 0 && $fix &&
6083d752fcc8SJoe Perches	    ("@rawlines" ne "@fixed" ||
6084d752fcc8SJoe Perches	     $#fixed_inserted >= 0 || $#fixed_deleted >= 0)) {
60859624b8d6SJoe Perches		my $newfile = $filename;
60869624b8d6SJoe Perches		$newfile .= ".EXPERIMENTAL-checkpatch-fixes" if (!$fix_inplace);
60873705ce5bSJoe Perches		my $linecount = 0;
60883705ce5bSJoe Perches		my $f;
60893705ce5bSJoe Perches
6090d752fcc8SJoe Perches		@fixed = fix_inserted_deleted_lines(\@fixed, \@fixed_inserted, \@fixed_deleted);
6091d752fcc8SJoe Perches
60923705ce5bSJoe Perches		open($f, '>', $newfile)
60933705ce5bSJoe Perches		    or die "$P: Can't open $newfile for write\n";
60943705ce5bSJoe Perches		foreach my $fixed_line (@fixed) {
60953705ce5bSJoe Perches			$linecount++;
60963705ce5bSJoe Perches			if ($file) {
60973705ce5bSJoe Perches				if ($linecount > 3) {
60983705ce5bSJoe Perches					$fixed_line =~ s/^\+//;
60993705ce5bSJoe Perches					print $f $fixed_line . "\n";
61003705ce5bSJoe Perches				}
61013705ce5bSJoe Perches			} else {
61023705ce5bSJoe Perches				print $f $fixed_line . "\n";
61033705ce5bSJoe Perches			}
61043705ce5bSJoe Perches		}
61053705ce5bSJoe Perches		close($f);
61063705ce5bSJoe Perches
61073705ce5bSJoe Perches		if (!$quiet) {
61083705ce5bSJoe Perches			print << "EOM";
6109d8469f16SJoe Perches
61103705ce5bSJoe PerchesWrote EXPERIMENTAL --fix correction(s) to '$newfile'
61113705ce5bSJoe Perches
61123705ce5bSJoe PerchesDo _NOT_ trust the results written to this file.
61133705ce5bSJoe PerchesDo _NOT_ submit these changes without inspecting them for correctness.
61143705ce5bSJoe Perches
61153705ce5bSJoe PerchesThis EXPERIMENTAL file is simply a convenience to help rewrite patches.
61163705ce5bSJoe PerchesNo warranties, expressed or implied...
61173705ce5bSJoe PerchesEOM
61183705ce5bSJoe Perches		}
61193705ce5bSJoe Perches	}
61203705ce5bSJoe Perches
6121d8469f16SJoe Perches	if ($quiet == 0) {
6122d8469f16SJoe Perches		print "\n";
6123d8469f16SJoe Perches		if ($clean == 1) {
6124d8469f16SJoe Perches			print "$vname has no obvious style problems and is ready for submission.\n";
6125d8469f16SJoe Perches		} else {
6126d8469f16SJoe Perches			print "$vname has style problems, please review.\n";
61270a920b5bSAndy Whitcroft		}
61280a920b5bSAndy Whitcroft	}
61290a920b5bSAndy Whitcroft	return $clean;
61300a920b5bSAndy Whitcroft}
6131