xref: /linux-6.15/scripts/checkpatch.pl (revision ca0d8929)
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
4756f59b64bfSJoe Perches			$dstat =~ s/^.\s*\#\s*define\s+$Ident(\([^\)]*\))?\s*//;
4757f59b64bfSJoe Perches			my $define_args = $1;
4758f59b64bfSJoe Perches			my $define_stmt = $dstat;
4759f59b64bfSJoe Perches			my @def_args = ();
4760f59b64bfSJoe Perches
4761f59b64bfSJoe Perches			if (defined $define_args && $define_args ne "") {
4762f59b64bfSJoe Perches				$define_args = substr($define_args, 1, length($define_args) - 2);
4763f59b64bfSJoe Perches				$define_args =~ s/\s*//g;
4764f59b64bfSJoe Perches				@def_args = split(",", $define_args);
4765f59b64bfSJoe Perches			}
4766f59b64bfSJoe 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";
4802f59b64bfSJoe Perches
4803f59b64bfSJoe Perches			$ctx =~ s/\n*$//;
4804f59b64bfSJoe Perches			my $herectx = $here . "\n";
4805f59b64bfSJoe Perches			my $stmt_cnt = statement_rawlines($ctx);
4806f59b64bfSJoe Perches
4807f59b64bfSJoe Perches			for (my $n = 0; $n < $stmt_cnt; $n++) {
4808f59b64bfSJoe Perches				$herectx .= raw_line($linenr, $n) . "\n";
4809f59b64bfSJoe Perches			}
4810f59b64bfSJoe 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				}
4834f59b64bfSJoe Perches
4835f59b64bfSJoe Perches			}
48365207649bSJoe Perches
48375207649bSJoe Perches			# Make $define_stmt single line, comment-free, etc
48385207649bSJoe Perches			my @stmt_array = split('\n', $define_stmt);
48395207649bSJoe Perches			my $first = 1;
48405207649bSJoe Perches			$define_stmt = "";
48415207649bSJoe Perches			foreach my $l (@stmt_array) {
48425207649bSJoe Perches				$l =~ s/\\$//;
48435207649bSJoe Perches				if ($first) {
48445207649bSJoe Perches					$define_stmt = $l;
48455207649bSJoe Perches					$first = 0;
48465207649bSJoe Perches				} elsif ($l =~ /^[\+ ]/) {
48475207649bSJoe Perches					$define_stmt .= substr($l, 1);
48485207649bSJoe Perches				}
48495207649bSJoe Perches			}
48505207649bSJoe Perches			$define_stmt =~ s/$;//g;
48515207649bSJoe Perches			$define_stmt =~ s/\s+/ /g;
48525207649bSJoe Perches			$define_stmt = trim($define_stmt);
48535207649bSJoe Perches
4854f59b64bfSJoe Perches# check if any macro arguments are reused (ignore '...' and 'type')
4855f59b64bfSJoe Perches			foreach my $arg (@def_args) {
4856f59b64bfSJoe Perches			        next if ($arg =~ /\.\.\./);
48579192d41aSJoe Perches			        next if ($arg =~ /^type$/i);
4858f59b64bfSJoe Perches				my $tmp = $define_stmt;
4859f59b64bfSJoe Perches				$tmp =~ s/\b(typeof|__typeof__|__builtin\w+|typecheck\s*\(\s*$Type\s*,|\#+)\s*\(*\s*$arg\s*\)*\b//g;
48605207649bSJoe Perches				$tmp =~ s/\#+\s*$arg\b//g;
4861f59b64bfSJoe Perches				$tmp =~ s/\b$arg\s*\#\#//g;
4862f59b64bfSJoe Perches				my $use_cnt = $tmp =~ s/\b$arg\b//g;
4863f59b64bfSJoe Perches				if ($use_cnt > 1) {
4864f59b64bfSJoe Perches					CHK("MACRO_ARG_REUSE",
4865f59b64bfSJoe Perches					    "Macro argument reuse '$arg' - possible side-effects?\n" . "$herectx");
4866f59b64bfSJoe Perches				    }
48679192d41aSJoe Perches# check if any macro arguments may have other precedence issues
48689192d41aSJoe Perches				if ($define_stmt =~ m/($Operators)?\s*\b$arg\b\s*($Operators)?/m &&
48699192d41aSJoe Perches				    ((defined($1) && $1 ne ',') ||
48709192d41aSJoe Perches				     (defined($2) && $2 ne ','))) {
48719192d41aSJoe Perches					CHK("MACRO_ARG_PRECEDENCE",
48729192d41aSJoe Perches					    "Macro argument '$arg' may be better as '($arg)' to avoid precedence issues\n" . "$herectx");
48739192d41aSJoe Perches				}
48740a920b5bSAndy Whitcroft			}
48755023d347SJoe Perches
487608a2843eSJoe Perches# check for macros with flow control, but without ## concatenation
487708a2843eSJoe Perches# ## concatenation is commonly a macro that defines a function so ignore those
487808a2843eSJoe Perches			if ($has_flow_statement && !$has_arg_concat) {
487908a2843eSJoe Perches				my $herectx = $here . "\n";
488008a2843eSJoe Perches				my $cnt = statement_rawlines($ctx);
488108a2843eSJoe Perches
488208a2843eSJoe Perches				for (my $n = 0; $n < $cnt; $n++) {
488308a2843eSJoe Perches					$herectx .= raw_line($linenr, $n) . "\n";
488408a2843eSJoe Perches				}
488508a2843eSJoe Perches				WARN("MACRO_WITH_FLOW_CONTROL",
488608a2843eSJoe Perches				     "Macros with flow control statements should be avoided\n" . "$herectx");
488708a2843eSJoe Perches			}
488808a2843eSJoe Perches
4889481eb486SJoe Perches# check for line continuations outside of #defines, preprocessor #, and asm
48905023d347SJoe Perches
48915023d347SJoe Perches		} else {
48925023d347SJoe Perches			if ($prevline !~ /^..*\\$/ &&
4893481eb486SJoe Perches			    $line !~ /^\+\s*\#.*\\$/ &&		# preprocessor
4894481eb486SJoe Perches			    $line !~ /^\+.*\b(__asm__|asm)\b.*\\$/ &&	# asm
48955023d347SJoe Perches			    $line =~ /^\+.*\\$/) {
48965023d347SJoe Perches				WARN("LINE_CONTINUATIONS",
48975023d347SJoe Perches				     "Avoid unnecessary line continuations\n" . $herecurr);
48985023d347SJoe Perches			}
4899653d4876SAndy Whitcroft		}
49000a920b5bSAndy Whitcroft
4901b13edf7fSJoe Perches# do {} while (0) macro tests:
4902b13edf7fSJoe Perches# single-statement macros do not need to be enclosed in do while (0) loop,
4903b13edf7fSJoe Perches# macro should not end with a semicolon
4904b13edf7fSJoe Perches		if ($^V && $^V ge 5.10.0 &&
4905b13edf7fSJoe Perches		    $realfile !~ m@/vmlinux.lds.h$@ &&
4906b13edf7fSJoe Perches		    $line =~ /^.\s*\#\s*define\s+$Ident(\()?/) {
4907b13edf7fSJoe Perches			my $ln = $linenr;
4908b13edf7fSJoe Perches			my $cnt = $realcnt;
4909b13edf7fSJoe Perches			my ($off, $dstat, $dcond, $rest);
4910b13edf7fSJoe Perches			my $ctx = '';
4911b13edf7fSJoe Perches			($dstat, $dcond, $ln, $cnt, $off) =
4912b13edf7fSJoe Perches				ctx_statement_block($linenr, $realcnt, 0);
4913b13edf7fSJoe Perches			$ctx = $dstat;
4914b13edf7fSJoe Perches
4915b13edf7fSJoe Perches			$dstat =~ s/\\\n.//g;
49161b36b201SJoe Perches			$dstat =~ s/$;/ /g;
4917b13edf7fSJoe Perches
4918b13edf7fSJoe Perches			if ($dstat =~ /^\+\s*#\s*define\s+$Ident\s*${balanced_parens}\s*do\s*{(.*)\s*}\s*while\s*\(\s*0\s*\)\s*([;\s]*)\s*$/) {
4919b13edf7fSJoe Perches				my $stmts = $2;
4920b13edf7fSJoe Perches				my $semis = $3;
4921b13edf7fSJoe Perches
4922b13edf7fSJoe Perches				$ctx =~ s/\n*$//;
4923b13edf7fSJoe Perches				my $cnt = statement_rawlines($ctx);
4924b13edf7fSJoe Perches				my $herectx = $here . "\n";
4925b13edf7fSJoe Perches
4926b13edf7fSJoe Perches				for (my $n = 0; $n < $cnt; $n++) {
4927b13edf7fSJoe Perches					$herectx .= raw_line($linenr, $n) . "\n";
4928b13edf7fSJoe Perches				}
4929b13edf7fSJoe Perches
4930ac8e97f8SJoe Perches				if (($stmts =~ tr/;/;/) == 1 &&
4931ac8e97f8SJoe Perches				    $stmts !~ /^\s*(if|while|for|switch)\b/) {
4932b13edf7fSJoe Perches					WARN("SINGLE_STATEMENT_DO_WHILE_MACRO",
4933b13edf7fSJoe Perches					     "Single statement macros should not use a do {} while (0) loop\n" . "$herectx");
4934b13edf7fSJoe Perches				}
4935b13edf7fSJoe Perches				if (defined $semis && $semis ne "") {
4936b13edf7fSJoe Perches					WARN("DO_WHILE_MACRO_WITH_TRAILING_SEMICOLON",
4937b13edf7fSJoe Perches					     "do {} while (0) macros should not be semicolon terminated\n" . "$herectx");
4938b13edf7fSJoe Perches				}
4939f5ef95b1SJoe Perches			} elsif ($dstat =~ /^\+\s*#\s*define\s+$Ident.*;\s*$/) {
4940f5ef95b1SJoe Perches				$ctx =~ s/\n*$//;
4941f5ef95b1SJoe Perches				my $cnt = statement_rawlines($ctx);
4942f5ef95b1SJoe Perches				my $herectx = $here . "\n";
4943f5ef95b1SJoe Perches
4944f5ef95b1SJoe Perches				for (my $n = 0; $n < $cnt; $n++) {
4945f5ef95b1SJoe Perches					$herectx .= raw_line($linenr, $n) . "\n";
4946f5ef95b1SJoe Perches				}
4947f5ef95b1SJoe Perches
4948f5ef95b1SJoe Perches				WARN("TRAILING_SEMICOLON",
4949f5ef95b1SJoe Perches				     "macros should not use a trailing semicolon\n" . "$herectx");
4950b13edf7fSJoe Perches			}
4951b13edf7fSJoe Perches		}
4952b13edf7fSJoe Perches
4953080ba929SMike Frysinger# make sure symbols are always wrapped with VMLINUX_SYMBOL() ...
4954080ba929SMike Frysinger# all assignments may have only one of the following with an assignment:
4955080ba929SMike Frysinger#	.
4956080ba929SMike Frysinger#	ALIGN(...)
4957080ba929SMike Frysinger#	VMLINUX_SYMBOL(...)
4958080ba929SMike Frysinger		if ($realfile eq 'vmlinux.lds.h' && $line =~ /(?:(?:^|\s)$Ident\s*=|=\s*$Ident(?:\s|$))/) {
4959000d1cc1SJoe Perches			WARN("MISSING_VMLINUX_SYMBOL",
4960000d1cc1SJoe Perches			     "vmlinux.lds.h needs VMLINUX_SYMBOL() around C-visible symbols\n" . $herecurr);
4961080ba929SMike Frysinger		}
4962080ba929SMike Frysinger
4963f0a594c1SAndy Whitcroft# check for redundant bracing round if etc
496413214adfSAndy Whitcroft		if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) {
496513214adfSAndy Whitcroft			my ($level, $endln, @chunks) =
4966cf655043SAndy Whitcroft				ctx_statement_full($linenr, $realcnt, 1);
496713214adfSAndy Whitcroft			#print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n";
4968cf655043SAndy Whitcroft			#print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n";
4969cf655043SAndy Whitcroft			if ($#chunks > 0 && $level == 0) {
4970aad4f614SJoe Perches				my @allowed = ();
4971aad4f614SJoe Perches				my $allow = 0;
497213214adfSAndy Whitcroft				my $seen = 0;
4973773647a0SAndy Whitcroft				my $herectx = $here . "\n";
4974cf655043SAndy Whitcroft				my $ln = $linenr - 1;
497513214adfSAndy Whitcroft				for my $chunk (@chunks) {
497613214adfSAndy Whitcroft					my ($cond, $block) = @{$chunk};
497713214adfSAndy Whitcroft
4978773647a0SAndy Whitcroft					# If the condition carries leading newlines, then count those as offsets.
4979773647a0SAndy Whitcroft					my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s);
4980773647a0SAndy Whitcroft					my $offset = statement_rawlines($whitespace) - 1;
4981773647a0SAndy Whitcroft
4982aad4f614SJoe Perches					$allowed[$allow] = 0;
4983773647a0SAndy Whitcroft					#print "COND<$cond> whitespace<$whitespace> offset<$offset>\n";
4984773647a0SAndy Whitcroft
4985773647a0SAndy Whitcroft					# We have looked at and allowed this specific line.
4986773647a0SAndy Whitcroft					$suppress_ifbraces{$ln + $offset} = 1;
4987773647a0SAndy Whitcroft
4988773647a0SAndy Whitcroft					$herectx .= "$rawlines[$ln + $offset]\n[...]\n";
4989cf655043SAndy Whitcroft					$ln += statement_rawlines($block) - 1;
4990cf655043SAndy Whitcroft
4991773647a0SAndy Whitcroft					substr($block, 0, length($cond), '');
499213214adfSAndy Whitcroft
499313214adfSAndy Whitcroft					$seen++ if ($block =~ /^\s*{/);
499413214adfSAndy Whitcroft
4995aad4f614SJoe Perches					#print "cond<$cond> block<$block> allowed<$allowed[$allow]>\n";
4996cf655043SAndy Whitcroft					if (statement_lines($cond) > 1) {
4997cf655043SAndy Whitcroft						#print "APW: ALLOWED: cond<$cond>\n";
4998aad4f614SJoe Perches						$allowed[$allow] = 1;
499913214adfSAndy Whitcroft					}
500013214adfSAndy Whitcroft					if ($block =~/\b(?:if|for|while)\b/) {
5001cf655043SAndy Whitcroft						#print "APW: ALLOWED: block<$block>\n";
5002aad4f614SJoe Perches						$allowed[$allow] = 1;
500313214adfSAndy Whitcroft					}
5004cf655043SAndy Whitcroft					if (statement_block_size($block) > 1) {
5005cf655043SAndy Whitcroft						#print "APW: ALLOWED: lines block<$block>\n";
5006aad4f614SJoe Perches						$allowed[$allow] = 1;
500713214adfSAndy Whitcroft					}
5008aad4f614SJoe Perches					$allow++;
500913214adfSAndy Whitcroft				}
5010aad4f614SJoe Perches				if ($seen) {
5011aad4f614SJoe Perches					my $sum_allowed = 0;
5012aad4f614SJoe Perches					foreach (@allowed) {
5013aad4f614SJoe Perches						$sum_allowed += $_;
5014aad4f614SJoe Perches					}
5015aad4f614SJoe Perches					if ($sum_allowed == 0) {
5016000d1cc1SJoe Perches						WARN("BRACES",
5017000d1cc1SJoe Perches						     "braces {} are not necessary for any arm of this statement\n" . $herectx);
5018aad4f614SJoe Perches					} elsif ($sum_allowed != $allow &&
5019aad4f614SJoe Perches						 $seen != $allow) {
5020aad4f614SJoe Perches						CHK("BRACES",
5021aad4f614SJoe Perches						    "braces {} should be used on all arms of this statement\n" . $herectx);
5022aad4f614SJoe Perches					}
502313214adfSAndy Whitcroft				}
502413214adfSAndy Whitcroft			}
502513214adfSAndy Whitcroft		}
5026773647a0SAndy Whitcroft		if (!defined $suppress_ifbraces{$linenr - 1} &&
502713214adfSAndy Whitcroft					$line =~ /\b(if|while|for|else)\b/) {
5028cf655043SAndy Whitcroft			my $allowed = 0;
5029f0a594c1SAndy Whitcroft
5030cf655043SAndy Whitcroft			# Check the pre-context.
5031cf655043SAndy Whitcroft			if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) {
5032cf655043SAndy Whitcroft				#print "APW: ALLOWED: pre<$1>\n";
5033cf655043SAndy Whitcroft				$allowed = 1;
5034f0a594c1SAndy Whitcroft			}
5035773647a0SAndy Whitcroft
5036773647a0SAndy Whitcroft			my ($level, $endln, @chunks) =
5037773647a0SAndy Whitcroft				ctx_statement_full($linenr, $realcnt, $-[0]);
5038773647a0SAndy Whitcroft
5039cf655043SAndy Whitcroft			# Check the condition.
5040cf655043SAndy Whitcroft			my ($cond, $block) = @{$chunks[0]};
5041773647a0SAndy Whitcroft			#print "CHECKING<$linenr> cond<$cond> block<$block>\n";
5042cf655043SAndy Whitcroft			if (defined $cond) {
5043773647a0SAndy Whitcroft				substr($block, 0, length($cond), '');
5044cf655043SAndy Whitcroft			}
5045cf655043SAndy Whitcroft			if (statement_lines($cond) > 1) {
5046cf655043SAndy Whitcroft				#print "APW: ALLOWED: cond<$cond>\n";
5047cf655043SAndy Whitcroft				$allowed = 1;
5048cf655043SAndy Whitcroft			}
5049cf655043SAndy Whitcroft			if ($block =~/\b(?:if|for|while)\b/) {
5050cf655043SAndy Whitcroft				#print "APW: ALLOWED: block<$block>\n";
5051cf655043SAndy Whitcroft				$allowed = 1;
5052cf655043SAndy Whitcroft			}
5053cf655043SAndy Whitcroft			if (statement_block_size($block) > 1) {
5054cf655043SAndy Whitcroft				#print "APW: ALLOWED: lines block<$block>\n";
5055cf655043SAndy Whitcroft				$allowed = 1;
5056cf655043SAndy Whitcroft			}
5057cf655043SAndy Whitcroft			# Check the post-context.
5058cf655043SAndy Whitcroft			if (defined $chunks[1]) {
5059cf655043SAndy Whitcroft				my ($cond, $block) = @{$chunks[1]};
5060cf655043SAndy Whitcroft				if (defined $cond) {
5061773647a0SAndy Whitcroft					substr($block, 0, length($cond), '');
5062cf655043SAndy Whitcroft				}
5063cf655043SAndy Whitcroft				if ($block =~ /^\s*\{/) {
5064cf655043SAndy Whitcroft					#print "APW: ALLOWED: chunk-1 block<$block>\n";
5065cf655043SAndy Whitcroft					$allowed = 1;
5066cf655043SAndy Whitcroft				}
5067cf655043SAndy Whitcroft			}
5068cf655043SAndy Whitcroft			if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
506969932487SJustin P. Mattock				my $herectx = $here . "\n";
5070f055663cSAndy Whitcroft				my $cnt = statement_rawlines($block);
5071cf655043SAndy Whitcroft
5072f055663cSAndy Whitcroft				for (my $n = 0; $n < $cnt; $n++) {
507369932487SJustin P. Mattock					$herectx .= raw_line($linenr, $n) . "\n";
5074cf655043SAndy Whitcroft				}
5075cf655043SAndy Whitcroft
5076000d1cc1SJoe Perches				WARN("BRACES",
5077000d1cc1SJoe Perches				     "braces {} are not necessary for single statement blocks\n" . $herectx);
5078f0a594c1SAndy Whitcroft			}
5079f0a594c1SAndy Whitcroft		}
5080f0a594c1SAndy Whitcroft
50810979ae66SJoe Perches# check for unnecessary blank lines around braces
508277b9a53aSJoe Perches		if (($line =~ /^.\s*}\s*$/ && $prevrawline =~ /^.\s*$/)) {
5083f8e58219SJoe Perches			if (CHK("BRACES",
5084f8e58219SJoe Perches				"Blank lines aren't necessary before a close brace '}'\n" . $hereprev) &&
5085f8e58219SJoe Perches			    $fix && $prevrawline =~ /^\+/) {
5086f8e58219SJoe Perches				fix_delete_line($fixlinenr - 1, $prevrawline);
5087f8e58219SJoe Perches			}
50880979ae66SJoe Perches		}
508977b9a53aSJoe Perches		if (($rawline =~ /^.\s*$/ && $prevline =~ /^..*{\s*$/)) {
5090f8e58219SJoe Perches			if (CHK("BRACES",
5091f8e58219SJoe Perches				"Blank lines aren't necessary after an open brace '{'\n" . $hereprev) &&
5092f8e58219SJoe Perches			    $fix) {
5093f8e58219SJoe Perches				fix_delete_line($fixlinenr, $rawline);
5094f8e58219SJoe Perches			}
50950979ae66SJoe Perches		}
50960979ae66SJoe Perches
50974a0df2efSAndy Whitcroft# no volatiles please
50986c72ffaaSAndy Whitcroft		my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
50996c72ffaaSAndy Whitcroft		if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
5100000d1cc1SJoe Perches			WARN("VOLATILE",
5101000d1cc1SJoe Perches			     "Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt\n" . $herecurr);
51024a0df2efSAndy Whitcroft		}
51034a0df2efSAndy Whitcroft
51045e4f6ba5SJoe Perches# Check for user-visible strings broken across lines, which breaks the ability
51055e4f6ba5SJoe Perches# to grep for the string.  Make exceptions when the previous string ends in a
51065e4f6ba5SJoe Perches# newline (multiple lines in one string constant) or '\t', '\r', ';', or '{'
51075e4f6ba5SJoe Perches# (common in inline assembly) or is a octal \123 or hexadecimal \xaf value
510833acb54aSJoe Perches		if ($line =~ /^\+\s*$String/ &&
51095e4f6ba5SJoe Perches		    $prevline =~ /"\s*$/ &&
51105e4f6ba5SJoe Perches		    $prevrawline !~ /(?:\\(?:[ntr]|[0-7]{1,3}|x[0-9a-fA-F]{1,2})|;\s*|\{\s*)"\s*$/) {
51115e4f6ba5SJoe Perches			if (WARN("SPLIT_STRING",
51125e4f6ba5SJoe Perches				 "quoted string split across lines\n" . $hereprev) &&
51135e4f6ba5SJoe Perches				     $fix &&
51145e4f6ba5SJoe Perches				     $prevrawline =~ /^\+.*"\s*$/ &&
51155e4f6ba5SJoe Perches				     $last_coalesced_string_linenr != $linenr - 1) {
51165e4f6ba5SJoe Perches				my $extracted_string = get_quoted_string($line, $rawline);
51175e4f6ba5SJoe Perches				my $comma_close = "";
51185e4f6ba5SJoe Perches				if ($rawline =~ /\Q$extracted_string\E(\s*\)\s*;\s*$|\s*,\s*)/) {
51195e4f6ba5SJoe Perches					$comma_close = $1;
51205e4f6ba5SJoe Perches				}
51215e4f6ba5SJoe Perches
51225e4f6ba5SJoe Perches				fix_delete_line($fixlinenr - 1, $prevrawline);
51235e4f6ba5SJoe Perches				fix_delete_line($fixlinenr, $rawline);
51245e4f6ba5SJoe Perches				my $fixedline = $prevrawline;
51255e4f6ba5SJoe Perches				$fixedline =~ s/"\s*$//;
51265e4f6ba5SJoe Perches				$fixedline .= substr($extracted_string, 1) . trim($comma_close);
51275e4f6ba5SJoe Perches				fix_insert_line($fixlinenr - 1, $fixedline);
51285e4f6ba5SJoe Perches				$fixedline = $rawline;
51295e4f6ba5SJoe Perches				$fixedline =~ s/\Q$extracted_string\E\Q$comma_close\E//;
51305e4f6ba5SJoe Perches				if ($fixedline !~ /\+\s*$/) {
51315e4f6ba5SJoe Perches					fix_insert_line($fixlinenr, $fixedline);
51325e4f6ba5SJoe Perches				}
51335e4f6ba5SJoe Perches				$last_coalesced_string_linenr = $linenr;
51345e4f6ba5SJoe Perches			}
51355e4f6ba5SJoe Perches		}
51365e4f6ba5SJoe Perches
51375e4f6ba5SJoe Perches# check for missing a space in a string concatenation
51385e4f6ba5SJoe Perches		if ($prevrawline =~ /[^\\]\w"$/ && $rawline =~ /^\+[\t ]+"\w/) {
51395e4f6ba5SJoe Perches			WARN('MISSING_SPACE',
51405e4f6ba5SJoe Perches			     "break quoted strings at a space character\n" . $hereprev);
51415e4f6ba5SJoe Perches		}
51425e4f6ba5SJoe Perches
51435e4f6ba5SJoe Perches# check for spaces before a quoted newline
51445e4f6ba5SJoe Perches		if ($rawline =~ /^.*\".*\s\\n/) {
51455e4f6ba5SJoe Perches			if (WARN("QUOTED_WHITESPACE_BEFORE_NEWLINE",
51465e4f6ba5SJoe Perches				 "unnecessary whitespace before a quoted newline\n" . $herecurr) &&
51475e4f6ba5SJoe Perches			    $fix) {
51485e4f6ba5SJoe Perches				$fixed[$fixlinenr] =~ s/^(\+.*\".*)\s+\\n/$1\\n/;
51495e4f6ba5SJoe Perches			}
51505e4f6ba5SJoe Perches
51515e4f6ba5SJoe Perches		}
51525e4f6ba5SJoe Perches
5153f17dba4fSJoe Perches# concatenated string without spaces between elements
515433acb54aSJoe Perches		if ($line =~ /$String[A-Z_]/ || $line =~ /[A-Za-z0-9_]$String/) {
5155f17dba4fSJoe Perches			CHK("CONCATENATED_STRING",
5156f17dba4fSJoe Perches			    "Concatenated strings should use spaces between elements\n" . $herecurr);
5157f17dba4fSJoe Perches		}
5158f17dba4fSJoe Perches
515990ad30e5SJoe Perches# uncoalesced string fragments
516033acb54aSJoe Perches		if ($line =~ /$String\s*"/) {
516190ad30e5SJoe Perches			WARN("STRING_FRAGMENTS",
516290ad30e5SJoe Perches			     "Consecutive strings are generally better as a single string\n" . $herecurr);
516390ad30e5SJoe Perches		}
516490ad30e5SJoe Perches
51656e300757SJoe Perches# check for %L{u,d,i} and 0x%[udi] in strings
51665e4f6ba5SJoe Perches		my $string;
51675e4f6ba5SJoe Perches		while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) {
51685e4f6ba5SJoe Perches			$string = substr($rawline, $-[1], $+[1] - $-[1]);
51695e4f6ba5SJoe Perches			$string =~ s/%%/__/g;
51706e300757SJoe Perches			if ($string =~ /(?<!%)%[\*\d\.\$]*L[udi]/) {
51715e4f6ba5SJoe Perches				WARN("PRINTF_L",
51725e4f6ba5SJoe Perches				     "\%Ld/%Lu are not-standard C, use %lld/%llu\n" . $herecurr);
51735e4f6ba5SJoe Perches				last;
51745e4f6ba5SJoe Perches			}
51756e300757SJoe Perches			if ($string =~ /0x%[\*\d\.\$\Llzth]*[udi]/) {
51766e300757SJoe Perches				ERROR("PRINTF_0xDECIMAL",
51776e300757SJoe Perches				      "Prefixing 0x with decimal output is defective\n" . $herecurr);
51786e300757SJoe Perches			}
51795e4f6ba5SJoe Perches		}
51805e4f6ba5SJoe Perches
51815e4f6ba5SJoe Perches# check for line continuations in quoted strings with odd counts of "
51825e4f6ba5SJoe Perches		if ($rawline =~ /\\$/ && $rawline =~ tr/"/"/ % 2) {
51835e4f6ba5SJoe Perches			WARN("LINE_CONTINUATIONS",
51845e4f6ba5SJoe Perches			     "Avoid line continuations in quoted strings\n" . $herecurr);
51855e4f6ba5SJoe Perches		}
51865e4f6ba5SJoe Perches
518700df344fSAndy Whitcroft# warn about #if 0
5188c45dcabdSAndy Whitcroft		if ($line =~ /^.\s*\#\s*if\s+0\b/) {
5189000d1cc1SJoe Perches			CHK("REDUNDANT_CODE",
5190000d1cc1SJoe Perches			    "if this code is redundant consider removing it\n" .
5191de7d4f0eSAndy Whitcroft				$herecurr);
51924a0df2efSAndy Whitcroft		}
51934a0df2efSAndy Whitcroft
519403df4b51SAndy Whitcroft# check for needless "if (<foo>) fn(<foo>)" uses
519503df4b51SAndy Whitcroft		if ($prevline =~ /\bif\s*\(\s*($Lval)\s*\)/) {
5196100425deSJoe Perches			my $tested = quotemeta($1);
5197100425deSJoe Perches			my $expr = '\s*\(\s*' . $tested . '\s*\)\s*;';
5198100425deSJoe Perches			if ($line =~ /\b(kfree|usb_free_urb|debugfs_remove(?:_recursive)?|(?:kmem_cache|mempool|dma_pool)_destroy)$expr/) {
5199100425deSJoe Perches				my $func = $1;
5200100425deSJoe Perches				if (WARN('NEEDLESS_IF',
5201100425deSJoe Perches					 "$func(NULL) is safe and this check is probably not required\n" . $hereprev) &&
5202100425deSJoe Perches				    $fix) {
5203100425deSJoe Perches					my $do_fix = 1;
5204100425deSJoe Perches					my $leading_tabs = "";
5205100425deSJoe Perches					my $new_leading_tabs = "";
5206100425deSJoe Perches					if ($lines[$linenr - 2] =~ /^\+(\t*)if\s*\(\s*$tested\s*\)\s*$/) {
5207100425deSJoe Perches						$leading_tabs = $1;
5208100425deSJoe Perches					} else {
5209100425deSJoe Perches						$do_fix = 0;
5210100425deSJoe Perches					}
5211100425deSJoe Perches					if ($lines[$linenr - 1] =~ /^\+(\t+)$func\s*\(\s*$tested\s*\)\s*;\s*$/) {
5212100425deSJoe Perches						$new_leading_tabs = $1;
5213100425deSJoe Perches						if (length($leading_tabs) + 1 ne length($new_leading_tabs)) {
5214100425deSJoe Perches							$do_fix = 0;
5215100425deSJoe Perches						}
5216100425deSJoe Perches					} else {
5217100425deSJoe Perches						$do_fix = 0;
5218100425deSJoe Perches					}
5219100425deSJoe Perches					if ($do_fix) {
5220100425deSJoe Perches						fix_delete_line($fixlinenr - 1, $prevrawline);
5221100425deSJoe Perches						$fixed[$fixlinenr] =~ s/^\+$new_leading_tabs/\+$leading_tabs/;
5222100425deSJoe Perches					}
5223100425deSJoe Perches				}
52244c432a8fSGreg Kroah-Hartman			}
52254c432a8fSGreg Kroah-Hartman		}
5226f0a594c1SAndy Whitcroft
5227ebfdc409SJoe Perches# check for unnecessary "Out of Memory" messages
5228ebfdc409SJoe Perches		if ($line =~ /^\+.*\b$logFunctions\s*\(/ &&
5229ebfdc409SJoe Perches		    $prevline =~ /^[ \+]\s*if\s*\(\s*(\!\s*|NULL\s*==\s*)?($Lval)(\s*==\s*NULL\s*)?\s*\)/ &&
5230ebfdc409SJoe Perches		    (defined $1 || defined $3) &&
5231ebfdc409SJoe Perches		    $linenr > 3) {
5232ebfdc409SJoe Perches			my $testval = $2;
5233ebfdc409SJoe Perches			my $testline = $lines[$linenr - 3];
5234ebfdc409SJoe Perches
5235ebfdc409SJoe Perches			my ($s, $c) = ctx_statement_block($linenr - 3, $realcnt, 0);
5236ebfdc409SJoe Perches#			print("line: <$line>\nprevline: <$prevline>\ns: <$s>\nc: <$c>\n\n\n");
5237ebfdc409SJoe Perches
5238ebfdc409SJoe 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)/) {
5239ebfdc409SJoe Perches				WARN("OOM_MESSAGE",
5240ebfdc409SJoe Perches				     "Possible unnecessary 'out of memory' message\n" . $hereprev);
5241ebfdc409SJoe Perches			}
5242ebfdc409SJoe Perches		}
5243ebfdc409SJoe Perches
5244f78d98f6SJoe Perches# check for logging functions with KERN_<LEVEL>
5245dcaf1123SPaolo Bonzini		if ($line !~ /printk(?:_ratelimited|_once)?\s*\(/ &&
5246f78d98f6SJoe Perches		    $line =~ /\b$logFunctions\s*\(.*\b(KERN_[A-Z]+)\b/) {
5247f78d98f6SJoe Perches			my $level = $1;
5248f78d98f6SJoe Perches			if (WARN("UNNECESSARY_KERN_LEVEL",
5249f78d98f6SJoe Perches				 "Possible unnecessary $level\n" . $herecurr) &&
5250f78d98f6SJoe Perches			    $fix) {
5251f78d98f6SJoe Perches				$fixed[$fixlinenr] =~ s/\s*$level\s*//;
5252f78d98f6SJoe Perches			}
5253f78d98f6SJoe Perches		}
5254f78d98f6SJoe Perches
5255abb08a53SJoe Perches# check for mask then right shift without a parentheses
5256abb08a53SJoe Perches		if ($^V && $^V ge 5.10.0 &&
5257abb08a53SJoe Perches		    $line =~ /$LvalOrFunc\s*\&\s*($LvalOrFunc)\s*>>/ &&
5258abb08a53SJoe Perches		    $4 !~ /^\&/) { # $LvalOrFunc may be &foo, ignore if so
5259abb08a53SJoe Perches			WARN("MASK_THEN_SHIFT",
5260abb08a53SJoe Perches			     "Possible precedence defect with mask then right shift - may need parentheses\n" . $herecurr);
5261abb08a53SJoe Perches		}
5262abb08a53SJoe Perches
5263b75ac618SJoe Perches# check for pointer comparisons to NULL
5264b75ac618SJoe Perches		if ($^V && $^V ge 5.10.0) {
5265b75ac618SJoe Perches			while ($line =~ /\b$LvalOrFunc\s*(==|\!=)\s*NULL\b/g) {
5266b75ac618SJoe Perches				my $val = $1;
5267b75ac618SJoe Perches				my $equal = "!";
5268b75ac618SJoe Perches				$equal = "" if ($4 eq "!=");
5269b75ac618SJoe Perches				if (CHK("COMPARISON_TO_NULL",
5270b75ac618SJoe Perches					"Comparison to NULL could be written \"${equal}${val}\"\n" . $herecurr) &&
5271b75ac618SJoe Perches					    $fix) {
5272b75ac618SJoe Perches					$fixed[$fixlinenr] =~ s/\b\Q$val\E\s*(?:==|\!=)\s*NULL\b/$equal$val/;
5273b75ac618SJoe Perches				}
5274b75ac618SJoe Perches			}
5275b75ac618SJoe Perches		}
5276b75ac618SJoe Perches
52778716de38SJoe Perches# check for bad placement of section $InitAttribute (e.g.: __initdata)
52788716de38SJoe Perches		if ($line =~ /(\b$InitAttribute\b)/) {
52798716de38SJoe Perches			my $attr = $1;
52808716de38SJoe Perches			if ($line =~ /^\+\s*static\s+(?:const\s+)?(?:$attr\s+)?($NonptrTypeWithAttr)\s+(?:$attr\s+)?($Ident(?:\[[^]]*\])?)\s*[=;]/) {
52818716de38SJoe Perches				my $ptr = $1;
52828716de38SJoe Perches				my $var = $2;
52838716de38SJoe Perches				if ((($ptr =~ /\b(union|struct)\s+$attr\b/ &&
52848716de38SJoe Perches				      ERROR("MISPLACED_INIT",
52858716de38SJoe Perches					    "$attr should be placed after $var\n" . $herecurr)) ||
52868716de38SJoe Perches				     ($ptr !~ /\b(union|struct)\s+$attr\b/ &&
52878716de38SJoe Perches				      WARN("MISPLACED_INIT",
52888716de38SJoe Perches					   "$attr should be placed after $var\n" . $herecurr))) &&
52898716de38SJoe Perches				    $fix) {
5290194f66fcSJoe 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;
52918716de38SJoe Perches				}
52928716de38SJoe Perches			}
52938716de38SJoe Perches		}
52948716de38SJoe Perches
5295e970b884SJoe Perches# check for $InitAttributeData (ie: __initdata) with const
5296e970b884SJoe Perches		if ($line =~ /\bconst\b/ && $line =~ /($InitAttributeData)/) {
5297e970b884SJoe Perches			my $attr = $1;
5298e970b884SJoe Perches			$attr =~ /($InitAttributePrefix)(.*)/;
5299e970b884SJoe Perches			my $attr_prefix = $1;
5300e970b884SJoe Perches			my $attr_type = $2;
5301e970b884SJoe Perches			if (ERROR("INIT_ATTRIBUTE",
5302e970b884SJoe Perches				  "Use of const init definition must use ${attr_prefix}initconst\n" . $herecurr) &&
5303e970b884SJoe Perches			    $fix) {
5304194f66fcSJoe Perches				$fixed[$fixlinenr] =~
5305e970b884SJoe Perches				    s/$InitAttributeData/${attr_prefix}initconst/;
5306e970b884SJoe Perches			}
5307e970b884SJoe Perches		}
5308e970b884SJoe Perches
5309e970b884SJoe Perches# check for $InitAttributeConst (ie: __initconst) without const
5310e970b884SJoe Perches		if ($line !~ /\bconst\b/ && $line =~ /($InitAttributeConst)/) {
5311e970b884SJoe Perches			my $attr = $1;
5312e970b884SJoe Perches			if (ERROR("INIT_ATTRIBUTE",
5313e970b884SJoe Perches				  "Use of $attr requires a separate use of const\n" . $herecurr) &&
5314e970b884SJoe Perches			    $fix) {
5315194f66fcSJoe Perches				my $lead = $fixed[$fixlinenr] =~
5316e970b884SJoe Perches				    /(^\+\s*(?:static\s+))/;
5317e970b884SJoe Perches				$lead = rtrim($1);
5318e970b884SJoe Perches				$lead = "$lead " if ($lead !~ /^\+$/);
5319e970b884SJoe Perches				$lead = "${lead}const ";
5320194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/(^\+\s*(?:static\s+))/$lead/;
5321e970b884SJoe Perches			}
5322e970b884SJoe Perches		}
5323e970b884SJoe Perches
5324c17893c7SJoe Perches# check for __read_mostly with const non-pointer (should just be const)
5325c17893c7SJoe Perches		if ($line =~ /\b__read_mostly\b/ &&
5326c17893c7SJoe Perches		    $line =~ /($Type)\s*$Ident/ && $1 !~ /\*\s*$/ && $1 =~ /\bconst\b/) {
5327c17893c7SJoe Perches			if (ERROR("CONST_READ_MOSTLY",
5328c17893c7SJoe Perches				  "Invalid use of __read_mostly with const type\n" . $herecurr) &&
5329c17893c7SJoe Perches			    $fix) {
5330c17893c7SJoe Perches				$fixed[$fixlinenr] =~ s/\s+__read_mostly\b//;
5331c17893c7SJoe Perches			}
5332c17893c7SJoe Perches		}
5333c17893c7SJoe Perches
5334fbdb8138SJoe Perches# don't use __constant_<foo> functions outside of include/uapi/
5335fbdb8138SJoe Perches		if ($realfile !~ m@^include/uapi/@ &&
5336fbdb8138SJoe Perches		    $line =~ /(__constant_(?:htons|ntohs|[bl]e(?:16|32|64)_to_cpu|cpu_to_[bl]e(?:16|32|64)))\s*\(/) {
5337fbdb8138SJoe Perches			my $constant_func = $1;
5338fbdb8138SJoe Perches			my $func = $constant_func;
5339fbdb8138SJoe Perches			$func =~ s/^__constant_//;
5340fbdb8138SJoe Perches			if (WARN("CONSTANT_CONVERSION",
5341fbdb8138SJoe Perches				 "$constant_func should be $func\n" . $herecurr) &&
5342fbdb8138SJoe Perches			    $fix) {
5343194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\b$constant_func\b/$func/g;
5344fbdb8138SJoe Perches			}
5345fbdb8138SJoe Perches		}
5346fbdb8138SJoe Perches
53471a15a250SPatrick Pannuto# prefer usleep_range over udelay
534837581c28SBruce Allan		if ($line =~ /\budelay\s*\(\s*(\d+)\s*\)/) {
534943c1d77cSJoe Perches			my $delay = $1;
53501a15a250SPatrick Pannuto			# ignore udelay's < 10, however
535143c1d77cSJoe Perches			if (! ($delay < 10) ) {
5352000d1cc1SJoe Perches				CHK("USLEEP_RANGE",
535343c1d77cSJoe Perches				    "usleep_range is preferred over udelay; see Documentation/timers/timers-howto.txt\n" . $herecurr);
535443c1d77cSJoe Perches			}
535543c1d77cSJoe Perches			if ($delay > 2000) {
535643c1d77cSJoe Perches				WARN("LONG_UDELAY",
535743c1d77cSJoe Perches				     "long udelay - prefer mdelay; see arch/arm/include/asm/delay.h\n" . $herecurr);
53581a15a250SPatrick Pannuto			}
53591a15a250SPatrick Pannuto		}
53601a15a250SPatrick Pannuto
536109ef8725SPatrick Pannuto# warn about unexpectedly long msleep's
536209ef8725SPatrick Pannuto		if ($line =~ /\bmsleep\s*\((\d+)\);/) {
536309ef8725SPatrick Pannuto			if ($1 < 20) {
5364000d1cc1SJoe Perches				WARN("MSLEEP",
536543c1d77cSJoe Perches				     "msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt\n" . $herecurr);
536609ef8725SPatrick Pannuto			}
536709ef8725SPatrick Pannuto		}
536809ef8725SPatrick Pannuto
536936ec1939SJoe Perches# check for comparisons of jiffies
537036ec1939SJoe Perches		if ($line =~ /\bjiffies\s*$Compare|$Compare\s*jiffies\b/) {
537136ec1939SJoe Perches			WARN("JIFFIES_COMPARISON",
537236ec1939SJoe Perches			     "Comparing jiffies is almost always wrong; prefer time_after, time_before and friends\n" . $herecurr);
537336ec1939SJoe Perches		}
537436ec1939SJoe Perches
53759d7a34a5SJoe Perches# check for comparisons of get_jiffies_64()
53769d7a34a5SJoe Perches		if ($line =~ /\bget_jiffies_64\s*\(\s*\)\s*$Compare|$Compare\s*get_jiffies_64\s*\(\s*\)/) {
53779d7a34a5SJoe Perches			WARN("JIFFIES_COMPARISON",
53789d7a34a5SJoe Perches			     "Comparing get_jiffies_64() is almost always wrong; prefer time_after64, time_before64 and friends\n" . $herecurr);
53799d7a34a5SJoe Perches		}
53809d7a34a5SJoe Perches
538100df344fSAndy Whitcroft# warn about #ifdefs in C files
5382c45dcabdSAndy Whitcroft#		if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
538300df344fSAndy Whitcroft#			print "#ifdef in C files should be avoided\n";
538400df344fSAndy Whitcroft#			print "$herecurr";
538500df344fSAndy Whitcroft#			$clean = 0;
538600df344fSAndy Whitcroft#		}
538700df344fSAndy Whitcroft
538822f2a2efSAndy Whitcroft# warn about spacing in #ifdefs
5389c45dcabdSAndy Whitcroft		if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) {
53903705ce5bSJoe Perches			if (ERROR("SPACING",
53913705ce5bSJoe Perches				  "exactly one space required after that #$1\n" . $herecurr) &&
53923705ce5bSJoe Perches			    $fix) {
5393194f66fcSJoe Perches				$fixed[$fixlinenr] =~
53943705ce5bSJoe Perches				    s/^(.\s*\#\s*(ifdef|ifndef|elif))\s{2,}/$1 /;
53953705ce5bSJoe Perches			}
53963705ce5bSJoe Perches
539722f2a2efSAndy Whitcroft		}
539822f2a2efSAndy Whitcroft
53994a0df2efSAndy Whitcroft# check for spinlock_t definitions without a comment.
5400171ae1a4SAndy Whitcroft		if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ ||
5401171ae1a4SAndy Whitcroft		    $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) {
54024a0df2efSAndy Whitcroft			my $which = $1;
54034a0df2efSAndy Whitcroft			if (!ctx_has_comment($first_line, $linenr)) {
5404000d1cc1SJoe Perches				CHK("UNCOMMENTED_DEFINITION",
5405000d1cc1SJoe Perches				    "$1 definition without comment\n" . $herecurr);
54064a0df2efSAndy Whitcroft			}
54074a0df2efSAndy Whitcroft		}
54084a0df2efSAndy Whitcroft# check for memory barriers without a comment.
5409402c2553SMichael S. Tsirkin
5410402c2553SMichael S. Tsirkin		my $barriers = qr{
5411402c2553SMichael S. Tsirkin			mb|
5412402c2553SMichael S. Tsirkin			rmb|
5413402c2553SMichael S. Tsirkin			wmb|
5414402c2553SMichael S. Tsirkin			read_barrier_depends
5415402c2553SMichael S. Tsirkin		}x;
5416402c2553SMichael S. Tsirkin		my $barrier_stems = qr{
5417402c2553SMichael S. Tsirkin			mb__before_atomic|
5418402c2553SMichael S. Tsirkin			mb__after_atomic|
5419402c2553SMichael S. Tsirkin			store_release|
5420402c2553SMichael S. Tsirkin			load_acquire|
5421402c2553SMichael S. Tsirkin			store_mb|
5422402c2553SMichael S. Tsirkin			(?:$barriers)
5423402c2553SMichael S. Tsirkin		}x;
5424402c2553SMichael S. Tsirkin		my $all_barriers = qr{
5425402c2553SMichael S. Tsirkin			(?:$barriers)|
542643e361f2SMichael S. Tsirkin			smp_(?:$barrier_stems)|
542743e361f2SMichael S. Tsirkin			virt_(?:$barrier_stems)
5428402c2553SMichael S. Tsirkin		}x;
5429402c2553SMichael S. Tsirkin
5430402c2553SMichael S. Tsirkin		if ($line =~ /\b(?:$all_barriers)\s*\(/) {
54314a0df2efSAndy Whitcroft			if (!ctx_has_comment($first_line, $linenr)) {
5432c1fd7bb9SJoe Perches				WARN("MEMORY_BARRIER",
5433000d1cc1SJoe Perches				     "memory barrier without comment\n" . $herecurr);
54344a0df2efSAndy Whitcroft			}
54354a0df2efSAndy Whitcroft		}
54363ad81779SPaul E. McKenney
5437f4073b0fSMichael S. Tsirkin		my $underscore_smp_barriers = qr{__smp_(?:$barrier_stems)}x;
5438f4073b0fSMichael S. Tsirkin
5439f4073b0fSMichael S. Tsirkin		if ($realfile !~ m@^include/asm-generic/@ &&
5440f4073b0fSMichael S. Tsirkin		    $realfile !~ m@/barrier\.h$@ &&
5441f4073b0fSMichael S. Tsirkin		    $line =~ m/\b(?:$underscore_smp_barriers)\s*\(/ &&
5442f4073b0fSMichael S. Tsirkin		    $line !~ m/^.\s*\#\s*define\s+(?:$underscore_smp_barriers)\s*\(/) {
5443f4073b0fSMichael S. Tsirkin			WARN("MEMORY_BARRIER",
5444f4073b0fSMichael S. Tsirkin			     "__smp memory barriers shouldn't be used outside barrier.h and asm-generic\n" . $herecurr);
5445f4073b0fSMichael S. Tsirkin		}
5446f4073b0fSMichael S. Tsirkin
5447cb426e99SJoe Perches# check for waitqueue_active without a comment.
5448cb426e99SJoe Perches		if ($line =~ /\bwaitqueue_active\s*\(/) {
5449cb426e99SJoe Perches			if (!ctx_has_comment($first_line, $linenr)) {
5450cb426e99SJoe Perches				WARN("WAITQUEUE_ACTIVE",
5451cb426e99SJoe Perches				     "waitqueue_active without comment\n" . $herecurr);
5452cb426e99SJoe Perches			}
5453cb426e99SJoe Perches		}
54543ad81779SPaul E. McKenney
54553ad81779SPaul E. McKenney# Check for expedited grace periods that interrupt non-idle non-nohz
54563ad81779SPaul E. McKenney# online CPUs.  These expedited can therefore degrade real-time response
54573ad81779SPaul E. McKenney# if used carelessly, and should be avoided where not absolutely
54583ad81779SPaul E. McKenney# needed.  It is always OK to use synchronize_rcu_expedited() and
54593ad81779SPaul E. McKenney# synchronize_sched_expedited() at boot time (before real-time applications
54603ad81779SPaul E. McKenney# start) and in error situations where real-time response is compromised in
54613ad81779SPaul E. McKenney# any case.  Note that synchronize_srcu_expedited() does -not- interrupt
54623ad81779SPaul E. McKenney# other CPUs, so don't warn on uses of synchronize_srcu_expedited().
54633ad81779SPaul E. McKenney# Of course, nothing comes for free, and srcu_read_lock() and
54643ad81779SPaul E. McKenney# srcu_read_unlock() do contain full memory barriers in payment for
54653ad81779SPaul E. McKenney# synchronize_srcu_expedited() non-interruption properties.
54663ad81779SPaul E. McKenney		if ($line =~ /\b(synchronize_rcu_expedited|synchronize_sched_expedited)\(/) {
54673ad81779SPaul E. McKenney			WARN("EXPEDITED_RCU_GRACE_PERIOD",
54683ad81779SPaul E. McKenney			     "expedited RCU grace periods should be avoided where they can degrade real-time response\n" . $herecurr);
54693ad81779SPaul E. McKenney
54703ad81779SPaul E. McKenney		}
54713ad81779SPaul E. McKenney
54724a0df2efSAndy Whitcroft# check of hardware specific defines
5473c45dcabdSAndy Whitcroft		if ($line =~ m@^.\s*\#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
5474000d1cc1SJoe Perches			CHK("ARCH_DEFINES",
5475000d1cc1SJoe Perches			    "architecture specific defines should be avoided\n" .  $herecurr);
54760a920b5bSAndy Whitcroft		}
5477653d4876SAndy Whitcroft
5478d4977c78STobias Klauser# Check that the storage class is at the beginning of a declaration
5479d4977c78STobias Klauser		if ($line =~ /\b$Storage\b/ && $line !~ /^.\s*$Storage\b/) {
5480000d1cc1SJoe Perches			WARN("STORAGE_CLASS",
5481000d1cc1SJoe Perches			     "storage class should be at the beginning of the declaration\n" . $herecurr)
5482d4977c78STobias Klauser		}
5483d4977c78STobias Klauser
5484de7d4f0eSAndy Whitcroft# check the location of the inline attribute, that it is between
5485de7d4f0eSAndy Whitcroft# storage class and type.
54869c0ca6f9SAndy Whitcroft		if ($line =~ /\b$Type\s+$Inline\b/ ||
54879c0ca6f9SAndy Whitcroft		    $line =~ /\b$Inline\s+$Storage\b/) {
5488000d1cc1SJoe Perches			ERROR("INLINE_LOCATION",
5489000d1cc1SJoe Perches			      "inline keyword should sit between storage class and type\n" . $herecurr);
5490de7d4f0eSAndy Whitcroft		}
5491de7d4f0eSAndy Whitcroft
54928905a67cSAndy Whitcroft# Check for __inline__ and __inline, prefer inline
54932b7ab453SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
54942b7ab453SJoe Perches		    $line =~ /\b(__inline__|__inline)\b/) {
5495d5e616fcSJoe Perches			if (WARN("INLINE",
5496d5e616fcSJoe Perches				 "plain inline is preferred over $1\n" . $herecurr) &&
5497d5e616fcSJoe Perches			    $fix) {
5498194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\b(__inline__|__inline)\b/inline/;
5499d5e616fcSJoe Perches
5500d5e616fcSJoe Perches			}
55018905a67cSAndy Whitcroft		}
55028905a67cSAndy Whitcroft
55033d130fd0SJoe Perches# Check for __attribute__ packed, prefer __packed
55042b7ab453SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
55052b7ab453SJoe Perches		    $line =~ /\b__attribute__\s*\(\s*\(.*\bpacked\b/) {
5506000d1cc1SJoe Perches			WARN("PREFER_PACKED",
5507000d1cc1SJoe Perches			     "__packed is preferred over __attribute__((packed))\n" . $herecurr);
55083d130fd0SJoe Perches		}
55093d130fd0SJoe Perches
551039b7e287SJoe Perches# Check for __attribute__ aligned, prefer __aligned
55112b7ab453SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
55122b7ab453SJoe Perches		    $line =~ /\b__attribute__\s*\(\s*\(.*aligned/) {
5513000d1cc1SJoe Perches			WARN("PREFER_ALIGNED",
5514000d1cc1SJoe Perches			     "__aligned(size) is preferred over __attribute__((aligned(size)))\n" . $herecurr);
551539b7e287SJoe Perches		}
551639b7e287SJoe Perches
55175f14d3bdSJoe Perches# Check for __attribute__ format(printf, prefer __printf
55182b7ab453SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
55192b7ab453SJoe Perches		    $line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf/) {
5520d5e616fcSJoe Perches			if (WARN("PREFER_PRINTF",
5521d5e616fcSJoe Perches				 "__printf(string-index, first-to-check) is preferred over __attribute__((format(printf, string-index, first-to-check)))\n" . $herecurr) &&
5522d5e616fcSJoe Perches			    $fix) {
5523194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf\s*,\s*(.*)\)\s*\)\s*\)/"__printf(" . trim($1) . ")"/ex;
5524d5e616fcSJoe Perches
5525d5e616fcSJoe Perches			}
55265f14d3bdSJoe Perches		}
55275f14d3bdSJoe Perches
55286061d949SJoe Perches# Check for __attribute__ format(scanf, prefer __scanf
55292b7ab453SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
55302b7ab453SJoe Perches		    $line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*scanf\b/) {
5531d5e616fcSJoe Perches			if (WARN("PREFER_SCANF",
5532d5e616fcSJoe Perches				 "__scanf(string-index, first-to-check) is preferred over __attribute__((format(scanf, string-index, first-to-check)))\n" . $herecurr) &&
5533d5e616fcSJoe Perches			    $fix) {
5534194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\b__attribute__\s*\(\s*\(\s*format\s*\(\s*scanf\s*,\s*(.*)\)\s*\)\s*\)/"__scanf(" . trim($1) . ")"/ex;
5535d5e616fcSJoe Perches			}
55366061d949SJoe Perches		}
55376061d949SJoe Perches
5538619a908aSJoe Perches# Check for __attribute__ weak, or __weak declarations (may have link issues)
5539619a908aSJoe Perches		if ($^V && $^V ge 5.10.0 &&
5540619a908aSJoe Perches		    $line =~ /(?:$Declare|$DeclareMisordered)\s*$Ident\s*$balanced_parens\s*(?:$Attribute)?\s*;/ &&
5541619a908aSJoe Perches		    ($line =~ /\b__attribute__\s*\(\s*\(.*\bweak\b/ ||
5542619a908aSJoe Perches		     $line =~ /\b__weak\b/)) {
5543619a908aSJoe Perches			ERROR("WEAK_DECLARATION",
5544619a908aSJoe Perches			      "Using weak declarations can have unintended link defects\n" . $herecurr);
5545619a908aSJoe Perches		}
5546619a908aSJoe Perches
5547e6176fa4SJoe Perches# check for c99 types like uint8_t used outside of uapi/
5548e6176fa4SJoe Perches		if ($realfile !~ m@\binclude/uapi/@ &&
5549e6176fa4SJoe Perches		    $line =~ /\b($Declare)\s*$Ident\s*[=;,\[]/) {
5550e6176fa4SJoe Perches			my $type = $1;
5551e6176fa4SJoe Perches			if ($type =~ /\b($typeC99Typedefs)\b/) {
5552e6176fa4SJoe Perches				$type = $1;
5553e6176fa4SJoe Perches				my $kernel_type = 'u';
5554e6176fa4SJoe Perches				$kernel_type = 's' if ($type =~ /^_*[si]/);
5555e6176fa4SJoe Perches				$type =~ /(\d+)/;
5556e6176fa4SJoe Perches				$kernel_type .= $1;
5557e6176fa4SJoe Perches				if (CHK("PREFER_KERNEL_TYPES",
5558e6176fa4SJoe Perches					"Prefer kernel type '$kernel_type' over '$type'\n" . $herecurr) &&
5559e6176fa4SJoe Perches				    $fix) {
5560e6176fa4SJoe Perches					$fixed[$fixlinenr] =~ s/\b$type\b/$kernel_type/;
5561e6176fa4SJoe Perches				}
5562e6176fa4SJoe Perches			}
5563e6176fa4SJoe Perches		}
5564e6176fa4SJoe Perches
5565938224b5SJoe Perches# check for cast of C90 native int or longer types constants
5566938224b5SJoe Perches		if ($line =~ /(\(\s*$C90_int_types\s*\)\s*)($Constant)\b/) {
5567938224b5SJoe Perches			my $cast = $1;
5568938224b5SJoe Perches			my $const = $2;
5569938224b5SJoe Perches			if (WARN("TYPECAST_INT_CONSTANT",
5570938224b5SJoe Perches				 "Unnecessary typecast of c90 int constant\n" . $herecurr) &&
5571938224b5SJoe Perches			    $fix) {
5572938224b5SJoe Perches				my $suffix = "";
5573938224b5SJoe Perches				my $newconst = $const;
5574938224b5SJoe Perches				$newconst =~ s/${Int_type}$//;
5575938224b5SJoe Perches				$suffix .= 'U' if ($cast =~ /\bunsigned\b/);
5576938224b5SJoe Perches				if ($cast =~ /\blong\s+long\b/) {
5577938224b5SJoe Perches					$suffix .= 'LL';
5578938224b5SJoe Perches				} elsif ($cast =~ /\blong\b/) {
5579938224b5SJoe Perches					$suffix .= 'L';
5580938224b5SJoe Perches				}
5581938224b5SJoe Perches				$fixed[$fixlinenr] =~ s/\Q$cast\E$const\b/$newconst$suffix/;
5582938224b5SJoe Perches			}
5583938224b5SJoe Perches		}
5584938224b5SJoe Perches
55858f53a9b8SJoe Perches# check for sizeof(&)
55868f53a9b8SJoe Perches		if ($line =~ /\bsizeof\s*\(\s*\&/) {
5587000d1cc1SJoe Perches			WARN("SIZEOF_ADDRESS",
5588000d1cc1SJoe Perches			     "sizeof(& should be avoided\n" . $herecurr);
55898f53a9b8SJoe Perches		}
55908f53a9b8SJoe Perches
559166c80b60SJoe Perches# check for sizeof without parenthesis
559266c80b60SJoe Perches		if ($line =~ /\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/) {
5593d5e616fcSJoe Perches			if (WARN("SIZEOF_PARENTHESIS",
5594d5e616fcSJoe Perches				 "sizeof $1 should be sizeof($1)\n" . $herecurr) &&
5595d5e616fcSJoe Perches			    $fix) {
5596194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/"sizeof(" . trim($1) . ")"/ex;
5597d5e616fcSJoe Perches			}
559866c80b60SJoe Perches		}
559966c80b60SJoe Perches
560088982feaSJoe Perches# check for struct spinlock declarations
560188982feaSJoe Perches		if ($line =~ /^.\s*\bstruct\s+spinlock\s+\w+\s*;/) {
560288982feaSJoe Perches			WARN("USE_SPINLOCK_T",
560388982feaSJoe Perches			     "struct spinlock should be spinlock_t\n" . $herecurr);
560488982feaSJoe Perches		}
560588982feaSJoe Perches
5606a6962d72SJoe Perches# check for seq_printf uses that could be seq_puts
560706668727SJoe Perches		if ($sline =~ /\bseq_printf\s*\(.*"\s*\)\s*;\s*$/) {
5608a6962d72SJoe Perches			my $fmt = get_quoted_string($line, $rawline);
5609caac1d5fSHeba Aamer			$fmt =~ s/%%//g;
5610caac1d5fSHeba Aamer			if ($fmt !~ /%/) {
5611d5e616fcSJoe Perches				if (WARN("PREFER_SEQ_PUTS",
5612d5e616fcSJoe Perches					 "Prefer seq_puts to seq_printf\n" . $herecurr) &&
5613d5e616fcSJoe Perches				    $fix) {
5614194f66fcSJoe Perches					$fixed[$fixlinenr] =~ s/\bseq_printf\b/seq_puts/;
5615d5e616fcSJoe Perches				}
5616a6962d72SJoe Perches			}
5617a6962d72SJoe Perches		}
5618a6962d72SJoe Perches
5619554e165cSAndy Whitcroft# Check for misused memsets
5620d1fe9c09SJoe Perches		if ($^V && $^V ge 5.10.0 &&
5621d1fe9c09SJoe Perches		    defined $stat &&
56229e20a853SMateusz Kulikowski		    $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*$FuncArg\s*\)/) {
5623554e165cSAndy Whitcroft
5624d7c76ba7SJoe Perches			my $ms_addr = $2;
5625d1fe9c09SJoe Perches			my $ms_val = $7;
5626d1fe9c09SJoe Perches			my $ms_size = $12;
5627d7c76ba7SJoe Perches
5628554e165cSAndy Whitcroft			if ($ms_size =~ /^(0x|)0$/i) {
5629554e165cSAndy Whitcroft				ERROR("MEMSET",
5630d7c76ba7SJoe Perches				      "memset to 0's uses 0 as the 2nd argument, not the 3rd\n" . "$here\n$stat\n");
5631554e165cSAndy Whitcroft			} elsif ($ms_size =~ /^(0x|)1$/i) {
5632554e165cSAndy Whitcroft				WARN("MEMSET",
5633d7c76ba7SJoe Perches				     "single byte memset is suspicious. Swapped 2nd/3rd argument?\n" . "$here\n$stat\n");
5634d7c76ba7SJoe Perches			}
5635d7c76ba7SJoe Perches		}
5636d7c76ba7SJoe Perches
563798a9bba5SJoe Perches# Check for memcpy(foo, bar, ETH_ALEN) that could be ether_addr_copy(foo, bar)
5638f333195dSJoe Perches#		if ($^V && $^V ge 5.10.0 &&
5639f333195dSJoe Perches#		    defined $stat &&
5640f333195dSJoe Perches#		    $stat =~ /^\+(?:.*?)\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
5641f333195dSJoe Perches#			if (WARN("PREFER_ETHER_ADDR_COPY",
5642f333195dSJoe Perches#				 "Prefer ether_addr_copy() over memcpy() if the Ethernet addresses are __aligned(2)\n" . "$here\n$stat\n") &&
5643f333195dSJoe Perches#			    $fix) {
5644f333195dSJoe Perches#				$fixed[$fixlinenr] =~ s/\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/ether_addr_copy($2, $7)/;
5645f333195dSJoe Perches#			}
5646f333195dSJoe Perches#		}
564798a9bba5SJoe Perches
5648b6117d17SMateusz Kulikowski# Check for memcmp(foo, bar, ETH_ALEN) that could be ether_addr_equal*(foo, bar)
5649f333195dSJoe Perches#		if ($^V && $^V ge 5.10.0 &&
5650f333195dSJoe Perches#		    defined $stat &&
5651f333195dSJoe Perches#		    $stat =~ /^\+(?:.*?)\bmemcmp\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
5652f333195dSJoe Perches#			WARN("PREFER_ETHER_ADDR_EQUAL",
5653f333195dSJoe Perches#			     "Prefer ether_addr_equal() or ether_addr_equal_unaligned() over memcmp()\n" . "$here\n$stat\n")
5654f333195dSJoe Perches#		}
5655b6117d17SMateusz Kulikowski
56568617cd09SMateusz Kulikowski# check for memset(foo, 0x0, ETH_ALEN) that could be eth_zero_addr
56578617cd09SMateusz Kulikowski# check for memset(foo, 0xFF, ETH_ALEN) that could be eth_broadcast_addr
5658f333195dSJoe Perches#		if ($^V && $^V ge 5.10.0 &&
5659f333195dSJoe Perches#		    defined $stat &&
5660f333195dSJoe Perches#		    $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
5661f333195dSJoe Perches#
5662f333195dSJoe Perches#			my $ms_val = $7;
5663f333195dSJoe Perches#
5664f333195dSJoe Perches#			if ($ms_val =~ /^(?:0x|)0+$/i) {
5665f333195dSJoe Perches#				if (WARN("PREFER_ETH_ZERO_ADDR",
5666f333195dSJoe Perches#					 "Prefer eth_zero_addr over memset()\n" . "$here\n$stat\n") &&
5667f333195dSJoe Perches#				    $fix) {
5668f333195dSJoe Perches#					$fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_zero_addr($2)/;
5669f333195dSJoe Perches#				}
5670f333195dSJoe Perches#			} elsif ($ms_val =~ /^(?:0xff|255)$/i) {
5671f333195dSJoe Perches#				if (WARN("PREFER_ETH_BROADCAST_ADDR",
5672f333195dSJoe Perches#					 "Prefer eth_broadcast_addr() over memset()\n" . "$here\n$stat\n") &&
5673f333195dSJoe Perches#				    $fix) {
5674f333195dSJoe Perches#					$fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_broadcast_addr($2)/;
5675f333195dSJoe Perches#				}
5676f333195dSJoe Perches#			}
5677f333195dSJoe Perches#		}
56788617cd09SMateusz Kulikowski
5679d7c76ba7SJoe Perches# typecasts on min/max could be min_t/max_t
5680d1fe9c09SJoe Perches		if ($^V && $^V ge 5.10.0 &&
5681d1fe9c09SJoe Perches		    defined $stat &&
5682d7c76ba7SJoe Perches		    $stat =~ /^\+(?:.*?)\b(min|max)\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\)/) {
5683d1fe9c09SJoe Perches			if (defined $2 || defined $7) {
5684d7c76ba7SJoe Perches				my $call = $1;
5685d7c76ba7SJoe Perches				my $cast1 = deparenthesize($2);
5686d7c76ba7SJoe Perches				my $arg1 = $3;
5687d1fe9c09SJoe Perches				my $cast2 = deparenthesize($7);
5688d1fe9c09SJoe Perches				my $arg2 = $8;
5689d7c76ba7SJoe Perches				my $cast;
5690d7c76ba7SJoe Perches
5691d1fe9c09SJoe Perches				if ($cast1 ne "" && $cast2 ne "" && $cast1 ne $cast2) {
5692d7c76ba7SJoe Perches					$cast = "$cast1 or $cast2";
5693d7c76ba7SJoe Perches				} elsif ($cast1 ne "") {
5694d7c76ba7SJoe Perches					$cast = $cast1;
5695d7c76ba7SJoe Perches				} else {
5696d7c76ba7SJoe Perches					$cast = $cast2;
5697d7c76ba7SJoe Perches				}
5698d7c76ba7SJoe Perches				WARN("MINMAX",
5699d7c76ba7SJoe Perches				     "$call() should probably be ${call}_t($cast, $arg1, $arg2)\n" . "$here\n$stat\n");
5700554e165cSAndy Whitcroft			}
5701554e165cSAndy Whitcroft		}
5702554e165cSAndy Whitcroft
57034a273195SJoe Perches# check usleep_range arguments
57044a273195SJoe Perches		if ($^V && $^V ge 5.10.0 &&
57054a273195SJoe Perches		    defined $stat &&
57064a273195SJoe Perches		    $stat =~ /^\+(?:.*?)\busleep_range\s*\(\s*($FuncArg)\s*,\s*($FuncArg)\s*\)/) {
57074a273195SJoe Perches			my $min = $1;
57084a273195SJoe Perches			my $max = $7;
57094a273195SJoe Perches			if ($min eq $max) {
57104a273195SJoe Perches				WARN("USLEEP_RANGE",
57114a273195SJoe Perches				     "usleep_range should not use min == max args; see Documentation/timers/timers-howto.txt\n" . "$here\n$stat\n");
57124a273195SJoe Perches			} elsif ($min =~ /^\d+$/ && $max =~ /^\d+$/ &&
57134a273195SJoe Perches				 $min > $max) {
57144a273195SJoe Perches				WARN("USLEEP_RANGE",
57154a273195SJoe Perches				     "usleep_range args reversed, use min then max; see Documentation/timers/timers-howto.txt\n" . "$here\n$stat\n");
57164a273195SJoe Perches			}
57174a273195SJoe Perches		}
57184a273195SJoe Perches
5719823b794cSJoe Perches# check for naked sscanf
5720823b794cSJoe Perches		if ($^V && $^V ge 5.10.0 &&
5721823b794cSJoe Perches		    defined $stat &&
57226c8bd707SJoe Perches		    $line =~ /\bsscanf\b/ &&
5723823b794cSJoe Perches		    ($stat !~ /$Ident\s*=\s*sscanf\s*$balanced_parens/ &&
5724823b794cSJoe Perches		     $stat !~ /\bsscanf\s*$balanced_parens\s*(?:$Compare)/ &&
5725823b794cSJoe Perches		     $stat !~ /(?:$Compare)\s*\bsscanf\s*$balanced_parens/)) {
5726823b794cSJoe Perches			my $lc = $stat =~ tr@\n@@;
5727823b794cSJoe Perches			$lc = $lc + $linenr;
5728823b794cSJoe Perches			my $stat_real = raw_line($linenr, 0);
5729823b794cSJoe Perches		        for (my $count = $linenr + 1; $count <= $lc; $count++) {
5730823b794cSJoe Perches				$stat_real = $stat_real . "\n" . raw_line($count, 0);
5731823b794cSJoe Perches			}
5732823b794cSJoe Perches			WARN("NAKED_SSCANF",
5733823b794cSJoe Perches			     "unchecked sscanf return value\n" . "$here\n$stat_real\n");
5734823b794cSJoe Perches		}
5735823b794cSJoe Perches
5736afc819abSJoe Perches# check for simple sscanf that should be kstrto<foo>
5737afc819abSJoe Perches		if ($^V && $^V ge 5.10.0 &&
5738afc819abSJoe Perches		    defined $stat &&
5739afc819abSJoe Perches		    $line =~ /\bsscanf\b/) {
5740afc819abSJoe Perches			my $lc = $stat =~ tr@\n@@;
5741afc819abSJoe Perches			$lc = $lc + $linenr;
5742afc819abSJoe Perches			my $stat_real = raw_line($linenr, 0);
5743afc819abSJoe Perches		        for (my $count = $linenr + 1; $count <= $lc; $count++) {
5744afc819abSJoe Perches				$stat_real = $stat_real . "\n" . raw_line($count, 0);
5745afc819abSJoe Perches			}
5746afc819abSJoe Perches			if ($stat_real =~ /\bsscanf\b\s*\(\s*$FuncArg\s*,\s*("[^"]+")/) {
5747afc819abSJoe Perches				my $format = $6;
5748afc819abSJoe Perches				my $count = $format =~ tr@%@%@;
5749afc819abSJoe Perches				if ($count == 1 &&
5750afc819abSJoe Perches				    $format =~ /^"\%(?i:ll[udxi]|[udxi]ll|ll|[hl]h?[udxi]|[udxi][hl]h?|[hl]h?|[udxi])"$/) {
5751afc819abSJoe Perches					WARN("SSCANF_TO_KSTRTO",
5752afc819abSJoe Perches					     "Prefer kstrto<type> to single variable sscanf\n" . "$here\n$stat_real\n");
5753afc819abSJoe Perches				}
5754afc819abSJoe Perches			}
5755afc819abSJoe Perches		}
5756afc819abSJoe Perches
575770dc8a48SJoe Perches# check for new externs in .h files.
575870dc8a48SJoe Perches		if ($realfile =~ /\.h$/ &&
575970dc8a48SJoe Perches		    $line =~ /^\+\s*(extern\s+)$Type\s*$Ident\s*\(/s) {
5760d1d85780SJoe Perches			if (CHK("AVOID_EXTERNS",
576170dc8a48SJoe Perches				"extern prototypes should be avoided in .h files\n" . $herecurr) &&
576270dc8a48SJoe Perches			    $fix) {
5763194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/(.*)\bextern\b\s*(.*)/$1$2/;
576470dc8a48SJoe Perches			}
576570dc8a48SJoe Perches		}
576670dc8a48SJoe Perches
5767de7d4f0eSAndy Whitcroft# check for new externs in .c files.
5768171ae1a4SAndy Whitcroft		if ($realfile =~ /\.c$/ && defined $stat &&
5769c45dcabdSAndy Whitcroft		    $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s)
5770171ae1a4SAndy Whitcroft		{
5771c45dcabdSAndy Whitcroft			my $function_name = $1;
5772c45dcabdSAndy Whitcroft			my $paren_space = $2;
5773171ae1a4SAndy Whitcroft
5774171ae1a4SAndy Whitcroft			my $s = $stat;
5775171ae1a4SAndy Whitcroft			if (defined $cond) {
5776171ae1a4SAndy Whitcroft				substr($s, 0, length($cond), '');
5777171ae1a4SAndy Whitcroft			}
5778c45dcabdSAndy Whitcroft			if ($s =~ /^\s*;/ &&
5779c45dcabdSAndy Whitcroft			    $function_name ne 'uninitialized_var')
5780c45dcabdSAndy Whitcroft			{
5781000d1cc1SJoe Perches				WARN("AVOID_EXTERNS",
5782000d1cc1SJoe Perches				     "externs should be avoided in .c files\n" .  $herecurr);
5783de7d4f0eSAndy Whitcroft			}
5784de7d4f0eSAndy Whitcroft
5785171ae1a4SAndy Whitcroft			if ($paren_space =~ /\n/) {
5786000d1cc1SJoe Perches				WARN("FUNCTION_ARGUMENTS",
5787000d1cc1SJoe Perches				     "arguments for function declarations should follow identifier\n" . $herecurr);
5788171ae1a4SAndy Whitcroft			}
57899c9ba34eSAndy Whitcroft
57909c9ba34eSAndy Whitcroft		} elsif ($realfile =~ /\.c$/ && defined $stat &&
57919c9ba34eSAndy Whitcroft		    $stat =~ /^.\s*extern\s+/)
57929c9ba34eSAndy Whitcroft		{
5793000d1cc1SJoe Perches			WARN("AVOID_EXTERNS",
5794000d1cc1SJoe Perches			     "externs should be avoided in .c files\n" .  $herecurr);
5795171ae1a4SAndy Whitcroft		}
5796171ae1a4SAndy Whitcroft
5797*ca0d8929SJoe Perches		if ($realfile =~ /\.[ch]$/ && defined $stat &&
5798*ca0d8929SJoe Perches		    $stat =~ /^.\s*(?:extern\s+)?$Type\s*$Ident\s*\(\s*([^{]+)\s*\)\s*;/s &&
5799*ca0d8929SJoe Perches		    $1 ne "void") {
5800*ca0d8929SJoe Perches			my $args = trim($1);
5801*ca0d8929SJoe Perches			while ($args =~ m/\s*($Type\s*(?:$Ident|\(\s*\*\s*$Ident?\s*\)\s*$balanced_parens)?)/g) {
5802*ca0d8929SJoe Perches				my $arg = trim($1);
5803*ca0d8929SJoe Perches				if ($arg =~ /^$Type$/ && $arg !~ /enum\s+$Ident$/) {
5804*ca0d8929SJoe Perches					WARN("FUNCTION_ARGUMENTS",
5805*ca0d8929SJoe Perches					     "function definition argument '$arg' should also have an identifier name\n" . $herecurr);
5806*ca0d8929SJoe Perches				}
5807*ca0d8929SJoe Perches			}
5808*ca0d8929SJoe Perches		}
5809*ca0d8929SJoe Perches
5810de7d4f0eSAndy Whitcroft# checks for new __setup's
5811de7d4f0eSAndy Whitcroft		if ($rawline =~ /\b__setup\("([^"]*)"/) {
5812de7d4f0eSAndy Whitcroft			my $name = $1;
5813de7d4f0eSAndy Whitcroft
5814de7d4f0eSAndy Whitcroft			if (!grep(/$name/, @setup_docs)) {
5815000d1cc1SJoe Perches				CHK("UNDOCUMENTED_SETUP",
5816000d1cc1SJoe Perches				    "__setup appears un-documented -- check Documentation/kernel-parameters.txt\n" . $herecurr);
5817de7d4f0eSAndy Whitcroft			}
5818653d4876SAndy Whitcroft		}
58199c0ca6f9SAndy Whitcroft
58209c0ca6f9SAndy Whitcroft# check for pointless casting of kmalloc return
5821caf2a54fSJoe Perches		if ($line =~ /\*\s*\)\s*[kv][czm]alloc(_node){0,1}\b/) {
5822000d1cc1SJoe Perches			WARN("UNNECESSARY_CASTS",
5823000d1cc1SJoe Perches			     "unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
58249c0ca6f9SAndy Whitcroft		}
582513214adfSAndy Whitcroft
5826a640d25cSJoe Perches# alloc style
5827a640d25cSJoe Perches# p = alloc(sizeof(struct foo), ...) should be p = alloc(sizeof(*p), ...)
5828a640d25cSJoe Perches		if ($^V && $^V ge 5.10.0 &&
5829a640d25cSJoe Perches		    $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*([kv][mz]alloc(?:_node)?)\s*\(\s*(sizeof\s*\(\s*struct\s+$Lval\s*\))/) {
5830a640d25cSJoe Perches			CHK("ALLOC_SIZEOF_STRUCT",
5831a640d25cSJoe Perches			    "Prefer $3(sizeof(*$1)...) over $3($4...)\n" . $herecurr);
5832a640d25cSJoe Perches		}
5833a640d25cSJoe Perches
583460a55369SJoe Perches# check for k[mz]alloc with multiplies that could be kmalloc_array/kcalloc
583560a55369SJoe Perches		if ($^V && $^V ge 5.10.0 &&
5836e367455aSJoe Perches		    $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*(k[mz]alloc)\s*\(\s*($FuncArg)\s*\*\s*($FuncArg)\s*,/) {
583760a55369SJoe Perches			my $oldfunc = $3;
583860a55369SJoe Perches			my $a1 = $4;
583960a55369SJoe Perches			my $a2 = $10;
584060a55369SJoe Perches			my $newfunc = "kmalloc_array";
584160a55369SJoe Perches			$newfunc = "kcalloc" if ($oldfunc eq "kzalloc");
584260a55369SJoe Perches			my $r1 = $a1;
584360a55369SJoe Perches			my $r2 = $a2;
584460a55369SJoe Perches			if ($a1 =~ /^sizeof\s*\S/) {
584560a55369SJoe Perches				$r1 = $a2;
584660a55369SJoe Perches				$r2 = $a1;
584760a55369SJoe Perches			}
5848e367455aSJoe Perches			if ($r1 !~ /^sizeof\b/ && $r2 =~ /^sizeof\s*\S/ &&
5849e367455aSJoe Perches			    !($r1 =~ /^$Constant$/ || $r1 =~ /^[A-Z_][A-Z0-9_]*$/)) {
5850e367455aSJoe Perches				if (WARN("ALLOC_WITH_MULTIPLY",
5851e367455aSJoe Perches					 "Prefer $newfunc over $oldfunc with multiply\n" . $herecurr) &&
5852e367455aSJoe Perches				    $fix) {
5853194f66fcSJoe 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;
585460a55369SJoe Perches
585560a55369SJoe Perches				}
585660a55369SJoe Perches			}
585760a55369SJoe Perches		}
585860a55369SJoe Perches
5859972fdea2SJoe Perches# check for krealloc arg reuse
5860972fdea2SJoe Perches		if ($^V && $^V ge 5.10.0 &&
5861972fdea2SJoe Perches		    $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*krealloc\s*\(\s*\1\s*,/) {
5862972fdea2SJoe Perches			WARN("KREALLOC_ARG_REUSE",
5863972fdea2SJoe Perches			     "Reusing the krealloc arg is almost always a bug\n" . $herecurr);
5864972fdea2SJoe Perches		}
5865972fdea2SJoe Perches
58665ce59ae0SJoe Perches# check for alloc argument mismatch
58675ce59ae0SJoe Perches		if ($line =~ /\b(kcalloc|kmalloc_array)\s*\(\s*sizeof\b/) {
58685ce59ae0SJoe Perches			WARN("ALLOC_ARRAY_ARGS",
58695ce59ae0SJoe Perches			     "$1 uses number as first arg, sizeof is generally wrong\n" . $herecurr);
58705ce59ae0SJoe Perches		}
58715ce59ae0SJoe Perches
5872caf2a54fSJoe Perches# check for multiple semicolons
5873caf2a54fSJoe Perches		if ($line =~ /;\s*;\s*$/) {
5874d5e616fcSJoe Perches			if (WARN("ONE_SEMICOLON",
5875d5e616fcSJoe Perches				 "Statements terminations use 1 semicolon\n" . $herecurr) &&
5876d5e616fcSJoe Perches			    $fix) {
5877194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/(\s*;\s*){2,}$/;/g;
5878d5e616fcSJoe Perches			}
5879d1e2ad07SJoe Perches		}
5880d1e2ad07SJoe Perches
5881cec3aaa5STomas Winkler# check for #defines like: 1 << <digit> that could be BIT(digit), it is not exported to uapi
5882cec3aaa5STomas Winkler		if ($realfile !~ m@^include/uapi/@ &&
5883cec3aaa5STomas Winkler		    $line =~ /#\s*define\s+\w+\s+\(?\s*1\s*([ulUL]*)\s*\<\<\s*(?:\d+|$Ident)\s*\)?/) {
58840ab90191SJoe Perches			my $ull = "";
58850ab90191SJoe Perches			$ull = "_ULL" if (defined($1) && $1 =~ /ll/i);
58860ab90191SJoe Perches			if (CHK("BIT_MACRO",
58870ab90191SJoe Perches				"Prefer using the BIT$ull macro\n" . $herecurr) &&
58880ab90191SJoe Perches			    $fix) {
58890ab90191SJoe Perches				$fixed[$fixlinenr] =~ s/\(?\s*1\s*[ulUL]*\s*<<\s*(\d+|$Ident)\s*\)?/BIT${ull}($1)/;
58900ab90191SJoe Perches			}
58910ab90191SJoe Perches		}
58920ab90191SJoe Perches
58932d632745SJoe Perches# check for #if defined CONFIG_<FOO> || defined CONFIG_<FOO>_MODULE
58942d632745SJoe 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*$/) {
58952d632745SJoe Perches			my $config = $1;
58962d632745SJoe Perches			if (WARN("PREFER_IS_ENABLED",
58972d632745SJoe Perches				 "Prefer IS_ENABLED(<FOO>) to CONFIG_<FOO> || CONFIG_<FOO>_MODULE\n" . $herecurr) &&
58982d632745SJoe Perches			    $fix) {
58992d632745SJoe Perches				$fixed[$fixlinenr] = "\+#if IS_ENABLED($config)";
59002d632745SJoe Perches			}
59012d632745SJoe Perches		}
59022d632745SJoe Perches
5903e81f239bSJoe Perches# check for case / default statements not preceded by break/fallthrough/switch
5904c34c09a8SJoe Perches		if ($line =~ /^.\s*(?:case\s+(?:$Ident|$Constant)\s*|default):/) {
5905c34c09a8SJoe Perches			my $has_break = 0;
5906c34c09a8SJoe Perches			my $has_statement = 0;
5907c34c09a8SJoe Perches			my $count = 0;
5908c34c09a8SJoe Perches			my $prevline = $linenr;
5909e81f239bSJoe Perches			while ($prevline > 1 && ($file || $count < 3) && !$has_break) {
5910c34c09a8SJoe Perches				$prevline--;
5911c34c09a8SJoe Perches				my $rline = $rawlines[$prevline - 1];
5912c34c09a8SJoe Perches				my $fline = $lines[$prevline - 1];
5913c34c09a8SJoe Perches				last if ($fline =~ /^\@\@/);
5914c34c09a8SJoe Perches				next if ($fline =~ /^\-/);
5915c34c09a8SJoe Perches				next if ($fline =~ /^.(?:\s*(?:case\s+(?:$Ident|$Constant)[\s$;]*|default):[\s$;]*)*$/);
5916c34c09a8SJoe Perches				$has_break = 1 if ($rline =~ /fall[\s_-]*(through|thru)/i);
5917c34c09a8SJoe Perches				next if ($fline =~ /^.[\s$;]*$/);
5918c34c09a8SJoe Perches				$has_statement = 1;
5919c34c09a8SJoe Perches				$count++;
5920c34c09a8SJoe Perches				$has_break = 1 if ($fline =~ /\bswitch\b|\b(?:break\s*;[\s$;]*$|return\b|goto\b|continue\b)/);
5921c34c09a8SJoe Perches			}
5922c34c09a8SJoe Perches			if (!$has_break && $has_statement) {
5923c34c09a8SJoe Perches				WARN("MISSING_BREAK",
5924c34c09a8SJoe Perches				     "Possible switch case/default not preceeded by break or fallthrough comment\n" . $herecurr);
5925c34c09a8SJoe Perches			}
5926c34c09a8SJoe Perches		}
5927c34c09a8SJoe Perches
5928d1e2ad07SJoe Perches# check for switch/default statements without a break;
5929d1e2ad07SJoe Perches		if ($^V && $^V ge 5.10.0 &&
5930d1e2ad07SJoe Perches		    defined $stat &&
5931d1e2ad07SJoe Perches		    $stat =~ /^\+[$;\s]*(?:case[$;\s]+\w+[$;\s]*:[$;\s]*|)*[$;\s]*\bdefault[$;\s]*:[$;\s]*;/g) {
5932d1e2ad07SJoe Perches			my $ctx = '';
5933d1e2ad07SJoe Perches			my $herectx = $here . "\n";
5934d1e2ad07SJoe Perches			my $cnt = statement_rawlines($stat);
5935d1e2ad07SJoe Perches			for (my $n = 0; $n < $cnt; $n++) {
5936d1e2ad07SJoe Perches				$herectx .= raw_line($linenr, $n) . "\n";
5937d1e2ad07SJoe Perches			}
5938d1e2ad07SJoe Perches			WARN("DEFAULT_NO_BREAK",
5939d1e2ad07SJoe Perches			     "switch default: should use break\n" . $herectx);
5940caf2a54fSJoe Perches		}
5941caf2a54fSJoe Perches
594213214adfSAndy Whitcroft# check for gcc specific __FUNCTION__
5943d5e616fcSJoe Perches		if ($line =~ /\b__FUNCTION__\b/) {
5944d5e616fcSJoe Perches			if (WARN("USE_FUNC",
5945d5e616fcSJoe Perches				 "__func__ should be used instead of gcc specific __FUNCTION__\n"  . $herecurr) &&
5946d5e616fcSJoe Perches			    $fix) {
5947194f66fcSJoe Perches				$fixed[$fixlinenr] =~ s/\b__FUNCTION__\b/__func__/g;
5948d5e616fcSJoe Perches			}
594913214adfSAndy Whitcroft		}
5950773647a0SAndy Whitcroft
595162ec818fSJoe Perches# check for uses of __DATE__, __TIME__, __TIMESTAMP__
595262ec818fSJoe Perches		while ($line =~ /\b(__(?:DATE|TIME|TIMESTAMP)__)\b/g) {
595362ec818fSJoe Perches			ERROR("DATE_TIME",
595462ec818fSJoe Perches			      "Use of the '$1' macro makes the build non-deterministic\n" . $herecurr);
595562ec818fSJoe Perches		}
595662ec818fSJoe Perches
59572c92488aSJoe Perches# check for use of yield()
59582c92488aSJoe Perches		if ($line =~ /\byield\s*\(\s*\)/) {
59592c92488aSJoe Perches			WARN("YIELD",
59602c92488aSJoe Perches			     "Using yield() is generally wrong. See yield() kernel-doc (sched/core.c)\n"  . $herecurr);
59612c92488aSJoe Perches		}
59622c92488aSJoe Perches
5963179f8f40SJoe Perches# check for comparisons against true and false
5964179f8f40SJoe Perches		if ($line =~ /\+\s*(.*?)\b(true|false|$Lval)\s*(==|\!=)\s*(true|false|$Lval)\b(.*)$/i) {
5965179f8f40SJoe Perches			my $lead = $1;
5966179f8f40SJoe Perches			my $arg = $2;
5967179f8f40SJoe Perches			my $test = $3;
5968179f8f40SJoe Perches			my $otype = $4;
5969179f8f40SJoe Perches			my $trail = $5;
5970179f8f40SJoe Perches			my $op = "!";
5971179f8f40SJoe Perches
5972179f8f40SJoe Perches			($arg, $otype) = ($otype, $arg) if ($arg =~ /^(?:true|false)$/i);
5973179f8f40SJoe Perches
5974179f8f40SJoe Perches			my $type = lc($otype);
5975179f8f40SJoe Perches			if ($type =~ /^(?:true|false)$/) {
5976179f8f40SJoe Perches				if (("$test" eq "==" && "$type" eq "true") ||
5977179f8f40SJoe Perches				    ("$test" eq "!=" && "$type" eq "false")) {
5978179f8f40SJoe Perches					$op = "";
5979179f8f40SJoe Perches				}
5980179f8f40SJoe Perches
5981179f8f40SJoe Perches				CHK("BOOL_COMPARISON",
5982179f8f40SJoe Perches				    "Using comparison to $otype is error prone\n" . $herecurr);
5983179f8f40SJoe Perches
5984179f8f40SJoe Perches## maybe suggesting a correct construct would better
5985179f8f40SJoe Perches##				    "Using comparison to $otype is error prone.  Perhaps use '${lead}${op}${arg}${trail}'\n" . $herecurr);
5986179f8f40SJoe Perches
5987179f8f40SJoe Perches			}
5988179f8f40SJoe Perches		}
5989179f8f40SJoe Perches
59904882720bSThomas Gleixner# check for semaphores initialized locked
59914882720bSThomas Gleixner		if ($line =~ /^.\s*sema_init.+,\W?0\W?\)/) {
5992000d1cc1SJoe Perches			WARN("CONSIDER_COMPLETION",
5993000d1cc1SJoe Perches			     "consider using a completion\n" . $herecurr);
5994773647a0SAndy Whitcroft		}
59956712d858SJoe Perches
599667d0a075SJoe Perches# recommend kstrto* over simple_strto* and strict_strto*
599767d0a075SJoe Perches		if ($line =~ /\b((simple|strict)_(strto(l|ll|ul|ull)))\s*\(/) {
5998000d1cc1SJoe Perches			WARN("CONSIDER_KSTRTO",
599967d0a075SJoe Perches			     "$1 is obsolete, use k$3 instead\n" . $herecurr);
6000773647a0SAndy Whitcroft		}
60016712d858SJoe Perches
6002ae3ccc46SFabian Frederick# check for __initcall(), use device_initcall() explicitly or more appropriate function please
6003f3db6639SMichael Ellerman		if ($line =~ /^.\s*__initcall\s*\(/) {
6004000d1cc1SJoe Perches			WARN("USE_DEVICE_INITCALL",
6005ae3ccc46SFabian Frederick			     "please use device_initcall() or more appropriate function instead of __initcall() (see include/linux/init.h)\n" . $herecurr);
6006f3db6639SMichael Ellerman		}
60076712d858SJoe Perches
60080f3c5aabSJoe Perches# check for various structs that are normally const (ops, kgdb, device_tree)
60096903ffb2SAndy Whitcroft		if ($line !~ /\bconst\b/ &&
60100f3c5aabSJoe Perches		    $line =~ /\bstruct\s+($const_structs)\b/) {
6011000d1cc1SJoe Perches			WARN("CONST_STRUCT",
6012000d1cc1SJoe Perches			     "struct $1 should normally be const\n" .
60136903ffb2SAndy Whitcroft				$herecurr);
60142b6db5cbSAndy Whitcroft		}
6015773647a0SAndy Whitcroft
6016773647a0SAndy Whitcroft# use of NR_CPUS is usually wrong
6017773647a0SAndy Whitcroft# ignore definitions of NR_CPUS and usage to define arrays as likely right
6018773647a0SAndy Whitcroft		if ($line =~ /\bNR_CPUS\b/ &&
6019c45dcabdSAndy Whitcroft		    $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ &&
6020c45dcabdSAndy Whitcroft		    $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ &&
6021171ae1a4SAndy Whitcroft		    $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ &&
6022171ae1a4SAndy Whitcroft		    $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ &&
6023171ae1a4SAndy Whitcroft		    $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/)
6024773647a0SAndy Whitcroft		{
6025000d1cc1SJoe Perches			WARN("NR_CPUS",
6026000d1cc1SJoe Perches			     "usage of NR_CPUS is often wrong - consider using cpu_possible(), num_possible_cpus(), for_each_possible_cpu(), etc\n" . $herecurr);
6027773647a0SAndy Whitcroft		}
60289c9ba34eSAndy Whitcroft
602952ea8506SJoe Perches# Use of __ARCH_HAS_<FOO> or ARCH_HAVE_<BAR> is wrong.
603052ea8506SJoe Perches		if ($line =~ /\+\s*#\s*define\s+((?:__)?ARCH_(?:HAS|HAVE)\w*)\b/) {
603152ea8506SJoe Perches			ERROR("DEFINE_ARCH_HAS",
603252ea8506SJoe Perches			      "#define of '$1' is wrong - use Kconfig variables or standard guards instead\n" . $herecurr);
603352ea8506SJoe Perches		}
603452ea8506SJoe Perches
6035acd9362cSJoe Perches# likely/unlikely comparisons similar to "(likely(foo) > 0)"
6036acd9362cSJoe Perches		if ($^V && $^V ge 5.10.0 &&
6037acd9362cSJoe Perches		    $line =~ /\b((?:un)?likely)\s*\(\s*$FuncArg\s*\)\s*$Compare/) {
6038acd9362cSJoe Perches			WARN("LIKELY_MISUSE",
6039acd9362cSJoe Perches			     "Using $1 should generally have parentheses around the comparison\n" . $herecurr);
6040acd9362cSJoe Perches		}
6041acd9362cSJoe Perches
6042691d77b6SAndy Whitcroft# whine mightly about in_atomic
6043691d77b6SAndy Whitcroft		if ($line =~ /\bin_atomic\s*\(/) {
6044691d77b6SAndy Whitcroft			if ($realfile =~ m@^drivers/@) {
6045000d1cc1SJoe Perches				ERROR("IN_ATOMIC",
6046000d1cc1SJoe Perches				      "do not use in_atomic in drivers\n" . $herecurr);
6047f4a87736SAndy Whitcroft			} elsif ($realfile !~ m@^kernel/@) {
6048000d1cc1SJoe Perches				WARN("IN_ATOMIC",
6049000d1cc1SJoe Perches				     "use of in_atomic() is incorrect outside core kernel code\n" . $herecurr);
6050691d77b6SAndy Whitcroft			}
6051691d77b6SAndy Whitcroft		}
60521704f47bSPeter Zijlstra
6053481aea5cSJoe Perches# whine about ACCESS_ONCE
6054481aea5cSJoe Perches		if ($^V && $^V ge 5.10.0 &&
6055481aea5cSJoe Perches		    $line =~ /\bACCESS_ONCE\s*$balanced_parens\s*(=(?!=))?\s*($FuncArg)?/) {
6056481aea5cSJoe Perches			my $par = $1;
6057481aea5cSJoe Perches			my $eq = $2;
6058481aea5cSJoe Perches			my $fun = $3;
6059481aea5cSJoe Perches			$par =~ s/^\(\s*(.*)\s*\)$/$1/;
6060481aea5cSJoe Perches			if (defined($eq)) {
6061481aea5cSJoe Perches				if (WARN("PREFER_WRITE_ONCE",
6062481aea5cSJoe Perches					 "Prefer WRITE_ONCE(<FOO>, <BAR>) over ACCESS_ONCE(<FOO>) = <BAR>\n" . $herecurr) &&
6063481aea5cSJoe Perches				    $fix) {
6064481aea5cSJoe Perches					$fixed[$fixlinenr] =~ s/\bACCESS_ONCE\s*\(\s*\Q$par\E\s*\)\s*$eq\s*\Q$fun\E/WRITE_ONCE($par, $fun)/;
6065481aea5cSJoe Perches				}
6066481aea5cSJoe Perches			} else {
6067481aea5cSJoe Perches				if (WARN("PREFER_READ_ONCE",
6068481aea5cSJoe Perches					 "Prefer READ_ONCE(<FOO>) over ACCESS_ONCE(<FOO>)\n" . $herecurr) &&
6069481aea5cSJoe Perches				    $fix) {
6070481aea5cSJoe Perches					$fixed[$fixlinenr] =~ s/\bACCESS_ONCE\s*\(\s*\Q$par\E\s*\)/READ_ONCE($par)/;
6071481aea5cSJoe Perches				}
6072481aea5cSJoe Perches			}
6073481aea5cSJoe Perches		}
6074481aea5cSJoe Perches
60751704f47bSPeter Zijlstra# check for lockdep_set_novalidate_class
60761704f47bSPeter Zijlstra		if ($line =~ /^.\s*lockdep_set_novalidate_class\s*\(/ ||
60771704f47bSPeter Zijlstra		    $line =~ /__lockdep_no_validate__\s*\)/ ) {
60781704f47bSPeter Zijlstra			if ($realfile !~ m@^kernel/lockdep@ &&
60791704f47bSPeter Zijlstra			    $realfile !~ m@^include/linux/lockdep@ &&
60801704f47bSPeter Zijlstra			    $realfile !~ m@^drivers/base/core@) {
6081000d1cc1SJoe Perches				ERROR("LOCKDEP",
6082000d1cc1SJoe Perches				      "lockdep_no_validate class is reserved for device->mutex.\n" . $herecurr);
60831704f47bSPeter Zijlstra			}
60841704f47bSPeter Zijlstra		}
608588f8831cSDave Jones
6086b392c64fSJoe Perches		if ($line =~ /debugfs_create_\w+.*\b$mode_perms_world_writable\b/ ||
6087b392c64fSJoe Perches		    $line =~ /DEVICE_ATTR.*\b$mode_perms_world_writable\b/) {
6088000d1cc1SJoe Perches			WARN("EXPORTED_WORLD_WRITABLE",
6089000d1cc1SJoe Perches			     "Exporting world writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr);
609088f8831cSDave Jones		}
60912435880fSJoe Perches
6092515a235eSJoe Perches# Mode permission misuses where it seems decimal should be octal
6093515a235eSJoe Perches# This uses a shortcut match to avoid unnecessary uses of a slow foreach loop
6094515a235eSJoe Perches		if ($^V && $^V ge 5.10.0 &&
6095515a235eSJoe Perches		    $line =~ /$mode_perms_search/) {
60962435880fSJoe Perches			foreach my $entry (@mode_permission_funcs) {
60972435880fSJoe Perches				my $func = $entry->[0];
60982435880fSJoe Perches				my $arg_pos = $entry->[1];
60992435880fSJoe Perches
61002435880fSJoe Perches				my $skip_args = "";
61012435880fSJoe Perches				if ($arg_pos > 1) {
61022435880fSJoe Perches					$arg_pos--;
61032435880fSJoe Perches					$skip_args = "(?:\\s*$FuncArg\\s*,\\s*){$arg_pos,$arg_pos}";
61042435880fSJoe Perches				}
6105f90774e1SJoe Perches				my $test = "\\b$func\\s*\\(${skip_args}($FuncArg(?:\\|\\s*$FuncArg)*)\\s*[,\\)]";
6106515a235eSJoe Perches				if ($line =~ /$test/) {
61072435880fSJoe Perches					my $val = $1;
61082435880fSJoe Perches					$val = $6 if ($skip_args ne "");
6109f90774e1SJoe Perches					if (($val =~ /^$Int$/ && $val !~ /^$Octal$/) ||
6110f90774e1SJoe Perches					    ($val =~ /^$Octal$/ && length($val) ne 4)) {
61112435880fSJoe Perches						ERROR("NON_OCTAL_PERMISSIONS",
61121727cc70SJoe Perches						      "Use 4 digit octal (0777) not decimal permissions\n" . $herecurr);
6113f90774e1SJoe Perches					}
6114f90774e1SJoe Perches					if ($val =~ /^$Octal$/ && (oct($val) & 02)) {
6115c0a5c898SJoe Perches						ERROR("EXPORTED_WORLD_WRITABLE",
6116c0a5c898SJoe Perches						      "Exporting writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr);
61172435880fSJoe Perches					}
6118f90774e1SJoe Perches					if ($val =~ /\b$mode_perms_string_search\b/) {
6119f90774e1SJoe Perches						my $to = 0;
6120f90774e1SJoe Perches						while ($val =~ /\b($mode_perms_string_search)\b(?:\s*\|\s*)?\s*/g) {
6121f90774e1SJoe Perches							$to |=  $mode_permission_string_types{$1};
6122f90774e1SJoe Perches						}
6123f90774e1SJoe Perches						my $new = sprintf("%04o", $to);
6124f90774e1SJoe Perches						if (WARN("SYMBOLIC_PERMS",
6125f90774e1SJoe Perches							 "Symbolic permissions are not preferred. Consider using octal permissions $new.\n" . $herecurr) &&
6126f90774e1SJoe Perches						    $fix) {
6127f90774e1SJoe Perches							$fixed[$fixlinenr] =~ s/\Q$val\E/$new/;
6128f90774e1SJoe Perches						}
6129f90774e1SJoe Perches					}
61302435880fSJoe Perches				}
61312435880fSJoe Perches			}
613213214adfSAndy Whitcroft		}
61335a6d20ceSBjorn Andersson
61345a6d20ceSBjorn Andersson# validate content of MODULE_LICENSE against list from include/linux/module.h
61355a6d20ceSBjorn Andersson		if ($line =~ /\bMODULE_LICENSE\s*\(\s*($String)\s*\)/) {
61365a6d20ceSBjorn Andersson			my $extracted_string = get_quoted_string($line, $rawline);
61375a6d20ceSBjorn Andersson			my $valid_licenses = qr{
61385a6d20ceSBjorn Andersson						GPL|
61395a6d20ceSBjorn Andersson						GPL\ v2|
61405a6d20ceSBjorn Andersson						GPL\ and\ additional\ rights|
61415a6d20ceSBjorn Andersson						Dual\ BSD/GPL|
61425a6d20ceSBjorn Andersson						Dual\ MIT/GPL|
61435a6d20ceSBjorn Andersson						Dual\ MPL/GPL|
61445a6d20ceSBjorn Andersson						Proprietary
61455a6d20ceSBjorn Andersson					}x;
61465a6d20ceSBjorn Andersson			if ($extracted_string !~ /^"(?:$valid_licenses)"$/x) {
61475a6d20ceSBjorn Andersson				WARN("MODULE_LICENSE",
61485a6d20ceSBjorn Andersson				     "unknown module license " . $extracted_string . "\n" . $herecurr);
61495a6d20ceSBjorn Andersson			}
61505a6d20ceSBjorn Andersson		}
6151515a235eSJoe Perches	}
615213214adfSAndy Whitcroft
615313214adfSAndy Whitcroft	# If we have no input at all, then there is nothing to report on
615413214adfSAndy Whitcroft	# so just keep quiet.
615513214adfSAndy Whitcroft	if ($#rawlines == -1) {
615613214adfSAndy Whitcroft		exit(0);
61570a920b5bSAndy Whitcroft	}
61580a920b5bSAndy Whitcroft
61598905a67cSAndy Whitcroft	# In mailback mode only produce a report in the negative, for
61608905a67cSAndy Whitcroft	# things that appear to be patches.
61618905a67cSAndy Whitcroft	if ($mailback && ($clean == 1 || !$is_patch)) {
61628905a67cSAndy Whitcroft		exit(0);
61638905a67cSAndy Whitcroft	}
61648905a67cSAndy Whitcroft
61658905a67cSAndy Whitcroft	# This is not a patch, and we are are in 'no-patch' mode so
61668905a67cSAndy Whitcroft	# just keep quiet.
61678905a67cSAndy Whitcroft	if (!$chk_patch && !$is_patch) {
61688905a67cSAndy Whitcroft		exit(0);
61698905a67cSAndy Whitcroft	}
61708905a67cSAndy Whitcroft
617106330fc4SJoe Perches	if (!$is_patch && $file !~ /cover-letter\.patch$/) {
6172000d1cc1SJoe Perches		ERROR("NOT_UNIFIED_DIFF",
6173000d1cc1SJoe Perches		      "Does not appear to be a unified-diff format patch\n");
61740a920b5bSAndy Whitcroft	}
6175ed43c4e5SAllen Hubbe	if ($is_patch && $has_commit_log && $chk_signoff && $signoff == 0) {
6176000d1cc1SJoe Perches		ERROR("MISSING_SIGN_OFF",
6177000d1cc1SJoe Perches		      "Missing Signed-off-by: line(s)\n");
61780a920b5bSAndy Whitcroft	}
61790a920b5bSAndy Whitcroft
6180f0a594c1SAndy Whitcroft	print report_dump();
618113214adfSAndy Whitcroft	if ($summary && !($clean == 1 && $quiet == 1)) {
618213214adfSAndy Whitcroft		print "$filename " if ($summary_file);
61836c72ffaaSAndy Whitcroft		print "total: $cnt_error errors, $cnt_warn warnings, " .
61846c72ffaaSAndy Whitcroft			(($check)? "$cnt_chk checks, " : "") .
61856c72ffaaSAndy Whitcroft			"$cnt_lines lines checked\n";
61866c72ffaaSAndy Whitcroft	}
61878905a67cSAndy Whitcroft
6188d2c0a235SAndy Whitcroft	if ($quiet == 0) {
6189ef212196SJoe Perches		# If there were any defects found and not already fixing them
6190ef212196SJoe Perches		if (!$clean and !$fix) {
6191ef212196SJoe Perches			print << "EOM"
6192ef212196SJoe Perches
6193ef212196SJoe PerchesNOTE: For some of the reported defects, checkpatch may be able to
6194ef212196SJoe Perches      mechanically convert to the typical style using --fix or --fix-inplace.
6195ef212196SJoe PerchesEOM
6196ef212196SJoe Perches		}
6197d2c0a235SAndy Whitcroft		# If there were whitespace errors which cleanpatch can fix
6198d2c0a235SAndy Whitcroft		# then suggest that.
6199d2c0a235SAndy Whitcroft		if ($rpt_cleaners) {
6200b0781216SMike Frysinger			$rpt_cleaners = 0;
6201d8469f16SJoe Perches			print << "EOM"
6202d8469f16SJoe Perches
6203d8469f16SJoe PerchesNOTE: Whitespace errors detected.
6204d8469f16SJoe Perches      You may wish to use scripts/cleanpatch or scripts/cleanfile
6205d8469f16SJoe PerchesEOM
6206d2c0a235SAndy Whitcroft		}
6207d2c0a235SAndy Whitcroft	}
6208d2c0a235SAndy Whitcroft
6209d752fcc8SJoe Perches	if ($clean == 0 && $fix &&
6210d752fcc8SJoe Perches	    ("@rawlines" ne "@fixed" ||
6211d752fcc8SJoe Perches	     $#fixed_inserted >= 0 || $#fixed_deleted >= 0)) {
62129624b8d6SJoe Perches		my $newfile = $filename;
62139624b8d6SJoe Perches		$newfile .= ".EXPERIMENTAL-checkpatch-fixes" if (!$fix_inplace);
62143705ce5bSJoe Perches		my $linecount = 0;
62153705ce5bSJoe Perches		my $f;
62163705ce5bSJoe Perches
6217d752fcc8SJoe Perches		@fixed = fix_inserted_deleted_lines(\@fixed, \@fixed_inserted, \@fixed_deleted);
6218d752fcc8SJoe Perches
62193705ce5bSJoe Perches		open($f, '>', $newfile)
62203705ce5bSJoe Perches		    or die "$P: Can't open $newfile for write\n";
62213705ce5bSJoe Perches		foreach my $fixed_line (@fixed) {
62223705ce5bSJoe Perches			$linecount++;
62233705ce5bSJoe Perches			if ($file) {
62243705ce5bSJoe Perches				if ($linecount > 3) {
62253705ce5bSJoe Perches					$fixed_line =~ s/^\+//;
62263705ce5bSJoe Perches					print $f $fixed_line . "\n";
62273705ce5bSJoe Perches				}
62283705ce5bSJoe Perches			} else {
62293705ce5bSJoe Perches				print $f $fixed_line . "\n";
62303705ce5bSJoe Perches			}
62313705ce5bSJoe Perches		}
62323705ce5bSJoe Perches		close($f);
62333705ce5bSJoe Perches
62343705ce5bSJoe Perches		if (!$quiet) {
62353705ce5bSJoe Perches			print << "EOM";
6236d8469f16SJoe Perches
62373705ce5bSJoe PerchesWrote EXPERIMENTAL --fix correction(s) to '$newfile'
62383705ce5bSJoe Perches
62393705ce5bSJoe PerchesDo _NOT_ trust the results written to this file.
62403705ce5bSJoe PerchesDo _NOT_ submit these changes without inspecting them for correctness.
62413705ce5bSJoe Perches
62423705ce5bSJoe PerchesThis EXPERIMENTAL file is simply a convenience to help rewrite patches.
62433705ce5bSJoe PerchesNo warranties, expressed or implied...
62443705ce5bSJoe PerchesEOM
62453705ce5bSJoe Perches		}
62463705ce5bSJoe Perches	}
62473705ce5bSJoe Perches
6248d8469f16SJoe Perches	if ($quiet == 0) {
6249d8469f16SJoe Perches		print "\n";
6250d8469f16SJoe Perches		if ($clean == 1) {
6251d8469f16SJoe Perches			print "$vname has no obvious style problems and is ready for submission.\n";
6252d8469f16SJoe Perches		} else {
6253d8469f16SJoe Perches			print "$vname has style problems, please review.\n";
62540a920b5bSAndy Whitcroft		}
62550a920b5bSAndy Whitcroft	}
62560a920b5bSAndy Whitcroft	return $clean;
62570a920b5bSAndy Whitcroft}
6258