checkpatch: suspect indent count condition lines correctly
[linux-2.6-block.git] / scripts / checkpatch.pl
CommitLineData
0a920b5b
AW
1#!/usr/bin/perl -w
2# (c) 2001, Dave Jones. <davej@codemonkey.org.uk> (the file handling bit)
00df344f 3# (c) 2005, Joel Schopp <jschopp@austin.ibm.com> (the ugly bit)
0a920b5b
AW
4# (c) 2007, Andy Whitcroft <apw@uk.ibm.com> (new conditions, test suite, etc)
5# Licensed under the terms of the GNU GPL License version 2
6
7use strict;
8
9my $P = $0;
00df344f 10$P =~ s@.*/@@g;
0a920b5b 11
dea79cd3 12my $V = '0.22';
0a920b5b
AW
13
14use Getopt::Long qw(:config no_auto_abbrev);
15
16my $quiet = 0;
17my $tree = 1;
18my $chk_signoff = 1;
19my $chk_patch = 1;
773647a0 20my $tst_only;
6c72ffaa 21my $emacs = 0;
8905a67c 22my $terse = 0;
6c72ffaa
AW
23my $file = 0;
24my $check = 0;
8905a67c
AW
25my $summary = 1;
26my $mailback = 0;
13214adf 27my $summary_file = 0;
6c72ffaa 28my $root;
c2fdda0d 29my %debug;
0a920b5b 30GetOptions(
6c72ffaa 31 'q|quiet+' => \$quiet,
0a920b5b
AW
32 'tree!' => \$tree,
33 'signoff!' => \$chk_signoff,
34 'patch!' => \$chk_patch,
6c72ffaa 35 'emacs!' => \$emacs,
8905a67c 36 'terse!' => \$terse,
6c72ffaa
AW
37 'file!' => \$file,
38 'subjective!' => \$check,
39 'strict!' => \$check,
40 'root=s' => \$root,
8905a67c
AW
41 'summary!' => \$summary,
42 'mailback!' => \$mailback,
13214adf
AW
43 'summary-file!' => \$summary_file,
44
c2fdda0d 45 'debug=s' => \%debug,
773647a0 46 'test-only=s' => \$tst_only,
0a920b5b
AW
47) or exit;
48
49my $exit = 0;
50
51if ($#ARGV < 0) {
00df344f 52 print "usage: $P [options] patchfile\n";
0a920b5b 53 print "version: $V\n";
13214adf
AW
54 print "options: -q => quiet\n";
55 print " --no-tree => run without a kernel tree\n";
56 print " --terse => one line per report\n";
57 print " --emacs => emacs compile window format\n";
58 print " --file => check a source file\n";
59 print " --strict => enable more subjective tests\n";
60 print " --root => path to the kernel tree root\n";
61 print " --no-summary => suppress the per-file summary\n";
62 print " --summary-file => include the filename in summary\n";
0a920b5b
AW
63 exit(1);
64}
65
c2fdda0d
AW
66my $dbg_values = 0;
67my $dbg_possible = 0;
7429c690 68my $dbg_type = 0;
a1ef277e 69my $dbg_attr = 0;
c2fdda0d
AW
70for my $key (keys %debug) {
71 eval "\${dbg_$key} = '$debug{$key}';"
72}
73
8905a67c
AW
74if ($terse) {
75 $emacs = 1;
76 $quiet++;
77}
78
6c72ffaa
AW
79if ($tree) {
80 if (defined $root) {
81 if (!top_of_kernel_tree($root)) {
82 die "$P: $root: --root does not point at a valid tree\n";
83 }
84 } else {
85 if (top_of_kernel_tree('.')) {
86 $root = '.';
87 } elsif ($0 =~ m@(.*)/scripts/[^/]*$@ &&
88 top_of_kernel_tree($1)) {
89 $root = $1;
90 }
91 }
92
93 if (!defined $root) {
94 print "Must be run from the top-level dir. of a kernel tree\n";
95 exit(2);
96 }
0a920b5b
AW
97}
98
6c72ffaa
AW
99my $emitted_corrupt = 0;
100
101our $Ident = qr{[A-Za-z_][A-Za-z\d_]*};
102our $Storage = qr{extern|static|asmlinkage};
103our $Sparse = qr{
104 __user|
105 __kernel|
106 __force|
107 __iomem|
108 __must_check|
109 __init_refok|
cf655043 110 __kprobes
6c72ffaa
AW
111 }x;
112our $Attribute = qr{
113 const|
114 __read_mostly|
115 __kprobes|
24e1d81a
AW
116 __(?:mem|cpu|dev|)(?:initdata|init)|
117 ____cacheline_aligned|
118 ____cacheline_aligned_in_smp|
119 ____cacheline_internodealigned_in_smp
6c72ffaa 120 }x;
c45dcabd 121our $Modifier;
6c72ffaa 122our $Inline = qr{inline|__always_inline|noinline};
6c72ffaa
AW
123our $Member = qr{->$Ident|\.$Ident|\[[^]]*\]};
124our $Lval = qr{$Ident(?:$Member)*};
125
126our $Constant = qr{(?:[0-9]+|0x[0-9a-fA-F]+)[UL]*};
127our $Assignment = qr{(?:\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=)};
128our $Operators = qr{
129 <=|>=|==|!=|
130 =>|->|<<|>>|<|>|!|~|
c2fdda0d 131 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%
6c72ffaa
AW
132 }x;
133
8905a67c
AW
134our $NonptrType;
135our $Type;
136our $Declare;
137
171ae1a4
AW
138our $UTF8 = qr {
139 [\x09\x0A\x0D\x20-\x7E] # ASCII
140 | [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
141 | \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
142 | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
143 | \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
144 | \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
145 | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
146 | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
147}x;
148
8905a67c
AW
149our @typeList = (
150 qr{void},
c45dcabd
AW
151 qr{(?:unsigned\s+)?char},
152 qr{(?:unsigned\s+)?short},
153 qr{(?:unsigned\s+)?int},
154 qr{(?:unsigned\s+)?long},
155 qr{(?:unsigned\s+)?long\s+int},
156 qr{(?:unsigned\s+)?long\s+long},
157 qr{(?:unsigned\s+)?long\s+long\s+int},
8905a67c
AW
158 qr{unsigned},
159 qr{float},
160 qr{double},
161 qr{bool},
8905a67c
AW
162 qr{(?:__)?(?:u|s|be|le)(?:8|16|32|64)},
163 qr{struct\s+$Ident},
164 qr{union\s+$Ident},
165 qr{enum\s+$Ident},
166 qr{${Ident}_t},
167 qr{${Ident}_handler},
168 qr{${Ident}_handler_fn},
169);
c45dcabd
AW
170our @modifierList = (
171 qr{fastcall},
172);
8905a67c
AW
173
174sub build_types {
d2172eb5
AW
175 my $mods = "(?x: \n" . join("|\n ", @modifierList) . "\n)";
176 my $all = "(?x: \n" . join("|\n ", @typeList) . "\n)";
c8cb2ca3 177 $Modifier = qr{(?:$Attribute|$Sparse|$mods)};
8905a67c 178 $NonptrType = qr{
d2172eb5 179 (?:$Modifier\s+|const\s+)*
cf655043 180 (?:
c45dcabd
AW
181 (?:typeof|__typeof__)\s*\(\s*\**\s*$Ident\s*\)|
182 (?:${all}\b)
cf655043 183 )
c8cb2ca3 184 (?:\s+$Modifier|\s+const)*
8905a67c
AW
185 }x;
186 $Type = qr{
c45dcabd 187 $NonptrType
8905a67c 188 (?:\s*\*+\s*const|\s*\*+|(?:\s*\[\s*\])+)?
c8cb2ca3 189 (?:\s+$Inline|\s+$Modifier)*
8905a67c
AW
190 }x;
191 $Declare = qr{(?:$Storage\s+)?$Type};
192}
193build_types();
6c72ffaa
AW
194
195$chk_signoff = 0 if ($file);
196
4a0df2ef
AW
197my @dep_includes = ();
198my @dep_functions = ();
6c72ffaa
AW
199my $removal = "Documentation/feature-removal-schedule.txt";
200if ($tree && -f "$root/$removal") {
201 open(REMOVE, "<$root/$removal") ||
202 die "$P: $removal: open failed - $!\n";
0a920b5b 203 while (<REMOVE>) {
f0a594c1
AW
204 if (/^Check:\s+(.*\S)/) {
205 for my $entry (split(/[, ]+/, $1)) {
206 if ($entry =~ m@include/(.*)@) {
4a0df2ef 207 push(@dep_includes, $1);
4a0df2ef 208
f0a594c1
AW
209 } elsif ($entry !~ m@/@) {
210 push(@dep_functions, $entry);
211 }
4a0df2ef 212 }
0a920b5b
AW
213 }
214 }
215}
216
00df344f 217my @rawlines = ();
c2fdda0d
AW
218my @lines = ();
219my $vname;
6c72ffaa
AW
220for my $filename (@ARGV) {
221 if ($file) {
222 open(FILE, "diff -u /dev/null $filename|") ||
223 die "$P: $filename: diff failed - $!\n";
224 } else {
225 open(FILE, "<$filename") ||
226 die "$P: $filename: open failed - $!\n";
0a920b5b 227 }
c2fdda0d
AW
228 if ($filename eq '-') {
229 $vname = 'Your patch';
230 } else {
231 $vname = $filename;
232 }
6c72ffaa
AW
233 while (<FILE>) {
234 chomp;
235 push(@rawlines, $_);
236 }
237 close(FILE);
c2fdda0d 238 if (!process($filename)) {
6c72ffaa
AW
239 $exit = 1;
240 }
241 @rawlines = ();
13214adf 242 @lines = ();
0a920b5b
AW
243}
244
245exit($exit);
246
247sub top_of_kernel_tree {
6c72ffaa
AW
248 my ($root) = @_;
249
250 my @tree_check = (
251 "COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
252 "README", "Documentation", "arch", "include", "drivers",
253 "fs", "init", "ipc", "kernel", "lib", "scripts",
254 );
255
256 foreach my $check (@tree_check) {
257 if (! -e $root . '/' . $check) {
258 return 0;
259 }
0a920b5b 260 }
6c72ffaa 261 return 1;
0a920b5b
AW
262}
263
264sub expand_tabs {
265 my ($str) = @_;
266
267 my $res = '';
268 my $n = 0;
269 for my $c (split(//, $str)) {
270 if ($c eq "\t") {
271 $res .= ' ';
272 $n++;
273 for (; ($n % 8) != 0; $n++) {
274 $res .= ' ';
275 }
276 next;
277 }
278 $res .= $c;
279 $n++;
280 }
281
282 return $res;
283}
6c72ffaa 284sub copy_spacing {
773647a0 285 (my $res = shift) =~ tr/\t/ /c;
6c72ffaa
AW
286 return $res;
287}
0a920b5b 288
4a0df2ef
AW
289sub line_stats {
290 my ($line) = @_;
291
292 # Drop the diff line leader and expand tabs
293 $line =~ s/^.//;
294 $line = expand_tabs($line);
295
296 # Pick the indent from the front of the line.
297 my ($white) = ($line =~ /^(\s*)/);
298
299 return (length($line), length($white));
300}
301
773647a0
AW
302my $sanitise_quote = '';
303
304sub sanitise_line_reset {
305 my ($in_comment) = @_;
306
307 if ($in_comment) {
308 $sanitise_quote = '*/';
309 } else {
310 $sanitise_quote = '';
311 }
312}
00df344f
AW
313sub sanitise_line {
314 my ($line) = @_;
315
316 my $res = '';
317 my $l = '';
318
c2fdda0d 319 my $qlen = 0;
773647a0
AW
320 my $off = 0;
321 my $c;
00df344f 322
773647a0
AW
323 # Always copy over the diff marker.
324 $res = substr($line, 0, 1);
325
326 for ($off = 1; $off < length($line); $off++) {
327 $c = substr($line, $off, 1);
328
329 # Comments we are wacking completly including the begin
330 # and end, all to $;.
331 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
332 $sanitise_quote = '*/';
333
334 substr($res, $off, 2, "$;$;");
335 $off++;
336 next;
00df344f 337 }
81bc0e02 338 if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') {
773647a0
AW
339 $sanitise_quote = '';
340 substr($res, $off, 2, "$;$;");
341 $off++;
342 next;
c2fdda0d 343 }
773647a0
AW
344
345 # A \ in a string means ignore the next character.
346 if (($sanitise_quote eq "'" || $sanitise_quote eq '"') &&
347 $c eq "\\") {
348 substr($res, $off, 2, 'XX');
349 $off++;
350 next;
00df344f 351 }
773647a0
AW
352 # Regular quotes.
353 if ($c eq "'" || $c eq '"') {
354 if ($sanitise_quote eq '') {
355 $sanitise_quote = $c;
00df344f 356
773647a0
AW
357 substr($res, $off, 1, $c);
358 next;
359 } elsif ($sanitise_quote eq $c) {
360 $sanitise_quote = '';
361 }
362 }
00df344f 363
773647a0
AW
364 #print "SQ:$sanitise_quote\n";
365 if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") {
366 substr($res, $off, 1, $;);
367 } elsif ($off != 0 && $sanitise_quote && $c ne "\t") {
368 substr($res, $off, 1, 'X');
369 } else {
370 substr($res, $off, 1, $c);
371 }
c2fdda0d
AW
372 }
373
374 # The pathname on a #include may be surrounded by '<' and '>'.
c45dcabd 375 if ($res =~ /^.\s*\#\s*include\s+\<(.*)\>/) {
c2fdda0d
AW
376 my $clean = 'X' x length($1);
377 $res =~ s@\<.*\>@<$clean>@;
378
379 # The whole of a #error is a string.
c45dcabd 380 } elsif ($res =~ /^.\s*\#\s*(?:error|warning)\s+(.*)\b/) {
c2fdda0d 381 my $clean = 'X' x length($1);
c45dcabd 382 $res =~ s@(\#\s*(?:error|warning)\s+).*@$1$clean@;
c2fdda0d
AW
383 }
384
00df344f
AW
385 return $res;
386}
387
8905a67c
AW
388sub ctx_statement_block {
389 my ($linenr, $remain, $off) = @_;
390 my $line = $linenr - 1;
391 my $blk = '';
392 my $soff = $off;
393 my $coff = $off - 1;
773647a0 394 my $coff_set = 0;
8905a67c 395
13214adf
AW
396 my $loff = 0;
397
8905a67c
AW
398 my $type = '';
399 my $level = 0;
cf655043 400 my $p;
8905a67c
AW
401 my $c;
402 my $len = 0;
13214adf
AW
403
404 my $remainder;
8905a67c 405 while (1) {
773647a0 406 #warn "CSB: blk<$blk> remain<$remain>\n";
8905a67c
AW
407 # If we are about to drop off the end, pull in more
408 # context.
409 if ($off >= $len) {
410 for (; $remain > 0; $line++) {
dea33496 411 last if (!defined $lines[$line]);
c2fdda0d 412 next if ($lines[$line] =~ /^-/);
8905a67c 413 $remain--;
13214adf 414 $loff = $len;
c2fdda0d 415 $blk .= $lines[$line] . "\n";
8905a67c
AW
416 $len = length($blk);
417 $line++;
418 last;
419 }
420 # Bail if there is no further context.
421 #warn "CSB: blk<$blk> off<$off> len<$len>\n";
13214adf 422 if ($off >= $len) {
8905a67c
AW
423 last;
424 }
425 }
cf655043 426 $p = $c;
8905a67c 427 $c = substr($blk, $off, 1);
13214adf 428 $remainder = substr($blk, $off);
8905a67c 429
773647a0 430 #warn "CSB: c<$c> type<$type> level<$level> remainder<$remainder> coff_set<$coff_set>\n";
8905a67c
AW
431 # Statement ends at the ';' or a close '}' at the
432 # outermost level.
433 if ($level == 0 && $c eq ';') {
434 last;
435 }
436
13214adf 437 # An else is really a conditional as long as its not else if
773647a0
AW
438 if ($level == 0 && $coff_set == 0 &&
439 (!defined($p) || $p =~ /(?:\s|\}|\+)/) &&
440 $remainder =~ /^(else)(?:\s|{)/ &&
441 $remainder !~ /^else\s+if\b/) {
442 $coff = $off + length($1) - 1;
443 $coff_set = 1;
444 #warn "CSB: mark coff<$coff> soff<$soff> 1<$1>\n";
445 #warn "[" . substr($blk, $soff, $coff - $soff + 1) . "]\n";
13214adf
AW
446 }
447
8905a67c
AW
448 if (($type eq '' || $type eq '(') && $c eq '(') {
449 $level++;
450 $type = '(';
451 }
452 if ($type eq '(' && $c eq ')') {
453 $level--;
454 $type = ($level != 0)? '(' : '';
455
456 if ($level == 0 && $coff < $soff) {
457 $coff = $off;
773647a0
AW
458 $coff_set = 1;
459 #warn "CSB: mark coff<$coff>\n";
8905a67c
AW
460 }
461 }
462 if (($type eq '' || $type eq '{') && $c eq '{') {
463 $level++;
464 $type = '{';
465 }
466 if ($type eq '{' && $c eq '}') {
467 $level--;
468 $type = ($level != 0)? '{' : '';
469
470 if ($level == 0) {
471 last;
472 }
473 }
474 $off++;
475 }
a3bb97a7 476 # We are truly at the end, so shuffle to the next line.
13214adf 477 if ($off == $len) {
a3bb97a7 478 $loff = $len + 1;
13214adf
AW
479 $line++;
480 $remain--;
481 }
8905a67c
AW
482
483 my $statement = substr($blk, $soff, $off - $soff + 1);
484 my $condition = substr($blk, $soff, $coff - $soff + 1);
485
486 #warn "STATEMENT<$statement>\n";
487 #warn "CONDITION<$condition>\n";
488
773647a0 489 #print "coff<$coff> soff<$off> loff<$loff>\n";
13214adf
AW
490
491 return ($statement, $condition,
492 $line, $remain + 1, $off - $loff + 1, $level);
493}
494
cf655043
AW
495sub statement_lines {
496 my ($stmt) = @_;
497
498 # Strip the diff line prefixes and rip blank lines at start and end.
499 $stmt =~ s/(^|\n)./$1/g;
500 $stmt =~ s/^\s*//;
501 $stmt =~ s/\s*$//;
502
503 my @stmt_lines = ($stmt =~ /\n/g);
504
505 return $#stmt_lines + 2;
506}
507
508sub statement_rawlines {
509 my ($stmt) = @_;
510
511 my @stmt_lines = ($stmt =~ /\n/g);
512
513 return $#stmt_lines + 2;
514}
515
516sub statement_block_size {
517 my ($stmt) = @_;
518
519 $stmt =~ s/(^|\n)./$1/g;
520 $stmt =~ s/^\s*{//;
521 $stmt =~ s/}\s*$//;
522 $stmt =~ s/^\s*//;
523 $stmt =~ s/\s*$//;
524
525 my @stmt_lines = ($stmt =~ /\n/g);
526 my @stmt_statements = ($stmt =~ /;/g);
527
528 my $stmt_lines = $#stmt_lines + 2;
529 my $stmt_statements = $#stmt_statements + 1;
530
531 if ($stmt_lines > $stmt_statements) {
532 return $stmt_lines;
533 } else {
534 return $stmt_statements;
535 }
536}
537
13214adf
AW
538sub ctx_statement_full {
539 my ($linenr, $remain, $off) = @_;
540 my ($statement, $condition, $level);
541
542 my (@chunks);
543
cf655043 544 # Grab the first conditional/block pair.
13214adf
AW
545 ($statement, $condition, $linenr, $remain, $off, $level) =
546 ctx_statement_block($linenr, $remain, $off);
773647a0 547 #print "F: c<$condition> s<$statement> remain<$remain>\n";
cf655043
AW
548 push(@chunks, [ $condition, $statement ]);
549 if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
550 return ($level, $linenr, @chunks);
551 }
552
553 # Pull in the following conditional/block pairs and see if they
554 # could continue the statement.
13214adf 555 for (;;) {
13214adf
AW
556 ($statement, $condition, $linenr, $remain, $off, $level) =
557 ctx_statement_block($linenr, $remain, $off);
cf655043 558 #print "C: c<$condition> s<$statement> remain<$remain>\n";
773647a0 559 last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
cf655043
AW
560 #print "C: push\n";
561 push(@chunks, [ $condition, $statement ]);
13214adf
AW
562 }
563
564 return ($level, $linenr, @chunks);
8905a67c
AW
565}
566
4a0df2ef 567sub ctx_block_get {
f0a594c1 568 my ($linenr, $remain, $outer, $open, $close, $off) = @_;
4a0df2ef
AW
569 my $line;
570 my $start = $linenr - 1;
4a0df2ef
AW
571 my $blk = '';
572 my @o;
573 my @c;
574 my @res = ();
575
f0a594c1 576 my $level = 0;
00df344f
AW
577 for ($line = $start; $remain > 0; $line++) {
578 next if ($rawlines[$line] =~ /^-/);
579 $remain--;
580
581 $blk .= $rawlines[$line];
f0a594c1
AW
582 foreach my $c (split(//, $rawlines[$line])) {
583 ##print "C<$c>L<$level><$open$close>O<$off>\n";
584 if ($off > 0) {
585 $off--;
586 next;
587 }
4a0df2ef 588
f0a594c1
AW
589 if ($c eq $close && $level > 0) {
590 $level--;
591 last if ($level == 0);
592 } elsif ($c eq $open) {
593 $level++;
594 }
595 }
4a0df2ef 596
f0a594c1 597 if (!$outer || $level <= 1) {
00df344f 598 push(@res, $rawlines[$line]);
4a0df2ef
AW
599 }
600
f0a594c1 601 last if ($level == 0);
4a0df2ef
AW
602 }
603
f0a594c1 604 return ($level, @res);
4a0df2ef
AW
605}
606sub ctx_block_outer {
607 my ($linenr, $remain) = @_;
608
f0a594c1
AW
609 my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0);
610 return @r;
4a0df2ef
AW
611}
612sub ctx_block {
613 my ($linenr, $remain) = @_;
614
f0a594c1
AW
615 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0);
616 return @r;
653d4876
AW
617}
618sub ctx_statement {
f0a594c1
AW
619 my ($linenr, $remain, $off) = @_;
620
621 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
622 return @r;
623}
624sub ctx_block_level {
653d4876
AW
625 my ($linenr, $remain) = @_;
626
f0a594c1 627 return ctx_block_get($linenr, $remain, 0, '{', '}', 0);
4a0df2ef 628}
9c0ca6f9
AW
629sub ctx_statement_level {
630 my ($linenr, $remain, $off) = @_;
631
632 return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
633}
4a0df2ef
AW
634
635sub ctx_locate_comment {
636 my ($first_line, $end_line) = @_;
637
638 # Catch a comment on the end of the line itself.
beae6332 639 my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@);
4a0df2ef
AW
640 return $current_comment if (defined $current_comment);
641
642 # Look through the context and try and figure out if there is a
643 # comment.
644 my $in_comment = 0;
645 $current_comment = '';
646 for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
00df344f
AW
647 my $line = $rawlines[$linenr - 1];
648 #warn " $line\n";
4a0df2ef
AW
649 if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
650 $in_comment = 1;
651 }
652 if ($line =~ m@/\*@) {
653 $in_comment = 1;
654 }
655 if (!$in_comment && $current_comment ne '') {
656 $current_comment = '';
657 }
658 $current_comment .= $line . "\n" if ($in_comment);
659 if ($line =~ m@\*/@) {
660 $in_comment = 0;
661 }
662 }
663
664 chomp($current_comment);
665 return($current_comment);
666}
667sub ctx_has_comment {
668 my ($first_line, $end_line) = @_;
669 my $cmt = ctx_locate_comment($first_line, $end_line);
670
00df344f 671 ##print "LINE: $rawlines[$end_line - 1 ]\n";
4a0df2ef
AW
672 ##print "CMMT: $cmt\n";
673
674 return ($cmt ne '');
675}
676
4d001e4d
AW
677sub raw_line {
678 my ($linenr, $cnt) = @_;
679
680 my $offset = $linenr - 1;
681 $cnt++;
682
683 my $line;
684 while ($cnt) {
685 $line = $rawlines[$offset++];
686 next if (defined($line) && $line =~ /^-/);
687 $cnt--;
688 }
689
690 return $line;
691}
692
6c72ffaa
AW
693sub cat_vet {
694 my ($vet) = @_;
695 my ($res, $coded);
9c0ca6f9 696
6c72ffaa
AW
697 $res = '';
698 while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
699 $res .= $1;
700 if ($2 ne '') {
701 $coded = sprintf("^%c", unpack('C', $2) + 64);
702 $res .= $coded;
9c0ca6f9
AW
703 }
704 }
6c72ffaa 705 $res =~ s/$/\$/;
9c0ca6f9 706
6c72ffaa 707 return $res;
9c0ca6f9
AW
708}
709
c2fdda0d 710my $av_preprocessor = 0;
cf655043 711my $av_pending;
c2fdda0d 712my @av_paren_type;
1f65f947 713my $av_pend_colon;
c2fdda0d
AW
714
715sub annotate_reset {
716 $av_preprocessor = 0;
cf655043
AW
717 $av_pending = '_';
718 @av_paren_type = ('E');
1f65f947 719 $av_pend_colon = 'O';
c2fdda0d
AW
720}
721
6c72ffaa
AW
722sub annotate_values {
723 my ($stream, $type) = @_;
0a920b5b 724
6c72ffaa 725 my $res;
1f65f947 726 my $var = '_' x length($stream);
6c72ffaa
AW
727 my $cur = $stream;
728
c2fdda0d 729 print "$stream\n" if ($dbg_values > 1);
6c72ffaa 730
6c72ffaa 731 while (length($cur)) {
773647a0 732 @av_paren_type = ('E') if ($#av_paren_type < 0);
cf655043 733 print " <" . join('', @av_paren_type) .
171ae1a4 734 "> <$type> <$av_pending>" if ($dbg_values > 1);
6c72ffaa 735 if ($cur =~ /^(\s+)/o) {
c2fdda0d
AW
736 print "WS($1)\n" if ($dbg_values > 1);
737 if ($1 =~ /\n/ && $av_preprocessor) {
cf655043 738 $type = pop(@av_paren_type);
c2fdda0d 739 $av_preprocessor = 0;
6c72ffaa
AW
740 }
741
8ea3eb9a 742 } elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\()/) {
c2fdda0d 743 print "DECLARE($1)\n" if ($dbg_values > 1);
6c72ffaa
AW
744 $type = 'T';
745
389a2fe5
AW
746 } elsif ($cur =~ /^($Modifier)\s*/) {
747 print "MODIFIER($1)\n" if ($dbg_values > 1);
748 $type = 'T';
749
c45dcabd 750 } elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) {
171ae1a4 751 print "DEFINE($1,$2)\n" if ($dbg_values > 1);
c2fdda0d 752 $av_preprocessor = 1;
171ae1a4
AW
753 push(@av_paren_type, $type);
754 if ($2 ne '') {
755 $av_pending = 'N';
756 }
757 $type = 'E';
758
c45dcabd 759 } elsif ($cur =~ /^(\#\s*(?:undef\s*$Ident|include\b))/o) {
171ae1a4
AW
760 print "UNDEF($1)\n" if ($dbg_values > 1);
761 $av_preprocessor = 1;
762 push(@av_paren_type, $type);
6c72ffaa 763
c45dcabd 764 } elsif ($cur =~ /^(\#\s*(?:ifdef|ifndef|if))/o) {
cf655043 765 print "PRE_START($1)\n" if ($dbg_values > 1);
c2fdda0d 766 $av_preprocessor = 1;
cf655043
AW
767
768 push(@av_paren_type, $type);
769 push(@av_paren_type, $type);
171ae1a4 770 $type = 'E';
cf655043 771
c45dcabd 772 } elsif ($cur =~ /^(\#\s*(?:else|elif))/o) {
cf655043
AW
773 print "PRE_RESTART($1)\n" if ($dbg_values > 1);
774 $av_preprocessor = 1;
775
776 push(@av_paren_type, $av_paren_type[$#av_paren_type]);
777
171ae1a4 778 $type = 'E';
cf655043 779
c45dcabd 780 } elsif ($cur =~ /^(\#\s*(?:endif))/o) {
cf655043
AW
781 print "PRE_END($1)\n" if ($dbg_values > 1);
782
783 $av_preprocessor = 1;
784
785 # Assume all arms of the conditional end as this
786 # one does, and continue as if the #endif was not here.
787 pop(@av_paren_type);
788 push(@av_paren_type, $type);
171ae1a4 789 $type = 'E';
6c72ffaa
AW
790
791 } elsif ($cur =~ /^(\\\n)/o) {
c2fdda0d 792 print "PRECONT($1)\n" if ($dbg_values > 1);
6c72ffaa 793
171ae1a4
AW
794 } elsif ($cur =~ /^(__attribute__)\s*\(?/o) {
795 print "ATTR($1)\n" if ($dbg_values > 1);
796 $av_pending = $type;
797 $type = 'N';
798
6c72ffaa 799 } elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
c2fdda0d 800 print "SIZEOF($1)\n" if ($dbg_values > 1);
6c72ffaa 801 if (defined $2) {
cf655043 802 $av_pending = 'V';
6c72ffaa
AW
803 }
804 $type = 'N';
805
14b111c1 806 } elsif ($cur =~ /^(if|while|for)\b/o) {
c2fdda0d 807 print "COND($1)\n" if ($dbg_values > 1);
14b111c1 808 $av_pending = 'E';
6c72ffaa
AW
809 $type = 'N';
810
1f65f947
AW
811 } elsif ($cur =~/^(case)/o) {
812 print "CASE($1)\n" if ($dbg_values > 1);
813 $av_pend_colon = 'C';
814 $type = 'N';
815
14b111c1 816 } elsif ($cur =~/^(return|else|goto|typeof|__typeof__)\b/o) {
c2fdda0d 817 print "KEYWORD($1)\n" if ($dbg_values > 1);
6c72ffaa
AW
818 $type = 'N';
819
820 } elsif ($cur =~ /^(\()/o) {
c2fdda0d 821 print "PAREN('$1')\n" if ($dbg_values > 1);
cf655043
AW
822 push(@av_paren_type, $av_pending);
823 $av_pending = '_';
6c72ffaa
AW
824 $type = 'N';
825
826 } elsif ($cur =~ /^(\))/o) {
cf655043
AW
827 my $new_type = pop(@av_paren_type);
828 if ($new_type ne '_') {
829 $type = $new_type;
c2fdda0d
AW
830 print "PAREN('$1') -> $type\n"
831 if ($dbg_values > 1);
6c72ffaa 832 } else {
c2fdda0d 833 print "PAREN('$1')\n" if ($dbg_values > 1);
6c72ffaa
AW
834 }
835
c8cb2ca3 836 } elsif ($cur =~ /^($Ident)\s*\(/o) {
c2fdda0d 837 print "FUNC($1)\n" if ($dbg_values > 1);
c8cb2ca3 838 $type = 'V';
cf655043 839 $av_pending = 'V';
6c72ffaa 840
1f65f947
AW
841 } elsif ($cur =~ /^($Ident\s*):/) {
842 if ($type eq 'E') {
843 $av_pend_colon = 'L';
844 } elsif ($type eq 'T') {
845 $av_pend_colon = 'B';
846 }
847 print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1);
848 $type = 'V';
849
6c72ffaa 850 } elsif ($cur =~ /^($Ident|$Constant)/o) {
c2fdda0d 851 print "IDENT($1)\n" if ($dbg_values > 1);
6c72ffaa
AW
852 $type = 'V';
853
854 } elsif ($cur =~ /^($Assignment)/o) {
c2fdda0d 855 print "ASSIGN($1)\n" if ($dbg_values > 1);
6c72ffaa
AW
856 $type = 'N';
857
cf655043 858 } elsif ($cur =~/^(;|{|})/) {
c2fdda0d 859 print "END($1)\n" if ($dbg_values > 1);
13214adf 860 $type = 'E';
1f65f947
AW
861 $av_pend_colon = 'O';
862
863 } elsif ($cur =~ /^(\?)/o) {
864 print "QUESTION($1)\n" if ($dbg_values > 1);
865 $type = 'N';
866
867 } elsif ($cur =~ /^(:)/o) {
868 print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1);
869
870 substr($var, length($res), 1, $av_pend_colon);
871 if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') {
872 $type = 'E';
873 } else {
874 $type = 'N';
875 }
876 $av_pend_colon = 'O';
13214adf 877
1f65f947 878 } elsif ($cur =~ /^(;|\[)/o) {
13214adf 879 print "CLOSE($1)\n" if ($dbg_values > 1);
6c72ffaa
AW
880 $type = 'N';
881
0d413866 882 } elsif ($cur =~ /^(-(?![->])|\+(?!\+)|\*|\&\&|\&)/o) {
74048ed8
AW
883 my $variant;
884
885 print "OPV($1)\n" if ($dbg_values > 1);
886 if ($type eq 'V') {
887 $variant = 'B';
888 } else {
889 $variant = 'U';
890 }
891
892 substr($var, length($res), 1, $variant);
893 $type = 'N';
894
6c72ffaa 895 } elsif ($cur =~ /^($Operators)/o) {
c2fdda0d 896 print "OP($1)\n" if ($dbg_values > 1);
6c72ffaa
AW
897 if ($1 ne '++' && $1 ne '--') {
898 $type = 'N';
899 }
900
901 } elsif ($cur =~ /(^.)/o) {
c2fdda0d 902 print "C($1)\n" if ($dbg_values > 1);
6c72ffaa
AW
903 }
904 if (defined $1) {
905 $cur = substr($cur, length($1));
906 $res .= $type x length($1);
907 }
9c0ca6f9 908 }
0a920b5b 909
1f65f947 910 return ($res, $var);
0a920b5b
AW
911}
912
8905a67c 913sub possible {
13214adf 914 my ($possible, $line) = @_;
8905a67c 915
c45dcabd 916 print "CHECK<$possible> ($line)\n" if ($dbg_possible > 1);
0221f55c 917 if ($possible !~ /^(?:$Modifier|$Storage|$Type|DEFINE_\S+)$/ &&
8905a67c 918 $possible ne 'goto' && $possible ne 'return' &&
8905a67c 919 $possible ne 'case' && $possible ne 'else' &&
d3ddcf47 920 $possible ne 'asm' && $possible ne '__asm__' &&
c45dcabd
AW
921 $possible !~ /^(typedef|struct|enum)\b/) {
922 # Check for modifiers.
923 $possible =~ s/\s*$Storage\s*//g;
924 $possible =~ s/\s*$Sparse\s*//g;
925 if ($possible =~ /^\s*$/) {
926
927 } elsif ($possible =~ /\s/) {
928 $possible =~ s/\s*$Type\s*//g;
d2506586
AW
929 for my $modifier (split(' ', $possible)) {
930 warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
931 push(@modifierList, $modifier);
932 }
c45dcabd
AW
933
934 } else {
935 warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
936 push(@typeList, $possible);
937 }
8905a67c
AW
938 build_types();
939 }
940}
941
6c72ffaa
AW
942my $prefix = '';
943
f0a594c1 944sub report {
773647a0
AW
945 if (defined $tst_only && $_[0] !~ /\Q$tst_only\E/) {
946 return 0;
947 }
8905a67c
AW
948 my $line = $prefix . $_[0];
949
950 $line = (split('\n', $line))[0] . "\n" if ($terse);
951
13214adf 952 push(our @report, $line);
773647a0
AW
953
954 return 1;
f0a594c1
AW
955}
956sub report_dump {
13214adf 957 our @report;
f0a594c1 958}
de7d4f0e 959sub ERROR {
773647a0
AW
960 if (report("ERROR: $_[0]\n")) {
961 our $clean = 0;
962 our $cnt_error++;
963 }
de7d4f0e
AW
964}
965sub WARN {
773647a0
AW
966 if (report("WARNING: $_[0]\n")) {
967 our $clean = 0;
968 our $cnt_warn++;
969 }
de7d4f0e
AW
970}
971sub CHK {
773647a0 972 if ($check && report("CHECK: $_[0]\n")) {
6c72ffaa
AW
973 our $clean = 0;
974 our $cnt_chk++;
975 }
de7d4f0e
AW
976}
977
6ecd9674
AW
978sub check_absolute_file {
979 my ($absolute, $herecurr) = @_;
980 my $file = $absolute;
981
982 ##print "absolute<$absolute>\n";
983
984 # See if any suffix of this path is a path within the tree.
985 while ($file =~ s@^[^/]*/@@) {
986 if (-f "$root/$file") {
987 ##print "file<$file>\n";
988 last;
989 }
990 }
991 if (! -f _) {
992 return 0;
993 }
994
995 # It is, so see if the prefix is acceptable.
996 my $prefix = $absolute;
997 substr($prefix, -length($file)) = '';
998
999 ##print "prefix<$prefix>\n";
1000 if ($prefix ne ".../") {
1001 WARN("use relative pathname instead of absolute in changelog text\n" . $herecurr);
1002 }
1003}
1004
0a920b5b
AW
1005sub process {
1006 my $filename = shift;
0a920b5b
AW
1007
1008 my $linenr=0;
1009 my $prevline="";
c2fdda0d 1010 my $prevrawline="";
0a920b5b 1011 my $stashline="";
c2fdda0d 1012 my $stashrawline="";
0a920b5b 1013
4a0df2ef 1014 my $length;
0a920b5b
AW
1015 my $indent;
1016 my $previndent=0;
1017 my $stashindent=0;
1018
de7d4f0e 1019 our $clean = 1;
0a920b5b
AW
1020 my $signoff = 0;
1021 my $is_patch = 0;
1022
13214adf 1023 our @report = ();
6c72ffaa
AW
1024 our $cnt_lines = 0;
1025 our $cnt_error = 0;
1026 our $cnt_warn = 0;
1027 our $cnt_chk = 0;
1028
0a920b5b
AW
1029 # Trace the real file/line as we go.
1030 my $realfile = '';
1031 my $realline = 0;
1032 my $realcnt = 0;
1033 my $here = '';
1034 my $in_comment = 0;
c2fdda0d 1035 my $comment_edge = 0;
0a920b5b
AW
1036 my $first_line = 0;
1037
13214adf
AW
1038 my $prev_values = 'E';
1039
1040 # suppression flags
773647a0 1041 my %suppress_ifbraces;
653d4876 1042
c2fdda0d 1043 # Pre-scan the patch sanitizing the lines.
de7d4f0e 1044 # Pre-scan the patch looking for any __setup documentation.
c2fdda0d 1045 #
de7d4f0e
AW
1046 my @setup_docs = ();
1047 my $setup_docs = 0;
773647a0
AW
1048
1049 sanitise_line_reset();
c2fdda0d
AW
1050 my $line;
1051 foreach my $rawline (@rawlines) {
773647a0
AW
1052 $linenr++;
1053 $line = $rawline;
c2fdda0d 1054
773647a0 1055 if ($rawline=~/^\+\+\+\s+(\S+)/) {
de7d4f0e
AW
1056 $setup_docs = 0;
1057 if ($1 =~ m@Documentation/kernel-parameters.txt$@) {
1058 $setup_docs = 1;
1059 }
773647a0
AW
1060 #next;
1061 }
1062 if ($rawline=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
1063 $realline=$1-1;
1064 if (defined $2) {
1065 $realcnt=$3+1;
1066 } else {
1067 $realcnt=1+1;
1068 }
c45dcabd 1069 $in_comment = 0;
773647a0
AW
1070
1071 # Guestimate if this is a continuing comment. Run
1072 # the context looking for a comment "edge". If this
1073 # edge is a close comment then we must be in a comment
1074 # at context start.
1075 my $edge;
01fa9147
AW
1076 my $cnt = $realcnt;
1077 for (my $ln = $linenr + 1; $cnt > 0; $ln++) {
1078 next if (defined $rawlines[$ln - 1] &&
1079 $rawlines[$ln - 1] =~ /^-/);
1080 $cnt--;
1081 #print "RAW<$rawlines[$ln - 1]>\n";
1082 ($edge) = (defined $rawlines[$ln - 1] &&
1083 $rawlines[$ln - 1] =~ m@(/\*|\*/)@);
773647a0
AW
1084 last if (defined $edge);
1085 }
1086 if (defined $edge && $edge eq '*/') {
1087 $in_comment = 1;
1088 }
1089
1090 # Guestimate if this is a continuing comment. If this
1091 # is the start of a diff block and this line starts
1092 # ' *' then it is very likely a comment.
1093 if (!defined $edge &&
1094 $rawlines[$linenr] =~ m@^.\s* \*(?:\s|$)@)
1095 {
1096 $in_comment = 1;
1097 }
1098
1099 ##print "COMMENT:$in_comment edge<$edge> $rawline\n";
1100 sanitise_line_reset($in_comment);
1101
171ae1a4 1102 } elsif ($realcnt && $rawline =~ /^(?:\+| |$)/) {
773647a0 1103 # Standardise the strings and chars within the input to
171ae1a4 1104 # simplify matching -- only bother with positive lines.
773647a0 1105 $line = sanitise_line($rawline);
de7d4f0e 1106 }
773647a0
AW
1107 push(@lines, $line);
1108
1109 if ($realcnt > 1) {
1110 $realcnt-- if ($line =~ /^(?:\+| |$)/);
1111 } else {
1112 $realcnt = 0;
1113 }
1114
1115 #print "==>$rawline\n";
1116 #print "-->$line\n";
de7d4f0e
AW
1117
1118 if ($setup_docs && $line =~ /^\+/) {
1119 push(@setup_docs, $line);
1120 }
1121 }
1122
6c72ffaa
AW
1123 $prefix = '';
1124
773647a0
AW
1125 $realcnt = 0;
1126 $linenr = 0;
0a920b5b
AW
1127 foreach my $line (@lines) {
1128 $linenr++;
1129
c2fdda0d 1130 my $rawline = $rawlines[$linenr - 1];
6c72ffaa 1131
0a920b5b 1132#extract the line range in the file after the patch is applied
6c72ffaa 1133 if ($line=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
0a920b5b 1134 $is_patch = 1;
4a0df2ef 1135 $first_line = $linenr + 1;
0a920b5b
AW
1136 $realline=$1-1;
1137 if (defined $2) {
1138 $realcnt=$3+1;
1139 } else {
1140 $realcnt=1+1;
1141 }
c2fdda0d 1142 annotate_reset();
13214adf
AW
1143 $prev_values = 'E';
1144
773647a0 1145 %suppress_ifbraces = ();
0a920b5b 1146 next;
0a920b5b 1147
4a0df2ef
AW
1148# track the line number as we move through the hunk, note that
1149# new versions of GNU diff omit the leading space on completely
1150# blank context lines so we need to count that too.
773647a0 1151 } elsif ($line =~ /^( |\+|$)/) {
0a920b5b 1152 $realline++;
d8aaf121 1153 $realcnt-- if ($realcnt != 0);
0a920b5b 1154
4a0df2ef 1155 # Measure the line length and indent.
c2fdda0d 1156 ($length, $indent) = line_stats($rawline);
0a920b5b
AW
1157
1158 # Track the previous line.
1159 ($prevline, $stashline) = ($stashline, $line);
1160 ($previndent, $stashindent) = ($stashindent, $indent);
c2fdda0d
AW
1161 ($prevrawline, $stashrawline) = ($stashrawline, $rawline);
1162
773647a0 1163 #warn "line<$line>\n";
6c72ffaa 1164
d8aaf121
AW
1165 } elsif ($realcnt == 1) {
1166 $realcnt--;
0a920b5b
AW
1167 }
1168
1169#make up the handle for any error we report on this line
773647a0
AW
1170 $prefix = "$filename:$realline: " if ($emacs && $file);
1171 $prefix = "$filename:$linenr: " if ($emacs && !$file);
1172
6c72ffaa
AW
1173 $here = "#$linenr: " if (!$file);
1174 $here = "#$realline: " if ($file);
773647a0
AW
1175
1176 # extract the filename as it passes
1177 if ($line=~/^\+\+\+\s+(\S+)/) {
1178 $realfile = $1;
1179 $realfile =~ s@^[^/]*/@@;
1180
c1ab3326 1181 if ($realfile =~ m@^include/asm/@) {
773647a0
AW
1182 ERROR("do not modify files in include/asm, change architecture specific files in include/asm-<architecture>\n" . "$here$rawline\n");
1183 }
1184 next;
1185 }
1186
389834b6 1187 $here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
0a920b5b 1188
c2fdda0d
AW
1189 my $hereline = "$here\n$rawline\n";
1190 my $herecurr = "$here\n$rawline\n";
1191 my $hereprev = "$here\n$prevrawline\n$rawline\n";
0a920b5b 1192
6c72ffaa
AW
1193 $cnt_lines++ if ($realcnt != 0);
1194
0a920b5b 1195#check the patch for a signoff:
d8aaf121 1196 if ($line =~ /^\s*signed-off-by:/i) {
4a0df2ef
AW
1197 # This is a signoff, if ugly, so do not double report.
1198 $signoff++;
0a920b5b 1199 if (!($line =~ /^\s*Signed-off-by:/)) {
de7d4f0e
AW
1200 WARN("Signed-off-by: is the preferred form\n" .
1201 $herecurr);
0a920b5b
AW
1202 }
1203 if ($line =~ /^\s*signed-off-by:\S/i) {
773647a0 1204 WARN("space required after Signed-off-by:\n" .
de7d4f0e 1205 $herecurr);
0a920b5b
AW
1206 }
1207 }
1208
00df344f 1209# Check for wrappage within a valid hunk of the file
8905a67c 1210 if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) {
de7d4f0e 1211 ERROR("patch seems to be corrupt (line wrapped?)\n" .
6c72ffaa 1212 $herecurr) if (!$emitted_corrupt++);
de7d4f0e
AW
1213 }
1214
6ecd9674
AW
1215# Check for absolute kernel paths.
1216 if ($tree) {
1217 while ($line =~ m{(?:^|\s)(/\S*)}g) {
1218 my $file = $1;
1219
1220 if ($file =~ m{^(.*?)(?::\d+)+:?$} &&
1221 check_absolute_file($1, $herecurr)) {
1222 #
1223 } else {
1224 check_absolute_file($file, $herecurr);
1225 }
1226 }
1227 }
1228
de7d4f0e
AW
1229# UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
1230 if (($realfile =~ /^$/ || $line =~ /^\+/) &&
171ae1a4
AW
1231 $rawline !~ m/^$UTF8*$/) {
1232 my ($utf8_prefix) = ($rawline =~ /^($UTF8*)/);
1233
1234 my $blank = copy_spacing($rawline);
1235 my $ptr = substr($blank, 0, length($utf8_prefix)) . "^";
1236 my $hereptr = "$hereline$ptr\n";
1237
1238 ERROR("Invalid UTF-8, patch and commit message should be encoded in UTF-8\n" . $hereptr);
00df344f
AW
1239 }
1240
1241#ignore lines being removed
1242 if ($line=~/^-/) {next;}
0a920b5b 1243
0a920b5b 1244#trailing whitespace
9c0ca6f9 1245 if ($line =~ /^\+.*\015/) {
c2fdda0d 1246 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
9c0ca6f9
AW
1247 ERROR("DOS line endings\n" . $herevet);
1248
c2fdda0d
AW
1249 } elsif ($rawline =~ /^\+.*\S\s+$/ || $rawline =~ /^\+\s+$/) {
1250 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
de7d4f0e 1251 ERROR("trailing whitespace\n" . $herevet);
0a920b5b 1252 }
5368df20
AW
1253
1254# check we are in a valid source file if not then ignore this hunk
1255 next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/);
1256
0a920b5b 1257#80 column limit
c45dcabd 1258 if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ &&
f4c014c0
AW
1259 $rawline !~ /^.\s*\*\s*\@$Ident\s/ &&
1260 $line !~ /^\+\s*printk\s*\(\s*(?:KERN_\S+\s*)?"[X\t]*"\s*(?:,|\)\s*;)\s*$/ &&
1261 $length > 80)
c45dcabd 1262 {
de7d4f0e 1263 WARN("line over 80 characters\n" . $herecurr);
0a920b5b
AW
1264 }
1265
8905a67c
AW
1266# check for adding lines without a newline.
1267 if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
1268 WARN("adding a line without newline at end of file\n" . $herecurr);
1269 }
1270
b9ea10d6
AW
1271# check we are in a valid source file C or perl if not then ignore this hunk
1272 next if ($realfile !~ /\.(h|c|pl)$/);
0a920b5b
AW
1273
1274# at the beginning of a line any tabs must come first and anything
1275# more than 8 must use tabs.
c2fdda0d
AW
1276 if ($rawline =~ /^\+\s* \t\s*\S/ ||
1277 $rawline =~ /^\+\s* \s*/) {
1278 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
171ae1a4 1279 ERROR("code indent should use tabs where possible\n" . $herevet);
0a920b5b
AW
1280 }
1281
b9ea10d6
AW
1282# check we are in a valid C source file if not then ignore this hunk
1283 next if ($realfile !~ /\.(h|c)$/);
1284
c2fdda0d 1285# check for RCS/CVS revision markers
cf655043 1286 if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) {
c2fdda0d
AW
1287 WARN("CVS style keyword markers, these will _not_ be updated\n". $herecurr);
1288 }
22f2a2ef 1289
9c0ca6f9 1290# Check for potential 'bare' types
f5fe35dd 1291 my ($stat, $cond, $line_nr_next, $remain_next);
9c9ba34e 1292 if ($realcnt && $line =~ /.\s*\S/) {
f5fe35dd
AW
1293 ($stat, $cond, $line_nr_next, $remain_next) =
1294 ctx_statement_block($linenr, $realcnt, 0);
171ae1a4
AW
1295 $stat =~ s/\n./\n /g;
1296 $cond =~ s/\n./\n /g;
1297
1298 my $s = $stat;
1299 $s =~ s/{.*$//s;
cf655043 1300
c2fdda0d 1301 # Ignore goto labels.
171ae1a4 1302 if ($s =~ /$Ident:\*$/s) {
c2fdda0d
AW
1303
1304 # Ignore functions being called
171ae1a4 1305 } elsif ($s =~ /^.\s*$Ident\s*\(/s) {
c2fdda0d 1306
c45dcabd 1307 # declarations always start with types
d2506586 1308 } 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) {
c45dcabd
AW
1309 my $type = $1;
1310 $type =~ s/\s+/ /g;
1311 possible($type, "A:" . $s);
1312
8905a67c 1313 # definitions in global scope can only start with types
171ae1a4 1314 } elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b/s) {
c45dcabd 1315 possible($1, "B:" . $s);
c2fdda0d 1316 }
8905a67c
AW
1317
1318 # any (foo ... *) is a pointer cast, and foo is a type
171ae1a4 1319 while ($s =~ /\(($Ident)(?:\s+$Sparse)*\s*\*+\s*\)/sg) {
c45dcabd 1320 possible($1, "C:" . $s);
8905a67c
AW
1321 }
1322
1323 # Check for any sort of function declaration.
1324 # int foo(something bar, other baz);
1325 # void (*store_gdt)(x86_descr_ptr *);
171ae1a4 1326 if ($prev_values eq 'E' && $s =~ /^(.(?:typedef\s*)?(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*(?:\b$Ident|\(\*\s*$Ident\))\s*)\(/s) {
8905a67c 1327 my ($name_len) = length($1);
8905a67c 1328
cf655043 1329 my $ctx = $s;
773647a0 1330 substr($ctx, 0, $name_len + 1, '');
8905a67c 1331 $ctx =~ s/\)[^\)]*$//;
cf655043 1332
8905a67c 1333 for my $arg (split(/\s*,\s*/, $ctx)) {
c45dcabd 1334 if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$/s) {
8905a67c 1335
c45dcabd 1336 possible($1, "D:" . $s);
8905a67c
AW
1337 }
1338 }
9c0ca6f9 1339 }
8905a67c 1340
9c0ca6f9
AW
1341 }
1342
653d4876
AW
1343#
1344# Checks which may be anchored in the context.
1345#
00df344f 1346
653d4876
AW
1347# Check for switch () and associated case and default
1348# statements should be at the same indent.
00df344f
AW
1349 if ($line=~/\bswitch\s*\(.*\)/) {
1350 my $err = '';
1351 my $sep = '';
1352 my @ctx = ctx_block_outer($linenr, $realcnt);
1353 shift(@ctx);
1354 for my $ctx (@ctx) {
1355 my ($clen, $cindent) = line_stats($ctx);
1356 if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
1357 $indent != $cindent) {
1358 $err .= "$sep$ctx\n";
1359 $sep = '';
1360 } else {
1361 $sep = "[...]\n";
1362 }
1363 }
1364 if ($err ne '') {
9c0ca6f9 1365 ERROR("switch and case should be at the same indent\n$hereline$err");
de7d4f0e
AW
1366 }
1367 }
1368
1369# if/while/etc brace do not go on next line, unless defining a do while loop,
1370# or if that brace on the next line is for something else
c45dcabd 1371 if ($line =~ /(.*)\b((?:if|while|for|switch)\s*\(|do\b|else\b)/ && $line !~ /^.\s*\#/) {
773647a0
AW
1372 my $pre_ctx = "$1$2";
1373
9c0ca6f9 1374 my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0);
de7d4f0e
AW
1375 my $ctx_cnt = $realcnt - $#ctx - 1;
1376 my $ctx = join("\n", @ctx);
1377
548596d5
AW
1378 my $ctx_ln = $linenr;
1379 my $ctx_skip = $realcnt;
773647a0 1380
548596d5
AW
1381 while ($ctx_skip > $ctx_cnt || ($ctx_skip == $ctx_cnt &&
1382 defined $lines[$ctx_ln - 1] &&
1383 $lines[$ctx_ln - 1] =~ /^-/)) {
1384 ##print "SKIP<$ctx_skip> CNT<$ctx_cnt>\n";
1385 $ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/);
de7d4f0e 1386 $ctx_ln++;
de7d4f0e 1387 }
548596d5 1388
53210168
AW
1389 #print "realcnt<$realcnt> ctx_cnt<$ctx_cnt>\n";
1390 #print "pre<$pre_ctx>\nline<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>\n";
de7d4f0e 1391
773647a0
AW
1392 if ($ctx !~ /{\s*/ && defined($lines[$ctx_ln -1]) && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
1393 ERROR("that open brace { should be on the previous line\n" .
c45dcabd 1394 "$here\n$ctx\n$lines[$ctx_ln - 1]\n");
00df344f 1395 }
773647a0
AW
1396 if ($level == 0 && $pre_ctx !~ /}\s*while\s*\($/ &&
1397 $ctx =~ /\)\s*\;\s*$/ &&
1398 defined $lines[$ctx_ln - 1])
1399 {
9c0ca6f9
AW
1400 my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
1401 if ($nindent > $indent) {
773647a0 1402 WARN("trailing semicolon indicates no statements, indent implies otherwise\n" .
c45dcabd 1403 "$here\n$ctx\n$lines[$ctx_ln - 1]\n");
9c0ca6f9
AW
1404 }
1405 }
00df344f
AW
1406 }
1407
4d001e4d
AW
1408# Check relative indent for conditionals and blocks.
1409 if ($line =~ /\b(?:(?:if|while|for)\s*\(|do\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) {
1410 my ($s, $c) = ($stat, $cond);
1411
1412 substr($s, 0, length($c), '');
1413
1414 # Make sure we remove the line prefixes as we have
1415 # none on the first line, and are going to readd them
1416 # where necessary.
1417 $s =~ s/\n./\n/gs;
1418
1419 # Find out how long the conditional actually is.
6f779c18
AW
1420 my @newlines = ($c =~ /\n/gs);
1421 my $cond_lines = 1 + $#newlines;
4d001e4d
AW
1422
1423 # We want to check the first line inside the block
1424 # starting at the end of the conditional, so remove:
1425 # 1) any blank line termination
1426 # 2) any opening brace { on end of the line
1427 # 3) any do (...) {
1428 my $continuation = 0;
1429 my $check = 0;
1430 $s =~ s/^.*\bdo\b//;
1431 $s =~ s/^\s*{//;
1432 if ($s =~ s/^\s*\\//) {
1433 $continuation = 1;
1434 }
9bd49efe 1435 if ($s =~ s/^\s*?\n//) {
4d001e4d
AW
1436 $check = 1;
1437 $cond_lines++;
1438 }
1439
1440 # Also ignore a loop construct at the end of a
1441 # preprocessor statement.
1442 if (($prevline =~ /^.\s*#\s*define\s/ ||
1443 $prevline =~ /\\\s*$/) && $continuation == 0) {
1444 $check = 0;
1445 }
1446
9bd49efe
AW
1447 my $cond_ptr = -1;
1448 while ($cond_ptr != $cond_lines) {
1449 $cond_ptr = $cond_lines;
1450
1451 # Ignore:
1452 # 1) blank lines, they should be at 0,
1453 # 2) preprocessor lines, and
1454 # 3) labels.
1455 if ($s =~ /^\s*?\n/ ||
1456 $s =~ /^\s*#\s*?/ ||
1457 $s =~ /^\s*$Ident\s*:/) {
1458 $s =~ s/^.*?\n//;
1459 $cond_lines++;
1460 }
4d001e4d
AW
1461 }
1462
1463 my (undef, $sindent) = line_stats("+" . $s);
1464 my $stat_real = raw_line($linenr, $cond_lines);
1465
1466 # Check if either of these lines are modified, else
1467 # this is not this patch's fault.
1468 if (!defined($stat_real) ||
1469 $stat !~ /^\+/ && $stat_real !~ /^\+/) {
1470 $check = 0;
1471 }
1472 if (defined($stat_real) && $cond_lines > 1) {
1473 $stat_real = "[...]\n$stat_real";
1474 }
1475
9bd49efe 1476 #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";
4d001e4d
AW
1477
1478 if ($check && (($sindent % 8) != 0 ||
1479 ($sindent <= $indent && $s ne ''))) {
1480 WARN("suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n");
1481 }
1482 }
1483
6c72ffaa
AW
1484 # Track the 'values' across context and added lines.
1485 my $opline = $line; $opline =~ s/^./ /;
1f65f947
AW
1486 my ($curr_values, $curr_vars) =
1487 annotate_values($opline . "\n", $prev_values);
6c72ffaa 1488 $curr_values = $prev_values . $curr_values;
c2fdda0d
AW
1489 if ($dbg_values) {
1490 my $outline = $opline; $outline =~ s/\t/ /g;
cf655043
AW
1491 print "$linenr > .$outline\n";
1492 print "$linenr > $curr_values\n";
1f65f947 1493 print "$linenr > $curr_vars\n";
c2fdda0d 1494 }
6c72ffaa
AW
1495 $prev_values = substr($curr_values, -1);
1496
00df344f
AW
1497#ignore lines not being added
1498 if ($line=~/^[^\+]/) {next;}
1499
653d4876 1500# TEST: allow direct testing of the type matcher.
7429c690
AW
1501 if ($dbg_type) {
1502 if ($line =~ /^.\s*$Declare\s*$/) {
1503 ERROR("TEST: is type\n" . $herecurr);
1504 } elsif ($dbg_type > 1 && $line =~ /^.+($Declare)/) {
1505 ERROR("TEST: is not type ($1 is)\n". $herecurr);
1506 }
653d4876
AW
1507 next;
1508 }
a1ef277e
AW
1509# TEST: allow direct testing of the attribute matcher.
1510 if ($dbg_attr) {
1511 if ($line =~ /^.\s*$Attribute\s*$/) {
1512 ERROR("TEST: is attr\n" . $herecurr);
1513 } elsif ($dbg_attr > 1 && $line =~ /^.+($Attribute)/) {
1514 ERROR("TEST: is not attr ($1 is)\n". $herecurr);
1515 }
1516 next;
1517 }
653d4876 1518
f0a594c1
AW
1519# check for initialisation to aggregates open brace on the next line
1520 if ($prevline =~ /$Declare\s*$Ident\s*=\s*$/ &&
1521 $line =~ /^.\s*{/) {
773647a0 1522 ERROR("that open brace { should be on the previous line\n" . $hereprev);
f0a594c1
AW
1523 }
1524
653d4876
AW
1525#
1526# Checks which are anchored on the added line.
1527#
1528
1529# check for malformed paths in #include statements (uses RAW line)
c45dcabd 1530 if ($rawline =~ m{^.\s*\#\s*include\s+[<"](.*)[">]}) {
653d4876
AW
1531 my $path = $1;
1532 if ($path =~ m{//}) {
de7d4f0e
AW
1533 ERROR("malformed #include filename\n" .
1534 $herecurr);
653d4876 1535 }
653d4876 1536 }
00df344f 1537
0a920b5b 1538# no C99 // comments
00df344f 1539 if ($line =~ m{//}) {
de7d4f0e 1540 ERROR("do not use C99 // comments\n" . $herecurr);
0a920b5b 1541 }
00df344f 1542 # Remove C99 comments.
0a920b5b 1543 $line =~ s@//.*@@;
6c72ffaa 1544 $opline =~ s@//.*@@;
0a920b5b
AW
1545
1546#EXPORT_SYMBOL should immediately follow its function closing }.
653d4876
AW
1547 if (($line =~ /EXPORT_SYMBOL.*\((.*)\)/) ||
1548 ($line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
1549 my $name = $1;
0a920b5b
AW
1550 if (($prevline !~ /^}/) &&
1551 ($prevline !~ /^\+}/) &&
653d4876 1552 ($prevline !~ /^ }/) &&
cf655043
AW
1553 ($prevline !~ /^.DECLARE_$Ident\(\Q$name\E\)/) &&
1554 ($prevline !~ /^.LIST_HEAD\(\Q$name\E\)/) &&
171ae1a4 1555 ($prevline !~ /^.$Type\s*\(\s*\*\s*\Q$name\E\s*\)\s*\(/) &&
cf655043 1556 ($prevline !~ /\b\Q$name\E(?:\s+$Attribute)?\s*(?:;|=|\[)/)) {
de7d4f0e 1557 WARN("EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
0a920b5b
AW
1558 }
1559 }
1560
f0a594c1 1561# check for external initialisers.
c45dcabd 1562 if ($line =~ /^.$Type\s*$Ident\s*(?:\s+$Modifier)*\s*=\s*(0|NULL|false)\s*;/) {
f0a594c1
AW
1563 ERROR("do not initialise externals to 0 or NULL\n" .
1564 $herecurr);
1565 }
653d4876 1566# check for static initialisers.
9c9ba34e 1567 if ($line =~ /\s*static\s.*=\s*(0|NULL|false)\s*;/) {
de7d4f0e
AW
1568 ERROR("do not initialise statics to 0 or NULL\n" .
1569 $herecurr);
0a920b5b
AW
1570 }
1571
653d4876
AW
1572# check for new typedefs, only function parameters and sparse annotations
1573# make sense.
1574 if ($line =~ /\btypedef\s/ &&
9c0ca6f9 1575 $line !~ /\btypedef\s+$Type\s+\(\s*\*?$Ident\s*\)\s*\(/ &&
c45dcabd 1576 $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ &&
653d4876 1577 $line !~ /\b__bitwise(?:__|)\b/) {
de7d4f0e 1578 WARN("do not add new typedefs\n" . $herecurr);
0a920b5b
AW
1579 }
1580
1581# * goes on variable not on type
d8aaf121 1582 if ($line =~ m{\($NonptrType(\*+)(?:\s+const)?\)}) {
de7d4f0e
AW
1583 ERROR("\"(foo$1)\" should be \"(foo $1)\"\n" .
1584 $herecurr);
d8aaf121
AW
1585
1586 } elsif ($line =~ m{\($NonptrType\s+(\*+)(?!\s+const)\s+\)}) {
de7d4f0e
AW
1587 ERROR("\"(foo $1 )\" should be \"(foo $1)\"\n" .
1588 $herecurr);
d8aaf121 1589
234fff65 1590 } elsif ($line =~ m{\b$NonptrType(\*+)(?:\s+(?:$Attribute|$Sparse))?\s+[A-Za-z\d_]+}) {
de7d4f0e
AW
1591 ERROR("\"foo$1 bar\" should be \"foo $1bar\"\n" .
1592 $herecurr);
d8aaf121 1593
234fff65 1594 } elsif ($line =~ m{\b$NonptrType\s+(\*+)(?!\s+(?:$Attribute|$Sparse))\s+[A-Za-z\d_]+}) {
de7d4f0e
AW
1595 ERROR("\"foo $1 bar\" should be \"foo $1bar\"\n" .
1596 $herecurr);
0a920b5b
AW
1597 }
1598
1599# # no BUG() or BUG_ON()
1600# if ($line =~ /\b(BUG|BUG_ON)\b/) {
1601# print "Try to use WARN_ON & Recovery code rather than BUG() or BUG_ON()\n";
1602# print "$herecurr";
1603# $clean = 0;
1604# }
1605
8905a67c 1606 if ($line =~ /\bLINUX_VERSION_CODE\b/) {
c2fdda0d 1607 WARN("LINUX_VERSION_CODE should be avoided, code should be for the version to which it is merged\n" . $herecurr);
8905a67c
AW
1608 }
1609
00df344f
AW
1610# printk should use KERN_* levels. Note that follow on printk's on the
1611# same line do not need a level, so we use the current block context
1612# to try and find and validate the current printk. In summary the current
1613# printk includes all preceeding printk's which have no newline on the end.
1614# we assume the first bad printk is the one to report.
f0a594c1 1615 if ($line =~ /\bprintk\((?!KERN_)\s*"/) {
00df344f
AW
1616 my $ok = 0;
1617 for (my $ln = $linenr - 1; $ln >= $first_line; $ln--) {
1618 #print "CHECK<$lines[$ln - 1]\n";
1619 # we have a preceeding printk if it ends
1620 # with "\n" ignore it, else it is to blame
1621 if ($lines[$ln - 1] =~ m{\bprintk\(}) {
1622 if ($rawlines[$ln - 1] !~ m{\\n"}) {
1623 $ok = 1;
1624 }
1625 last;
1626 }
1627 }
1628 if ($ok == 0) {
de7d4f0e 1629 WARN("printk() should include KERN_ facility level\n" . $herecurr);
00df344f 1630 }
0a920b5b
AW
1631 }
1632
653d4876
AW
1633# function brace can't be on same line, except for #defines of do while,
1634# or if closed on same line
c45dcabd
AW
1635 if (($line=~/$Type\s*$Ident\(.*\).*\s{/) and
1636 !($line=~/\#\s*define.*do\s{/) and !($line=~/}/)) {
de7d4f0e 1637 ERROR("open brace '{' following function declarations go on the next line\n" . $herecurr);
0a920b5b 1638 }
653d4876 1639
8905a67c
AW
1640# open braces for enum, union and struct go on the same line.
1641 if ($line =~ /^.\s*{/ &&
1642 $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
1643 ERROR("open brace '{' following $1 go on the same line\n" . $hereprev);
1644 }
1645
8d31cfce
AW
1646# check for spacing round square brackets; allowed:
1647# 1. with a type on the left -- int [] a;
fe2a7dbc
AW
1648# 2. at the beginning of a line for slice initialisers -- [0...10] = 5,
1649# 3. inside a curly brace -- = { [0...10] = 5 }
8d31cfce
AW
1650 while ($line =~ /(.*?\s)\[/g) {
1651 my ($where, $prefix) = ($-[1], $1);
1652 if ($prefix !~ /$Type\s+$/ &&
fe2a7dbc
AW
1653 ($where != 0 || $prefix !~ /^.\s+$/) &&
1654 $prefix !~ /{\s+$/) {
8d31cfce
AW
1655 ERROR("space prohibited before open square bracket '['\n" . $herecurr);
1656 }
1657 }
1658
f0a594c1 1659# check for spaces between functions and their parentheses.
6c72ffaa 1660 while ($line =~ /($Ident)\s+\(/g) {
c2fdda0d 1661 my $name = $1;
773647a0
AW
1662 my $ctx_before = substr($line, 0, $-[1]);
1663 my $ctx = "$ctx_before$name";
c2fdda0d
AW
1664
1665 # Ignore those directives where spaces _are_ permitted.
773647a0
AW
1666 if ($name =~ /^(?:
1667 if|for|while|switch|return|case|
1668 volatile|__volatile__|
1669 __attribute__|format|__extension__|
1670 asm|__asm__)$/x)
1671 {
c2fdda0d
AW
1672
1673 # cpp #define statements have non-optional spaces, ie
1674 # if there is a space between the name and the open
1675 # parenthesis it is simply not a parameter group.
c45dcabd 1676 } elsif ($ctx_before =~ /^.\s*\#\s*define\s*$/) {
773647a0
AW
1677
1678 # cpp #elif statement condition may start with a (
c45dcabd 1679 } elsif ($ctx =~ /^.\s*\#\s*elif\s*$/) {
c2fdda0d
AW
1680
1681 # If this whole things ends with a type its most
1682 # likely a typedef for a function.
773647a0 1683 } elsif ($ctx =~ /$Type$/) {
c2fdda0d
AW
1684
1685 } else {
773647a0 1686 WARN("space prohibited between function name and open parenthesis '('\n" . $herecurr);
6c72ffaa 1687 }
f0a594c1 1688 }
653d4876 1689# Check operator spacing.
0a920b5b 1690 if (!($line=~/\#\s*include/)) {
9c0ca6f9
AW
1691 my $ops = qr{
1692 <<=|>>=|<=|>=|==|!=|
1693 \+=|-=|\*=|\/=|%=|\^=|\|=|&=|
1694 =>|->|<<|>>|<|>|=|!|~|
1f65f947
AW
1695 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%|
1696 \?|:
9c0ca6f9 1697 }x;
cf655043 1698 my @elements = split(/($ops|;)/, $opline);
00df344f 1699 my $off = 0;
6c72ffaa
AW
1700
1701 my $blank = copy_spacing($opline);
1702
0a920b5b 1703 for (my $n = 0; $n < $#elements; $n += 2) {
4a0df2ef
AW
1704 $off += length($elements[$n]);
1705
773647a0
AW
1706 # Pick up the preceeding and succeeding characters.
1707 my $ca = substr($opline, 0, $off);
1708 my $cc = '';
1709 if (length($opline) >= ($off + length($elements[$n + 1]))) {
1710 $cc = substr($opline, $off + length($elements[$n + 1]));
1711 }
1712 my $cb = "$ca$;$cc";
1713
4a0df2ef
AW
1714 my $a = '';
1715 $a = 'V' if ($elements[$n] ne '');
1716 $a = 'W' if ($elements[$n] =~ /\s$/);
cf655043 1717 $a = 'C' if ($elements[$n] =~ /$;$/);
4a0df2ef
AW
1718 $a = 'B' if ($elements[$n] =~ /(\[|\()$/);
1719 $a = 'O' if ($elements[$n] eq '');
773647a0 1720 $a = 'E' if ($ca =~ /^\s*$/);
4a0df2ef 1721
0a920b5b 1722 my $op = $elements[$n + 1];
4a0df2ef
AW
1723
1724 my $c = '';
0a920b5b 1725 if (defined $elements[$n + 2]) {
4a0df2ef
AW
1726 $c = 'V' if ($elements[$n + 2] ne '');
1727 $c = 'W' if ($elements[$n + 2] =~ /^\s/);
cf655043 1728 $c = 'C' if ($elements[$n + 2] =~ /^$;/);
4a0df2ef
AW
1729 $c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
1730 $c = 'O' if ($elements[$n + 2] eq '');
22f2a2ef 1731 $c = 'E' if ($elements[$n + 2] =~ /\s*\\$/);
4a0df2ef
AW
1732 } else {
1733 $c = 'E';
0a920b5b
AW
1734 }
1735
4a0df2ef
AW
1736 my $ctx = "${a}x${c}";
1737
1738 my $at = "(ctx:$ctx)";
1739
6c72ffaa 1740 my $ptr = substr($blank, 0, $off) . "^";
de7d4f0e 1741 my $hereptr = "$hereline$ptr\n";
0a920b5b 1742
74048ed8 1743 # Pull out the value of this operator.
6c72ffaa 1744 my $op_type = substr($curr_values, $off + 1, 1);
0a920b5b 1745
1f65f947
AW
1746 # Get the full operator variant.
1747 my $opv = $op . substr($curr_vars, $off, 1);
1748
13214adf
AW
1749 # Ignore operators passed as parameters.
1750 if ($op_type ne 'V' &&
1751 $ca =~ /\s$/ && $cc =~ /^\s*,/) {
1752
cf655043
AW
1753# # Ignore comments
1754# } elsif ($op =~ /^$;+$/) {
13214adf 1755
d8aaf121 1756 # ; should have either the end of line or a space or \ after it
13214adf 1757 } elsif ($op eq ';') {
cf655043
AW
1758 if ($ctx !~ /.x[WEBC]/ &&
1759 $cc !~ /^\\/ && $cc !~ /^;/) {
773647a0 1760 ERROR("space required after that '$op' $at\n" . $hereptr);
d8aaf121
AW
1761 }
1762
1763 # // is a comment
1764 } elsif ($op eq '//') {
0a920b5b 1765
1f65f947
AW
1766 # No spaces for:
1767 # ->
1768 # : when part of a bitfield
1769 } elsif ($op eq '->' || $opv eq ':B') {
4a0df2ef 1770 if ($ctx =~ /Wx.|.xW/) {
773647a0 1771 ERROR("spaces prohibited around that '$op' $at\n" . $hereptr);
0a920b5b
AW
1772 }
1773
1774 # , must have a space on the right.
1775 } elsif ($op eq ',') {
cf655043 1776 if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) {
773647a0 1777 ERROR("space required after that '$op' $at\n" . $hereptr);
0a920b5b
AW
1778 }
1779
9c0ca6f9 1780 # '*' as part of a type definition -- reported already.
74048ed8 1781 } elsif ($opv eq '*_') {
9c0ca6f9
AW
1782 #warn "'*' is part of type\n";
1783
1784 # unary operators should have a space before and
1785 # none after. May be left adjacent to another
1786 # unary operator, or a cast
1787 } elsif ($op eq '!' || $op eq '~' ||
74048ed8 1788 $opv eq '*U' || $opv eq '-U' ||
0d413866 1789 $opv eq '&U' || $opv eq '&&U') {
cf655043 1790 if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
773647a0 1791 ERROR("space required before that '$op' $at\n" . $hereptr);
0a920b5b 1792 }
74048ed8 1793 if ($op eq '*' && $cc =~/\s*const\b/) {
171ae1a4
AW
1794 # A unary '*' may be const
1795
1796 } elsif ($ctx =~ /.xW/) {
773647a0 1797 ERROR("space prohibited after that '$op' $at\n" . $hereptr);
0a920b5b
AW
1798 }
1799
1800 # unary ++ and unary -- are allowed no space on one side.
1801 } elsif ($op eq '++' or $op eq '--') {
773647a0
AW
1802 if ($ctx !~ /[WEOBC]x[^W]/ && $ctx !~ /[^W]x[WOBEC]/) {
1803 ERROR("space required one side of that '$op' $at\n" . $hereptr);
1804 }
1805 if ($ctx =~ /Wx[BE]/ ||
1806 ($ctx =~ /Wx./ && $cc =~ /^;/)) {
1807 ERROR("space prohibited before that '$op' $at\n" . $hereptr);
0a920b5b 1808 }
773647a0
AW
1809 if ($ctx =~ /ExW/) {
1810 ERROR("space prohibited after that '$op' $at\n" . $hereptr);
653d4876 1811 }
0a920b5b 1812
773647a0 1813
0a920b5b 1814 # << and >> may either have or not have spaces both sides
9c0ca6f9
AW
1815 } elsif ($op eq '<<' or $op eq '>>' or
1816 $op eq '&' or $op eq '^' or $op eq '|' or
1817 $op eq '+' or $op eq '-' or
c2fdda0d
AW
1818 $op eq '*' or $op eq '/' or
1819 $op eq '%')
0a920b5b 1820 {
773647a0 1821 if ($ctx =~ /Wx[^WCE]|[^WCE]xW/) {
de7d4f0e
AW
1822 ERROR("need consistent spacing around '$op' $at\n" .
1823 $hereptr);
0a920b5b
AW
1824 }
1825
1f65f947
AW
1826 # A colon needs no spaces before when it is
1827 # terminating a case value or a label.
1828 } elsif ($opv eq ':C' || $opv eq ':L') {
1829 if ($ctx =~ /Wx./) {
1830 ERROR("space prohibited before that '$op' $at\n" . $hereptr);
1831 }
1832
0a920b5b 1833 # All the others need spaces both sides.
cf655043 1834 } elsif ($ctx !~ /[EWC]x[CWE]/) {
1f65f947
AW
1835 my $ok = 0;
1836
22f2a2ef 1837 # Ignore email addresses <foo@bar>
1f65f947
AW
1838 if (($op eq '<' &&
1839 $cc =~ /^\S+\@\S+>/) ||
1840 ($op eq '>' &&
1841 $ca =~ /<\S+\@\S+$/))
1842 {
1843 $ok = 1;
1844 }
1845
1846 # Ignore ?:
1847 if (($opv eq ':O' && $ca =~ /\?$/) ||
1848 ($op eq '?' && $cc =~ /^:/)) {
1849 $ok = 1;
1850 }
1851
1852 if ($ok == 0) {
773647a0 1853 ERROR("spaces required around that '$op' $at\n" . $hereptr);
22f2a2ef 1854 }
0a920b5b 1855 }
4a0df2ef 1856 $off += length($elements[$n + 1]);
0a920b5b
AW
1857 }
1858 }
1859
f0a594c1
AW
1860# check for multiple assignments
1861 if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
6c72ffaa 1862 CHK("multiple assignments should be avoided\n" . $herecurr);
f0a594c1
AW
1863 }
1864
22f2a2ef
AW
1865## # check for multiple declarations, allowing for a function declaration
1866## # continuation.
1867## if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
1868## $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
1869##
1870## # Remove any bracketed sections to ensure we do not
1871## # falsly report the parameters of functions.
1872## my $ln = $line;
1873## while ($ln =~ s/\([^\(\)]*\)//g) {
1874## }
1875## if ($ln =~ /,/) {
1876## WARN("declaring multiple variables together should be avoided\n" . $herecurr);
1877## }
1878## }
f0a594c1 1879
0a920b5b 1880#need space before brace following if, while, etc
22f2a2ef
AW
1881 if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) ||
1882 $line =~ /do{/) {
773647a0 1883 ERROR("space required before the open brace '{'\n" . $herecurr);
de7d4f0e
AW
1884 }
1885
1886# closing brace should have a space following it when it has anything
1887# on the line
1888 if ($line =~ /}(?!(?:,|;|\)))\S/) {
773647a0 1889 ERROR("space required after that close brace '}'\n" . $herecurr);
0a920b5b
AW
1890 }
1891
22f2a2ef
AW
1892# check spacing on square brackets
1893 if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
773647a0 1894 ERROR("space prohibited after that open square bracket '['\n" . $herecurr);
22f2a2ef
AW
1895 }
1896 if ($line =~ /\s\]/) {
773647a0 1897 ERROR("space prohibited before that close square bracket ']'\n" . $herecurr);
22f2a2ef
AW
1898 }
1899
c45dcabd 1900# check spacing on parentheses
9c0ca6f9
AW
1901 if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
1902 $line !~ /for\s*\(\s+;/) {
773647a0 1903 ERROR("space prohibited after that open parenthesis '('\n" . $herecurr);
22f2a2ef 1904 }
13214adf 1905 if ($line =~ /(\s+)\)/ && $line !~ /^.\s*\)/ &&
c45dcabd
AW
1906 $line !~ /for\s*\(.*;\s+\)/ &&
1907 $line !~ /:\s+\)/) {
773647a0 1908 ERROR("space prohibited before that close parenthesis ')'\n" . $herecurr);
22f2a2ef
AW
1909 }
1910
0a920b5b 1911#goto labels aren't indented, allow a single space however
4a0df2ef 1912 if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
0a920b5b 1913 !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
de7d4f0e 1914 WARN("labels should not be indented\n" . $herecurr);
0a920b5b
AW
1915 }
1916
c45dcabd
AW
1917# Return is not a function.
1918 if (defined($stat) && $stat =~ /^.\s*return(\s*)(\(.*);/s) {
1919 my $spacing = $1;
1920 my $value = $2;
1921
1922 # Flatten any parentheses and braces
fee61c47 1923 $value =~ s/\)\(/\) \(/g;
c45dcabd
AW
1924 while ($value =~ s/\([^\(\)]*\)/1/) {
1925 }
1926
1927 if ($value =~ /^(?:$Ident|-?$Constant)$/) {
1928 ERROR("return is not a function, parentheses are not required\n" . $herecurr);
1929
1930 } elsif ($spacing !~ /\s+/) {
1931 ERROR("space required before the open parenthesis '('\n" . $herecurr);
1932 }
1933 }
1934
0a920b5b 1935# Need a space before open parenthesis after if, while etc
4a0df2ef 1936 if ($line=~/\b(if|while|for|switch)\(/) {
773647a0 1937 ERROR("space required before the open parenthesis '('\n" . $herecurr);
0a920b5b
AW
1938 }
1939
f5fe35dd
AW
1940# Check for illegal assignment in if conditional -- and check for trailing
1941# statements after the conditional.
53210168 1942 if ($line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) {
171ae1a4 1943 my ($s, $c) = ($stat, $cond);
8905a67c
AW
1944
1945 if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/) {
c2fdda0d 1946 ERROR("do not use assignment in if condition\n" . $herecurr);
8905a67c
AW
1947 }
1948
1949 # Find out what is on the end of the line after the
1950 # conditional.
773647a0 1951 substr($s, 0, length($c), '');
8905a67c 1952 $s =~ s/\n.*//g;
13214adf 1953 $s =~ s/$;//g; # Remove any comments
53210168
AW
1954 if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ &&
1955 $c !~ /}\s*while\s*/)
773647a0 1956 {
8905a67c
AW
1957 ERROR("trailing statements should be on next line\n" . $herecurr);
1958 }
1959 }
1960
13214adf
AW
1961# Check for bitwise tests written as boolean
1962 if ($line =~ /
1963 (?:
1964 (?:\[|\(|\&\&|\|\|)
1965 \s*0[xX][0-9]+\s*
1966 (?:\&\&|\|\|)
1967 |
1968 (?:\&\&|\|\|)
1969 \s*0[xX][0-9]+\s*
1970 (?:\&\&|\|\||\)|\])
1971 )/x)
1972 {
1973 WARN("boolean test with hexadecimal, perhaps just 1 \& or \|?\n" . $herecurr);
1974 }
1975
8905a67c 1976# if and else should not have general statements after it
13214adf
AW
1977 if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/) {
1978 my $s = $1;
1979 $s =~ s/$;//g; # Remove any comments
1980 if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) {
1981 ERROR("trailing statements should be on next line\n" . $herecurr);
1982 }
0a920b5b 1983 }
a1080bf8
AW
1984# case and default should not have general statements after them
1985 if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
1986 $line !~ /\G(?:
1987 (?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$|
1988 \s*return\s+
1989 )/xg)
1990 {
1991 ERROR("trailing statements should be on next line\n" . $herecurr);
1992 }
0a920b5b
AW
1993
1994 # Check for }<nl>else {, these must be at the same
1995 # indent level to be relevant to each other.
1996 if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ and
1997 $previndent == $indent) {
de7d4f0e 1998 ERROR("else should follow close brace '}'\n" . $hereprev);
0a920b5b
AW
1999 }
2000
c2fdda0d
AW
2001 if ($prevline=~/}\s*$/ and $line=~/^.\s*while\s*/ and
2002 $previndent == $indent) {
2003 my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0);
2004
2005 # Find out what is on the end of the line after the
2006 # conditional.
773647a0 2007 substr($s, 0, length($c), '');
c2fdda0d
AW
2008 $s =~ s/\n.*//g;
2009
2010 if ($s =~ /^\s*;/) {
2011 ERROR("while should follow close brace '}'\n" . $hereprev);
2012 }
2013 }
2014
0a920b5b
AW
2015#studly caps, commented out until figure out how to distinguish between use of existing and adding new
2016# if (($line=~/[\w_][a-z\d]+[A-Z]/) and !($line=~/print/)) {
2017# print "No studly caps, use _\n";
2018# print "$herecurr";
2019# $clean = 0;
2020# }
2021
2022#no spaces allowed after \ in define
c45dcabd 2023 if ($line=~/\#\s*define.*\\\s$/) {
de7d4f0e 2024 WARN("Whitepspace after \\ makes next lines useless\n" . $herecurr);
0a920b5b
AW
2025 }
2026
653d4876 2027#warn if <asm/foo.h> is #included and <linux/foo.h> is available (uses RAW line)
c45dcabd 2028 if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) {
e09dec48
AW
2029 my $file = "$1.h";
2030 my $checkfile = "include/linux/$file";
2031 if (-f "$root/$checkfile" &&
2032 $realfile ne $checkfile &&
c45dcabd
AW
2033 $1 ne 'irq')
2034 {
e09dec48
AW
2035 if ($realfile =~ m{^arch/}) {
2036 CHK("Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
2037 } else {
2038 WARN("Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
2039 }
0a920b5b
AW
2040 }
2041 }
2042
653d4876
AW
2043# multi-statement macros should be enclosed in a do while loop, grab the
2044# first statement and ensure its the whole macro if its not enclosed
cf655043 2045# in a known good container
b8f96a31
AW
2046 if ($realfile !~ m@/vmlinux.lds.h$@ &&
2047 $line =~ /^.\s*\#\s*define\s*$Ident(\()?/) {
d8aaf121
AW
2048 my $ln = $linenr;
2049 my $cnt = $realcnt;
c45dcabd
AW
2050 my ($off, $dstat, $dcond, $rest);
2051 my $ctx = '';
653d4876 2052
c45dcabd
AW
2053 my $args = defined($1);
2054
2055 # Find the end of the macro and limit our statement
2056 # search to that.
2057 while ($cnt > 0 && defined $lines[$ln - 1] &&
2058 $lines[$ln - 1] =~ /^(?:-|..*\\$)/)
2059 {
2060 $ctx .= $rawlines[$ln - 1] . "\n";
a3bb97a7 2061 $cnt-- if ($lines[$ln - 1] !~ /^-/);
c45dcabd 2062 $ln++;
c45dcabd
AW
2063 }
2064 $ctx .= $rawlines[$ln - 1];
2065
2066 ($dstat, $dcond, $ln, $cnt, $off) =
2067 ctx_statement_block($linenr, $ln - $linenr + 1, 0);
2068 #print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n";
a3bb97a7 2069 #print "LINE<$lines[$ln-1]> len<" . length($lines[$ln-1]) . "\n";
c45dcabd
AW
2070
2071 # Extract the remainder of the define (if any) and
2072 # rip off surrounding spaces, and trailing \'s.
2073 $rest = '';
636d140a
AW
2074 while ($off != 0 || ($cnt > 0 && $rest =~ /\\\s*$/)) {
2075 #print "ADDING cnt<$cnt> $off <" . substr($lines[$ln - 1], $off) . "> rest<$rest>\n";
a3bb97a7
AW
2076 if ($off != 0 || $lines[$ln - 1] !~ /^-/) {
2077 $rest .= substr($lines[$ln - 1], $off) . "\n";
2078 $cnt--;
2079 }
c45dcabd 2080 $ln++;
c45dcabd
AW
2081 $off = 0;
2082 }
2083 $rest =~ s/\\\n.//g;
2084 $rest =~ s/^\s*//s;
2085 $rest =~ s/\s*$//s;
2086
2087 # Clean up the original statement.
2088 if ($args) {
2089 substr($dstat, 0, length($dcond), '');
2090 } else {
2091 $dstat =~ s/^.\s*\#\s*define\s+$Ident\s*//;
d8aaf121 2092 }
292f1a9b 2093 $dstat =~ s/$;//g;
c45dcabd
AW
2094 $dstat =~ s/\\\n.//g;
2095 $dstat =~ s/^\s*//s;
2096 $dstat =~ s/\s*$//s;
de7d4f0e 2097
c45dcabd
AW
2098 # Flatten any parentheses and braces
2099 while ($dstat =~ s/\([^\(\)]*\)/1/) {
2100 }
2101 while ($dstat =~ s/\{[^\{\}]*\}/1/) {
de7d4f0e 2102 }
d8aaf121 2103
c45dcabd
AW
2104 my $exceptions = qr{
2105 $Declare|
2106 module_param_named|
2107 MODULE_PARAM_DESC|
2108 DECLARE_PER_CPU|
2109 DEFINE_PER_CPU|
2110 __typeof__\(
2111 }x;
a3bb97a7 2112 #print "REST<$rest>\n";
c45dcabd
AW
2113 if ($rest ne '') {
2114 if ($rest !~ /while\s*\(/ &&
2115 $dstat !~ /$exceptions/)
2116 {
de7d4f0e 2117 ERROR("Macros with multiple statements should be enclosed in a do - while loop\n" . "$here\n$ctx\n");
c45dcabd
AW
2118 }
2119
2120 } elsif ($ctx !~ /;/) {
2121 if ($dstat ne '' &&
2122 $dstat !~ /^(?:$Ident|-?$Constant)$/ &&
2123 $dstat !~ /$exceptions/ &&
2124 $dstat =~ /$Operators/)
2125 {
de7d4f0e 2126 ERROR("Macros with complex values should be enclosed in parenthesis\n" . "$here\n$ctx\n");
d8aaf121 2127 }
653d4876 2128 }
0a920b5b
AW
2129 }
2130
f0a594c1 2131# check for redundant bracing round if etc
13214adf
AW
2132 if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) {
2133 my ($level, $endln, @chunks) =
cf655043 2134 ctx_statement_full($linenr, $realcnt, 1);
13214adf 2135 #print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n";
cf655043
AW
2136 #print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n";
2137 if ($#chunks > 0 && $level == 0) {
13214adf
AW
2138 my $allowed = 0;
2139 my $seen = 0;
773647a0 2140 my $herectx = $here . "\n";
cf655043 2141 my $ln = $linenr - 1;
13214adf
AW
2142 for my $chunk (@chunks) {
2143 my ($cond, $block) = @{$chunk};
2144
773647a0
AW
2145 # If the condition carries leading newlines, then count those as offsets.
2146 my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s);
2147 my $offset = statement_rawlines($whitespace) - 1;
2148
2149 #print "COND<$cond> whitespace<$whitespace> offset<$offset>\n";
2150
2151 # We have looked at and allowed this specific line.
2152 $suppress_ifbraces{$ln + $offset} = 1;
2153
2154 $herectx .= "$rawlines[$ln + $offset]\n[...]\n";
cf655043
AW
2155 $ln += statement_rawlines($block) - 1;
2156
773647a0 2157 substr($block, 0, length($cond), '');
13214adf
AW
2158
2159 $seen++ if ($block =~ /^\s*{/);
2160
cf655043
AW
2161 #print "cond<$cond> block<$block> allowed<$allowed>\n";
2162 if (statement_lines($cond) > 1) {
2163 #print "APW: ALLOWED: cond<$cond>\n";
13214adf
AW
2164 $allowed = 1;
2165 }
2166 if ($block =~/\b(?:if|for|while)\b/) {
cf655043 2167 #print "APW: ALLOWED: block<$block>\n";
13214adf
AW
2168 $allowed = 1;
2169 }
cf655043
AW
2170 if (statement_block_size($block) > 1) {
2171 #print "APW: ALLOWED: lines block<$block>\n";
13214adf
AW
2172 $allowed = 1;
2173 }
2174 }
2175 if ($seen && !$allowed) {
cf655043 2176 WARN("braces {} are not necessary for any arm of this statement\n" . $herectx);
13214adf
AW
2177 }
2178 }
2179 }
773647a0 2180 if (!defined $suppress_ifbraces{$linenr - 1} &&
13214adf 2181 $line =~ /\b(if|while|for|else)\b/) {
cf655043
AW
2182 my $allowed = 0;
2183
2184 # Check the pre-context.
2185 if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) {
2186 #print "APW: ALLOWED: pre<$1>\n";
2187 $allowed = 1;
2188 }
773647a0
AW
2189
2190 my ($level, $endln, @chunks) =
2191 ctx_statement_full($linenr, $realcnt, $-[0]);
2192
cf655043
AW
2193 # Check the condition.
2194 my ($cond, $block) = @{$chunks[0]};
773647a0 2195 #print "CHECKING<$linenr> cond<$cond> block<$block>\n";
cf655043 2196 if (defined $cond) {
773647a0 2197 substr($block, 0, length($cond), '');
cf655043
AW
2198 }
2199 if (statement_lines($cond) > 1) {
2200 #print "APW: ALLOWED: cond<$cond>\n";
2201 $allowed = 1;
2202 }
2203 if ($block =~/\b(?:if|for|while)\b/) {
2204 #print "APW: ALLOWED: block<$block>\n";
2205 $allowed = 1;
2206 }
2207 if (statement_block_size($block) > 1) {
2208 #print "APW: ALLOWED: lines block<$block>\n";
2209 $allowed = 1;
2210 }
2211 # Check the post-context.
2212 if (defined $chunks[1]) {
2213 my ($cond, $block) = @{$chunks[1]};
2214 if (defined $cond) {
773647a0 2215 substr($block, 0, length($cond), '');
cf655043
AW
2216 }
2217 if ($block =~ /^\s*\{/) {
2218 #print "APW: ALLOWED: chunk-1 block<$block>\n";
2219 $allowed = 1;
2220 }
2221 }
2222 if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
2223 my $herectx = $here . "\n";;
f055663c 2224 my $cnt = statement_rawlines($block);
cf655043 2225
f055663c
AW
2226 for (my $n = 0; $n < $cnt; $n++) {
2227 $herectx .= raw_line($linenr, $n) . "\n";;
f0a594c1 2228 }
cf655043
AW
2229
2230 WARN("braces {} are not necessary for single statement blocks\n" . $herectx);
f0a594c1
AW
2231 }
2232 }
2233
653d4876 2234# don't include deprecated include files (uses RAW line)
4a0df2ef 2235 for my $inc (@dep_includes) {
c45dcabd 2236 if ($rawline =~ m@^.\s*\#\s*include\s*\<$inc>@) {
de7d4f0e 2237 ERROR("Don't use <$inc>: see Documentation/feature-removal-schedule.txt\n" . $herecurr);
0a920b5b
AW
2238 }
2239 }
2240
4a0df2ef
AW
2241# don't use deprecated functions
2242 for my $func (@dep_functions) {
00df344f 2243 if ($line =~ /\b$func\b/) {
de7d4f0e 2244 ERROR("Don't use $func(): see Documentation/feature-removal-schedule.txt\n" . $herecurr);
4a0df2ef
AW
2245 }
2246 }
2247
2248# no volatiles please
6c72ffaa
AW
2249 my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
2250 if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
de7d4f0e 2251 WARN("Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt\n" . $herecurr);
4a0df2ef
AW
2252 }
2253
9c0ca6f9
AW
2254# SPIN_LOCK_UNLOCKED & RW_LOCK_UNLOCKED are deprecated
2255 if ($line =~ /\b(SPIN_LOCK_UNLOCKED|RW_LOCK_UNLOCKED)/) {
2256 ERROR("Use of $1 is deprecated: see Documentation/spinlocks.txt\n" . $herecurr);
2257 }
2258
00df344f 2259# warn about #if 0
c45dcabd 2260 if ($line =~ /^.\s*\#\s*if\s+0\b/) {
de7d4f0e
AW
2261 CHK("if this code is redundant consider removing it\n" .
2262 $herecurr);
4a0df2ef
AW
2263 }
2264
f0a594c1
AW
2265# check for needless kfree() checks
2266 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
2267 my $expr = $1;
2268 if ($line =~ /\bkfree\(\Q$expr\E\);/) {
3c232147 2269 WARN("kfree(NULL) is safe this check is probably not required\n" . $hereprev);
f0a594c1
AW
2270 }
2271 }
4c432a8f
GKH
2272# check for needless usb_free_urb() checks
2273 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
2274 my $expr = $1;
2275 if ($line =~ /\busb_free_urb\(\Q$expr\E\);/) {
2276 WARN("usb_free_urb(NULL) is safe this check is probably not required\n" . $hereprev);
2277 }
2278 }
f0a594c1 2279
00df344f 2280# warn about #ifdefs in C files
c45dcabd 2281# if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
00df344f
AW
2282# print "#ifdef in C files should be avoided\n";
2283# print "$herecurr";
2284# $clean = 0;
2285# }
2286
22f2a2ef 2287# warn about spacing in #ifdefs
c45dcabd 2288 if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) {
22f2a2ef
AW
2289 ERROR("exactly one space required after that #$1\n" . $herecurr);
2290 }
2291
4a0df2ef 2292# check for spinlock_t definitions without a comment.
171ae1a4
AW
2293 if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ ||
2294 $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) {
4a0df2ef
AW
2295 my $which = $1;
2296 if (!ctx_has_comment($first_line, $linenr)) {
de7d4f0e 2297 CHK("$1 definition without comment\n" . $herecurr);
4a0df2ef
AW
2298 }
2299 }
2300# check for memory barriers without a comment.
2301 if ($line =~ /\b(mb|rmb|wmb|read_barrier_depends|smp_mb|smp_rmb|smp_wmb|smp_read_barrier_depends)\(/) {
2302 if (!ctx_has_comment($first_line, $linenr)) {
de7d4f0e 2303 CHK("memory barrier without comment\n" . $herecurr);
4a0df2ef
AW
2304 }
2305 }
2306# check of hardware specific defines
c45dcabd 2307 if ($line =~ m@^.\s*\#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
de7d4f0e 2308 CHK("architecture specific defines should be avoided\n" . $herecurr);
0a920b5b 2309 }
653d4876 2310
de7d4f0e
AW
2311# check the location of the inline attribute, that it is between
2312# storage class and type.
9c0ca6f9
AW
2313 if ($line =~ /\b$Type\s+$Inline\b/ ||
2314 $line =~ /\b$Inline\s+$Storage\b/) {
de7d4f0e
AW
2315 ERROR("inline keyword should sit between storage class and type\n" . $herecurr);
2316 }
2317
8905a67c
AW
2318# Check for __inline__ and __inline, prefer inline
2319 if ($line =~ /\b(__inline__|__inline)\b/) {
2320 WARN("plain inline is preferred over $1\n" . $herecurr);
2321 }
2322
de7d4f0e 2323# check for new externs in .c files.
171ae1a4 2324 if ($realfile =~ /\.c$/ && defined $stat &&
c45dcabd 2325 $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s)
171ae1a4 2326 {
c45dcabd
AW
2327 my $function_name = $1;
2328 my $paren_space = $2;
171ae1a4
AW
2329
2330 my $s = $stat;
2331 if (defined $cond) {
2332 substr($s, 0, length($cond), '');
2333 }
c45dcabd
AW
2334 if ($s =~ /^\s*;/ &&
2335 $function_name ne 'uninitialized_var')
2336 {
171ae1a4
AW
2337 WARN("externs should be avoided in .c files\n" . $herecurr);
2338 }
2339
2340 if ($paren_space =~ /\n/) {
2341 WARN("arguments for function declarations should follow identifier\n" . $herecurr);
2342 }
9c9ba34e
AW
2343
2344 } elsif ($realfile =~ /\.c$/ && defined $stat &&
2345 $stat =~ /^.\s*extern\s+/)
2346 {
2347 WARN("externs should be avoided in .c files\n" . $herecurr);
de7d4f0e
AW
2348 }
2349
2350# checks for new __setup's
2351 if ($rawline =~ /\b__setup\("([^"]*)"/) {
2352 my $name = $1;
2353
2354 if (!grep(/$name/, @setup_docs)) {
2355 CHK("__setup appears un-documented -- check Documentation/kernel-parameters.txt\n" . $herecurr);
2356 }
653d4876 2357 }
9c0ca6f9
AW
2358
2359# check for pointless casting of kmalloc return
2360 if ($line =~ /\*\s*\)\s*k[czm]alloc\b/) {
2361 WARN("unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
2362 }
13214adf
AW
2363
2364# check for gcc specific __FUNCTION__
2365 if ($line =~ /__FUNCTION__/) {
2366 WARN("__func__ should be used instead of gcc specific __FUNCTION__\n" . $herecurr);
2367 }
773647a0
AW
2368
2369# check for semaphores used as mutexes
171ae1a4 2370 if ($line =~ /^.\s*(DECLARE_MUTEX|init_MUTEX)\s*\(/) {
773647a0
AW
2371 WARN("mutexes are preferred for single holder semaphores\n" . $herecurr);
2372 }
2373# check for semaphores used as mutexes
171ae1a4 2374 if ($line =~ /^.\s*init_MUTEX_LOCKED\s*\(/) {
773647a0
AW
2375 WARN("consider using a completion\n" . $herecurr);
2376 }
2377# recommend strict_strto* over simple_strto*
2378 if ($line =~ /\bsimple_(strto.*?)\s*\(/) {
2379 WARN("consider using strict_$1 in preference to simple_$1\n" . $herecurr);
2380 }
f3db6639
ME
2381# check for __initcall(), use device_initcall() explicitly please
2382 if ($line =~ /^.\s*__initcall\s*\(/) {
2383 WARN("please use device_initcall() instead of __initcall()\n" . $herecurr);
2384 }
773647a0
AW
2385
2386# use of NR_CPUS is usually wrong
2387# ignore definitions of NR_CPUS and usage to define arrays as likely right
2388 if ($line =~ /\bNR_CPUS\b/ &&
c45dcabd
AW
2389 $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ &&
2390 $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ &&
171ae1a4
AW
2391 $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ &&
2392 $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ &&
2393 $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/)
773647a0
AW
2394 {
2395 WARN("usage of NR_CPUS is often wrong - consider using cpu_possible(), num_possible_cpus(), for_each_possible_cpu(), etc\n" . $herecurr);
2396 }
9c9ba34e
AW
2397
2398# check for %L{u,d,i} in strings
2399 my $string;
2400 while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) {
2401 $string = substr($rawline, $-[1], $+[1] - $-[1]);
2a1bc5d5 2402 $string =~ s/%%/__/g;
9c9ba34e
AW
2403 if ($string =~ /(?<!%)%L[udi]/) {
2404 WARN("\%Ld/%Lu are not-standard C, use %lld/%llu\n" . $herecurr);
2405 last;
2406 }
2407 }
13214adf
AW
2408 }
2409
2410 # If we have no input at all, then there is nothing to report on
2411 # so just keep quiet.
2412 if ($#rawlines == -1) {
2413 exit(0);
0a920b5b
AW
2414 }
2415
8905a67c
AW
2416 # In mailback mode only produce a report in the negative, for
2417 # things that appear to be patches.
2418 if ($mailback && ($clean == 1 || !$is_patch)) {
2419 exit(0);
2420 }
2421
2422 # This is not a patch, and we are are in 'no-patch' mode so
2423 # just keep quiet.
2424 if (!$chk_patch && !$is_patch) {
2425 exit(0);
2426 }
2427
2428 if (!$is_patch) {
de7d4f0e 2429 ERROR("Does not appear to be a unified-diff format patch\n");
0a920b5b
AW
2430 }
2431 if ($is_patch && $chk_signoff && $signoff == 0) {
de7d4f0e 2432 ERROR("Missing Signed-off-by: line(s)\n");
0a920b5b
AW
2433 }
2434
8905a67c 2435 print report_dump();
13214adf
AW
2436 if ($summary && !($clean == 1 && $quiet == 1)) {
2437 print "$filename " if ($summary_file);
8905a67c
AW
2438 print "total: $cnt_error errors, $cnt_warn warnings, " .
2439 (($check)? "$cnt_chk checks, " : "") .
2440 "$cnt_lines lines checked\n";
2441 print "\n" if ($quiet == 0);
f0a594c1 2442 }
8905a67c 2443
0a920b5b 2444 if ($clean == 1 && $quiet == 0) {
c2fdda0d 2445 print "$vname has no obvious style problems and is ready for submission.\n"
0a920b5b
AW
2446 }
2447 if ($clean == 0 && $quiet == 0) {
c2fdda0d 2448 print "$vname has style problems, please review. If any of these errors\n";
0a920b5b
AW
2449 print "are false positives report them to the maintainer, see\n";
2450 print "CHECKPATCH in MAINTAINERS.\n";
2451 }
13214adf 2452
0a920b5b
AW
2453 return $clean;
2454}