Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb-2.6
[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
6c72ffaa 12my $V = '0.11';
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;
653d4876 20my $tst_type = 0;
6c72ffaa
AW
21my $emacs = 0;
22my $file = 0;
23my $check = 0;
24my $root;
0a920b5b 25GetOptions(
6c72ffaa 26 'q|quiet+' => \$quiet,
0a920b5b
AW
27 'tree!' => \$tree,
28 'signoff!' => \$chk_signoff,
29 'patch!' => \$chk_patch,
653d4876 30 'test-type!' => \$tst_type,
6c72ffaa
AW
31 'emacs!' => \$emacs,
32 'file!' => \$file,
33 'subjective!' => \$check,
34 'strict!' => \$check,
35 'root=s' => \$root,
0a920b5b
AW
36) or exit;
37
38my $exit = 0;
39
40if ($#ARGV < 0) {
00df344f 41 print "usage: $P [options] patchfile\n";
0a920b5b
AW
42 print "version: $V\n";
43 print "options: -q => quiet\n";
44 print " --no-tree => run without a kernel tree\n";
6c72ffaa
AW
45 print " --emacs => emacs compile window format\n";
46 print " --file => check a source file\n";
47 print " --strict => enable more subjective tests\n";
48 print " --root => path to the kernel tree root\n";
0a920b5b
AW
49 exit(1);
50}
51
6c72ffaa
AW
52if ($tree) {
53 if (defined $root) {
54 if (!top_of_kernel_tree($root)) {
55 die "$P: $root: --root does not point at a valid tree\n";
56 }
57 } else {
58 if (top_of_kernel_tree('.')) {
59 $root = '.';
60 } elsif ($0 =~ m@(.*)/scripts/[^/]*$@ &&
61 top_of_kernel_tree($1)) {
62 $root = $1;
63 }
64 }
65
66 if (!defined $root) {
67 print "Must be run from the top-level dir. of a kernel tree\n";
68 exit(2);
69 }
0a920b5b
AW
70}
71
6c72ffaa
AW
72my $emitted_corrupt = 0;
73
74our $Ident = qr{[A-Za-z_][A-Za-z\d_]*};
75our $Storage = qr{extern|static|asmlinkage};
76our $Sparse = qr{
77 __user|
78 __kernel|
79 __force|
80 __iomem|
81 __must_check|
82 __init_refok|
83 __kprobes|
84 fastcall
85 }x;
86our $Attribute = qr{
87 const|
88 __read_mostly|
89 __kprobes|
90 __(?:mem|cpu|dev|)(?:initdata|init)
91 }x;
92our $Inline = qr{inline|__always_inline|noinline};
93our $NonptrType = qr{
94 \b
95 (?:const\s+)?
96 (?:unsigned\s+)?
97 (?:
98 void|
99 char|
100 short|
101 int|
102 long|
103 unsigned|
104 float|
105 double|
106 bool|
107 long\s+int|
108 long\s+long|
109 long\s+long\s+int|
110 (?:__)?(?:u|s|be|le)(?:8|16|32|64)|
111 struct\s+$Ident|
112 union\s+$Ident|
113 enum\s+$Ident|
114 ${Ident}_t|
115 ${Ident}_handler|
116 ${Ident}_handler_fn
117 )
118 (?:\s+$Sparse)*
119 \b
120 }x;
121
122our $Type = qr{
123 \b$NonptrType\b
124 (?:\s*\*+\s*const|\s*\*+|(?:\s*\[\s*\])+)?
125 (?:\s+$Sparse|\s+$Attribute)*
126 }x;
127our $Declare = qr{(?:$Storage\s+)?$Type};
128our $Member = qr{->$Ident|\.$Ident|\[[^]]*\]};
129our $Lval = qr{$Ident(?:$Member)*};
130
131our $Constant = qr{(?:[0-9]+|0x[0-9a-fA-F]+)[UL]*};
132our $Assignment = qr{(?:\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=)};
133our $Operators = qr{
134 <=|>=|==|!=|
135 =>|->|<<|>>|<|>|!|~|
136 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/
137 }x;
138
139our $Bare = '';
140
141$chk_signoff = 0 if ($file);
142
4a0df2ef
AW
143my @dep_includes = ();
144my @dep_functions = ();
6c72ffaa
AW
145my $removal = "Documentation/feature-removal-schedule.txt";
146if ($tree && -f "$root/$removal") {
147 open(REMOVE, "<$root/$removal") ||
148 die "$P: $removal: open failed - $!\n";
0a920b5b 149 while (<REMOVE>) {
f0a594c1
AW
150 if (/^Check:\s+(.*\S)/) {
151 for my $entry (split(/[, ]+/, $1)) {
152 if ($entry =~ m@include/(.*)@) {
4a0df2ef 153 push(@dep_includes, $1);
4a0df2ef 154
f0a594c1
AW
155 } elsif ($entry !~ m@/@) {
156 push(@dep_functions, $entry);
157 }
4a0df2ef 158 }
0a920b5b
AW
159 }
160 }
161}
162
00df344f 163my @rawlines = ();
6c72ffaa
AW
164for my $filename (@ARGV) {
165 if ($file) {
166 open(FILE, "diff -u /dev/null $filename|") ||
167 die "$P: $filename: diff failed - $!\n";
168 } else {
169 open(FILE, "<$filename") ||
170 die "$P: $filename: open failed - $!\n";
0a920b5b 171 }
6c72ffaa
AW
172 while (<FILE>) {
173 chomp;
174 push(@rawlines, $_);
175 }
176 close(FILE);
177 if (!process($filename, @rawlines)) {
178 $exit = 1;
179 }
180 @rawlines = ();
0a920b5b
AW
181}
182
183exit($exit);
184
185sub top_of_kernel_tree {
6c72ffaa
AW
186 my ($root) = @_;
187
188 my @tree_check = (
189 "COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
190 "README", "Documentation", "arch", "include", "drivers",
191 "fs", "init", "ipc", "kernel", "lib", "scripts",
192 );
193
194 foreach my $check (@tree_check) {
195 if (! -e $root . '/' . $check) {
196 return 0;
197 }
0a920b5b 198 }
6c72ffaa 199 return 1;
0a920b5b
AW
200}
201
202sub expand_tabs {
203 my ($str) = @_;
204
205 my $res = '';
206 my $n = 0;
207 for my $c (split(//, $str)) {
208 if ($c eq "\t") {
209 $res .= ' ';
210 $n++;
211 for (; ($n % 8) != 0; $n++) {
212 $res .= ' ';
213 }
214 next;
215 }
216 $res .= $c;
217 $n++;
218 }
219
220 return $res;
221}
6c72ffaa
AW
222sub copy_spacing {
223 my ($str) = @_;
224
225 my $res = '';
226 for my $c (split(//, $str)) {
227 if ($c eq "\t") {
228 $res .= $c;
229 } else {
230 $res .= ' ';
231 }
232 }
233
234 return $res;
235}
0a920b5b 236
4a0df2ef
AW
237sub line_stats {
238 my ($line) = @_;
239
240 # Drop the diff line leader and expand tabs
241 $line =~ s/^.//;
242 $line = expand_tabs($line);
243
244 # Pick the indent from the front of the line.
245 my ($white) = ($line =~ /^(\s*)/);
246
247 return (length($line), length($white));
248}
249
00df344f
AW
250sub sanitise_line {
251 my ($line) = @_;
252
253 my $res = '';
254 my $l = '';
255
256 my $quote = '';
257
258 foreach my $c (split(//, $line)) {
259 if ($l ne "\\" && ($c eq "'" || $c eq '"')) {
260 if ($quote eq '') {
261 $quote = $c;
262 $res .= $c;
263 $l = $c;
264 next;
265 } elsif ($quote eq $c) {
266 $quote = '';
267 }
268 }
269 if ($quote && $c ne "\t") {
270 $res .= "X";
271 } else {
272 $res .= $c;
273 }
274
275 $l = $c;
276 }
277
278 return $res;
279}
280
4a0df2ef 281sub ctx_block_get {
f0a594c1 282 my ($linenr, $remain, $outer, $open, $close, $off) = @_;
4a0df2ef
AW
283 my $line;
284 my $start = $linenr - 1;
4a0df2ef
AW
285 my $blk = '';
286 my @o;
287 my @c;
288 my @res = ();
289
f0a594c1 290 my $level = 0;
00df344f
AW
291 for ($line = $start; $remain > 0; $line++) {
292 next if ($rawlines[$line] =~ /^-/);
293 $remain--;
294
295 $blk .= $rawlines[$line];
f0a594c1
AW
296 foreach my $c (split(//, $rawlines[$line])) {
297 ##print "C<$c>L<$level><$open$close>O<$off>\n";
298 if ($off > 0) {
299 $off--;
300 next;
301 }
4a0df2ef 302
f0a594c1
AW
303 if ($c eq $close && $level > 0) {
304 $level--;
305 last if ($level == 0);
306 } elsif ($c eq $open) {
307 $level++;
308 }
309 }
4a0df2ef 310
f0a594c1 311 if (!$outer || $level <= 1) {
00df344f 312 push(@res, $rawlines[$line]);
4a0df2ef
AW
313 }
314
f0a594c1 315 last if ($level == 0);
4a0df2ef
AW
316 }
317
f0a594c1 318 return ($level, @res);
4a0df2ef
AW
319}
320sub ctx_block_outer {
321 my ($linenr, $remain) = @_;
322
f0a594c1
AW
323 my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0);
324 return @r;
4a0df2ef
AW
325}
326sub ctx_block {
327 my ($linenr, $remain) = @_;
328
f0a594c1
AW
329 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0);
330 return @r;
653d4876
AW
331}
332sub ctx_statement {
f0a594c1
AW
333 my ($linenr, $remain, $off) = @_;
334
335 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
336 return @r;
337}
338sub ctx_block_level {
653d4876
AW
339 my ($linenr, $remain) = @_;
340
f0a594c1 341 return ctx_block_get($linenr, $remain, 0, '{', '}', 0);
4a0df2ef 342}
9c0ca6f9
AW
343sub ctx_statement_level {
344 my ($linenr, $remain, $off) = @_;
345
346 return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
347}
4a0df2ef
AW
348
349sub ctx_locate_comment {
350 my ($first_line, $end_line) = @_;
351
352 # Catch a comment on the end of the line itself.
00df344f 353 my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*$@);
4a0df2ef
AW
354 return $current_comment if (defined $current_comment);
355
356 # Look through the context and try and figure out if there is a
357 # comment.
358 my $in_comment = 0;
359 $current_comment = '';
360 for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
00df344f
AW
361 my $line = $rawlines[$linenr - 1];
362 #warn " $line\n";
4a0df2ef
AW
363 if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
364 $in_comment = 1;
365 }
366 if ($line =~ m@/\*@) {
367 $in_comment = 1;
368 }
369 if (!$in_comment && $current_comment ne '') {
370 $current_comment = '';
371 }
372 $current_comment .= $line . "\n" if ($in_comment);
373 if ($line =~ m@\*/@) {
374 $in_comment = 0;
375 }
376 }
377
378 chomp($current_comment);
379 return($current_comment);
380}
381sub ctx_has_comment {
382 my ($first_line, $end_line) = @_;
383 my $cmt = ctx_locate_comment($first_line, $end_line);
384
00df344f 385 ##print "LINE: $rawlines[$end_line - 1 ]\n";
4a0df2ef
AW
386 ##print "CMMT: $cmt\n";
387
388 return ($cmt ne '');
389}
390
6c72ffaa
AW
391sub cat_vet {
392 my ($vet) = @_;
393 my ($res, $coded);
9c0ca6f9 394
6c72ffaa
AW
395 $res = '';
396 while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
397 $res .= $1;
398 if ($2 ne '') {
399 $coded = sprintf("^%c", unpack('C', $2) + 64);
400 $res .= $coded;
9c0ca6f9
AW
401 }
402 }
6c72ffaa 403 $res =~ s/$/\$/;
9c0ca6f9 404
6c72ffaa 405 return $res;
9c0ca6f9
AW
406}
407
6c72ffaa
AW
408sub annotate_values {
409 my ($stream, $type) = @_;
0a920b5b 410
6c72ffaa
AW
411 my $res;
412 my $cur = $stream;
413
414 my $debug = 0;
415
416 print "$stream\n" if ($debug);
417
418 ##my $type = 'N';
419 my $pos = 0;
420 my $preprocessor = 0;
421 my $paren = 0;
422 my @paren_type;
423
424 # Include any user defined types we may have found as we went.
425 my $type_match = "(?:$Type$Bare)";
426
427 while (length($cur)) {
428 print " <$type> " if ($debug);
429 if ($cur =~ /^(\s+)/o) {
430 print "WS($1)\n" if ($debug);
431 if ($1 =~ /\n/ && $preprocessor) {
432 $preprocessor = 0;
433 $type = 'N';
434 }
435
436 } elsif ($cur =~ /^($type_match)/) {
437 print "DECLARE($1)\n" if ($debug);
438 $type = 'T';
439
440 } elsif ($cur =~ /^(#\s*define\s*$Ident)(\(?)/o) {
441 print "DEFINE($1)\n" if ($debug);
442 $preprocessor = 1;
443 $paren_type[$paren] = 'N';
444
445 } elsif ($cur =~ /^(#\s*(?:ifdef|ifndef|if|else|endif))/o) {
446 print "PRE($1)\n" if ($debug);
447 $preprocessor = 1;
448 $type = 'N';
449
450 } elsif ($cur =~ /^(\\\n)/o) {
451 print "PRECONT($1)\n" if ($debug);
452
453 } elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
454 print "SIZEOF($1)\n" if ($debug);
455 if (defined $2) {
456 $paren_type[$paren] = 'V';
457 }
458 $type = 'N';
459
460 } elsif ($cur =~ /^(if|while|typeof)\b/o) {
461 print "COND($1)\n" if ($debug);
462 $paren_type[$paren] = 'N';
463 $type = 'N';
464
465 } elsif ($cur =~/^(return|case|else)/o) {
466 print "KEYWORD($1)\n" if ($debug);
467 $type = 'N';
468
469 } elsif ($cur =~ /^(\()/o) {
470 print "PAREN('$1')\n" if ($debug);
471 $paren++;
472 $type = 'N';
473
474 } elsif ($cur =~ /^(\))/o) {
475 $paren-- if ($paren > 0);
476 if (defined $paren_type[$paren]) {
477 $type = $paren_type[$paren];
478 undef $paren_type[$paren];
479 print "PAREN('$1') -> $type\n" if ($debug);
480 } else {
481 print "PAREN('$1')\n" if ($debug);
482 }
483
484 } elsif ($cur =~ /^($Ident)\(/o) {
485 print "FUNC($1)\n" if ($debug);
486 $paren_type[$paren] = 'V';
487
488 } elsif ($cur =~ /^($Ident|$Constant)/o) {
489 print "IDENT($1)\n" if ($debug);
490 $type = 'V';
491
492 } elsif ($cur =~ /^($Assignment)/o) {
493 print "ASSIGN($1)\n" if ($debug);
494 $type = 'N';
495
496 } elsif ($cur =~ /^(;|{|}|\?|:|\[)/o) {
497 print "END($1)\n" if ($debug);
498 $type = 'N';
499
500 } elsif ($cur =~ /^($Operators)/o) {
501 print "OP($1)\n" if ($debug);
502 if ($1 ne '++' && $1 ne '--') {
503 $type = 'N';
504 }
505
506 } elsif ($cur =~ /(^.)/o) {
507 print "C($1)\n" if ($debug);
508 }
509 if (defined $1) {
510 $cur = substr($cur, length($1));
511 $res .= $type x length($1);
512 }
9c0ca6f9 513 }
0a920b5b 514
9c0ca6f9 515 return $res;
0a920b5b
AW
516}
517
6c72ffaa
AW
518my $prefix = '';
519
f0a594c1
AW
520my @report = ();
521sub report {
6c72ffaa 522 push(@report, $prefix . $_[0]);
f0a594c1
AW
523}
524sub report_dump {
525 @report;
526}
de7d4f0e 527sub ERROR {
f0a594c1 528 report("ERROR: $_[0]\n");
de7d4f0e 529 our $clean = 0;
6c72ffaa 530 our $cnt_error++;
de7d4f0e
AW
531}
532sub WARN {
f0a594c1 533 report("WARNING: $_[0]\n");
de7d4f0e 534 our $clean = 0;
6c72ffaa 535 our $cnt_warn++;
de7d4f0e
AW
536}
537sub CHK {
6c72ffaa
AW
538 if ($check) {
539 report("CHECK: $_[0]\n");
540 our $clean = 0;
541 our $cnt_chk++;
542 }
de7d4f0e
AW
543}
544
0a920b5b
AW
545sub process {
546 my $filename = shift;
547 my @lines = @_;
548
549 my $linenr=0;
550 my $prevline="";
551 my $stashline="";
552
4a0df2ef 553 my $length;
0a920b5b
AW
554 my $indent;
555 my $previndent=0;
556 my $stashindent=0;
557
de7d4f0e 558 our $clean = 1;
0a920b5b
AW
559 my $signoff = 0;
560 my $is_patch = 0;
561
6c72ffaa
AW
562 our $cnt_lines = 0;
563 our $cnt_error = 0;
564 our $cnt_warn = 0;
565 our $cnt_chk = 0;
566
0a920b5b
AW
567 # Trace the real file/line as we go.
568 my $realfile = '';
569 my $realline = 0;
570 my $realcnt = 0;
571 my $here = '';
572 my $in_comment = 0;
573 my $first_line = 0;
574
6c72ffaa 575 my $prev_values = 'N';
653d4876 576
9c0ca6f9
AW
577 # Possible bare types.
578 my @bare = ();
9c0ca6f9 579
de7d4f0e
AW
580 # Pre-scan the patch looking for any __setup documentation.
581 my @setup_docs = ();
582 my $setup_docs = 0;
583 foreach my $line (@lines) {
584 if ($line=~/^\+\+\+\s+(\S+)/) {
585 $setup_docs = 0;
586 if ($1 =~ m@Documentation/kernel-parameters.txt$@) {
587 $setup_docs = 1;
588 }
589 next;
590 }
591
592 if ($setup_docs && $line =~ /^\+/) {
593 push(@setup_docs, $line);
594 }
595 }
596
6c72ffaa
AW
597 $prefix = '';
598
0a920b5b
AW
599 foreach my $line (@lines) {
600 $linenr++;
601
653d4876
AW
602 my $rawline = $line;
603
6c72ffaa 604
0a920b5b
AW
605#extract the filename as it passes
606 if ($line=~/^\+\+\+\s+(\S+)/) {
607 $realfile=$1;
00df344f 608 $realfile =~ s@^[^/]*/@@;
0a920b5b
AW
609 $in_comment = 0;
610 next;
611 }
612#extract the line range in the file after the patch is applied
6c72ffaa 613 if ($line=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
0a920b5b 614 $is_patch = 1;
4a0df2ef 615 $first_line = $linenr + 1;
0a920b5b
AW
616 $in_comment = 0;
617 $realline=$1-1;
618 if (defined $2) {
619 $realcnt=$3+1;
620 } else {
621 $realcnt=1+1;
622 }
6c72ffaa 623 $prev_values = 'N';
0a920b5b
AW
624 next;
625 }
626
4a0df2ef
AW
627# track the line number as we move through the hunk, note that
628# new versions of GNU diff omit the leading space on completely
629# blank context lines so we need to count that too.
630 if ($line =~ /^( |\+|$)/) {
0a920b5b 631 $realline++;
d8aaf121 632 $realcnt-- if ($realcnt != 0);
0a920b5b
AW
633
634 # track any sort of multi-line comment. Obviously if
635 # the added text or context do not include the whole
636 # comment we will not see it. Such is life.
637 #
638 # Guestimate if this is a continuing comment. If this
639 # is the start of a diff block and this line starts
640 # ' *' then it is very likely a comment.
4a0df2ef 641 if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
0a920b5b
AW
642 $in_comment = 1;
643 }
644 if ($line =~ m@/\*@) {
645 $in_comment = 1;
646 }
647 if ($line =~ m@\*/@) {
648 $in_comment = 0;
649 }
650
4a0df2ef
AW
651 # Measure the line length and indent.
652 ($length, $indent) = line_stats($line);
0a920b5b
AW
653
654 # Track the previous line.
655 ($prevline, $stashline) = ($stashline, $line);
656 ($previndent, $stashindent) = ($stashindent, $indent);
6c72ffaa 657
d8aaf121
AW
658 } elsif ($realcnt == 1) {
659 $realcnt--;
0a920b5b
AW
660 }
661
662#make up the handle for any error we report on this line
6c72ffaa
AW
663 $here = "#$linenr: " if (!$file);
664 $here = "#$realline: " if ($file);
389834b6 665 $here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
0a920b5b 666
00df344f 667 my $hereline = "$here\n$line\n";
de7d4f0e
AW
668 my $herecurr = "$here\n$line\n";
669 my $hereprev = "$here\n$prevline\n$line\n";
0a920b5b 670
6c72ffaa
AW
671 $prefix = "$filename:$realline: " if ($emacs && $file);
672 $prefix = "$filename:$linenr: " if ($emacs && !$file);
673 $cnt_lines++ if ($realcnt != 0);
674
0a920b5b 675#check the patch for a signoff:
d8aaf121 676 if ($line =~ /^\s*signed-off-by:/i) {
4a0df2ef
AW
677 # This is a signoff, if ugly, so do not double report.
678 $signoff++;
0a920b5b 679 if (!($line =~ /^\s*Signed-off-by:/)) {
de7d4f0e
AW
680 WARN("Signed-off-by: is the preferred form\n" .
681 $herecurr);
0a920b5b
AW
682 }
683 if ($line =~ /^\s*signed-off-by:\S/i) {
de7d4f0e
AW
684 WARN("need space after Signed-off-by:\n" .
685 $herecurr);
0a920b5b
AW
686 }
687 }
688
00df344f
AW
689# Check for wrappage within a valid hunk of the file
690 if ($realcnt != 0 && $line !~ m{^(?:\+|-| |$)}) {
de7d4f0e 691 ERROR("patch seems to be corrupt (line wrapped?)\n" .
6c72ffaa 692 $herecurr) if (!$emitted_corrupt++);
de7d4f0e
AW
693 }
694
695# UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
696 if (($realfile =~ /^$/ || $line =~ /^\+/) &&
697 !($line =~ m/^(
698 [\x09\x0A\x0D\x20-\x7E] # ASCII
699 | [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
700 | \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
701 | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
702 | \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
703 | \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
704 | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
705 | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
706 )*$/x )) {
707 ERROR("Invalid UTF-8\n" . $herecurr);
00df344f
AW
708 }
709
710#ignore lines being removed
711 if ($line=~/^-/) {next;}
0a920b5b 712
00df344f
AW
713# check we are in a valid source file if not then ignore this hunk
714 next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/);
0a920b5b
AW
715
716#trailing whitespace
9c0ca6f9
AW
717 if ($line =~ /^\+.*\015/) {
718 my $herevet = "$here\n" . cat_vet($line) . "\n";
719 ERROR("DOS line endings\n" . $herevet);
720
721 } elsif ($line =~ /^\+.*\S\s+$/ || $line =~ /^\+\s+$/) {
de7d4f0e
AW
722 my $herevet = "$here\n" . cat_vet($line) . "\n";
723 ERROR("trailing whitespace\n" . $herevet);
0a920b5b
AW
724 }
725#80 column limit
00df344f 726 if ($line =~ /^\+/ && !($prevline=~/\/\*\*/) && $length > 80) {
de7d4f0e 727 WARN("line over 80 characters\n" . $herecurr);
0a920b5b
AW
728 }
729
730# check we are in a valid source file *.[hc] if not then ignore this hunk
731 next if ($realfile !~ /\.[hc]$/);
732
733# at the beginning of a line any tabs must come first and anything
734# more than 8 must use tabs.
735 if ($line=~/^\+\s* \t\s*\S/ or $line=~/^\+\s* \s*/) {
de7d4f0e
AW
736 my $herevet = "$here\n" . cat_vet($line) . "\n";
737 ERROR("use tabs not spaces\n" . $herevet);
0a920b5b
AW
738 }
739
653d4876 740# Remove comments from the line before processing.
22f2a2ef
AW
741 my $comment_edge = ($line =~ s@/\*.*\*/@@g) +
742 ($line =~ s@/\*.*@@) +
743 ($line =~ s@^(.).*\*/@$1@);
744
745# The rest of our checks refer specifically to C style
746# only apply those _outside_ comments. Only skip
747# lines in the middle of comments.
748 next if (!$comment_edge && $in_comment);
00df344f 749
653d4876
AW
750# Standardise the strings and chars within the input to simplify matching.
751 $line = sanitise_line($line);
752
9c0ca6f9
AW
753# Check for potential 'bare' types
754 if ($realcnt &&
755 $line !~ /^.\s*(?:$Storage\s+)?(?:$Inline\s+)?$Type\b/ &&
756 $line !~ /$Ident:\s*$/ &&
757 $line !~ /^.\s*$Ident\s*\(/ &&
6c72ffaa 758 # definitions in global scope can only start with types
9c0ca6f9 759 ($line =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?($Ident)\b/ ||
6c72ffaa
AW
760 # declarations always start with types
761 $line =~ /^.\s*(?:$Storage\s+)?($Ident)\b\s*\**\s*$Ident\s*(?:;|=)/) ||
762 # any (foo ... *) is a pointer cast, and foo is a type
763 $line =~ /\(($Ident)(?:\s+$Sparse)*\s*\*+\s*\)/) {
9c0ca6f9
AW
764 my $possible = $1;
765 if ($possible !~ /^(?:$Storage|$Type|DEFINE_\S+)$/ &&
766 $possible ne 'goto' && $possible ne 'return' &&
767 $possible ne 'struct' && $possible ne 'enum' &&
768 $possible ne 'case' && $possible ne 'else' &&
769 $possible ne 'typedef') {
770 #print "POSSIBLE<$possible>\n";
771 push(@bare, $possible);
772 my $bare = join("|", @bare);
6c72ffaa 773 $Bare = '|' . qr{
9c0ca6f9
AW
774 \b(?:$bare)\b
775 (?:\s*\*+\s*const|\s*\*+|(?:\s*\[\s*\])+)?
776 (?:\s+$Sparse)*
777 }x;
778 }
779 }
780
653d4876
AW
781#
782# Checks which may be anchored in the context.
783#
00df344f 784
653d4876
AW
785# Check for switch () and associated case and default
786# statements should be at the same indent.
00df344f
AW
787 if ($line=~/\bswitch\s*\(.*\)/) {
788 my $err = '';
789 my $sep = '';
790 my @ctx = ctx_block_outer($linenr, $realcnt);
791 shift(@ctx);
792 for my $ctx (@ctx) {
793 my ($clen, $cindent) = line_stats($ctx);
794 if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
795 $indent != $cindent) {
796 $err .= "$sep$ctx\n";
797 $sep = '';
798 } else {
799 $sep = "[...]\n";
800 }
801 }
802 if ($err ne '') {
9c0ca6f9 803 ERROR("switch and case should be at the same indent\n$hereline$err");
de7d4f0e
AW
804 }
805 }
806
807# if/while/etc brace do not go on next line, unless defining a do while loop,
808# or if that brace on the next line is for something else
809 if ($line =~ /\b(?:(if|while|for|switch)\s*\(|do\b|else\b)/ && $line !~ /^.#/) {
9c0ca6f9 810 my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0);
de7d4f0e
AW
811 my $ctx_ln = $linenr + $#ctx + 1;
812 my $ctx_cnt = $realcnt - $#ctx - 1;
813 my $ctx = join("\n", @ctx);
814
9c0ca6f9 815 # Skip over any removed lines in the context following statement.
de7d4f0e
AW
816 while ($ctx_cnt > 0 && $lines[$ctx_ln - 1] =~ /^-/) {
817 $ctx_ln++;
818 $ctx_cnt--;
819 }
820 ##warn "line<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>";
821
822 if ($ctx !~ /{\s*/ && $ctx_cnt > 0 && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
f0a594c1 823 ERROR("That open brace { should be on the previous line\n" .
de7d4f0e 824 "$here\n$ctx\n$lines[$ctx_ln - 1]");
00df344f 825 }
9c0ca6f9
AW
826 if ($level == 0 && $ctx =~ /\)\s*\;\s*$/ && defined $lines[$ctx_ln - 1]) {
827 my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
828 if ($nindent > $indent) {
829 WARN("Trailing semicolon indicates no statements, indent implies otherwise\n" .
830 "$here\n$ctx\n$lines[$ctx_ln - 1]");
831 }
832 }
00df344f
AW
833 }
834
6c72ffaa
AW
835 # Track the 'values' across context and added lines.
836 my $opline = $line; $opline =~ s/^./ /;
837 my $curr_values = annotate_values($opline . "\n", $prev_values);
838 $curr_values = $prev_values . $curr_values;
839 #warn "--> $opline\n";
840 #warn "--> $curr_values ($prev_values)\n";
841 $prev_values = substr($curr_values, -1);
842
00df344f
AW
843#ignore lines not being added
844 if ($line=~/^[^\+]/) {next;}
845
653d4876
AW
846# TEST: allow direct testing of the type matcher.
847 if ($tst_type && $line =~ /^.$Declare$/) {
de7d4f0e 848 ERROR("TEST: is type $Declare\n" . $herecurr);
653d4876
AW
849 next;
850 }
851
f0a594c1
AW
852# check for initialisation to aggregates open brace on the next line
853 if ($prevline =~ /$Declare\s*$Ident\s*=\s*$/ &&
854 $line =~ /^.\s*{/) {
855 ERROR("That open brace { should be on the previous line\n" . $hereprev);
856 }
857
653d4876
AW
858#
859# Checks which are anchored on the added line.
860#
861
862# check for malformed paths in #include statements (uses RAW line)
863 if ($rawline =~ m{^.#\s*include\s+[<"](.*)[">]}) {
864 my $path = $1;
865 if ($path =~ m{//}) {
de7d4f0e
AW
866 ERROR("malformed #include filename\n" .
867 $herecurr);
653d4876
AW
868 }
869 # Sanitise this special form of string.
870 $path = 'X' x length($path);
871 $line =~ s{\<.*\>}{<$path>};
872 }
00df344f 873
0a920b5b 874# no C99 // comments
00df344f 875 if ($line =~ m{//}) {
de7d4f0e 876 ERROR("do not use C99 // comments\n" . $herecurr);
0a920b5b 877 }
00df344f 878 # Remove C99 comments.
0a920b5b 879 $line =~ s@//.*@@;
6c72ffaa 880 $opline =~ s@//.*@@;
0a920b5b
AW
881
882#EXPORT_SYMBOL should immediately follow its function closing }.
653d4876
AW
883 if (($line =~ /EXPORT_SYMBOL.*\((.*)\)/) ||
884 ($line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
885 my $name = $1;
0a920b5b
AW
886 if (($prevline !~ /^}/) &&
887 ($prevline !~ /^\+}/) &&
653d4876 888 ($prevline !~ /^ }/) &&
22f2a2ef 889 ($prevline !~ /\b\Q$name\E(?:\s+$Attribute)?\s*(?:;|=)/)) {
de7d4f0e 890 WARN("EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
0a920b5b
AW
891 }
892 }
893
f0a594c1
AW
894# check for external initialisers.
895 if ($line =~ /^.$Type\s*$Ident\s*=\s*(0|NULL);/) {
896 ERROR("do not initialise externals to 0 or NULL\n" .
897 $herecurr);
898 }
653d4876 899# check for static initialisers.
f0a594c1 900 if ($line =~ /\s*static\s.*=\s*(0|NULL);/) {
de7d4f0e
AW
901 ERROR("do not initialise statics to 0 or NULL\n" .
902 $herecurr);
0a920b5b
AW
903 }
904
653d4876
AW
905# check for new typedefs, only function parameters and sparse annotations
906# make sense.
907 if ($line =~ /\btypedef\s/ &&
9c0ca6f9 908 $line !~ /\btypedef\s+$Type\s+\(\s*\*?$Ident\s*\)\s*\(/ &&
653d4876 909 $line !~ /\b__bitwise(?:__|)\b/) {
de7d4f0e 910 WARN("do not add new typedefs\n" . $herecurr);
0a920b5b
AW
911 }
912
913# * goes on variable not on type
d8aaf121 914 if ($line =~ m{\($NonptrType(\*+)(?:\s+const)?\)}) {
de7d4f0e
AW
915 ERROR("\"(foo$1)\" should be \"(foo $1)\"\n" .
916 $herecurr);
d8aaf121
AW
917
918 } elsif ($line =~ m{\($NonptrType\s+(\*+)(?!\s+const)\s+\)}) {
de7d4f0e
AW
919 ERROR("\"(foo $1 )\" should be \"(foo $1)\"\n" .
920 $herecurr);
d8aaf121 921
9c0ca6f9 922 } elsif ($line =~ m{$NonptrType(\*+)(?:\s+(?:$Attribute|$Sparse))?\s+[A-Za-z\d_]+}) {
de7d4f0e
AW
923 ERROR("\"foo$1 bar\" should be \"foo $1bar\"\n" .
924 $herecurr);
d8aaf121 925
9c0ca6f9 926 } elsif ($line =~ m{$NonptrType\s+(\*+)(?!\s+(?:$Attribute|$Sparse))\s+[A-Za-z\d_]+}) {
de7d4f0e
AW
927 ERROR("\"foo $1 bar\" should be \"foo $1bar\"\n" .
928 $herecurr);
0a920b5b
AW
929 }
930
931# # no BUG() or BUG_ON()
932# if ($line =~ /\b(BUG|BUG_ON)\b/) {
933# print "Try to use WARN_ON & Recovery code rather than BUG() or BUG_ON()\n";
934# print "$herecurr";
935# $clean = 0;
936# }
937
00df344f
AW
938# printk should use KERN_* levels. Note that follow on printk's on the
939# same line do not need a level, so we use the current block context
940# to try and find and validate the current printk. In summary the current
941# printk includes all preceeding printk's which have no newline on the end.
942# we assume the first bad printk is the one to report.
f0a594c1 943 if ($line =~ /\bprintk\((?!KERN_)\s*"/) {
00df344f
AW
944 my $ok = 0;
945 for (my $ln = $linenr - 1; $ln >= $first_line; $ln--) {
946 #print "CHECK<$lines[$ln - 1]\n";
947 # we have a preceeding printk if it ends
948 # with "\n" ignore it, else it is to blame
949 if ($lines[$ln - 1] =~ m{\bprintk\(}) {
950 if ($rawlines[$ln - 1] !~ m{\\n"}) {
951 $ok = 1;
952 }
953 last;
954 }
955 }
956 if ($ok == 0) {
de7d4f0e 957 WARN("printk() should include KERN_ facility level\n" . $herecurr);
00df344f 958 }
0a920b5b
AW
959 }
960
653d4876
AW
961# function brace can't be on same line, except for #defines of do while,
962# or if closed on same line
d8aaf121 963 if (($line=~/$Type\s*[A-Za-z\d_]+\(.*\).* {/) and
0a920b5b 964 !($line=~/\#define.*do\s{/) and !($line=~/}/)) {
de7d4f0e 965 ERROR("open brace '{' following function declarations go on the next line\n" . $herecurr);
0a920b5b 966 }
653d4876 967
f0a594c1 968# check for spaces between functions and their parentheses.
6c72ffaa
AW
969 while ($line =~ /($Ident)\s+\(/g) {
970 if ($1 !~ /^(?:if|for|while|switch|return|volatile|__volatile__|__attribute__|format|__extension__|Copyright|case)$/ &&
971 $line !~ /$Type\s+\(/ && $line !~ /^.\#\s*define\b/) {
972 WARN("no space between function name and open parenthesis '('\n" . $herecurr);
973 }
f0a594c1 974 }
653d4876 975# Check operator spacing.
0a920b5b 976 if (!($line=~/\#\s*include/)) {
9c0ca6f9
AW
977 my $ops = qr{
978 <<=|>>=|<=|>=|==|!=|
979 \+=|-=|\*=|\/=|%=|\^=|\|=|&=|
980 =>|->|<<|>>|<|>|=|!|~|
981 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/
982 }x;
983 my @elements = split(/($ops|;)/, $opline);
00df344f 984 my $off = 0;
6c72ffaa
AW
985
986 my $blank = copy_spacing($opline);
987
0a920b5b 988 for (my $n = 0; $n < $#elements; $n += 2) {
4a0df2ef
AW
989 $off += length($elements[$n]);
990
991 my $a = '';
992 $a = 'V' if ($elements[$n] ne '');
993 $a = 'W' if ($elements[$n] =~ /\s$/);
994 $a = 'B' if ($elements[$n] =~ /(\[|\()$/);
995 $a = 'O' if ($elements[$n] eq '');
996 $a = 'E' if ($elements[$n] eq '' && $n == 0);
997
0a920b5b 998 my $op = $elements[$n + 1];
4a0df2ef
AW
999
1000 my $c = '';
0a920b5b 1001 if (defined $elements[$n + 2]) {
4a0df2ef
AW
1002 $c = 'V' if ($elements[$n + 2] ne '');
1003 $c = 'W' if ($elements[$n + 2] =~ /^\s/);
1004 $c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
1005 $c = 'O' if ($elements[$n + 2] eq '');
22f2a2ef 1006 $c = 'E' if ($elements[$n + 2] =~ /\s*\\$/);
4a0df2ef
AW
1007 } else {
1008 $c = 'E';
0a920b5b
AW
1009 }
1010
00df344f 1011 # Pick up the preceeding and succeeding characters.
de7d4f0e 1012 my $ca = substr($opline, 0, $off);
00df344f 1013 my $cc = '';
653d4876 1014 if (length($opline) >= ($off + length($elements[$n + 1]))) {
d8aaf121 1015 $cc = substr($opline, $off + length($elements[$n + 1]));
00df344f 1016 }
de7d4f0e 1017 my $cb = "$ca$;$cc";
00df344f 1018
4a0df2ef
AW
1019 my $ctx = "${a}x${c}";
1020
1021 my $at = "(ctx:$ctx)";
1022
6c72ffaa 1023 my $ptr = substr($blank, 0, $off) . "^";
de7d4f0e 1024 my $hereptr = "$hereline$ptr\n";
0a920b5b 1025
9c0ca6f9
AW
1026 # Classify operators into binary, unary, or
1027 # definitions (* only) where they have more
1028 # than one mode.
6c72ffaa
AW
1029 my $op_type = substr($curr_values, $off + 1, 1);
1030 my $op_left = substr($curr_values, $off, 1);
1031 my $is_unary;
1032 if ($op_type eq 'T') {
1033 $is_unary = 2;
1034 } elsif ($op_left eq 'V') {
1035 $is_unary = 0;
1036 } else {
1037 $is_unary = 1;
9c0ca6f9 1038 }
9c0ca6f9 1039 #if ($op eq '-' || $op eq '&' || $op eq '*') {
6c72ffaa 1040 # print "UNARY: <$op_left$op_type $is_unary $a:$op:$c> <$ca:$op:$cc> <$unary_ctx>\n";
9c0ca6f9 1041 #}
0a920b5b 1042
d8aaf121
AW
1043 # ; should have either the end of line or a space or \ after it
1044 if ($op eq ';') {
de7d4f0e
AW
1045 if ($ctx !~ /.x[WEB]/ && $cc !~ /^\\/ &&
1046 $cc !~ /^;/) {
1047 ERROR("need space after that '$op' $at\n" . $hereptr);
d8aaf121
AW
1048 }
1049
1050 # // is a comment
1051 } elsif ($op eq '//') {
0a920b5b
AW
1052
1053 # -> should have no spaces
1054 } elsif ($op eq '->') {
4a0df2ef 1055 if ($ctx =~ /Wx.|.xW/) {
de7d4f0e 1056 ERROR("no spaces around that '$op' $at\n" . $hereptr);
0a920b5b
AW
1057 }
1058
1059 # , must have a space on the right.
1060 } elsif ($op eq ',') {
d8aaf121 1061 if ($ctx !~ /.xW|.xE/ && $cc !~ /^}/) {
de7d4f0e 1062 ERROR("need space after that '$op' $at\n" . $hereptr);
0a920b5b
AW
1063 }
1064
9c0ca6f9
AW
1065 # '*' as part of a type definition -- reported already.
1066 } elsif ($op eq '*' && $is_unary == 2) {
1067 #warn "'*' is part of type\n";
1068
1069 # unary operators should have a space before and
1070 # none after. May be left adjacent to another
1071 # unary operator, or a cast
1072 } elsif ($op eq '!' || $op eq '~' ||
1073 ($is_unary && ($op eq '*' || $op eq '-' || $op eq '&'))) {
1074 if ($ctx !~ /[WEB]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
de7d4f0e 1075 ERROR("need space before that '$op' $at\n" . $hereptr);
0a920b5b 1076 }
4a0df2ef 1077 if ($ctx =~ /.xW/) {
de7d4f0e 1078 ERROR("no space after that '$op' $at\n" . $hereptr);
0a920b5b
AW
1079 }
1080
1081 # unary ++ and unary -- are allowed no space on one side.
1082 } elsif ($op eq '++' or $op eq '--') {
d8aaf121 1083 if ($ctx !~ /[WOB]x[^W]/ && $ctx !~ /[^W]x[WOBE]/) {
de7d4f0e 1084 ERROR("need space one side of that '$op' $at\n" . $hereptr);
0a920b5b 1085 }
d8aaf121 1086 if ($ctx =~ /Wx./ && $cc =~ /^;/) {
de7d4f0e 1087 ERROR("no space before that '$op' $at\n" . $hereptr);
653d4876 1088 }
0a920b5b 1089
0a920b5b 1090 # << and >> may either have or not have spaces both sides
9c0ca6f9
AW
1091 } elsif ($op eq '<<' or $op eq '>>' or
1092 $op eq '&' or $op eq '^' or $op eq '|' or
1093 $op eq '+' or $op eq '-' or
1094 $op eq '*' or $op eq '/')
0a920b5b 1095 {
9c0ca6f9 1096 if ($ctx !~ /VxV|WxW|VxE|WxE|VxO/) {
de7d4f0e
AW
1097 ERROR("need consistent spacing around '$op' $at\n" .
1098 $hereptr);
0a920b5b
AW
1099 }
1100
1101 # All the others need spaces both sides.
4a0df2ef 1102 } elsif ($ctx !~ /[EW]x[WE]/) {
22f2a2ef
AW
1103 # Ignore email addresses <foo@bar>
1104 if (!($op eq '<' && $cb =~ /$;\S+\@\S+>/) &&
1105 !($op eq '>' && $cb =~ /<\S+\@\S+$;/)) {
1106 ERROR("need spaces around that '$op' $at\n" . $hereptr);
1107 }
0a920b5b 1108 }
4a0df2ef 1109 $off += length($elements[$n + 1]);
0a920b5b
AW
1110 }
1111 }
1112
f0a594c1
AW
1113# check for multiple assignments
1114 if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
6c72ffaa 1115 CHK("multiple assignments should be avoided\n" . $herecurr);
f0a594c1
AW
1116 }
1117
22f2a2ef
AW
1118## # check for multiple declarations, allowing for a function declaration
1119## # continuation.
1120## if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
1121## $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
1122##
1123## # Remove any bracketed sections to ensure we do not
1124## # falsly report the parameters of functions.
1125## my $ln = $line;
1126## while ($ln =~ s/\([^\(\)]*\)//g) {
1127## }
1128## if ($ln =~ /,/) {
1129## WARN("declaring multiple variables together should be avoided\n" . $herecurr);
1130## }
1131## }
f0a594c1 1132
0a920b5b 1133#need space before brace following if, while, etc
22f2a2ef
AW
1134 if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) ||
1135 $line =~ /do{/) {
de7d4f0e
AW
1136 ERROR("need a space before the open brace '{'\n" . $herecurr);
1137 }
1138
1139# closing brace should have a space following it when it has anything
1140# on the line
1141 if ($line =~ /}(?!(?:,|;|\)))\S/) {
1142 ERROR("need a space after that close brace '}'\n" . $herecurr);
0a920b5b
AW
1143 }
1144
22f2a2ef
AW
1145# check spacing on square brackets
1146 if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
1147 ERROR("no space after that open square bracket '['\n" . $herecurr);
1148 }
1149 if ($line =~ /\s\]/) {
1150 ERROR("no space before that close square bracket ']'\n" . $herecurr);
1151 }
1152
1153# check spacing on paretheses
9c0ca6f9
AW
1154 if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
1155 $line !~ /for\s*\(\s+;/) {
22f2a2ef
AW
1156 ERROR("no space after that open parenthesis '('\n" . $herecurr);
1157 }
9c0ca6f9
AW
1158 if ($line =~ /\s\)/ && $line !~ /^.\s*\)/ &&
1159 $line !~ /for\s*\(.*;\s+\)/) {
22f2a2ef
AW
1160 ERROR("no space before that close parenthesis ')'\n" . $herecurr);
1161 }
1162
0a920b5b 1163#goto labels aren't indented, allow a single space however
4a0df2ef 1164 if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
0a920b5b 1165 !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
de7d4f0e 1166 WARN("labels should not be indented\n" . $herecurr);
0a920b5b
AW
1167 }
1168
1169# Need a space before open parenthesis after if, while etc
4a0df2ef 1170 if ($line=~/\b(if|while|for|switch)\(/) {
de7d4f0e 1171 ERROR("need a space before the open parenthesis '('\n" . $herecurr);
0a920b5b
AW
1172 }
1173
1174# Check for illegal assignment in if conditional.
6c72ffaa 1175 if ($line=~/\bif\s*\(.*[^<>!=]=[^=]/) {
00df344f 1176 #next if ($line=~/\".*\Q$op\E.*\"/ or $line=~/\'\Q$op\E\'/);
de7d4f0e 1177 ERROR("do not use assignment in if condition\n" . $herecurr);
0a920b5b
AW
1178 }
1179
1180 # Check for }<nl>else {, these must be at the same
1181 # indent level to be relevant to each other.
1182 if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ and
1183 $previndent == $indent) {
de7d4f0e 1184 ERROR("else should follow close brace '}'\n" . $hereprev);
0a920b5b
AW
1185 }
1186
0a920b5b
AW
1187#studly caps, commented out until figure out how to distinguish between use of existing and adding new
1188# if (($line=~/[\w_][a-z\d]+[A-Z]/) and !($line=~/print/)) {
1189# print "No studly caps, use _\n";
1190# print "$herecurr";
1191# $clean = 0;
1192# }
1193
1194#no spaces allowed after \ in define
1195 if ($line=~/\#define.*\\\s$/) {
de7d4f0e 1196 WARN("Whitepspace after \\ makes next lines useless\n" . $herecurr);
0a920b5b
AW
1197 }
1198
653d4876
AW
1199#warn if <asm/foo.h> is #included and <linux/foo.h> is available (uses RAW line)
1200 if ($tree && $rawline =~ m{^.\#\s*include\s*\<asm\/(.*)\.h\>}) {
6c72ffaa
AW
1201 my $checkfile = "$root/include/linux/$1.h";
1202 if (-f $checkfile && $1 ne 'irq.h') {
de7d4f0e
AW
1203 CHK("Use #include <linux/$1.h> instead of <asm/$1.h>\n" .
1204 $herecurr);
0a920b5b
AW
1205 }
1206 }
1207
d8aaf121
AW
1208# if and else should not have general statements after it
1209 if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/ &&
de7d4f0e
AW
1210 $1 !~ /^\s*(?:\sif|{|\\|$)/) {
1211 ERROR("trailing statements should be on next line\n" . $herecurr);
d8aaf121
AW
1212 }
1213
653d4876
AW
1214# multi-statement macros should be enclosed in a do while loop, grab the
1215# first statement and ensure its the whole macro if its not enclosed
1216# in a known goot container
9c0ca6f9
AW
1217 if ($prevline =~ /\#define.*\\/ &&
1218 $prevline !~/(?:do\s+{|\(\{|\{)/ &&
1219 $line !~ /(?:do\s+{|\(\{|\{)/ &&
1220 $line !~ /^.\s*$Declare\s/) {
653d4876
AW
1221 # Grab the first statement, if that is the entire macro
1222 # its ok. This may start either on the #define line
1223 # or the one below.
d8aaf121
AW
1224 my $ln = $linenr;
1225 my $cnt = $realcnt;
f0a594c1 1226 my $off = 0;
653d4876 1227
f0a594c1
AW
1228 # If the macro starts on the define line start
1229 # grabbing the statement after the identifier
1230 $prevline =~ m{^(.#\s*define\s*$Ident(?:\([^\)]*\))?\s*)(.*)\\\s*$};
1231 ##print "1<$1> 2<$2>\n";
22f2a2ef 1232 if (defined $2 && $2 ne '') {
f0a594c1 1233 $off = length($1);
d8aaf121
AW
1234 $ln--;
1235 $cnt++;
1236 }
f0a594c1 1237 my @ctx = ctx_statement($ln, $cnt, $off);
de7d4f0e
AW
1238 my $ctx_ln = $ln + $#ctx + 1;
1239 my $ctx = join("\n", @ctx);
1240
1241 # Pull in any empty extension lines.
1242 while ($ctx =~ /\\$/ &&
1243 $lines[$ctx_ln - 1] =~ /^.\s*(?:\\)?$/) {
1244 $ctx .= $lines[$ctx_ln - 1];
1245 $ctx_ln++;
1246 }
d8aaf121
AW
1247
1248 if ($ctx =~ /\\$/) {
1249 if ($ctx =~ /;/) {
de7d4f0e 1250 ERROR("Macros with multiple statements should be enclosed in a do - while loop\n" . "$here\n$ctx\n");
d8aaf121 1251 } else {
de7d4f0e 1252 ERROR("Macros with complex values should be enclosed in parenthesis\n" . "$here\n$ctx\n");
d8aaf121 1253 }
653d4876 1254 }
0a920b5b
AW
1255 }
1256
f0a594c1
AW
1257# check for redundant bracing round if etc
1258 if ($line =~ /\b(if|while|for|else)\b/) {
1259 # Locate the end of the opening statement.
1260 my @control = ctx_statement($linenr, $realcnt, 0);
1261 my $nr = $linenr + (scalar(@control) - 1);
1262 my $cnt = $realcnt - (scalar(@control) - 1);
1263
1264 my $off = $realcnt - $cnt;
1265 #print "$off: line<$line>end<" . $lines[$nr - 1] . ">\n";
1266
1267 # If this is is a braced statement group check it
1268 if ($lines[$nr - 1] =~ /{\s*$/) {
1269 my ($lvl, @block) = ctx_block_level($nr, $cnt);
1270
1271 my $stmt = join(' ', @block);
22f2a2ef
AW
1272 $stmt =~ s/(^[^{]*){//;
1273 my $before = $1;
1274 $stmt =~ s/}([^}]*$)//;
1275 my $after = $1;
f0a594c1
AW
1276
1277 #print "block<" . join(' ', @block) . "><" . scalar(@block) . ">\n";
1278 #print "stmt<$stmt>\n\n";
1279
1280 # Count the ;'s if there is fewer than two
1281 # then there can only be one statement,
1282 # if there is a brace inside we cannot
1283 # trivially detect if its one statement.
1284 # Also nested if's often require braces to
1285 # disambiguate the else binding so shhh there.
1286 my @semi = ($stmt =~ /;/g);
22f2a2ef 1287 push(@semi, "/**/") if ($stmt =~ m@/\*@);
f0a594c1
AW
1288 ##print "semi<" . scalar(@semi) . ">\n";
1289 if ($lvl == 0 && scalar(@semi) < 2 &&
22f2a2ef
AW
1290 $stmt !~ /{/ && $stmt !~ /\bif\b/ &&
1291 $before !~ /}/ && $after !~ /{/) {
f0a594c1
AW
1292 my $herectx = "$here\n" . join("\n", @control, @block[1 .. $#block]) . "\n";
1293 shift(@block);
22f2a2ef 1294 WARN("braces {} are not necessary for single statement blocks\n" . $herectx);
f0a594c1
AW
1295 }
1296 }
1297 }
1298
653d4876 1299# don't include deprecated include files (uses RAW line)
4a0df2ef 1300 for my $inc (@dep_includes) {
653d4876 1301 if ($rawline =~ m@\#\s*include\s*\<$inc>@) {
de7d4f0e 1302 ERROR("Don't use <$inc>: see Documentation/feature-removal-schedule.txt\n" . $herecurr);
0a920b5b
AW
1303 }
1304 }
1305
4a0df2ef
AW
1306# don't use deprecated functions
1307 for my $func (@dep_functions) {
00df344f 1308 if ($line =~ /\b$func\b/) {
de7d4f0e 1309 ERROR("Don't use $func(): see Documentation/feature-removal-schedule.txt\n" . $herecurr);
4a0df2ef
AW
1310 }
1311 }
1312
1313# no volatiles please
6c72ffaa
AW
1314 my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
1315 if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
de7d4f0e 1316 WARN("Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt\n" . $herecurr);
4a0df2ef
AW
1317 }
1318
9c0ca6f9
AW
1319# SPIN_LOCK_UNLOCKED & RW_LOCK_UNLOCKED are deprecated
1320 if ($line =~ /\b(SPIN_LOCK_UNLOCKED|RW_LOCK_UNLOCKED)/) {
1321 ERROR("Use of $1 is deprecated: see Documentation/spinlocks.txt\n" . $herecurr);
1322 }
1323
00df344f
AW
1324# warn about #if 0
1325 if ($line =~ /^.#\s*if\s+0\b/) {
de7d4f0e
AW
1326 CHK("if this code is redundant consider removing it\n" .
1327 $herecurr);
4a0df2ef
AW
1328 }
1329
f0a594c1
AW
1330# check for needless kfree() checks
1331 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
1332 my $expr = $1;
1333 if ($line =~ /\bkfree\(\Q$expr\E\);/) {
1334 WARN("kfree(NULL) is safe this check is probabally not required\n" . $hereprev);
1335 }
1336 }
1337
00df344f
AW
1338# warn about #ifdefs in C files
1339# if ($line =~ /^.#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
1340# print "#ifdef in C files should be avoided\n";
1341# print "$herecurr";
1342# $clean = 0;
1343# }
1344
22f2a2ef
AW
1345# warn about spacing in #ifdefs
1346 if ($line =~ /^.#\s*(ifdef|ifndef|elif)\s\s+/) {
1347 ERROR("exactly one space required after that #$1\n" . $herecurr);
1348 }
1349
4a0df2ef
AW
1350# check for spinlock_t definitions without a comment.
1351 if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/) {
1352 my $which = $1;
1353 if (!ctx_has_comment($first_line, $linenr)) {
de7d4f0e 1354 CHK("$1 definition without comment\n" . $herecurr);
4a0df2ef
AW
1355 }
1356 }
1357# check for memory barriers without a comment.
1358 if ($line =~ /\b(mb|rmb|wmb|read_barrier_depends|smp_mb|smp_rmb|smp_wmb|smp_read_barrier_depends)\(/) {
1359 if (!ctx_has_comment($first_line, $linenr)) {
de7d4f0e 1360 CHK("memory barrier without comment\n" . $herecurr);
4a0df2ef
AW
1361 }
1362 }
1363# check of hardware specific defines
22f2a2ef 1364 if ($line =~ m@^.#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
de7d4f0e 1365 CHK("architecture specific defines should be avoided\n" . $herecurr);
0a920b5b 1366 }
653d4876 1367
de7d4f0e
AW
1368# check the location of the inline attribute, that it is between
1369# storage class and type.
9c0ca6f9
AW
1370 if ($line =~ /\b$Type\s+$Inline\b/ ||
1371 $line =~ /\b$Inline\s+$Storage\b/) {
de7d4f0e
AW
1372 ERROR("inline keyword should sit between storage class and type\n" . $herecurr);
1373 }
1374
1375# check for new externs in .c files.
1376 if ($line =~ /^.\s*extern\s/ && ($realfile =~ /\.c$/)) {
1377 WARN("externs should be avoided in .c files\n" . $herecurr);
1378 }
1379
1380# checks for new __setup's
1381 if ($rawline =~ /\b__setup\("([^"]*)"/) {
1382 my $name = $1;
1383
1384 if (!grep(/$name/, @setup_docs)) {
1385 CHK("__setup appears un-documented -- check Documentation/kernel-parameters.txt\n" . $herecurr);
1386 }
653d4876 1387 }
9c0ca6f9
AW
1388
1389# check for pointless casting of kmalloc return
1390 if ($line =~ /\*\s*\)\s*k[czm]alloc\b/) {
1391 WARN("unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
1392 }
0a920b5b
AW
1393 }
1394
1395 if ($chk_patch && !$is_patch) {
de7d4f0e 1396 ERROR("Does not appear to be a unified-diff format patch\n");
0a920b5b
AW
1397 }
1398 if ($is_patch && $chk_signoff && $signoff == 0) {
de7d4f0e 1399 ERROR("Missing Signed-off-by: line(s)\n");
0a920b5b
AW
1400 }
1401
f0a594c1
AW
1402 if ($clean == 0 && ($chk_patch || $is_patch)) {
1403 print report_dump();
6c72ffaa
AW
1404 if ($quiet < 2) {
1405 print "total: $cnt_error errors, $cnt_warn warnings, " .
1406 (($check)? "$cnt_chk checks, " : "") .
1407 "$cnt_lines lines checked\n";
1408 }
f0a594c1 1409 }
0a920b5b
AW
1410 if ($clean == 1 && $quiet == 0) {
1411 print "Your patch has no obvious style problems and is ready for submission.\n"
1412 }
1413 if ($clean == 0 && $quiet == 0) {
1414 print "Your patch has style problems, please review. If any of these errors\n";
1415 print "are false positives report them to the maintainer, see\n";
1416 print "CHECKPATCH in MAINTAINERS.\n";
1417 }
1418 return $clean;
1419}