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