xref: /linux-6.15/scripts/checkpatch.pl (revision f59b64bf)
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";
57bf1fa1daSJoe Perchesmy $conststructsfile = "$D/const_structs.checkpatch";
5857230297SJoe Perchesmy $color = 1;
59dadf680dSJoe Perchesmy $allow_c99_comments = 1;
6077f5b10aSHannes Eder
6177f5b10aSHannes Edersub help {
6277f5b10aSHannes Eder	my ($exitcode) = @_;
6377f5b10aSHannes Eder
6477f5b10aSHannes Eder	print << "EOM";
6577f5b10aSHannes EderUsage: $P [OPTION]... [FILE]...
6677f5b10aSHannes EderVersion: $V
6777f5b10aSHannes Eder
6877f5b10aSHannes EderOptions:
6977f5b10aSHannes Eder  -q, --quiet                quiet
7077f5b10aSHannes Eder  --no-tree                  run without a kernel tree
7177f5b10aSHannes Eder  --no-signoff               do not check for 'Signed-off-by' line
7277f5b10aSHannes Eder  --patch                    treat FILE as patchfile (default)
7377f5b10aSHannes Eder  --emacs                    emacs compile window format
7477f5b10aSHannes Eder  --terse                    one line per report
7534d8815fSJoe Perches  --showfile                 emit diffed file position, not input file position
764a593c34SDu, Changbin  -g, --git                  treat FILE as a single commit or git revision range
774a593c34SDu, Changbin                             single git commit with:
784a593c34SDu, Changbin                               <rev>
794a593c34SDu, Changbin                               <rev>^
804a593c34SDu, Changbin                               <rev>~n
814a593c34SDu, Changbin                             multiple git commits with:
824a593c34SDu, Changbin                               <rev1>..<rev2>
834a593c34SDu, Changbin                               <rev1>...<rev2>
844a593c34SDu, Changbin                               <rev>-<count>
854a593c34SDu, Changbin                             git merges are ignored
8677f5b10aSHannes Eder  -f, --file                 treat FILE as regular source file
8777f5b10aSHannes Eder  --subjective, --strict     enable more subjective tests
883beb42ecSJoe Perches  --list-types               list the possible message types
8991bfe484SJoe Perches  --types TYPE(,TYPE2...)    show only these comma separated message types
90000d1cc1SJoe Perches  --ignore TYPE(,TYPE2...)   ignore various comma separated message types
913beb42ecSJoe Perches  --show-types               show the specific message type in the output
926cd7f386SJoe Perches  --max-line-length=n        set the maximum line length, if exceeded, warn
9356193274SVadim Bendebury  --min-conf-desc-length=n   set the min description length, if shorter, warn
9477f5b10aSHannes Eder  --root=PATH                PATH to the kernel tree root
9577f5b10aSHannes Eder  --no-summary               suppress the per-file summary
9677f5b10aSHannes Eder  --mailback                 only produce a report in case of warnings/errors
9777f5b10aSHannes Eder  --summary-file             include the filename in summary
9877f5b10aSHannes Eder  --debug KEY=[0|1]          turn on/off debugging of KEY, where KEY is one of
9977f5b10aSHannes Eder                             'values', 'possible', 'type', and 'attr' (default
10077f5b10aSHannes Eder                             is all off)
10177f5b10aSHannes Eder  --test-only=WORD           report only warnings/errors containing WORD
10277f5b10aSHannes Eder                             literally
1033705ce5bSJoe Perches  --fix                      EXPERIMENTAL - may create horrible results
1043705ce5bSJoe Perches                             If correctable single-line errors exist, create
1053705ce5bSJoe Perches                             "<inputfile>.EXPERIMENTAL-checkpatch-fixes"
1063705ce5bSJoe Perches                             with potential errors corrected to the preferred
1073705ce5bSJoe Perches                             checkpatch style
1089624b8d6SJoe Perches  --fix-inplace              EXPERIMENTAL - may create horrible results
1099624b8d6SJoe Perches                             Is the same as --fix, but overwrites the input
1109624b8d6SJoe Perches                             file.  It's your fault if there's no backup or git
111d62a201fSDave Hansen  --ignore-perl-version      override checking of perl version.  expect
112d62a201fSDave Hansen                             runtime errors.
113ebfd7d62SJoe Perches  --codespell                Use the codespell dictionary for spelling/typos
114f1a63678SMaxim Uvarov                             (default:/usr/share/codespell/dictionary.txt)
115ebfd7d62SJoe Perches  --codespellfile            Use this codespell dictionary
11657230297SJoe Perches  --color                    Use colors when output is STDOUT (default: on)
11777f5b10aSHannes Eder  -h, --help, --version      display this help and exit
11877f5b10aSHannes Eder
11977f5b10aSHannes EderWhen FILE is - read standard input.
12077f5b10aSHannes EderEOM
12177f5b10aSHannes Eder
12277f5b10aSHannes Eder	exit($exitcode);
12377f5b10aSHannes Eder}
12477f5b10aSHannes Eder
1253beb42ecSJoe Perchessub uniq {
1263beb42ecSJoe Perches	my %seen;
1273beb42ecSJoe Perches	return grep { !$seen{$_}++ } @_;
1283beb42ecSJoe Perches}
1293beb42ecSJoe Perches
1303beb42ecSJoe Perchessub list_types {
1313beb42ecSJoe Perches	my ($exitcode) = @_;
1323beb42ecSJoe Perches
1333beb42ecSJoe Perches	my $count = 0;
1343beb42ecSJoe Perches
1353beb42ecSJoe Perches	local $/ = undef;
1363beb42ecSJoe Perches
1373beb42ecSJoe Perches	open(my $script, '<', abs_path($P)) or
1383beb42ecSJoe Perches	    die "$P: Can't read '$P' $!\n";
1393beb42ecSJoe Perches
1403beb42ecSJoe Perches	my $text = <$script>;
1413beb42ecSJoe Perches	close($script);
1423beb42ecSJoe Perches
1433beb42ecSJoe Perches	my @types = ();
1443beb42ecSJoe Perches	for ($text =~ /\b(?:(?:CHK|WARN|ERROR)\s*\(\s*"([^"]+)")/g) {
1453beb42ecSJoe Perches		push (@types, $_);
1463beb42ecSJoe Perches	}
1473beb42ecSJoe Perches	@types = sort(uniq(@types));
1483beb42ecSJoe Perches	print("#\tMessage type\n\n");
1493beb42ecSJoe Perches	foreach my $type (@types) {
1503beb42ecSJoe Perches		print(++$count . "\t" . $type . "\n");
1513beb42ecSJoe Perches	}
1523beb42ecSJoe Perches
1533beb42ecSJoe Perches	exit($exitcode);
1543beb42ecSJoe Perches}
1553beb42ecSJoe Perches
156000d1cc1SJoe Perchesmy $conf = which_conf($configuration_file);
157000d1cc1SJoe Perchesif (-f $conf) {
158000d1cc1SJoe Perches	my @conf_args;
159000d1cc1SJoe Perches	open(my $conffile, '<', "$conf")
160000d1cc1SJoe Perches	    or warn "$P: Can't find a readable $configuration_file file $!\n";
161000d1cc1SJoe Perches
162000d1cc1SJoe Perches	while (<$conffile>) {
163000d1cc1SJoe Perches		my $line = $_;
164000d1cc1SJoe Perches
165000d1cc1SJoe Perches		$line =~ s/\s*\n?$//g;
166000d1cc1SJoe Perches		$line =~ s/^\s*//g;
167000d1cc1SJoe Perches		$line =~ s/\s+/ /g;
168000d1cc1SJoe Perches
169000d1cc1SJoe Perches		next if ($line =~ m/^\s*#/);
170000d1cc1SJoe Perches		next if ($line =~ m/^\s*$/);
171000d1cc1SJoe Perches
172000d1cc1SJoe Perches		my @words = split(" ", $line);
173000d1cc1SJoe Perches		foreach my $word (@words) {
174000d1cc1SJoe Perches			last if ($word =~ m/^#/);
175000d1cc1SJoe Perches			push (@conf_args, $word);
176000d1cc1SJoe Perches		}
177000d1cc1SJoe Perches	}
178000d1cc1SJoe Perches	close($conffile);
179000d1cc1SJoe Perches	unshift(@ARGV, @conf_args) if @conf_args;
180000d1cc1SJoe Perches}
181000d1cc1SJoe Perches
1820a920b5bSAndy WhitcroftGetOptions(
1836c72ffaaSAndy Whitcroft	'q|quiet+'	=> \$quiet,
1840a920b5bSAndy Whitcroft	'tree!'		=> \$tree,
1850a920b5bSAndy Whitcroft	'signoff!'	=> \$chk_signoff,
1860a920b5bSAndy Whitcroft	'patch!'	=> \$chk_patch,
1876c72ffaaSAndy Whitcroft	'emacs!'	=> \$emacs,
1888905a67cSAndy Whitcroft	'terse!'	=> \$terse,
18934d8815fSJoe Perches	'showfile!'	=> \$showfile,
19077f5b10aSHannes Eder	'f|file!'	=> \$file,
1914a593c34SDu, Changbin	'g|git!'	=> \$git,
1926c72ffaaSAndy Whitcroft	'subjective!'	=> \$check,
1936c72ffaaSAndy Whitcroft	'strict!'	=> \$check,
194000d1cc1SJoe Perches	'ignore=s'	=> \@ignore,
19591bfe484SJoe Perches	'types=s'	=> \@use,
196000d1cc1SJoe Perches	'show-types!'	=> \$show_types,
1973beb42ecSJoe Perches	'list-types!'	=> \$list_types,
1986cd7f386SJoe Perches	'max-line-length=i' => \$max_line_length,
19956193274SVadim Bendebury	'min-conf-desc-length=i' => \$min_conf_desc_length,
2006c72ffaaSAndy Whitcroft	'root=s'	=> \$root,
2018905a67cSAndy Whitcroft	'summary!'	=> \$summary,
2028905a67cSAndy Whitcroft	'mailback!'	=> \$mailback,
20313214adfSAndy Whitcroft	'summary-file!'	=> \$summary_file,
2043705ce5bSJoe Perches	'fix!'		=> \$fix,
2059624b8d6SJoe Perches	'fix-inplace!'	=> \$fix_inplace,
206d62a201fSDave Hansen	'ignore-perl-version!' => \$ignore_perl_version,
207c2fdda0dSAndy Whitcroft	'debug=s'	=> \%debug,
208773647a0SAndy Whitcroft	'test-only=s'	=> \$tst_only,
209ebfd7d62SJoe Perches	'codespell!'	=> \$codespell,
210ebfd7d62SJoe Perches	'codespellfile=s'	=> \$codespellfile,
21157230297SJoe Perches	'color!'	=> \$color,
21277f5b10aSHannes Eder	'h|help'	=> \$help,
21377f5b10aSHannes Eder	'version'	=> \$help
21477f5b10aSHannes Eder) or help(1);
21577f5b10aSHannes Eder
21677f5b10aSHannes Ederhelp(0) if ($help);
2170a920b5bSAndy Whitcroft
2183beb42ecSJoe Percheslist_types(0) if ($list_types);
2193beb42ecSJoe Perches
2209624b8d6SJoe Perches$fix = 1 if ($fix_inplace);
2212ac73b4fSJoe Perches$check_orig = $check;
2229624b8d6SJoe Perches
2230a920b5bSAndy Whitcroftmy $exit = 0;
2240a920b5bSAndy Whitcroft
225d62a201fSDave Hansenif ($^V && $^V lt $minimum_perl_version) {
226d62a201fSDave Hansen	printf "$P: requires at least perl version %vd\n", $minimum_perl_version;
227d62a201fSDave Hansen	if (!$ignore_perl_version) {
228d62a201fSDave Hansen		exit(1);
229d62a201fSDave Hansen	}
230d62a201fSDave Hansen}
231d62a201fSDave Hansen
23245107ff6SAllen Hubbe#if no filenames are given, push '-' to read patch from stdin
2330a920b5bSAndy Whitcroftif ($#ARGV < 0) {
23445107ff6SAllen Hubbe	push(@ARGV, '-');
2350a920b5bSAndy Whitcroft}
2360a920b5bSAndy Whitcroft
23791bfe484SJoe Perchessub hash_save_array_words {
23891bfe484SJoe Perches	my ($hashRef, $arrayRef) = @_;
23991bfe484SJoe Perches
24091bfe484SJoe Perches	my @array = split(/,/, join(',', @$arrayRef));
24191bfe484SJoe Perches	foreach my $word (@array) {
242000d1cc1SJoe Perches		$word =~ s/\s*\n?$//g;
243000d1cc1SJoe Perches		$word =~ s/^\s*//g;
244000d1cc1SJoe Perches		$word =~ s/\s+/ /g;
245000d1cc1SJoe Perches		$word =~ tr/[a-z]/[A-Z]/;
246000d1cc1SJoe Perches
247000d1cc1SJoe Perches		next if ($word =~ m/^\s*#/);
248000d1cc1SJoe Perches		next if ($word =~ m/^\s*$/);
249000d1cc1SJoe Perches
25091bfe484SJoe Perches		$hashRef->{$word}++;
251000d1cc1SJoe Perches	}
25291bfe484SJoe Perches}
25391bfe484SJoe Perches
25491bfe484SJoe Perchessub hash_show_words {
25591bfe484SJoe Perches	my ($hashRef, $prefix) = @_;
25691bfe484SJoe Perches
2573c816e49SJoe Perches	if (keys %$hashRef) {
258d8469f16SJoe Perches		print "\nNOTE: $prefix message types:";
25958cb3cf6SJoe Perches		foreach my $word (sort keys %$hashRef) {
26091bfe484SJoe Perches			print " $word";
26191bfe484SJoe Perches		}
262d8469f16SJoe Perches		print "\n";
26391bfe484SJoe Perches	}
26491bfe484SJoe Perches}
26591bfe484SJoe Perches
26691bfe484SJoe Percheshash_save_array_words(\%ignore_type, \@ignore);
26791bfe484SJoe Percheshash_save_array_words(\%use_type, \@use);
268000d1cc1SJoe Perches
269c2fdda0dSAndy Whitcroftmy $dbg_values = 0;
270c2fdda0dSAndy Whitcroftmy $dbg_possible = 0;
2717429c690SAndy Whitcroftmy $dbg_type = 0;
272a1ef277eSAndy Whitcroftmy $dbg_attr = 0;
273c2fdda0dSAndy Whitcroftfor my $key (keys %debug) {
27421caa13cSAndy Whitcroft	## no critic
27521caa13cSAndy Whitcroft	eval "\${dbg_$key} = '$debug{$key}';";
27621caa13cSAndy Whitcroft	die "$@" if ($@);
277c2fdda0dSAndy Whitcroft}
278c2fdda0dSAndy Whitcroft
279d2c0a235SAndy Whitcroftmy $rpt_cleaners = 0;
280d2c0a235SAndy Whitcroft
2818905a67cSAndy Whitcroftif ($terse) {
2828905a67cSAndy Whitcroft	$emacs = 1;
2838905a67cSAndy Whitcroft	$quiet++;
2848905a67cSAndy Whitcroft}
2858905a67cSAndy Whitcroft
2866c72ffaaSAndy Whitcroftif ($tree) {
2876c72ffaaSAndy Whitcroft	if (defined $root) {
2886c72ffaaSAndy Whitcroft		if (!top_of_kernel_tree($root)) {
2896c72ffaaSAndy Whitcroft			die "$P: $root: --root does not point at a valid tree\n";
2906c72ffaaSAndy Whitcroft		}
2916c72ffaaSAndy Whitcroft	} else {
2926c72ffaaSAndy Whitcroft		if (top_of_kernel_tree('.')) {
2936c72ffaaSAndy Whitcroft			$root = '.';
2946c72ffaaSAndy Whitcroft		} elsif ($0 =~ m@(.*)/scripts/[^/]*$@ &&
2956c72ffaaSAndy Whitcroft						top_of_kernel_tree($1)) {
2966c72ffaaSAndy Whitcroft			$root = $1;
2976c72ffaaSAndy Whitcroft		}
2986c72ffaaSAndy Whitcroft	}
2996c72ffaaSAndy Whitcroft
3006c72ffaaSAndy Whitcroft	if (!defined $root) {
3010a920b5bSAndy Whitcroft		print "Must be run from the top-level dir. of a kernel tree\n";
3020a920b5bSAndy Whitcroft		exit(2);
3030a920b5bSAndy Whitcroft	}
3046c72ffaaSAndy Whitcroft}
3056c72ffaaSAndy Whitcroft
3066c72ffaaSAndy Whitcroftmy $emitted_corrupt = 0;
3076c72ffaaSAndy Whitcroft
3082ceb532bSAndy Whitcroftour $Ident	= qr{
3092ceb532bSAndy Whitcroft			[A-Za-z_][A-Za-z\d_]*
3102ceb532bSAndy Whitcroft			(?:\s*\#\#\s*[A-Za-z_][A-Za-z\d_]*)*
3112ceb532bSAndy Whitcroft		}x;
3126c72ffaaSAndy Whitcroftour $Storage	= qr{extern|static|asmlinkage};
3136c72ffaaSAndy Whitcroftour $Sparse	= qr{
3146c72ffaaSAndy Whitcroft			__user|
3156c72ffaaSAndy Whitcroft			__kernel|
3166c72ffaaSAndy Whitcroft			__force|
3176c72ffaaSAndy Whitcroft			__iomem|
3186c72ffaaSAndy Whitcroft			__must_check|
3196c72ffaaSAndy Whitcroft			__init_refok|
320417495edSAndy Whitcroft			__kprobes|
321165e72a6SSven Eckelmann			__ref|
322ad315455SBoqun Feng			__rcu|
323ad315455SBoqun Feng			__private
3246c72ffaaSAndy Whitcroft		}x;
325e970b884SJoe Perchesour $InitAttributePrefix = qr{__(?:mem|cpu|dev|net_|)};
326e970b884SJoe Perchesour $InitAttributeData = qr{$InitAttributePrefix(?:initdata\b)};
327e970b884SJoe Perchesour $InitAttributeConst = qr{$InitAttributePrefix(?:initconst\b)};
328e970b884SJoe Perchesour $InitAttributeInit = qr{$InitAttributePrefix(?:init\b)};
329e970b884SJoe Perchesour $InitAttribute = qr{$InitAttributeData|$InitAttributeConst|$InitAttributeInit};
3308716de38SJoe Perches
33152131292SWolfram Sang# Notes to $Attribute:
33252131292SWolfram Sang# We need \b after 'init' otherwise 'initconst' will cause a false positive in a check
3336c72ffaaSAndy Whitcroftour $Attribute	= qr{
3346c72ffaaSAndy Whitcroft			const|
33503f1df7dSJoe Perches			__percpu|
33603f1df7dSJoe Perches			__nocast|
33703f1df7dSJoe Perches			__safe|
33803f1df7dSJoe Perches			__bitwise__|
33903f1df7dSJoe Perches			__packed__|
34003f1df7dSJoe Perches			__packed2__|
34103f1df7dSJoe Perches			__naked|
34203f1df7dSJoe Perches			__maybe_unused|
34303f1df7dSJoe Perches			__always_unused|
34403f1df7dSJoe Perches			__noreturn|
34503f1df7dSJoe Perches			__used|
34603f1df7dSJoe Perches			__cold|
347e23ef1f3SJoe Perches			__pure|
34803f1df7dSJoe Perches			__noclone|
34903f1df7dSJoe Perches			__deprecated|
3506c72ffaaSAndy Whitcroft			__read_mostly|
3516c72ffaaSAndy Whitcroft			__kprobes|
3528716de38SJoe Perches			$InitAttribute|
35324e1d81aSAndy Whitcroft			____cacheline_aligned|
35424e1d81aSAndy Whitcroft			____cacheline_aligned_in_smp|
3555fe3af11SAndy Whitcroft			____cacheline_internodealigned_in_smp|
3565fe3af11SAndy Whitcroft			__weak
3576c72ffaaSAndy Whitcroft		  }x;
358c45dcabdSAndy Whitcroftour $Modifier;
35991cb5195SJoe Perchesour $Inline	= qr{inline|__always_inline|noinline|__inline|__inline__};
3606c72ffaaSAndy Whitcroftour $Member	= qr{->$Ident|\.$Ident|\[[^]]*\]};
3616c72ffaaSAndy Whitcroftour $Lval	= qr{$Ident(?:$Member)*};
3626c72ffaaSAndy Whitcroft
36395e2c602SJoe Perchesour $Int_type	= qr{(?i)llu|ull|ll|lu|ul|l|u};
36495e2c602SJoe Perchesour $Binary	= qr{(?i)0b[01]+$Int_type?};
36595e2c602SJoe Perchesour $Hex	= qr{(?i)0x[0-9a-f]+$Int_type?};
36695e2c602SJoe Perchesour $Int	= qr{[0-9]+$Int_type?};
3672435880fSJoe Perchesour $Octal	= qr{0[0-7]+$Int_type?};
368c0a5c898SJoe Perchesour $String	= qr{"[X\t]*"};
369326b1ffcSJoe Perchesour $Float_hex	= qr{(?i)0x[0-9a-f]+p-?[0-9]+[fl]?};
370326b1ffcSJoe Perchesour $Float_dec	= qr{(?i)(?:[0-9]+\.[0-9]*|[0-9]*\.[0-9]+)(?:e-?[0-9]+)?[fl]?};
371326b1ffcSJoe Perchesour $Float_int	= qr{(?i)[0-9]+e-?[0-9]+[fl]?};
37274349bccSJoe Perchesour $Float	= qr{$Float_hex|$Float_dec|$Float_int};
3732435880fSJoe Perchesour $Constant	= qr{$Float|$Binary|$Octal|$Hex|$Int};
374326b1ffcSJoe Perchesour $Assignment	= qr{\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=};
375447432f3SJoe Perchesour $Compare    = qr{<=|>=|==|!=|<|(?<!-)>};
37623f780c9SJoe Perchesour $Arithmetic = qr{\+|-|\*|\/|%};
3776c72ffaaSAndy Whitcroftour $Operators	= qr{
3786c72ffaaSAndy Whitcroft			<=|>=|==|!=|
3796c72ffaaSAndy Whitcroft			=>|->|<<|>>|<|>|!|~|
38023f780c9SJoe Perches			&&|\|\||,|\^|\+\+|--|&|\||$Arithmetic
3816c72ffaaSAndy Whitcroft		  }x;
3826c72ffaaSAndy Whitcroft
38391cb5195SJoe Perchesour $c90_Keywords = qr{do|for|while|if|else|return|goto|continue|switch|default|case|break}x;
38491cb5195SJoe Perches
385ab7e23f3SJoe Perchesour $BasicType;
3868905a67cSAndy Whitcroftour $NonptrType;
3871813087dSJoe Perchesour $NonptrTypeMisordered;
3888716de38SJoe Perchesour $NonptrTypeWithAttr;
3898905a67cSAndy Whitcroftour $Type;
3901813087dSJoe Perchesour $TypeMisordered;
3918905a67cSAndy Whitcroftour $Declare;
3921813087dSJoe Perchesour $DeclareMisordered;
3938905a67cSAndy Whitcroft
39415662b3eSJoe Perchesour $NON_ASCII_UTF8	= qr{
39515662b3eSJoe Perches	[\xC2-\xDF][\x80-\xBF]               # non-overlong 2-byte
396171ae1a4SAndy Whitcroft	|  \xE0[\xA0-\xBF][\x80-\xBF]        # excluding overlongs
397171ae1a4SAndy Whitcroft	| [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2}  # straight 3-byte
398171ae1a4SAndy Whitcroft	|  \xED[\x80-\x9F][\x80-\xBF]        # excluding surrogates
399171ae1a4SAndy Whitcroft	|  \xF0[\x90-\xBF][\x80-\xBF]{2}     # planes 1-3
400171ae1a4SAndy Whitcroft	| [\xF1-\xF3][\x80-\xBF]{3}          # planes 4-15
401171ae1a4SAndy Whitcroft	|  \xF4[\x80-\x8F][\x80-\xBF]{2}     # plane 16
402171ae1a4SAndy Whitcroft}x;
403171ae1a4SAndy Whitcroft
40415662b3eSJoe Perchesour $UTF8	= qr{
40515662b3eSJoe Perches	[\x09\x0A\x0D\x20-\x7E]              # ASCII
40615662b3eSJoe Perches	| $NON_ASCII_UTF8
40715662b3eSJoe Perches}x;
40815662b3eSJoe Perches
409e6176fa4SJoe Perchesour $typeC99Typedefs = qr{(?:__)?(?:[us]_?)?int_?(?:8|16|32|64)_t};
410021158b4SJoe Perchesour $typeOtherOSTypedefs = qr{(?x:
411021158b4SJoe Perches	u_(?:char|short|int|long) |          # bsd
412021158b4SJoe Perches	u(?:nchar|short|int|long)            # sysv
413021158b4SJoe Perches)};
414e6176fa4SJoe Perchesour $typeKernelTypedefs = qr{(?x:
415fb9e9096SAndy Whitcroft	(?:__)?(?:u|s|be|le)(?:8|16|32|64)|
4168ed22cadSAndy Whitcroft	atomic_t
4178ed22cadSAndy Whitcroft)};
418e6176fa4SJoe Perchesour $typeTypedefs = qr{(?x:
419e6176fa4SJoe Perches	$typeC99Typedefs\b|
420e6176fa4SJoe Perches	$typeOtherOSTypedefs\b|
421e6176fa4SJoe Perches	$typeKernelTypedefs\b
422e6176fa4SJoe Perches)};
4238ed22cadSAndy Whitcroft
4246d32f7a3SJoe Perchesour $zero_initializer = qr{(?:(?:0[xX])?0+$Int_type?|NULL|false)\b};
4256d32f7a3SJoe Perches
426691e669bSJoe Perchesour $logFunctions = qr{(?x:
4276e60c02eSJoe Perches	printk(?:_ratelimited|_once|)|
4287d0b6594SJacob Keller	(?:[a-z0-9]+_){1,2}(?:printk|emerg|alert|crit|err|warning|warn|notice|info|debug|dbg|vdbg|devel|cont|WARN)(?:_ratelimited|_once|)|
4296e60c02eSJoe Perches	WARN(?:_RATELIMIT|_ONCE|)|
430b0531722SJoe Perches	panic|
43106668727SJoe Perches	MODULE_[A-Z_]+|
43206668727SJoe Perches	seq_vprintf|seq_printf|seq_puts
433691e669bSJoe Perches)};
434691e669bSJoe Perches
43520112475SJoe Perchesour $signature_tags = qr{(?xi:
43620112475SJoe Perches	Signed-off-by:|
43720112475SJoe Perches	Acked-by:|
43820112475SJoe Perches	Tested-by:|
43920112475SJoe Perches	Reviewed-by:|
44020112475SJoe Perches	Reported-by:|
4418543ae12SMugunthan V N	Suggested-by:|
44220112475SJoe Perches	To:|
44320112475SJoe Perches	Cc:
44420112475SJoe Perches)};
44520112475SJoe Perches
4461813087dSJoe Perchesour @typeListMisordered = (
4471813087dSJoe Perches	qr{char\s+(?:un)?signed},
4481813087dSJoe Perches	qr{int\s+(?:(?:un)?signed\s+)?short\s},
4491813087dSJoe Perches	qr{int\s+short(?:\s+(?:un)?signed)},
4501813087dSJoe Perches	qr{short\s+int(?:\s+(?:un)?signed)},
4511813087dSJoe Perches	qr{(?:un)?signed\s+int\s+short},
4521813087dSJoe Perches	qr{short\s+(?:un)?signed},
4531813087dSJoe Perches	qr{long\s+int\s+(?:un)?signed},
4541813087dSJoe Perches	qr{int\s+long\s+(?:un)?signed},
4551813087dSJoe Perches	qr{long\s+(?:un)?signed\s+int},
4561813087dSJoe Perches	qr{int\s+(?:un)?signed\s+long},
4571813087dSJoe Perches	qr{int\s+(?:un)?signed},
4581813087dSJoe Perches	qr{int\s+long\s+long\s+(?:un)?signed},
4591813087dSJoe Perches	qr{long\s+long\s+int\s+(?:un)?signed},
4601813087dSJoe Perches	qr{long\s+long\s+(?:un)?signed\s+int},
4611813087dSJoe Perches	qr{long\s+long\s+(?:un)?signed},
4621813087dSJoe Perches	qr{long\s+(?:un)?signed},
4631813087dSJoe Perches);
4641813087dSJoe Perches
4658905a67cSAndy Whitcroftour @typeList = (
4668905a67cSAndy Whitcroft	qr{void},
4670c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?char},
4680c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?short\s+int},
4690c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?short},
4700c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?int},
4710c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?long\s+int},
4720c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?long\s+long\s+int},
4730c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?long\s+long},
4740c773d9dSJoe Perches	qr{(?:(?:un)?signed\s+)?long},
4750c773d9dSJoe Perches	qr{(?:un)?signed},
4768905a67cSAndy Whitcroft	qr{float},
4778905a67cSAndy Whitcroft	qr{double},
4788905a67cSAndy Whitcroft	qr{bool},
4798905a67cSAndy Whitcroft	qr{struct\s+$Ident},
4808905a67cSAndy Whitcroft	qr{union\s+$Ident},
4818905a67cSAndy Whitcroft	qr{enum\s+$Ident},
4828905a67cSAndy Whitcroft	qr{${Ident}_t},
4838905a67cSAndy Whitcroft	qr{${Ident}_handler},
4848905a67cSAndy Whitcroft	qr{${Ident}_handler_fn},
4851813087dSJoe Perches	@typeListMisordered,
4868905a67cSAndy Whitcroft);
487938224b5SJoe Perches
488938224b5SJoe Perchesour $C90_int_types = qr{(?x:
489938224b5SJoe Perches	long\s+long\s+int\s+(?:un)?signed|
490938224b5SJoe Perches	long\s+long\s+(?:un)?signed\s+int|
491938224b5SJoe Perches	long\s+long\s+(?:un)?signed|
492938224b5SJoe Perches	(?:(?:un)?signed\s+)?long\s+long\s+int|
493938224b5SJoe Perches	(?:(?:un)?signed\s+)?long\s+long|
494938224b5SJoe Perches	int\s+long\s+long\s+(?:un)?signed|
495938224b5SJoe Perches	int\s+(?:(?:un)?signed\s+)?long\s+long|
496938224b5SJoe Perches
497938224b5SJoe Perches	long\s+int\s+(?:un)?signed|
498938224b5SJoe Perches	long\s+(?:un)?signed\s+int|
499938224b5SJoe Perches	long\s+(?:un)?signed|
500938224b5SJoe Perches	(?:(?:un)?signed\s+)?long\s+int|
501938224b5SJoe Perches	(?:(?:un)?signed\s+)?long|
502938224b5SJoe Perches	int\s+long\s+(?:un)?signed|
503938224b5SJoe Perches	int\s+(?:(?:un)?signed\s+)?long|
504938224b5SJoe Perches
505938224b5SJoe Perches	int\s+(?:un)?signed|
506938224b5SJoe Perches	(?:(?:un)?signed\s+)?int
507938224b5SJoe Perches)};
508938224b5SJoe Perches
509485ff23eSAlex Dowadour @typeListFile = ();
5108716de38SJoe Perchesour @typeListWithAttr = (
5118716de38SJoe Perches	@typeList,
5128716de38SJoe Perches	qr{struct\s+$InitAttribute\s+$Ident},
5138716de38SJoe Perches	qr{union\s+$InitAttribute\s+$Ident},
5148716de38SJoe Perches);
5158716de38SJoe Perches
516c45dcabdSAndy Whitcroftour @modifierList = (
517c45dcabdSAndy Whitcroft	qr{fastcall},
518c45dcabdSAndy Whitcroft);
519485ff23eSAlex Dowadour @modifierListFile = ();
5208905a67cSAndy Whitcroft
5212435880fSJoe Perchesour @mode_permission_funcs = (
5222435880fSJoe Perches	["module_param", 3],
5232435880fSJoe Perches	["module_param_(?:array|named|string)", 4],
5242435880fSJoe Perches	["module_param_array_named", 5],
5252435880fSJoe Perches	["debugfs_create_(?:file|u8|u16|u32|u64|x8|x16|x32|x64|size_t|atomic_t|bool|blob|regset32|u32_array)", 2],
5262435880fSJoe Perches	["proc_create(?:_data|)", 2],
5272435880fSJoe Perches	["(?:CLASS|DEVICE|SENSOR)_ATTR", 2],
5282435880fSJoe Perches);
5292435880fSJoe Perches
530515a235eSJoe Perches#Create a search pattern for all these functions to speed up a loop below
531515a235eSJoe Perchesour $mode_perms_search = "";
532515a235eSJoe Perchesforeach my $entry (@mode_permission_funcs) {
533515a235eSJoe Perches	$mode_perms_search .= '|' if ($mode_perms_search ne "");
534515a235eSJoe Perches	$mode_perms_search .= $entry->[0];
535515a235eSJoe Perches}
536515a235eSJoe Perches
537b392c64fSJoe Perchesour $mode_perms_world_writable = qr{
538b392c64fSJoe Perches	S_IWUGO		|
539b392c64fSJoe Perches	S_IWOTH		|
540b392c64fSJoe Perches	S_IRWXUGO	|
541b392c64fSJoe Perches	S_IALLUGO	|
542b392c64fSJoe Perches	0[0-7][0-7][2367]
543b392c64fSJoe Perches}x;
544b392c64fSJoe Perches
545f90774e1SJoe Perchesour %mode_permission_string_types = (
546f90774e1SJoe Perches	"S_IRWXU" => 0700,
547f90774e1SJoe Perches	"S_IRUSR" => 0400,
548f90774e1SJoe Perches	"S_IWUSR" => 0200,
549f90774e1SJoe Perches	"S_IXUSR" => 0100,
550f90774e1SJoe Perches	"S_IRWXG" => 0070,
551f90774e1SJoe Perches	"S_IRGRP" => 0040,
552f90774e1SJoe Perches	"S_IWGRP" => 0020,
553f90774e1SJoe Perches	"S_IXGRP" => 0010,
554f90774e1SJoe Perches	"S_IRWXO" => 0007,
555f90774e1SJoe Perches	"S_IROTH" => 0004,
556f90774e1SJoe Perches	"S_IWOTH" => 0002,
557f90774e1SJoe Perches	"S_IXOTH" => 0001,
558f90774e1SJoe Perches	"S_IRWXUGO" => 0777,
559f90774e1SJoe Perches	"S_IRUGO" => 0444,
560f90774e1SJoe Perches	"S_IWUGO" => 0222,
561f90774e1SJoe Perches	"S_IXUGO" => 0111,
562f90774e1SJoe Perches);
563f90774e1SJoe Perches
564f90774e1SJoe Perches#Create a search pattern for all these strings to speed up a loop below
565f90774e1SJoe Perchesour $mode_perms_string_search = "";
566f90774e1SJoe Perchesforeach my $entry (keys %mode_permission_string_types) {
567f90774e1SJoe Perches	$mode_perms_string_search .= '|' if ($mode_perms_string_search ne "");
568f90774e1SJoe Perches	$mode_perms_string_search .= $entry;
569f90774e1SJoe Perches}
570f90774e1SJoe Perches
5717840a94cSWolfram Sangour $allowed_asm_includes = qr{(?x:
5727840a94cSWolfram Sang	irq|
573cdcee686SSergey Ryazanov	memory|
574cdcee686SSergey Ryazanov	time|
575cdcee686SSergey Ryazanov	reboot
5767840a94cSWolfram Sang)};
5777840a94cSWolfram Sang# memory.h: ARM has a custom one
5787840a94cSWolfram Sang
57966b47b4aSKees Cook# Load common spelling mistakes and build regular expression list.
58066b47b4aSKees Cookmy $misspellings;
58166b47b4aSKees Cookmy %spelling_fix;
58236061e38SJoe Perches
58336061e38SJoe Perchesif (open(my $spelling, '<', $spelling_file)) {
58466b47b4aSKees Cook	while (<$spelling>) {
58566b47b4aSKees Cook		my $line = $_;
58666b47b4aSKees Cook
58766b47b4aSKees Cook		$line =~ s/\s*\n?$//g;
58866b47b4aSKees Cook		$line =~ s/^\s*//g;
58966b47b4aSKees Cook
59066b47b4aSKees Cook		next if ($line =~ m/^\s*#/);
59166b47b4aSKees Cook		next if ($line =~ m/^\s*$/);
59266b47b4aSKees Cook
59366b47b4aSKees Cook		my ($suspect, $fix) = split(/\|\|/, $line);
59466b47b4aSKees Cook
59566b47b4aSKees Cook		$spelling_fix{$suspect} = $fix;
59666b47b4aSKees Cook	}
59766b47b4aSKees Cook	close($spelling);
59836061e38SJoe Perches} else {
59936061e38SJoe Perches	warn "No typos will be found - file '$spelling_file': $!\n";
60036061e38SJoe Perches}
60166b47b4aSKees Cook
602ebfd7d62SJoe Perchesif ($codespell) {
603ebfd7d62SJoe Perches	if (open(my $spelling, '<', $codespellfile)) {
604ebfd7d62SJoe Perches		while (<$spelling>) {
605ebfd7d62SJoe Perches			my $line = $_;
606ebfd7d62SJoe Perches
607ebfd7d62SJoe Perches			$line =~ s/\s*\n?$//g;
608ebfd7d62SJoe Perches			$line =~ s/^\s*//g;
609ebfd7d62SJoe Perches
610ebfd7d62SJoe Perches			next if ($line =~ m/^\s*#/);
611ebfd7d62SJoe Perches			next if ($line =~ m/^\s*$/);
612ebfd7d62SJoe Perches			next if ($line =~ m/, disabled/i);
613ebfd7d62SJoe Perches
614ebfd7d62SJoe Perches			$line =~ s/,.*$//;
615ebfd7d62SJoe Perches
616ebfd7d62SJoe Perches			my ($suspect, $fix) = split(/->/, $line);
617ebfd7d62SJoe Perches
618ebfd7d62SJoe Perches			$spelling_fix{$suspect} = $fix;
619ebfd7d62SJoe Perches		}
620ebfd7d62SJoe Perches		close($spelling);
621ebfd7d62SJoe Perches	} else {
622ebfd7d62SJoe Perches		warn "No codespell typos will be found - file '$codespellfile': $!\n";
623ebfd7d62SJoe Perches	}
624ebfd7d62SJoe Perches}
625ebfd7d62SJoe Perches
626ebfd7d62SJoe Perches$misspellings = join("|", sort keys %spelling_fix) if keys %spelling_fix;
627ebfd7d62SJoe Perches
628bf1fa1daSJoe Perchesmy $const_structs = "";
629bf1fa1daSJoe Perchesif (open(my $conststructs, '<', $conststructsfile)) {
630bf1fa1daSJoe Perches	while (<$conststructs>) {
631bf1fa1daSJoe Perches		my $line = $_;
632bf1fa1daSJoe Perches
633bf1fa1daSJoe Perches		$line =~ s/\s*\n?$//g;
634bf1fa1daSJoe Perches		$line =~ s/^\s*//g;
635bf1fa1daSJoe Perches
636bf1fa1daSJoe Perches		next if ($line =~ m/^\s*#/);
637bf1fa1daSJoe Perches		next if ($line =~ m/^\s*$/);
638bf1fa1daSJoe Perches		if ($line =~ /\s/) {
639bf1fa1daSJoe Perches			print("$conststructsfile: '$line' invalid - ignored\n");
640bf1fa1daSJoe Perches			next;
641bf1fa1daSJoe Perches		}
642bf1fa1daSJoe Perches
643bf1fa1daSJoe Perches		$const_structs .= '|' if ($const_structs ne "");
644bf1fa1daSJoe Perches		$const_structs .= $line;
645bf1fa1daSJoe Perches	}
646bf1fa1daSJoe Perches	close($conststructsfile);
647bf1fa1daSJoe Perches} else {
648bf1fa1daSJoe Perches	warn "No structs that should be const will be found - file '$conststructsfile': $!\n";
649bf1fa1daSJoe Perches}
650bf1fa1daSJoe Perches
6518905a67cSAndy Whitcroftsub build_types {
652485ff23eSAlex Dowad	my $mods = "(?x:  \n" . join("|\n  ", (@modifierList, @modifierListFile)) . "\n)";
653485ff23eSAlex Dowad	my $all = "(?x:  \n" . join("|\n  ", (@typeList, @typeListFile)) . "\n)";
6541813087dSJoe Perches	my $Misordered = "(?x:  \n" . join("|\n  ", @typeListMisordered) . "\n)";
6558716de38SJoe Perches	my $allWithAttr = "(?x:  \n" . join("|\n  ", @typeListWithAttr) . "\n)";
656c8cb2ca3SAndy Whitcroft	$Modifier	= qr{(?:$Attribute|$Sparse|$mods)};
657ab7e23f3SJoe Perches	$BasicType	= qr{
658ab7e23f3SJoe Perches				(?:$typeTypedefs\b)|
659ab7e23f3SJoe Perches				(?:${all}\b)
660ab7e23f3SJoe Perches		}x;
6618905a67cSAndy Whitcroft	$NonptrType	= qr{
662d2172eb5SAndy Whitcroft			(?:$Modifier\s+|const\s+)*
663cf655043SAndy Whitcroft			(?:
6646b48db24SAndy Whitcroft				(?:typeof|__typeof__)\s*\([^\)]*\)|
6658ed22cadSAndy Whitcroft				(?:$typeTypedefs\b)|
666c45dcabdSAndy Whitcroft				(?:${all}\b)
667cf655043SAndy Whitcroft			)
668c8cb2ca3SAndy Whitcroft			(?:\s+$Modifier|\s+const)*
6698905a67cSAndy Whitcroft		  }x;
6701813087dSJoe Perches	$NonptrTypeMisordered	= qr{
6711813087dSJoe Perches			(?:$Modifier\s+|const\s+)*
6721813087dSJoe Perches			(?:
6731813087dSJoe Perches				(?:${Misordered}\b)
6741813087dSJoe Perches			)
6751813087dSJoe Perches			(?:\s+$Modifier|\s+const)*
6761813087dSJoe Perches		  }x;
6778716de38SJoe Perches	$NonptrTypeWithAttr	= qr{
6788716de38SJoe Perches			(?:$Modifier\s+|const\s+)*
6798716de38SJoe Perches			(?:
6808716de38SJoe Perches				(?:typeof|__typeof__)\s*\([^\)]*\)|
6818716de38SJoe Perches				(?:$typeTypedefs\b)|
6828716de38SJoe Perches				(?:${allWithAttr}\b)
6838716de38SJoe Perches			)
6848716de38SJoe Perches			(?:\s+$Modifier|\s+const)*
6858716de38SJoe Perches		  }x;
6868905a67cSAndy Whitcroft	$Type	= qr{
687c45dcabdSAndy Whitcroft			$NonptrType
6881574a29fSJoe Perches			(?:(?:\s|\*|\[\])+\s*const|(?:\s|\*\s*(?:const\s*)?|\[\])+|(?:\s*\[\s*\])+)?
689c8cb2ca3SAndy Whitcroft			(?:\s+$Inline|\s+$Modifier)*
6908905a67cSAndy Whitcroft		  }x;
6911813087dSJoe Perches	$TypeMisordered	= qr{
6921813087dSJoe Perches			$NonptrTypeMisordered
6931813087dSJoe Perches			(?:(?:\s|\*|\[\])+\s*const|(?:\s|\*\s*(?:const\s*)?|\[\])+|(?:\s*\[\s*\])+)?
6941813087dSJoe Perches			(?:\s+$Inline|\s+$Modifier)*
6951813087dSJoe Perches		  }x;
69691cb5195SJoe Perches	$Declare	= qr{(?:$Storage\s+(?:$Inline\s+)?)?$Type};
6971813087dSJoe Perches	$DeclareMisordered	= qr{(?:$Storage\s+(?:$Inline\s+)?)?$TypeMisordered};
6988905a67cSAndy Whitcroft}
6998905a67cSAndy Whitcroftbuild_types();
7006c72ffaaSAndy Whitcroft
7017d2367afSJoe Perchesour $Typecast	= qr{\s*(\(\s*$NonptrType\s*\)){0,1}\s*};
702d1fe9c09SJoe Perches
703d1fe9c09SJoe Perches# Using $balanced_parens, $LvalOrFunc, or $FuncArg
704d1fe9c09SJoe Perches# requires at least perl version v5.10.0
705d1fe9c09SJoe Perches# Any use must be runtime checked with $^V
706d1fe9c09SJoe Perches
707d1fe9c09SJoe Perchesour $balanced_parens = qr/(\((?:[^\(\)]++|(?-1))*\))/;
7082435880fSJoe Perchesour $LvalOrFunc	= qr{((?:[\&\*]\s*)?$Lval)\s*($balanced_parens{0,1})\s*};
709c0a5c898SJoe Perchesour $FuncArg = qr{$Typecast{0,1}($LvalOrFunc|$Constant|$String)};
7107d2367afSJoe Perches
711f8422308SJoe Perchesour $declaration_macros = qr{(?x:
7123e838b6cSJoe Perches	(?:$Storage\s+)?(?:[A-Z_][A-Z0-9]*_){0,2}(?:DEFINE|DECLARE)(?:_[A-Z0-9]+){1,6}\s*\(|
713f8422308SJoe Perches	(?:$Storage\s+)?LIST_HEAD\s*\(|
714f8422308SJoe Perches	(?:$Storage\s+)?${Type}\s+uninitialized_var\s*\(
715f8422308SJoe Perches)};
716f8422308SJoe Perches
7177d2367afSJoe Perchessub deparenthesize {
7187d2367afSJoe Perches	my ($string) = @_;
7197d2367afSJoe Perches	return "" if (!defined($string));
7205b9553abSJoe Perches
7215b9553abSJoe Perches	while ($string =~ /^\s*\(.*\)\s*$/) {
7225b9553abSJoe Perches		$string =~ s@^\s*\(\s*@@;
7235b9553abSJoe Perches		$string =~ s@\s*\)\s*$@@;
7245b9553abSJoe Perches	}
7255b9553abSJoe Perches
7267d2367afSJoe Perches	$string =~ s@\s+@ @g;
7275b9553abSJoe Perches
7287d2367afSJoe Perches	return $string;
7297d2367afSJoe Perches}
7307d2367afSJoe Perches
7313445686aSJoe Perchessub seed_camelcase_file {
7323445686aSJoe Perches	my ($file) = @_;
7333445686aSJoe Perches
7343445686aSJoe Perches	return if (!(-f $file));
7353445686aSJoe Perches
7363445686aSJoe Perches	local $/;
7373445686aSJoe Perches
7383445686aSJoe Perches	open(my $include_file, '<', "$file")
7393445686aSJoe Perches	    or warn "$P: Can't read '$file' $!\n";
7403445686aSJoe Perches	my $text = <$include_file>;
7413445686aSJoe Perches	close($include_file);
7423445686aSJoe Perches
7433445686aSJoe Perches	my @lines = split('\n', $text);
7443445686aSJoe Perches
7453445686aSJoe Perches	foreach my $line (@lines) {
7463445686aSJoe Perches		next if ($line !~ /(?:[A-Z][a-z]|[a-z][A-Z])/);
7473445686aSJoe Perches		if ($line =~ /^[ \t]*(?:#[ \t]*define|typedef\s+$Type)\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)/) {
7483445686aSJoe Perches			$camelcase{$1} = 1;
74911ea516aSJoe Perches		} elsif ($line =~ /^\s*$Declare\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)\s*[\(\[,;]/) {
75011ea516aSJoe Perches			$camelcase{$1} = 1;
75111ea516aSJoe Perches		} elsif ($line =~ /^\s*(?:union|struct|enum)\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)\s*[;\{]/) {
7523445686aSJoe Perches			$camelcase{$1} = 1;
7533445686aSJoe Perches		}
7543445686aSJoe Perches	}
7553445686aSJoe Perches}
7563445686aSJoe Perches
75785b0ee18SJoe Perchessub is_maintained_obsolete {
75885b0ee18SJoe Perches	my ($filename) = @_;
75985b0ee18SJoe Perches
76085b0ee18SJoe Perches	return 0 if (!(-e "$root/scripts/get_maintainer.pl"));
76185b0ee18SJoe Perches
7620616efa4SJoe Perches	my $status = `perl $root/scripts/get_maintainer.pl --status --nom --nol --nogit --nogit-fallback -f $filename 2>&1`;
76385b0ee18SJoe Perches
76485b0ee18SJoe Perches	return $status =~ /obsolete/i;
76585b0ee18SJoe Perches}
76685b0ee18SJoe Perches
7673445686aSJoe Perchesmy $camelcase_seeded = 0;
7683445686aSJoe Perchessub seed_camelcase_includes {
7693445686aSJoe Perches	return if ($camelcase_seeded);
7703445686aSJoe Perches
7713445686aSJoe Perches	my $files;
772c707a81dSJoe Perches	my $camelcase_cache = "";
773c707a81dSJoe Perches	my @include_files = ();
774c707a81dSJoe Perches
775c707a81dSJoe Perches	$camelcase_seeded = 1;
776351b2a1fSJoe Perches
7773645e328SRichard Genoud	if (-e ".git") {
778351b2a1fSJoe Perches		my $git_last_include_commit = `git log --no-merges --pretty=format:"%h%n" -1 -- include`;
779351b2a1fSJoe Perches		chomp $git_last_include_commit;
780c707a81dSJoe Perches		$camelcase_cache = ".checkpatch-camelcase.git.$git_last_include_commit";
781c707a81dSJoe Perches	} else {
782c707a81dSJoe Perches		my $last_mod_date = 0;
783c707a81dSJoe Perches		$files = `find $root/include -name "*.h"`;
784c707a81dSJoe Perches		@include_files = split('\n', $files);
785c707a81dSJoe Perches		foreach my $file (@include_files) {
786c707a81dSJoe Perches			my $date = POSIX::strftime("%Y%m%d%H%M",
787c707a81dSJoe Perches						   localtime((stat $file)[9]));
788c707a81dSJoe Perches			$last_mod_date = $date if ($last_mod_date < $date);
789c707a81dSJoe Perches		}
790c707a81dSJoe Perches		$camelcase_cache = ".checkpatch-camelcase.date.$last_mod_date";
791c707a81dSJoe Perches	}
792c707a81dSJoe Perches
793c707a81dSJoe Perches	if ($camelcase_cache ne "" && -f $camelcase_cache) {
794c707a81dSJoe Perches		open(my $camelcase_file, '<', "$camelcase_cache")
795c707a81dSJoe Perches		    or warn "$P: Can't read '$camelcase_cache' $!\n";
796351b2a1fSJoe Perches		while (<$camelcase_file>) {
797351b2a1fSJoe Perches			chomp;
798351b2a1fSJoe Perches			$camelcase{$_} = 1;
799351b2a1fSJoe Perches		}
800351b2a1fSJoe Perches		close($camelcase_file);
801351b2a1fSJoe Perches
802351b2a1fSJoe Perches		return;
803351b2a1fSJoe Perches	}
804c707a81dSJoe Perches
8053645e328SRichard Genoud	if (-e ".git") {
806c707a81dSJoe Perches		$files = `git ls-files "include/*.h"`;
807c707a81dSJoe Perches		@include_files = split('\n', $files);
8083445686aSJoe Perches	}
809c707a81dSJoe Perches
8103445686aSJoe Perches	foreach my $file (@include_files) {
8113445686aSJoe Perches		seed_camelcase_file($file);
8123445686aSJoe Perches	}
813351b2a1fSJoe Perches
814c707a81dSJoe Perches	if ($camelcase_cache ne "") {
815351b2a1fSJoe Perches		unlink glob ".checkpatch-camelcase.*";
816c707a81dSJoe Perches		open(my $camelcase_file, '>', "$camelcase_cache")
817c707a81dSJoe Perches		    or warn "$P: Can't write '$camelcase_cache' $!\n";
818351b2a1fSJoe Perches		foreach (sort { lc($a) cmp lc($b) } keys(%camelcase)) {
819351b2a1fSJoe Perches			print $camelcase_file ("$_\n");
820351b2a1fSJoe Perches		}
821351b2a1fSJoe Perches		close($camelcase_file);
822351b2a1fSJoe Perches	}
8233445686aSJoe Perches}
8243445686aSJoe Perches
825d311cd44SJoe Perchessub git_commit_info {
826d311cd44SJoe Perches	my ($commit, $id, $desc) = @_;
827d311cd44SJoe Perches
828d311cd44SJoe Perches	return ($id, $desc) if ((which("git") eq "") || !(-e ".git"));
829d311cd44SJoe Perches
830d311cd44SJoe Perches	my $output = `git log --no-color --format='%H %s' -1 $commit 2>&1`;
831d311cd44SJoe Perches	$output =~ s/^\s*//gm;
832d311cd44SJoe Perches	my @lines = split("\n", $output);
833d311cd44SJoe Perches
8340d7835fcSJoe Perches	return ($id, $desc) if ($#lines < 0);
8350d7835fcSJoe Perches
836d311cd44SJoe Perches	if ($lines[0] =~ /^error: short SHA1 $commit is ambiguous\./) {
837d311cd44SJoe Perches# Maybe one day convert this block of bash into something that returns
838d311cd44SJoe Perches# all matching commit ids, but it's very slow...
839d311cd44SJoe Perches#
840d311cd44SJoe Perches#		echo "checking commits $1..."
841d311cd44SJoe Perches#		git rev-list --remotes | grep -i "^$1" |
842d311cd44SJoe Perches#		while read line ; do
843d311cd44SJoe Perches#		    git log --format='%H %s' -1 $line |
844d311cd44SJoe Perches#		    echo "commit $(cut -c 1-12,41-)"
845d311cd44SJoe Perches#		done
846d311cd44SJoe Perches	} elsif ($lines[0] =~ /^fatal: ambiguous argument '$commit': unknown revision or path not in the working tree\./) {
847d311cd44SJoe Perches	} else {
848d311cd44SJoe Perches		$id = substr($lines[0], 0, 12);
849d311cd44SJoe Perches		$desc = substr($lines[0], 41);
850d311cd44SJoe Perches	}
851d311cd44SJoe Perches
852d311cd44SJoe Perches	return ($id, $desc);
853d311cd44SJoe Perches}
854d311cd44SJoe Perches
8556c72ffaaSAndy Whitcroft$chk_signoff = 0 if ($file);
8560a920b5bSAndy Whitcroft
85700df344fSAndy Whitcroftmy @rawlines = ();
858c2fdda0dSAndy Whitcroftmy @lines = ();
8593705ce5bSJoe Perchesmy @fixed = ();
860d752fcc8SJoe Perchesmy @fixed_inserted = ();
861d752fcc8SJoe Perchesmy @fixed_deleted = ();
862194f66fcSJoe Perchesmy $fixlinenr = -1;
863194f66fcSJoe Perches
8644a593c34SDu, Changbin# If input is git commits, extract all commits from the commit expressions.
8654a593c34SDu, Changbin# For example, HEAD-3 means we need check 'HEAD, HEAD~1, HEAD~2'.
8664a593c34SDu, Changbindie "$P: No git repository found\n" if ($git && !-e ".git");
8674a593c34SDu, Changbin
8684a593c34SDu, Changbinif ($git) {
8694a593c34SDu, Changbin	my @commits = ();
8700dea9f1eSJoe Perches	foreach my $commit_expr (@ARGV) {
8714a593c34SDu, Changbin		my $git_range;
87228898fd1SJoe Perches		if ($commit_expr =~ m/^(.*)-(\d+)$/) {
87328898fd1SJoe Perches			$git_range = "-$2 $1";
8744a593c34SDu, Changbin		} elsif ($commit_expr =~ m/\.\./) {
8754a593c34SDu, Changbin			$git_range = "$commit_expr";
8764a593c34SDu, Changbin		} else {
8770dea9f1eSJoe Perches			$git_range = "-1 $commit_expr";
8780dea9f1eSJoe Perches		}
8790dea9f1eSJoe Perches		my $lines = `git log --no-color --no-merges --pretty=format:'%H %s' $git_range`;
8800dea9f1eSJoe Perches		foreach my $line (split(/\n/, $lines)) {
88128898fd1SJoe Perches			$line =~ /^([0-9a-fA-F]{40,40}) (.*)$/;
88228898fd1SJoe Perches			next if (!defined($1) || !defined($2));
8830dea9f1eSJoe Perches			my $sha1 = $1;
8840dea9f1eSJoe Perches			my $subject = $2;
8850dea9f1eSJoe Perches			unshift(@commits, $sha1);
8860dea9f1eSJoe Perches			$git_commits{$sha1} = $subject;
8874a593c34SDu, Changbin		}
8884a593c34SDu, Changbin	}
8894a593c34SDu, Changbin	die "$P: no git commits after extraction!\n" if (@commits == 0);
8904a593c34SDu, Changbin	@ARGV = @commits;
8914a593c34SDu, Changbin}
8924a593c34SDu, Changbin
893c2fdda0dSAndy Whitcroftmy $vname;
8946c72ffaaSAndy Whitcroftfor my $filename (@ARGV) {
89521caa13cSAndy Whitcroft	my $FILE;
8964a593c34SDu, Changbin	if ($git) {
8974a593c34SDu, Changbin		open($FILE, '-|', "git format-patch -M --stdout -1 $filename") ||
8984a593c34SDu, Changbin			die "$P: $filename: git format-patch failed - $!\n";
8994a593c34SDu, Changbin	} elsif ($file) {
90021caa13cSAndy Whitcroft		open($FILE, '-|', "diff -u /dev/null $filename") ||
9016c72ffaaSAndy Whitcroft			die "$P: $filename: diff failed - $!\n";
90221caa13cSAndy Whitcroft	} elsif ($filename eq '-') {
90321caa13cSAndy Whitcroft		open($FILE, '<&STDIN');
9046c72ffaaSAndy Whitcroft	} else {
90521caa13cSAndy Whitcroft		open($FILE, '<', "$filename") ||
9066c72ffaaSAndy Whitcroft			die "$P: $filename: open failed - $!\n";
9076c72ffaaSAndy Whitcroft	}
908c2fdda0dSAndy Whitcroft	if ($filename eq '-') {
909c2fdda0dSAndy Whitcroft		$vname = 'Your patch';
9104a593c34SDu, Changbin	} elsif ($git) {
9110dea9f1eSJoe Perches		$vname = "Commit " . substr($filename, 0, 12) . ' ("' . $git_commits{$filename} . '")';
912c2fdda0dSAndy Whitcroft	} else {
913c2fdda0dSAndy Whitcroft		$vname = $filename;
914c2fdda0dSAndy Whitcroft	}
91521caa13cSAndy Whitcroft	while (<$FILE>) {
9160a920b5bSAndy Whitcroft		chomp;
91700df344fSAndy Whitcroft		push(@rawlines, $_);
9186c72ffaaSAndy Whitcroft	}
91921caa13cSAndy Whitcroft	close($FILE);
920d8469f16SJoe Perches
921d8469f16SJoe Perches	if ($#ARGV > 0 && $quiet == 0) {
922d8469f16SJoe Perches		print '-' x length($vname) . "\n";
923d8469f16SJoe Perches		print "$vname\n";
924d8469f16SJoe Perches		print '-' x length($vname) . "\n";
925d8469f16SJoe Perches	}
926d8469f16SJoe Perches
927c2fdda0dSAndy Whitcroft	if (!process($filename)) {
9280a920b5bSAndy Whitcroft		$exit = 1;
9290a920b5bSAndy Whitcroft	}
93000df344fSAndy Whitcroft	@rawlines = ();
93113214adfSAndy Whitcroft	@lines = ();
9323705ce5bSJoe Perches	@fixed = ();
933d752fcc8SJoe Perches	@fixed_inserted = ();
934d752fcc8SJoe Perches	@fixed_deleted = ();
935194f66fcSJoe Perches	$fixlinenr = -1;
936485ff23eSAlex Dowad	@modifierListFile = ();
937485ff23eSAlex Dowad	@typeListFile = ();
938485ff23eSAlex Dowad	build_types();
9390a920b5bSAndy Whitcroft}
9400a920b5bSAndy Whitcroft
941d8469f16SJoe Perchesif (!$quiet) {
9423c816e49SJoe Perches	hash_show_words(\%use_type, "Used");
9433c816e49SJoe Perches	hash_show_words(\%ignore_type, "Ignored");
9443c816e49SJoe Perches
945d8469f16SJoe Perches	if ($^V lt 5.10.0) {
946d8469f16SJoe Perches		print << "EOM"
947d8469f16SJoe Perches
948d8469f16SJoe PerchesNOTE: perl $^V is not modern enough to detect all possible issues.
949d8469f16SJoe Perches      An upgrade to at least perl v5.10.0 is suggested.
950d8469f16SJoe PerchesEOM
951d8469f16SJoe Perches	}
952d8469f16SJoe Perches	if ($exit) {
953d8469f16SJoe Perches		print << "EOM"
954d8469f16SJoe Perches
955d8469f16SJoe PerchesNOTE: If any of the errors are false positives, please report
956d8469f16SJoe Perches      them to the maintainer, see CHECKPATCH in MAINTAINERS.
957d8469f16SJoe PerchesEOM
958d8469f16SJoe Perches	}
959d8469f16SJoe Perches}
960d8469f16SJoe Perches
9610a920b5bSAndy Whitcroftexit($exit);
9620a920b5bSAndy Whitcroft
9630a920b5bSAndy Whitcroftsub top_of_kernel_tree {
9646c72ffaaSAndy Whitcroft	my ($root) = @_;
9656c72ffaaSAndy Whitcroft
9666c72ffaaSAndy Whitcroft	my @tree_check = (
9676c72ffaaSAndy Whitcroft		"COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
9686c72ffaaSAndy Whitcroft		"README", "Documentation", "arch", "include", "drivers",
9696c72ffaaSAndy Whitcroft		"fs", "init", "ipc", "kernel", "lib", "scripts",
9706c72ffaaSAndy Whitcroft	);
9716c72ffaaSAndy Whitcroft
9726c72ffaaSAndy Whitcroft	foreach my $check (@tree_check) {
9736c72ffaaSAndy Whitcroft		if (! -e $root . '/' . $check) {
9740a920b5bSAndy Whitcroft			return 0;
9750a920b5bSAndy Whitcroft		}
9766c72ffaaSAndy Whitcroft	}
9776c72ffaaSAndy Whitcroft	return 1;
9786c72ffaaSAndy Whitcroft}
9790a920b5bSAndy Whitcroft
98020112475SJoe Perchessub parse_email {
98120112475SJoe Perches	my ($formatted_email) = @_;
98220112475SJoe Perches
98320112475SJoe Perches	my $name = "";
98420112475SJoe Perches	my $address = "";
98520112475SJoe Perches	my $comment = "";
98620112475SJoe Perches
98720112475SJoe Perches	if ($formatted_email =~ /^(.*)<(\S+\@\S+)>(.*)$/) {
98820112475SJoe Perches		$name = $1;
98920112475SJoe Perches		$address = $2;
99020112475SJoe Perches		$comment = $3 if defined $3;
99120112475SJoe Perches	} elsif ($formatted_email =~ /^\s*<(\S+\@\S+)>(.*)$/) {
99220112475SJoe Perches		$address = $1;
99320112475SJoe Perches		$comment = $2 if defined $2;
99420112475SJoe Perches	} elsif ($formatted_email =~ /(\S+\@\S+)(.*)$/) {
99520112475SJoe Perches		$address = $1;
99620112475SJoe Perches		$comment = $2 if defined $2;
99720112475SJoe Perches		$formatted_email =~ s/$address.*$//;
99820112475SJoe Perches		$name = $formatted_email;
9993705ce5bSJoe Perches		$name = trim($name);
100020112475SJoe Perches		$name =~ s/^\"|\"$//g;
100120112475SJoe Perches		# If there's a name left after stripping spaces and
100220112475SJoe Perches		# leading quotes, and the address doesn't have both
100320112475SJoe Perches		# leading and trailing angle brackets, the address
100420112475SJoe Perches		# is invalid. ie:
100520112475SJoe Perches		#   "joe smith [email protected]" bad
100620112475SJoe Perches		#   "joe smith <[email protected]" bad
100720112475SJoe Perches		if ($name ne "" && $address !~ /^<[^>]+>$/) {
100820112475SJoe Perches			$name = "";
100920112475SJoe Perches			$address = "";
101020112475SJoe Perches			$comment = "";
101120112475SJoe Perches		}
101220112475SJoe Perches	}
101320112475SJoe Perches
10143705ce5bSJoe Perches	$name = trim($name);
101520112475SJoe Perches	$name =~ s/^\"|\"$//g;
10163705ce5bSJoe Perches	$address = trim($address);
101720112475SJoe Perches	$address =~ s/^\<|\>$//g;
101820112475SJoe Perches
101920112475SJoe Perches	if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
102020112475SJoe Perches		$name =~ s/(?<!\\)"/\\"/g; ##escape quotes
102120112475SJoe Perches		$name = "\"$name\"";
102220112475SJoe Perches	}
102320112475SJoe Perches
102420112475SJoe Perches	return ($name, $address, $comment);
102520112475SJoe Perches}
102620112475SJoe Perches
102720112475SJoe Perchessub format_email {
102820112475SJoe Perches	my ($name, $address) = @_;
102920112475SJoe Perches
103020112475SJoe Perches	my $formatted_email;
103120112475SJoe Perches
10323705ce5bSJoe Perches	$name = trim($name);
103320112475SJoe Perches	$name =~ s/^\"|\"$//g;
10343705ce5bSJoe Perches	$address = trim($address);
103520112475SJoe Perches
103620112475SJoe Perches	if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
103720112475SJoe Perches		$name =~ s/(?<!\\)"/\\"/g; ##escape quotes
103820112475SJoe Perches		$name = "\"$name\"";
103920112475SJoe Perches	}
104020112475SJoe Perches
104120112475SJoe Perches	if ("$name" eq "") {
104220112475SJoe Perches		$formatted_email = "$address";
104320112475SJoe Perches	} else {
104420112475SJoe Perches		$formatted_email = "$name <$address>";
104520112475SJoe Perches	}
104620112475SJoe Perches
104720112475SJoe Perches	return $formatted_email;
104820112475SJoe Perches}
104920112475SJoe Perches
1050d311cd44SJoe Perchessub which {
1051d311cd44SJoe Perches	my ($bin) = @_;
1052d311cd44SJoe Perches
1053d311cd44SJoe Perches	foreach my $path (split(/:/, $ENV{PATH})) {
1054d311cd44SJoe Perches		if (-e "$path/$bin") {
1055d311cd44SJoe Perches			return "$path/$bin";
1056d311cd44SJoe Perches		}
1057d311cd44SJoe Perches	}
1058d311cd44SJoe Perches
1059d311cd44SJoe Perches	return "";
1060d311cd44SJoe Perches}
1061d311cd44SJoe Perches
1062000d1cc1SJoe Perchessub which_conf {
1063000d1cc1SJoe Perches	my ($conf) = @_;
1064000d1cc1SJoe Perches
1065000d1cc1SJoe Perches	foreach my $path (split(/:/, ".:$ENV{HOME}:.scripts")) {
1066000d1cc1SJoe Perches		if (-e "$path/$conf") {
1067000d1cc1SJoe Perches			return "$path/$conf";
1068000d1cc1SJoe Perches		}
1069000d1cc1SJoe Perches	}
1070000d1cc1SJoe Perches
1071000d1cc1SJoe Perches	return "";
1072000d1cc1SJoe Perches}
1073000d1cc1SJoe Perches
10740a920b5bSAndy Whitcroftsub expand_tabs {
10750a920b5bSAndy Whitcroft	my ($str) = @_;
10760a920b5bSAndy Whitcroft
10770a920b5bSAndy Whitcroft	my $res = '';
10780a920b5bSAndy Whitcroft	my $n = 0;
10790a920b5bSAndy Whitcroft	for my $c (split(//, $str)) {
10800a920b5bSAndy Whitcroft		if ($c eq "\t") {
10810a920b5bSAndy Whitcroft			$res .= ' ';
10820a920b5bSAndy Whitcroft			$n++;
10830a920b5bSAndy Whitcroft			for (; ($n % 8) != 0; $n++) {
10840a920b5bSAndy Whitcroft				$res .= ' ';
10850a920b5bSAndy Whitcroft			}
10860a920b5bSAndy Whitcroft			next;
10870a920b5bSAndy Whitcroft		}
10880a920b5bSAndy Whitcroft		$res .= $c;
10890a920b5bSAndy Whitcroft		$n++;
10900a920b5bSAndy Whitcroft	}
10910a920b5bSAndy Whitcroft
10920a920b5bSAndy Whitcroft	return $res;
10930a920b5bSAndy Whitcroft}
10946c72ffaaSAndy Whitcroftsub copy_spacing {
1095773647a0SAndy Whitcroft	(my $res = shift) =~ tr/\t/ /c;
10966c72ffaaSAndy Whitcroft	return $res;
10976c72ffaaSAndy Whitcroft}
10980a920b5bSAndy Whitcroft
10994a0df2efSAndy Whitcroftsub line_stats {
11004a0df2efSAndy Whitcroft	my ($line) = @_;
11014a0df2efSAndy Whitcroft
11024a0df2efSAndy Whitcroft	# Drop the diff line leader and expand tabs
11034a0df2efSAndy Whitcroft	$line =~ s/^.//;
11044a0df2efSAndy Whitcroft	$line = expand_tabs($line);
11054a0df2efSAndy Whitcroft
11064a0df2efSAndy Whitcroft	# Pick the indent from the front of the line.
11074a0df2efSAndy Whitcroft	my ($white) = ($line =~ /^(\s*)/);
11084a0df2efSAndy Whitcroft
11094a0df2efSAndy Whitcroft	return (length($line), length($white));
11104a0df2efSAndy Whitcroft}
11114a0df2efSAndy Whitcroft
1112773647a0SAndy Whitcroftmy $sanitise_quote = '';
1113773647a0SAndy Whitcroft
1114773647a0SAndy Whitcroftsub sanitise_line_reset {
1115773647a0SAndy Whitcroft	my ($in_comment) = @_;
1116773647a0SAndy Whitcroft
1117773647a0SAndy Whitcroft	if ($in_comment) {
1118773647a0SAndy Whitcroft		$sanitise_quote = '*/';
1119773647a0SAndy Whitcroft	} else {
1120773647a0SAndy Whitcroft		$sanitise_quote = '';
1121773647a0SAndy Whitcroft	}
1122773647a0SAndy Whitcroft}
112300df344fSAndy Whitcroftsub sanitise_line {
112400df344fSAndy Whitcroft	my ($line) = @_;
112500df344fSAndy Whitcroft
112600df344fSAndy Whitcroft	my $res = '';
112700df344fSAndy Whitcroft	my $l = '';
112800df344fSAndy Whitcroft
1129c2fdda0dSAndy Whitcroft	my $qlen = 0;
1130773647a0SAndy Whitcroft	my $off = 0;
1131773647a0SAndy Whitcroft	my $c;
113200df344fSAndy Whitcroft
1133773647a0SAndy Whitcroft	# Always copy over the diff marker.
1134773647a0SAndy Whitcroft	$res = substr($line, 0, 1);
1135773647a0SAndy Whitcroft
1136773647a0SAndy Whitcroft	for ($off = 1; $off < length($line); $off++) {
1137773647a0SAndy Whitcroft		$c = substr($line, $off, 1);
1138773647a0SAndy Whitcroft
1139773647a0SAndy Whitcroft		# Comments we are wacking completly including the begin
1140773647a0SAndy Whitcroft		# and end, all to $;.
1141773647a0SAndy Whitcroft		if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
1142773647a0SAndy Whitcroft			$sanitise_quote = '*/';
1143773647a0SAndy Whitcroft
1144773647a0SAndy Whitcroft			substr($res, $off, 2, "$;$;");
1145773647a0SAndy Whitcroft			$off++;
114600df344fSAndy Whitcroft			next;
1147773647a0SAndy Whitcroft		}
114881bc0e02SAndy Whitcroft		if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') {
1149773647a0SAndy Whitcroft			$sanitise_quote = '';
1150773647a0SAndy Whitcroft			substr($res, $off, 2, "$;$;");
1151773647a0SAndy Whitcroft			$off++;
1152773647a0SAndy Whitcroft			next;
1153773647a0SAndy Whitcroft		}
1154113f04a8SDaniel Walker		if ($sanitise_quote eq '' && substr($line, $off, 2) eq '//') {
1155113f04a8SDaniel Walker			$sanitise_quote = '//';
1156113f04a8SDaniel Walker
1157113f04a8SDaniel Walker			substr($res, $off, 2, $sanitise_quote);
1158113f04a8SDaniel Walker			$off++;
1159113f04a8SDaniel Walker			next;
1160113f04a8SDaniel Walker		}
1161773647a0SAndy Whitcroft
1162773647a0SAndy Whitcroft		# A \ in a string means ignore the next character.
1163773647a0SAndy Whitcroft		if (($sanitise_quote eq "'" || $sanitise_quote eq '"') &&
1164773647a0SAndy Whitcroft		    $c eq "\\") {
1165773647a0SAndy Whitcroft			substr($res, $off, 2, 'XX');
1166773647a0SAndy Whitcroft			$off++;
1167773647a0SAndy Whitcroft			next;
1168773647a0SAndy Whitcroft		}
1169773647a0SAndy Whitcroft		# Regular quotes.
1170773647a0SAndy Whitcroft		if ($c eq "'" || $c eq '"') {
1171773647a0SAndy Whitcroft			if ($sanitise_quote eq '') {
1172773647a0SAndy Whitcroft				$sanitise_quote = $c;
1173773647a0SAndy Whitcroft
1174773647a0SAndy Whitcroft				substr($res, $off, 1, $c);
1175773647a0SAndy Whitcroft				next;
1176773647a0SAndy Whitcroft			} elsif ($sanitise_quote eq $c) {
1177773647a0SAndy Whitcroft				$sanitise_quote = '';
117800df344fSAndy Whitcroft			}
117900df344fSAndy Whitcroft		}
1180773647a0SAndy Whitcroft
1181fae17daeSAndy Whitcroft		#print "c<$c> SQ<$sanitise_quote>\n";
1182773647a0SAndy Whitcroft		if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") {
1183773647a0SAndy Whitcroft			substr($res, $off, 1, $;);
1184113f04a8SDaniel Walker		} elsif ($off != 0 && $sanitise_quote eq '//' && $c ne "\t") {
1185113f04a8SDaniel Walker			substr($res, $off, 1, $;);
1186773647a0SAndy Whitcroft		} elsif ($off != 0 && $sanitise_quote && $c ne "\t") {
1187773647a0SAndy Whitcroft			substr($res, $off, 1, 'X');
118800df344fSAndy Whitcroft		} else {
1189773647a0SAndy Whitcroft			substr($res, $off, 1, $c);
119000df344fSAndy Whitcroft		}
1191c2fdda0dSAndy Whitcroft	}
1192c2fdda0dSAndy Whitcroft
1193113f04a8SDaniel Walker	if ($sanitise_quote eq '//') {
1194113f04a8SDaniel Walker		$sanitise_quote = '';
1195113f04a8SDaniel Walker	}
1196113f04a8SDaniel Walker
1197c2fdda0dSAndy Whitcroft	# The pathname on a #include may be surrounded by '<' and '>'.
1198c45dcabdSAndy Whitcroft	if ($res =~ /^.\s*\#\s*include\s+\<(.*)\>/) {
1199c2fdda0dSAndy Whitcroft		my $clean = 'X' x length($1);
1200c2fdda0dSAndy Whitcroft		$res =~ s@\<.*\>@<$clean>@;
1201c2fdda0dSAndy Whitcroft
1202c2fdda0dSAndy Whitcroft	# The whole of a #error is a string.
1203c45dcabdSAndy Whitcroft	} elsif ($res =~ /^.\s*\#\s*(?:error|warning)\s+(.*)\b/) {
1204c2fdda0dSAndy Whitcroft		my $clean = 'X' x length($1);
1205c45dcabdSAndy Whitcroft		$res =~ s@(\#\s*(?:error|warning)\s+).*@$1$clean@;
1206c2fdda0dSAndy Whitcroft	}
1207c2fdda0dSAndy Whitcroft
1208dadf680dSJoe Perches	if ($allow_c99_comments && $res =~ m@(//.*$)@) {
1209dadf680dSJoe Perches		my $match = $1;
1210dadf680dSJoe Perches		$res =~ s/\Q$match\E/"$;" x length($match)/e;
1211dadf680dSJoe Perches	}
1212dadf680dSJoe Perches
121300df344fSAndy Whitcroft	return $res;
121400df344fSAndy Whitcroft}
121500df344fSAndy Whitcroft
1216a6962d72SJoe Perchessub get_quoted_string {
1217a6962d72SJoe Perches	my ($line, $rawline) = @_;
1218a6962d72SJoe Perches
121933acb54aSJoe Perches	return "" if ($line !~ m/($String)/g);
1220a6962d72SJoe Perches	return substr($rawline, $-[0], $+[0] - $-[0]);
1221a6962d72SJoe Perches}
1222a6962d72SJoe Perches
12238905a67cSAndy Whitcroftsub ctx_statement_block {
12248905a67cSAndy Whitcroft	my ($linenr, $remain, $off) = @_;
12258905a67cSAndy Whitcroft	my $line = $linenr - 1;
12268905a67cSAndy Whitcroft	my $blk = '';
12278905a67cSAndy Whitcroft	my $soff = $off;
12288905a67cSAndy Whitcroft	my $coff = $off - 1;
1229773647a0SAndy Whitcroft	my $coff_set = 0;
12308905a67cSAndy Whitcroft
123113214adfSAndy Whitcroft	my $loff = 0;
123213214adfSAndy Whitcroft
12338905a67cSAndy Whitcroft	my $type = '';
12348905a67cSAndy Whitcroft	my $level = 0;
1235a2750645SAndy Whitcroft	my @stack = ();
1236cf655043SAndy Whitcroft	my $p;
12378905a67cSAndy Whitcroft	my $c;
12388905a67cSAndy Whitcroft	my $len = 0;
123913214adfSAndy Whitcroft
124013214adfSAndy Whitcroft	my $remainder;
12418905a67cSAndy Whitcroft	while (1) {
1242a2750645SAndy Whitcroft		@stack = (['', 0]) if ($#stack == -1);
1243a2750645SAndy Whitcroft
1244773647a0SAndy Whitcroft		#warn "CSB: blk<$blk> remain<$remain>\n";
12458905a67cSAndy Whitcroft		# If we are about to drop off the end, pull in more
12468905a67cSAndy Whitcroft		# context.
12478905a67cSAndy Whitcroft		if ($off >= $len) {
12488905a67cSAndy Whitcroft			for (; $remain > 0; $line++) {
1249dea33496SAndy Whitcroft				last if (!defined $lines[$line]);
1250c2fdda0dSAndy Whitcroft				next if ($lines[$line] =~ /^-/);
12518905a67cSAndy Whitcroft				$remain--;
125213214adfSAndy Whitcroft				$loff = $len;
1253c2fdda0dSAndy Whitcroft				$blk .= $lines[$line] . "\n";
12548905a67cSAndy Whitcroft				$len = length($blk);
12558905a67cSAndy Whitcroft				$line++;
12568905a67cSAndy Whitcroft				last;
12578905a67cSAndy Whitcroft			}
12588905a67cSAndy Whitcroft			# Bail if there is no further context.
12598905a67cSAndy Whitcroft			#warn "CSB: blk<$blk> off<$off> len<$len>\n";
126013214adfSAndy Whitcroft			if ($off >= $len) {
12618905a67cSAndy Whitcroft				last;
12628905a67cSAndy Whitcroft			}
1263f74bd194SAndy Whitcroft			if ($level == 0 && substr($blk, $off) =~ /^.\s*#\s*define/) {
1264f74bd194SAndy Whitcroft				$level++;
1265f74bd194SAndy Whitcroft				$type = '#';
1266f74bd194SAndy Whitcroft			}
12678905a67cSAndy Whitcroft		}
1268cf655043SAndy Whitcroft		$p = $c;
12698905a67cSAndy Whitcroft		$c = substr($blk, $off, 1);
127013214adfSAndy Whitcroft		$remainder = substr($blk, $off);
12718905a67cSAndy Whitcroft
1272773647a0SAndy Whitcroft		#warn "CSB: c<$c> type<$type> level<$level> remainder<$remainder> coff_set<$coff_set>\n";
12734635f4fbSAndy Whitcroft
12744635f4fbSAndy Whitcroft		# Handle nested #if/#else.
12754635f4fbSAndy Whitcroft		if ($remainder =~ /^#\s*(?:ifndef|ifdef|if)\s/) {
12764635f4fbSAndy Whitcroft			push(@stack, [ $type, $level ]);
12774635f4fbSAndy Whitcroft		} elsif ($remainder =~ /^#\s*(?:else|elif)\b/) {
12784635f4fbSAndy Whitcroft			($type, $level) = @{$stack[$#stack - 1]};
12794635f4fbSAndy Whitcroft		} elsif ($remainder =~ /^#\s*endif\b/) {
12804635f4fbSAndy Whitcroft			($type, $level) = @{pop(@stack)};
12814635f4fbSAndy Whitcroft		}
12824635f4fbSAndy Whitcroft
12838905a67cSAndy Whitcroft		# Statement ends at the ';' or a close '}' at the
12848905a67cSAndy Whitcroft		# outermost level.
12858905a67cSAndy Whitcroft		if ($level == 0 && $c eq ';') {
12868905a67cSAndy Whitcroft			last;
12878905a67cSAndy Whitcroft		}
12888905a67cSAndy Whitcroft
128913214adfSAndy Whitcroft		# An else is really a conditional as long as its not else if
1290773647a0SAndy Whitcroft		if ($level == 0 && $coff_set == 0 &&
1291773647a0SAndy Whitcroft				(!defined($p) || $p =~ /(?:\s|\}|\+)/) &&
1292773647a0SAndy Whitcroft				$remainder =~ /^(else)(?:\s|{)/ &&
1293773647a0SAndy Whitcroft				$remainder !~ /^else\s+if\b/) {
1294773647a0SAndy Whitcroft			$coff = $off + length($1) - 1;
1295773647a0SAndy Whitcroft			$coff_set = 1;
1296773647a0SAndy Whitcroft			#warn "CSB: mark coff<$coff> soff<$soff> 1<$1>\n";
1297773647a0SAndy Whitcroft			#warn "[" . substr($blk, $soff, $coff - $soff + 1) . "]\n";
129813214adfSAndy Whitcroft		}
129913214adfSAndy Whitcroft
13008905a67cSAndy Whitcroft		if (($type eq '' || $type eq '(') && $c eq '(') {
13018905a67cSAndy Whitcroft			$level++;
13028905a67cSAndy Whitcroft			$type = '(';
13038905a67cSAndy Whitcroft		}
13048905a67cSAndy Whitcroft		if ($type eq '(' && $c eq ')') {
13058905a67cSAndy Whitcroft			$level--;
13068905a67cSAndy Whitcroft			$type = ($level != 0)? '(' : '';
13078905a67cSAndy Whitcroft
13088905a67cSAndy Whitcroft			if ($level == 0 && $coff < $soff) {
13098905a67cSAndy Whitcroft				$coff = $off;
1310773647a0SAndy Whitcroft				$coff_set = 1;
1311773647a0SAndy Whitcroft				#warn "CSB: mark coff<$coff>\n";
13128905a67cSAndy Whitcroft			}
13138905a67cSAndy Whitcroft		}
13148905a67cSAndy Whitcroft		if (($type eq '' || $type eq '{') && $c eq '{') {
13158905a67cSAndy Whitcroft			$level++;
13168905a67cSAndy Whitcroft			$type = '{';
13178905a67cSAndy Whitcroft		}
13188905a67cSAndy Whitcroft		if ($type eq '{' && $c eq '}') {
13198905a67cSAndy Whitcroft			$level--;
13208905a67cSAndy Whitcroft			$type = ($level != 0)? '{' : '';
13218905a67cSAndy Whitcroft
13228905a67cSAndy Whitcroft			if ($level == 0) {
1323b998e001SPatrick Pannuto				if (substr($blk, $off + 1, 1) eq ';') {
1324b998e001SPatrick Pannuto					$off++;
1325b998e001SPatrick Pannuto				}
13268905a67cSAndy Whitcroft				last;
13278905a67cSAndy Whitcroft			}
13288905a67cSAndy Whitcroft		}
1329f74bd194SAndy Whitcroft		# Preprocessor commands end at the newline unless escaped.
1330f74bd194SAndy Whitcroft		if ($type eq '#' && $c eq "\n" && $p ne "\\") {
1331f74bd194SAndy Whitcroft			$level--;
1332f74bd194SAndy Whitcroft			$type = '';
1333f74bd194SAndy Whitcroft			$off++;
1334f74bd194SAndy Whitcroft			last;
1335f74bd194SAndy Whitcroft		}
13368905a67cSAndy Whitcroft		$off++;
13378905a67cSAndy Whitcroft	}
1338a3bb97a7SAndy Whitcroft	# We are truly at the end, so shuffle to the next line.
133913214adfSAndy Whitcroft	if ($off == $len) {
1340a3bb97a7SAndy Whitcroft		$loff = $len + 1;
134113214adfSAndy Whitcroft		$line++;
134213214adfSAndy Whitcroft		$remain--;
134313214adfSAndy Whitcroft	}
13448905a67cSAndy Whitcroft
13458905a67cSAndy Whitcroft	my $statement = substr($blk, $soff, $off - $soff + 1);
13468905a67cSAndy Whitcroft	my $condition = substr($blk, $soff, $coff - $soff + 1);
13478905a67cSAndy Whitcroft
13488905a67cSAndy Whitcroft	#warn "STATEMENT<$statement>\n";
13498905a67cSAndy Whitcroft	#warn "CONDITION<$condition>\n";
13508905a67cSAndy Whitcroft
1351773647a0SAndy Whitcroft	#print "coff<$coff> soff<$off> loff<$loff>\n";
135213214adfSAndy Whitcroft
135313214adfSAndy Whitcroft	return ($statement, $condition,
135413214adfSAndy Whitcroft			$line, $remain + 1, $off - $loff + 1, $level);
135513214adfSAndy Whitcroft}
135613214adfSAndy Whitcroft
1357cf655043SAndy Whitcroftsub statement_lines {
1358cf655043SAndy Whitcroft	my ($stmt) = @_;
1359cf655043SAndy Whitcroft
1360cf655043SAndy Whitcroft	# Strip the diff line prefixes and rip blank lines at start and end.
1361cf655043SAndy Whitcroft	$stmt =~ s/(^|\n)./$1/g;
1362cf655043SAndy Whitcroft	$stmt =~ s/^\s*//;
1363cf655043SAndy Whitcroft	$stmt =~ s/\s*$//;
1364cf655043SAndy Whitcroft
1365cf655043SAndy Whitcroft	my @stmt_lines = ($stmt =~ /\n/g);
1366cf655043SAndy Whitcroft
1367cf655043SAndy Whitcroft	return $#stmt_lines + 2;
1368cf655043SAndy Whitcroft}
1369cf655043SAndy Whitcroft
1370cf655043SAndy Whitcroftsub statement_rawlines {
1371cf655043SAndy Whitcroft	my ($stmt) = @_;
1372cf655043SAndy Whitcroft
1373cf655043SAndy Whitcroft	my @stmt_lines = ($stmt =~ /\n/g);
1374cf655043SAndy Whitcroft
1375cf655043SAndy Whitcroft	return $#stmt_lines + 2;
1376cf655043SAndy Whitcroft}
1377cf655043SAndy Whitcroft
1378cf655043SAndy Whitcroftsub statement_block_size {
1379cf655043SAndy Whitcroft	my ($stmt) = @_;
1380cf655043SAndy Whitcroft
1381cf655043SAndy Whitcroft	$stmt =~ s/(^|\n)./$1/g;
1382cf655043SAndy Whitcroft	$stmt =~ s/^\s*{//;
1383cf655043SAndy Whitcroft	$stmt =~ s/}\s*$//;
1384cf655043SAndy Whitcroft	$stmt =~ s/^\s*//;
1385cf655043SAndy Whitcroft	$stmt =~ s/\s*$//;
1386cf655043SAndy Whitcroft
1387cf655043SAndy Whitcroft	my @stmt_lines = ($stmt =~ /\n/g);
1388cf655043SAndy Whitcroft	my @stmt_statements = ($stmt =~ /;/g);
1389cf655043SAndy Whitcroft
1390cf655043SAndy Whitcroft	my $stmt_lines = $#stmt_lines + 2;
1391cf655043SAndy Whitcroft	my $stmt_statements = $#stmt_statements + 1;
1392cf655043SAndy Whitcroft
1393cf655043SAndy Whitcroft	if ($stmt_lines > $stmt_statements) {
1394cf655043SAndy Whitcroft		return $stmt_lines;
1395cf655043SAndy Whitcroft	} else {
1396cf655043SAndy Whitcroft		return $stmt_statements;
1397cf655043SAndy Whitcroft	}
1398cf655043SAndy Whitcroft}
1399cf655043SAndy Whitcroft
140013214adfSAndy Whitcroftsub ctx_statement_full {
140113214adfSAndy Whitcroft	my ($linenr, $remain, $off) = @_;
140213214adfSAndy Whitcroft	my ($statement, $condition, $level);
140313214adfSAndy Whitcroft
140413214adfSAndy Whitcroft	my (@chunks);
140513214adfSAndy Whitcroft
1406cf655043SAndy Whitcroft	# Grab the first conditional/block pair.
140713214adfSAndy Whitcroft	($statement, $condition, $linenr, $remain, $off, $level) =
140813214adfSAndy Whitcroft				ctx_statement_block($linenr, $remain, $off);
1409773647a0SAndy Whitcroft	#print "F: c<$condition> s<$statement> remain<$remain>\n";
141013214adfSAndy Whitcroft	push(@chunks, [ $condition, $statement ]);
1411cf655043SAndy Whitcroft	if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
1412cf655043SAndy Whitcroft		return ($level, $linenr, @chunks);
1413cf655043SAndy Whitcroft	}
1414cf655043SAndy Whitcroft
1415cf655043SAndy Whitcroft	# Pull in the following conditional/block pairs and see if they
1416cf655043SAndy Whitcroft	# could continue the statement.
1417cf655043SAndy Whitcroft	for (;;) {
141813214adfSAndy Whitcroft		($statement, $condition, $linenr, $remain, $off, $level) =
141913214adfSAndy Whitcroft				ctx_statement_block($linenr, $remain, $off);
1420cf655043SAndy Whitcroft		#print "C: c<$condition> s<$statement> remain<$remain>\n";
1421773647a0SAndy Whitcroft		last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
1422cf655043SAndy Whitcroft		#print "C: push\n";
1423cf655043SAndy Whitcroft		push(@chunks, [ $condition, $statement ]);
142413214adfSAndy Whitcroft	}
142513214adfSAndy Whitcroft
142613214adfSAndy Whitcroft	return ($level, $linenr, @chunks);
14278905a67cSAndy Whitcroft}
14288905a67cSAndy Whitcroft
14294a0df2efSAndy Whitcroftsub ctx_block_get {
1430f0a594c1SAndy Whitcroft	my ($linenr, $remain, $outer, $open, $close, $off) = @_;
14314a0df2efSAndy Whitcroft	my $line;
14324a0df2efSAndy Whitcroft	my $start = $linenr - 1;
14334a0df2efSAndy Whitcroft	my $blk = '';
14344a0df2efSAndy Whitcroft	my @o;
14354a0df2efSAndy Whitcroft	my @c;
14364a0df2efSAndy Whitcroft	my @res = ();
14374a0df2efSAndy Whitcroft
1438f0a594c1SAndy Whitcroft	my $level = 0;
14394635f4fbSAndy Whitcroft	my @stack = ($level);
144000df344fSAndy Whitcroft	for ($line = $start; $remain > 0; $line++) {
144100df344fSAndy Whitcroft		next if ($rawlines[$line] =~ /^-/);
144200df344fSAndy Whitcroft		$remain--;
144300df344fSAndy Whitcroft
144400df344fSAndy Whitcroft		$blk .= $rawlines[$line];
14454635f4fbSAndy Whitcroft
14464635f4fbSAndy Whitcroft		# Handle nested #if/#else.
144701464f30SAndy Whitcroft		if ($lines[$line] =~ /^.\s*#\s*(?:ifndef|ifdef|if)\s/) {
14484635f4fbSAndy Whitcroft			push(@stack, $level);
144901464f30SAndy Whitcroft		} elsif ($lines[$line] =~ /^.\s*#\s*(?:else|elif)\b/) {
14504635f4fbSAndy Whitcroft			$level = $stack[$#stack - 1];
145101464f30SAndy Whitcroft		} elsif ($lines[$line] =~ /^.\s*#\s*endif\b/) {
14524635f4fbSAndy Whitcroft			$level = pop(@stack);
14534635f4fbSAndy Whitcroft		}
14544635f4fbSAndy Whitcroft
145501464f30SAndy Whitcroft		foreach my $c (split(//, $lines[$line])) {
1456f0a594c1SAndy Whitcroft			##print "C<$c>L<$level><$open$close>O<$off>\n";
1457f0a594c1SAndy Whitcroft			if ($off > 0) {
1458f0a594c1SAndy Whitcroft				$off--;
1459f0a594c1SAndy Whitcroft				next;
1460f0a594c1SAndy Whitcroft			}
14614a0df2efSAndy Whitcroft
1462f0a594c1SAndy Whitcroft			if ($c eq $close && $level > 0) {
1463f0a594c1SAndy Whitcroft				$level--;
1464f0a594c1SAndy Whitcroft				last if ($level == 0);
1465f0a594c1SAndy Whitcroft			} elsif ($c eq $open) {
1466f0a594c1SAndy Whitcroft				$level++;
1467f0a594c1SAndy Whitcroft			}
1468f0a594c1SAndy Whitcroft		}
14694a0df2efSAndy Whitcroft
1470f0a594c1SAndy Whitcroft		if (!$outer || $level <= 1) {
147100df344fSAndy Whitcroft			push(@res, $rawlines[$line]);
14724a0df2efSAndy Whitcroft		}
14734a0df2efSAndy Whitcroft
1474f0a594c1SAndy Whitcroft		last if ($level == 0);
14754a0df2efSAndy Whitcroft	}
14764a0df2efSAndy Whitcroft
1477f0a594c1SAndy Whitcroft	return ($level, @res);
14784a0df2efSAndy Whitcroft}
14794a0df2efSAndy Whitcroftsub ctx_block_outer {
14804a0df2efSAndy Whitcroft	my ($linenr, $remain) = @_;
14814a0df2efSAndy Whitcroft
1482f0a594c1SAndy Whitcroft	my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0);
1483f0a594c1SAndy Whitcroft	return @r;
14844a0df2efSAndy Whitcroft}
14854a0df2efSAndy Whitcroftsub ctx_block {
14864a0df2efSAndy Whitcroft	my ($linenr, $remain) = @_;
14874a0df2efSAndy Whitcroft
1488f0a594c1SAndy Whitcroft	my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0);
1489f0a594c1SAndy Whitcroft	return @r;
1490653d4876SAndy Whitcroft}
1491653d4876SAndy Whitcroftsub ctx_statement {
1492f0a594c1SAndy Whitcroft	my ($linenr, $remain, $off) = @_;
1493f0a594c1SAndy Whitcroft
1494f0a594c1SAndy Whitcroft	my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
1495f0a594c1SAndy Whitcroft	return @r;
1496f0a594c1SAndy Whitcroft}
1497f0a594c1SAndy Whitcroftsub ctx_block_level {
1498653d4876SAndy Whitcroft	my ($linenr, $remain) = @_;
1499653d4876SAndy Whitcroft
1500f0a594c1SAndy Whitcroft	return ctx_block_get($linenr, $remain, 0, '{', '}', 0);
15014a0df2efSAndy Whitcroft}
15029c0ca6f9SAndy Whitcroftsub ctx_statement_level {
15039c0ca6f9SAndy Whitcroft	my ($linenr, $remain, $off) = @_;
15049c0ca6f9SAndy Whitcroft
15059c0ca6f9SAndy Whitcroft	return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
15069c0ca6f9SAndy Whitcroft}
15074a0df2efSAndy Whitcroft
15084a0df2efSAndy Whitcroftsub ctx_locate_comment {
15094a0df2efSAndy Whitcroft	my ($first_line, $end_line) = @_;
15104a0df2efSAndy Whitcroft
15114a0df2efSAndy Whitcroft	# Catch a comment on the end of the line itself.
1512beae6332SAndy Whitcroft	my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@);
15134a0df2efSAndy Whitcroft	return $current_comment if (defined $current_comment);
15144a0df2efSAndy Whitcroft
15154a0df2efSAndy Whitcroft	# Look through the context and try and figure out if there is a
15164a0df2efSAndy Whitcroft	# comment.
15174a0df2efSAndy Whitcroft	my $in_comment = 0;
15184a0df2efSAndy Whitcroft	$current_comment = '';
15194a0df2efSAndy Whitcroft	for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
152000df344fSAndy Whitcroft		my $line = $rawlines[$linenr - 1];
152100df344fSAndy Whitcroft		#warn "           $line\n";
15224a0df2efSAndy Whitcroft		if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
15234a0df2efSAndy Whitcroft			$in_comment = 1;
15244a0df2efSAndy Whitcroft		}
15254a0df2efSAndy Whitcroft		if ($line =~ m@/\*@) {
15264a0df2efSAndy Whitcroft			$in_comment = 1;
15274a0df2efSAndy Whitcroft		}
15284a0df2efSAndy Whitcroft		if (!$in_comment && $current_comment ne '') {
15294a0df2efSAndy Whitcroft			$current_comment = '';
15304a0df2efSAndy Whitcroft		}
15314a0df2efSAndy Whitcroft		$current_comment .= $line . "\n" if ($in_comment);
15324a0df2efSAndy Whitcroft		if ($line =~ m@\*/@) {
15334a0df2efSAndy Whitcroft			$in_comment = 0;
15344a0df2efSAndy Whitcroft		}
15354a0df2efSAndy Whitcroft	}
15364a0df2efSAndy Whitcroft
15374a0df2efSAndy Whitcroft	chomp($current_comment);
15384a0df2efSAndy Whitcroft	return($current_comment);
15394a0df2efSAndy Whitcroft}
15404a0df2efSAndy Whitcroftsub ctx_has_comment {
15414a0df2efSAndy Whitcroft	my ($first_line, $end_line) = @_;
15424a0df2efSAndy Whitcroft	my $cmt = ctx_locate_comment($first_line, $end_line);
15434a0df2efSAndy Whitcroft
154400df344fSAndy Whitcroft	##print "LINE: $rawlines[$end_line - 1 ]\n";
15454a0df2efSAndy Whitcroft	##print "CMMT: $cmt\n";
15464a0df2efSAndy Whitcroft
15474a0df2efSAndy Whitcroft	return ($cmt ne '');
15484a0df2efSAndy Whitcroft}
15494a0df2efSAndy Whitcroft
15504d001e4dSAndy Whitcroftsub raw_line {
15514d001e4dSAndy Whitcroft	my ($linenr, $cnt) = @_;
15524d001e4dSAndy Whitcroft
15534d001e4dSAndy Whitcroft	my $offset = $linenr - 1;
15544d001e4dSAndy Whitcroft	$cnt++;
15554d001e4dSAndy Whitcroft
15564d001e4dSAndy Whitcroft	my $line;
15574d001e4dSAndy Whitcroft	while ($cnt) {
15584d001e4dSAndy Whitcroft		$line = $rawlines[$offset++];
15594d001e4dSAndy Whitcroft		next if (defined($line) && $line =~ /^-/);
15604d001e4dSAndy Whitcroft		$cnt--;
15614d001e4dSAndy Whitcroft	}
15624d001e4dSAndy Whitcroft
15634d001e4dSAndy Whitcroft	return $line;
15644d001e4dSAndy Whitcroft}
15654d001e4dSAndy Whitcroft
15660a920b5bSAndy Whitcroftsub cat_vet {
15670a920b5bSAndy Whitcroft	my ($vet) = @_;
15689c0ca6f9SAndy Whitcroft	my ($res, $coded);
15690a920b5bSAndy Whitcroft
15709c0ca6f9SAndy Whitcroft	$res = '';
15716c72ffaaSAndy Whitcroft	while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
15726c72ffaaSAndy Whitcroft		$res .= $1;
15736c72ffaaSAndy Whitcroft		if ($2 ne '') {
15749c0ca6f9SAndy Whitcroft			$coded = sprintf("^%c", unpack('C', $2) + 64);
15756c72ffaaSAndy Whitcroft			$res .= $coded;
15766c72ffaaSAndy Whitcroft		}
15779c0ca6f9SAndy Whitcroft	}
15789c0ca6f9SAndy Whitcroft	$res =~ s/$/\$/;
15790a920b5bSAndy Whitcroft
15809c0ca6f9SAndy Whitcroft	return $res;
15810a920b5bSAndy Whitcroft}
15820a920b5bSAndy Whitcroft
1583c2fdda0dSAndy Whitcroftmy $av_preprocessor = 0;
1584cf655043SAndy Whitcroftmy $av_pending;
1585c2fdda0dSAndy Whitcroftmy @av_paren_type;
15861f65f947SAndy Whitcroftmy $av_pend_colon;
1587c2fdda0dSAndy Whitcroft
1588c2fdda0dSAndy Whitcroftsub annotate_reset {
1589c2fdda0dSAndy Whitcroft	$av_preprocessor = 0;
1590cf655043SAndy Whitcroft	$av_pending = '_';
1591cf655043SAndy Whitcroft	@av_paren_type = ('E');
15921f65f947SAndy Whitcroft	$av_pend_colon = 'O';
1593c2fdda0dSAndy Whitcroft}
1594c2fdda0dSAndy Whitcroft
15956c72ffaaSAndy Whitcroftsub annotate_values {
15966c72ffaaSAndy Whitcroft	my ($stream, $type) = @_;
15976c72ffaaSAndy Whitcroft
15986c72ffaaSAndy Whitcroft	my $res;
15991f65f947SAndy Whitcroft	my $var = '_' x length($stream);
16006c72ffaaSAndy Whitcroft	my $cur = $stream;
16016c72ffaaSAndy Whitcroft
1602c2fdda0dSAndy Whitcroft	print "$stream\n" if ($dbg_values > 1);
16036c72ffaaSAndy Whitcroft
16046c72ffaaSAndy Whitcroft	while (length($cur)) {
1605773647a0SAndy Whitcroft		@av_paren_type = ('E') if ($#av_paren_type < 0);
1606cf655043SAndy Whitcroft		print " <" . join('', @av_paren_type) .
1607171ae1a4SAndy Whitcroft				"> <$type> <$av_pending>" if ($dbg_values > 1);
16086c72ffaaSAndy Whitcroft		if ($cur =~ /^(\s+)/o) {
1609c2fdda0dSAndy Whitcroft			print "WS($1)\n" if ($dbg_values > 1);
1610c2fdda0dSAndy Whitcroft			if ($1 =~ /\n/ && $av_preprocessor) {
1611cf655043SAndy Whitcroft				$type = pop(@av_paren_type);
1612c2fdda0dSAndy Whitcroft				$av_preprocessor = 0;
16136c72ffaaSAndy Whitcroft			}
16146c72ffaaSAndy Whitcroft
1615c023e473SFlorian Mickler		} elsif ($cur =~ /^(\(\s*$Type\s*)\)/ && $av_pending eq '_') {
16169446ef56SAndy Whitcroft			print "CAST($1)\n" if ($dbg_values > 1);
16179446ef56SAndy Whitcroft			push(@av_paren_type, $type);
1618addcdceaSAndy Whitcroft			$type = 'c';
16199446ef56SAndy Whitcroft
1620e91b6e26SAndy Whitcroft		} elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\(|\s*$)/) {
1621c2fdda0dSAndy Whitcroft			print "DECLARE($1)\n" if ($dbg_values > 1);
16226c72ffaaSAndy Whitcroft			$type = 'T';
16236c72ffaaSAndy Whitcroft
1624389a2fe5SAndy Whitcroft		} elsif ($cur =~ /^($Modifier)\s*/) {
1625389a2fe5SAndy Whitcroft			print "MODIFIER($1)\n" if ($dbg_values > 1);
1626389a2fe5SAndy Whitcroft			$type = 'T';
1627389a2fe5SAndy Whitcroft
1628c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) {
1629171ae1a4SAndy Whitcroft			print "DEFINE($1,$2)\n" if ($dbg_values > 1);
1630c2fdda0dSAndy Whitcroft			$av_preprocessor = 1;
1631171ae1a4SAndy Whitcroft			push(@av_paren_type, $type);
1632171ae1a4SAndy Whitcroft			if ($2 ne '') {
1633cf655043SAndy Whitcroft				$av_pending = 'N';
1634171ae1a4SAndy Whitcroft			}
1635171ae1a4SAndy Whitcroft			$type = 'E';
1636171ae1a4SAndy Whitcroft
1637c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*(?:undef\s*$Ident|include\b))/o) {
1638171ae1a4SAndy Whitcroft			print "UNDEF($1)\n" if ($dbg_values > 1);
1639171ae1a4SAndy Whitcroft			$av_preprocessor = 1;
1640171ae1a4SAndy Whitcroft			push(@av_paren_type, $type);
16416c72ffaaSAndy Whitcroft
1642c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*(?:ifdef|ifndef|if))/o) {
1643cf655043SAndy Whitcroft			print "PRE_START($1)\n" if ($dbg_values > 1);
1644c2fdda0dSAndy Whitcroft			$av_preprocessor = 1;
1645cf655043SAndy Whitcroft
1646cf655043SAndy Whitcroft			push(@av_paren_type, $type);
1647cf655043SAndy Whitcroft			push(@av_paren_type, $type);
1648171ae1a4SAndy Whitcroft			$type = 'E';
1649cf655043SAndy Whitcroft
1650c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*(?:else|elif))/o) {
1651cf655043SAndy Whitcroft			print "PRE_RESTART($1)\n" if ($dbg_values > 1);
1652cf655043SAndy Whitcroft			$av_preprocessor = 1;
1653cf655043SAndy Whitcroft
1654cf655043SAndy Whitcroft			push(@av_paren_type, $av_paren_type[$#av_paren_type]);
1655cf655043SAndy Whitcroft
1656171ae1a4SAndy Whitcroft			$type = 'E';
1657cf655043SAndy Whitcroft
1658c45dcabdSAndy Whitcroft		} elsif ($cur =~ /^(\#\s*(?:endif))/o) {
1659cf655043SAndy Whitcroft			print "PRE_END($1)\n" if ($dbg_values > 1);
1660cf655043SAndy Whitcroft
1661cf655043SAndy Whitcroft			$av_preprocessor = 1;
1662cf655043SAndy Whitcroft
1663cf655043SAndy Whitcroft			# Assume all arms of the conditional end as this
1664cf655043SAndy Whitcroft			# one does, and continue as if the #endif was not here.
1665cf655043SAndy Whitcroft			pop(@av_paren_type);
1666cf655043SAndy Whitcroft			push(@av_paren_type, $type);
1667171ae1a4SAndy Whitcroft			$type = 'E';
16686c72ffaaSAndy Whitcroft
16696c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^(\\\n)/o) {
1670c2fdda0dSAndy Whitcroft			print "PRECONT($1)\n" if ($dbg_values > 1);
16716c72ffaaSAndy Whitcroft
1672171ae1a4SAndy Whitcroft		} elsif ($cur =~ /^(__attribute__)\s*\(?/o) {
1673171ae1a4SAndy Whitcroft			print "ATTR($1)\n" if ($dbg_values > 1);
1674171ae1a4SAndy Whitcroft			$av_pending = $type;
1675171ae1a4SAndy Whitcroft			$type = 'N';
1676171ae1a4SAndy Whitcroft
16776c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
1678c2fdda0dSAndy Whitcroft			print "SIZEOF($1)\n" if ($dbg_values > 1);
16796c72ffaaSAndy Whitcroft			if (defined $2) {
1680cf655043SAndy Whitcroft				$av_pending = 'V';
16816c72ffaaSAndy Whitcroft			}
16826c72ffaaSAndy Whitcroft			$type = 'N';
16836c72ffaaSAndy Whitcroft
168414b111c1SAndy Whitcroft		} elsif ($cur =~ /^(if|while|for)\b/o) {
1685c2fdda0dSAndy Whitcroft			print "COND($1)\n" if ($dbg_values > 1);
168614b111c1SAndy Whitcroft			$av_pending = 'E';
16876c72ffaaSAndy Whitcroft			$type = 'N';
16886c72ffaaSAndy Whitcroft
16891f65f947SAndy Whitcroft		} elsif ($cur =~/^(case)/o) {
16901f65f947SAndy Whitcroft			print "CASE($1)\n" if ($dbg_values > 1);
16911f65f947SAndy Whitcroft			$av_pend_colon = 'C';
16921f65f947SAndy Whitcroft			$type = 'N';
16931f65f947SAndy Whitcroft
169414b111c1SAndy Whitcroft		} elsif ($cur =~/^(return|else|goto|typeof|__typeof__)\b/o) {
1695c2fdda0dSAndy Whitcroft			print "KEYWORD($1)\n" if ($dbg_values > 1);
16966c72ffaaSAndy Whitcroft			$type = 'N';
16976c72ffaaSAndy Whitcroft
16986c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^(\()/o) {
1699c2fdda0dSAndy Whitcroft			print "PAREN('$1')\n" if ($dbg_values > 1);
1700cf655043SAndy Whitcroft			push(@av_paren_type, $av_pending);
1701cf655043SAndy Whitcroft			$av_pending = '_';
17026c72ffaaSAndy Whitcroft			$type = 'N';
17036c72ffaaSAndy Whitcroft
17046c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^(\))/o) {
1705cf655043SAndy Whitcroft			my $new_type = pop(@av_paren_type);
1706cf655043SAndy Whitcroft			if ($new_type ne '_') {
1707cf655043SAndy Whitcroft				$type = $new_type;
1708c2fdda0dSAndy Whitcroft				print "PAREN('$1') -> $type\n"
1709c2fdda0dSAndy Whitcroft							if ($dbg_values > 1);
17106c72ffaaSAndy Whitcroft			} else {
1711c2fdda0dSAndy Whitcroft				print "PAREN('$1')\n" if ($dbg_values > 1);
17126c72ffaaSAndy Whitcroft			}
17136c72ffaaSAndy Whitcroft
1714c8cb2ca3SAndy Whitcroft		} elsif ($cur =~ /^($Ident)\s*\(/o) {
1715c2fdda0dSAndy Whitcroft			print "FUNC($1)\n" if ($dbg_values > 1);
1716c8cb2ca3SAndy Whitcroft			$type = 'V';
1717cf655043SAndy Whitcroft			$av_pending = 'V';
17186c72ffaaSAndy Whitcroft
17198e761b04SAndy Whitcroft		} elsif ($cur =~ /^($Ident\s*):(?:\s*\d+\s*(,|=|;))?/) {
17208e761b04SAndy Whitcroft			if (defined $2 && $type eq 'C' || $type eq 'T') {
17211f65f947SAndy Whitcroft				$av_pend_colon = 'B';
17228e761b04SAndy Whitcroft			} elsif ($type eq 'E') {
17238e761b04SAndy Whitcroft				$av_pend_colon = 'L';
17241f65f947SAndy Whitcroft			}
17251f65f947SAndy Whitcroft			print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1);
17261f65f947SAndy Whitcroft			$type = 'V';
17271f65f947SAndy Whitcroft
17286c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^($Ident|$Constant)/o) {
1729c2fdda0dSAndy Whitcroft			print "IDENT($1)\n" if ($dbg_values > 1);
17306c72ffaaSAndy Whitcroft			$type = 'V';
17316c72ffaaSAndy Whitcroft
17326c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^($Assignment)/o) {
1733c2fdda0dSAndy Whitcroft			print "ASSIGN($1)\n" if ($dbg_values > 1);
17346c72ffaaSAndy Whitcroft			$type = 'N';
17356c72ffaaSAndy Whitcroft
1736cf655043SAndy Whitcroft		} elsif ($cur =~/^(;|{|})/) {
1737c2fdda0dSAndy Whitcroft			print "END($1)\n" if ($dbg_values > 1);
173813214adfSAndy Whitcroft			$type = 'E';
17391f65f947SAndy Whitcroft			$av_pend_colon = 'O';
174013214adfSAndy Whitcroft
17418e761b04SAndy Whitcroft		} elsif ($cur =~/^(,)/) {
17428e761b04SAndy Whitcroft			print "COMMA($1)\n" if ($dbg_values > 1);
17438e761b04SAndy Whitcroft			$type = 'C';
17448e761b04SAndy Whitcroft
17451f65f947SAndy Whitcroft		} elsif ($cur =~ /^(\?)/o) {
17461f65f947SAndy Whitcroft			print "QUESTION($1)\n" if ($dbg_values > 1);
17471f65f947SAndy Whitcroft			$type = 'N';
17481f65f947SAndy Whitcroft
17491f65f947SAndy Whitcroft		} elsif ($cur =~ /^(:)/o) {
17501f65f947SAndy Whitcroft			print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1);
17511f65f947SAndy Whitcroft
17521f65f947SAndy Whitcroft			substr($var, length($res), 1, $av_pend_colon);
17531f65f947SAndy Whitcroft			if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') {
17541f65f947SAndy Whitcroft				$type = 'E';
17551f65f947SAndy Whitcroft			} else {
17561f65f947SAndy Whitcroft				$type = 'N';
17571f65f947SAndy Whitcroft			}
17581f65f947SAndy Whitcroft			$av_pend_colon = 'O';
17591f65f947SAndy Whitcroft
17608e761b04SAndy Whitcroft		} elsif ($cur =~ /^(\[)/o) {
176113214adfSAndy Whitcroft			print "CLOSE($1)\n" if ($dbg_values > 1);
17626c72ffaaSAndy Whitcroft			$type = 'N';
17636c72ffaaSAndy Whitcroft
17640d413866SAndy Whitcroft		} elsif ($cur =~ /^(-(?![->])|\+(?!\+)|\*|\&\&|\&)/o) {
176574048ed8SAndy Whitcroft			my $variant;
176674048ed8SAndy Whitcroft
176774048ed8SAndy Whitcroft			print "OPV($1)\n" if ($dbg_values > 1);
176874048ed8SAndy Whitcroft			if ($type eq 'V') {
176974048ed8SAndy Whitcroft				$variant = 'B';
177074048ed8SAndy Whitcroft			} else {
177174048ed8SAndy Whitcroft				$variant = 'U';
177274048ed8SAndy Whitcroft			}
177374048ed8SAndy Whitcroft
177474048ed8SAndy Whitcroft			substr($var, length($res), 1, $variant);
177574048ed8SAndy Whitcroft			$type = 'N';
177674048ed8SAndy Whitcroft
17776c72ffaaSAndy Whitcroft		} elsif ($cur =~ /^($Operators)/o) {
1778c2fdda0dSAndy Whitcroft			print "OP($1)\n" if ($dbg_values > 1);
17796c72ffaaSAndy Whitcroft			if ($1 ne '++' && $1 ne '--') {
17806c72ffaaSAndy Whitcroft				$type = 'N';
17816c72ffaaSAndy Whitcroft			}
17826c72ffaaSAndy Whitcroft
17836c72ffaaSAndy Whitcroft		} elsif ($cur =~ /(^.)/o) {
1784c2fdda0dSAndy Whitcroft			print "C($1)\n" if ($dbg_values > 1);
17856c72ffaaSAndy Whitcroft		}
17866c72ffaaSAndy Whitcroft		if (defined $1) {
17876c72ffaaSAndy Whitcroft			$cur = substr($cur, length($1));
17886c72ffaaSAndy Whitcroft			$res .= $type x length($1);
17896c72ffaaSAndy Whitcroft		}
17906c72ffaaSAndy Whitcroft	}
17916c72ffaaSAndy Whitcroft
17921f65f947SAndy Whitcroft	return ($res, $var);
17936c72ffaaSAndy Whitcroft}
17946c72ffaaSAndy Whitcroft
17958905a67cSAndy Whitcroftsub possible {
179613214adfSAndy Whitcroft	my ($possible, $line) = @_;
17979a974fdbSAndy Whitcroft	my $notPermitted = qr{(?:
17980776e594SAndy Whitcroft		^(?:
17990776e594SAndy Whitcroft			$Modifier|
18000776e594SAndy Whitcroft			$Storage|
18010776e594SAndy Whitcroft			$Type|
18029a974fdbSAndy Whitcroft			DEFINE_\S+
18039a974fdbSAndy Whitcroft		)$|
18049a974fdbSAndy Whitcroft		^(?:
18050776e594SAndy Whitcroft			goto|
18060776e594SAndy Whitcroft			return|
18070776e594SAndy Whitcroft			case|
18080776e594SAndy Whitcroft			else|
18090776e594SAndy Whitcroft			asm|__asm__|
181089a88353SAndy Whitcroft			do|
181189a88353SAndy Whitcroft			\#|
181289a88353SAndy Whitcroft			\#\#|
18139a974fdbSAndy Whitcroft		)(?:\s|$)|
18140776e594SAndy Whitcroft		^(?:typedef|struct|enum)\b
18159a974fdbSAndy Whitcroft	    )}x;
18169a974fdbSAndy Whitcroft	warn "CHECK<$possible> ($line)\n" if ($dbg_possible > 2);
18179a974fdbSAndy Whitcroft	if ($possible !~ $notPermitted) {
1818c45dcabdSAndy Whitcroft		# Check for modifiers.
1819c45dcabdSAndy Whitcroft		$possible =~ s/\s*$Storage\s*//g;
1820c45dcabdSAndy Whitcroft		$possible =~ s/\s*$Sparse\s*//g;
1821c45dcabdSAndy Whitcroft		if ($possible =~ /^\s*$/) {
1822c45dcabdSAndy Whitcroft
1823c45dcabdSAndy Whitcroft		} elsif ($possible =~ /\s/) {
1824c45dcabdSAndy Whitcroft			$possible =~ s/\s*$Type\s*//g;
1825d2506586SAndy Whitcroft			for my $modifier (split(' ', $possible)) {
18269a974fdbSAndy Whitcroft				if ($modifier !~ $notPermitted) {
1827d2506586SAndy Whitcroft					warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
1828485ff23eSAlex Dowad					push(@modifierListFile, $modifier);
1829d2506586SAndy Whitcroft				}
18309a974fdbSAndy Whitcroft			}
1831c45dcabdSAndy Whitcroft
1832c45dcabdSAndy Whitcroft		} else {
183313214adfSAndy Whitcroft			warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
1834485ff23eSAlex Dowad			push(@typeListFile, $possible);
1835c45dcabdSAndy Whitcroft		}
18368905a67cSAndy Whitcroft		build_types();
18370776e594SAndy Whitcroft	} else {
18380776e594SAndy Whitcroft		warn "NOTPOSS: $possible ($line)\n" if ($dbg_possible > 1);
18398905a67cSAndy Whitcroft	}
18408905a67cSAndy Whitcroft}
18418905a67cSAndy Whitcroft
18426c72ffaaSAndy Whitcroftmy $prefix = '';
18436c72ffaaSAndy Whitcroft
1844000d1cc1SJoe Perchessub show_type {
1845cbec18afSJoe Perches	my ($type) = @_;
184691bfe484SJoe Perches
1847cbec18afSJoe Perches	return defined $use_type{$type} if (scalar keys %use_type > 0);
1848cbec18afSJoe Perches
1849cbec18afSJoe Perches	return !defined $ignore_type{$type};
1850000d1cc1SJoe Perches}
1851000d1cc1SJoe Perches
1852f0a594c1SAndy Whitcroftsub report {
1853cbec18afSJoe Perches	my ($level, $type, $msg) = @_;
1854cbec18afSJoe Perches
1855cbec18afSJoe Perches	if (!show_type($type) ||
1856cbec18afSJoe Perches	    (defined $tst_only && $msg !~ /\Q$tst_only\E/)) {
1857773647a0SAndy Whitcroft		return 0;
1858773647a0SAndy Whitcroft	}
185957230297SJoe Perches	my $output = '';
186057230297SJoe Perches	if (-t STDOUT && $color) {
186157230297SJoe Perches		if ($level eq 'ERROR') {
186257230297SJoe Perches			$output .= RED;
186357230297SJoe Perches		} elsif ($level eq 'WARNING') {
186457230297SJoe Perches			$output .= YELLOW;
1865000d1cc1SJoe Perches		} else {
186657230297SJoe Perches			$output .= GREEN;
1867000d1cc1SJoe Perches		}
186857230297SJoe Perches	}
186957230297SJoe Perches	$output .= $prefix . $level . ':';
187057230297SJoe Perches	if ($show_types) {
187157230297SJoe Perches		$output .= BLUE if (-t STDOUT && $color);
187257230297SJoe Perches		$output .= "$type:";
187357230297SJoe Perches	}
187457230297SJoe Perches	$output .= RESET if (-t STDOUT && $color);
187557230297SJoe Perches	$output .= ' ' . $msg . "\n";
187634d8815fSJoe Perches
187734d8815fSJoe Perches	if ($showfile) {
187834d8815fSJoe Perches		my @lines = split("\n", $output, -1);
187934d8815fSJoe Perches		splice(@lines, 1, 1);
188034d8815fSJoe Perches		$output = join("\n", @lines);
188134d8815fSJoe Perches	}
188257230297SJoe Perches	$output = (split('\n', $output))[0] . "\n" if ($terse);
18838905a67cSAndy Whitcroft
188457230297SJoe Perches	push(our @report, $output);
1885773647a0SAndy Whitcroft
1886773647a0SAndy Whitcroft	return 1;
1887f0a594c1SAndy Whitcroft}
1888cbec18afSJoe Perches
1889f0a594c1SAndy Whitcroftsub report_dump {
189013214adfSAndy Whitcroft	our @report;
1891f0a594c1SAndy Whitcroft}
1892000d1cc1SJoe Perches
1893d752fcc8SJoe Perchessub fixup_current_range {
1894d752fcc8SJoe Perches	my ($lineRef, $offset, $length) = @_;
1895d752fcc8SJoe Perches
1896d752fcc8SJoe Perches	if ($$lineRef =~ /^\@\@ -\d+,\d+ \+(\d+),(\d+) \@\@/) {
1897d752fcc8SJoe Perches		my $o = $1;
1898d752fcc8SJoe Perches		my $l = $2;
1899d752fcc8SJoe Perches		my $no = $o + $offset;
1900d752fcc8SJoe Perches		my $nl = $l + $length;
1901d752fcc8SJoe Perches		$$lineRef =~ s/\+$o,$l \@\@/\+$no,$nl \@\@/;
1902d752fcc8SJoe Perches	}
1903d752fcc8SJoe Perches}
1904d752fcc8SJoe Perches
1905d752fcc8SJoe Perchessub fix_inserted_deleted_lines {
1906d752fcc8SJoe Perches	my ($linesRef, $insertedRef, $deletedRef) = @_;
1907d752fcc8SJoe Perches
1908d752fcc8SJoe Perches	my $range_last_linenr = 0;
1909d752fcc8SJoe Perches	my $delta_offset = 0;
1910d752fcc8SJoe Perches
1911d752fcc8SJoe Perches	my $old_linenr = 0;
1912d752fcc8SJoe Perches	my $new_linenr = 0;
1913d752fcc8SJoe Perches
1914d752fcc8SJoe Perches	my $next_insert = 0;
1915d752fcc8SJoe Perches	my $next_delete = 0;
1916d752fcc8SJoe Perches
1917d752fcc8SJoe Perches	my @lines = ();
1918d752fcc8SJoe Perches
1919d752fcc8SJoe Perches	my $inserted = @{$insertedRef}[$next_insert++];
1920d752fcc8SJoe Perches	my $deleted = @{$deletedRef}[$next_delete++];
1921d752fcc8SJoe Perches
1922d752fcc8SJoe Perches	foreach my $old_line (@{$linesRef}) {
1923d752fcc8SJoe Perches		my $save_line = 1;
1924d752fcc8SJoe Perches		my $line = $old_line;	#don't modify the array
1925323b267fSJoe Perches		if ($line =~ /^(?:\+\+\+|\-\-\-)\s+\S+/) {	#new filename
1926d752fcc8SJoe Perches			$delta_offset = 0;
1927d752fcc8SJoe Perches		} elsif ($line =~ /^\@\@ -\d+,\d+ \+\d+,\d+ \@\@/) {	#new hunk
1928d752fcc8SJoe Perches			$range_last_linenr = $new_linenr;
1929d752fcc8SJoe Perches			fixup_current_range(\$line, $delta_offset, 0);
1930d752fcc8SJoe Perches		}
1931d752fcc8SJoe Perches
1932d752fcc8SJoe Perches		while (defined($deleted) && ${$deleted}{'LINENR'} == $old_linenr) {
1933d752fcc8SJoe Perches			$deleted = @{$deletedRef}[$next_delete++];
1934d752fcc8SJoe Perches			$save_line = 0;
1935d752fcc8SJoe Perches			fixup_current_range(\$lines[$range_last_linenr], $delta_offset--, -1);
1936d752fcc8SJoe Perches		}
1937d752fcc8SJoe Perches
1938d752fcc8SJoe Perches		while (defined($inserted) && ${$inserted}{'LINENR'} == $old_linenr) {
1939d752fcc8SJoe Perches			push(@lines, ${$inserted}{'LINE'});
1940d752fcc8SJoe Perches			$inserted = @{$insertedRef}[$next_insert++];
1941d752fcc8SJoe Perches			$new_linenr++;
1942d752fcc8SJoe Perches			fixup_current_range(\$lines[$range_last_linenr], $delta_offset++, 1);
1943d752fcc8SJoe Perches		}
1944d752fcc8SJoe Perches
1945d752fcc8SJoe Perches		if ($save_line) {
1946d752fcc8SJoe Perches			push(@lines, $line);
1947d752fcc8SJoe Perches			$new_linenr++;
1948d752fcc8SJoe Perches		}
1949d752fcc8SJoe Perches
1950d752fcc8SJoe Perches		$old_linenr++;
1951d752fcc8SJoe Perches	}
1952d752fcc8SJoe Perches
1953d752fcc8SJoe Perches	return @lines;
1954d752fcc8SJoe Perches}
1955d752fcc8SJoe Perches
1956f2d7e4d4SJoe Perchessub fix_insert_line {
1957f2d7e4d4SJoe Perches	my ($linenr, $line) = @_;
1958f2d7e4d4SJoe Perches
1959f2d7e4d4SJoe Perches	my $inserted = {
1960f2d7e4d4SJoe Perches		LINENR => $linenr,
1961f2d7e4d4SJoe Perches		LINE => $line,
1962f2d7e4d4SJoe Perches	};
1963f2d7e4d4SJoe Perches	push(@fixed_inserted, $inserted);
1964f2d7e4d4SJoe Perches}
1965f2d7e4d4SJoe Perches
1966f2d7e4d4SJoe Perchessub fix_delete_line {
1967f2d7e4d4SJoe Perches	my ($linenr, $line) = @_;
1968f2d7e4d4SJoe Perches
1969f2d7e4d4SJoe Perches	my $deleted = {
1970f2d7e4d4SJoe Perches		LINENR => $linenr,
1971f2d7e4d4SJoe Perches		LINE => $line,
1972f2d7e4d4SJoe Perches	};
1973f2d7e4d4SJoe Perches
1974f2d7e4d4SJoe Perches	push(@fixed_deleted, $deleted);
1975f2d7e4d4SJoe Perches}
1976f2d7e4d4SJoe Perches
1977de7d4f0eSAndy Whitcroftsub ERROR {
1978cbec18afSJoe Perches	my ($type, $msg) = @_;
1979cbec18afSJoe Perches
1980cbec18afSJoe Perches	if (report("ERROR", $type, $msg)) {
1981de7d4f0eSAndy Whitcroft		our $clean = 0;
19826c72ffaaSAndy Whitcroft		our $cnt_error++;
19833705ce5bSJoe Perches		return 1;
1984de7d4f0eSAndy Whitcroft	}
19853705ce5bSJoe Perches	return 0;
1986773647a0SAndy Whitcroft}
1987de7d4f0eSAndy Whitcroftsub WARN {
1988cbec18afSJoe Perches	my ($type, $msg) = @_;
1989cbec18afSJoe Perches
1990cbec18afSJoe Perches	if (report("WARNING", $type, $msg)) {
1991de7d4f0eSAndy Whitcroft		our $clean = 0;
19926c72ffaaSAndy Whitcroft		our $cnt_warn++;
19933705ce5bSJoe Perches		return 1;
1994de7d4f0eSAndy Whitcroft	}
19953705ce5bSJoe Perches	return 0;
1996773647a0SAndy Whitcroft}
1997de7d4f0eSAndy Whitcroftsub CHK {
1998cbec18afSJoe Perches	my ($type, $msg) = @_;
1999cbec18afSJoe Perches
2000cbec18afSJoe Perches	if ($check && report("CHECK", $type, $msg)) {
2001de7d4f0eSAndy Whitcroft		our $clean = 0;
20026c72ffaaSAndy Whitcroft		our $cnt_chk++;
20033705ce5bSJoe Perches		return 1;
20046c72ffaaSAndy Whitcroft	}
20053705ce5bSJoe Perches	return 0;
2006de7d4f0eSAndy Whitcroft}
2007de7d4f0eSAndy Whitcroft
20086ecd9674SAndy Whitcroftsub check_absolute_file {
20096ecd9674SAndy Whitcroft	my ($absolute, $herecurr) = @_;
20106ecd9674SAndy Whitcroft	my $file = $absolute;
20116ecd9674SAndy Whitcroft
20126ecd9674SAndy Whitcroft	##print "absolute<$absolute>\n";
20136ecd9674SAndy Whitcroft
20146ecd9674SAndy Whitcroft	# See if any suffix of this path is a path within the tree.
20156ecd9674SAndy Whitcroft	while ($file =~ s@^[^/]*/@@) {
20166ecd9674SAndy Whitcroft		if (-f "$root/$file") {
20176ecd9674SAndy Whitcroft			##print "file<$file>\n";
20186ecd9674SAndy Whitcroft			last;
20196ecd9674SAndy Whitcroft		}
20206ecd9674SAndy Whitcroft	}
20216ecd9674SAndy Whitcroft	if (! -f _)  {
20226ecd9674SAndy Whitcroft		return 0;
20236ecd9674SAndy Whitcroft	}
20246ecd9674SAndy Whitcroft
20256ecd9674SAndy Whitcroft	# It is, so see if the prefix is acceptable.
20266ecd9674SAndy Whitcroft	my $prefix = $absolute;
20276ecd9674SAndy Whitcroft	substr($prefix, -length($file)) = '';
20286ecd9674SAndy Whitcroft
20296ecd9674SAndy Whitcroft	##print "prefix<$prefix>\n";
20306ecd9674SAndy Whitcroft	if ($prefix ne ".../") {
2031000d1cc1SJoe Perches		WARN("USE_RELATIVE_PATH",
2032000d1cc1SJoe Perches		     "use relative pathname instead of absolute in changelog text\n" . $herecurr);
20336ecd9674SAndy Whitcroft	}
20346ecd9674SAndy Whitcroft}
20356ecd9674SAndy Whitcroft
20363705ce5bSJoe Perchessub trim {
20373705ce5bSJoe Perches	my ($string) = @_;
20383705ce5bSJoe Perches
2039b34c648bSJoe Perches	$string =~ s/^\s+|\s+$//g;
2040b34c648bSJoe Perches
2041b34c648bSJoe Perches	return $string;
2042b34c648bSJoe Perches}
2043b34c648bSJoe Perches
2044b34c648bSJoe Perchessub ltrim {
2045b34c648bSJoe Perches	my ($string) = @_;
2046b34c648bSJoe Perches
2047b34c648bSJoe Perches	$string =~ s/^\s+//;
2048b34c648bSJoe Perches
2049b34c648bSJoe Perches	return $string;
2050b34c648bSJoe Perches}
2051b34c648bSJoe Perches
2052b34c648bSJoe Perchessub rtrim {
2053b34c648bSJoe Perches	my ($string) = @_;
2054b34c648bSJoe Perches
2055b34c648bSJoe Perches	$string =~ s/\s+$//;
20563705ce5bSJoe Perches
20573705ce5bSJoe Perches	return $string;
20583705ce5bSJoe Perches}
20593705ce5bSJoe Perches
206052ea8506SJoe Perchessub string_find_replace {
206152ea8506SJoe Perches	my ($string, $find, $replace) = @_;
206252ea8506SJoe Perches
206352ea8506SJoe Perches	$string =~ s/$find/$replace/g;
206452ea8506SJoe Perches
206552ea8506SJoe Perches	return $string;
206652ea8506SJoe Perches}
206752ea8506SJoe Perches
20683705ce5bSJoe Perchessub tabify {
20693705ce5bSJoe Perches	my ($leading) = @_;
20703705ce5bSJoe Perches
20713705ce5bSJoe Perches	my $source_indent = 8;
20723705ce5bSJoe Perches	my $max_spaces_before_tab = $source_indent - 1;
20733705ce5bSJoe Perches	my $spaces_to_tab = " " x $source_indent;
20743705ce5bSJoe Perches
20753705ce5bSJoe Perches	#convert leading spaces to tabs
20763705ce5bSJoe Perches	1 while $leading =~ s@^([\t]*)$spaces_to_tab@$1\t@g;
20773705ce5bSJoe Perches	#Remove spaces before a tab
20783705ce5bSJoe Perches	1 while $leading =~ s@^([\t]*)( {1,$max_spaces_before_tab})\t@$1\t@g;
20793705ce5bSJoe Perches
20803705ce5bSJoe Perches	return "$leading";
20813705ce5bSJoe Perches}
20823705ce5bSJoe Perches
2083d1fe9c09SJoe Perchessub pos_last_openparen {
2084d1fe9c09SJoe Perches	my ($line) = @_;
2085d1fe9c09SJoe Perches
2086d1fe9c09SJoe Perches	my $pos = 0;
2087d1fe9c09SJoe Perches
2088d1fe9c09SJoe Perches	my $opens = $line =~ tr/\(/\(/;
2089d1fe9c09SJoe Perches	my $closes = $line =~ tr/\)/\)/;
2090d1fe9c09SJoe Perches
2091d1fe9c09SJoe Perches	my $last_openparen = 0;
2092d1fe9c09SJoe Perches
2093d1fe9c09SJoe Perches	if (($opens == 0) || ($closes >= $opens)) {
2094d1fe9c09SJoe Perches		return -1;
2095d1fe9c09SJoe Perches	}
2096d1fe9c09SJoe Perches
2097d1fe9c09SJoe Perches	my $len = length($line);
2098d1fe9c09SJoe Perches
2099d1fe9c09SJoe Perches	for ($pos = 0; $pos < $len; $pos++) {
2100d1fe9c09SJoe Perches		my $string = substr($line, $pos);
2101d1fe9c09SJoe Perches		if ($string =~ /^($FuncArg|$balanced_parens)/) {
2102d1fe9c09SJoe Perches			$pos += length($1) - 1;
2103d1fe9c09SJoe Perches		} elsif (substr($line, $pos, 1) eq '(') {
2104d1fe9c09SJoe Perches			$last_openparen = $pos;
2105d1fe9c09SJoe Perches		} elsif (index($string, '(') == -1) {
2106d1fe9c09SJoe Perches			last;
2107d1fe9c09SJoe Perches		}
2108d1fe9c09SJoe Perches	}
2109d1fe9c09SJoe Perches
211091cb5195SJoe Perches	return length(expand_tabs(substr($line, 0, $last_openparen))) + 1;
2111d1fe9c09SJoe Perches}
2112d1fe9c09SJoe Perches
21130a920b5bSAndy Whitcroftsub process {
21140a920b5bSAndy Whitcroft	my $filename = shift;
21150a920b5bSAndy Whitcroft
21160a920b5bSAndy Whitcroft	my $linenr=0;
21170a920b5bSAndy Whitcroft	my $prevline="";
2118c2fdda0dSAndy Whitcroft	my $prevrawline="";
21190a920b5bSAndy Whitcroft	my $stashline="";
2120c2fdda0dSAndy Whitcroft	my $stashrawline="";
21210a920b5bSAndy Whitcroft
21224a0df2efSAndy Whitcroft	my $length;
21230a920b5bSAndy Whitcroft	my $indent;
21240a920b5bSAndy Whitcroft	my $previndent=0;
21250a920b5bSAndy Whitcroft	my $stashindent=0;
21260a920b5bSAndy Whitcroft
2127de7d4f0eSAndy Whitcroft	our $clean = 1;
21280a920b5bSAndy Whitcroft	my $signoff = 0;
21290a920b5bSAndy Whitcroft	my $is_patch = 0;
213029ee1b0cSJoe Perches	my $in_header_lines = $file ? 0 : 1;
213115662b3eSJoe Perches	my $in_commit_log = 0;		#Scanning lines before patch
2132ed43c4e5SAllen Hubbe	my $has_commit_log = 0;		#Encountered lines before patch
2133bf4daf12SJoe Perches       my $commit_log_possible_stack_dump = 0;
21342a076f40SJoe Perches	my $commit_log_long_line = 0;
2135e518e9a5SJoe Perches	my $commit_log_has_diff = 0;
213613f1937eSJoe Perches	my $reported_maintainer_file = 0;
2137fa64205dSPasi Savanainen	my $non_utf8_charset = 0;
2138fa64205dSPasi Savanainen
2139365dd4eaSJoe Perches	my $last_blank_line = 0;
21405e4f6ba5SJoe Perches	my $last_coalesced_string_linenr = -1;
2141365dd4eaSJoe Perches
214213214adfSAndy Whitcroft	our @report = ();
21436c72ffaaSAndy Whitcroft	our $cnt_lines = 0;
21446c72ffaaSAndy Whitcroft	our $cnt_error = 0;
21456c72ffaaSAndy Whitcroft	our $cnt_warn = 0;
21466c72ffaaSAndy Whitcroft	our $cnt_chk = 0;
21476c72ffaaSAndy Whitcroft
21480a920b5bSAndy Whitcroft	# Trace the real file/line as we go.
21490a920b5bSAndy Whitcroft	my $realfile = '';
21500a920b5bSAndy Whitcroft	my $realline = 0;
21510a920b5bSAndy Whitcroft	my $realcnt = 0;
21520a920b5bSAndy Whitcroft	my $here = '';
21530a920b5bSAndy Whitcroft	my $in_comment = 0;
2154c2fdda0dSAndy Whitcroft	my $comment_edge = 0;
21550a920b5bSAndy Whitcroft	my $first_line = 0;
21561e855726SWolfram Sang	my $p1_prefix = '';
21570a920b5bSAndy Whitcroft
215813214adfSAndy Whitcroft	my $prev_values = 'E';
215913214adfSAndy Whitcroft
216013214adfSAndy Whitcroft	# suppression flags
2161773647a0SAndy Whitcroft	my %suppress_ifbraces;
2162170d3a22SAndy Whitcroft	my %suppress_whiletrailers;
21632b474a1aSAndy Whitcroft	my %suppress_export;
21643e469cdcSAndy Whitcroft	my $suppress_statement = 0;
2165653d4876SAndy Whitcroft
21667e51f197SJoe Perches	my %signatures = ();
2167323c1260SJoe Perches
2168c2fdda0dSAndy Whitcroft	# Pre-scan the patch sanitizing the lines.
2169de7d4f0eSAndy Whitcroft	# Pre-scan the patch looking for any __setup documentation.
2170c2fdda0dSAndy Whitcroft	#
2171de7d4f0eSAndy Whitcroft	my @setup_docs = ();
2172de7d4f0eSAndy Whitcroft	my $setup_docs = 0;
2173773647a0SAndy Whitcroft
2174d8b07710SJoe Perches	my $camelcase_file_seeded = 0;
2175d8b07710SJoe Perches
2176773647a0SAndy Whitcroft	sanitise_line_reset();
2177c2fdda0dSAndy Whitcroft	my $line;
2178c2fdda0dSAndy Whitcroft	foreach my $rawline (@rawlines) {
2179773647a0SAndy Whitcroft		$linenr++;
2180773647a0SAndy Whitcroft		$line = $rawline;
2181c2fdda0dSAndy Whitcroft
21823705ce5bSJoe Perches		push(@fixed, $rawline) if ($fix);
21833705ce5bSJoe Perches
2184773647a0SAndy Whitcroft		if ($rawline=~/^\+\+\+\s+(\S+)/) {
2185de7d4f0eSAndy Whitcroft			$setup_docs = 0;
2186de7d4f0eSAndy Whitcroft			if ($1 =~ m@Documentation/kernel-parameters.txt$@) {
2187de7d4f0eSAndy Whitcroft				$setup_docs = 1;
2188de7d4f0eSAndy Whitcroft			}
2189773647a0SAndy Whitcroft			#next;
2190de7d4f0eSAndy Whitcroft		}
2191773647a0SAndy Whitcroft		if ($rawline=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
2192773647a0SAndy Whitcroft			$realline=$1-1;
2193773647a0SAndy Whitcroft			if (defined $2) {
2194773647a0SAndy Whitcroft				$realcnt=$3+1;
2195773647a0SAndy Whitcroft			} else {
2196773647a0SAndy Whitcroft				$realcnt=1+1;
2197773647a0SAndy Whitcroft			}
2198c45dcabdSAndy Whitcroft			$in_comment = 0;
2199773647a0SAndy Whitcroft
2200773647a0SAndy Whitcroft			# Guestimate if this is a continuing comment.  Run
2201773647a0SAndy Whitcroft			# the context looking for a comment "edge".  If this
2202773647a0SAndy Whitcroft			# edge is a close comment then we must be in a comment
2203773647a0SAndy Whitcroft			# at context start.
2204773647a0SAndy Whitcroft			my $edge;
220501fa9147SAndy Whitcroft			my $cnt = $realcnt;
220601fa9147SAndy Whitcroft			for (my $ln = $linenr + 1; $cnt > 0; $ln++) {
220701fa9147SAndy Whitcroft				next if (defined $rawlines[$ln - 1] &&
220801fa9147SAndy Whitcroft					 $rawlines[$ln - 1] =~ /^-/);
220901fa9147SAndy Whitcroft				$cnt--;
221001fa9147SAndy Whitcroft				#print "RAW<$rawlines[$ln - 1]>\n";
2211721c1cb6SAndy Whitcroft				last if (!defined $rawlines[$ln - 1]);
2212fae17daeSAndy Whitcroft				if ($rawlines[$ln - 1] =~ m@(/\*|\*/)@ &&
2213fae17daeSAndy Whitcroft				    $rawlines[$ln - 1] !~ m@"[^"]*(?:/\*|\*/)[^"]*"@) {
2214fae17daeSAndy Whitcroft					($edge) = $1;
2215fae17daeSAndy Whitcroft					last;
2216fae17daeSAndy Whitcroft				}
2217773647a0SAndy Whitcroft			}
2218773647a0SAndy Whitcroft			if (defined $edge && $edge eq '*/') {
2219773647a0SAndy Whitcroft				$in_comment = 1;
2220773647a0SAndy Whitcroft			}
2221773647a0SAndy Whitcroft
2222773647a0SAndy Whitcroft			# Guestimate if this is a continuing comment.  If this
2223773647a0SAndy Whitcroft			# is the start of a diff block and this line starts
2224773647a0SAndy Whitcroft			# ' *' then it is very likely a comment.
2225773647a0SAndy Whitcroft			if (!defined $edge &&
222683242e0cSAndy Whitcroft			    $rawlines[$linenr] =~ m@^.\s*(?:\*\*+| \*)(?:\s|$)@)
2227773647a0SAndy Whitcroft			{
2228773647a0SAndy Whitcroft				$in_comment = 1;
2229773647a0SAndy Whitcroft			}
2230773647a0SAndy Whitcroft
2231773647a0SAndy Whitcroft			##print "COMMENT:$in_comment edge<$edge> $rawline\n";
2232773647a0SAndy Whitcroft			sanitise_line_reset($in_comment);
2233773647a0SAndy Whitcroft
2234171ae1a4SAndy Whitcroft		} elsif ($realcnt && $rawline =~ /^(?:\+| |$)/) {
2235773647a0SAndy Whitcroft			# Standardise the strings and chars within the input to
2236171ae1a4SAndy Whitcroft			# simplify matching -- only bother with positive lines.
2237773647a0SAndy Whitcroft			$line = sanitise_line($rawline);
2238773647a0SAndy Whitcroft		}
2239773647a0SAndy Whitcroft		push(@lines, $line);
2240773647a0SAndy Whitcroft
2241773647a0SAndy Whitcroft		if ($realcnt > 1) {
2242773647a0SAndy Whitcroft			$realcnt-- if ($line =~ /^(?:\+| |$)/);
2243773647a0SAndy Whitcroft		} else {
2244773647a0SAndy Whitcroft			$realcnt = 0;
2245773647a0SAndy Whitcroft		}
2246773647a0SAndy Whitcroft
2247773647a0SAndy Whitcroft		#print "==>$rawline\n";
2248773647a0SAndy Whitcroft		#print "-->$line\n";
2249de7d4f0eSAndy Whitcroft
2250de7d4f0eSAndy Whitcroft		if ($setup_docs && $line =~ /^\+/) {
2251de7d4f0eSAndy Whitcroft			push(@setup_docs, $line);
2252de7d4f0eSAndy Whitcroft		}
2253de7d4f0eSAndy Whitcroft	}
2254de7d4f0eSAndy Whitcroft
22556c72ffaaSAndy Whitcroft	$prefix = '';
22566c72ffaaSAndy Whitcroft
2257773647a0SAndy Whitcroft	$realcnt = 0;
2258773647a0SAndy Whitcroft	$linenr = 0;
2259194f66fcSJoe Perches	$fixlinenr = -1;
22600a920b5bSAndy Whitcroft	foreach my $line (@lines) {
22610a920b5bSAndy Whitcroft		$linenr++;
2262194f66fcSJoe Perches		$fixlinenr++;
22631b5539b1SJoe Perches		my $sline = $line;	#copy of $line
22641b5539b1SJoe Perches		$sline =~ s/$;/ /g;	#with comments as spaces
22650a920b5bSAndy Whitcroft
2266c2fdda0dSAndy Whitcroft		my $rawline = $rawlines[$linenr - 1];
22676c72ffaaSAndy Whitcroft
22680a920b5bSAndy Whitcroft#extract the line range in the file after the patch is applied
2269e518e9a5SJoe Perches		if (!$in_commit_log &&
2270e518e9a5SJoe Perches		    $line =~ /^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
22710a920b5bSAndy Whitcroft			$is_patch = 1;
22724a0df2efSAndy Whitcroft			$first_line = $linenr + 1;
22730a920b5bSAndy Whitcroft			$realline=$1-1;
22740a920b5bSAndy Whitcroft			if (defined $2) {
22750a920b5bSAndy Whitcroft				$realcnt=$3+1;
22760a920b5bSAndy Whitcroft			} else {
22770a920b5bSAndy Whitcroft				$realcnt=1+1;
22780a920b5bSAndy Whitcroft			}
2279c2fdda0dSAndy Whitcroft			annotate_reset();
228013214adfSAndy Whitcroft			$prev_values = 'E';
228113214adfSAndy Whitcroft
2282773647a0SAndy Whitcroft			%suppress_ifbraces = ();
2283170d3a22SAndy Whitcroft			%suppress_whiletrailers = ();
22842b474a1aSAndy Whitcroft			%suppress_export = ();
22853e469cdcSAndy Whitcroft			$suppress_statement = 0;
22860a920b5bSAndy Whitcroft			next;
22870a920b5bSAndy Whitcroft
22884a0df2efSAndy Whitcroft# track the line number as we move through the hunk, note that
22894a0df2efSAndy Whitcroft# new versions of GNU diff omit the leading space on completely
22904a0df2efSAndy Whitcroft# blank context lines so we need to count that too.
2291773647a0SAndy Whitcroft		} elsif ($line =~ /^( |\+|$)/) {
22920a920b5bSAndy Whitcroft			$realline++;
2293d8aaf121SAndy Whitcroft			$realcnt-- if ($realcnt != 0);
22940a920b5bSAndy Whitcroft
22954a0df2efSAndy Whitcroft			# Measure the line length and indent.
2296c2fdda0dSAndy Whitcroft			($length, $indent) = line_stats($rawline);
22970a920b5bSAndy Whitcroft
22980a920b5bSAndy Whitcroft			# Track the previous line.
22990a920b5bSAndy Whitcroft			($prevline, $stashline) = ($stashline, $line);
23000a920b5bSAndy Whitcroft			($previndent, $stashindent) = ($stashindent, $indent);
2301c2fdda0dSAndy Whitcroft			($prevrawline, $stashrawline) = ($stashrawline, $rawline);
2302c2fdda0dSAndy Whitcroft
2303773647a0SAndy Whitcroft			#warn "line<$line>\n";
23046c72ffaaSAndy Whitcroft
2305d8aaf121SAndy Whitcroft		} elsif ($realcnt == 1) {
2306d8aaf121SAndy Whitcroft			$realcnt--;
23070a920b5bSAndy Whitcroft		}
23080a920b5bSAndy Whitcroft
2309cc77cdcaSAndy Whitcroft		my $hunk_line = ($realcnt != 0);
2310cc77cdcaSAndy Whitcroft
23116c72ffaaSAndy Whitcroft		$here = "#$linenr: " if (!$file);
23126c72ffaaSAndy Whitcroft		$here = "#$realline: " if ($file);
2313773647a0SAndy Whitcroft
23142ac73b4fSJoe Perches		my $found_file = 0;
2315773647a0SAndy Whitcroft		# extract the filename as it passes
23163bf9a009SRabin Vincent		if ($line =~ /^diff --git.*?(\S+)$/) {
23173bf9a009SRabin Vincent			$realfile = $1;
23182b7ab453SJoe Perches			$realfile =~ s@^([^/]*)/@@ if (!$file);
2319270c49a0SJoe Perches			$in_commit_log = 0;
23202ac73b4fSJoe Perches			$found_file = 1;
23213bf9a009SRabin Vincent		} elsif ($line =~ /^\+\+\+\s+(\S+)/) {
2322773647a0SAndy Whitcroft			$realfile = $1;
23232b7ab453SJoe Perches			$realfile =~ s@^([^/]*)/@@ if (!$file);
2324270c49a0SJoe Perches			$in_commit_log = 0;
23251e855726SWolfram Sang
23261e855726SWolfram Sang			$p1_prefix = $1;
2327e2f7aa4bSAndy Whitcroft			if (!$file && $tree && $p1_prefix ne '' &&
2328e2f7aa4bSAndy Whitcroft			    -e "$root/$p1_prefix") {
2329000d1cc1SJoe Perches				WARN("PATCH_PREFIX",
2330000d1cc1SJoe Perches				     "patch prefix '$p1_prefix' exists, appears to be a -p0 patch\n");
23311e855726SWolfram Sang			}
2332773647a0SAndy Whitcroft
2333c1ab3326SAndy Whitcroft			if ($realfile =~ m@^include/asm/@) {
2334000d1cc1SJoe Perches				ERROR("MODIFIED_INCLUDE_ASM",
2335000d1cc1SJoe Perches				      "do not modify files in include/asm, change architecture specific files in include/asm-<architecture>\n" . "$here$rawline\n");
2336773647a0SAndy Whitcroft			}
23372ac73b4fSJoe Perches			$found_file = 1;
23382ac73b4fSJoe Perches		}
23392ac73b4fSJoe Perches
234034d8815fSJoe Perches#make up the handle for any error we report on this line
234134d8815fSJoe Perches		if ($showfile) {
234234d8815fSJoe Perches			$prefix = "$realfile:$realline: "
234334d8815fSJoe Perches		} elsif ($emacs) {
23447d3a9f67SJoe Perches			if ($file) {
23457d3a9f67SJoe Perches				$prefix = "$filename:$realline: ";
23467d3a9f67SJoe Perches			} else {
234734d8815fSJoe Perches				$prefix = "$filename:$linenr: ";
234834d8815fSJoe Perches			}
23497d3a9f67SJoe Perches		}
235034d8815fSJoe Perches
23512ac73b4fSJoe Perches		if ($found_file) {
235285b0ee18SJoe Perches			if (is_maintained_obsolete($realfile)) {
235385b0ee18SJoe Perches				WARN("OBSOLETE",
235485b0ee18SJoe Perches				     "$realfile is marked as 'obsolete' in the MAINTAINERS hierarchy.  No unnecessary modifications please.\n");
235585b0ee18SJoe Perches			}
23567bd7e483SJoe Perches			if ($realfile =~ m@^(?:drivers/net/|net/|drivers/staging/)@) {
23572ac73b4fSJoe Perches				$check = 1;
23582ac73b4fSJoe Perches			} else {
23592ac73b4fSJoe Perches				$check = $check_orig;
23602ac73b4fSJoe Perches			}
2361773647a0SAndy Whitcroft			next;
2362773647a0SAndy Whitcroft		}
2363773647a0SAndy Whitcroft
2364389834b6SRandy Dunlap		$here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
23650a920b5bSAndy Whitcroft
2366c2fdda0dSAndy Whitcroft		my $hereline = "$here\n$rawline\n";
2367c2fdda0dSAndy Whitcroft		my $herecurr = "$here\n$rawline\n";
2368c2fdda0dSAndy Whitcroft		my $hereprev = "$here\n$prevrawline\n$rawline\n";
23690a920b5bSAndy Whitcroft
23706c72ffaaSAndy Whitcroft		$cnt_lines++ if ($realcnt != 0);
23716c72ffaaSAndy Whitcroft
2372e518e9a5SJoe Perches# Check if the commit log has what seems like a diff which can confuse patch
2373e518e9a5SJoe Perches		if ($in_commit_log && !$commit_log_has_diff &&
2374e518e9a5SJoe Perches		    (($line =~ m@^\s+diff\b.*a/[\w/]+@ &&
2375e518e9a5SJoe Perches		      $line =~ m@^\s+diff\b.*a/([\w/]+)\s+b/$1\b@) ||
2376e518e9a5SJoe Perches		     $line =~ m@^\s*(?:\-\-\-\s+a/|\+\+\+\s+b/)@ ||
2377e518e9a5SJoe Perches		     $line =~ m/^\s*\@\@ \-\d+,\d+ \+\d+,\d+ \@\@/)) {
2378e518e9a5SJoe Perches			ERROR("DIFF_IN_COMMIT_MSG",
2379e518e9a5SJoe Perches			      "Avoid using diff content in the commit message - patch(1) might not work\n" . $herecurr);
2380e518e9a5SJoe Perches			$commit_log_has_diff = 1;
2381e518e9a5SJoe Perches		}
2382e518e9a5SJoe Perches
23833bf9a009SRabin Vincent# Check for incorrect file permissions
23843bf9a009SRabin Vincent		if ($line =~ /^new (file )?mode.*[7531]\d{0,2}$/) {
23853bf9a009SRabin Vincent			my $permhere = $here . "FILE: $realfile\n";
238604db4d25SJoe Perches			if ($realfile !~ m@scripts/@ &&
238704db4d25SJoe Perches			    $realfile !~ /\.(py|pl|awk|sh)$/) {
2388000d1cc1SJoe Perches				ERROR("EXECUTE_PERMISSIONS",
2389000d1cc1SJoe Perches				      "do not set execute permissions for source files\n" . $permhere);
23903bf9a009SRabin Vincent			}
23913bf9a009SRabin Vincent		}
23923bf9a009SRabin Vincent
239320112475SJoe Perches# Check the patch for a signoff:
2394d8aaf121SAndy Whitcroft		if ($line =~ /^\s*signed-off-by:/i) {
23954a0df2efSAndy Whitcroft			$signoff++;
239615662b3eSJoe Perches			$in_commit_log = 0;
23970a920b5bSAndy Whitcroft		}
239820112475SJoe Perches
2399e0d975b1SJoe Perches# Check if MAINTAINERS is being updated.  If so, there's probably no need to
2400e0d975b1SJoe Perches# emit the "does MAINTAINERS need updating?" message on file add/move/delete
2401e0d975b1SJoe Perches		if ($line =~ /^\s*MAINTAINERS\s*\|/) {
2402e0d975b1SJoe Perches			$reported_maintainer_file = 1;
2403e0d975b1SJoe Perches		}
2404e0d975b1SJoe Perches
240520112475SJoe Perches# Check signature styles
2406270c49a0SJoe Perches		if (!$in_header_lines &&
2407ce0338dfSJoe Perches		    $line =~ /^(\s*)([a-z0-9_-]+by:|$signature_tags)(\s*)(.*)/i) {
240820112475SJoe Perches			my $space_before = $1;
240920112475SJoe Perches			my $sign_off = $2;
241020112475SJoe Perches			my $space_after = $3;
241120112475SJoe Perches			my $email = $4;
241220112475SJoe Perches			my $ucfirst_sign_off = ucfirst(lc($sign_off));
241320112475SJoe Perches
2414ce0338dfSJoe Perches			if ($sign_off !~ /$signature_tags/) {
2415ce0338dfSJoe Perches				WARN("BAD_SIGN_OFF",
2416ce0338dfSJoe Perches				     "Non-standard signature: $sign_off\n" . $herecurr);
2417ce0338dfSJoe Perches			}
241820112475SJoe Perches			if (defined $space_before && $space_before ne "") {
24193705ce5bSJoe Perches				if (WARN("BAD_SIGN_OFF",
24203705ce5bSJoe Perches					 "Do not use whitespace before $ucfirst_sign_off\n" . $herecurr) &&
24213705ce5bSJoe Perches				    $fix) {
2422194f66fcSJoe Perches					$fixed[$fixlinenr] =
24233705ce5bSJoe Perches					    "$ucfirst_sign_off $email";
24243705ce5bSJoe Perches				}
242520112475SJoe Perches			}
242620112475SJoe Perches			if ($sign_off =~ /-by:$/i && $sign_off ne $ucfirst_sign_off) {
24273705ce5bSJoe Perches				if (WARN("BAD_SIGN_OFF",
24283705ce5bSJoe Perches					 "'$ucfirst_sign_off' is the preferred signature form\n" . $herecurr) &&
24293705ce5bSJoe Perches				    $fix) {
2430194f66fcSJoe Perches					$fixed[$fixlinenr] =
24313705ce5bSJoe Perches					    "$ucfirst_sign_off $email";
24323705ce5bSJoe Perches				}
24333705ce5bSJoe Perches
243420112475SJoe Perches			}
243520112475SJoe Perches			if (!defined $space_after || $space_after ne " ") {
24363705ce5bSJoe Perches				if (WARN("BAD_SIGN_OFF",
24373705ce5bSJoe Perches					 "Use a single space after $ucfirst_sign_off\n" . $herecurr) &&
24383705ce5bSJoe Perches				    $fix) {
2439194f66fcSJoe Perches					$fixed[$fixlinenr] =
24403705ce5bSJoe Perches					    "$ucfirst_sign_off $email";
24413705ce5bSJoe Perches				}
244220112475SJoe Perches			}
244320112475SJoe Perches
244420112475SJoe Perches			my ($email_name, $email_address, $comment) = parse_email($email);
244520112475SJoe Perches			my $suggested_email = format_email(($email_name, $email_address));
244620112475SJoe Perches			if ($suggested_email eq "") {
2447000d1cc1SJoe Perches				ERROR("BAD_SIGN_OFF",
2448000d1cc1SJoe Perches				      "Unrecognized email address: '$email'\n" . $herecurr);
244920112475SJoe Perches			} else {
245020112475SJoe Perches				my $dequoted = $suggested_email;
245120112475SJoe Perches				$dequoted =~ s/^"//;
245220112475SJoe Perches				$dequoted =~ s/" </ </;
245320112475SJoe Perches				# Don't force email to have quotes
245420112475SJoe Perches				# Allow just an angle bracketed address
245520112475SJoe Perches				if ("$dequoted$comment" ne $email &&
245620112475SJoe Perches				    "<$email_address>$comment" ne $email &&
245720112475SJoe Perches				    "$suggested_email$comment" ne $email) {
2458000d1cc1SJoe Perches					WARN("BAD_SIGN_OFF",
2459000d1cc1SJoe Perches					     "email address '$email' might be better as '$suggested_email$comment'\n" . $herecurr);
246020112475SJoe Perches				}
24610a920b5bSAndy Whitcroft			}
24627e51f197SJoe Perches
24637e51f197SJoe Perches# Check for duplicate signatures
24647e51f197SJoe Perches			my $sig_nospace = $line;
24657e51f197SJoe Perches			$sig_nospace =~ s/\s//g;
24667e51f197SJoe Perches			$sig_nospace = lc($sig_nospace);
24677e51f197SJoe Perches			if (defined $signatures{$sig_nospace}) {
24687e51f197SJoe Perches				WARN("BAD_SIGN_OFF",
24697e51f197SJoe Perches				     "Duplicate signature\n" . $herecurr);
24707e51f197SJoe Perches			} else {
24717e51f197SJoe Perches				$signatures{$sig_nospace} = 1;
24727e51f197SJoe Perches			}
24730a920b5bSAndy Whitcroft		}
24740a920b5bSAndy Whitcroft
2475a2fe16b9SJoe Perches# Check email subject for common tools that don't need to be mentioned
2476a2fe16b9SJoe Perches		if ($in_header_lines &&
2477a2fe16b9SJoe Perches		    $line =~ /^Subject:.*\b(?:checkpatch|sparse|smatch)\b[^:]/i) {
2478a2fe16b9SJoe Perches			WARN("EMAIL_SUBJECT",
2479a2fe16b9SJoe Perches			     "A patch subject line should describe the change not the tool that found it\n" . $herecurr);
2480a2fe16b9SJoe Perches		}
2481a2fe16b9SJoe Perches
24829b3189ebSJoe Perches# Check for old stable address
24839b3189ebSJoe Perches		if ($line =~ /^\s*cc:\s*.*<?\bstable\@kernel\.org\b>?.*$/i) {
24849b3189ebSJoe Perches			ERROR("STABLE_ADDRESS",
24859b3189ebSJoe Perches			      "The 'stable' address should be 'stable\@vger.kernel.org'\n" . $herecurr);
24869b3189ebSJoe Perches		}
24879b3189ebSJoe Perches
24887ebd05efSChristopher Covington# Check for unwanted Gerrit info
24897ebd05efSChristopher Covington		if ($in_commit_log && $line =~ /^\s*change-id:/i) {
24907ebd05efSChristopher Covington			ERROR("GERRIT_CHANGE_ID",
24917ebd05efSChristopher Covington			      "Remove Gerrit Change-Id's before submitting upstream.\n" . $herecurr);
24927ebd05efSChristopher Covington		}
24937ebd05efSChristopher Covington
2494369c8dd3SJoe Perches# Check if the commit log is in a possible stack dump
2495369c8dd3SJoe Perches		if ($in_commit_log && !$commit_log_possible_stack_dump &&
2496369c8dd3SJoe Perches		    ($line =~ /^\s*(?:WARNING:|BUG:)/ ||
2497369c8dd3SJoe Perches		     $line =~ /^\s*\[\s*\d+\.\d{6,6}\s*\]/ ||
2498369c8dd3SJoe Perches					# timestamp
2499369c8dd3SJoe Perches		     $line =~ /^\s*\[\<[0-9a-fA-F]{8,}\>\]/)) {
2500369c8dd3SJoe Perches					# stack dump address
2501369c8dd3SJoe Perches			$commit_log_possible_stack_dump = 1;
2502369c8dd3SJoe Perches		}
2503369c8dd3SJoe Perches
25042a076f40SJoe Perches# Check for line lengths > 75 in commit log, warn once
25052a076f40SJoe Perches		if ($in_commit_log && !$commit_log_long_line &&
2506bf4daf12SJoe Perches		    length($line) > 75 &&
2507bf4daf12SJoe Perches		    !($line =~ /^\s*[a-zA-Z0-9_\/\.]+\s+\|\s+\d+/ ||
2508bf4daf12SJoe Perches					# file delta changes
2509bf4daf12SJoe Perches		      $line =~ /^\s*(?:[\w\.\-]+\/)++[\w\.\-]+:/ ||
2510bf4daf12SJoe Perches					# filename then :
2511bf4daf12SJoe Perches		      $line =~ /^\s*(?:Fixes:|Link:)/i ||
2512bf4daf12SJoe Perches					# A Fixes: or Link: line
2513bf4daf12SJoe Perches		      $commit_log_possible_stack_dump)) {
25142a076f40SJoe Perches			WARN("COMMIT_LOG_LONG_LINE",
25152a076f40SJoe Perches			     "Possible unwrapped commit description (prefer a maximum 75 chars per line)\n" . $herecurr);
25162a076f40SJoe Perches			$commit_log_long_line = 1;
25172a076f40SJoe Perches		}
25182a076f40SJoe Perches
2519bf4daf12SJoe Perches# Reset possible stack dump if a blank line is found
2520bf4daf12SJoe Perches		if ($in_commit_log && $commit_log_possible_stack_dump &&
2521bf4daf12SJoe Perches		    $line =~ /^\s*$/) {
2522bf4daf12SJoe Perches			$commit_log_possible_stack_dump = 0;
2523bf4daf12SJoe Perches		}
2524bf4daf12SJoe Perches
25250d7835fcSJoe Perches# Check for git id commit length and improperly formed commit descriptions
2526369c8dd3SJoe Perches		if ($in_commit_log && !$commit_log_possible_stack_dump &&
2527aab38f51SJoe Perches		    $line !~ /^\s*(?:Link|Patchwork|http|https|BugLink):/i &&
2528fe043ea1SJoe Perches		    ($line =~ /\bcommit\s+[0-9a-f]{5,}\b/i ||
2529aab38f51SJoe Perches		     ($line =~ /(?:\s|^)[0-9a-f]{12,40}(?:[\s"'\(\[]|$)/i &&
2530369c8dd3SJoe Perches		      $line !~ /[\<\[][0-9a-f]{12,40}[\>\]]/i &&
2531bf4daf12SJoe Perches		      $line !~ /\bfixes:\s*[0-9a-f]{12,40}/i))) {
2532fe043ea1SJoe Perches			my $init_char = "c";
2533fe043ea1SJoe Perches			my $orig_commit = "";
25340d7835fcSJoe Perches			my $short = 1;
25350d7835fcSJoe Perches			my $long = 0;
25360d7835fcSJoe Perches			my $case = 1;
25370d7835fcSJoe Perches			my $space = 1;
25380d7835fcSJoe Perches			my $hasdesc = 0;
253919c146a6SJoe Perches			my $hasparens = 0;
25400d7835fcSJoe Perches			my $id = '0123456789ab';
25410d7835fcSJoe Perches			my $orig_desc = "commit description";
25420d7835fcSJoe Perches			my $description = "";
25430d7835fcSJoe Perches
2544fe043ea1SJoe Perches			if ($line =~ /\b(c)ommit\s+([0-9a-f]{5,})\b/i) {
2545fe043ea1SJoe Perches				$init_char = $1;
2546fe043ea1SJoe Perches				$orig_commit = lc($2);
2547fe043ea1SJoe Perches			} elsif ($line =~ /\b([0-9a-f]{12,40})\b/i) {
2548fe043ea1SJoe Perches				$orig_commit = lc($1);
2549fe043ea1SJoe Perches			}
2550fe043ea1SJoe Perches
25510d7835fcSJoe Perches			$short = 0 if ($line =~ /\bcommit\s+[0-9a-f]{12,40}/i);
25520d7835fcSJoe Perches			$long = 1 if ($line =~ /\bcommit\s+[0-9a-f]{41,}/i);
25530d7835fcSJoe Perches			$space = 0 if ($line =~ /\bcommit [0-9a-f]/i);
25540d7835fcSJoe Perches			$case = 0 if ($line =~ /\b[Cc]ommit\s+[0-9a-f]{5,40}[^A-F]/);
25550d7835fcSJoe Perches			if ($line =~ /\bcommit\s+[0-9a-f]{5,}\s+\("([^"]+)"\)/i) {
25560d7835fcSJoe Perches				$orig_desc = $1;
255719c146a6SJoe Perches				$hasparens = 1;
25580d7835fcSJoe Perches			} elsif ($line =~ /\bcommit\s+[0-9a-f]{5,}\s*$/i &&
25590d7835fcSJoe Perches				 defined $rawlines[$linenr] &&
25600d7835fcSJoe Perches				 $rawlines[$linenr] =~ /^\s*\("([^"]+)"\)/) {
25610d7835fcSJoe Perches				$orig_desc = $1;
256219c146a6SJoe Perches				$hasparens = 1;
2563b671fde0SJoe Perches			} elsif ($line =~ /\bcommit\s+[0-9a-f]{5,}\s+\("[^"]+$/i &&
2564b671fde0SJoe Perches				 defined $rawlines[$linenr] &&
2565b671fde0SJoe Perches				 $rawlines[$linenr] =~ /^\s*[^"]+"\)/) {
2566b671fde0SJoe Perches				$line =~ /\bcommit\s+[0-9a-f]{5,}\s+\("([^"]+)$/i;
2567b671fde0SJoe Perches				$orig_desc = $1;
2568b671fde0SJoe Perches				$rawlines[$linenr] =~ /^\s*([^"]+)"\)/;
2569b671fde0SJoe Perches				$orig_desc .= " " . $1;
257019c146a6SJoe Perches				$hasparens = 1;
25710d7835fcSJoe Perches			}
25720d7835fcSJoe Perches
25730d7835fcSJoe Perches			($id, $description) = git_commit_info($orig_commit,
25740d7835fcSJoe Perches							      $id, $orig_desc);
25750d7835fcSJoe Perches
257619c146a6SJoe Perches			if ($short || $long || $space || $case || ($orig_desc ne $description) || !$hasparens) {
2577d311cd44SJoe Perches				ERROR("GIT_COMMIT_ID",
25780d7835fcSJoe Perches				      "Please use git commit description style 'commit <12+ chars of sha1> (\"<title line>\")' - ie: '${init_char}ommit $id (\"$description\")'\n" . $herecurr);
25790d7835fcSJoe Perches			}
2580d311cd44SJoe Perches		}
2581d311cd44SJoe Perches
258213f1937eSJoe Perches# Check for added, moved or deleted files
258313f1937eSJoe Perches		if (!$reported_maintainer_file && !$in_commit_log &&
258413f1937eSJoe Perches		    ($line =~ /^(?:new|deleted) file mode\s*\d+\s*$/ ||
258513f1937eSJoe Perches		     $line =~ /^rename (?:from|to) [\w\/\.\-]+\s*$/ ||
258613f1937eSJoe Perches		     ($line =~ /\{\s*([\w\/\.\-]*)\s*\=\>\s*([\w\/\.\-]*)\s*\}/ &&
258713f1937eSJoe Perches		      (defined($1) || defined($2))))) {
258813f1937eSJoe Perches			$reported_maintainer_file = 1;
258913f1937eSJoe Perches			WARN("FILE_PATH_CHANGES",
259013f1937eSJoe Perches			     "added, moved or deleted file(s), does MAINTAINERS need updating?\n" . $herecurr);
259113f1937eSJoe Perches		}
259213f1937eSJoe Perches
259300df344fSAndy Whitcroft# Check for wrappage within a valid hunk of the file
25948905a67cSAndy Whitcroft		if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) {
2595000d1cc1SJoe Perches			ERROR("CORRUPTED_PATCH",
2596000d1cc1SJoe Perches			      "patch seems to be corrupt (line wrapped?)\n" .
25976c72ffaaSAndy Whitcroft				$herecurr) if (!$emitted_corrupt++);
2598de7d4f0eSAndy Whitcroft		}
2599de7d4f0eSAndy Whitcroft
26006ecd9674SAndy Whitcroft# Check for absolute kernel paths.
26016ecd9674SAndy Whitcroft		if ($tree) {
26026ecd9674SAndy Whitcroft			while ($line =~ m{(?:^|\s)(/\S*)}g) {
26036ecd9674SAndy Whitcroft				my $file = $1;
26046ecd9674SAndy Whitcroft
26056ecd9674SAndy Whitcroft				if ($file =~ m{^(.*?)(?::\d+)+:?$} &&
26066ecd9674SAndy Whitcroft				    check_absolute_file($1, $herecurr)) {
26076ecd9674SAndy Whitcroft					#
26086ecd9674SAndy Whitcroft				} else {
26096ecd9674SAndy Whitcroft					check_absolute_file($file, $herecurr);
26106ecd9674SAndy Whitcroft				}
26116ecd9674SAndy Whitcroft			}
26126ecd9674SAndy Whitcroft		}
26136ecd9674SAndy Whitcroft
2614de7d4f0eSAndy Whitcroft# UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
2615de7d4f0eSAndy Whitcroft		if (($realfile =~ /^$/ || $line =~ /^\+/) &&
2616171ae1a4SAndy Whitcroft		    $rawline !~ m/^$UTF8*$/) {
2617171ae1a4SAndy Whitcroft			my ($utf8_prefix) = ($rawline =~ /^($UTF8*)/);
2618171ae1a4SAndy Whitcroft
2619171ae1a4SAndy Whitcroft			my $blank = copy_spacing($rawline);
2620171ae1a4SAndy Whitcroft			my $ptr = substr($blank, 0, length($utf8_prefix)) . "^";
2621171ae1a4SAndy Whitcroft			my $hereptr = "$hereline$ptr\n";
2622171ae1a4SAndy Whitcroft
262334d99219SJoe Perches			CHK("INVALID_UTF8",
2624000d1cc1SJoe Perches			    "Invalid UTF-8, patch and commit message should be encoded in UTF-8\n" . $hereptr);
262500df344fSAndy Whitcroft		}
26260a920b5bSAndy Whitcroft
262715662b3eSJoe Perches# Check if it's the start of a commit log
262815662b3eSJoe Perches# (not a header line and we haven't seen the patch filename)
262915662b3eSJoe Perches		if ($in_header_lines && $realfile =~ /^$/ &&
263029ee1b0cSJoe Perches		    !($rawline =~ /^\s+\S/ ||
263129ee1b0cSJoe Perches		      $rawline =~ /^(commit\b|from\b|[\w-]+:).*$/i)) {
263215662b3eSJoe Perches			$in_header_lines = 0;
263315662b3eSJoe Perches			$in_commit_log = 1;
2634ed43c4e5SAllen Hubbe			$has_commit_log = 1;
263515662b3eSJoe Perches		}
263615662b3eSJoe Perches
2637fa64205dSPasi Savanainen# Check if there is UTF-8 in a commit log when a mail header has explicitly
2638fa64205dSPasi Savanainen# declined it, i.e defined some charset where it is missing.
2639fa64205dSPasi Savanainen		if ($in_header_lines &&
2640fa64205dSPasi Savanainen		    $rawline =~ /^Content-Type:.+charset="(.+)".*$/ &&
2641fa64205dSPasi Savanainen		    $1 !~ /utf-8/i) {
2642fa64205dSPasi Savanainen			$non_utf8_charset = 1;
2643fa64205dSPasi Savanainen		}
2644fa64205dSPasi Savanainen
2645fa64205dSPasi Savanainen		if ($in_commit_log && $non_utf8_charset && $realfile =~ /^$/ &&
264615662b3eSJoe Perches		    $rawline =~ /$NON_ASCII_UTF8/) {
2647fa64205dSPasi Savanainen			WARN("UTF8_BEFORE_PATCH",
264815662b3eSJoe Perches			    "8-bit UTF-8 used in possible commit log\n" . $herecurr);
264915662b3eSJoe Perches		}
265015662b3eSJoe Perches
265166b47b4aSKees Cook# Check for various typo / spelling mistakes
265266d7a382SJoe Perches		if (defined($misspellings) &&
265366d7a382SJoe Perches		    ($in_commit_log || $line =~ /^(?:\+|Subject:)/i)) {
2654ebfd7d62SJoe Perches			while ($rawline =~ /(?:^|[^a-z@])($misspellings)(?:\b|$|[^a-z@])/gi) {
265566b47b4aSKees Cook				my $typo = $1;
265666b47b4aSKees Cook				my $typo_fix = $spelling_fix{lc($typo)};
265766b47b4aSKees Cook				$typo_fix = ucfirst($typo_fix) if ($typo =~ /^[A-Z]/);
265866b47b4aSKees Cook				$typo_fix = uc($typo_fix) if ($typo =~ /^[A-Z]+$/);
265966b47b4aSKees Cook				my $msg_type = \&WARN;
266066b47b4aSKees Cook				$msg_type = \&CHK if ($file);
266166b47b4aSKees Cook				if (&{$msg_type}("TYPO_SPELLING",
266266b47b4aSKees Cook						 "'$typo' may be misspelled - perhaps '$typo_fix'?\n" . $herecurr) &&
266366b47b4aSKees Cook				    $fix) {
266466b47b4aSKees Cook					$fixed[$fixlinenr] =~ s/(^|[^A-Za-z@])($typo)($|[^A-Za-z@])/$1$typo_fix$3/;
266566b47b4aSKees Cook				}
266666b47b4aSKees Cook			}
266766b47b4aSKees Cook		}
266866b47b4aSKees Cook
266930670854SAndy Whitcroft# ignore non-hunk lines and lines being removed
267030670854SAndy Whitcroft		next if (!$hunk_line || $line =~ /^-/);
267100df344fSAndy Whitcroft
26720a920b5bSAndy Whitcroft#trailing whitespace
26739c0ca6f9SAndy Whitcroft		if ($line =~ /^\+.*\015/) {
2674c2fdda0dSAndy Whitcroft			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
2675d5e616fcSJoe Perches			if (ERROR("DOS_LINE_ENDINGS",
2676d5e616fcSJoe Perches				  "DOS line endings\n" . $herevet) &&
2677d5e616fcSJoe Perches			    $fix) {
2678194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/[\s\015]+$//;
2679d5e616fcSJoe Perches			}
2680c2fdda0dSAndy Whitcroft		} elsif ($rawline =~ /^\+.*\S\s+$/ || $rawline =~ /^\+\s+$/) {
2681c2fdda0dSAndy Whitcroft			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
26823705ce5bSJoe Perches			if (ERROR("TRAILING_WHITESPACE",
26833705ce5bSJoe Perches				  "trailing whitespace\n" . $herevet) &&
26843705ce5bSJoe Perches			    $fix) {
2685194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\s+$//;
26863705ce5bSJoe Perches			}
26873705ce5bSJoe Perches
2688d2c0a235SAndy Whitcroft			$rpt_cleaners = 1;
26890a920b5bSAndy Whitcroft		}
26905368df20SAndy Whitcroft
26914783f894SJosh Triplett# Check for FSF mailing addresses.
2692109d8cb2SAlexander Duyck		if ($rawline =~ /\bwrite to the Free/i ||
26933e2232f2SJoe Perches		    $rawline =~ /\b59\s+Temple\s+Pl/i ||
26943e2232f2SJoe Perches		    $rawline =~ /\b51\s+Franklin\s+St/i) {
26954783f894SJosh Triplett			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
26964783f894SJosh Triplett			my $msg_type = \&ERROR;
26974783f894SJosh Triplett			$msg_type = \&CHK if ($file);
26984783f894SJosh Triplett			&{$msg_type}("FSF_MAILING_ADDRESS",
26994783f894SJosh 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)
27004783f894SJosh Triplett		}
27014783f894SJosh Triplett
27023354957aSAndi Kleen# check for Kconfig help text having a real description
27039fe287d7SAndy Whitcroft# Only applies when adding the entry originally, after that we do not have
27049fe287d7SAndy Whitcroft# sufficient context to determine whether it is indeed long enough.
27053354957aSAndi Kleen		if ($realfile =~ /Kconfig/ &&
27068d73e0e7SJoe Perches		    $line =~ /^\+\s*config\s+/) {
27073354957aSAndi Kleen			my $length = 0;
27089fe287d7SAndy Whitcroft			my $cnt = $realcnt;
27099fe287d7SAndy Whitcroft			my $ln = $linenr + 1;
27109fe287d7SAndy Whitcroft			my $f;
2711a1385803SAndy Whitcroft			my $is_start = 0;
27129fe287d7SAndy Whitcroft			my $is_end = 0;
2713a1385803SAndy Whitcroft			for (; $cnt > 0 && defined $lines[$ln - 1]; $ln++) {
27149fe287d7SAndy Whitcroft				$f = $lines[$ln - 1];
27159fe287d7SAndy Whitcroft				$cnt-- if ($lines[$ln - 1] !~ /^-/);
27169fe287d7SAndy Whitcroft				$is_end = $lines[$ln - 1] =~ /^\+/;
27179fe287d7SAndy Whitcroft
27189fe287d7SAndy Whitcroft				next if ($f =~ /^-/);
27198d73e0e7SJoe Perches				last if (!$file && $f =~ /^\@\@/);
2720a1385803SAndy Whitcroft
27218d73e0e7SJoe Perches				if ($lines[$ln - 1] =~ /^\+\s*(?:bool|tristate)\s*\"/) {
2722a1385803SAndy Whitcroft					$is_start = 1;
27238d73e0e7SJoe Perches				} elsif ($lines[$ln - 1] =~ /^\+\s*(?:---)?help(?:---)?$/) {
2724a1385803SAndy Whitcroft					$length = -1;
2725a1385803SAndy Whitcroft				}
2726a1385803SAndy Whitcroft
27279fe287d7SAndy Whitcroft				$f =~ s/^.//;
27283354957aSAndi Kleen				$f =~ s/#.*//;
27293354957aSAndi Kleen				$f =~ s/^\s+//;
27303354957aSAndi Kleen				next if ($f =~ /^$/);
27319fe287d7SAndy Whitcroft				if ($f =~ /^\s*config\s/) {
27329fe287d7SAndy Whitcroft					$is_end = 1;
27339fe287d7SAndy Whitcroft					last;
27349fe287d7SAndy Whitcroft				}
27353354957aSAndi Kleen				$length++;
27363354957aSAndi Kleen			}
273756193274SVadim Bendebury			if ($is_start && $is_end && $length < $min_conf_desc_length) {
2738000d1cc1SJoe Perches				WARN("CONFIG_DESCRIPTION",
273956193274SVadim Bendebury				     "please write a paragraph that describes the config symbol fully\n" . $herecurr);
274056193274SVadim Bendebury			}
2741a1385803SAndy Whitcroft			#print "is_start<$is_start> is_end<$is_end> length<$length>\n";
27423354957aSAndi Kleen		}
27433354957aSAndi Kleen
27441ba8dfd1SKees Cook# discourage the addition of CONFIG_EXPERIMENTAL in Kconfig.
27451ba8dfd1SKees Cook		if ($realfile =~ /Kconfig/ &&
27461ba8dfd1SKees Cook		    $line =~ /.\s*depends on\s+.*\bEXPERIMENTAL\b/) {
27471ba8dfd1SKees Cook			WARN("CONFIG_EXPERIMENTAL",
27481ba8dfd1SKees Cook			     "Use of CONFIG_EXPERIMENTAL is deprecated. For alternatives, see https://lkml.org/lkml/2012/10/23/580\n");
27491ba8dfd1SKees Cook		}
27501ba8dfd1SKees Cook
2751327953e9SChristoph Jaeger# discourage the use of boolean for type definition attributes of Kconfig options
2752327953e9SChristoph Jaeger		if ($realfile =~ /Kconfig/ &&
2753327953e9SChristoph Jaeger		    $line =~ /^\+\s*\bboolean\b/) {
2754327953e9SChristoph Jaeger			WARN("CONFIG_TYPE_BOOLEAN",
2755327953e9SChristoph Jaeger			     "Use of boolean is deprecated, please use bool instead.\n" . $herecurr);
2756327953e9SChristoph Jaeger		}
2757327953e9SChristoph Jaeger
2758c68e5878SArnaud Lacombe		if (($realfile =~ /Makefile.*/ || $realfile =~ /Kbuild.*/) &&
2759c68e5878SArnaud Lacombe		    ($line =~ /\+(EXTRA_[A-Z]+FLAGS).*/)) {
2760c68e5878SArnaud Lacombe			my $flag = $1;
2761c68e5878SArnaud Lacombe			my $replacement = {
2762c68e5878SArnaud Lacombe				'EXTRA_AFLAGS' =>   'asflags-y',
2763c68e5878SArnaud Lacombe				'EXTRA_CFLAGS' =>   'ccflags-y',
2764c68e5878SArnaud Lacombe				'EXTRA_CPPFLAGS' => 'cppflags-y',
2765c68e5878SArnaud Lacombe				'EXTRA_LDFLAGS' =>  'ldflags-y',
2766c68e5878SArnaud Lacombe			};
2767c68e5878SArnaud Lacombe
2768c68e5878SArnaud Lacombe			WARN("DEPRECATED_VARIABLE",
2769c68e5878SArnaud Lacombe			     "Use of $flag is deprecated, please use \`$replacement->{$flag} instead.\n" . $herecurr) if ($replacement->{$flag});
2770c68e5878SArnaud Lacombe		}
2771c68e5878SArnaud Lacombe
2772bff5da43SRob Herring# check for DT compatible documentation
27737dd05b38SFlorian Vaussard		if (defined $root &&
27747dd05b38SFlorian Vaussard			(($realfile =~ /\.dtsi?$/ && $line =~ /^\+\s*compatible\s*=\s*\"/) ||
27757dd05b38SFlorian Vaussard			 ($realfile =~ /\.[ch]$/ && $line =~ /^\+.*\.compatible\s*=\s*\"/))) {
27767dd05b38SFlorian Vaussard
2777bff5da43SRob Herring			my @compats = $rawline =~ /\"([a-zA-Z0-9\-\,\.\+_]+)\"/g;
2778bff5da43SRob Herring
2779cc93319bSFlorian Vaussard			my $dt_path = $root . "/Documentation/devicetree/bindings/";
2780cc93319bSFlorian Vaussard			my $vp_file = $dt_path . "vendor-prefixes.txt";
2781cc93319bSFlorian Vaussard
2782bff5da43SRob Herring			foreach my $compat (@compats) {
2783bff5da43SRob Herring				my $compat2 = $compat;
2784185d566bSRob Herring				$compat2 =~ s/\,[a-zA-Z0-9]*\-/\,<\.\*>\-/;
2785185d566bSRob Herring				my $compat3 = $compat;
2786185d566bSRob Herring				$compat3 =~ s/\,([a-z]*)[0-9]*\-/\,$1<\.\*>\-/;
2787185d566bSRob Herring				`grep -Erq "$compat|$compat2|$compat3" $dt_path`;
2788bff5da43SRob Herring				if ( $? >> 8 ) {
2789bff5da43SRob Herring					WARN("UNDOCUMENTED_DT_STRING",
2790bff5da43SRob Herring					     "DT compatible string \"$compat\" appears un-documented -- check $dt_path\n" . $herecurr);
2791bff5da43SRob Herring				}
2792bff5da43SRob Herring
27934fbf32a6SFlorian Vaussard				next if $compat !~ /^([a-zA-Z0-9\-]+)\,/;
27944fbf32a6SFlorian Vaussard				my $vendor = $1;
2795cc93319bSFlorian Vaussard				`grep -Eq "^$vendor\\b" $vp_file`;
2796bff5da43SRob Herring				if ( $? >> 8 ) {
2797bff5da43SRob Herring					WARN("UNDOCUMENTED_DT_STRING",
2798cc93319bSFlorian Vaussard					     "DT compatible string vendor \"$vendor\" appears un-documented -- check $vp_file\n" . $herecurr);
2799bff5da43SRob Herring				}
2800bff5da43SRob Herring			}
2801bff5da43SRob Herring		}
2802bff5da43SRob Herring
28035368df20SAndy Whitcroft# check we are in a valid source file if not then ignore this hunk
2804de4c924cSGeert Uytterhoeven		next if ($realfile !~ /\.(h|c|s|S|pl|sh|dtsi|dts)$/);
28055368df20SAndy Whitcroft
280647e0c88bSJoe Perches# line length limit (with some exclusions)
280747e0c88bSJoe Perches#
280847e0c88bSJoe Perches# There are a few types of lines that may extend beyond $max_line_length:
280947e0c88bSJoe Perches#	logging functions like pr_info that end in a string
281047e0c88bSJoe Perches#	lines with a single string
281147e0c88bSJoe Perches#	#defines that are a single string
281247e0c88bSJoe Perches#
281347e0c88bSJoe Perches# There are 3 different line length message types:
281447e0c88bSJoe Perches# LONG_LINE_COMMENT	a comment starts before but extends beyond $max_linelength
281547e0c88bSJoe Perches# LONG_LINE_STRING	a string starts before but extends beyond $max_line_length
281647e0c88bSJoe Perches# LONG_LINE		all other lines longer than $max_line_length
281747e0c88bSJoe Perches#
281847e0c88bSJoe Perches# if LONG_LINE is ignored, the other 2 types are also ignored
281947e0c88bSJoe Perches#
282047e0c88bSJoe Perches
2821b4749e96SJoe Perches		if ($line =~ /^\+/ && $length > $max_line_length) {
282247e0c88bSJoe Perches			my $msg_type = "LONG_LINE";
282347e0c88bSJoe Perches
282447e0c88bSJoe Perches			# Check the allowed long line types first
282547e0c88bSJoe Perches
282647e0c88bSJoe Perches			# logging functions that end in a string that starts
282747e0c88bSJoe Perches			# before $max_line_length
282847e0c88bSJoe Perches			if ($line =~ /^\+\s*$logFunctions\s*\(\s*(?:(?:KERN_\S+\s*|[^"]*))?($String\s*(?:|,|\)\s*;)\s*)$/ &&
282947e0c88bSJoe Perches			    length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
283047e0c88bSJoe Perches				$msg_type = "";
283147e0c88bSJoe Perches
283247e0c88bSJoe Perches			# lines with only strings (w/ possible termination)
283347e0c88bSJoe Perches			# #defines with only strings
283447e0c88bSJoe Perches			} elsif ($line =~ /^\+\s*$String\s*(?:\s*|,|\)\s*;)\s*$/ ||
283547e0c88bSJoe Perches				 $line =~ /^\+\s*#\s*define\s+\w+\s+$String$/) {
283647e0c88bSJoe Perches				$msg_type = "";
283747e0c88bSJoe Perches
2838d560a5f8SJoe Perches			# EFI_GUID is another special case
2839d560a5f8SJoe Perches			} elsif ($line =~ /^\+.*\bEFI_GUID\s*\(/) {
2840d560a5f8SJoe Perches				$msg_type = "";
2841d560a5f8SJoe Perches
284247e0c88bSJoe Perches			# Otherwise set the alternate message types
284347e0c88bSJoe Perches
284447e0c88bSJoe Perches			# a comment starts before $max_line_length
284547e0c88bSJoe Perches			} elsif ($line =~ /($;[\s$;]*)$/ &&
284647e0c88bSJoe Perches				 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
284747e0c88bSJoe Perches				$msg_type = "LONG_LINE_COMMENT"
284847e0c88bSJoe Perches
284947e0c88bSJoe Perches			# a quoted string starts before $max_line_length
285047e0c88bSJoe Perches			} elsif ($sline =~ /\s*($String(?:\s*(?:\\|,\s*|\)\s*;\s*))?)$/ &&
285147e0c88bSJoe Perches				 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
285247e0c88bSJoe Perches				$msg_type = "LONG_LINE_STRING"
285347e0c88bSJoe Perches			}
285447e0c88bSJoe Perches
285547e0c88bSJoe Perches			if ($msg_type ne "" &&
285647e0c88bSJoe Perches			    (show_type("LONG_LINE") || show_type($msg_type))) {
285747e0c88bSJoe Perches				WARN($msg_type,
28586cd7f386SJoe Perches				     "line over $max_line_length characters\n" . $herecurr);
28590a920b5bSAndy Whitcroft			}
286047e0c88bSJoe Perches		}
28610a920b5bSAndy Whitcroft
28628905a67cSAndy Whitcroft# check for adding lines without a newline.
28638905a67cSAndy Whitcroft		if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
2864000d1cc1SJoe Perches			WARN("MISSING_EOF_NEWLINE",
2865000d1cc1SJoe Perches			     "adding a line without newline at end of file\n" . $herecurr);
28668905a67cSAndy Whitcroft		}
28678905a67cSAndy Whitcroft
286842e41c54SMike Frysinger# Blackfin: use hi/lo macros
286942e41c54SMike Frysinger		if ($realfile =~ m@arch/blackfin/.*\.S$@) {
287042e41c54SMike Frysinger			if ($line =~ /\.[lL][[:space:]]*=.*&[[:space:]]*0x[fF][fF][fF][fF]/) {
287142e41c54SMike Frysinger				my $herevet = "$here\n" . cat_vet($line) . "\n";
2872000d1cc1SJoe Perches				ERROR("LO_MACRO",
2873000d1cc1SJoe Perches				      "use the LO() macro, not (... & 0xFFFF)\n" . $herevet);
287442e41c54SMike Frysinger			}
287542e41c54SMike Frysinger			if ($line =~ /\.[hH][[:space:]]*=.*>>[[:space:]]*16/) {
287642e41c54SMike Frysinger				my $herevet = "$here\n" . cat_vet($line) . "\n";
2877000d1cc1SJoe Perches				ERROR("HI_MACRO",
2878000d1cc1SJoe Perches				      "use the HI() macro, not (... >> 16)\n" . $herevet);
287942e41c54SMike Frysinger			}
288042e41c54SMike Frysinger		}
288142e41c54SMike Frysinger
2882b9ea10d6SAndy Whitcroft# check we are in a valid source file C or perl if not then ignore this hunk
2883de4c924cSGeert Uytterhoeven		next if ($realfile !~ /\.(h|c|pl|dtsi|dts)$/);
28840a920b5bSAndy Whitcroft
28850a920b5bSAndy Whitcroft# at the beginning of a line any tabs must come first and anything
28860a920b5bSAndy Whitcroft# more than 8 must use tabs.
2887c2fdda0dSAndy Whitcroft		if ($rawline =~ /^\+\s* \t\s*\S/ ||
2888c2fdda0dSAndy Whitcroft		    $rawline =~ /^\+\s*        \s*/) {
2889c2fdda0dSAndy Whitcroft			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
2890d2c0a235SAndy Whitcroft			$rpt_cleaners = 1;
28913705ce5bSJoe Perches			if (ERROR("CODE_INDENT",
28923705ce5bSJoe Perches				  "code indent should use tabs where possible\n" . $herevet) &&
28933705ce5bSJoe Perches			    $fix) {
2894194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/^\+([ \t]+)/"\+" . tabify($1)/e;
28953705ce5bSJoe Perches			}
28960a920b5bSAndy Whitcroft		}
28970a920b5bSAndy Whitcroft
289808e44365SAlberto Panizzo# check for space before tabs.
289908e44365SAlberto Panizzo		if ($rawline =~ /^\+/ && $rawline =~ / \t/) {
290008e44365SAlberto Panizzo			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
29013705ce5bSJoe Perches			if (WARN("SPACE_BEFORE_TAB",
29023705ce5bSJoe Perches				"please, no space before tabs\n" . $herevet) &&
29033705ce5bSJoe Perches			    $fix) {
2904194f66fcSJoe Perches				while ($fixed[$fixlinenr] =~
2905d2207ccbSJoe Perches					   s/(^\+.*) {8,8}\t/$1\t\t/) {}
2906194f66fcSJoe Perches				while ($fixed[$fixlinenr] =~
2907c76f4cb3SJoe Perches					   s/(^\+.*) +\t/$1\t/) {}
29083705ce5bSJoe Perches			}
290908e44365SAlberto Panizzo		}
291008e44365SAlberto Panizzo
2911d1fe9c09SJoe Perches# check for && or || at the start of a line
2912d1fe9c09SJoe Perches		if ($rawline =~ /^\+\s*(&&|\|\|)/) {
2913d1fe9c09SJoe Perches			CHK("LOGICAL_CONTINUATIONS",
2914d1fe9c09SJoe Perches			    "Logical continuations should be on the previous line\n" . $hereprev);
2915d1fe9c09SJoe Perches		}
2916d1fe9c09SJoe Perches
2917a91e8994SJoe Perches# check indentation starts on a tab stop
2918a91e8994SJoe Perches		if ($^V && $^V ge 5.10.0 &&
2919a91e8994SJoe Perches		    $sline =~ /^\+\t+( +)(?:$c90_Keywords\b|\{\s*$|\}\s*(?:else\b|while\b|\s*$))/) {
2920a91e8994SJoe Perches			my $indent = length($1);
2921a91e8994SJoe Perches			if ($indent % 8) {
2922a91e8994SJoe Perches				if (WARN("TABSTOP",
2923a91e8994SJoe Perches					 "Statements should start on a tabstop\n" . $herecurr) &&
2924a91e8994SJoe Perches				    $fix) {
2925a91e8994SJoe Perches					$fixed[$fixlinenr] =~ s@(^\+\t+) +@$1 . "\t" x ($indent/8)@e;
2926a91e8994SJoe Perches				}
2927a91e8994SJoe Perches			}
2928a91e8994SJoe Perches		}
2929a91e8994SJoe Perches
2930d1fe9c09SJoe Perches# check multi-line statement indentation matches previous line
2931d1fe9c09SJoe Perches		if ($^V && $^V ge 5.10.0 &&
293291cb5195SJoe Perches		    $prevline =~ /^\+([ \t]*)((?:$c90_Keywords(?:\s+if)\s*)|(?:$Declare\s*)?(?:$Ident|\(\s*\*\s*$Ident\s*\))\s*|$Ident\s*=\s*$Ident\s*)\(.*(\&\&|\|\||,)\s*$/) {
2933d1fe9c09SJoe Perches			$prevline =~ /^\+(\t*)(.*)$/;
2934d1fe9c09SJoe Perches			my $oldindent = $1;
2935d1fe9c09SJoe Perches			my $rest = $2;
2936d1fe9c09SJoe Perches
2937d1fe9c09SJoe Perches			my $pos = pos_last_openparen($rest);
2938d1fe9c09SJoe Perches			if ($pos >= 0) {
2939b34a26f3SJoe Perches				$line =~ /^(\+| )([ \t]*)/;
2940b34a26f3SJoe Perches				my $newindent = $2;
2941d1fe9c09SJoe Perches
2942d1fe9c09SJoe Perches				my $goodtabindent = $oldindent .
2943d1fe9c09SJoe Perches					"\t" x ($pos / 8) .
2944d1fe9c09SJoe Perches					" "  x ($pos % 8);
2945d1fe9c09SJoe Perches				my $goodspaceindent = $oldindent . " "  x $pos;
2946d1fe9c09SJoe Perches
2947d1fe9c09SJoe Perches				if ($newindent ne $goodtabindent &&
2948d1fe9c09SJoe Perches				    $newindent ne $goodspaceindent) {
29493705ce5bSJoe Perches
29503705ce5bSJoe Perches					if (CHK("PARENTHESIS_ALIGNMENT",
29513705ce5bSJoe Perches						"Alignment should match open parenthesis\n" . $hereprev) &&
29523705ce5bSJoe Perches					    $fix && $line =~ /^\+/) {
2953194f66fcSJoe Perches						$fixed[$fixlinenr] =~
29543705ce5bSJoe Perches						    s/^\+[ \t]*/\+$goodtabindent/;
29553705ce5bSJoe Perches					}
2956d1fe9c09SJoe Perches				}
2957d1fe9c09SJoe Perches			}
2958d1fe9c09SJoe Perches		}
2959d1fe9c09SJoe Perches
29606ab3a970SJoe Perches# check for space after cast like "(int) foo" or "(struct foo) bar"
29616ab3a970SJoe Perches# avoid checking a few false positives:
29626ab3a970SJoe Perches#   "sizeof(<type>)" or "__alignof__(<type>)"
29636ab3a970SJoe Perches#   function pointer declarations like "(*foo)(int) = bar;"
29646ab3a970SJoe Perches#   structure definitions like "(struct foo) { 0 };"
29656ab3a970SJoe Perches#   multiline macros that define functions
29666ab3a970SJoe Perches#   known attributes or the __attribute__ keyword
29676ab3a970SJoe Perches		if ($line =~ /^\+(.*)\(\s*$Type\s*\)([ \t]++)((?![={]|\\$|$Attribute|__attribute__))/ &&
29686ab3a970SJoe Perches		    (!defined($1) || $1 !~ /\b(?:sizeof|__alignof__)\s*$/)) {
29693705ce5bSJoe Perches			if (CHK("SPACING",
2970f27c95dbSJoe Perches				"No space is necessary after a cast\n" . $herecurr) &&
29713705ce5bSJoe Perches			    $fix) {
2972194f66fcSJoe Perches				$fixed[$fixlinenr] =~
2973f27c95dbSJoe Perches				    s/(\(\s*$Type\s*\))[ \t]+/$1/;
29743705ce5bSJoe Perches			}
2975aad4f614SJoe Perches		}
2976aad4f614SJoe Perches
297786406b1cSJoe Perches# Block comment styles
297886406b1cSJoe Perches# Networking with an initial /*
297905880600SJoe Perches		if ($realfile =~ m@^(drivers/net/|net/)@ &&
2980fdb4bcd6SJoe Perches		    $prevrawline =~ /^\+[ \t]*\/\*[ \t]*$/ &&
298185ad978cSJoe Perches		    $rawline =~ /^\+[ \t]*\*/ &&
298285ad978cSJoe Perches		    $realline > 2) {
298305880600SJoe Perches			WARN("NETWORKING_BLOCK_COMMENT_STYLE",
298405880600SJoe Perches			     "networking block comments don't use an empty /* line, use /* Comment...\n" . $hereprev);
298505880600SJoe Perches		}
298605880600SJoe Perches
298786406b1cSJoe Perches# Block comments use * on subsequent lines
298886406b1cSJoe Perches		if ($prevline =~ /$;[ \t]*$/ &&			#ends in comment
298986406b1cSJoe Perches		    $prevrawline =~ /^\+.*?\/\*/ &&		#starting /*
2990a605e32eSJoe Perches		    $prevrawline !~ /\*\/[ \t]*$/ &&		#no trailing */
299161135e96SJoe Perches		    $rawline =~ /^\+/ &&			#line is new
2992a605e32eSJoe Perches		    $rawline !~ /^\+[ \t]*\*/) {		#no leading *
299386406b1cSJoe Perches			WARN("BLOCK_COMMENT_STYLE",
299486406b1cSJoe Perches			     "Block comments use * on subsequent lines\n" . $hereprev);
2995a605e32eSJoe Perches		}
2996a605e32eSJoe Perches
299786406b1cSJoe Perches# Block comments use */ on trailing lines
299886406b1cSJoe Perches		if ($rawline !~ m@^\+[ \t]*\*/[ \t]*$@ &&	#trailing */
2999c24f9f19SJoe Perches		    $rawline !~ m@^\+.*/\*.*\*/[ \t]*$@ &&	#inline /*...*/
3000c24f9f19SJoe Perches		    $rawline !~ m@^\+.*\*{2,}/[ \t]*$@ &&	#trailing **/
3001c24f9f19SJoe Perches		    $rawline =~ m@^\+[ \t]*.+\*\/[ \t]*$@) {	#non blank */
300286406b1cSJoe Perches			WARN("BLOCK_COMMENT_STYLE",
300386406b1cSJoe Perches			     "Block comments use a trailing */ on a separate line\n" . $herecurr);
300405880600SJoe Perches		}
300505880600SJoe Perches
300608eb9b80SJoe Perches# Block comment * alignment
300708eb9b80SJoe Perches		if ($prevline =~ /$;[ \t]*$/ &&			#ends in comment
3008af207524SJoe Perches		    $line =~ /^\+[ \t]*$;/ &&			#leading comment
3009af207524SJoe Perches		    $rawline =~ /^\+[ \t]*\*/ &&		#leading *
3010af207524SJoe Perches		    (($prevrawline =~ /^\+.*?\/\*/ &&		#leading /*
301108eb9b80SJoe Perches		      $prevrawline !~ /\*\/[ \t]*$/) ||		#no trailing */
3012af207524SJoe Perches		     $prevrawline =~ /^\+[ \t]*\*/)) {		#leading *
3013af207524SJoe Perches			my $oldindent;
301408eb9b80SJoe Perches			$prevrawline =~ m@^\+([ \t]*/?)\*@;
3015af207524SJoe Perches			if (defined($1)) {
3016af207524SJoe Perches				$oldindent = expand_tabs($1);
3017af207524SJoe Perches			} else {
3018af207524SJoe Perches				$prevrawline =~ m@^\+(.*/?)\*@;
3019af207524SJoe Perches				$oldindent = expand_tabs($1);
3020af207524SJoe Perches			}
302108eb9b80SJoe Perches			$rawline =~ m@^\+([ \t]*)\*@;
302208eb9b80SJoe Perches			my $newindent = $1;
302308eb9b80SJoe Perches			$newindent = expand_tabs($newindent);
3024af207524SJoe Perches			if (length($oldindent) ne length($newindent)) {
302508eb9b80SJoe Perches				WARN("BLOCK_COMMENT_STYLE",
302608eb9b80SJoe Perches				     "Block comments should align the * on each line\n" . $hereprev);
302708eb9b80SJoe Perches			}
302808eb9b80SJoe Perches		}
302908eb9b80SJoe Perches
30307f619191SJoe Perches# check for missing blank lines after struct/union declarations
30317f619191SJoe Perches# with exceptions for various attributes and macros
30327f619191SJoe Perches		if ($prevline =~ /^[\+ ]};?\s*$/ &&
30337f619191SJoe Perches		    $line =~ /^\+/ &&
30347f619191SJoe Perches		    !($line =~ /^\+\s*$/ ||
30357f619191SJoe Perches		      $line =~ /^\+\s*EXPORT_SYMBOL/ ||
30367f619191SJoe Perches		      $line =~ /^\+\s*MODULE_/i ||
30377f619191SJoe Perches		      $line =~ /^\+\s*\#\s*(?:end|elif|else)/ ||
30387f619191SJoe Perches		      $line =~ /^\+[a-z_]*init/ ||
30397f619191SJoe Perches		      $line =~ /^\+\s*(?:static\s+)?[A-Z_]*ATTR/ ||
30407f619191SJoe Perches		      $line =~ /^\+\s*DECLARE/ ||
30417f619191SJoe Perches		      $line =~ /^\+\s*__setup/)) {
3042d752fcc8SJoe Perches			if (CHK("LINE_SPACING",
3043d752fcc8SJoe Perches				"Please use a blank line after function/struct/union/enum declarations\n" . $hereprev) &&
3044d752fcc8SJoe Perches			    $fix) {
3045f2d7e4d4SJoe Perches				fix_insert_line($fixlinenr, "\+");
3046d752fcc8SJoe Perches			}
30477f619191SJoe Perches		}
30487f619191SJoe Perches
3049365dd4eaSJoe Perches# check for multiple consecutive blank lines
3050365dd4eaSJoe Perches		if ($prevline =~ /^[\+ ]\s*$/ &&
3051365dd4eaSJoe Perches		    $line =~ /^\+\s*$/ &&
3052365dd4eaSJoe Perches		    $last_blank_line != ($linenr - 1)) {
3053d752fcc8SJoe Perches			if (CHK("LINE_SPACING",
3054d752fcc8SJoe Perches				"Please don't use multiple blank lines\n" . $hereprev) &&
3055d752fcc8SJoe Perches			    $fix) {
3056f2d7e4d4SJoe Perches				fix_delete_line($fixlinenr, $rawline);
3057d752fcc8SJoe Perches			}
3058d752fcc8SJoe Perches
3059365dd4eaSJoe Perches			$last_blank_line = $linenr;
3060365dd4eaSJoe Perches		}
3061365dd4eaSJoe Perches
30623b617e3bSJoe Perches# check for missing blank lines after declarations
30633f7bac03SJoe Perches		if ($sline =~ /^\+\s+\S/ &&			#Not at char 1
30643f7bac03SJoe Perches			# actual declarations
30653f7bac03SJoe Perches		    ($prevline =~ /^\+\s+$Declare\s*$Ident\s*[=,;:\[]/ ||
30665a4e1fd3SJoe Perches			# function pointer declarations
30675a4e1fd3SJoe Perches		     $prevline =~ /^\+\s+$Declare\s*\(\s*\*\s*$Ident\s*\)\s*[=,;:\[\(]/ ||
30683f7bac03SJoe Perches			# foo bar; where foo is some local typedef or #define
30693f7bac03SJoe Perches		     $prevline =~ /^\+\s+$Ident(?:\s+|\s*\*\s*)$Ident\s*[=,;\[]/ ||
30703f7bac03SJoe Perches			# known declaration macros
30713f7bac03SJoe Perches		     $prevline =~ /^\+\s+$declaration_macros/) &&
30723f7bac03SJoe Perches			# for "else if" which can look like "$Ident $Ident"
30733f7bac03SJoe Perches		    !($prevline =~ /^\+\s+$c90_Keywords\b/ ||
30743f7bac03SJoe Perches			# other possible extensions of declaration lines
30753f7bac03SJoe Perches		      $prevline =~ /(?:$Compare|$Assignment|$Operators)\s*$/ ||
30763f7bac03SJoe Perches			# not starting a section or a macro "\" extended line
30773f7bac03SJoe Perches		      $prevline =~ /(?:\{\s*|\\)$/) &&
30783f7bac03SJoe Perches			# looks like a declaration
30793f7bac03SJoe Perches		    !($sline =~ /^\+\s+$Declare\s*$Ident\s*[=,;:\[]/ ||
30805a4e1fd3SJoe Perches			# function pointer declarations
30815a4e1fd3SJoe Perches		      $sline =~ /^\+\s+$Declare\s*\(\s*\*\s*$Ident\s*\)\s*[=,;:\[\(]/ ||
30823f7bac03SJoe Perches			# foo bar; where foo is some local typedef or #define
30833f7bac03SJoe Perches		      $sline =~ /^\+\s+$Ident(?:\s+|\s*\*\s*)$Ident\s*[=,;\[]/ ||
30843f7bac03SJoe Perches			# known declaration macros
30853f7bac03SJoe Perches		      $sline =~ /^\+\s+$declaration_macros/ ||
30863f7bac03SJoe Perches			# start of struct or union or enum
30873b617e3bSJoe Perches		      $sline =~ /^\+\s+(?:union|struct|enum|typedef)\b/ ||
30883f7bac03SJoe Perches			# start or end of block or continuation of declaration
30893f7bac03SJoe Perches		      $sline =~ /^\+\s+(?:$|[\{\}\.\#\"\?\:\(\[])/ ||
30903f7bac03SJoe Perches			# bitfield continuation
30913f7bac03SJoe Perches		      $sline =~ /^\+\s+$Ident\s*:\s*\d+\s*[,;]/ ||
30923f7bac03SJoe Perches			# other possible extensions of declaration lines
30933f7bac03SJoe Perches		      $sline =~ /^\+\s+\(?\s*(?:$Compare|$Assignment|$Operators)/) &&
30943f7bac03SJoe Perches			# indentation of previous and current line are the same
30953f7bac03SJoe Perches		    (($prevline =~ /\+(\s+)\S/) && $sline =~ /^\+$1\S/)) {
3096d752fcc8SJoe Perches			if (WARN("LINE_SPACING",
3097d752fcc8SJoe Perches				 "Missing a blank line after declarations\n" . $hereprev) &&
3098d752fcc8SJoe Perches			    $fix) {
3099f2d7e4d4SJoe Perches				fix_insert_line($fixlinenr, "\+");
3100d752fcc8SJoe Perches			}
31013b617e3bSJoe Perches		}
31023b617e3bSJoe Perches
31035f7ddae6SRaffaele Recalcati# check for spaces at the beginning of a line.
31046b4c5bebSAndy Whitcroft# Exceptions:
31056b4c5bebSAndy Whitcroft#  1) within comments
31066b4c5bebSAndy Whitcroft#  2) indented preprocessor commands
31076b4c5bebSAndy Whitcroft#  3) hanging labels
31083705ce5bSJoe Perches		if ($rawline =~ /^\+ / && $line !~ /^\+ *(?:$;|#|$Ident:)/)  {
31095f7ddae6SRaffaele Recalcati			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
31103705ce5bSJoe Perches			if (WARN("LEADING_SPACE",
31113705ce5bSJoe Perches				 "please, no spaces at the start of a line\n" . $herevet) &&
31123705ce5bSJoe Perches			    $fix) {
3113194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/^\+([ \t]+)/"\+" . tabify($1)/e;
31143705ce5bSJoe Perches			}
31155f7ddae6SRaffaele Recalcati		}
31165f7ddae6SRaffaele Recalcati
3117b9ea10d6SAndy Whitcroft# check we are in a valid C source file if not then ignore this hunk
3118b9ea10d6SAndy Whitcroft		next if ($realfile !~ /\.(h|c)$/);
3119b9ea10d6SAndy Whitcroft
3120032a4c0fSJoe Perches# check indentation of any line with a bare else
3121840080a0SJoe Perches# (but not if it is a multiple line "if (foo) return bar; else return baz;")
3122032a4c0fSJoe Perches# if the previous line is a break or return and is indented 1 tab more...
3123032a4c0fSJoe Perches		if ($sline =~ /^\+([\t]+)(?:}[ \t]*)?else(?:[ \t]*{)?\s*$/) {
3124032a4c0fSJoe Perches			my $tabs = length($1) + 1;
3125840080a0SJoe Perches			if ($prevline =~ /^\+\t{$tabs,$tabs}break\b/ ||
3126840080a0SJoe Perches			    ($prevline =~ /^\+\t{$tabs,$tabs}return\b/ &&
3127840080a0SJoe Perches			     defined $lines[$linenr] &&
3128840080a0SJoe Perches			     $lines[$linenr] !~ /^[ \+]\t{$tabs,$tabs}return/)) {
3129032a4c0fSJoe Perches				WARN("UNNECESSARY_ELSE",
3130032a4c0fSJoe Perches				     "else is not generally useful after a break or return\n" . $hereprev);
3131032a4c0fSJoe Perches			}
3132032a4c0fSJoe Perches		}
3133032a4c0fSJoe Perches
3134c00df19aSJoe Perches# check indentation of a line with a break;
3135c00df19aSJoe Perches# if the previous line is a goto or return and is indented the same # of tabs
3136c00df19aSJoe Perches		if ($sline =~ /^\+([\t]+)break\s*;\s*$/) {
3137c00df19aSJoe Perches			my $tabs = $1;
3138c00df19aSJoe Perches			if ($prevline =~ /^\+$tabs(?:goto|return)\b/) {
3139c00df19aSJoe Perches				WARN("UNNECESSARY_BREAK",
3140c00df19aSJoe Perches				     "break is not useful after a goto or return\n" . $hereprev);
3141c00df19aSJoe Perches			}
3142c00df19aSJoe Perches		}
3143c00df19aSJoe Perches
31441ba8dfd1SKees Cook# discourage the addition of CONFIG_EXPERIMENTAL in #if(def).
31451ba8dfd1SKees Cook		if ($line =~ /^\+\s*\#\s*if.*\bCONFIG_EXPERIMENTAL\b/) {
31461ba8dfd1SKees Cook			WARN("CONFIG_EXPERIMENTAL",
31471ba8dfd1SKees Cook			     "Use of CONFIG_EXPERIMENTAL is deprecated. For alternatives, see https://lkml.org/lkml/2012/10/23/580\n");
31481ba8dfd1SKees Cook		}
31491ba8dfd1SKees Cook
3150c2fdda0dSAndy Whitcroft# check for RCS/CVS revision markers
3151cf655043SAndy Whitcroft		if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) {
3152000d1cc1SJoe Perches			WARN("CVS_KEYWORD",
3153000d1cc1SJoe Perches			     "CVS style keyword markers, these will _not_ be updated\n". $herecurr);
3154c2fdda0dSAndy Whitcroft		}
315522f2a2efSAndy Whitcroft
315642e41c54SMike Frysinger# Blackfin: don't use __builtin_bfin_[cs]sync
315742e41c54SMike Frysinger		if ($line =~ /__builtin_bfin_csync/) {
315842e41c54SMike Frysinger			my $herevet = "$here\n" . cat_vet($line) . "\n";
3159000d1cc1SJoe Perches			ERROR("CSYNC",
3160000d1cc1SJoe Perches			      "use the CSYNC() macro in asm/blackfin.h\n" . $herevet);
316142e41c54SMike Frysinger		}
316242e41c54SMike Frysinger		if ($line =~ /__builtin_bfin_ssync/) {
316342e41c54SMike Frysinger			my $herevet = "$here\n" . cat_vet($line) . "\n";
3164000d1cc1SJoe Perches			ERROR("SSYNC",
3165000d1cc1SJoe Perches			      "use the SSYNC() macro in asm/blackfin.h\n" . $herevet);
316642e41c54SMike Frysinger		}
316742e41c54SMike Frysinger
316856e77d70SJoe Perches# check for old HOTPLUG __dev<foo> section markings
316956e77d70SJoe Perches		if ($line =~ /\b(__dev(init|exit)(data|const|))\b/) {
317056e77d70SJoe Perches			WARN("HOTPLUG_SECTION",
317156e77d70SJoe Perches			     "Using $1 is unnecessary\n" . $herecurr);
317256e77d70SJoe Perches		}
317356e77d70SJoe Perches
31749c0ca6f9SAndy Whitcroft# Check for potential 'bare' types
31752b474a1aSAndy Whitcroft		my ($stat, $cond, $line_nr_next, $remain_next, $off_next,
31762b474a1aSAndy Whitcroft		    $realline_next);
31773e469cdcSAndy Whitcroft#print "LINE<$line>\n";
31783e469cdcSAndy Whitcroft		if ($linenr >= $suppress_statement &&
31791b5539b1SJoe Perches		    $realcnt && $sline =~ /.\s*\S/) {
3180170d3a22SAndy Whitcroft			($stat, $cond, $line_nr_next, $remain_next, $off_next) =
3181f5fe35ddSAndy Whitcroft				ctx_statement_block($linenr, $realcnt, 0);
3182171ae1a4SAndy Whitcroft			$stat =~ s/\n./\n /g;
3183171ae1a4SAndy Whitcroft			$cond =~ s/\n./\n /g;
3184171ae1a4SAndy Whitcroft
31853e469cdcSAndy Whitcroft#print "linenr<$linenr> <$stat>\n";
31863e469cdcSAndy Whitcroft			# If this statement has no statement boundaries within
31873e469cdcSAndy Whitcroft			# it there is no point in retrying a statement scan
31883e469cdcSAndy Whitcroft			# until we hit end of it.
31893e469cdcSAndy Whitcroft			my $frag = $stat; $frag =~ s/;+\s*$//;
31903e469cdcSAndy Whitcroft			if ($frag !~ /(?:{|;)/) {
31913e469cdcSAndy Whitcroft#print "skip<$line_nr_next>\n";
31923e469cdcSAndy Whitcroft				$suppress_statement = $line_nr_next;
31933e469cdcSAndy Whitcroft			}
3194f74bd194SAndy Whitcroft
31952b474a1aSAndy Whitcroft			# Find the real next line.
31962b474a1aSAndy Whitcroft			$realline_next = $line_nr_next;
31972b474a1aSAndy Whitcroft			if (defined $realline_next &&
31982b474a1aSAndy Whitcroft			    (!defined $lines[$realline_next - 1] ||
31992b474a1aSAndy Whitcroft			     substr($lines[$realline_next - 1], $off_next) =~ /^\s*$/)) {
32002b474a1aSAndy Whitcroft				$realline_next++;
32012b474a1aSAndy Whitcroft			}
32022b474a1aSAndy Whitcroft
3203171ae1a4SAndy Whitcroft			my $s = $stat;
3204171ae1a4SAndy Whitcroft			$s =~ s/{.*$//s;
3205cf655043SAndy Whitcroft
3206c2fdda0dSAndy Whitcroft			# Ignore goto labels.
3207171ae1a4SAndy Whitcroft			if ($s =~ /$Ident:\*$/s) {
3208c2fdda0dSAndy Whitcroft
3209c2fdda0dSAndy Whitcroft			# Ignore functions being called
3210171ae1a4SAndy Whitcroft			} elsif ($s =~ /^.\s*$Ident\s*\(/s) {
3211c2fdda0dSAndy Whitcroft
3212463f2864SAndy Whitcroft			} elsif ($s =~ /^.\s*else\b/s) {
3213463f2864SAndy Whitcroft
3214c45dcabdSAndy Whitcroft			# declarations always start with types
3215d2506586SAndy 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) {
3216c45dcabdSAndy Whitcroft				my $type = $1;
3217c45dcabdSAndy Whitcroft				$type =~ s/\s+/ /g;
3218c45dcabdSAndy Whitcroft				possible($type, "A:" . $s);
3219c45dcabdSAndy Whitcroft
32206c72ffaaSAndy Whitcroft			# definitions in global scope can only start with types
3221a6a84062SAndy Whitcroft			} elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b\s*(?!:)/s) {
3222c45dcabdSAndy Whitcroft				possible($1, "B:" . $s);
3223c2fdda0dSAndy Whitcroft			}
32248905a67cSAndy Whitcroft
32256c72ffaaSAndy Whitcroft			# any (foo ... *) is a pointer cast, and foo is a type
322665863862SAndy Whitcroft			while ($s =~ /\(($Ident)(?:\s+$Sparse)*[\s\*]+\s*\)/sg) {
3227c45dcabdSAndy Whitcroft				possible($1, "C:" . $s);
32289c0ca6f9SAndy Whitcroft			}
32298905a67cSAndy Whitcroft
32308905a67cSAndy Whitcroft			# Check for any sort of function declaration.
32318905a67cSAndy Whitcroft			# int foo(something bar, other baz);
32328905a67cSAndy Whitcroft			# void (*store_gdt)(x86_descr_ptr *);
3233171ae1a4SAndy Whitcroft			if ($prev_values eq 'E' && $s =~ /^(.(?:typedef\s*)?(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*(?:\b$Ident|\(\*\s*$Ident\))\s*)\(/s) {
32348905a67cSAndy Whitcroft				my ($name_len) = length($1);
32358905a67cSAndy Whitcroft
3236cf655043SAndy Whitcroft				my $ctx = $s;
3237773647a0SAndy Whitcroft				substr($ctx, 0, $name_len + 1, '');
32388905a67cSAndy Whitcroft				$ctx =~ s/\)[^\)]*$//;
3239cf655043SAndy Whitcroft
32408905a67cSAndy Whitcroft				for my $arg (split(/\s*,\s*/, $ctx)) {
3241c45dcabdSAndy Whitcroft					if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$/s) {
32428905a67cSAndy Whitcroft
3243c45dcabdSAndy Whitcroft						possible($1, "D:" . $s);
32448905a67cSAndy Whitcroft					}
32458905a67cSAndy Whitcroft				}
32468905a67cSAndy Whitcroft			}
32478905a67cSAndy Whitcroft
32489c0ca6f9SAndy Whitcroft		}
32499c0ca6f9SAndy Whitcroft
325000df344fSAndy Whitcroft#
325100df344fSAndy Whitcroft# Checks which may be anchored in the context.
325200df344fSAndy Whitcroft#
325300df344fSAndy Whitcroft
325400df344fSAndy Whitcroft# Check for switch () and associated case and default
325500df344fSAndy Whitcroft# statements should be at the same indent.
325600df344fSAndy Whitcroft		if ($line=~/\bswitch\s*\(.*\)/) {
325700df344fSAndy Whitcroft			my $err = '';
325800df344fSAndy Whitcroft			my $sep = '';
325900df344fSAndy Whitcroft			my @ctx = ctx_block_outer($linenr, $realcnt);
326000df344fSAndy Whitcroft			shift(@ctx);
326100df344fSAndy Whitcroft			for my $ctx (@ctx) {
326200df344fSAndy Whitcroft				my ($clen, $cindent) = line_stats($ctx);
326300df344fSAndy Whitcroft				if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
326400df344fSAndy Whitcroft							$indent != $cindent) {
326500df344fSAndy Whitcroft					$err .= "$sep$ctx\n";
326600df344fSAndy Whitcroft					$sep = '';
326700df344fSAndy Whitcroft				} else {
326800df344fSAndy Whitcroft					$sep = "[...]\n";
326900df344fSAndy Whitcroft				}
327000df344fSAndy Whitcroft			}
327100df344fSAndy Whitcroft			if ($err ne '') {
3272000d1cc1SJoe Perches				ERROR("SWITCH_CASE_INDENT_LEVEL",
3273000d1cc1SJoe Perches				      "switch and case should be at the same indent\n$hereline$err");
3274de7d4f0eSAndy Whitcroft			}
3275de7d4f0eSAndy Whitcroft		}
3276de7d4f0eSAndy Whitcroft
3277de7d4f0eSAndy Whitcroft# if/while/etc brace do not go on next line, unless defining a do while loop,
3278de7d4f0eSAndy Whitcroft# or if that brace on the next line is for something else
32790fe3dc2bSJoe Perches		if ($line =~ /(.*)\b((?:if|while|for|switch|(?:[a-z_]+|)for_each[a-z_]+)\s*\(|do\b|else\b)/ && $line !~ /^.\s*\#/) {
3280773647a0SAndy Whitcroft			my $pre_ctx = "$1$2";
3281773647a0SAndy Whitcroft
32829c0ca6f9SAndy Whitcroft			my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0);
32838eef05ddSJoe Perches
32848eef05ddSJoe Perches			if ($line =~ /^\+\t{6,}/) {
32858eef05ddSJoe Perches				WARN("DEEP_INDENTATION",
32868eef05ddSJoe Perches				     "Too many leading tabs - consider code refactoring\n" . $herecurr);
32878eef05ddSJoe Perches			}
32888eef05ddSJoe Perches
3289de7d4f0eSAndy Whitcroft			my $ctx_cnt = $realcnt - $#ctx - 1;
3290de7d4f0eSAndy Whitcroft			my $ctx = join("\n", @ctx);
3291de7d4f0eSAndy Whitcroft
3292548596d5SAndy Whitcroft			my $ctx_ln = $linenr;
3293548596d5SAndy Whitcroft			my $ctx_skip = $realcnt;
3294de7d4f0eSAndy Whitcroft
3295548596d5SAndy Whitcroft			while ($ctx_skip > $ctx_cnt || ($ctx_skip == $ctx_cnt &&
3296548596d5SAndy Whitcroft					defined $lines[$ctx_ln - 1] &&
3297548596d5SAndy Whitcroft					$lines[$ctx_ln - 1] =~ /^-/)) {
3298548596d5SAndy Whitcroft				##print "SKIP<$ctx_skip> CNT<$ctx_cnt>\n";
3299548596d5SAndy Whitcroft				$ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/);
3300773647a0SAndy Whitcroft				$ctx_ln++;
3301773647a0SAndy Whitcroft			}
3302548596d5SAndy Whitcroft
330353210168SAndy Whitcroft			#print "realcnt<$realcnt> ctx_cnt<$ctx_cnt>\n";
330453210168SAndy Whitcroft			#print "pre<$pre_ctx>\nline<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>\n";
3305773647a0SAndy Whitcroft
3306773647a0SAndy Whitcroft			if ($ctx !~ /{\s*/ && defined($lines[$ctx_ln - 1]) && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
3307000d1cc1SJoe Perches				ERROR("OPEN_BRACE",
3308000d1cc1SJoe Perches				      "that open brace { should be on the previous line\n" .
330901464f30SAndy Whitcroft					"$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
331000df344fSAndy Whitcroft			}
3311773647a0SAndy Whitcroft			if ($level == 0 && $pre_ctx !~ /}\s*while\s*\($/ &&
3312773647a0SAndy Whitcroft			    $ctx =~ /\)\s*\;\s*$/ &&
3313773647a0SAndy Whitcroft			    defined $lines[$ctx_ln - 1])
3314773647a0SAndy Whitcroft			{
33159c0ca6f9SAndy Whitcroft				my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
33169c0ca6f9SAndy Whitcroft				if ($nindent > $indent) {
3317000d1cc1SJoe Perches					WARN("TRAILING_SEMICOLON",
3318000d1cc1SJoe Perches					     "trailing semicolon indicates no statements, indent implies otherwise\n" .
331901464f30SAndy Whitcroft						"$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
33209c0ca6f9SAndy Whitcroft				}
33219c0ca6f9SAndy Whitcroft			}
332200df344fSAndy Whitcroft		}
332300df344fSAndy Whitcroft
33244d001e4dSAndy Whitcroft# Check relative indent for conditionals and blocks.
33250fe3dc2bSJoe Perches		if ($line =~ /\b(?:(?:if|while|for|(?:[a-z_]+|)for_each[a-z_]+)\s*\(|do\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) {
33263e469cdcSAndy Whitcroft			($stat, $cond, $line_nr_next, $remain_next, $off_next) =
33273e469cdcSAndy Whitcroft				ctx_statement_block($linenr, $realcnt, 0)
33283e469cdcSAndy Whitcroft					if (!defined $stat);
33294d001e4dSAndy Whitcroft			my ($s, $c) = ($stat, $cond);
33304d001e4dSAndy Whitcroft
33314d001e4dSAndy Whitcroft			substr($s, 0, length($c), '');
33324d001e4dSAndy Whitcroft
33339f5af480SJoe Perches			# remove inline comments
33349f5af480SJoe Perches			$s =~ s/$;/ /g;
33359f5af480SJoe Perches			$c =~ s/$;/ /g;
33364d001e4dSAndy Whitcroft
33374d001e4dSAndy Whitcroft			# Find out how long the conditional actually is.
33386f779c18SAndy Whitcroft			my @newlines = ($c =~ /\n/gs);
33396f779c18SAndy Whitcroft			my $cond_lines = 1 + $#newlines;
33404d001e4dSAndy Whitcroft
33419f5af480SJoe Perches			# Make sure we remove the line prefixes as we have
33429f5af480SJoe Perches			# none on the first line, and are going to readd them
33439f5af480SJoe Perches			# where necessary.
33449f5af480SJoe Perches			$s =~ s/\n./\n/gs;
33459f5af480SJoe Perches			while ($s =~ /\n\s+\\\n/) {
33469f5af480SJoe Perches				$cond_lines += $s =~ s/\n\s+\\\n/\n/g;
33479f5af480SJoe Perches			}
33489f5af480SJoe Perches
33494d001e4dSAndy Whitcroft			# We want to check the first line inside the block
33504d001e4dSAndy Whitcroft			# starting at the end of the conditional, so remove:
33514d001e4dSAndy Whitcroft			#  1) any blank line termination
33524d001e4dSAndy Whitcroft			#  2) any opening brace { on end of the line
33534d001e4dSAndy Whitcroft			#  3) any do (...) {
33544d001e4dSAndy Whitcroft			my $continuation = 0;
33554d001e4dSAndy Whitcroft			my $check = 0;
33564d001e4dSAndy Whitcroft			$s =~ s/^.*\bdo\b//;
33574d001e4dSAndy Whitcroft			$s =~ s/^\s*{//;
33584d001e4dSAndy Whitcroft			if ($s =~ s/^\s*\\//) {
33594d001e4dSAndy Whitcroft				$continuation = 1;
33604d001e4dSAndy Whitcroft			}
33619bd49efeSAndy Whitcroft			if ($s =~ s/^\s*?\n//) {
33624d001e4dSAndy Whitcroft				$check = 1;
33634d001e4dSAndy Whitcroft				$cond_lines++;
33644d001e4dSAndy Whitcroft			}
33654d001e4dSAndy Whitcroft
33664d001e4dSAndy Whitcroft			# Also ignore a loop construct at the end of a
33674d001e4dSAndy Whitcroft			# preprocessor statement.
33684d001e4dSAndy Whitcroft			if (($prevline =~ /^.\s*#\s*define\s/ ||
33694d001e4dSAndy Whitcroft			    $prevline =~ /\\\s*$/) && $continuation == 0) {
33704d001e4dSAndy Whitcroft				$check = 0;
33714d001e4dSAndy Whitcroft			}
33724d001e4dSAndy Whitcroft
33739bd49efeSAndy Whitcroft			my $cond_ptr = -1;
3374740504c6SAndy Whitcroft			$continuation = 0;
33759bd49efeSAndy Whitcroft			while ($cond_ptr != $cond_lines) {
33769bd49efeSAndy Whitcroft				$cond_ptr = $cond_lines;
33774d001e4dSAndy Whitcroft
3378f16fa28fSAndy Whitcroft				# If we see an #else/#elif then the code
3379f16fa28fSAndy Whitcroft				# is not linear.
3380f16fa28fSAndy Whitcroft				if ($s =~ /^\s*\#\s*(?:else|elif)/) {
3381f16fa28fSAndy Whitcroft					$check = 0;
3382f16fa28fSAndy Whitcroft				}
3383f16fa28fSAndy Whitcroft
33849bd49efeSAndy Whitcroft				# Ignore:
33859bd49efeSAndy Whitcroft				#  1) blank lines, they should be at 0,
33869bd49efeSAndy Whitcroft				#  2) preprocessor lines, and
33879bd49efeSAndy Whitcroft				#  3) labels.
3388740504c6SAndy Whitcroft				if ($continuation ||
3389740504c6SAndy Whitcroft				    $s =~ /^\s*?\n/ ||
33909bd49efeSAndy Whitcroft				    $s =~ /^\s*#\s*?/ ||
33919bd49efeSAndy Whitcroft				    $s =~ /^\s*$Ident\s*:/) {
3392740504c6SAndy Whitcroft					$continuation = ($s =~ /^.*?\\\n/) ? 1 : 0;
339330dad6ebSAndy Whitcroft					if ($s =~ s/^.*?\n//) {
33949bd49efeSAndy Whitcroft						$cond_lines++;
33959bd49efeSAndy Whitcroft					}
33964d001e4dSAndy Whitcroft				}
339730dad6ebSAndy Whitcroft			}
33984d001e4dSAndy Whitcroft
33994d001e4dSAndy Whitcroft			my (undef, $sindent) = line_stats("+" . $s);
34004d001e4dSAndy Whitcroft			my $stat_real = raw_line($linenr, $cond_lines);
34014d001e4dSAndy Whitcroft
34024d001e4dSAndy Whitcroft			# Check if either of these lines are modified, else
34034d001e4dSAndy Whitcroft			# this is not this patch's fault.
34044d001e4dSAndy Whitcroft			if (!defined($stat_real) ||
34054d001e4dSAndy Whitcroft			    $stat !~ /^\+/ && $stat_real !~ /^\+/) {
34064d001e4dSAndy Whitcroft				$check = 0;
34074d001e4dSAndy Whitcroft			}
34084d001e4dSAndy Whitcroft			if (defined($stat_real) && $cond_lines > 1) {
34094d001e4dSAndy Whitcroft				$stat_real = "[...]\n$stat_real";
34104d001e4dSAndy Whitcroft			}
34114d001e4dSAndy Whitcroft
34129bd49efeSAndy 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";
34134d001e4dSAndy Whitcroft
34149f5af480SJoe Perches			if ($check && $s ne '' &&
34159f5af480SJoe Perches			    (($sindent % 8) != 0 ||
34169f5af480SJoe Perches			     ($sindent < $indent) ||
34179f5af480SJoe Perches			     ($sindent > $indent + 8))) {
3418000d1cc1SJoe Perches				WARN("SUSPECT_CODE_INDENT",
3419000d1cc1SJoe Perches				     "suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n");
34204d001e4dSAndy Whitcroft			}
34214d001e4dSAndy Whitcroft		}
34224d001e4dSAndy Whitcroft
34236c72ffaaSAndy Whitcroft		# Track the 'values' across context and added lines.
34246c72ffaaSAndy Whitcroft		my $opline = $line; $opline =~ s/^./ /;
34251f65f947SAndy Whitcroft		my ($curr_values, $curr_vars) =
34261f65f947SAndy Whitcroft				annotate_values($opline . "\n", $prev_values);
34276c72ffaaSAndy Whitcroft		$curr_values = $prev_values . $curr_values;
3428c2fdda0dSAndy Whitcroft		if ($dbg_values) {
3429c2fdda0dSAndy Whitcroft			my $outline = $opline; $outline =~ s/\t/ /g;
3430cf655043SAndy Whitcroft			print "$linenr > .$outline\n";
3431cf655043SAndy Whitcroft			print "$linenr > $curr_values\n";
34321f65f947SAndy Whitcroft			print "$linenr >  $curr_vars\n";
3433c2fdda0dSAndy Whitcroft		}
34346c72ffaaSAndy Whitcroft		$prev_values = substr($curr_values, -1);
34356c72ffaaSAndy Whitcroft
343600df344fSAndy Whitcroft#ignore lines not being added
34373705ce5bSJoe Perches		next if ($line =~ /^[^\+]/);
343800df344fSAndy Whitcroft
3439a1ce18e4SJoe Perches# check for declarations of signed or unsigned without int
3440c8447115SJoe Perches		while ($line =~ m{\b($Declare)\s*(?!char\b|short\b|int\b|long\b)\s*($Ident)?\s*[=,;\[\)\(]}g) {
3441a1ce18e4SJoe Perches			my $type = $1;
3442a1ce18e4SJoe Perches			my $var = $2;
3443207a8e84SJoe Perches			$var = "" if (!defined $var);
3444207a8e84SJoe Perches			if ($type =~ /^(?:(?:$Storage|$Inline|$Attribute)\s+)*((?:un)?signed)((?:\s*\*)*)\s*$/) {
3445a1ce18e4SJoe Perches				my $sign = $1;
3446a1ce18e4SJoe Perches				my $pointer = $2;
3447a1ce18e4SJoe Perches
3448a1ce18e4SJoe Perches				$pointer = "" if (!defined $pointer);
3449a1ce18e4SJoe Perches
3450a1ce18e4SJoe Perches				if (WARN("UNSPECIFIED_INT",
3451a1ce18e4SJoe Perches					 "Prefer '" . trim($sign) . " int" . rtrim($pointer) . "' to bare use of '$sign" . rtrim($pointer) . "'\n" . $herecurr) &&
3452a1ce18e4SJoe Perches				    $fix) {
3453a1ce18e4SJoe Perches					my $decl = trim($sign) . " int ";
3454207a8e84SJoe Perches					my $comp_pointer = $pointer;
3455207a8e84SJoe Perches					$comp_pointer =~ s/\s//g;
3456207a8e84SJoe Perches					$decl .= $comp_pointer;
3457207a8e84SJoe Perches					$decl = rtrim($decl) if ($var eq "");
3458207a8e84SJoe Perches					$fixed[$fixlinenr] =~ s@\b$sign\s*\Q$pointer\E\s*$var\b@$decl$var@;
3459a1ce18e4SJoe Perches				}
3460a1ce18e4SJoe Perches			}
3461a1ce18e4SJoe Perches		}
3462a1ce18e4SJoe Perches
3463653d4876SAndy Whitcroft# TEST: allow direct testing of the type matcher.
34647429c690SAndy Whitcroft		if ($dbg_type) {
34657429c690SAndy Whitcroft			if ($line =~ /^.\s*$Declare\s*$/) {
3466000d1cc1SJoe Perches				ERROR("TEST_TYPE",
3467000d1cc1SJoe Perches				      "TEST: is type\n" . $herecurr);
34687429c690SAndy Whitcroft			} elsif ($dbg_type > 1 && $line =~ /^.+($Declare)/) {
3469000d1cc1SJoe Perches				ERROR("TEST_NOT_TYPE",
3470000d1cc1SJoe Perches				      "TEST: is not type ($1 is)\n". $herecurr);
34717429c690SAndy Whitcroft			}
3472653d4876SAndy Whitcroft			next;
3473653d4876SAndy Whitcroft		}
3474a1ef277eSAndy Whitcroft# TEST: allow direct testing of the attribute matcher.
3475a1ef277eSAndy Whitcroft		if ($dbg_attr) {
34769360b0e5SAndy Whitcroft			if ($line =~ /^.\s*$Modifier\s*$/) {
3477000d1cc1SJoe Perches				ERROR("TEST_ATTR",
3478000d1cc1SJoe Perches				      "TEST: is attr\n" . $herecurr);
34799360b0e5SAndy Whitcroft			} elsif ($dbg_attr > 1 && $line =~ /^.+($Modifier)/) {
3480000d1cc1SJoe Perches				ERROR("TEST_NOT_ATTR",
3481000d1cc1SJoe Perches				      "TEST: is not attr ($1 is)\n". $herecurr);
3482a1ef277eSAndy Whitcroft			}
3483a1ef277eSAndy Whitcroft			next;
3484a1ef277eSAndy Whitcroft		}
3485653d4876SAndy Whitcroft
3486f0a594c1SAndy Whitcroft# check for initialisation to aggregates open brace on the next line
348799423c20SAndy Whitcroft		if ($line =~ /^.\s*{/ &&
348899423c20SAndy Whitcroft		    $prevline =~ /(?:^|[^=])=\s*$/) {
3489d752fcc8SJoe Perches			if (ERROR("OPEN_BRACE",
3490d752fcc8SJoe Perches				  "that open brace { should be on the previous line\n" . $hereprev) &&
3491f2d7e4d4SJoe Perches			    $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
3492f2d7e4d4SJoe Perches				fix_delete_line($fixlinenr - 1, $prevrawline);
3493f2d7e4d4SJoe Perches				fix_delete_line($fixlinenr, $rawline);
3494d752fcc8SJoe Perches				my $fixedline = $prevrawline;
3495d752fcc8SJoe Perches				$fixedline =~ s/\s*=\s*$/ = {/;
3496f2d7e4d4SJoe Perches				fix_insert_line($fixlinenr, $fixedline);
3497d752fcc8SJoe Perches				$fixedline = $line;
3498d752fcc8SJoe Perches				$fixedline =~ s/^(.\s*){\s*/$1/;
3499f2d7e4d4SJoe Perches				fix_insert_line($fixlinenr, $fixedline);
3500d752fcc8SJoe Perches			}
3501f0a594c1SAndy Whitcroft		}
3502f0a594c1SAndy Whitcroft
350300df344fSAndy Whitcroft#
350400df344fSAndy Whitcroft# Checks which are anchored on the added line.
350500df344fSAndy Whitcroft#
350600df344fSAndy Whitcroft
3507653d4876SAndy Whitcroft# check for malformed paths in #include statements (uses RAW line)
3508c45dcabdSAndy Whitcroft		if ($rawline =~ m{^.\s*\#\s*include\s+[<"](.*)[">]}) {
3509653d4876SAndy Whitcroft			my $path = $1;
3510653d4876SAndy Whitcroft			if ($path =~ m{//}) {
3511000d1cc1SJoe Perches				ERROR("MALFORMED_INCLUDE",
3512495e9d84SJoe Perches				      "malformed #include filename\n" . $herecurr);
3513495e9d84SJoe Perches			}
3514495e9d84SJoe Perches			if ($path =~ "^uapi/" && $realfile =~ m@\binclude/uapi/@) {
3515495e9d84SJoe Perches				ERROR("UAPI_INCLUDE",
3516495e9d84SJoe Perches				      "No #include in ...include/uapi/... should use a uapi/ path prefix\n" . $herecurr);
3517653d4876SAndy Whitcroft			}
3518653d4876SAndy Whitcroft		}
3519653d4876SAndy Whitcroft
352000df344fSAndy Whitcroft# no C99 // comments
352100df344fSAndy Whitcroft		if ($line =~ m{//}) {
35223705ce5bSJoe Perches			if (ERROR("C99_COMMENTS",
35233705ce5bSJoe Perches				  "do not use C99 // comments\n" . $herecurr) &&
35243705ce5bSJoe Perches			    $fix) {
3525194f66fcSJoe Perches				my $line = $fixed[$fixlinenr];
35263705ce5bSJoe Perches				if ($line =~ /\/\/(.*)$/) {
35273705ce5bSJoe Perches					my $comment = trim($1);
3528194f66fcSJoe Perches					$fixed[$fixlinenr] =~ s@\/\/(.*)$@/\* $comment \*/@;
35293705ce5bSJoe Perches				}
35303705ce5bSJoe Perches			}
353100df344fSAndy Whitcroft		}
353200df344fSAndy Whitcroft		# Remove C99 comments.
35330a920b5bSAndy Whitcroft		$line =~ s@//.*@@;
35346c72ffaaSAndy Whitcroft		$opline =~ s@//.*@@;
35350a920b5bSAndy Whitcroft
35362b474a1aSAndy Whitcroft# EXPORT_SYMBOL should immediately follow the thing it is exporting, consider
35372b474a1aSAndy Whitcroft# the whole statement.
35382b474a1aSAndy Whitcroft#print "APW <$lines[$realline_next - 1]>\n";
35392b474a1aSAndy Whitcroft		if (defined $realline_next &&
35402b474a1aSAndy Whitcroft		    exists $lines[$realline_next - 1] &&
35412b474a1aSAndy Whitcroft		    !defined $suppress_export{$realline_next} &&
35422b474a1aSAndy Whitcroft		    ($lines[$realline_next - 1] =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
35432b474a1aSAndy Whitcroft		     $lines[$realline_next - 1] =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
35443cbf62dfSAndy Whitcroft			# Handle definitions which produce identifiers with
35453cbf62dfSAndy Whitcroft			# a prefix:
35463cbf62dfSAndy Whitcroft			#   XXX(foo);
35473cbf62dfSAndy Whitcroft			#   EXPORT_SYMBOL(something_foo);
3548653d4876SAndy Whitcroft			my $name = $1;
354987a53877SAndy Whitcroft			if ($stat =~ /^(?:.\s*}\s*\n)?.([A-Z_]+)\s*\(\s*($Ident)/ &&
35503cbf62dfSAndy Whitcroft			    $name =~ /^${Ident}_$2/) {
35513cbf62dfSAndy Whitcroft#print "FOO C name<$name>\n";
35523cbf62dfSAndy Whitcroft				$suppress_export{$realline_next} = 1;
35533cbf62dfSAndy Whitcroft
35543cbf62dfSAndy Whitcroft			} elsif ($stat !~ /(?:
35552b474a1aSAndy Whitcroft				\n.}\s*$|
355648012058SAndy Whitcroft				^.DEFINE_$Ident\(\Q$name\E\)|
355748012058SAndy Whitcroft				^.DECLARE_$Ident\(\Q$name\E\)|
355848012058SAndy Whitcroft				^.LIST_HEAD\(\Q$name\E\)|
35592b474a1aSAndy Whitcroft				^.(?:$Storage\s+)?$Type\s*\(\s*\*\s*\Q$name\E\s*\)\s*\(|
35602b474a1aSAndy Whitcroft				\b\Q$name\E(?:\s+$Attribute)*\s*(?:;|=|\[|\()
356148012058SAndy Whitcroft			    )/x) {
35622b474a1aSAndy Whitcroft#print "FOO A<$lines[$realline_next - 1]> stat<$stat> name<$name>\n";
35632b474a1aSAndy Whitcroft				$suppress_export{$realline_next} = 2;
35642b474a1aSAndy Whitcroft			} else {
35652b474a1aSAndy Whitcroft				$suppress_export{$realline_next} = 1;
35660a920b5bSAndy Whitcroft			}
35670a920b5bSAndy Whitcroft		}
35682b474a1aSAndy Whitcroft		if (!defined $suppress_export{$linenr} &&
35692b474a1aSAndy Whitcroft		    $prevline =~ /^.\s*$/ &&
35702b474a1aSAndy Whitcroft		    ($line =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
35712b474a1aSAndy Whitcroft		     $line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
35722b474a1aSAndy Whitcroft#print "FOO B <$lines[$linenr - 1]>\n";
35732b474a1aSAndy Whitcroft			$suppress_export{$linenr} = 2;
35742b474a1aSAndy Whitcroft		}
35752b474a1aSAndy Whitcroft		if (defined $suppress_export{$linenr} &&
35762b474a1aSAndy Whitcroft		    $suppress_export{$linenr} == 2) {
3577000d1cc1SJoe Perches			WARN("EXPORT_SYMBOL",
3578000d1cc1SJoe Perches			     "EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
35792b474a1aSAndy Whitcroft		}
35800a920b5bSAndy Whitcroft
35815150bda4SJoe Eloff# check for global initialisers.
35826d32f7a3SJoe Perches		if ($line =~ /^\+$Type\s*$Ident(?:\s+$Modifier)*\s*=\s*($zero_initializer)\s*;/) {
3583d5e616fcSJoe Perches			if (ERROR("GLOBAL_INITIALISERS",
35846d32f7a3SJoe Perches				  "do not initialise globals to $1\n" . $herecurr) &&
3585d5e616fcSJoe Perches			    $fix) {
35866d32f7a3SJoe Perches				$fixed[$fixlinenr] =~ s/(^.$Type\s*$Ident(?:\s+$Modifier)*)\s*=\s*$zero_initializer\s*;/$1;/;
3587d5e616fcSJoe Perches			}
3588f0a594c1SAndy Whitcroft		}
35890a920b5bSAndy Whitcroft# check for static initialisers.
35906d32f7a3SJoe Perches		if ($line =~ /^\+.*\bstatic\s.*=\s*($zero_initializer)\s*;/) {
3591d5e616fcSJoe Perches			if (ERROR("INITIALISED_STATIC",
35926d32f7a3SJoe Perches				  "do not initialise statics to $1\n" .
3593d5e616fcSJoe Perches				      $herecurr) &&
3594d5e616fcSJoe Perches			    $fix) {
35956d32f7a3SJoe Perches				$fixed[$fixlinenr] =~ s/(\bstatic\s.*?)\s*=\s*$zero_initializer\s*;/$1;/;
3596d5e616fcSJoe Perches			}
35970a920b5bSAndy Whitcroft		}
35980a920b5bSAndy Whitcroft
35991813087dSJoe Perches# check for misordered declarations of char/short/int/long with signed/unsigned
36001813087dSJoe Perches		while ($sline =~ m{(\b$TypeMisordered\b)}g) {
36011813087dSJoe Perches			my $tmp = trim($1);
36021813087dSJoe Perches			WARN("MISORDERED_TYPE",
36031813087dSJoe Perches			     "type '$tmp' should be specified in [[un]signed] [short|int|long|long long] order\n" . $herecurr);
36041813087dSJoe Perches		}
36051813087dSJoe Perches
3606cb710ecaSJoe Perches# check for static const char * arrays.
3607cb710ecaSJoe Perches		if ($line =~ /\bstatic\s+const\s+char\s*\*\s*(\w+)\s*\[\s*\]\s*=\s*/) {
3608000d1cc1SJoe Perches			WARN("STATIC_CONST_CHAR_ARRAY",
3609000d1cc1SJoe Perches			     "static const char * array should probably be static const char * const\n" .
3610cb710ecaSJoe Perches				$herecurr);
3611cb710ecaSJoe Perches               }
3612cb710ecaSJoe Perches
3613cb710ecaSJoe Perches# check for static char foo[] = "bar" declarations.
3614cb710ecaSJoe Perches		if ($line =~ /\bstatic\s+char\s+(\w+)\s*\[\s*\]\s*=\s*"/) {
3615000d1cc1SJoe Perches			WARN("STATIC_CONST_CHAR_ARRAY",
3616000d1cc1SJoe Perches			     "static char array declaration should probably be static const char\n" .
3617cb710ecaSJoe Perches				$herecurr);
3618cb710ecaSJoe Perches               }
3619cb710ecaSJoe Perches
3620ab7e23f3SJoe Perches# check for const <foo> const where <foo> is not a pointer or array type
3621ab7e23f3SJoe Perches		if ($sline =~ /\bconst\s+($BasicType)\s+const\b/) {
3622ab7e23f3SJoe Perches			my $found = $1;
3623ab7e23f3SJoe Perches			if ($sline =~ /\bconst\s+\Q$found\E\s+const\b\s*\*/) {
3624ab7e23f3SJoe Perches				WARN("CONST_CONST",
3625ab7e23f3SJoe Perches				     "'const $found const *' should probably be 'const $found * const'\n" . $herecurr);
3626ab7e23f3SJoe Perches			} elsif ($sline !~ /\bconst\s+\Q$found\E\s+const\s+\w+\s*\[/) {
3627ab7e23f3SJoe Perches				WARN("CONST_CONST",
3628ab7e23f3SJoe Perches				     "'const $found const' should probably be 'const $found'\n" . $herecurr);
3629ab7e23f3SJoe Perches			}
3630ab7e23f3SJoe Perches		}
3631ab7e23f3SJoe Perches
36329b0fa60dSJoe Perches# check for non-global char *foo[] = {"bar", ...} declarations.
36339b0fa60dSJoe Perches		if ($line =~ /^.\s+(?:static\s+|const\s+)?char\s+\*\s*\w+\s*\[\s*\]\s*=\s*\{/) {
36349b0fa60dSJoe Perches			WARN("STATIC_CONST_CHAR_ARRAY",
36359b0fa60dSJoe Perches			     "char * array declaration might be better as static const\n" .
36369b0fa60dSJoe Perches				$herecurr);
36379b0fa60dSJoe Perches               }
36389b0fa60dSJoe Perches
3639b598b670SJoe Perches# check for sizeof(foo)/sizeof(foo[0]) that could be ARRAY_SIZE(foo)
3640b598b670SJoe Perches		if ($line =~ m@\bsizeof\s*\(\s*($Lval)\s*\)@) {
3641b598b670SJoe Perches			my $array = $1;
3642b598b670SJoe 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*\))@) {
3643b598b670SJoe Perches				my $array_div = $1;
3644b598b670SJoe Perches				if (WARN("ARRAY_SIZE",
3645b598b670SJoe Perches					 "Prefer ARRAY_SIZE($array)\n" . $herecurr) &&
3646b598b670SJoe Perches				    $fix) {
3647b598b670SJoe Perches					$fixed[$fixlinenr] =~ s/\Q$array_div\E/ARRAY_SIZE($array)/;
3648b598b670SJoe Perches				}
3649b598b670SJoe Perches			}
3650b598b670SJoe Perches		}
3651b598b670SJoe Perches
3652b36190c5SJoe Perches# check for function declarations without arguments like "int foo()"
3653b36190c5SJoe Perches		if ($line =~ /(\b$Type\s+$Ident)\s*\(\s*\)/) {
3654b36190c5SJoe Perches			if (ERROR("FUNCTION_WITHOUT_ARGS",
3655b36190c5SJoe Perches				  "Bad function definition - $1() should probably be $1(void)\n" . $herecurr) &&
3656b36190c5SJoe Perches			    $fix) {
3657194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/(\b($Type)\s+($Ident))\s*\(\s*\)/$2 $3(void)/;
3658b36190c5SJoe Perches			}
3659b36190c5SJoe Perches		}
3660b36190c5SJoe Perches
3661653d4876SAndy Whitcroft# check for new typedefs, only function parameters and sparse annotations
3662653d4876SAndy Whitcroft# make sense.
3663653d4876SAndy Whitcroft		if ($line =~ /\btypedef\s/ &&
36648054576dSAndy Whitcroft		    $line !~ /\btypedef\s+$Type\s*\(\s*\*?$Ident\s*\)\s*\(/ &&
3665c45dcabdSAndy Whitcroft		    $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ &&
36668ed22cadSAndy Whitcroft		    $line !~ /\b$typeTypedefs\b/ &&
3667653d4876SAndy Whitcroft		    $line !~ /\b__bitwise(?:__|)\b/) {
3668000d1cc1SJoe Perches			WARN("NEW_TYPEDEFS",
3669000d1cc1SJoe Perches			     "do not add new typedefs\n" . $herecurr);
36700a920b5bSAndy Whitcroft		}
36710a920b5bSAndy Whitcroft
36720a920b5bSAndy Whitcroft# * goes on variable not on type
367365863862SAndy Whitcroft		# (char*[ const])
3674bfcb2cc7SAndy Whitcroft		while ($line =~ m{(\($NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)\))}g) {
3675bfcb2cc7SAndy Whitcroft			#print "AA<$1>\n";
36763705ce5bSJoe Perches			my ($ident, $from, $to) = ($1, $2, $2);
3677d8aaf121SAndy Whitcroft
367865863862SAndy Whitcroft			# Should start with a space.
367965863862SAndy Whitcroft			$to =~ s/^(\S)/ $1/;
368065863862SAndy Whitcroft			# Should not end with a space.
368165863862SAndy Whitcroft			$to =~ s/\s+$//;
368265863862SAndy Whitcroft			# '*'s should not have spaces between.
3683f9a0b3d1SAndy Whitcroft			while ($to =~ s/\*\s+\*/\*\*/) {
368465863862SAndy Whitcroft			}
3685d8aaf121SAndy Whitcroft
36863705ce5bSJoe Perches##			print "1: from<$from> to<$to> ident<$ident>\n";
368765863862SAndy Whitcroft			if ($from ne $to) {
36883705ce5bSJoe Perches				if (ERROR("POINTER_LOCATION",
36893705ce5bSJoe Perches					  "\"(foo$from)\" should be \"(foo$to)\"\n" .  $herecurr) &&
36903705ce5bSJoe Perches				    $fix) {
36913705ce5bSJoe Perches					my $sub_from = $ident;
36923705ce5bSJoe Perches					my $sub_to = $ident;
36933705ce5bSJoe Perches					$sub_to =~ s/\Q$from\E/$to/;
3694194f66fcSJoe Perches					$fixed[$fixlinenr] =~
36953705ce5bSJoe Perches					    s@\Q$sub_from\E@$sub_to@;
36963705ce5bSJoe Perches				}
369765863862SAndy Whitcroft			}
3698bfcb2cc7SAndy Whitcroft		}
3699bfcb2cc7SAndy Whitcroft		while ($line =~ m{(\b$NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)($Ident))}g) {
3700bfcb2cc7SAndy Whitcroft			#print "BB<$1>\n";
37013705ce5bSJoe Perches			my ($match, $from, $to, $ident) = ($1, $2, $2, $3);
3702d8aaf121SAndy Whitcroft
370365863862SAndy Whitcroft			# Should start with a space.
370465863862SAndy Whitcroft			$to =~ s/^(\S)/ $1/;
370565863862SAndy Whitcroft			# Should not end with a space.
370665863862SAndy Whitcroft			$to =~ s/\s+$//;
370765863862SAndy Whitcroft			# '*'s should not have spaces between.
3708f9a0b3d1SAndy Whitcroft			while ($to =~ s/\*\s+\*/\*\*/) {
370965863862SAndy Whitcroft			}
371065863862SAndy Whitcroft			# Modifiers should have spaces.
371165863862SAndy Whitcroft			$to =~ s/(\b$Modifier$)/$1 /;
371265863862SAndy Whitcroft
37133705ce5bSJoe Perches##			print "2: from<$from> to<$to> ident<$ident>\n";
3714667026e7SAndy Whitcroft			if ($from ne $to && $ident !~ /^$Modifier$/) {
37153705ce5bSJoe Perches				if (ERROR("POINTER_LOCATION",
37163705ce5bSJoe Perches					  "\"foo${from}bar\" should be \"foo${to}bar\"\n" .  $herecurr) &&
37173705ce5bSJoe Perches				    $fix) {
37183705ce5bSJoe Perches
37193705ce5bSJoe Perches					my $sub_from = $match;
37203705ce5bSJoe Perches					my $sub_to = $match;
37213705ce5bSJoe Perches					$sub_to =~ s/\Q$from\E/$to/;
3722194f66fcSJoe Perches					$fixed[$fixlinenr] =~
37233705ce5bSJoe Perches					    s@\Q$sub_from\E@$sub_to@;
37243705ce5bSJoe Perches				}
372565863862SAndy Whitcroft			}
37260a920b5bSAndy Whitcroft		}
37270a920b5bSAndy Whitcroft
37289d3e3c70SJoe Perches# avoid BUG() or BUG_ON()
37299d3e3c70SJoe Perches		if ($line =~ /\b(?:BUG|BUG_ON)\b/) {
37309d3e3c70SJoe Perches			my $msg_type = \&WARN;
37319d3e3c70SJoe Perches			$msg_type = \&CHK if ($file);
37329d3e3c70SJoe Perches			&{$msg_type}("AVOID_BUG",
37339d3e3c70SJoe Perches				     "Avoid crashing the kernel - try using WARN_ON & recovery code rather than BUG() or BUG_ON()\n" . $herecurr);
37349d3e3c70SJoe Perches		}
37350a920b5bSAndy Whitcroft
37369d3e3c70SJoe Perches# avoid LINUX_VERSION_CODE
37378905a67cSAndy Whitcroft		if ($line =~ /\bLINUX_VERSION_CODE\b/) {
3738000d1cc1SJoe Perches			WARN("LINUX_VERSION_CODE",
3739000d1cc1SJoe Perches			     "LINUX_VERSION_CODE should be avoided, code should be for the version to which it is merged\n" . $herecurr);
37408905a67cSAndy Whitcroft		}
37418905a67cSAndy Whitcroft
374217441227SJoe Perches# check for uses of printk_ratelimit
374317441227SJoe Perches		if ($line =~ /\bprintk_ratelimit\s*\(/) {
3744000d1cc1SJoe Perches			WARN("PRINTK_RATELIMITED",
3745000d1cc1SJoe Perches			     "Prefer printk_ratelimited or pr_<level>_ratelimited to printk_ratelimit\n" . $herecurr);
374617441227SJoe Perches		}
374717441227SJoe Perches
374800df344fSAndy Whitcroft# printk should use KERN_* levels.  Note that follow on printk's on the
374900df344fSAndy Whitcroft# same line do not need a level, so we use the current block context
375000df344fSAndy Whitcroft# to try and find and validate the current printk.  In summary the current
375125985edcSLucas De Marchi# printk includes all preceding printk's which have no newline on the end.
375200df344fSAndy Whitcroft# we assume the first bad printk is the one to report.
3753f0a594c1SAndy Whitcroft		if ($line =~ /\bprintk\((?!KERN_)\s*"/) {
375400df344fSAndy Whitcroft			my $ok = 0;
375500df344fSAndy Whitcroft			for (my $ln = $linenr - 1; $ln >= $first_line; $ln--) {
375600df344fSAndy Whitcroft				#print "CHECK<$lines[$ln - 1]\n";
375725985edcSLucas De Marchi				# we have a preceding printk if it ends
375800df344fSAndy Whitcroft				# with "\n" ignore it, else it is to blame
375900df344fSAndy Whitcroft				if ($lines[$ln - 1] =~ m{\bprintk\(}) {
376000df344fSAndy Whitcroft					if ($rawlines[$ln - 1] !~ m{\\n"}) {
376100df344fSAndy Whitcroft						$ok = 1;
376200df344fSAndy Whitcroft					}
376300df344fSAndy Whitcroft					last;
376400df344fSAndy Whitcroft				}
376500df344fSAndy Whitcroft			}
376600df344fSAndy Whitcroft			if ($ok == 0) {
3767000d1cc1SJoe Perches				WARN("PRINTK_WITHOUT_KERN_LEVEL",
3768000d1cc1SJoe Perches				     "printk() should include KERN_ facility level\n" . $herecurr);
37690a920b5bSAndy Whitcroft			}
377000df344fSAndy Whitcroft		}
37710a920b5bSAndy Whitcroft
3772243f3803SJoe Perches		if ($line =~ /\bprintk\s*\(\s*KERN_([A-Z]+)/) {
3773243f3803SJoe Perches			my $orig = $1;
3774243f3803SJoe Perches			my $level = lc($orig);
3775243f3803SJoe Perches			$level = "warn" if ($level eq "warning");
37768f26b837SJoe Perches			my $level2 = $level;
37778f26b837SJoe Perches			$level2 = "dbg" if ($level eq "debug");
3778243f3803SJoe Perches			WARN("PREFER_PR_LEVEL",
3779daa8b059SYogesh Chaudhari			     "Prefer [subsystem eg: netdev]_$level2([subsystem]dev, ... then dev_$level2(dev, ... then pr_$level(...  to printk(KERN_$orig ...\n" . $herecurr);
3780243f3803SJoe Perches		}
3781243f3803SJoe Perches
3782243f3803SJoe Perches		if ($line =~ /\bpr_warning\s*\(/) {
3783d5e616fcSJoe Perches			if (WARN("PREFER_PR_LEVEL",
3784d5e616fcSJoe Perches				 "Prefer pr_warn(... to pr_warning(...\n" . $herecurr) &&
3785d5e616fcSJoe Perches			    $fix) {
3786194f66fcSJoe Perches				$fixed[$fixlinenr] =~
3787d5e616fcSJoe Perches				    s/\bpr_warning\b/pr_warn/;
3788d5e616fcSJoe Perches			}
3789243f3803SJoe Perches		}
3790243f3803SJoe Perches
3791dc139313SJoe Perches		if ($line =~ /\bdev_printk\s*\(\s*KERN_([A-Z]+)/) {
3792dc139313SJoe Perches			my $orig = $1;
3793dc139313SJoe Perches			my $level = lc($orig);
3794dc139313SJoe Perches			$level = "warn" if ($level eq "warning");
3795dc139313SJoe Perches			$level = "dbg" if ($level eq "debug");
3796dc139313SJoe Perches			WARN("PREFER_DEV_LEVEL",
3797dc139313SJoe Perches			     "Prefer dev_$level(... to dev_printk(KERN_$orig, ...\n" . $herecurr);
3798dc139313SJoe Perches		}
3799dc139313SJoe Perches
380091c9afafSAndy Lutomirski# ENOSYS means "bad syscall nr" and nothing else.  This will have a small
380191c9afafSAndy Lutomirski# number of false positives, but assembly files are not checked, so at
380291c9afafSAndy Lutomirski# least the arch entry code will not trigger this warning.
380391c9afafSAndy Lutomirski		if ($line =~ /\bENOSYS\b/) {
380491c9afafSAndy Lutomirski			WARN("ENOSYS",
380591c9afafSAndy Lutomirski			     "ENOSYS means 'invalid syscall nr' and nothing else\n" . $herecurr);
380691c9afafSAndy Lutomirski		}
380791c9afafSAndy Lutomirski
3808653d4876SAndy Whitcroft# function brace can't be on same line, except for #defines of do while,
3809653d4876SAndy Whitcroft# or if closed on same line
38108d182478SJoe Perches		if (($line=~/$Type\s*$Ident\(.*\).*\s*{/) and
38114e5d56bdSEddie Kovsky		    !($line=~/\#\s*define.*do\s\{/) and !($line=~/}/)) {
38128d182478SJoe Perches			if (ERROR("OPEN_BRACE",
38138d182478SJoe Perches				  "open brace '{' following function declarations go on the next line\n" . $herecurr) &&
38148d182478SJoe Perches			    $fix) {
38158d182478SJoe Perches				fix_delete_line($fixlinenr, $rawline);
38168d182478SJoe Perches				my $fixed_line = $rawline;
38178d182478SJoe Perches				$fixed_line =~ /(^..*$Type\s*$Ident\(.*\)\s*){(.*)$/;
38188d182478SJoe Perches				my $line1 = $1;
38198d182478SJoe Perches				my $line2 = $2;
38208d182478SJoe Perches				fix_insert_line($fixlinenr, ltrim($line1));
38218d182478SJoe Perches				fix_insert_line($fixlinenr, "\+{");
38228d182478SJoe Perches				if ($line2 !~ /^\s*$/) {
38238d182478SJoe Perches					fix_insert_line($fixlinenr, "\+\t" . trim($line2));
38248d182478SJoe Perches				}
38258d182478SJoe Perches			}
38260a920b5bSAndy Whitcroft		}
3827653d4876SAndy Whitcroft
38288905a67cSAndy Whitcroft# open braces for enum, union and struct go on the same line.
38298905a67cSAndy Whitcroft		if ($line =~ /^.\s*{/ &&
38308905a67cSAndy Whitcroft		    $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
38318d182478SJoe Perches			if (ERROR("OPEN_BRACE",
38328d182478SJoe Perches				  "open brace '{' following $1 go on the same line\n" . $hereprev) &&
38338d182478SJoe Perches			    $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
38348d182478SJoe Perches				fix_delete_line($fixlinenr - 1, $prevrawline);
38358d182478SJoe Perches				fix_delete_line($fixlinenr, $rawline);
38368d182478SJoe Perches				my $fixedline = rtrim($prevrawline) . " {";
38378d182478SJoe Perches				fix_insert_line($fixlinenr, $fixedline);
38388d182478SJoe Perches				$fixedline = $rawline;
38398d182478SJoe Perches				$fixedline =~ s/^(.\s*){\s*/$1\t/;
38408d182478SJoe Perches				if ($fixedline !~ /^\+\s*$/) {
38418d182478SJoe Perches					fix_insert_line($fixlinenr, $fixedline);
38428d182478SJoe Perches				}
38438d182478SJoe Perches			}
38448905a67cSAndy Whitcroft		}
38458905a67cSAndy Whitcroft
38460c73b4ebSAndy Whitcroft# missing space after union, struct or enum definition
38473705ce5bSJoe Perches		if ($line =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident){1,2}[=\{]/) {
38483705ce5bSJoe Perches			if (WARN("SPACING",
38493705ce5bSJoe Perches				 "missing space after $1 definition\n" . $herecurr) &&
38503705ce5bSJoe Perches			    $fix) {
3851194f66fcSJoe Perches				$fixed[$fixlinenr] =~
38523705ce5bSJoe Perches				    s/^(.\s*(?:typedef\s+)?(?:enum|union|struct)(?:\s+$Ident){1,2})([=\{])/$1 $2/;
38533705ce5bSJoe Perches			}
38540c73b4ebSAndy Whitcroft		}
38550c73b4ebSAndy Whitcroft
385631070b5dSJoe Perches# Function pointer declarations
385731070b5dSJoe Perches# check spacing between type, funcptr, and args
385831070b5dSJoe Perches# canonical declaration is "type (*funcptr)(args...)"
385991f72e9cSJoe Perches		if ($line =~ /^.\s*($Declare)\((\s*)\*(\s*)($Ident)(\s*)\)(\s*)\(/) {
386031070b5dSJoe Perches			my $declare = $1;
386131070b5dSJoe Perches			my $pre_pointer_space = $2;
386231070b5dSJoe Perches			my $post_pointer_space = $3;
386331070b5dSJoe Perches			my $funcname = $4;
386431070b5dSJoe Perches			my $post_funcname_space = $5;
386531070b5dSJoe Perches			my $pre_args_space = $6;
386631070b5dSJoe Perches
386791f72e9cSJoe Perches# the $Declare variable will capture all spaces after the type
386891f72e9cSJoe Perches# so check it for a missing trailing missing space but pointer return types
386991f72e9cSJoe Perches# don't need a space so don't warn for those.
387091f72e9cSJoe Perches			my $post_declare_space = "";
387191f72e9cSJoe Perches			if ($declare =~ /(\s+)$/) {
387291f72e9cSJoe Perches				$post_declare_space = $1;
387391f72e9cSJoe Perches				$declare = rtrim($declare);
387491f72e9cSJoe Perches			}
387591f72e9cSJoe Perches			if ($declare !~ /\*$/ && $post_declare_space =~ /^$/) {
387631070b5dSJoe Perches				WARN("SPACING",
387731070b5dSJoe Perches				     "missing space after return type\n" . $herecurr);
387891f72e9cSJoe Perches				$post_declare_space = " ";
387931070b5dSJoe Perches			}
388031070b5dSJoe Perches
388131070b5dSJoe Perches# unnecessary space "type  (*funcptr)(args...)"
388291f72e9cSJoe Perches# This test is not currently implemented because these declarations are
388391f72e9cSJoe Perches# equivalent to
388491f72e9cSJoe Perches#	int  foo(int bar, ...)
388591f72e9cSJoe Perches# and this is form shouldn't/doesn't generate a checkpatch warning.
388691f72e9cSJoe Perches#
388791f72e9cSJoe Perches#			elsif ($declare =~ /\s{2,}$/) {
388891f72e9cSJoe Perches#				WARN("SPACING",
388991f72e9cSJoe Perches#				     "Multiple spaces after return type\n" . $herecurr);
389091f72e9cSJoe Perches#			}
389131070b5dSJoe Perches
389231070b5dSJoe Perches# unnecessary space "type ( *funcptr)(args...)"
389331070b5dSJoe Perches			if (defined $pre_pointer_space &&
389431070b5dSJoe Perches			    $pre_pointer_space =~ /^\s/) {
389531070b5dSJoe Perches				WARN("SPACING",
389631070b5dSJoe Perches				     "Unnecessary space after function pointer open parenthesis\n" . $herecurr);
389731070b5dSJoe Perches			}
389831070b5dSJoe Perches
389931070b5dSJoe Perches# unnecessary space "type (* funcptr)(args...)"
390031070b5dSJoe Perches			if (defined $post_pointer_space &&
390131070b5dSJoe Perches			    $post_pointer_space =~ /^\s/) {
390231070b5dSJoe Perches				WARN("SPACING",
390331070b5dSJoe Perches				     "Unnecessary space before function pointer name\n" . $herecurr);
390431070b5dSJoe Perches			}
390531070b5dSJoe Perches
390631070b5dSJoe Perches# unnecessary space "type (*funcptr )(args...)"
390731070b5dSJoe Perches			if (defined $post_funcname_space &&
390831070b5dSJoe Perches			    $post_funcname_space =~ /^\s/) {
390931070b5dSJoe Perches				WARN("SPACING",
391031070b5dSJoe Perches				     "Unnecessary space after function pointer name\n" . $herecurr);
391131070b5dSJoe Perches			}
391231070b5dSJoe Perches
391331070b5dSJoe Perches# unnecessary space "type (*funcptr) (args...)"
391431070b5dSJoe Perches			if (defined $pre_args_space &&
391531070b5dSJoe Perches			    $pre_args_space =~ /^\s/) {
391631070b5dSJoe Perches				WARN("SPACING",
391731070b5dSJoe Perches				     "Unnecessary space before function pointer arguments\n" . $herecurr);
391831070b5dSJoe Perches			}
391931070b5dSJoe Perches
392031070b5dSJoe Perches			if (show_type("SPACING") && $fix) {
3921194f66fcSJoe Perches				$fixed[$fixlinenr] =~
392291f72e9cSJoe Perches				    s/^(.\s*)$Declare\s*\(\s*\*\s*$Ident\s*\)\s*\(/$1 . $declare . $post_declare_space . '(*' . $funcname . ')('/ex;
392331070b5dSJoe Perches			}
392431070b5dSJoe Perches		}
392531070b5dSJoe Perches
39268d31cfceSAndy Whitcroft# check for spacing round square brackets; allowed:
39278d31cfceSAndy Whitcroft#  1. with a type on the left -- int [] a;
3928fe2a7dbcSAndy Whitcroft#  2. at the beginning of a line for slice initialisers -- [0...10] = 5,
3929fe2a7dbcSAndy Whitcroft#  3. inside a curly brace -- = { [0...10] = 5 }
39308d31cfceSAndy Whitcroft		while ($line =~ /(.*?\s)\[/g) {
39318d31cfceSAndy Whitcroft			my ($where, $prefix) = ($-[1], $1);
39328d31cfceSAndy Whitcroft			if ($prefix !~ /$Type\s+$/ &&
3933fe2a7dbcSAndy Whitcroft			    ($where != 0 || $prefix !~ /^.\s+$/) &&
3934daebc534SAndy Whitcroft			    $prefix !~ /[{,]\s+$/) {
39353705ce5bSJoe Perches				if (ERROR("BRACKET_SPACE",
39363705ce5bSJoe Perches					  "space prohibited before open square bracket '['\n" . $herecurr) &&
39373705ce5bSJoe Perches				    $fix) {
3938194f66fcSJoe Perches				    $fixed[$fixlinenr] =~
39393705ce5bSJoe Perches					s/^(\+.*?)\s+\[/$1\[/;
39403705ce5bSJoe Perches				}
39418d31cfceSAndy Whitcroft			}
39428d31cfceSAndy Whitcroft		}
39438d31cfceSAndy Whitcroft
3944f0a594c1SAndy Whitcroft# check for spaces between functions and their parentheses.
39456c72ffaaSAndy Whitcroft		while ($line =~ /($Ident)\s+\(/g) {
3946c2fdda0dSAndy Whitcroft			my $name = $1;
3947773647a0SAndy Whitcroft			my $ctx_before = substr($line, 0, $-[1]);
3948773647a0SAndy Whitcroft			my $ctx = "$ctx_before$name";
3949c2fdda0dSAndy Whitcroft
3950c2fdda0dSAndy Whitcroft			# Ignore those directives where spaces _are_ permitted.
3951773647a0SAndy Whitcroft			if ($name =~ /^(?:
3952773647a0SAndy Whitcroft				if|for|while|switch|return|case|
3953773647a0SAndy Whitcroft				volatile|__volatile__|
3954773647a0SAndy Whitcroft				__attribute__|format|__extension__|
3955773647a0SAndy Whitcroft				asm|__asm__)$/x)
3956773647a0SAndy Whitcroft			{
3957c2fdda0dSAndy Whitcroft			# cpp #define statements have non-optional spaces, ie
3958c2fdda0dSAndy Whitcroft			# if there is a space between the name and the open
3959c2fdda0dSAndy Whitcroft			# parenthesis it is simply not a parameter group.
3960c45dcabdSAndy Whitcroft			} elsif ($ctx_before =~ /^.\s*\#\s*define\s*$/) {
3961773647a0SAndy Whitcroft
3962773647a0SAndy Whitcroft			# cpp #elif statement condition may start with a (
3963c45dcabdSAndy Whitcroft			} elsif ($ctx =~ /^.\s*\#\s*elif\s*$/) {
3964c2fdda0dSAndy Whitcroft
3965c2fdda0dSAndy Whitcroft			# If this whole things ends with a type its most
3966c2fdda0dSAndy Whitcroft			# likely a typedef for a function.
3967773647a0SAndy Whitcroft			} elsif ($ctx =~ /$Type$/) {
3968c2fdda0dSAndy Whitcroft
3969c2fdda0dSAndy Whitcroft			} else {
39703705ce5bSJoe Perches				if (WARN("SPACING",
39713705ce5bSJoe Perches					 "space prohibited between function name and open parenthesis '('\n" . $herecurr) &&
39723705ce5bSJoe Perches					     $fix) {
3973194f66fcSJoe Perches					$fixed[$fixlinenr] =~
39743705ce5bSJoe Perches					    s/\b$name\s+\(/$name\(/;
39753705ce5bSJoe Perches				}
3976f0a594c1SAndy Whitcroft			}
39776c72ffaaSAndy Whitcroft		}
39789a4cad4eSEric Nelson
3979653d4876SAndy Whitcroft# Check operator spacing.
39800a920b5bSAndy Whitcroft		if (!($line=~/\#\s*include/)) {
39813705ce5bSJoe Perches			my $fixed_line = "";
39823705ce5bSJoe Perches			my $line_fixed = 0;
39833705ce5bSJoe Perches
39849c0ca6f9SAndy Whitcroft			my $ops = qr{
39859c0ca6f9SAndy Whitcroft				<<=|>>=|<=|>=|==|!=|
39869c0ca6f9SAndy Whitcroft				\+=|-=|\*=|\/=|%=|\^=|\|=|&=|
39879c0ca6f9SAndy Whitcroft				=>|->|<<|>>|<|>|=|!|~|
39881f65f947SAndy Whitcroft				&&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%|
398984731623SJoe Perches				\?:|\?|:
39909c0ca6f9SAndy Whitcroft			}x;
3991cf655043SAndy Whitcroft			my @elements = split(/($ops|;)/, $opline);
39923705ce5bSJoe Perches
39933705ce5bSJoe Perches##			print("element count: <" . $#elements . ">\n");
39943705ce5bSJoe Perches##			foreach my $el (@elements) {
39953705ce5bSJoe Perches##				print("el: <$el>\n");
39963705ce5bSJoe Perches##			}
39973705ce5bSJoe Perches
39983705ce5bSJoe Perches			my @fix_elements = ();
399900df344fSAndy Whitcroft			my $off = 0;
40006c72ffaaSAndy Whitcroft
40013705ce5bSJoe Perches			foreach my $el (@elements) {
40023705ce5bSJoe Perches				push(@fix_elements, substr($rawline, $off, length($el)));
40033705ce5bSJoe Perches				$off += length($el);
40043705ce5bSJoe Perches			}
40053705ce5bSJoe Perches
40063705ce5bSJoe Perches			$off = 0;
40073705ce5bSJoe Perches
40086c72ffaaSAndy Whitcroft			my $blank = copy_spacing($opline);
4009b34c648bSJoe Perches			my $last_after = -1;
40106c72ffaaSAndy Whitcroft
40110a920b5bSAndy Whitcroft			for (my $n = 0; $n < $#elements; $n += 2) {
40123705ce5bSJoe Perches
40133705ce5bSJoe Perches				my $good = $fix_elements[$n] . $fix_elements[$n + 1];
40143705ce5bSJoe Perches
40153705ce5bSJoe Perches##				print("n: <$n> good: <$good>\n");
40163705ce5bSJoe Perches
40174a0df2efSAndy Whitcroft				$off += length($elements[$n]);
40184a0df2efSAndy Whitcroft
401925985edcSLucas De Marchi				# Pick up the preceding and succeeding characters.
4020773647a0SAndy Whitcroft				my $ca = substr($opline, 0, $off);
4021773647a0SAndy Whitcroft				my $cc = '';
4022773647a0SAndy Whitcroft				if (length($opline) >= ($off + length($elements[$n + 1]))) {
4023773647a0SAndy Whitcroft					$cc = substr($opline, $off + length($elements[$n + 1]));
4024773647a0SAndy Whitcroft				}
4025773647a0SAndy Whitcroft				my $cb = "$ca$;$cc";
4026773647a0SAndy Whitcroft
40274a0df2efSAndy Whitcroft				my $a = '';
40284a0df2efSAndy Whitcroft				$a = 'V' if ($elements[$n] ne '');
40294a0df2efSAndy Whitcroft				$a = 'W' if ($elements[$n] =~ /\s$/);
4030cf655043SAndy Whitcroft				$a = 'C' if ($elements[$n] =~ /$;$/);
40314a0df2efSAndy Whitcroft				$a = 'B' if ($elements[$n] =~ /(\[|\()$/);
40324a0df2efSAndy Whitcroft				$a = 'O' if ($elements[$n] eq '');
4033773647a0SAndy Whitcroft				$a = 'E' if ($ca =~ /^\s*$/);
40344a0df2efSAndy Whitcroft
40350a920b5bSAndy Whitcroft				my $op = $elements[$n + 1];
40364a0df2efSAndy Whitcroft
40374a0df2efSAndy Whitcroft				my $c = '';
40380a920b5bSAndy Whitcroft				if (defined $elements[$n + 2]) {
40394a0df2efSAndy Whitcroft					$c = 'V' if ($elements[$n + 2] ne '');
40404a0df2efSAndy Whitcroft					$c = 'W' if ($elements[$n + 2] =~ /^\s/);
4041cf655043SAndy Whitcroft					$c = 'C' if ($elements[$n + 2] =~ /^$;/);
40424a0df2efSAndy Whitcroft					$c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
40434a0df2efSAndy Whitcroft					$c = 'O' if ($elements[$n + 2] eq '');
40448b1b3378SAndy Whitcroft					$c = 'E' if ($elements[$n + 2] =~ /^\s*\\$/);
40454a0df2efSAndy Whitcroft				} else {
40464a0df2efSAndy Whitcroft					$c = 'E';
40470a920b5bSAndy Whitcroft				}
40480a920b5bSAndy Whitcroft
40494a0df2efSAndy Whitcroft				my $ctx = "${a}x${c}";
40504a0df2efSAndy Whitcroft
40514a0df2efSAndy Whitcroft				my $at = "(ctx:$ctx)";
40524a0df2efSAndy Whitcroft
40536c72ffaaSAndy Whitcroft				my $ptr = substr($blank, 0, $off) . "^";
4054de7d4f0eSAndy Whitcroft				my $hereptr = "$hereline$ptr\n";
40550a920b5bSAndy Whitcroft
405674048ed8SAndy Whitcroft				# Pull out the value of this operator.
40576c72ffaaSAndy Whitcroft				my $op_type = substr($curr_values, $off + 1, 1);
40580a920b5bSAndy Whitcroft
40591f65f947SAndy Whitcroft				# Get the full operator variant.
40601f65f947SAndy Whitcroft				my $opv = $op . substr($curr_vars, $off, 1);
40611f65f947SAndy Whitcroft
406213214adfSAndy Whitcroft				# Ignore operators passed as parameters.
406313214adfSAndy Whitcroft				if ($op_type ne 'V' &&
4064d7fe8065SSam Bobroff				    $ca =~ /\s$/ && $cc =~ /^\s*[,\)]/) {
406513214adfSAndy Whitcroft
4066cf655043SAndy Whitcroft#				# Ignore comments
4067cf655043SAndy Whitcroft#				} elsif ($op =~ /^$;+$/) {
406813214adfSAndy Whitcroft
4069d8aaf121SAndy Whitcroft				# ; should have either the end of line or a space or \ after it
407013214adfSAndy Whitcroft				} elsif ($op eq ';') {
4071cf655043SAndy Whitcroft					if ($ctx !~ /.x[WEBC]/ &&
4072cf655043SAndy Whitcroft					    $cc !~ /^\\/ && $cc !~ /^;/) {
40733705ce5bSJoe Perches						if (ERROR("SPACING",
40743705ce5bSJoe Perches							  "space required after that '$op' $at\n" . $hereptr)) {
4075b34c648bSJoe Perches							$good = $fix_elements[$n] . trim($fix_elements[$n + 1]) . " ";
40763705ce5bSJoe Perches							$line_fixed = 1;
40773705ce5bSJoe Perches						}
4078d8aaf121SAndy Whitcroft					}
4079d8aaf121SAndy Whitcroft
4080d8aaf121SAndy Whitcroft				# // is a comment
4081d8aaf121SAndy Whitcroft				} elsif ($op eq '//') {
40820a920b5bSAndy Whitcroft
4083b00e4814SJoe Perches				#   :   when part of a bitfield
4084b00e4814SJoe Perches				} elsif ($opv eq ':B') {
4085b00e4814SJoe Perches					# skip the bitfield test for now
4086b00e4814SJoe Perches
40871f65f947SAndy Whitcroft				# No spaces for:
40881f65f947SAndy Whitcroft				#   ->
4089b00e4814SJoe Perches				} elsif ($op eq '->') {
40904a0df2efSAndy Whitcroft					if ($ctx =~ /Wx.|.xW/) {
40913705ce5bSJoe Perches						if (ERROR("SPACING",
40923705ce5bSJoe Perches							  "spaces prohibited around that '$op' $at\n" . $hereptr)) {
4093b34c648bSJoe Perches							$good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
40943705ce5bSJoe Perches							if (defined $fix_elements[$n + 2]) {
40953705ce5bSJoe Perches								$fix_elements[$n + 2] =~ s/^\s+//;
40963705ce5bSJoe Perches							}
4097b34c648bSJoe Perches							$line_fixed = 1;
40983705ce5bSJoe Perches						}
40990a920b5bSAndy Whitcroft					}
41000a920b5bSAndy Whitcroft
41012381097bSJoe Perches				# , must not have a space before and must have a space on the right.
41020a920b5bSAndy Whitcroft				} elsif ($op eq ',') {
41032381097bSJoe Perches					my $rtrim_before = 0;
41042381097bSJoe Perches					my $space_after = 0;
41052381097bSJoe Perches					if ($ctx =~ /Wx./) {
41062381097bSJoe Perches						if (ERROR("SPACING",
41072381097bSJoe Perches							  "space prohibited before that '$op' $at\n" . $hereptr)) {
41082381097bSJoe Perches							$line_fixed = 1;
41092381097bSJoe Perches							$rtrim_before = 1;
41102381097bSJoe Perches						}
41112381097bSJoe Perches					}
4112cf655043SAndy Whitcroft					if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) {
41133705ce5bSJoe Perches						if (ERROR("SPACING",
41143705ce5bSJoe Perches							  "space required after that '$op' $at\n" . $hereptr)) {
41153705ce5bSJoe Perches							$line_fixed = 1;
4116b34c648bSJoe Perches							$last_after = $n;
41172381097bSJoe Perches							$space_after = 1;
41182381097bSJoe Perches						}
41192381097bSJoe Perches					}
41202381097bSJoe Perches					if ($rtrim_before || $space_after) {
41212381097bSJoe Perches						if ($rtrim_before) {
41222381097bSJoe Perches							$good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
41232381097bSJoe Perches						} else {
41242381097bSJoe Perches							$good = $fix_elements[$n] . trim($fix_elements[$n + 1]);
41252381097bSJoe Perches						}
41262381097bSJoe Perches						if ($space_after) {
41272381097bSJoe Perches							$good .= " ";
41283705ce5bSJoe Perches						}
41290a920b5bSAndy Whitcroft					}
41300a920b5bSAndy Whitcroft
41319c0ca6f9SAndy Whitcroft				# '*' as part of a type definition -- reported already.
413274048ed8SAndy Whitcroft				} elsif ($opv eq '*_') {
41339c0ca6f9SAndy Whitcroft					#warn "'*' is part of type\n";
41349c0ca6f9SAndy Whitcroft
41359c0ca6f9SAndy Whitcroft				# unary operators should have a space before and
41369c0ca6f9SAndy Whitcroft				# none after.  May be left adjacent to another
41379c0ca6f9SAndy Whitcroft				# unary operator, or a cast
41389c0ca6f9SAndy Whitcroft				} elsif ($op eq '!' || $op eq '~' ||
413974048ed8SAndy Whitcroft					 $opv eq '*U' || $opv eq '-U' ||
41400d413866SAndy Whitcroft					 $opv eq '&U' || $opv eq '&&U') {
4141cf655043SAndy Whitcroft					if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
41423705ce5bSJoe Perches						if (ERROR("SPACING",
41433705ce5bSJoe Perches							  "space required before that '$op' $at\n" . $hereptr)) {
4144b34c648bSJoe Perches							if ($n != $last_after + 2) {
4145b34c648bSJoe Perches								$good = $fix_elements[$n] . " " . ltrim($fix_elements[$n + 1]);
41463705ce5bSJoe Perches								$line_fixed = 1;
41473705ce5bSJoe Perches							}
41480a920b5bSAndy Whitcroft						}
4149b34c648bSJoe Perches					}
4150a3340b35SAndy Whitcroft					if ($op eq '*' && $cc =~/\s*$Modifier\b/) {
4151171ae1a4SAndy Whitcroft						# A unary '*' may be const
4152171ae1a4SAndy Whitcroft
4153171ae1a4SAndy Whitcroft					} elsif ($ctx =~ /.xW/) {
41543705ce5bSJoe Perches						if (ERROR("SPACING",
41553705ce5bSJoe Perches							  "space prohibited after that '$op' $at\n" . $hereptr)) {
4156b34c648bSJoe Perches							$good = $fix_elements[$n] . rtrim($fix_elements[$n + 1]);
41573705ce5bSJoe Perches							if (defined $fix_elements[$n + 2]) {
41583705ce5bSJoe Perches								$fix_elements[$n + 2] =~ s/^\s+//;
41593705ce5bSJoe Perches							}
4160b34c648bSJoe Perches							$line_fixed = 1;
41613705ce5bSJoe Perches						}
41620a920b5bSAndy Whitcroft					}
41630a920b5bSAndy Whitcroft
41640a920b5bSAndy Whitcroft				# unary ++ and unary -- are allowed no space on one side.
41650a920b5bSAndy Whitcroft				} elsif ($op eq '++' or $op eq '--') {
4166773647a0SAndy Whitcroft					if ($ctx !~ /[WEOBC]x[^W]/ && $ctx !~ /[^W]x[WOBEC]/) {
41673705ce5bSJoe Perches						if (ERROR("SPACING",
41683705ce5bSJoe Perches							  "space required one side of that '$op' $at\n" . $hereptr)) {
4169b34c648bSJoe Perches							$good = $fix_elements[$n] . trim($fix_elements[$n + 1]) . " ";
41703705ce5bSJoe Perches							$line_fixed = 1;
41713705ce5bSJoe Perches						}
41720a920b5bSAndy Whitcroft					}
4173773647a0SAndy Whitcroft					if ($ctx =~ /Wx[BE]/ ||
4174773647a0SAndy Whitcroft					    ($ctx =~ /Wx./ && $cc =~ /^;/)) {
41753705ce5bSJoe Perches						if (ERROR("SPACING",
41763705ce5bSJoe Perches							  "space prohibited before that '$op' $at\n" . $hereptr)) {
4177b34c648bSJoe Perches							$good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
41783705ce5bSJoe Perches							$line_fixed = 1;
41793705ce5bSJoe Perches						}
4180653d4876SAndy Whitcroft					}
4181773647a0SAndy Whitcroft					if ($ctx =~ /ExW/) {
41823705ce5bSJoe Perches						if (ERROR("SPACING",
41833705ce5bSJoe Perches							  "space prohibited after that '$op' $at\n" . $hereptr)) {
4184b34c648bSJoe Perches							$good = $fix_elements[$n] . trim($fix_elements[$n + 1]);
41853705ce5bSJoe Perches							if (defined $fix_elements[$n + 2]) {
41863705ce5bSJoe Perches								$fix_elements[$n + 2] =~ s/^\s+//;
4187773647a0SAndy Whitcroft							}
4188b34c648bSJoe Perches							$line_fixed = 1;
41893705ce5bSJoe Perches						}
41903705ce5bSJoe Perches					}
41910a920b5bSAndy Whitcroft
41920a920b5bSAndy Whitcroft				# << and >> may either have or not have spaces both sides
41939c0ca6f9SAndy Whitcroft				} elsif ($op eq '<<' or $op eq '>>' or
41949c0ca6f9SAndy Whitcroft					 $op eq '&' or $op eq '^' or $op eq '|' or
41959c0ca6f9SAndy Whitcroft					 $op eq '+' or $op eq '-' or
4196c2fdda0dSAndy Whitcroft					 $op eq '*' or $op eq '/' or
4197c2fdda0dSAndy Whitcroft					 $op eq '%')
41980a920b5bSAndy Whitcroft				{
4199d2e025f3SJoe Perches					if ($check) {
4200d2e025f3SJoe Perches						if (defined $fix_elements[$n + 2] && $ctx !~ /[EW]x[EW]/) {
4201d2e025f3SJoe Perches							if (CHK("SPACING",
4202d2e025f3SJoe Perches								"spaces preferred around that '$op' $at\n" . $hereptr)) {
4203d2e025f3SJoe Perches								$good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
4204d2e025f3SJoe Perches								$fix_elements[$n + 2] =~ s/^\s+//;
4205d2e025f3SJoe Perches								$line_fixed = 1;
4206d2e025f3SJoe Perches							}
4207d2e025f3SJoe Perches						} elsif (!defined $fix_elements[$n + 2] && $ctx !~ /Wx[OE]/) {
4208d2e025f3SJoe Perches							if (CHK("SPACING",
4209d2e025f3SJoe Perches								"space preferred before that '$op' $at\n" . $hereptr)) {
4210d2e025f3SJoe Perches								$good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]);
4211d2e025f3SJoe Perches								$line_fixed = 1;
4212d2e025f3SJoe Perches							}
4213d2e025f3SJoe Perches						}
4214d2e025f3SJoe Perches					} elsif ($ctx =~ /Wx[^WCE]|[^WCE]xW/) {
42153705ce5bSJoe Perches						if (ERROR("SPACING",
42163705ce5bSJoe Perches							  "need consistent spacing around '$op' $at\n" . $hereptr)) {
4217b34c648bSJoe Perches							$good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
4218b34c648bSJoe Perches							if (defined $fix_elements[$n + 2]) {
4219b34c648bSJoe Perches								$fix_elements[$n + 2] =~ s/^\s+//;
4220b34c648bSJoe Perches							}
42213705ce5bSJoe Perches							$line_fixed = 1;
42223705ce5bSJoe Perches						}
42230a920b5bSAndy Whitcroft					}
42240a920b5bSAndy Whitcroft
42251f65f947SAndy Whitcroft				# A colon needs no spaces before when it is
42261f65f947SAndy Whitcroft				# terminating a case value or a label.
42271f65f947SAndy Whitcroft				} elsif ($opv eq ':C' || $opv eq ':L') {
42281f65f947SAndy Whitcroft					if ($ctx =~ /Wx./) {
42293705ce5bSJoe Perches						if (ERROR("SPACING",
42303705ce5bSJoe Perches							  "space prohibited before that '$op' $at\n" . $hereptr)) {
4231b34c648bSJoe Perches							$good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
42323705ce5bSJoe Perches							$line_fixed = 1;
42333705ce5bSJoe Perches						}
42341f65f947SAndy Whitcroft					}
42351f65f947SAndy Whitcroft
42360a920b5bSAndy Whitcroft				# All the others need spaces both sides.
4237cf655043SAndy Whitcroft				} elsif ($ctx !~ /[EWC]x[CWE]/) {
42381f65f947SAndy Whitcroft					my $ok = 0;
42391f65f947SAndy Whitcroft
424022f2a2efSAndy Whitcroft					# Ignore email addresses <foo@bar>
42411f65f947SAndy Whitcroft					if (($op eq '<' &&
42421f65f947SAndy Whitcroft					     $cc =~ /^\S+\@\S+>/) ||
42431f65f947SAndy Whitcroft					    ($op eq '>' &&
42441f65f947SAndy Whitcroft					     $ca =~ /<\S+\@\S+$/))
42451f65f947SAndy Whitcroft					{
42461f65f947SAndy Whitcroft					    	$ok = 1;
42471f65f947SAndy Whitcroft					}
42481f65f947SAndy Whitcroft
4249e0df7e1fSJoe Perches					# for asm volatile statements
4250e0df7e1fSJoe Perches					# ignore a colon with another
4251e0df7e1fSJoe Perches					# colon immediately before or after
4252e0df7e1fSJoe Perches					if (($op eq ':') &&
4253e0df7e1fSJoe Perches					    ($ca =~ /:$/ || $cc =~ /^:/)) {
4254e0df7e1fSJoe Perches						$ok = 1;
4255e0df7e1fSJoe Perches					}
4256e0df7e1fSJoe Perches
425784731623SJoe Perches					# messages are ERROR, but ?: are CHK
42581f65f947SAndy Whitcroft					if ($ok == 0) {
425984731623SJoe Perches						my $msg_type = \&ERROR;
426084731623SJoe Perches						$msg_type = \&CHK if (($op eq '?:' || $op eq '?' || $op eq ':') && $ctx =~ /VxV/);
426184731623SJoe Perches
426284731623SJoe Perches						if (&{$msg_type}("SPACING",
42633705ce5bSJoe Perches								 "spaces required around that '$op' $at\n" . $hereptr)) {
4264b34c648bSJoe Perches							$good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
4265b34c648bSJoe Perches							if (defined $fix_elements[$n + 2]) {
4266b34c648bSJoe Perches								$fix_elements[$n + 2] =~ s/^\s+//;
4267b34c648bSJoe Perches							}
42683705ce5bSJoe Perches							$line_fixed = 1;
42693705ce5bSJoe Perches						}
42700a920b5bSAndy Whitcroft					}
427122f2a2efSAndy Whitcroft				}
42724a0df2efSAndy Whitcroft				$off += length($elements[$n + 1]);
42733705ce5bSJoe Perches
42743705ce5bSJoe Perches##				print("n: <$n> GOOD: <$good>\n");
42753705ce5bSJoe Perches
42763705ce5bSJoe Perches				$fixed_line = $fixed_line . $good;
42770a920b5bSAndy Whitcroft			}
42783705ce5bSJoe Perches
42793705ce5bSJoe Perches			if (($#elements % 2) == 0) {
42803705ce5bSJoe Perches				$fixed_line = $fixed_line . $fix_elements[$#elements];
42813705ce5bSJoe Perches			}
42823705ce5bSJoe Perches
4283194f66fcSJoe Perches			if ($fix && $line_fixed && $fixed_line ne $fixed[$fixlinenr]) {
4284194f66fcSJoe Perches				$fixed[$fixlinenr] = $fixed_line;
42853705ce5bSJoe Perches			}
42863705ce5bSJoe Perches
42873705ce5bSJoe Perches
42880a920b5bSAndy Whitcroft		}
42890a920b5bSAndy Whitcroft
4290786b6326SJoe Perches# check for whitespace before a non-naked semicolon
4291d2e248e7SJoe Perches		if ($line =~ /^\+.*\S\s+;\s*$/) {
4292786b6326SJoe Perches			if (WARN("SPACING",
4293786b6326SJoe Perches				 "space prohibited before semicolon\n" . $herecurr) &&
4294786b6326SJoe Perches			    $fix) {
4295194f66fcSJoe Perches				1 while $fixed[$fixlinenr] =~
4296786b6326SJoe Perches				    s/^(\+.*\S)\s+;/$1;/;
4297786b6326SJoe Perches			}
4298786b6326SJoe Perches		}
4299786b6326SJoe Perches
4300f0a594c1SAndy Whitcroft# check for multiple assignments
4301f0a594c1SAndy Whitcroft		if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
4302000d1cc1SJoe Perches			CHK("MULTIPLE_ASSIGNMENTS",
4303000d1cc1SJoe Perches			    "multiple assignments should be avoided\n" . $herecurr);
4304f0a594c1SAndy Whitcroft		}
4305f0a594c1SAndy Whitcroft
430622f2a2efSAndy Whitcroft## # check for multiple declarations, allowing for a function declaration
430722f2a2efSAndy Whitcroft## # continuation.
430822f2a2efSAndy Whitcroft## 		if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
430922f2a2efSAndy Whitcroft## 		    $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
431022f2a2efSAndy Whitcroft##
431122f2a2efSAndy Whitcroft## 			# Remove any bracketed sections to ensure we do not
431222f2a2efSAndy Whitcroft## 			# falsly report the parameters of functions.
431322f2a2efSAndy Whitcroft## 			my $ln = $line;
431422f2a2efSAndy Whitcroft## 			while ($ln =~ s/\([^\(\)]*\)//g) {
431522f2a2efSAndy Whitcroft## 			}
431622f2a2efSAndy Whitcroft## 			if ($ln =~ /,/) {
4317000d1cc1SJoe Perches## 				WARN("MULTIPLE_DECLARATION",
4318000d1cc1SJoe Perches##				     "declaring multiple variables together should be avoided\n" . $herecurr);
431922f2a2efSAndy Whitcroft## 			}
432022f2a2efSAndy Whitcroft## 		}
4321f0a594c1SAndy Whitcroft
43220a920b5bSAndy Whitcroft#need space before brace following if, while, etc
43236b8c69e4SGeyslan G. Bem		if (($line =~ /\(.*\)\{/ && $line !~ /\($Type\)\{/) ||
43244e5d56bdSEddie Kovsky		    $line =~ /do\{/) {
43253705ce5bSJoe Perches			if (ERROR("SPACING",
43263705ce5bSJoe Perches				  "space required before the open brace '{'\n" . $herecurr) &&
43273705ce5bSJoe Perches			    $fix) {
4328194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/^(\+.*(?:do|\))){/$1 {/;
43293705ce5bSJoe Perches			}
4330de7d4f0eSAndy Whitcroft		}
4331de7d4f0eSAndy Whitcroft
4332c4a62ef9SJoe Perches## # check for blank lines before declarations
4333c4a62ef9SJoe Perches##		if ($line =~ /^.\t+$Type\s+$Ident(?:\s*=.*)?;/ &&
4334c4a62ef9SJoe Perches##		    $prevrawline =~ /^.\s*$/) {
4335c4a62ef9SJoe Perches##			WARN("SPACING",
4336c4a62ef9SJoe Perches##			     "No blank lines before declarations\n" . $hereprev);
4337c4a62ef9SJoe Perches##		}
4338c4a62ef9SJoe Perches##
4339c4a62ef9SJoe Perches
4340de7d4f0eSAndy Whitcroft# closing brace should have a space following it when it has anything
4341de7d4f0eSAndy Whitcroft# on the line
4342de7d4f0eSAndy Whitcroft		if ($line =~ /}(?!(?:,|;|\)))\S/) {
4343d5e616fcSJoe Perches			if (ERROR("SPACING",
4344d5e616fcSJoe Perches				  "space required after that close brace '}'\n" . $herecurr) &&
4345d5e616fcSJoe Perches			    $fix) {
4346194f66fcSJoe Perches				$fixed[$fixlinenr] =~
4347d5e616fcSJoe Perches				    s/}((?!(?:,|;|\)))\S)/} $1/;
4348d5e616fcSJoe Perches			}
43490a920b5bSAndy Whitcroft		}
43500a920b5bSAndy Whitcroft
435122f2a2efSAndy Whitcroft# check spacing on square brackets
435222f2a2efSAndy Whitcroft		if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
43533705ce5bSJoe Perches			if (ERROR("SPACING",
43543705ce5bSJoe Perches				  "space prohibited after that open square bracket '['\n" . $herecurr) &&
43553705ce5bSJoe Perches			    $fix) {
4356194f66fcSJoe Perches				$fixed[$fixlinenr] =~
43573705ce5bSJoe Perches				    s/\[\s+/\[/;
43583705ce5bSJoe Perches			}
435922f2a2efSAndy Whitcroft		}
436022f2a2efSAndy Whitcroft		if ($line =~ /\s\]/) {
43613705ce5bSJoe Perches			if (ERROR("SPACING",
43623705ce5bSJoe Perches				  "space prohibited before that close square bracket ']'\n" . $herecurr) &&
43633705ce5bSJoe Perches			    $fix) {
4364194f66fcSJoe Perches				$fixed[$fixlinenr] =~
43653705ce5bSJoe Perches				    s/\s+\]/\]/;
43663705ce5bSJoe Perches			}
436722f2a2efSAndy Whitcroft		}
436822f2a2efSAndy Whitcroft
4369c45dcabdSAndy Whitcroft# check spacing on parentheses
43709c0ca6f9SAndy Whitcroft		if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
43719c0ca6f9SAndy Whitcroft		    $line !~ /for\s*\(\s+;/) {
43723705ce5bSJoe Perches			if (ERROR("SPACING",
43733705ce5bSJoe Perches				  "space prohibited after that open parenthesis '('\n" . $herecurr) &&
43743705ce5bSJoe Perches			    $fix) {
4375194f66fcSJoe Perches				$fixed[$fixlinenr] =~
43763705ce5bSJoe Perches				    s/\(\s+/\(/;
43773705ce5bSJoe Perches			}
437822f2a2efSAndy Whitcroft		}
437913214adfSAndy Whitcroft		if ($line =~ /(\s+)\)/ && $line !~ /^.\s*\)/ &&
4380c45dcabdSAndy Whitcroft		    $line !~ /for\s*\(.*;\s+\)/ &&
4381c45dcabdSAndy Whitcroft		    $line !~ /:\s+\)/) {
43823705ce5bSJoe Perches			if (ERROR("SPACING",
43833705ce5bSJoe Perches				  "space prohibited before that close parenthesis ')'\n" . $herecurr) &&
43843705ce5bSJoe Perches			    $fix) {
4385194f66fcSJoe Perches				$fixed[$fixlinenr] =~
43863705ce5bSJoe Perches				    s/\s+\)/\)/;
43873705ce5bSJoe Perches			}
438822f2a2efSAndy Whitcroft		}
438922f2a2efSAndy Whitcroft
4390e2826fd0SJoe Perches# check unnecessary parentheses around addressof/dereference single $Lvals
4391e2826fd0SJoe Perches# ie: &(foo->bar) should be &foo->bar and *(foo->bar) should be *foo->bar
4392e2826fd0SJoe Perches
4393e2826fd0SJoe Perches		while ($line =~ /(?:[^&]&\s*|\*)\(\s*($Ident\s*(?:$Member\s*)+)\s*\)/g) {
4394ea4acbb1SJoe Perches			my $var = $1;
4395ea4acbb1SJoe Perches			if (CHK("UNNECESSARY_PARENTHESES",
4396ea4acbb1SJoe Perches				"Unnecessary parentheses around $var\n" . $herecurr) &&
4397ea4acbb1SJoe Perches			    $fix) {
4398ea4acbb1SJoe Perches				$fixed[$fixlinenr] =~ s/\(\s*\Q$var\E\s*\)/$var/;
4399ea4acbb1SJoe Perches			}
4400ea4acbb1SJoe Perches		}
4401ea4acbb1SJoe Perches
4402ea4acbb1SJoe Perches# check for unnecessary parentheses around function pointer uses
4403ea4acbb1SJoe Perches# ie: (foo->bar)(); should be foo->bar();
4404ea4acbb1SJoe Perches# but not "if (foo->bar) (" to avoid some false positives
4405ea4acbb1SJoe Perches		if ($line =~ /(\bif\s*|)(\(\s*$Ident\s*(?:$Member\s*)+\))[ \t]*\(/ && $1 !~ /^if/) {
4406ea4acbb1SJoe Perches			my $var = $2;
4407ea4acbb1SJoe Perches			if (CHK("UNNECESSARY_PARENTHESES",
4408ea4acbb1SJoe Perches				"Unnecessary parentheses around function pointer $var\n" . $herecurr) &&
4409ea4acbb1SJoe Perches			    $fix) {
4410ea4acbb1SJoe Perches				my $var2 = deparenthesize($var);
4411ea4acbb1SJoe Perches				$var2 =~ s/\s//g;
4412ea4acbb1SJoe Perches				$fixed[$fixlinenr] =~ s/\Q$var\E/$var2/;
4413ea4acbb1SJoe Perches			}
4414e2826fd0SJoe Perches		}
4415e2826fd0SJoe Perches
44160a920b5bSAndy Whitcroft#goto labels aren't indented, allow a single space however
44174a0df2efSAndy Whitcroft		if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
44180a920b5bSAndy Whitcroft		   !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
44193705ce5bSJoe Perches			if (WARN("INDENTED_LABEL",
44203705ce5bSJoe Perches				 "labels should not be indented\n" . $herecurr) &&
44213705ce5bSJoe Perches			    $fix) {
4422194f66fcSJoe Perches				$fixed[$fixlinenr] =~
44233705ce5bSJoe Perches				    s/^(.)\s+/$1/;
44243705ce5bSJoe Perches			}
44250a920b5bSAndy Whitcroft		}
44260a920b5bSAndy Whitcroft
44275b9553abSJoe Perches# return is not a function
4428507e5141SJoe Perches		if (defined($stat) && $stat =~ /^.\s*return(\s*)\(/s) {
4429c45dcabdSAndy Whitcroft			my $spacing = $1;
4430507e5141SJoe Perches			if ($^V && $^V ge 5.10.0 &&
44315b9553abSJoe Perches			    $stat =~ /^.\s*return\s*($balanced_parens)\s*;\s*$/) {
44325b9553abSJoe Perches				my $value = $1;
44335b9553abSJoe Perches				$value = deparenthesize($value);
44345b9553abSJoe Perches				if ($value =~ m/^\s*$FuncArg\s*(?:\?|$)/) {
4435000d1cc1SJoe Perches					ERROR("RETURN_PARENTHESES",
4436000d1cc1SJoe Perches					      "return is not a function, parentheses are not required\n" . $herecurr);
44375b9553abSJoe Perches				}
4438c45dcabdSAndy Whitcroft			} elsif ($spacing !~ /\s+/) {
4439000d1cc1SJoe Perches				ERROR("SPACING",
4440000d1cc1SJoe Perches				      "space required before the open parenthesis '('\n" . $herecurr);
4441c45dcabdSAndy Whitcroft			}
4442c45dcabdSAndy Whitcroft		}
4443507e5141SJoe Perches
4444b43ae21bSJoe Perches# unnecessary return in a void function
4445b43ae21bSJoe Perches# at end-of-function, with the previous line a single leading tab, then return;
4446b43ae21bSJoe Perches# and the line before that not a goto label target like "out:"
4447b43ae21bSJoe Perches		if ($sline =~ /^[ \+]}\s*$/ &&
4448b43ae21bSJoe Perches		    $prevline =~ /^\+\treturn\s*;\s*$/ &&
4449b43ae21bSJoe Perches		    $linenr >= 3 &&
4450b43ae21bSJoe Perches		    $lines[$linenr - 3] =~ /^[ +]/ &&
4451b43ae21bSJoe Perches		    $lines[$linenr - 3] !~ /^[ +]\s*$Ident\s*:/) {
44529819cf25SJoe Perches			WARN("RETURN_VOID",
4453b43ae21bSJoe Perches			     "void function return statements are not generally useful\n" . $hereprev);
44549819cf25SJoe Perches               }
44559819cf25SJoe Perches
4456189248d8SJoe Perches# if statements using unnecessary parentheses - ie: if ((foo == bar))
4457189248d8SJoe Perches		if ($^V && $^V ge 5.10.0 &&
4458189248d8SJoe Perches		    $line =~ /\bif\s*((?:\(\s*){2,})/) {
4459189248d8SJoe Perches			my $openparens = $1;
4460189248d8SJoe Perches			my $count = $openparens =~ tr@\(@\(@;
4461189248d8SJoe Perches			my $msg = "";
4462189248d8SJoe Perches			if ($line =~ /\bif\s*(?:\(\s*){$count,$count}$LvalOrFunc\s*($Compare)\s*$LvalOrFunc(?:\s*\)){$count,$count}/) {
4463189248d8SJoe Perches				my $comp = $4;	#Not $1 because of $LvalOrFunc
4464189248d8SJoe Perches				$msg = " - maybe == should be = ?" if ($comp eq "==");
4465189248d8SJoe Perches				WARN("UNNECESSARY_PARENTHESES",
4466189248d8SJoe Perches				     "Unnecessary parentheses$msg\n" . $herecurr);
4467189248d8SJoe Perches			}
4468189248d8SJoe Perches		}
4469189248d8SJoe Perches
4470c5595fa2SJoe Perches# comparisons with a constant or upper case identifier on the left
4471c5595fa2SJoe Perches#	avoid cases like "foo + BAR < baz"
4472c5595fa2SJoe Perches#	only fix matches surrounded by parentheses to avoid incorrect
4473c5595fa2SJoe Perches#	conversions like "FOO < baz() + 5" being "misfixed" to "baz() > FOO + 5"
4474c5595fa2SJoe Perches		if ($^V && $^V ge 5.10.0 &&
4475c5595fa2SJoe Perches		    $line =~ /^\+(.*)\b($Constant|[A-Z_][A-Z0-9_]*)\s*($Compare)\s*($LvalOrFunc)/) {
4476c5595fa2SJoe Perches			my $lead = $1;
4477c5595fa2SJoe Perches			my $const = $2;
4478c5595fa2SJoe Perches			my $comp = $3;
4479c5595fa2SJoe Perches			my $to = $4;
4480c5595fa2SJoe Perches			my $newcomp = $comp;
4481f39e1769SJoe Perches			if ($lead !~ /(?:$Operators|\.)\s*$/ &&
4482c5595fa2SJoe Perches			    $to !~ /^(?:Constant|[A-Z_][A-Z0-9_]*)$/ &&
4483c5595fa2SJoe Perches			    WARN("CONSTANT_COMPARISON",
4484c5595fa2SJoe Perches				 "Comparisons should place the constant on the right side of the test\n" . $herecurr) &&
4485c5595fa2SJoe Perches			    $fix) {
4486c5595fa2SJoe Perches				if ($comp eq "<") {
4487c5595fa2SJoe Perches					$newcomp = ">";
4488c5595fa2SJoe Perches				} elsif ($comp eq "<=") {
4489c5595fa2SJoe Perches					$newcomp = ">=";
4490c5595fa2SJoe Perches				} elsif ($comp eq ">") {
4491c5595fa2SJoe Perches					$newcomp = "<";
4492c5595fa2SJoe Perches				} elsif ($comp eq ">=") {
4493c5595fa2SJoe Perches					$newcomp = "<=";
4494c5595fa2SJoe Perches				}
4495c5595fa2SJoe Perches				$fixed[$fixlinenr] =~ s/\(\s*\Q$const\E\s*$Compare\s*\Q$to\E\s*\)/($to $newcomp $const)/;
4496c5595fa2SJoe Perches			}
4497c5595fa2SJoe Perches		}
4498c5595fa2SJoe Perches
4499f34e4a4fSJoe Perches# Return of what appears to be an errno should normally be negative
4500f34e4a4fSJoe Perches		if ($sline =~ /\breturn(?:\s*\(+\s*|\s+)(E[A-Z]+)(?:\s*\)+\s*|\s*)[;:,]/) {
450153a3c448SAndy Whitcroft			my $name = $1;
450253a3c448SAndy Whitcroft			if ($name ne 'EOF' && $name ne 'ERROR') {
4503000d1cc1SJoe Perches				WARN("USE_NEGATIVE_ERRNO",
4504f34e4a4fSJoe Perches				     "return of an errno should typically be negative (ie: return -$1)\n" . $herecurr);
450553a3c448SAndy Whitcroft			}
450653a3c448SAndy Whitcroft		}
4507c45dcabdSAndy Whitcroft
45080a920b5bSAndy Whitcroft# Need a space before open parenthesis after if, while etc
45094a0df2efSAndy Whitcroft		if ($line =~ /\b(if|while|for|switch)\(/) {
45103705ce5bSJoe Perches			if (ERROR("SPACING",
45113705ce5bSJoe Perches				  "space required before the open parenthesis '('\n" . $herecurr) &&
45123705ce5bSJoe Perches			    $fix) {
4513194f66fcSJoe Perches				$fixed[$fixlinenr] =~
45143705ce5bSJoe Perches				    s/\b(if|while|for|switch)\(/$1 \(/;
45153705ce5bSJoe Perches			}
45160a920b5bSAndy Whitcroft		}
45170a920b5bSAndy Whitcroft
4518f5fe35ddSAndy Whitcroft# Check for illegal assignment in if conditional -- and check for trailing
4519f5fe35ddSAndy Whitcroft# statements after the conditional.
4520170d3a22SAndy Whitcroft		if ($line =~ /do\s*(?!{)/) {
45213e469cdcSAndy Whitcroft			($stat, $cond, $line_nr_next, $remain_next, $off_next) =
45223e469cdcSAndy Whitcroft				ctx_statement_block($linenr, $realcnt, 0)
45233e469cdcSAndy Whitcroft					if (!defined $stat);
4524170d3a22SAndy Whitcroft			my ($stat_next) = ctx_statement_block($line_nr_next,
4525170d3a22SAndy Whitcroft						$remain_next, $off_next);
4526170d3a22SAndy Whitcroft			$stat_next =~ s/\n./\n /g;
4527170d3a22SAndy Whitcroft			##print "stat<$stat> stat_next<$stat_next>\n";
4528170d3a22SAndy Whitcroft
4529170d3a22SAndy Whitcroft			if ($stat_next =~ /^\s*while\b/) {
4530170d3a22SAndy Whitcroft				# If the statement carries leading newlines,
4531170d3a22SAndy Whitcroft				# then count those as offsets.
4532170d3a22SAndy Whitcroft				my ($whitespace) =
4533170d3a22SAndy Whitcroft					($stat_next =~ /^((?:\s*\n[+-])*\s*)/s);
4534170d3a22SAndy Whitcroft				my $offset =
4535170d3a22SAndy Whitcroft					statement_rawlines($whitespace) - 1;
4536170d3a22SAndy Whitcroft
4537170d3a22SAndy Whitcroft				$suppress_whiletrailers{$line_nr_next +
4538170d3a22SAndy Whitcroft								$offset} = 1;
4539170d3a22SAndy Whitcroft			}
4540170d3a22SAndy Whitcroft		}
4541170d3a22SAndy Whitcroft		if (!defined $suppress_whiletrailers{$linenr} &&
4542c11230f4SJoe Perches		    defined($stat) && defined($cond) &&
4543170d3a22SAndy Whitcroft		    $line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) {
4544171ae1a4SAndy Whitcroft			my ($s, $c) = ($stat, $cond);
45458905a67cSAndy Whitcroft
4546b53c8e10SAndy Whitcroft			if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/s) {
4547000d1cc1SJoe Perches				ERROR("ASSIGN_IN_IF",
4548000d1cc1SJoe Perches				      "do not use assignment in if condition\n" . $herecurr);
45498905a67cSAndy Whitcroft			}
45508905a67cSAndy Whitcroft
45518905a67cSAndy Whitcroft			# Find out what is on the end of the line after the
45528905a67cSAndy Whitcroft			# conditional.
4553773647a0SAndy Whitcroft			substr($s, 0, length($c), '');
45548905a67cSAndy Whitcroft			$s =~ s/\n.*//g;
455513214adfSAndy Whitcroft			$s =~ s/$;//g; 	# Remove any comments
455653210168SAndy Whitcroft			if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ &&
455753210168SAndy Whitcroft			    $c !~ /}\s*while\s*/)
4558773647a0SAndy Whitcroft			{
4559bb44ad39SAndy Whitcroft				# Find out how long the conditional actually is.
4560bb44ad39SAndy Whitcroft				my @newlines = ($c =~ /\n/gs);
4561bb44ad39SAndy Whitcroft				my $cond_lines = 1 + $#newlines;
456242bdf74cSHidetoshi Seto				my $stat_real = '';
4563bb44ad39SAndy Whitcroft
456442bdf74cSHidetoshi Seto				$stat_real = raw_line($linenr, $cond_lines)
456542bdf74cSHidetoshi Seto							. "\n" if ($cond_lines);
4566bb44ad39SAndy Whitcroft				if (defined($stat_real) && $cond_lines > 1) {
4567bb44ad39SAndy Whitcroft					$stat_real = "[...]\n$stat_real";
4568bb44ad39SAndy Whitcroft				}
4569bb44ad39SAndy Whitcroft
4570000d1cc1SJoe Perches				ERROR("TRAILING_STATEMENTS",
4571000d1cc1SJoe Perches				      "trailing statements should be on next line\n" . $herecurr . $stat_real);
45728905a67cSAndy Whitcroft			}
45738905a67cSAndy Whitcroft		}
45748905a67cSAndy Whitcroft
457513214adfSAndy Whitcroft# Check for bitwise tests written as boolean
457613214adfSAndy Whitcroft		if ($line =~ /
457713214adfSAndy Whitcroft			(?:
457813214adfSAndy Whitcroft				(?:\[|\(|\&\&|\|\|)
457913214adfSAndy Whitcroft				\s*0[xX][0-9]+\s*
458013214adfSAndy Whitcroft				(?:\&\&|\|\|)
458113214adfSAndy Whitcroft			|
458213214adfSAndy Whitcroft				(?:\&\&|\|\|)
458313214adfSAndy Whitcroft				\s*0[xX][0-9]+\s*
458413214adfSAndy Whitcroft				(?:\&\&|\|\||\)|\])
458513214adfSAndy Whitcroft			)/x)
458613214adfSAndy Whitcroft		{
4587000d1cc1SJoe Perches			WARN("HEXADECIMAL_BOOLEAN_TEST",
4588000d1cc1SJoe Perches			     "boolean test with hexadecimal, perhaps just 1 \& or \|?\n" . $herecurr);
458913214adfSAndy Whitcroft		}
459013214adfSAndy Whitcroft
45918905a67cSAndy Whitcroft# if and else should not have general statements after it
459213214adfSAndy Whitcroft		if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/) {
459313214adfSAndy Whitcroft			my $s = $1;
459413214adfSAndy Whitcroft			$s =~ s/$;//g; 	# Remove any comments
459513214adfSAndy Whitcroft			if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) {
4596000d1cc1SJoe Perches				ERROR("TRAILING_STATEMENTS",
4597000d1cc1SJoe Perches				      "trailing statements should be on next line\n" . $herecurr);
45980a920b5bSAndy Whitcroft			}
459913214adfSAndy Whitcroft		}
460039667782SAndy Whitcroft# if should not continue a brace
460139667782SAndy Whitcroft		if ($line =~ /}\s*if\b/) {
4602000d1cc1SJoe Perches			ERROR("TRAILING_STATEMENTS",
4603048b123fSRasmus Villemoes			      "trailing statements should be on next line (or did you mean 'else if'?)\n" .
460439667782SAndy Whitcroft				$herecurr);
460539667782SAndy Whitcroft		}
4606a1080bf8SAndy Whitcroft# case and default should not have general statements after them
4607a1080bf8SAndy Whitcroft		if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
4608a1080bf8SAndy Whitcroft		    $line !~ /\G(?:
46093fef12d6SAndy Whitcroft			(?:\s*$;*)(?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$|
4610a1080bf8SAndy Whitcroft			\s*return\s+
4611a1080bf8SAndy Whitcroft		    )/xg)
4612a1080bf8SAndy Whitcroft		{
4613000d1cc1SJoe Perches			ERROR("TRAILING_STATEMENTS",
4614000d1cc1SJoe Perches			      "trailing statements should be on next line\n" . $herecurr);
4615a1080bf8SAndy Whitcroft		}
46160a920b5bSAndy Whitcroft
46170a920b5bSAndy Whitcroft		# Check for }<nl>else {, these must be at the same
46180a920b5bSAndy Whitcroft		# indent level to be relevant to each other.
46198b8856f4SJoe Perches		if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ &&
46200a920b5bSAndy Whitcroft		    $previndent == $indent) {
46218b8856f4SJoe Perches			if (ERROR("ELSE_AFTER_BRACE",
46228b8856f4SJoe Perches				  "else should follow close brace '}'\n" . $hereprev) &&
46238b8856f4SJoe Perches			    $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
46248b8856f4SJoe Perches				fix_delete_line($fixlinenr - 1, $prevrawline);
46258b8856f4SJoe Perches				fix_delete_line($fixlinenr, $rawline);
46268b8856f4SJoe Perches				my $fixedline = $prevrawline;
46278b8856f4SJoe Perches				$fixedline =~ s/}\s*$//;
46288b8856f4SJoe Perches				if ($fixedline !~ /^\+\s*$/) {
46298b8856f4SJoe Perches					fix_insert_line($fixlinenr, $fixedline);
46308b8856f4SJoe Perches				}
46318b8856f4SJoe Perches				$fixedline = $rawline;
46328b8856f4SJoe Perches				$fixedline =~ s/^(.\s*)else/$1} else/;
46338b8856f4SJoe Perches				fix_insert_line($fixlinenr, $fixedline);
46348b8856f4SJoe Perches			}
46350a920b5bSAndy Whitcroft		}
46360a920b5bSAndy Whitcroft
46378b8856f4SJoe Perches		if ($prevline=~/}\s*$/ and $line=~/^.\s*while\s*/ &&
4638c2fdda0dSAndy Whitcroft		    $previndent == $indent) {
4639c2fdda0dSAndy Whitcroft			my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0);
4640c2fdda0dSAndy Whitcroft
4641c2fdda0dSAndy Whitcroft			# Find out what is on the end of the line after the
4642c2fdda0dSAndy Whitcroft			# conditional.
4643773647a0SAndy Whitcroft			substr($s, 0, length($c), '');
4644c2fdda0dSAndy Whitcroft			$s =~ s/\n.*//g;
4645c2fdda0dSAndy Whitcroft
4646c2fdda0dSAndy Whitcroft			if ($s =~ /^\s*;/) {
46478b8856f4SJoe Perches				if (ERROR("WHILE_AFTER_BRACE",
46488b8856f4SJoe Perches					  "while should follow close brace '}'\n" . $hereprev) &&
46498b8856f4SJoe Perches				    $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
46508b8856f4SJoe Perches					fix_delete_line($fixlinenr - 1, $prevrawline);
46518b8856f4SJoe Perches					fix_delete_line($fixlinenr, $rawline);
46528b8856f4SJoe Perches					my $fixedline = $prevrawline;
46538b8856f4SJoe Perches					my $trailing = $rawline;
46548b8856f4SJoe Perches					$trailing =~ s/^\+//;
46558b8856f4SJoe Perches					$trailing = trim($trailing);
46568b8856f4SJoe Perches					$fixedline =~ s/}\s*$/} $trailing/;
46578b8856f4SJoe Perches					fix_insert_line($fixlinenr, $fixedline);
46588b8856f4SJoe Perches				}
4659c2fdda0dSAndy Whitcroft			}
4660c2fdda0dSAndy Whitcroft		}
4661c2fdda0dSAndy Whitcroft
466295e2c602SJoe Perches#Specific variable tests
4663323c1260SJoe Perches		while ($line =~ m{($Constant|$Lval)}g) {
4664323c1260SJoe Perches			my $var = $1;
466595e2c602SJoe Perches
466695e2c602SJoe Perches#gcc binary extension
466795e2c602SJoe Perches			if ($var =~ /^$Binary$/) {
4668d5e616fcSJoe Perches				if (WARN("GCC_BINARY_CONSTANT",
4669d5e616fcSJoe Perches					 "Avoid gcc v4.3+ binary constant extension: <$var>\n" . $herecurr) &&
4670d5e616fcSJoe Perches				    $fix) {
4671d5e616fcSJoe Perches					my $hexval = sprintf("0x%x", oct($var));
4672194f66fcSJoe Perches					$fixed[$fixlinenr] =~
4673d5e616fcSJoe Perches					    s/\b$var\b/$hexval/;
4674d5e616fcSJoe Perches				}
467595e2c602SJoe Perches			}
467695e2c602SJoe Perches
467795e2c602SJoe Perches#CamelCase
4678807bd26cSJoe Perches			if ($var !~ /^$Constant$/ &&
4679be79794bSJoe Perches			    $var =~ /[A-Z][a-z]|[a-z][A-Z]/ &&
468022735ce8SJoe Perches#Ignore Page<foo> variants
4681807bd26cSJoe Perches			    $var !~ /^(?:Clear|Set|TestClear|TestSet|)Page[A-Z]/ &&
468222735ce8SJoe Perches#Ignore SI style variants like nS, mV and dB (ie: max_uV, regulator_min_uA_show)
4683f5123576SJulius Werner			    $var !~ /^(?:[a-z_]*?)_?[a-z][A-Z](?:_[a-z_]+)?$/ &&
4684f5123576SJulius Werner#Ignore some three character SI units explicitly, like MiB and KHz
4685f5123576SJulius Werner			    $var !~ /^(?:[a-z_]*?)_?(?:[KMGT]iB|[KMGT]?Hz)(?:_[a-z_]+)?$/) {
46867e781f67SJoe Perches				while ($var =~ m{($Ident)}g) {
46877e781f67SJoe Perches					my $word = $1;
46887e781f67SJoe Perches					next if ($word !~ /[A-Z][a-z]|[a-z][A-Z]/);
4689d8b07710SJoe Perches					if ($check) {
4690d8b07710SJoe Perches						seed_camelcase_includes();
4691d8b07710SJoe Perches						if (!$file && !$camelcase_file_seeded) {
4692d8b07710SJoe Perches							seed_camelcase_file($realfile);
4693d8b07710SJoe Perches							$camelcase_file_seeded = 1;
4694d8b07710SJoe Perches						}
4695d8b07710SJoe Perches					}
46967e781f67SJoe Perches					if (!defined $camelcase{$word}) {
46977e781f67SJoe Perches						$camelcase{$word} = 1;
4698be79794bSJoe Perches						CHK("CAMELCASE",
46997e781f67SJoe Perches						    "Avoid CamelCase: <$word>\n" . $herecurr);
47007e781f67SJoe Perches					}
4701323c1260SJoe Perches				}
4702323c1260SJoe Perches			}
47033445686aSJoe Perches		}
47040a920b5bSAndy Whitcroft
47050a920b5bSAndy Whitcroft#no spaces allowed after \ in define
4706d5e616fcSJoe Perches		if ($line =~ /\#\s*define.*\\\s+$/) {
4707d5e616fcSJoe Perches			if (WARN("WHITESPACE_AFTER_LINE_CONTINUATION",
4708d5e616fcSJoe Perches				 "Whitespace after \\ makes next lines useless\n" . $herecurr) &&
4709d5e616fcSJoe Perches			    $fix) {
4710194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\s+$//;
4711d5e616fcSJoe Perches			}
47120a920b5bSAndy Whitcroft		}
47130a920b5bSAndy Whitcroft
47140e212e0aSFabian Frederick# warn if <asm/foo.h> is #included and <linux/foo.h> is available and includes
47150e212e0aSFabian Frederick# itself <asm/foo.h> (uses RAW line)
4716c45dcabdSAndy Whitcroft		if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) {
4717e09dec48SAndy Whitcroft			my $file = "$1.h";
4718e09dec48SAndy Whitcroft			my $checkfile = "include/linux/$file";
4719e09dec48SAndy Whitcroft			if (-f "$root/$checkfile" &&
4720e09dec48SAndy Whitcroft			    $realfile ne $checkfile &&
47217840a94cSWolfram Sang			    $1 !~ /$allowed_asm_includes/)
4722c45dcabdSAndy Whitcroft			{
47230e212e0aSFabian Frederick				my $asminclude = `grep -Ec "#include\\s+<asm/$file>" $root/$checkfile`;
47240e212e0aSFabian Frederick				if ($asminclude > 0) {
4725e09dec48SAndy Whitcroft					if ($realfile =~ m{^arch/}) {
4726000d1cc1SJoe Perches						CHK("ARCH_INCLUDE_LINUX",
4727000d1cc1SJoe Perches						    "Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
4728e09dec48SAndy Whitcroft					} else {
4729000d1cc1SJoe Perches						WARN("INCLUDE_LINUX",
4730000d1cc1SJoe Perches						     "Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
4731e09dec48SAndy Whitcroft					}
47320a920b5bSAndy Whitcroft				}
47330a920b5bSAndy Whitcroft			}
47340e212e0aSFabian Frederick		}
47350a920b5bSAndy Whitcroft
4736653d4876SAndy Whitcroft# multi-statement macros should be enclosed in a do while loop, grab the
4737653d4876SAndy Whitcroft# first statement and ensure its the whole macro if its not enclosed
4738cf655043SAndy Whitcroft# in a known good container
4739b8f96a31SAndy Whitcroft		if ($realfile !~ m@/vmlinux.lds.h$@ &&
4740b8f96a31SAndy Whitcroft		    $line =~ /^.\s*\#\s*define\s*$Ident(\()?/) {
4741d8aaf121SAndy Whitcroft			my $ln = $linenr;
4742d8aaf121SAndy Whitcroft			my $cnt = $realcnt;
4743c45dcabdSAndy Whitcroft			my ($off, $dstat, $dcond, $rest);
4744c45dcabdSAndy Whitcroft			my $ctx = '';
474508a2843eSJoe Perches			my $has_flow_statement = 0;
474608a2843eSJoe Perches			my $has_arg_concat = 0;
4747c45dcabdSAndy Whitcroft			($dstat, $dcond, $ln, $cnt, $off) =
4748f74bd194SAndy Whitcroft				ctx_statement_block($linenr, $realcnt, 0);
4749f74bd194SAndy Whitcroft			$ctx = $dstat;
4750c45dcabdSAndy Whitcroft			#print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n";
4751a3bb97a7SAndy Whitcroft			#print "LINE<$lines[$ln-1]> len<" . length($lines[$ln-1]) . "\n";
4752c45dcabdSAndy Whitcroft
475308a2843eSJoe Perches			$has_flow_statement = 1 if ($ctx =~ /\b(goto|return)\b/);
475462e15a6dSJoe Perches			$has_arg_concat = 1 if ($ctx =~ /\#\#/ && $ctx !~ /\#\#\s*(?:__VA_ARGS__|args)\b/);
475508a2843eSJoe Perches
4756*f59b64bfSJoe Perches			$dstat =~ s/^.\s*\#\s*define\s+$Ident(\([^\)]*\))?\s*//;
4757*f59b64bfSJoe Perches			my $define_args = $1;
4758*f59b64bfSJoe Perches			my $define_stmt = $dstat;
4759*f59b64bfSJoe Perches			my @def_args = ();
4760*f59b64bfSJoe Perches
4761*f59b64bfSJoe Perches			if (defined $define_args && $define_args ne "") {
4762*f59b64bfSJoe Perches				$define_args = substr($define_args, 1, length($define_args) - 2);
4763*f59b64bfSJoe Perches				$define_args =~ s/\s*//g;
4764*f59b64bfSJoe Perches				@def_args = split(",", $define_args);
4765*f59b64bfSJoe Perches			}
4766*f59b64bfSJoe Perches
4767292f1a9bSAndy Whitcroft			$dstat =~ s/$;//g;
4768c45dcabdSAndy Whitcroft			$dstat =~ s/\\\n.//g;
4769c45dcabdSAndy Whitcroft			$dstat =~ s/^\s*//s;
4770c45dcabdSAndy Whitcroft			$dstat =~ s/\s*$//s;
4771c45dcabdSAndy Whitcroft
4772c45dcabdSAndy Whitcroft			# Flatten any parentheses and braces
4773bf30d6edSAndy Whitcroft			while ($dstat =~ s/\([^\(\)]*\)/1/ ||
4774bf30d6edSAndy Whitcroft			       $dstat =~ s/\{[^\{\}]*\}/1/ ||
47756b10df42SVladimir Zapolskiy			       $dstat =~ s/.\[[^\[\]]*\]/1/)
4776bf30d6edSAndy Whitcroft			{
4777c45dcabdSAndy Whitcroft			}
4778c45dcabdSAndy Whitcroft
4779e45bab8eSAndy Whitcroft			# Flatten any obvious string concatentation.
478033acb54aSJoe Perches			while ($dstat =~ s/($String)\s*$Ident/$1/ ||
478133acb54aSJoe Perches			       $dstat =~ s/$Ident\s*($String)/$1/)
4782e45bab8eSAndy Whitcroft			{
4783e45bab8eSAndy Whitcroft			}
4784e45bab8eSAndy Whitcroft
478542e15293SJoe Perches			# Make asm volatile uses seem like a generic function
478642e15293SJoe Perches			$dstat =~ s/\b_*asm_*\s+_*volatile_*\b/asm_volatile/g;
478742e15293SJoe Perches
4788c45dcabdSAndy Whitcroft			my $exceptions = qr{
4789c45dcabdSAndy Whitcroft				$Declare|
4790c45dcabdSAndy Whitcroft				module_param_named|
4791a0a0a7a9SKees Cook				MODULE_PARM_DESC|
4792c45dcabdSAndy Whitcroft				DECLARE_PER_CPU|
4793c45dcabdSAndy Whitcroft				DEFINE_PER_CPU|
4794383099fdSAndy Whitcroft				__typeof__\(|
479522fd2d3eSStefani Seibold				union|
479622fd2d3eSStefani Seibold				struct|
4797ea71a0a0SAndy Whitcroft				\.$Ident\s*=\s*|
47986b10df42SVladimir Zapolskiy				^\"|\"$|
47996b10df42SVladimir Zapolskiy				^\[
4800c45dcabdSAndy Whitcroft			}x;
48015eaa20b9SAndy Whitcroft			#print "REST<$rest> dstat<$dstat> ctx<$ctx>\n";
4802*f59b64bfSJoe Perches
4803*f59b64bfSJoe Perches			$ctx =~ s/\n*$//;
4804*f59b64bfSJoe Perches			my $herectx = $here . "\n";
4805*f59b64bfSJoe Perches			my $stmt_cnt = statement_rawlines($ctx);
4806*f59b64bfSJoe Perches
4807*f59b64bfSJoe Perches			for (my $n = 0; $n < $stmt_cnt; $n++) {
4808*f59b64bfSJoe Perches				$herectx .= raw_line($linenr, $n) . "\n";
4809*f59b64bfSJoe Perches			}
4810*f59b64bfSJoe Perches
4811f74bd194SAndy Whitcroft			if ($dstat ne '' &&
4812f74bd194SAndy Whitcroft			    $dstat !~ /^(?:$Ident|-?$Constant),$/ &&			# 10, // foo(),
4813f74bd194SAndy Whitcroft			    $dstat !~ /^(?:$Ident|-?$Constant);$/ &&			# foo();
48143cc4b1c3SJoe Perches			    $dstat !~ /^[!~-]?(?:$Lval|$Constant)$/ &&		# 10 // foo() // !foo // ~foo // -foo // foo->bar // foo.bar->baz
4815356fd398SJoe Perches			    $dstat !~ /^'X'$/ && $dstat !~ /^'XX'$/ &&			# character constants
4816f74bd194SAndy Whitcroft			    $dstat !~ /$exceptions/ &&
4817f74bd194SAndy Whitcroft			    $dstat !~ /^\.$Ident\s*=/ &&				# .foo =
4818e942e2c3SJoe Perches			    $dstat !~ /^(?:\#\s*$Ident|\#\s*$Constant)\s*$/ &&		# stringification #foo
481972f115f9SAndy Whitcroft			    $dstat !~ /^do\s*$Constant\s*while\s*$Constant;?$/ &&	# do {...} while (...); // do {...} while (...)
4820f74bd194SAndy Whitcroft			    $dstat !~ /^for\s*$Constant$/ &&				# for (...)
4821f74bd194SAndy Whitcroft			    $dstat !~ /^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ &&	# for (...) bar()
4822f74bd194SAndy Whitcroft			    $dstat !~ /^do\s*{/ &&					# do {...
48234e5d56bdSEddie Kovsky			    $dstat !~ /^\(\{/ &&						# ({...
4824f95a7e6aSJoe Perches			    $ctx !~ /^.\s*#\s*define\s+TRACE_(?:SYSTEM|INCLUDE_FILE|INCLUDE_PATH)\b/)
4825c45dcabdSAndy Whitcroft			{
4826c45dcabdSAndy Whitcroft
4827f74bd194SAndy Whitcroft				if ($dstat =~ /;/) {
4828f74bd194SAndy Whitcroft					ERROR("MULTISTATEMENT_MACRO_USE_DO_WHILE",
4829f74bd194SAndy Whitcroft					      "Macros with multiple statements should be enclosed in a do - while loop\n" . "$herectx");
4830f74bd194SAndy Whitcroft				} else {
4831000d1cc1SJoe Perches					ERROR("COMPLEX_MACRO",
4832388982b5SAndrew Morton					      "Macros with complex values should be enclosed in parentheses\n" . "$herectx");
4833d8aaf121SAndy Whitcroft				}
4834*f59b64bfSJoe Perches
4835*f59b64bfSJoe Perches			}
4836*f59b64bfSJoe Perches# check if any macro arguments are reused (ignore '...' and 'type')
4837*f59b64bfSJoe Perches			foreach my $arg (@def_args) {
4838*f59b64bfSJoe Perches			        next if ($arg =~ /\.\.\./);
4839*f59b64bfSJoe Perches			        next if ($arg =~ /^type$/);
4840*f59b64bfSJoe Perches				my $tmp = $define_stmt;
4841*f59b64bfSJoe Perches				$tmp =~ s/\b(typeof|__typeof__|__builtin\w+|typecheck\s*\(\s*$Type\s*,|\#+)\s*\(*\s*$arg\s*\)*\b//g;
4842*f59b64bfSJoe Perches				$tmp =~ s/\#\s*$arg\b//g;
4843*f59b64bfSJoe Perches				$tmp =~ s/\b$arg\s*\#\#//g;
4844*f59b64bfSJoe Perches				my $use_cnt = $tmp =~ s/\b$arg\b//g;
4845*f59b64bfSJoe Perches				if ($use_cnt > 1) {
4846*f59b64bfSJoe Perches					CHK("MACRO_ARG_REUSE",
4847*f59b64bfSJoe Perches					    "Macro argument reuse '$arg' - possible side-effects?\n" . "$herectx");
4848*f59b64bfSJoe Perches				}
48490a920b5bSAndy Whitcroft			}
48505023d347SJoe Perches
485108a2843eSJoe Perches# check for macros with flow control, but without ## concatenation
485208a2843eSJoe Perches# ## concatenation is commonly a macro that defines a function so ignore those
485308a2843eSJoe Perches			if ($has_flow_statement && !$has_arg_concat) {
485408a2843eSJoe Perches				my $herectx = $here . "\n";
485508a2843eSJoe Perches				my $cnt = statement_rawlines($ctx);
485608a2843eSJoe Perches
485708a2843eSJoe Perches				for (my $n = 0; $n < $cnt; $n++) {
485808a2843eSJoe Perches					$herectx .= raw_line($linenr, $n) . "\n";
485908a2843eSJoe Perches				}
486008a2843eSJoe Perches				WARN("MACRO_WITH_FLOW_CONTROL",
486108a2843eSJoe Perches				     "Macros with flow control statements should be avoided\n" . "$herectx");
486208a2843eSJoe Perches			}
486308a2843eSJoe Perches
4864481eb486SJoe Perches# check for line continuations outside of #defines, preprocessor #, and asm
48655023d347SJoe Perches
48665023d347SJoe Perches		} else {
48675023d347SJoe Perches			if ($prevline !~ /^..*\\$/ &&
4868481eb486SJoe Perches			    $line !~ /^\+\s*\#.*\\$/ &&		# preprocessor
4869481eb486SJoe Perches			    $line !~ /^\+.*\b(__asm__|asm)\b.*\\$/ &&	# asm
48705023d347SJoe Perches			    $line =~ /^\+.*\\$/) {
48715023d347SJoe Perches				WARN("LINE_CONTINUATIONS",
48725023d347SJoe Perches				     "Avoid unnecessary line continuations\n" . $herecurr);
48735023d347SJoe Perches			}
4874653d4876SAndy Whitcroft		}
48750a920b5bSAndy Whitcroft
4876b13edf7fSJoe Perches# do {} while (0) macro tests:
4877b13edf7fSJoe Perches# single-statement macros do not need to be enclosed in do while (0) loop,
4878b13edf7fSJoe Perches# macro should not end with a semicolon
4879b13edf7fSJoe Perches		if ($^V && $^V ge 5.10.0 &&
4880b13edf7fSJoe Perches		    $realfile !~ m@/vmlinux.lds.h$@ &&
4881b13edf7fSJoe Perches		    $line =~ /^.\s*\#\s*define\s+$Ident(\()?/) {
4882b13edf7fSJoe Perches			my $ln = $linenr;
4883b13edf7fSJoe Perches			my $cnt = $realcnt;
4884b13edf7fSJoe Perches			my ($off, $dstat, $dcond, $rest);
4885b13edf7fSJoe Perches			my $ctx = '';
4886b13edf7fSJoe Perches			($dstat, $dcond, $ln, $cnt, $off) =
4887b13edf7fSJoe Perches				ctx_statement_block($linenr, $realcnt, 0);
4888b13edf7fSJoe Perches			$ctx = $dstat;
4889b13edf7fSJoe Perches
4890b13edf7fSJoe Perches			$dstat =~ s/\\\n.//g;
48911b36b201SJoe Perches			$dstat =~ s/$;/ /g;
4892b13edf7fSJoe Perches
4893b13edf7fSJoe Perches			if ($dstat =~ /^\+\s*#\s*define\s+$Ident\s*${balanced_parens}\s*do\s*{(.*)\s*}\s*while\s*\(\s*0\s*\)\s*([;\s]*)\s*$/) {
4894b13edf7fSJoe Perches				my $stmts = $2;
4895b13edf7fSJoe Perches				my $semis = $3;
4896b13edf7fSJoe Perches
4897b13edf7fSJoe Perches				$ctx =~ s/\n*$//;
4898b13edf7fSJoe Perches				my $cnt = statement_rawlines($ctx);
4899b13edf7fSJoe Perches				my $herectx = $here . "\n";
4900b13edf7fSJoe Perches
4901b13edf7fSJoe Perches				for (my $n = 0; $n < $cnt; $n++) {
4902b13edf7fSJoe Perches					$herectx .= raw_line($linenr, $n) . "\n";
4903b13edf7fSJoe Perches				}
4904b13edf7fSJoe Perches
4905ac8e97f8SJoe Perches				if (($stmts =~ tr/;/;/) == 1 &&
4906ac8e97f8SJoe Perches				    $stmts !~ /^\s*(if|while|for|switch)\b/) {
4907b13edf7fSJoe Perches					WARN("SINGLE_STATEMENT_DO_WHILE_MACRO",
4908b13edf7fSJoe Perches					     "Single statement macros should not use a do {} while (0) loop\n" . "$herectx");
4909b13edf7fSJoe Perches				}
4910b13edf7fSJoe Perches				if (defined $semis && $semis ne "") {
4911b13edf7fSJoe Perches					WARN("DO_WHILE_MACRO_WITH_TRAILING_SEMICOLON",
4912b13edf7fSJoe Perches					     "do {} while (0) macros should not be semicolon terminated\n" . "$herectx");
4913b13edf7fSJoe Perches				}
4914f5ef95b1SJoe Perches			} elsif ($dstat =~ /^\+\s*#\s*define\s+$Ident.*;\s*$/) {
4915f5ef95b1SJoe Perches				$ctx =~ s/\n*$//;
4916f5ef95b1SJoe Perches				my $cnt = statement_rawlines($ctx);
4917f5ef95b1SJoe Perches				my $herectx = $here . "\n";
4918f5ef95b1SJoe Perches
4919f5ef95b1SJoe Perches				for (my $n = 0; $n < $cnt; $n++) {
4920f5ef95b1SJoe Perches					$herectx .= raw_line($linenr, $n) . "\n";
4921f5ef95b1SJoe Perches				}
4922f5ef95b1SJoe Perches
4923f5ef95b1SJoe Perches				WARN("TRAILING_SEMICOLON",
4924f5ef95b1SJoe Perches				     "macros should not use a trailing semicolon\n" . "$herectx");
4925b13edf7fSJoe Perches			}
4926b13edf7fSJoe Perches		}
4927b13edf7fSJoe Perches
4928080ba929SMike Frysinger# make sure symbols are always wrapped with VMLINUX_SYMBOL() ...
4929080ba929SMike Frysinger# all assignments may have only one of the following with an assignment:
4930080ba929SMike Frysinger#	.
4931080ba929SMike Frysinger#	ALIGN(...)
4932080ba929SMike Frysinger#	VMLINUX_SYMBOL(...)
4933080ba929SMike Frysinger		if ($realfile eq 'vmlinux.lds.h' && $line =~ /(?:(?:^|\s)$Ident\s*=|=\s*$Ident(?:\s|$))/) {
4934000d1cc1SJoe Perches			WARN("MISSING_VMLINUX_SYMBOL",
4935000d1cc1SJoe Perches			     "vmlinux.lds.h needs VMLINUX_SYMBOL() around C-visible symbols\n" . $herecurr);
4936080ba929SMike Frysinger		}
4937080ba929SMike Frysinger
4938f0a594c1SAndy Whitcroft# check for redundant bracing round if etc
493913214adfSAndy Whitcroft		if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) {
494013214adfSAndy Whitcroft			my ($level, $endln, @chunks) =
4941cf655043SAndy Whitcroft				ctx_statement_full($linenr, $realcnt, 1);
494213214adfSAndy Whitcroft			#print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n";
4943cf655043SAndy Whitcroft			#print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n";
4944cf655043SAndy Whitcroft			if ($#chunks > 0 && $level == 0) {
4945aad4f614SJoe Perches				my @allowed = ();
4946aad4f614SJoe Perches				my $allow = 0;
494713214adfSAndy Whitcroft				my $seen = 0;
4948773647a0SAndy Whitcroft				my $herectx = $here . "\n";
4949cf655043SAndy Whitcroft				my $ln = $linenr - 1;
495013214adfSAndy Whitcroft				for my $chunk (@chunks) {
495113214adfSAndy Whitcroft					my ($cond, $block) = @{$chunk};
495213214adfSAndy Whitcroft
4953773647a0SAndy Whitcroft					# If the condition carries leading newlines, then count those as offsets.
4954773647a0SAndy Whitcroft					my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s);
4955773647a0SAndy Whitcroft					my $offset = statement_rawlines($whitespace) - 1;
4956773647a0SAndy Whitcroft
4957aad4f614SJoe Perches					$allowed[$allow] = 0;
4958773647a0SAndy Whitcroft					#print "COND<$cond> whitespace<$whitespace> offset<$offset>\n";
4959773647a0SAndy Whitcroft
4960773647a0SAndy Whitcroft					# We have looked at and allowed this specific line.
4961773647a0SAndy Whitcroft					$suppress_ifbraces{$ln + $offset} = 1;
4962773647a0SAndy Whitcroft
4963773647a0SAndy Whitcroft					$herectx .= "$rawlines[$ln + $offset]\n[...]\n";
4964cf655043SAndy Whitcroft					$ln += statement_rawlines($block) - 1;
4965cf655043SAndy Whitcroft
4966773647a0SAndy Whitcroft					substr($block, 0, length($cond), '');
496713214adfSAndy Whitcroft
496813214adfSAndy Whitcroft					$seen++ if ($block =~ /^\s*{/);
496913214adfSAndy Whitcroft
4970aad4f614SJoe Perches					#print "cond<$cond> block<$block> allowed<$allowed[$allow]>\n";
4971cf655043SAndy Whitcroft					if (statement_lines($cond) > 1) {
4972cf655043SAndy Whitcroft						#print "APW: ALLOWED: cond<$cond>\n";
4973aad4f614SJoe Perches						$allowed[$allow] = 1;
497413214adfSAndy Whitcroft					}
497513214adfSAndy Whitcroft					if ($block =~/\b(?:if|for|while)\b/) {
4976cf655043SAndy Whitcroft						#print "APW: ALLOWED: block<$block>\n";
4977aad4f614SJoe Perches						$allowed[$allow] = 1;
497813214adfSAndy Whitcroft					}
4979cf655043SAndy Whitcroft					if (statement_block_size($block) > 1) {
4980cf655043SAndy Whitcroft						#print "APW: ALLOWED: lines block<$block>\n";
4981aad4f614SJoe Perches						$allowed[$allow] = 1;
498213214adfSAndy Whitcroft					}
4983aad4f614SJoe Perches					$allow++;
498413214adfSAndy Whitcroft				}
4985aad4f614SJoe Perches				if ($seen) {
4986aad4f614SJoe Perches					my $sum_allowed = 0;
4987aad4f614SJoe Perches					foreach (@allowed) {
4988aad4f614SJoe Perches						$sum_allowed += $_;
4989aad4f614SJoe Perches					}
4990aad4f614SJoe Perches					if ($sum_allowed == 0) {
4991000d1cc1SJoe Perches						WARN("BRACES",
4992000d1cc1SJoe Perches						     "braces {} are not necessary for any arm of this statement\n" . $herectx);
4993aad4f614SJoe Perches					} elsif ($sum_allowed != $allow &&
4994aad4f614SJoe Perches						 $seen != $allow) {
4995aad4f614SJoe Perches						CHK("BRACES",
4996aad4f614SJoe Perches						    "braces {} should be used on all arms of this statement\n" . $herectx);
4997aad4f614SJoe Perches					}
499813214adfSAndy Whitcroft				}
499913214adfSAndy Whitcroft			}
500013214adfSAndy Whitcroft		}
5001773647a0SAndy Whitcroft		if (!defined $suppress_ifbraces{$linenr - 1} &&
500213214adfSAndy Whitcroft					$line =~ /\b(if|while|for|else)\b/) {
5003cf655043SAndy Whitcroft			my $allowed = 0;
5004f0a594c1SAndy Whitcroft
5005cf655043SAndy Whitcroft			# Check the pre-context.
5006cf655043SAndy Whitcroft			if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) {
5007cf655043SAndy Whitcroft				#print "APW: ALLOWED: pre<$1>\n";
5008cf655043SAndy Whitcroft				$allowed = 1;
5009f0a594c1SAndy Whitcroft			}
5010773647a0SAndy Whitcroft
5011773647a0SAndy Whitcroft			my ($level, $endln, @chunks) =
5012773647a0SAndy Whitcroft				ctx_statement_full($linenr, $realcnt, $-[0]);
5013773647a0SAndy Whitcroft
5014cf655043SAndy Whitcroft			# Check the condition.
5015cf655043SAndy Whitcroft			my ($cond, $block) = @{$chunks[0]};
5016773647a0SAndy Whitcroft			#print "CHECKING<$linenr> cond<$cond> block<$block>\n";
5017cf655043SAndy Whitcroft			if (defined $cond) {
5018773647a0SAndy Whitcroft				substr($block, 0, length($cond), '');
5019cf655043SAndy Whitcroft			}
5020cf655043SAndy Whitcroft			if (statement_lines($cond) > 1) {
5021cf655043SAndy Whitcroft				#print "APW: ALLOWED: cond<$cond>\n";
5022cf655043SAndy Whitcroft				$allowed = 1;
5023cf655043SAndy Whitcroft			}
5024cf655043SAndy Whitcroft			if ($block =~/\b(?:if|for|while)\b/) {
5025cf655043SAndy Whitcroft				#print "APW: ALLOWED: block<$block>\n";
5026cf655043SAndy Whitcroft				$allowed = 1;
5027cf655043SAndy Whitcroft			}
5028cf655043SAndy Whitcroft			if (statement_block_size($block) > 1) {
5029cf655043SAndy Whitcroft				#print "APW: ALLOWED: lines block<$block>\n";
5030cf655043SAndy Whitcroft				$allowed = 1;
5031cf655043SAndy Whitcroft			}
5032cf655043SAndy Whitcroft			# Check the post-context.
5033cf655043SAndy Whitcroft			if (defined $chunks[1]) {
5034cf655043SAndy Whitcroft				my ($cond, $block) = @{$chunks[1]};
5035cf655043SAndy Whitcroft				if (defined $cond) {
5036773647a0SAndy Whitcroft					substr($block, 0, length($cond), '');
5037cf655043SAndy Whitcroft				}
5038cf655043SAndy Whitcroft				if ($block =~ /^\s*\{/) {
5039cf655043SAndy Whitcroft					#print "APW: ALLOWED: chunk-1 block<$block>\n";
5040cf655043SAndy Whitcroft					$allowed = 1;
5041cf655043SAndy Whitcroft				}
5042cf655043SAndy Whitcroft			}
5043cf655043SAndy Whitcroft			if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
504469932487SJustin P. Mattock				my $herectx = $here . "\n";
5045f055663cSAndy Whitcroft				my $cnt = statement_rawlines($block);
5046cf655043SAndy Whitcroft
5047f055663cSAndy Whitcroft				for (my $n = 0; $n < $cnt; $n++) {
504869932487SJustin P. Mattock					$herectx .= raw_line($linenr, $n) . "\n";
5049cf655043SAndy Whitcroft				}
5050cf655043SAndy Whitcroft
5051000d1cc1SJoe Perches				WARN("BRACES",
5052000d1cc1SJoe Perches				     "braces {} are not necessary for single statement blocks\n" . $herectx);
5053f0a594c1SAndy Whitcroft			}
5054f0a594c1SAndy Whitcroft		}
5055f0a594c1SAndy Whitcroft
50560979ae66SJoe Perches# check for unnecessary blank lines around braces
505777b9a53aSJoe Perches		if (($line =~ /^.\s*}\s*$/ && $prevrawline =~ /^.\s*$/)) {
5058f8e58219SJoe Perches			if (CHK("BRACES",
5059f8e58219SJoe Perches				"Blank lines aren't necessary before a close brace '}'\n" . $hereprev) &&
5060f8e58219SJoe Perches			    $fix && $prevrawline =~ /^\+/) {
5061f8e58219SJoe Perches				fix_delete_line($fixlinenr - 1, $prevrawline);
5062f8e58219SJoe Perches			}
50630979ae66SJoe Perches		}
506477b9a53aSJoe Perches		if (($rawline =~ /^.\s*$/ && $prevline =~ /^..*{\s*$/)) {
5065f8e58219SJoe Perches			if (CHK("BRACES",
5066f8e58219SJoe Perches				"Blank lines aren't necessary after an open brace '{'\n" . $hereprev) &&
5067f8e58219SJoe Perches			    $fix) {
5068f8e58219SJoe Perches				fix_delete_line($fixlinenr, $rawline);
5069f8e58219SJoe Perches			}
50700979ae66SJoe Perches		}
50710979ae66SJoe Perches
50724a0df2efSAndy Whitcroft# no volatiles please
50736c72ffaaSAndy Whitcroft		my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
50746c72ffaaSAndy Whitcroft		if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
5075000d1cc1SJoe Perches			WARN("VOLATILE",
5076000d1cc1SJoe Perches			     "Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt\n" . $herecurr);
50774a0df2efSAndy Whitcroft		}
50784a0df2efSAndy Whitcroft
50795e4f6ba5SJoe Perches# Check for user-visible strings broken across lines, which breaks the ability
50805e4f6ba5SJoe Perches# to grep for the string.  Make exceptions when the previous string ends in a
50815e4f6ba5SJoe Perches# newline (multiple lines in one string constant) or '\t', '\r', ';', or '{'
50825e4f6ba5SJoe Perches# (common in inline assembly) or is a octal \123 or hexadecimal \xaf value
508333acb54aSJoe Perches		if ($line =~ /^\+\s*$String/ &&
50845e4f6ba5SJoe Perches		    $prevline =~ /"\s*$/ &&
50855e4f6ba5SJoe Perches		    $prevrawline !~ /(?:\\(?:[ntr]|[0-7]{1,3}|x[0-9a-fA-F]{1,2})|;\s*|\{\s*)"\s*$/) {
50865e4f6ba5SJoe Perches			if (WARN("SPLIT_STRING",
50875e4f6ba5SJoe Perches				 "quoted string split across lines\n" . $hereprev) &&
50885e4f6ba5SJoe Perches				     $fix &&
50895e4f6ba5SJoe Perches				     $prevrawline =~ /^\+.*"\s*$/ &&
50905e4f6ba5SJoe Perches				     $last_coalesced_string_linenr != $linenr - 1) {
50915e4f6ba5SJoe Perches				my $extracted_string = get_quoted_string($line, $rawline);
50925e4f6ba5SJoe Perches				my $comma_close = "";
50935e4f6ba5SJoe Perches				if ($rawline =~ /\Q$extracted_string\E(\s*\)\s*;\s*$|\s*,\s*)/) {
50945e4f6ba5SJoe Perches					$comma_close = $1;
50955e4f6ba5SJoe Perches				}
50965e4f6ba5SJoe Perches
50975e4f6ba5SJoe Perches				fix_delete_line($fixlinenr - 1, $prevrawline);
50985e4f6ba5SJoe Perches				fix_delete_line($fixlinenr, $rawline);
50995e4f6ba5SJoe Perches				my $fixedline = $prevrawline;
51005e4f6ba5SJoe Perches				$fixedline =~ s/"\s*$//;
51015e4f6ba5SJoe Perches				$fixedline .= substr($extracted_string, 1) . trim($comma_close);
51025e4f6ba5SJoe Perches				fix_insert_line($fixlinenr - 1, $fixedline);
51035e4f6ba5SJoe Perches				$fixedline = $rawline;
51045e4f6ba5SJoe Perches				$fixedline =~ s/\Q$extracted_string\E\Q$comma_close\E//;
51055e4f6ba5SJoe Perches				if ($fixedline !~ /\+\s*$/) {
51065e4f6ba5SJoe Perches					fix_insert_line($fixlinenr, $fixedline);
51075e4f6ba5SJoe Perches				}
51085e4f6ba5SJoe Perches				$last_coalesced_string_linenr = $linenr;
51095e4f6ba5SJoe Perches			}
51105e4f6ba5SJoe Perches		}
51115e4f6ba5SJoe Perches
51125e4f6ba5SJoe Perches# check for missing a space in a string concatenation
51135e4f6ba5SJoe Perches		if ($prevrawline =~ /[^\\]\w"$/ && $rawline =~ /^\+[\t ]+"\w/) {
51145e4f6ba5SJoe Perches			WARN('MISSING_SPACE',
51155e4f6ba5SJoe Perches			     "break quoted strings at a space character\n" . $hereprev);
51165e4f6ba5SJoe Perches		}
51175e4f6ba5SJoe Perches
51185e4f6ba5SJoe Perches# check for spaces before a quoted newline
51195e4f6ba5SJoe Perches		if ($rawline =~ /^.*\".*\s\\n/) {
51205e4f6ba5SJoe Perches			if (WARN("QUOTED_WHITESPACE_BEFORE_NEWLINE",
51215e4f6ba5SJoe Perches				 "unnecessary whitespace before a quoted newline\n" . $herecurr) &&
51225e4f6ba5SJoe Perches			    $fix) {
51235e4f6ba5SJoe Perches				$fixed[$fixlinenr] =~ s/^(\+.*\".*)\s+\\n/$1\\n/;
51245e4f6ba5SJoe Perches			}
51255e4f6ba5SJoe Perches
51265e4f6ba5SJoe Perches		}
51275e4f6ba5SJoe Perches
5128f17dba4fSJoe Perches# concatenated string without spaces between elements
512933acb54aSJoe Perches		if ($line =~ /$String[A-Z_]/ || $line =~ /[A-Za-z0-9_]$String/) {
5130f17dba4fSJoe Perches			CHK("CONCATENATED_STRING",
5131f17dba4fSJoe Perches			    "Concatenated strings should use spaces between elements\n" . $herecurr);
5132f17dba4fSJoe Perches		}
5133f17dba4fSJoe Perches
513490ad30e5SJoe Perches# uncoalesced string fragments
513533acb54aSJoe Perches		if ($line =~ /$String\s*"/) {
513690ad30e5SJoe Perches			WARN("STRING_FRAGMENTS",
513790ad30e5SJoe Perches			     "Consecutive strings are generally better as a single string\n" . $herecurr);
513890ad30e5SJoe Perches		}
513990ad30e5SJoe Perches
51406e300757SJoe Perches# check for %L{u,d,i} and 0x%[udi] in strings
51415e4f6ba5SJoe Perches		my $string;
51425e4f6ba5SJoe Perches		while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) {
51435e4f6ba5SJoe Perches			$string = substr($rawline, $-[1], $+[1] - $-[1]);
51445e4f6ba5SJoe Perches			$string =~ s/%%/__/g;
51456e300757SJoe Perches			if ($string =~ /(?<!%)%[\*\d\.\$]*L[udi]/) {
51465e4f6ba5SJoe Perches				WARN("PRINTF_L",
51475e4f6ba5SJoe Perches				     "\%Ld/%Lu are not-standard C, use %lld/%llu\n" . $herecurr);
51485e4f6ba5SJoe Perches				last;
51495e4f6ba5SJoe Perches			}
51506e300757SJoe Perches			if ($string =~ /0x%[\*\d\.\$\Llzth]*[udi]/) {
51516e300757SJoe Perches				ERROR("PRINTF_0xDECIMAL",
51526e300757SJoe Perches				      "Prefixing 0x with decimal output is defective\n" . $herecurr);
51536e300757SJoe Perches			}
51545e4f6ba5SJoe Perches		}
51555e4f6ba5SJoe Perches
51565e4f6ba5SJoe Perches# check for line continuations in quoted strings with odd counts of "
51575e4f6ba5SJoe Perches		if ($rawline =~ /\\$/ && $rawline =~ tr/"/"/ % 2) {
51585e4f6ba5SJoe Perches			WARN("LINE_CONTINUATIONS",
51595e4f6ba5SJoe Perches			     "Avoid line continuations in quoted strings\n" . $herecurr);
51605e4f6ba5SJoe Perches		}
51615e4f6ba5SJoe Perches
516200df344fSAndy Whitcroft# warn about #if 0
5163c45dcabdSAndy Whitcroft		if ($line =~ /^.\s*\#\s*if\s+0\b/) {
5164000d1cc1SJoe Perches			CHK("REDUNDANT_CODE",
5165000d1cc1SJoe Perches			    "if this code is redundant consider removing it\n" .
5166de7d4f0eSAndy Whitcroft				$herecurr);
51674a0df2efSAndy Whitcroft		}
51684a0df2efSAndy Whitcroft
516903df4b51SAndy Whitcroft# check for needless "if (<foo>) fn(<foo>)" uses
517003df4b51SAndy Whitcroft		if ($prevline =~ /\bif\s*\(\s*($Lval)\s*\)/) {
5171100425deSJoe Perches			my $tested = quotemeta($1);
5172100425deSJoe Perches			my $expr = '\s*\(\s*' . $tested . '\s*\)\s*;';
5173100425deSJoe Perches			if ($line =~ /\b(kfree|usb_free_urb|debugfs_remove(?:_recursive)?|(?:kmem_cache|mempool|dma_pool)_destroy)$expr/) {
5174100425deSJoe Perches				my $func = $1;
5175100425deSJoe Perches				if (WARN('NEEDLESS_IF',
5176100425deSJoe Perches					 "$func(NULL) is safe and this check is probably not required\n" . $hereprev) &&
5177100425deSJoe Perches				    $fix) {
5178100425deSJoe Perches					my $do_fix = 1;
5179100425deSJoe Perches					my $leading_tabs = "";
5180100425deSJoe Perches					my $new_leading_tabs = "";
5181100425deSJoe Perches					if ($lines[$linenr - 2] =~ /^\+(\t*)if\s*\(\s*$tested\s*\)\s*$/) {
5182100425deSJoe Perches						$leading_tabs = $1;
5183100425deSJoe Perches					} else {
5184100425deSJoe Perches						$do_fix = 0;
5185100425deSJoe Perches					}
5186100425deSJoe Perches					if ($lines[$linenr - 1] =~ /^\+(\t+)$func\s*\(\s*$tested\s*\)\s*;\s*$/) {
5187100425deSJoe Perches						$new_leading_tabs = $1;
5188100425deSJoe Perches						if (length($leading_tabs) + 1 ne length($new_leading_tabs)) {
5189100425deSJoe Perches							$do_fix = 0;
5190100425deSJoe Perches						}
5191100425deSJoe Perches					} else {
5192100425deSJoe Perches						$do_fix = 0;
5193100425deSJoe Perches					}
5194100425deSJoe Perches					if ($do_fix) {
5195100425deSJoe Perches						fix_delete_line($fixlinenr - 1, $prevrawline);
5196100425deSJoe Perches						$fixed[$fixlinenr] =~ s/^\+$new_leading_tabs/\+$leading_tabs/;
5197100425deSJoe Perches					}
5198100425deSJoe Perches				}
51994c432a8fSGreg Kroah-Hartman			}
52004c432a8fSGreg Kroah-Hartman		}
5201f0a594c1SAndy Whitcroft
5202ebfdc409SJoe Perches# check for unnecessary "Out of Memory" messages
5203ebfdc409SJoe Perches		if ($line =~ /^\+.*\b$logFunctions\s*\(/ &&
5204ebfdc409SJoe Perches		    $prevline =~ /^[ \+]\s*if\s*\(\s*(\!\s*|NULL\s*==\s*)?($Lval)(\s*==\s*NULL\s*)?\s*\)/ &&
5205ebfdc409SJoe Perches		    (defined $1 || defined $3) &&
5206ebfdc409SJoe Perches		    $linenr > 3) {
5207ebfdc409SJoe Perches			my $testval = $2;
5208ebfdc409SJoe Perches			my $testline = $lines[$linenr - 3];
5209ebfdc409SJoe Perches
5210ebfdc409SJoe Perches			my ($s, $c) = ctx_statement_block($linenr - 3, $realcnt, 0);
5211ebfdc409SJoe Perches#			print("line: <$line>\nprevline: <$prevline>\ns: <$s>\nc: <$c>\n\n\n");
5212ebfdc409SJoe Perches
5213ebfdc409SJoe 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)/) {
5214ebfdc409SJoe Perches				WARN("OOM_MESSAGE",
5215ebfdc409SJoe Perches				     "Possible unnecessary 'out of memory' message\n" . $hereprev);
5216ebfdc409SJoe Perches			}
5217ebfdc409SJoe Perches		}
5218ebfdc409SJoe Perches
5219f78d98f6SJoe Perches# check for logging functions with KERN_<LEVEL>
5220dcaf1123SPaolo Bonzini		if ($line !~ /printk(?:_ratelimited|_once)?\s*\(/ &&
5221f78d98f6SJoe Perches		    $line =~ /\b$logFunctions\s*\(.*\b(KERN_[A-Z]+)\b/) {
5222f78d98f6SJoe Perches			my $level = $1;
5223f78d98f6SJoe Perches			if (WARN("UNNECESSARY_KERN_LEVEL",
5224f78d98f6SJoe Perches				 "Possible unnecessary $level\n" . $herecurr) &&
5225f78d98f6SJoe Perches			    $fix) {
5226f78d98f6SJoe Perches				$fixed[$fixlinenr] =~ s/\s*$level\s*//;
5227f78d98f6SJoe Perches			}
5228f78d98f6SJoe Perches		}
5229f78d98f6SJoe Perches
5230abb08a53SJoe Perches# check for mask then right shift without a parentheses
5231abb08a53SJoe Perches		if ($^V && $^V ge 5.10.0 &&
5232abb08a53SJoe Perches		    $line =~ /$LvalOrFunc\s*\&\s*($LvalOrFunc)\s*>>/ &&
5233abb08a53SJoe Perches		    $4 !~ /^\&/) { # $LvalOrFunc may be &foo, ignore if so
5234abb08a53SJoe Perches			WARN("MASK_THEN_SHIFT",
5235abb08a53SJoe Perches			     "Possible precedence defect with mask then right shift - may need parentheses\n" . $herecurr);
5236abb08a53SJoe Perches		}
5237abb08a53SJoe Perches
5238b75ac618SJoe Perches# check for pointer comparisons to NULL
5239b75ac618SJoe Perches		if ($^V && $^V ge 5.10.0) {
5240b75ac618SJoe Perches			while ($line =~ /\b$LvalOrFunc\s*(==|\!=)\s*NULL\b/g) {
5241b75ac618SJoe Perches				my $val = $1;
5242b75ac618SJoe Perches				my $equal = "!";
5243b75ac618SJoe Perches				$equal = "" if ($4 eq "!=");
5244b75ac618SJoe Perches				if (CHK("COMPARISON_TO_NULL",
5245b75ac618SJoe Perches					"Comparison to NULL could be written \"${equal}${val}\"\n" . $herecurr) &&
5246b75ac618SJoe Perches					    $fix) {
5247b75ac618SJoe Perches					$fixed[$fixlinenr] =~ s/\b\Q$val\E\s*(?:==|\!=)\s*NULL\b/$equal$val/;
5248b75ac618SJoe Perches				}
5249b75ac618SJoe Perches			}
5250b75ac618SJoe Perches		}
5251b75ac618SJoe Perches
52528716de38SJoe Perches# check for bad placement of section $InitAttribute (e.g.: __initdata)
52538716de38SJoe Perches		if ($line =~ /(\b$InitAttribute\b)/) {
52548716de38SJoe Perches			my $attr = $1;
52558716de38SJoe Perches			if ($line =~ /^\+\s*static\s+(?:const\s+)?(?:$attr\s+)?($NonptrTypeWithAttr)\s+(?:$attr\s+)?($Ident(?:\[[^]]*\])?)\s*[=;]/) {
52568716de38SJoe Perches				my $ptr = $1;
52578716de38SJoe Perches				my $var = $2;
52588716de38SJoe Perches				if ((($ptr =~ /\b(union|struct)\s+$attr\b/ &&
52598716de38SJoe Perches				      ERROR("MISPLACED_INIT",
52608716de38SJoe Perches					    "$attr should be placed after $var\n" . $herecurr)) ||
52618716de38SJoe Perches				     ($ptr !~ /\b(union|struct)\s+$attr\b/ &&
52628716de38SJoe Perches				      WARN("MISPLACED_INIT",
52638716de38SJoe Perches					   "$attr should be placed after $var\n" . $herecurr))) &&
52648716de38SJoe Perches				    $fix) {
5265194f66fcSJoe 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;
52668716de38SJoe Perches				}
52678716de38SJoe Perches			}
52688716de38SJoe Perches		}
52698716de38SJoe Perches
5270e970b884SJoe Perches# check for $InitAttributeData (ie: __initdata) with const
5271e970b884SJoe Perches		if ($line =~ /\bconst\b/ && $line =~ /($InitAttributeData)/) {
5272e970b884SJoe Perches			my $attr = $1;
5273e970b884SJoe Perches			$attr =~ /($InitAttributePrefix)(.*)/;
5274e970b884SJoe Perches			my $attr_prefix = $1;
5275e970b884SJoe Perches			my $attr_type = $2;
5276e970b884SJoe Perches			if (ERROR("INIT_ATTRIBUTE",
5277e970b884SJoe Perches				  "Use of const init definition must use ${attr_prefix}initconst\n" . $herecurr) &&
5278e970b884SJoe Perches			    $fix) {
5279194f66fcSJoe Perches				$fixed[$fixlinenr] =~
5280e970b884SJoe Perches				    s/$InitAttributeData/${attr_prefix}initconst/;
5281e970b884SJoe Perches			}
5282e970b884SJoe Perches		}
5283e970b884SJoe Perches
5284e970b884SJoe Perches# check for $InitAttributeConst (ie: __initconst) without const
5285e970b884SJoe Perches		if ($line !~ /\bconst\b/ && $line =~ /($InitAttributeConst)/) {
5286e970b884SJoe Perches			my $attr = $1;
5287e970b884SJoe Perches			if (ERROR("INIT_ATTRIBUTE",
5288e970b884SJoe Perches				  "Use of $attr requires a separate use of const\n" . $herecurr) &&
5289e970b884SJoe Perches			    $fix) {
5290194f66fcSJoe Perches				my $lead = $fixed[$fixlinenr] =~
5291e970b884SJoe Perches				    /(^\+\s*(?:static\s+))/;
5292e970b884SJoe Perches				$lead = rtrim($1);
5293e970b884SJoe Perches				$lead = "$lead " if ($lead !~ /^\+$/);
5294e970b884SJoe Perches				$lead = "${lead}const ";
5295194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/(^\+\s*(?:static\s+))/$lead/;
5296e970b884SJoe Perches			}
5297e970b884SJoe Perches		}
5298e970b884SJoe Perches
5299c17893c7SJoe Perches# check for __read_mostly with const non-pointer (should just be const)
5300c17893c7SJoe Perches		if ($line =~ /\b__read_mostly\b/ &&
5301c17893c7SJoe Perches		    $line =~ /($Type)\s*$Ident/ && $1 !~ /\*\s*$/ && $1 =~ /\bconst\b/) {
5302c17893c7SJoe Perches			if (ERROR("CONST_READ_MOSTLY",
5303c17893c7SJoe Perches				  "Invalid use of __read_mostly with const type\n" . $herecurr) &&
5304c17893c7SJoe Perches			    $fix) {
5305c17893c7SJoe Perches				$fixed[$fixlinenr] =~ s/\s+__read_mostly\b//;
5306c17893c7SJoe Perches			}
5307c17893c7SJoe Perches		}
5308c17893c7SJoe Perches
5309fbdb8138SJoe Perches# don't use __constant_<foo> functions outside of include/uapi/
5310fbdb8138SJoe Perches		if ($realfile !~ m@^include/uapi/@ &&
5311fbdb8138SJoe Perches		    $line =~ /(__constant_(?:htons|ntohs|[bl]e(?:16|32|64)_to_cpu|cpu_to_[bl]e(?:16|32|64)))\s*\(/) {
5312fbdb8138SJoe Perches			my $constant_func = $1;
5313fbdb8138SJoe Perches			my $func = $constant_func;
5314fbdb8138SJoe Perches			$func =~ s/^__constant_//;
5315fbdb8138SJoe Perches			if (WARN("CONSTANT_CONVERSION",
5316fbdb8138SJoe Perches				 "$constant_func should be $func\n" . $herecurr) &&
5317fbdb8138SJoe Perches			    $fix) {
5318194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\b$constant_func\b/$func/g;
5319fbdb8138SJoe Perches			}
5320fbdb8138SJoe Perches		}
5321fbdb8138SJoe Perches
53221a15a250SPatrick Pannuto# prefer usleep_range over udelay
532337581c28SBruce Allan		if ($line =~ /\budelay\s*\(\s*(\d+)\s*\)/) {
532443c1d77cSJoe Perches			my $delay = $1;
53251a15a250SPatrick Pannuto			# ignore udelay's < 10, however
532643c1d77cSJoe Perches			if (! ($delay < 10) ) {
5327000d1cc1SJoe Perches				CHK("USLEEP_RANGE",
532843c1d77cSJoe Perches				    "usleep_range is preferred over udelay; see Documentation/timers/timers-howto.txt\n" . $herecurr);
532943c1d77cSJoe Perches			}
533043c1d77cSJoe Perches			if ($delay > 2000) {
533143c1d77cSJoe Perches				WARN("LONG_UDELAY",
533243c1d77cSJoe Perches				     "long udelay - prefer mdelay; see arch/arm/include/asm/delay.h\n" . $herecurr);
53331a15a250SPatrick Pannuto			}
53341a15a250SPatrick Pannuto		}
53351a15a250SPatrick Pannuto
533609ef8725SPatrick Pannuto# warn about unexpectedly long msleep's
533709ef8725SPatrick Pannuto		if ($line =~ /\bmsleep\s*\((\d+)\);/) {
533809ef8725SPatrick Pannuto			if ($1 < 20) {
5339000d1cc1SJoe Perches				WARN("MSLEEP",
534043c1d77cSJoe Perches				     "msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt\n" . $herecurr);
534109ef8725SPatrick Pannuto			}
534209ef8725SPatrick Pannuto		}
534309ef8725SPatrick Pannuto
534436ec1939SJoe Perches# check for comparisons of jiffies
534536ec1939SJoe Perches		if ($line =~ /\bjiffies\s*$Compare|$Compare\s*jiffies\b/) {
534636ec1939SJoe Perches			WARN("JIFFIES_COMPARISON",
534736ec1939SJoe Perches			     "Comparing jiffies is almost always wrong; prefer time_after, time_before and friends\n" . $herecurr);
534836ec1939SJoe Perches		}
534936ec1939SJoe Perches
53509d7a34a5SJoe Perches# check for comparisons of get_jiffies_64()
53519d7a34a5SJoe Perches		if ($line =~ /\bget_jiffies_64\s*\(\s*\)\s*$Compare|$Compare\s*get_jiffies_64\s*\(\s*\)/) {
53529d7a34a5SJoe Perches			WARN("JIFFIES_COMPARISON",
53539d7a34a5SJoe Perches			     "Comparing get_jiffies_64() is almost always wrong; prefer time_after64, time_before64 and friends\n" . $herecurr);
53549d7a34a5SJoe Perches		}
53559d7a34a5SJoe Perches
535600df344fSAndy Whitcroft# warn about #ifdefs in C files
5357c45dcabdSAndy Whitcroft#		if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
535800df344fSAndy Whitcroft#			print "#ifdef in C files should be avoided\n";
535900df344fSAndy Whitcroft#			print "$herecurr";
536000df344fSAndy Whitcroft#			$clean = 0;
536100df344fSAndy Whitcroft#		}
536200df344fSAndy Whitcroft
536322f2a2efSAndy Whitcroft# warn about spacing in #ifdefs
5364c45dcabdSAndy Whitcroft		if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) {
53653705ce5bSJoe Perches			if (ERROR("SPACING",
53663705ce5bSJoe Perches				  "exactly one space required after that #$1\n" . $herecurr) &&
53673705ce5bSJoe Perches			    $fix) {
5368194f66fcSJoe Perches				$fixed[$fixlinenr] =~
53693705ce5bSJoe Perches				    s/^(.\s*\#\s*(ifdef|ifndef|elif))\s{2,}/$1 /;
53703705ce5bSJoe Perches			}
53713705ce5bSJoe Perches
537222f2a2efSAndy Whitcroft		}
537322f2a2efSAndy Whitcroft
53744a0df2efSAndy Whitcroft# check for spinlock_t definitions without a comment.
5375171ae1a4SAndy Whitcroft		if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ ||
5376171ae1a4SAndy Whitcroft		    $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) {
53774a0df2efSAndy Whitcroft			my $which = $1;
53784a0df2efSAndy Whitcroft			if (!ctx_has_comment($first_line, $linenr)) {
5379000d1cc1SJoe Perches				CHK("UNCOMMENTED_DEFINITION",
5380000d1cc1SJoe Perches				    "$1 definition without comment\n" . $herecurr);
53814a0df2efSAndy Whitcroft			}
53824a0df2efSAndy Whitcroft		}
53834a0df2efSAndy Whitcroft# check for memory barriers without a comment.
5384402c2553SMichael S. Tsirkin
5385402c2553SMichael S. Tsirkin		my $barriers = qr{
5386402c2553SMichael S. Tsirkin			mb|
5387402c2553SMichael S. Tsirkin			rmb|
5388402c2553SMichael S. Tsirkin			wmb|
5389402c2553SMichael S. Tsirkin			read_barrier_depends
5390402c2553SMichael S. Tsirkin		}x;
5391402c2553SMichael S. Tsirkin		my $barrier_stems = qr{
5392402c2553SMichael S. Tsirkin			mb__before_atomic|
5393402c2553SMichael S. Tsirkin			mb__after_atomic|
5394402c2553SMichael S. Tsirkin			store_release|
5395402c2553SMichael S. Tsirkin			load_acquire|
5396402c2553SMichael S. Tsirkin			store_mb|
5397402c2553SMichael S. Tsirkin			(?:$barriers)
5398402c2553SMichael S. Tsirkin		}x;
5399402c2553SMichael S. Tsirkin		my $all_barriers = qr{
5400402c2553SMichael S. Tsirkin			(?:$barriers)|
540143e361f2SMichael S. Tsirkin			smp_(?:$barrier_stems)|
540243e361f2SMichael S. Tsirkin			virt_(?:$barrier_stems)
5403402c2553SMichael S. Tsirkin		}x;
5404402c2553SMichael S. Tsirkin
5405402c2553SMichael S. Tsirkin		if ($line =~ /\b(?:$all_barriers)\s*\(/) {
54064a0df2efSAndy Whitcroft			if (!ctx_has_comment($first_line, $linenr)) {
5407c1fd7bb9SJoe Perches				WARN("MEMORY_BARRIER",
5408000d1cc1SJoe Perches				     "memory barrier without comment\n" . $herecurr);
54094a0df2efSAndy Whitcroft			}
54104a0df2efSAndy Whitcroft		}
54113ad81779SPaul E. McKenney
5412f4073b0fSMichael S. Tsirkin		my $underscore_smp_barriers = qr{__smp_(?:$barrier_stems)}x;
5413f4073b0fSMichael S. Tsirkin
5414f4073b0fSMichael S. Tsirkin		if ($realfile !~ m@^include/asm-generic/@ &&
5415f4073b0fSMichael S. Tsirkin		    $realfile !~ m@/barrier\.h$@ &&
5416f4073b0fSMichael S. Tsirkin		    $line =~ m/\b(?:$underscore_smp_barriers)\s*\(/ &&
5417f4073b0fSMichael S. Tsirkin		    $line !~ m/^.\s*\#\s*define\s+(?:$underscore_smp_barriers)\s*\(/) {
5418f4073b0fSMichael S. Tsirkin			WARN("MEMORY_BARRIER",
5419f4073b0fSMichael S. Tsirkin			     "__smp memory barriers shouldn't be used outside barrier.h and asm-generic\n" . $herecurr);
5420f4073b0fSMichael S. Tsirkin		}
5421f4073b0fSMichael S. Tsirkin
5422cb426e99SJoe Perches# check for waitqueue_active without a comment.
5423cb426e99SJoe Perches		if ($line =~ /\bwaitqueue_active\s*\(/) {
5424cb426e99SJoe Perches			if (!ctx_has_comment($first_line, $linenr)) {
5425cb426e99SJoe Perches				WARN("WAITQUEUE_ACTIVE",
5426cb426e99SJoe Perches				     "waitqueue_active without comment\n" . $herecurr);
5427cb426e99SJoe Perches			}
5428cb426e99SJoe Perches		}
54293ad81779SPaul E. McKenney
54303ad81779SPaul E. McKenney# Check for expedited grace periods that interrupt non-idle non-nohz
54313ad81779SPaul E. McKenney# online CPUs.  These expedited can therefore degrade real-time response
54323ad81779SPaul E. McKenney# if used carelessly, and should be avoided where not absolutely
54333ad81779SPaul E. McKenney# needed.  It is always OK to use synchronize_rcu_expedited() and
54343ad81779SPaul E. McKenney# synchronize_sched_expedited() at boot time (before real-time applications
54353ad81779SPaul E. McKenney# start) and in error situations where real-time response is compromised in
54363ad81779SPaul E. McKenney# any case.  Note that synchronize_srcu_expedited() does -not- interrupt
54373ad81779SPaul E. McKenney# other CPUs, so don't warn on uses of synchronize_srcu_expedited().
54383ad81779SPaul E. McKenney# Of course, nothing comes for free, and srcu_read_lock() and
54393ad81779SPaul E. McKenney# srcu_read_unlock() do contain full memory barriers in payment for
54403ad81779SPaul E. McKenney# synchronize_srcu_expedited() non-interruption properties.
54413ad81779SPaul E. McKenney		if ($line =~ /\b(synchronize_rcu_expedited|synchronize_sched_expedited)\(/) {
54423ad81779SPaul E. McKenney			WARN("EXPEDITED_RCU_GRACE_PERIOD",
54433ad81779SPaul E. McKenney			     "expedited RCU grace periods should be avoided where they can degrade real-time response\n" . $herecurr);
54443ad81779SPaul E. McKenney
54453ad81779SPaul E. McKenney		}
54463ad81779SPaul E. McKenney
54474a0df2efSAndy Whitcroft# check of hardware specific defines
5448c45dcabdSAndy Whitcroft		if ($line =~ m@^.\s*\#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
5449000d1cc1SJoe Perches			CHK("ARCH_DEFINES",
5450000d1cc1SJoe Perches			    "architecture specific defines should be avoided\n" .  $herecurr);
54510a920b5bSAndy Whitcroft		}
5452653d4876SAndy Whitcroft
5453d4977c78STobias Klauser# Check that the storage class is at the beginning of a declaration
5454d4977c78STobias Klauser		if ($line =~ /\b$Storage\b/ && $line !~ /^.\s*$Storage\b/) {
5455000d1cc1SJoe Perches			WARN("STORAGE_CLASS",
5456000d1cc1SJoe Perches			     "storage class should be at the beginning of the declaration\n" . $herecurr)
5457d4977c78STobias Klauser		}
5458d4977c78STobias Klauser
5459de7d4f0eSAndy Whitcroft# check the location of the inline attribute, that it is between
5460de7d4f0eSAndy Whitcroft# storage class and type.
54619c0ca6f9SAndy Whitcroft		if ($line =~ /\b$Type\s+$Inline\b/ ||
54629c0ca6f9SAndy Whitcroft		    $line =~ /\b$Inline\s+$Storage\b/) {
5463000d1cc1SJoe Perches			ERROR("INLINE_LOCATION",
5464000d1cc1SJoe Perches			      "inline keyword should sit between storage class and type\n" . $herecurr);
5465de7d4f0eSAndy Whitcroft		}
5466de7d4f0eSAndy Whitcroft
54678905a67cSAndy Whitcroft# Check for __inline__ and __inline, prefer inline
54682b7ab453SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
54692b7ab453SJoe Perches		    $line =~ /\b(__inline__|__inline)\b/) {
5470d5e616fcSJoe Perches			if (WARN("INLINE",
5471d5e616fcSJoe Perches				 "plain inline is preferred over $1\n" . $herecurr) &&
5472d5e616fcSJoe Perches			    $fix) {
5473194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\b(__inline__|__inline)\b/inline/;
5474d5e616fcSJoe Perches
5475d5e616fcSJoe Perches			}
54768905a67cSAndy Whitcroft		}
54778905a67cSAndy Whitcroft
54783d130fd0SJoe Perches# Check for __attribute__ packed, prefer __packed
54792b7ab453SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
54802b7ab453SJoe Perches		    $line =~ /\b__attribute__\s*\(\s*\(.*\bpacked\b/) {
5481000d1cc1SJoe Perches			WARN("PREFER_PACKED",
5482000d1cc1SJoe Perches			     "__packed is preferred over __attribute__((packed))\n" . $herecurr);
54833d130fd0SJoe Perches		}
54843d130fd0SJoe Perches
548539b7e287SJoe Perches# Check for __attribute__ aligned, prefer __aligned
54862b7ab453SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
54872b7ab453SJoe Perches		    $line =~ /\b__attribute__\s*\(\s*\(.*aligned/) {
5488000d1cc1SJoe Perches			WARN("PREFER_ALIGNED",
5489000d1cc1SJoe Perches			     "__aligned(size) is preferred over __attribute__((aligned(size)))\n" . $herecurr);
549039b7e287SJoe Perches		}
549139b7e287SJoe Perches
54925f14d3bdSJoe Perches# Check for __attribute__ format(printf, prefer __printf
54932b7ab453SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
54942b7ab453SJoe Perches		    $line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf/) {
5495d5e616fcSJoe Perches			if (WARN("PREFER_PRINTF",
5496d5e616fcSJoe Perches				 "__printf(string-index, first-to-check) is preferred over __attribute__((format(printf, string-index, first-to-check)))\n" . $herecurr) &&
5497d5e616fcSJoe Perches			    $fix) {
5498194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf\s*,\s*(.*)\)\s*\)\s*\)/"__printf(" . trim($1) . ")"/ex;
5499d5e616fcSJoe Perches
5500d5e616fcSJoe Perches			}
55015f14d3bdSJoe Perches		}
55025f14d3bdSJoe Perches
55036061d949SJoe Perches# Check for __attribute__ format(scanf, prefer __scanf
55042b7ab453SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
55052b7ab453SJoe Perches		    $line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*scanf\b/) {
5506d5e616fcSJoe Perches			if (WARN("PREFER_SCANF",
5507d5e616fcSJoe Perches				 "__scanf(string-index, first-to-check) is preferred over __attribute__((format(scanf, string-index, first-to-check)))\n" . $herecurr) &&
5508d5e616fcSJoe Perches			    $fix) {
5509194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\b__attribute__\s*\(\s*\(\s*format\s*\(\s*scanf\s*,\s*(.*)\)\s*\)\s*\)/"__scanf(" . trim($1) . ")"/ex;
5510d5e616fcSJoe Perches			}
55116061d949SJoe Perches		}
55126061d949SJoe Perches
5513619a908aSJoe Perches# Check for __attribute__ weak, or __weak declarations (may have link issues)
5514619a908aSJoe Perches		if ($^V && $^V ge 5.10.0 &&
5515619a908aSJoe Perches		    $line =~ /(?:$Declare|$DeclareMisordered)\s*$Ident\s*$balanced_parens\s*(?:$Attribute)?\s*;/ &&
5516619a908aSJoe Perches		    ($line =~ /\b__attribute__\s*\(\s*\(.*\bweak\b/ ||
5517619a908aSJoe Perches		     $line =~ /\b__weak\b/)) {
5518619a908aSJoe Perches			ERROR("WEAK_DECLARATION",
5519619a908aSJoe Perches			      "Using weak declarations can have unintended link defects\n" . $herecurr);
5520619a908aSJoe Perches		}
5521619a908aSJoe Perches
5522e6176fa4SJoe Perches# check for c99 types like uint8_t used outside of uapi/
5523e6176fa4SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
5524e6176fa4SJoe Perches		    $line =~ /\b($Declare)\s*$Ident\s*[=;,\[]/) {
5525e6176fa4SJoe Perches			my $type = $1;
5526e6176fa4SJoe Perches			if ($type =~ /\b($typeC99Typedefs)\b/) {
5527e6176fa4SJoe Perches				$type = $1;
5528e6176fa4SJoe Perches				my $kernel_type = 'u';
5529e6176fa4SJoe Perches				$kernel_type = 's' if ($type =~ /^_*[si]/);
5530e6176fa4SJoe Perches				$type =~ /(\d+)/;
5531e6176fa4SJoe Perches				$kernel_type .= $1;
5532e6176fa4SJoe Perches				if (CHK("PREFER_KERNEL_TYPES",
5533e6176fa4SJoe Perches					"Prefer kernel type '$kernel_type' over '$type'\n" . $herecurr) &&
5534e6176fa4SJoe Perches				    $fix) {
5535e6176fa4SJoe Perches					$fixed[$fixlinenr] =~ s/\b$type\b/$kernel_type/;
5536e6176fa4SJoe Perches				}
5537e6176fa4SJoe Perches			}
5538e6176fa4SJoe Perches		}
5539e6176fa4SJoe Perches
5540938224b5SJoe Perches# check for cast of C90 native int or longer types constants
5541938224b5SJoe Perches		if ($line =~ /(\(\s*$C90_int_types\s*\)\s*)($Constant)\b/) {
5542938224b5SJoe Perches			my $cast = $1;
5543938224b5SJoe Perches			my $const = $2;
5544938224b5SJoe Perches			if (WARN("TYPECAST_INT_CONSTANT",
5545938224b5SJoe Perches				 "Unnecessary typecast of c90 int constant\n" . $herecurr) &&
5546938224b5SJoe Perches			    $fix) {
5547938224b5SJoe Perches				my $suffix = "";
5548938224b5SJoe Perches				my $newconst = $const;
5549938224b5SJoe Perches				$newconst =~ s/${Int_type}$//;
5550938224b5SJoe Perches				$suffix .= 'U' if ($cast =~ /\bunsigned\b/);
5551938224b5SJoe Perches				if ($cast =~ /\blong\s+long\b/) {
5552938224b5SJoe Perches					$suffix .= 'LL';
5553938224b5SJoe Perches				} elsif ($cast =~ /\blong\b/) {
5554938224b5SJoe Perches					$suffix .= 'L';
5555938224b5SJoe Perches				}
5556938224b5SJoe Perches				$fixed[$fixlinenr] =~ s/\Q$cast\E$const\b/$newconst$suffix/;
5557938224b5SJoe Perches			}
5558938224b5SJoe Perches		}
5559938224b5SJoe Perches
55608f53a9b8SJoe Perches# check for sizeof(&)
55618f53a9b8SJoe Perches		if ($line =~ /\bsizeof\s*\(\s*\&/) {
5562000d1cc1SJoe Perches			WARN("SIZEOF_ADDRESS",
5563000d1cc1SJoe Perches			     "sizeof(& should be avoided\n" . $herecurr);
55648f53a9b8SJoe Perches		}
55658f53a9b8SJoe Perches
556666c80b60SJoe Perches# check for sizeof without parenthesis
556766c80b60SJoe Perches		if ($line =~ /\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/) {
5568d5e616fcSJoe Perches			if (WARN("SIZEOF_PARENTHESIS",
5569d5e616fcSJoe Perches				 "sizeof $1 should be sizeof($1)\n" . $herecurr) &&
5570d5e616fcSJoe Perches			    $fix) {
5571194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/"sizeof(" . trim($1) . ")"/ex;
5572d5e616fcSJoe Perches			}
557366c80b60SJoe Perches		}
557466c80b60SJoe Perches
557588982feaSJoe Perches# check for struct spinlock declarations
557688982feaSJoe Perches		if ($line =~ /^.\s*\bstruct\s+spinlock\s+\w+\s*;/) {
557788982feaSJoe Perches			WARN("USE_SPINLOCK_T",
557888982feaSJoe Perches			     "struct spinlock should be spinlock_t\n" . $herecurr);
557988982feaSJoe Perches		}
558088982feaSJoe Perches
5581a6962d72SJoe Perches# check for seq_printf uses that could be seq_puts
558206668727SJoe Perches		if ($sline =~ /\bseq_printf\s*\(.*"\s*\)\s*;\s*$/) {
5583a6962d72SJoe Perches			my $fmt = get_quoted_string($line, $rawline);
5584caac1d5fSHeba Aamer			$fmt =~ s/%%//g;
5585caac1d5fSHeba Aamer			if ($fmt !~ /%/) {
5586d5e616fcSJoe Perches				if (WARN("PREFER_SEQ_PUTS",
5587d5e616fcSJoe Perches					 "Prefer seq_puts to seq_printf\n" . $herecurr) &&
5588d5e616fcSJoe Perches				    $fix) {
5589194f66fcSJoe Perches					$fixed[$fixlinenr] =~ s/\bseq_printf\b/seq_puts/;
5590d5e616fcSJoe Perches				}
5591a6962d72SJoe Perches			}
5592a6962d72SJoe Perches		}
5593a6962d72SJoe Perches
5594554e165cSAndy Whitcroft# Check for misused memsets
5595d1fe9c09SJoe Perches		if ($^V && $^V ge 5.10.0 &&
5596d1fe9c09SJoe Perches		    defined $stat &&
55979e20a853SMateusz Kulikowski		    $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*$FuncArg\s*\)/) {
5598554e165cSAndy Whitcroft
5599d7c76ba7SJoe Perches			my $ms_addr = $2;
5600d1fe9c09SJoe Perches			my $ms_val = $7;
5601d1fe9c09SJoe Perches			my $ms_size = $12;
5602d7c76ba7SJoe Perches
5603554e165cSAndy Whitcroft			if ($ms_size =~ /^(0x|)0$/i) {
5604554e165cSAndy Whitcroft				ERROR("MEMSET",
5605d7c76ba7SJoe Perches				      "memset to 0's uses 0 as the 2nd argument, not the 3rd\n" . "$here\n$stat\n");
5606554e165cSAndy Whitcroft			} elsif ($ms_size =~ /^(0x|)1$/i) {
5607554e165cSAndy Whitcroft				WARN("MEMSET",
5608d7c76ba7SJoe Perches				     "single byte memset is suspicious. Swapped 2nd/3rd argument?\n" . "$here\n$stat\n");
5609d7c76ba7SJoe Perches			}
5610d7c76ba7SJoe Perches		}
5611d7c76ba7SJoe Perches
561298a9bba5SJoe Perches# Check for memcpy(foo, bar, ETH_ALEN) that could be ether_addr_copy(foo, bar)
5613f333195dSJoe Perches#		if ($^V && $^V ge 5.10.0 &&
5614f333195dSJoe Perches#		    defined $stat &&
5615f333195dSJoe Perches#		    $stat =~ /^\+(?:.*?)\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
5616f333195dSJoe Perches#			if (WARN("PREFER_ETHER_ADDR_COPY",
5617f333195dSJoe Perches#				 "Prefer ether_addr_copy() over memcpy() if the Ethernet addresses are __aligned(2)\n" . "$here\n$stat\n") &&
5618f333195dSJoe Perches#			    $fix) {
5619f333195dSJoe Perches#				$fixed[$fixlinenr] =~ s/\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/ether_addr_copy($2, $7)/;
5620f333195dSJoe Perches#			}
5621f333195dSJoe Perches#		}
562298a9bba5SJoe Perches
5623b6117d17SMateusz Kulikowski# Check for memcmp(foo, bar, ETH_ALEN) that could be ether_addr_equal*(foo, bar)
5624f333195dSJoe Perches#		if ($^V && $^V ge 5.10.0 &&
5625f333195dSJoe Perches#		    defined $stat &&
5626f333195dSJoe Perches#		    $stat =~ /^\+(?:.*?)\bmemcmp\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
5627f333195dSJoe Perches#			WARN("PREFER_ETHER_ADDR_EQUAL",
5628f333195dSJoe Perches#			     "Prefer ether_addr_equal() or ether_addr_equal_unaligned() over memcmp()\n" . "$here\n$stat\n")
5629f333195dSJoe Perches#		}
5630b6117d17SMateusz Kulikowski
56318617cd09SMateusz Kulikowski# check for memset(foo, 0x0, ETH_ALEN) that could be eth_zero_addr
56328617cd09SMateusz Kulikowski# check for memset(foo, 0xFF, ETH_ALEN) that could be eth_broadcast_addr
5633f333195dSJoe Perches#		if ($^V && $^V ge 5.10.0 &&
5634f333195dSJoe Perches#		    defined $stat &&
5635f333195dSJoe Perches#		    $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
5636f333195dSJoe Perches#
5637f333195dSJoe Perches#			my $ms_val = $7;
5638f333195dSJoe Perches#
5639f333195dSJoe Perches#			if ($ms_val =~ /^(?:0x|)0+$/i) {
5640f333195dSJoe Perches#				if (WARN("PREFER_ETH_ZERO_ADDR",
5641f333195dSJoe Perches#					 "Prefer eth_zero_addr over memset()\n" . "$here\n$stat\n") &&
5642f333195dSJoe Perches#				    $fix) {
5643f333195dSJoe Perches#					$fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_zero_addr($2)/;
5644f333195dSJoe Perches#				}
5645f333195dSJoe Perches#			} elsif ($ms_val =~ /^(?:0xff|255)$/i) {
5646f333195dSJoe Perches#				if (WARN("PREFER_ETH_BROADCAST_ADDR",
5647f333195dSJoe Perches#					 "Prefer eth_broadcast_addr() over memset()\n" . "$here\n$stat\n") &&
5648f333195dSJoe Perches#				    $fix) {
5649f333195dSJoe Perches#					$fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_broadcast_addr($2)/;
5650f333195dSJoe Perches#				}
5651f333195dSJoe Perches#			}
5652f333195dSJoe Perches#		}
56538617cd09SMateusz Kulikowski
5654d7c76ba7SJoe Perches# typecasts on min/max could be min_t/max_t
5655d1fe9c09SJoe Perches		if ($^V && $^V ge 5.10.0 &&
5656d1fe9c09SJoe Perches		    defined $stat &&
5657d7c76ba7SJoe Perches		    $stat =~ /^\+(?:.*?)\b(min|max)\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\)/) {
5658d1fe9c09SJoe Perches			if (defined $2 || defined $7) {
5659d7c76ba7SJoe Perches				my $call = $1;
5660d7c76ba7SJoe Perches				my $cast1 = deparenthesize($2);
5661d7c76ba7SJoe Perches				my $arg1 = $3;
5662d1fe9c09SJoe Perches				my $cast2 = deparenthesize($7);
5663d1fe9c09SJoe Perches				my $arg2 = $8;
5664d7c76ba7SJoe Perches				my $cast;
5665d7c76ba7SJoe Perches
5666d1fe9c09SJoe Perches				if ($cast1 ne "" && $cast2 ne "" && $cast1 ne $cast2) {
5667d7c76ba7SJoe Perches					$cast = "$cast1 or $cast2";
5668d7c76ba7SJoe Perches				} elsif ($cast1 ne "") {
5669d7c76ba7SJoe Perches					$cast = $cast1;
5670d7c76ba7SJoe Perches				} else {
5671d7c76ba7SJoe Perches					$cast = $cast2;
5672d7c76ba7SJoe Perches				}
5673d7c76ba7SJoe Perches				WARN("MINMAX",
5674d7c76ba7SJoe Perches				     "$call() should probably be ${call}_t($cast, $arg1, $arg2)\n" . "$here\n$stat\n");
5675554e165cSAndy Whitcroft			}
5676554e165cSAndy Whitcroft		}
5677554e165cSAndy Whitcroft
56784a273195SJoe Perches# check usleep_range arguments
56794a273195SJoe Perches		if ($^V && $^V ge 5.10.0 &&
56804a273195SJoe Perches		    defined $stat &&
56814a273195SJoe Perches		    $stat =~ /^\+(?:.*?)\busleep_range\s*\(\s*($FuncArg)\s*,\s*($FuncArg)\s*\)/) {
56824a273195SJoe Perches			my $min = $1;
56834a273195SJoe Perches			my $max = $7;
56844a273195SJoe Perches			if ($min eq $max) {
56854a273195SJoe Perches				WARN("USLEEP_RANGE",
56864a273195SJoe Perches				     "usleep_range should not use min == max args; see Documentation/timers/timers-howto.txt\n" . "$here\n$stat\n");
56874a273195SJoe Perches			} elsif ($min =~ /^\d+$/ && $max =~ /^\d+$/ &&
56884a273195SJoe Perches				 $min > $max) {
56894a273195SJoe Perches				WARN("USLEEP_RANGE",
56904a273195SJoe Perches				     "usleep_range args reversed, use min then max; see Documentation/timers/timers-howto.txt\n" . "$here\n$stat\n");
56914a273195SJoe Perches			}
56924a273195SJoe Perches		}
56934a273195SJoe Perches
5694823b794cSJoe Perches# check for naked sscanf
5695823b794cSJoe Perches		if ($^V && $^V ge 5.10.0 &&
5696823b794cSJoe Perches		    defined $stat &&
56976c8bd707SJoe Perches		    $line =~ /\bsscanf\b/ &&
5698823b794cSJoe Perches		    ($stat !~ /$Ident\s*=\s*sscanf\s*$balanced_parens/ &&
5699823b794cSJoe Perches		     $stat !~ /\bsscanf\s*$balanced_parens\s*(?:$Compare)/ &&
5700823b794cSJoe Perches		     $stat !~ /(?:$Compare)\s*\bsscanf\s*$balanced_parens/)) {
5701823b794cSJoe Perches			my $lc = $stat =~ tr@\n@@;
5702823b794cSJoe Perches			$lc = $lc + $linenr;
5703823b794cSJoe Perches			my $stat_real = raw_line($linenr, 0);
5704823b794cSJoe Perches		        for (my $count = $linenr + 1; $count <= $lc; $count++) {
5705823b794cSJoe Perches				$stat_real = $stat_real . "\n" . raw_line($count, 0);
5706823b794cSJoe Perches			}
5707823b794cSJoe Perches			WARN("NAKED_SSCANF",
5708823b794cSJoe Perches			     "unchecked sscanf return value\n" . "$here\n$stat_real\n");
5709823b794cSJoe Perches		}
5710823b794cSJoe Perches
5711afc819abSJoe Perches# check for simple sscanf that should be kstrto<foo>
5712afc819abSJoe Perches		if ($^V && $^V ge 5.10.0 &&
5713afc819abSJoe Perches		    defined $stat &&
5714afc819abSJoe Perches		    $line =~ /\bsscanf\b/) {
5715afc819abSJoe Perches			my $lc = $stat =~ tr@\n@@;
5716afc819abSJoe Perches			$lc = $lc + $linenr;
5717afc819abSJoe Perches			my $stat_real = raw_line($linenr, 0);
5718afc819abSJoe Perches		        for (my $count = $linenr + 1; $count <= $lc; $count++) {
5719afc819abSJoe Perches				$stat_real = $stat_real . "\n" . raw_line($count, 0);
5720afc819abSJoe Perches			}
5721afc819abSJoe Perches			if ($stat_real =~ /\bsscanf\b\s*\(\s*$FuncArg\s*,\s*("[^"]+")/) {
5722afc819abSJoe Perches				my $format = $6;
5723afc819abSJoe Perches				my $count = $format =~ tr@%@%@;
5724afc819abSJoe Perches				if ($count == 1 &&
5725afc819abSJoe Perches				    $format =~ /^"\%(?i:ll[udxi]|[udxi]ll|ll|[hl]h?[udxi]|[udxi][hl]h?|[hl]h?|[udxi])"$/) {
5726afc819abSJoe Perches					WARN("SSCANF_TO_KSTRTO",
5727afc819abSJoe Perches					     "Prefer kstrto<type> to single variable sscanf\n" . "$here\n$stat_real\n");
5728afc819abSJoe Perches				}
5729afc819abSJoe Perches			}
5730afc819abSJoe Perches		}
5731afc819abSJoe Perches
573270dc8a48SJoe Perches# check for new externs in .h files.
573370dc8a48SJoe Perches		if ($realfile =~ /\.h$/ &&
573470dc8a48SJoe Perches		    $line =~ /^\+\s*(extern\s+)$Type\s*$Ident\s*\(/s) {
5735d1d85780SJoe Perches			if (CHK("AVOID_EXTERNS",
573670dc8a48SJoe Perches				"extern prototypes should be avoided in .h files\n" . $herecurr) &&
573770dc8a48SJoe Perches			    $fix) {
5738194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/(.*)\bextern\b\s*(.*)/$1$2/;
573970dc8a48SJoe Perches			}
574070dc8a48SJoe Perches		}
574170dc8a48SJoe Perches
5742de7d4f0eSAndy Whitcroft# check for new externs in .c files.
5743171ae1a4SAndy Whitcroft		if ($realfile =~ /\.c$/ && defined $stat &&
5744c45dcabdSAndy Whitcroft		    $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s)
5745171ae1a4SAndy Whitcroft		{
5746c45dcabdSAndy Whitcroft			my $function_name = $1;
5747c45dcabdSAndy Whitcroft			my $paren_space = $2;
5748171ae1a4SAndy Whitcroft
5749171ae1a4SAndy Whitcroft			my $s = $stat;
5750171ae1a4SAndy Whitcroft			if (defined $cond) {
5751171ae1a4SAndy Whitcroft				substr($s, 0, length($cond), '');
5752171ae1a4SAndy Whitcroft			}
5753c45dcabdSAndy Whitcroft			if ($s =~ /^\s*;/ &&
5754c45dcabdSAndy Whitcroft			    $function_name ne 'uninitialized_var')
5755c45dcabdSAndy Whitcroft			{
5756000d1cc1SJoe Perches				WARN("AVOID_EXTERNS",
5757000d1cc1SJoe Perches				     "externs should be avoided in .c files\n" .  $herecurr);
5758de7d4f0eSAndy Whitcroft			}
5759de7d4f0eSAndy Whitcroft
5760171ae1a4SAndy Whitcroft			if ($paren_space =~ /\n/) {
5761000d1cc1SJoe Perches				WARN("FUNCTION_ARGUMENTS",
5762000d1cc1SJoe Perches				     "arguments for function declarations should follow identifier\n" . $herecurr);
5763171ae1a4SAndy Whitcroft			}
57649c9ba34eSAndy Whitcroft
57659c9ba34eSAndy Whitcroft		} elsif ($realfile =~ /\.c$/ && defined $stat &&
57669c9ba34eSAndy Whitcroft		    $stat =~ /^.\s*extern\s+/)
57679c9ba34eSAndy Whitcroft		{
5768000d1cc1SJoe Perches			WARN("AVOID_EXTERNS",
5769000d1cc1SJoe Perches			     "externs should be avoided in .c files\n" .  $herecurr);
5770171ae1a4SAndy Whitcroft		}
5771171ae1a4SAndy Whitcroft
5772de7d4f0eSAndy Whitcroft# checks for new __setup's
5773de7d4f0eSAndy Whitcroft		if ($rawline =~ /\b__setup\("([^"]*)"/) {
5774de7d4f0eSAndy Whitcroft			my $name = $1;
5775de7d4f0eSAndy Whitcroft
5776de7d4f0eSAndy Whitcroft			if (!grep(/$name/, @setup_docs)) {
5777000d1cc1SJoe Perches				CHK("UNDOCUMENTED_SETUP",
5778000d1cc1SJoe Perches				    "__setup appears un-documented -- check Documentation/kernel-parameters.txt\n" . $herecurr);
5779de7d4f0eSAndy Whitcroft			}
5780653d4876SAndy Whitcroft		}
57819c0ca6f9SAndy Whitcroft
57829c0ca6f9SAndy Whitcroft# check for pointless casting of kmalloc return
5783caf2a54fSJoe Perches		if ($line =~ /\*\s*\)\s*[kv][czm]alloc(_node){0,1}\b/) {
5784000d1cc1SJoe Perches			WARN("UNNECESSARY_CASTS",
5785000d1cc1SJoe Perches			     "unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
57869c0ca6f9SAndy Whitcroft		}
578713214adfSAndy Whitcroft
5788a640d25cSJoe Perches# alloc style
5789a640d25cSJoe Perches# p = alloc(sizeof(struct foo), ...) should be p = alloc(sizeof(*p), ...)
5790a640d25cSJoe Perches		if ($^V && $^V ge 5.10.0 &&
5791a640d25cSJoe Perches		    $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*([kv][mz]alloc(?:_node)?)\s*\(\s*(sizeof\s*\(\s*struct\s+$Lval\s*\))/) {
5792a640d25cSJoe Perches			CHK("ALLOC_SIZEOF_STRUCT",
5793a640d25cSJoe Perches			    "Prefer $3(sizeof(*$1)...) over $3($4...)\n" . $herecurr);
5794a640d25cSJoe Perches		}
5795a640d25cSJoe Perches
579660a55369SJoe Perches# check for k[mz]alloc with multiplies that could be kmalloc_array/kcalloc
579760a55369SJoe Perches		if ($^V && $^V ge 5.10.0 &&
5798e367455aSJoe Perches		    $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*(k[mz]alloc)\s*\(\s*($FuncArg)\s*\*\s*($FuncArg)\s*,/) {
579960a55369SJoe Perches			my $oldfunc = $3;
580060a55369SJoe Perches			my $a1 = $4;
580160a55369SJoe Perches			my $a2 = $10;
580260a55369SJoe Perches			my $newfunc = "kmalloc_array";
580360a55369SJoe Perches			$newfunc = "kcalloc" if ($oldfunc eq "kzalloc");
580460a55369SJoe Perches			my $r1 = $a1;
580560a55369SJoe Perches			my $r2 = $a2;
580660a55369SJoe Perches			if ($a1 =~ /^sizeof\s*\S/) {
580760a55369SJoe Perches				$r1 = $a2;
580860a55369SJoe Perches				$r2 = $a1;
580960a55369SJoe Perches			}
5810e367455aSJoe Perches			if ($r1 !~ /^sizeof\b/ && $r2 =~ /^sizeof\s*\S/ &&
5811e367455aSJoe Perches			    !($r1 =~ /^$Constant$/ || $r1 =~ /^[A-Z_][A-Z0-9_]*$/)) {
5812e367455aSJoe Perches				if (WARN("ALLOC_WITH_MULTIPLY",
5813e367455aSJoe Perches					 "Prefer $newfunc over $oldfunc with multiply\n" . $herecurr) &&
5814e367455aSJoe Perches				    $fix) {
5815194f66fcSJoe 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;
581660a55369SJoe Perches
581760a55369SJoe Perches				}
581860a55369SJoe Perches			}
581960a55369SJoe Perches		}
582060a55369SJoe Perches
5821972fdea2SJoe Perches# check for krealloc arg reuse
5822972fdea2SJoe Perches		if ($^V && $^V ge 5.10.0 &&
5823972fdea2SJoe Perches		    $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*krealloc\s*\(\s*\1\s*,/) {
5824972fdea2SJoe Perches			WARN("KREALLOC_ARG_REUSE",
5825972fdea2SJoe Perches			     "Reusing the krealloc arg is almost always a bug\n" . $herecurr);
5826972fdea2SJoe Perches		}
5827972fdea2SJoe Perches
58285ce59ae0SJoe Perches# check for alloc argument mismatch
58295ce59ae0SJoe Perches		if ($line =~ /\b(kcalloc|kmalloc_array)\s*\(\s*sizeof\b/) {
58305ce59ae0SJoe Perches			WARN("ALLOC_ARRAY_ARGS",
58315ce59ae0SJoe Perches			     "$1 uses number as first arg, sizeof is generally wrong\n" . $herecurr);
58325ce59ae0SJoe Perches		}
58335ce59ae0SJoe Perches
5834caf2a54fSJoe Perches# check for multiple semicolons
5835caf2a54fSJoe Perches		if ($line =~ /;\s*;\s*$/) {
5836d5e616fcSJoe Perches			if (WARN("ONE_SEMICOLON",
5837d5e616fcSJoe Perches				 "Statements terminations use 1 semicolon\n" . $herecurr) &&
5838d5e616fcSJoe Perches			    $fix) {
5839194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/(\s*;\s*){2,}$/;/g;
5840d5e616fcSJoe Perches			}
5841d1e2ad07SJoe Perches		}
5842d1e2ad07SJoe Perches
5843cec3aaa5STomas Winkler# check for #defines like: 1 << <digit> that could be BIT(digit), it is not exported to uapi
5844cec3aaa5STomas Winkler		if ($realfile !~ m@^include/uapi/@ &&
5845cec3aaa5STomas Winkler		    $line =~ /#\s*define\s+\w+\s+\(?\s*1\s*([ulUL]*)\s*\<\<\s*(?:\d+|$Ident)\s*\)?/) {
58460ab90191SJoe Perches			my $ull = "";
58470ab90191SJoe Perches			$ull = "_ULL" if (defined($1) && $1 =~ /ll/i);
58480ab90191SJoe Perches			if (CHK("BIT_MACRO",
58490ab90191SJoe Perches				"Prefer using the BIT$ull macro\n" . $herecurr) &&
58500ab90191SJoe Perches			    $fix) {
58510ab90191SJoe Perches				$fixed[$fixlinenr] =~ s/\(?\s*1\s*[ulUL]*\s*<<\s*(\d+|$Ident)\s*\)?/BIT${ull}($1)/;
58520ab90191SJoe Perches			}
58530ab90191SJoe Perches		}
58540ab90191SJoe Perches
58552d632745SJoe Perches# check for #if defined CONFIG_<FOO> || defined CONFIG_<FOO>_MODULE
58562d632745SJoe 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*$/) {
58572d632745SJoe Perches			my $config = $1;
58582d632745SJoe Perches			if (WARN("PREFER_IS_ENABLED",
58592d632745SJoe Perches				 "Prefer IS_ENABLED(<FOO>) to CONFIG_<FOO> || CONFIG_<FOO>_MODULE\n" . $herecurr) &&
58602d632745SJoe Perches			    $fix) {
58612d632745SJoe Perches				$fixed[$fixlinenr] = "\+#if IS_ENABLED($config)";
58622d632745SJoe Perches			}
58632d632745SJoe Perches		}
58642d632745SJoe Perches
5865e81f239bSJoe Perches# check for case / default statements not preceded by break/fallthrough/switch
5866c34c09a8SJoe Perches		if ($line =~ /^.\s*(?:case\s+(?:$Ident|$Constant)\s*|default):/) {
5867c34c09a8SJoe Perches			my $has_break = 0;
5868c34c09a8SJoe Perches			my $has_statement = 0;
5869c34c09a8SJoe Perches			my $count = 0;
5870c34c09a8SJoe Perches			my $prevline = $linenr;
5871e81f239bSJoe Perches			while ($prevline > 1 && ($file || $count < 3) && !$has_break) {
5872c34c09a8SJoe Perches				$prevline--;
5873c34c09a8SJoe Perches				my $rline = $rawlines[$prevline - 1];
5874c34c09a8SJoe Perches				my $fline = $lines[$prevline - 1];
5875c34c09a8SJoe Perches				last if ($fline =~ /^\@\@/);
5876c34c09a8SJoe Perches				next if ($fline =~ /^\-/);
5877c34c09a8SJoe Perches				next if ($fline =~ /^.(?:\s*(?:case\s+(?:$Ident|$Constant)[\s$;]*|default):[\s$;]*)*$/);
5878c34c09a8SJoe Perches				$has_break = 1 if ($rline =~ /fall[\s_-]*(through|thru)/i);
5879c34c09a8SJoe Perches				next if ($fline =~ /^.[\s$;]*$/);
5880c34c09a8SJoe Perches				$has_statement = 1;
5881c34c09a8SJoe Perches				$count++;
5882c34c09a8SJoe Perches				$has_break = 1 if ($fline =~ /\bswitch\b|\b(?:break\s*;[\s$;]*$|return\b|goto\b|continue\b)/);
5883c34c09a8SJoe Perches			}
5884c34c09a8SJoe Perches			if (!$has_break && $has_statement) {
5885c34c09a8SJoe Perches				WARN("MISSING_BREAK",
5886c34c09a8SJoe Perches				     "Possible switch case/default not preceeded by break or fallthrough comment\n" . $herecurr);
5887c34c09a8SJoe Perches			}
5888c34c09a8SJoe Perches		}
5889c34c09a8SJoe Perches
5890d1e2ad07SJoe Perches# check for switch/default statements without a break;
5891d1e2ad07SJoe Perches		if ($^V && $^V ge 5.10.0 &&
5892d1e2ad07SJoe Perches		    defined $stat &&
5893d1e2ad07SJoe Perches		    $stat =~ /^\+[$;\s]*(?:case[$;\s]+\w+[$;\s]*:[$;\s]*|)*[$;\s]*\bdefault[$;\s]*:[$;\s]*;/g) {
5894d1e2ad07SJoe Perches			my $ctx = '';
5895d1e2ad07SJoe Perches			my $herectx = $here . "\n";
5896d1e2ad07SJoe Perches			my $cnt = statement_rawlines($stat);
5897d1e2ad07SJoe Perches			for (my $n = 0; $n < $cnt; $n++) {
5898d1e2ad07SJoe Perches				$herectx .= raw_line($linenr, $n) . "\n";
5899d1e2ad07SJoe Perches			}
5900d1e2ad07SJoe Perches			WARN("DEFAULT_NO_BREAK",
5901d1e2ad07SJoe Perches			     "switch default: should use break\n" . $herectx);
5902caf2a54fSJoe Perches		}
5903caf2a54fSJoe Perches
590413214adfSAndy Whitcroft# check for gcc specific __FUNCTION__
5905d5e616fcSJoe Perches		if ($line =~ /\b__FUNCTION__\b/) {
5906d5e616fcSJoe Perches			if (WARN("USE_FUNC",
5907d5e616fcSJoe Perches				 "__func__ should be used instead of gcc specific __FUNCTION__\n"  . $herecurr) &&
5908d5e616fcSJoe Perches			    $fix) {
5909194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\b__FUNCTION__\b/__func__/g;
5910d5e616fcSJoe Perches			}
591113214adfSAndy Whitcroft		}
5912773647a0SAndy Whitcroft
591362ec818fSJoe Perches# check for uses of __DATE__, __TIME__, __TIMESTAMP__
591462ec818fSJoe Perches		while ($line =~ /\b(__(?:DATE|TIME|TIMESTAMP)__)\b/g) {
591562ec818fSJoe Perches			ERROR("DATE_TIME",
591662ec818fSJoe Perches			      "Use of the '$1' macro makes the build non-deterministic\n" . $herecurr);
591762ec818fSJoe Perches		}
591862ec818fSJoe Perches
59192c92488aSJoe Perches# check for use of yield()
59202c92488aSJoe Perches		if ($line =~ /\byield\s*\(\s*\)/) {
59212c92488aSJoe Perches			WARN("YIELD",
59222c92488aSJoe Perches			     "Using yield() is generally wrong. See yield() kernel-doc (sched/core.c)\n"  . $herecurr);
59232c92488aSJoe Perches		}
59242c92488aSJoe Perches
5925179f8f40SJoe Perches# check for comparisons against true and false
5926179f8f40SJoe Perches		if ($line =~ /\+\s*(.*?)\b(true|false|$Lval)\s*(==|\!=)\s*(true|false|$Lval)\b(.*)$/i) {
5927179f8f40SJoe Perches			my $lead = $1;
5928179f8f40SJoe Perches			my $arg = $2;
5929179f8f40SJoe Perches			my $test = $3;
5930179f8f40SJoe Perches			my $otype = $4;
5931179f8f40SJoe Perches			my $trail = $5;
5932179f8f40SJoe Perches			my $op = "!";
5933179f8f40SJoe Perches
5934179f8f40SJoe Perches			($arg, $otype) = ($otype, $arg) if ($arg =~ /^(?:true|false)$/i);
5935179f8f40SJoe Perches
5936179f8f40SJoe Perches			my $type = lc($otype);
5937179f8f40SJoe Perches			if ($type =~ /^(?:true|false)$/) {
5938179f8f40SJoe Perches				if (("$test" eq "==" && "$type" eq "true") ||
5939179f8f40SJoe Perches				    ("$test" eq "!=" && "$type" eq "false")) {
5940179f8f40SJoe Perches					$op = "";
5941179f8f40SJoe Perches				}
5942179f8f40SJoe Perches
5943179f8f40SJoe Perches				CHK("BOOL_COMPARISON",
5944179f8f40SJoe Perches				    "Using comparison to $otype is error prone\n" . $herecurr);
5945179f8f40SJoe Perches
5946179f8f40SJoe Perches## maybe suggesting a correct construct would better
5947179f8f40SJoe Perches##				    "Using comparison to $otype is error prone.  Perhaps use '${lead}${op}${arg}${trail}'\n" . $herecurr);
5948179f8f40SJoe Perches
5949179f8f40SJoe Perches			}
5950179f8f40SJoe Perches		}
5951179f8f40SJoe Perches
59524882720bSThomas Gleixner# check for semaphores initialized locked
59534882720bSThomas Gleixner		if ($line =~ /^.\s*sema_init.+,\W?0\W?\)/) {
5954000d1cc1SJoe Perches			WARN("CONSIDER_COMPLETION",
5955000d1cc1SJoe Perches			     "consider using a completion\n" . $herecurr);
5956773647a0SAndy Whitcroft		}
59576712d858SJoe Perches
595867d0a075SJoe Perches# recommend kstrto* over simple_strto* and strict_strto*
595967d0a075SJoe Perches		if ($line =~ /\b((simple|strict)_(strto(l|ll|ul|ull)))\s*\(/) {
5960000d1cc1SJoe Perches			WARN("CONSIDER_KSTRTO",
596167d0a075SJoe Perches			     "$1 is obsolete, use k$3 instead\n" . $herecurr);
5962773647a0SAndy Whitcroft		}
59636712d858SJoe Perches
5964ae3ccc46SFabian Frederick# check for __initcall(), use device_initcall() explicitly or more appropriate function please
5965f3db6639SMichael Ellerman		if ($line =~ /^.\s*__initcall\s*\(/) {
5966000d1cc1SJoe Perches			WARN("USE_DEVICE_INITCALL",
5967ae3ccc46SFabian Frederick			     "please use device_initcall() or more appropriate function instead of __initcall() (see include/linux/init.h)\n" . $herecurr);
5968f3db6639SMichael Ellerman		}
59696712d858SJoe Perches
59700f3c5aabSJoe Perches# check for various structs that are normally const (ops, kgdb, device_tree)
59716903ffb2SAndy Whitcroft		if ($line !~ /\bconst\b/ &&
59720f3c5aabSJoe Perches		    $line =~ /\bstruct\s+($const_structs)\b/) {
5973000d1cc1SJoe Perches			WARN("CONST_STRUCT",
5974000d1cc1SJoe Perches			     "struct $1 should normally be const\n" .
59756903ffb2SAndy Whitcroft				$herecurr);
59762b6db5cbSAndy Whitcroft		}
5977773647a0SAndy Whitcroft
5978773647a0SAndy Whitcroft# use of NR_CPUS is usually wrong
5979773647a0SAndy Whitcroft# ignore definitions of NR_CPUS and usage to define arrays as likely right
5980773647a0SAndy Whitcroft		if ($line =~ /\bNR_CPUS\b/ &&
5981c45dcabdSAndy Whitcroft		    $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ &&
5982c45dcabdSAndy Whitcroft		    $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ &&
5983171ae1a4SAndy Whitcroft		    $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ &&
5984171ae1a4SAndy Whitcroft		    $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ &&
5985171ae1a4SAndy Whitcroft		    $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/)
5986773647a0SAndy Whitcroft		{
5987000d1cc1SJoe Perches			WARN("NR_CPUS",
5988000d1cc1SJoe Perches			     "usage of NR_CPUS is often wrong - consider using cpu_possible(), num_possible_cpus(), for_each_possible_cpu(), etc\n" . $herecurr);
5989773647a0SAndy Whitcroft		}
59909c9ba34eSAndy Whitcroft
599152ea8506SJoe Perches# Use of __ARCH_HAS_<FOO> or ARCH_HAVE_<BAR> is wrong.
599252ea8506SJoe Perches		if ($line =~ /\+\s*#\s*define\s+((?:__)?ARCH_(?:HAS|HAVE)\w*)\b/) {
599352ea8506SJoe Perches			ERROR("DEFINE_ARCH_HAS",
599452ea8506SJoe Perches			      "#define of '$1' is wrong - use Kconfig variables or standard guards instead\n" . $herecurr);
599552ea8506SJoe Perches		}
599652ea8506SJoe Perches
5997acd9362cSJoe Perches# likely/unlikely comparisons similar to "(likely(foo) > 0)"
5998acd9362cSJoe Perches		if ($^V && $^V ge 5.10.0 &&
5999acd9362cSJoe Perches		    $line =~ /\b((?:un)?likely)\s*\(\s*$FuncArg\s*\)\s*$Compare/) {
6000acd9362cSJoe Perches			WARN("LIKELY_MISUSE",
6001acd9362cSJoe Perches			     "Using $1 should generally have parentheses around the comparison\n" . $herecurr);
6002acd9362cSJoe Perches		}
6003acd9362cSJoe Perches
6004691d77b6SAndy Whitcroft# whine mightly about in_atomic
6005691d77b6SAndy Whitcroft		if ($line =~ /\bin_atomic\s*\(/) {
6006691d77b6SAndy Whitcroft			if ($realfile =~ m@^drivers/@) {
6007000d1cc1SJoe Perches				ERROR("IN_ATOMIC",
6008000d1cc1SJoe Perches				      "do not use in_atomic in drivers\n" . $herecurr);
6009f4a87736SAndy Whitcroft			} elsif ($realfile !~ m@^kernel/@) {
6010000d1cc1SJoe Perches				WARN("IN_ATOMIC",
6011000d1cc1SJoe Perches				     "use of in_atomic() is incorrect outside core kernel code\n" . $herecurr);
6012691d77b6SAndy Whitcroft			}
6013691d77b6SAndy Whitcroft		}
60141704f47bSPeter Zijlstra
6015481aea5cSJoe Perches# whine about ACCESS_ONCE
6016481aea5cSJoe Perches		if ($^V && $^V ge 5.10.0 &&
6017481aea5cSJoe Perches		    $line =~ /\bACCESS_ONCE\s*$balanced_parens\s*(=(?!=))?\s*($FuncArg)?/) {
6018481aea5cSJoe Perches			my $par = $1;
6019481aea5cSJoe Perches			my $eq = $2;
6020481aea5cSJoe Perches			my $fun = $3;
6021481aea5cSJoe Perches			$par =~ s/^\(\s*(.*)\s*\)$/$1/;
6022481aea5cSJoe Perches			if (defined($eq)) {
6023481aea5cSJoe Perches				if (WARN("PREFER_WRITE_ONCE",
6024481aea5cSJoe Perches					 "Prefer WRITE_ONCE(<FOO>, <BAR>) over ACCESS_ONCE(<FOO>) = <BAR>\n" . $herecurr) &&
6025481aea5cSJoe Perches				    $fix) {
6026481aea5cSJoe Perches					$fixed[$fixlinenr] =~ s/\bACCESS_ONCE\s*\(\s*\Q$par\E\s*\)\s*$eq\s*\Q$fun\E/WRITE_ONCE($par, $fun)/;
6027481aea5cSJoe Perches				}
6028481aea5cSJoe Perches			} else {
6029481aea5cSJoe Perches				if (WARN("PREFER_READ_ONCE",
6030481aea5cSJoe Perches					 "Prefer READ_ONCE(<FOO>) over ACCESS_ONCE(<FOO>)\n" . $herecurr) &&
6031481aea5cSJoe Perches				    $fix) {
6032481aea5cSJoe Perches					$fixed[$fixlinenr] =~ s/\bACCESS_ONCE\s*\(\s*\Q$par\E\s*\)/READ_ONCE($par)/;
6033481aea5cSJoe Perches				}
6034481aea5cSJoe Perches			}
6035481aea5cSJoe Perches		}
6036481aea5cSJoe Perches
60371704f47bSPeter Zijlstra# check for lockdep_set_novalidate_class
60381704f47bSPeter Zijlstra		if ($line =~ /^.\s*lockdep_set_novalidate_class\s*\(/ ||
60391704f47bSPeter Zijlstra		    $line =~ /__lockdep_no_validate__\s*\)/ ) {
60401704f47bSPeter Zijlstra			if ($realfile !~ m@^kernel/lockdep@ &&
60411704f47bSPeter Zijlstra			    $realfile !~ m@^include/linux/lockdep@ &&
60421704f47bSPeter Zijlstra			    $realfile !~ m@^drivers/base/core@) {
6043000d1cc1SJoe Perches				ERROR("LOCKDEP",
6044000d1cc1SJoe Perches				      "lockdep_no_validate class is reserved for device->mutex.\n" . $herecurr);
60451704f47bSPeter Zijlstra			}
60461704f47bSPeter Zijlstra		}
604788f8831cSDave Jones
6048b392c64fSJoe Perches		if ($line =~ /debugfs_create_\w+.*\b$mode_perms_world_writable\b/ ||
6049b392c64fSJoe Perches		    $line =~ /DEVICE_ATTR.*\b$mode_perms_world_writable\b/) {
6050000d1cc1SJoe Perches			WARN("EXPORTED_WORLD_WRITABLE",
6051000d1cc1SJoe Perches			     "Exporting world writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr);
605288f8831cSDave Jones		}
60532435880fSJoe Perches
6054515a235eSJoe Perches# Mode permission misuses where it seems decimal should be octal
6055515a235eSJoe Perches# This uses a shortcut match to avoid unnecessary uses of a slow foreach loop
6056515a235eSJoe Perches		if ($^V && $^V ge 5.10.0 &&
6057515a235eSJoe Perches		    $line =~ /$mode_perms_search/) {
60582435880fSJoe Perches			foreach my $entry (@mode_permission_funcs) {
60592435880fSJoe Perches				my $func = $entry->[0];
60602435880fSJoe Perches				my $arg_pos = $entry->[1];
60612435880fSJoe Perches
60622435880fSJoe Perches				my $skip_args = "";
60632435880fSJoe Perches				if ($arg_pos > 1) {
60642435880fSJoe Perches					$arg_pos--;
60652435880fSJoe Perches					$skip_args = "(?:\\s*$FuncArg\\s*,\\s*){$arg_pos,$arg_pos}";
60662435880fSJoe Perches				}
6067f90774e1SJoe Perches				my $test = "\\b$func\\s*\\(${skip_args}($FuncArg(?:\\|\\s*$FuncArg)*)\\s*[,\\)]";
6068515a235eSJoe Perches				if ($line =~ /$test/) {
60692435880fSJoe Perches					my $val = $1;
60702435880fSJoe Perches					$val = $6 if ($skip_args ne "");
6071f90774e1SJoe Perches					if (($val =~ /^$Int$/ && $val !~ /^$Octal$/) ||
6072f90774e1SJoe Perches					    ($val =~ /^$Octal$/ && length($val) ne 4)) {
60732435880fSJoe Perches						ERROR("NON_OCTAL_PERMISSIONS",
60741727cc70SJoe Perches						      "Use 4 digit octal (0777) not decimal permissions\n" . $herecurr);
6075f90774e1SJoe Perches					}
6076f90774e1SJoe Perches					if ($val =~ /^$Octal$/ && (oct($val) & 02)) {
6077c0a5c898SJoe Perches						ERROR("EXPORTED_WORLD_WRITABLE",
6078c0a5c898SJoe Perches						      "Exporting writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr);
60792435880fSJoe Perches					}
6080f90774e1SJoe Perches					if ($val =~ /\b$mode_perms_string_search\b/) {
6081f90774e1SJoe Perches						my $to = 0;
6082f90774e1SJoe Perches						while ($val =~ /\b($mode_perms_string_search)\b(?:\s*\|\s*)?\s*/g) {
6083f90774e1SJoe Perches							$to |=  $mode_permission_string_types{$1};
6084f90774e1SJoe Perches						}
6085f90774e1SJoe Perches						my $new = sprintf("%04o", $to);
6086f90774e1SJoe Perches						if (WARN("SYMBOLIC_PERMS",
6087f90774e1SJoe Perches							 "Symbolic permissions are not preferred. Consider using octal permissions $new.\n" . $herecurr) &&
6088f90774e1SJoe Perches						    $fix) {
6089f90774e1SJoe Perches							$fixed[$fixlinenr] =~ s/\Q$val\E/$new/;
6090f90774e1SJoe Perches						}
6091f90774e1SJoe Perches					}
60922435880fSJoe Perches				}
60932435880fSJoe Perches			}
609413214adfSAndy Whitcroft		}
60955a6d20ceSBjorn Andersson
60965a6d20ceSBjorn Andersson# validate content of MODULE_LICENSE against list from include/linux/module.h
60975a6d20ceSBjorn Andersson		if ($line =~ /\bMODULE_LICENSE\s*\(\s*($String)\s*\)/) {
60985a6d20ceSBjorn Andersson			my $extracted_string = get_quoted_string($line, $rawline);
60995a6d20ceSBjorn Andersson			my $valid_licenses = qr{
61005a6d20ceSBjorn Andersson						GPL|
61015a6d20ceSBjorn Andersson						GPL\ v2|
61025a6d20ceSBjorn Andersson						GPL\ and\ additional\ rights|
61035a6d20ceSBjorn Andersson						Dual\ BSD/GPL|
61045a6d20ceSBjorn Andersson						Dual\ MIT/GPL|
61055a6d20ceSBjorn Andersson						Dual\ MPL/GPL|
61065a6d20ceSBjorn Andersson						Proprietary
61075a6d20ceSBjorn Andersson					}x;
61085a6d20ceSBjorn Andersson			if ($extracted_string !~ /^"(?:$valid_licenses)"$/x) {
61095a6d20ceSBjorn Andersson				WARN("MODULE_LICENSE",
61105a6d20ceSBjorn Andersson				     "unknown module license " . $extracted_string . "\n" . $herecurr);
61115a6d20ceSBjorn Andersson			}
61125a6d20ceSBjorn Andersson		}
6113515a235eSJoe Perches	}
611413214adfSAndy Whitcroft
611513214adfSAndy Whitcroft	# If we have no input at all, then there is nothing to report on
611613214adfSAndy Whitcroft	# so just keep quiet.
611713214adfSAndy Whitcroft	if ($#rawlines == -1) {
611813214adfSAndy Whitcroft		exit(0);
61190a920b5bSAndy Whitcroft	}
61200a920b5bSAndy Whitcroft
61218905a67cSAndy Whitcroft	# In mailback mode only produce a report in the negative, for
61228905a67cSAndy Whitcroft	# things that appear to be patches.
61238905a67cSAndy Whitcroft	if ($mailback && ($clean == 1 || !$is_patch)) {
61248905a67cSAndy Whitcroft		exit(0);
61258905a67cSAndy Whitcroft	}
61268905a67cSAndy Whitcroft
61278905a67cSAndy Whitcroft	# This is not a patch, and we are are in 'no-patch' mode so
61288905a67cSAndy Whitcroft	# just keep quiet.
61298905a67cSAndy Whitcroft	if (!$chk_patch && !$is_patch) {
61308905a67cSAndy Whitcroft		exit(0);
61318905a67cSAndy Whitcroft	}
61328905a67cSAndy Whitcroft
613306330fc4SJoe Perches	if (!$is_patch && $file !~ /cover-letter\.patch$/) {
6134000d1cc1SJoe Perches		ERROR("NOT_UNIFIED_DIFF",
6135000d1cc1SJoe Perches		      "Does not appear to be a unified-diff format patch\n");
61360a920b5bSAndy Whitcroft	}
6137ed43c4e5SAllen Hubbe	if ($is_patch && $has_commit_log && $chk_signoff && $signoff == 0) {
6138000d1cc1SJoe Perches		ERROR("MISSING_SIGN_OFF",
6139000d1cc1SJoe Perches		      "Missing Signed-off-by: line(s)\n");
61400a920b5bSAndy Whitcroft	}
61410a920b5bSAndy Whitcroft
6142f0a594c1SAndy Whitcroft	print report_dump();
614313214adfSAndy Whitcroft	if ($summary && !($clean == 1 && $quiet == 1)) {
614413214adfSAndy Whitcroft		print "$filename " if ($summary_file);
61456c72ffaaSAndy Whitcroft		print "total: $cnt_error errors, $cnt_warn warnings, " .
61466c72ffaaSAndy Whitcroft			(($check)? "$cnt_chk checks, " : "") .
61476c72ffaaSAndy Whitcroft			"$cnt_lines lines checked\n";
61486c72ffaaSAndy Whitcroft	}
61498905a67cSAndy Whitcroft
6150d2c0a235SAndy Whitcroft	if ($quiet == 0) {
6151ef212196SJoe Perches		# If there were any defects found and not already fixing them
6152ef212196SJoe Perches		if (!$clean and !$fix) {
6153ef212196SJoe Perches			print << "EOM"
6154ef212196SJoe Perches
6155ef212196SJoe PerchesNOTE: For some of the reported defects, checkpatch may be able to
6156ef212196SJoe Perches      mechanically convert to the typical style using --fix or --fix-inplace.
6157ef212196SJoe PerchesEOM
6158ef212196SJoe Perches		}
6159d2c0a235SAndy Whitcroft		# If there were whitespace errors which cleanpatch can fix
6160d2c0a235SAndy Whitcroft		# then suggest that.
6161d2c0a235SAndy Whitcroft		if ($rpt_cleaners) {
6162b0781216SMike Frysinger			$rpt_cleaners = 0;
6163d8469f16SJoe Perches			print << "EOM"
6164d8469f16SJoe Perches
6165d8469f16SJoe PerchesNOTE: Whitespace errors detected.
6166d8469f16SJoe Perches      You may wish to use scripts/cleanpatch or scripts/cleanfile
6167d8469f16SJoe PerchesEOM
6168d2c0a235SAndy Whitcroft		}
6169d2c0a235SAndy Whitcroft	}
6170d2c0a235SAndy Whitcroft
6171d752fcc8SJoe Perches	if ($clean == 0 && $fix &&
6172d752fcc8SJoe Perches	    ("@rawlines" ne "@fixed" ||
6173d752fcc8SJoe Perches	     $#fixed_inserted >= 0 || $#fixed_deleted >= 0)) {
61749624b8d6SJoe Perches		my $newfile = $filename;
61759624b8d6SJoe Perches		$newfile .= ".EXPERIMENTAL-checkpatch-fixes" if (!$fix_inplace);
61763705ce5bSJoe Perches		my $linecount = 0;
61773705ce5bSJoe Perches		my $f;
61783705ce5bSJoe Perches
6179d752fcc8SJoe Perches		@fixed = fix_inserted_deleted_lines(\@fixed, \@fixed_inserted, \@fixed_deleted);
6180d752fcc8SJoe Perches
61813705ce5bSJoe Perches		open($f, '>', $newfile)
61823705ce5bSJoe Perches		    or die "$P: Can't open $newfile for write\n";
61833705ce5bSJoe Perches		foreach my $fixed_line (@fixed) {
61843705ce5bSJoe Perches			$linecount++;
61853705ce5bSJoe Perches			if ($file) {
61863705ce5bSJoe Perches				if ($linecount > 3) {
61873705ce5bSJoe Perches					$fixed_line =~ s/^\+//;
61883705ce5bSJoe Perches					print $f $fixed_line . "\n";
61893705ce5bSJoe Perches				}
61903705ce5bSJoe Perches			} else {
61913705ce5bSJoe Perches				print $f $fixed_line . "\n";
61923705ce5bSJoe Perches			}
61933705ce5bSJoe Perches		}
61943705ce5bSJoe Perches		close($f);
61953705ce5bSJoe Perches
61963705ce5bSJoe Perches		if (!$quiet) {
61973705ce5bSJoe Perches			print << "EOM";
6198d8469f16SJoe Perches
61993705ce5bSJoe PerchesWrote EXPERIMENTAL --fix correction(s) to '$newfile'
62003705ce5bSJoe Perches
62013705ce5bSJoe PerchesDo _NOT_ trust the results written to this file.
62023705ce5bSJoe PerchesDo _NOT_ submit these changes without inspecting them for correctness.
62033705ce5bSJoe Perches
62043705ce5bSJoe PerchesThis EXPERIMENTAL file is simply a convenience to help rewrite patches.
62053705ce5bSJoe PerchesNo warranties, expressed or implied...
62063705ce5bSJoe PerchesEOM
62073705ce5bSJoe Perches		}
62083705ce5bSJoe Perches	}
62093705ce5bSJoe Perches
6210d8469f16SJoe Perches	if ($quiet == 0) {
6211d8469f16SJoe Perches		print "\n";
6212d8469f16SJoe Perches		if ($clean == 1) {
6213d8469f16SJoe Perches			print "$vname has no obvious style problems and is ready for submission.\n";
6214d8469f16SJoe Perches		} else {
6215d8469f16SJoe Perches			print "$vname has style problems, please review.\n";
62160a920b5bSAndy Whitcroft		}
62170a920b5bSAndy Whitcroft	}
62180a920b5bSAndy Whitcroft	return $clean;
62190a920b5bSAndy Whitcroft}
6220