checkpatch: improve "no space after cast" test
[linux-2.6-block.git] / scripts / checkpatch.pl
CommitLineData
0a920b5b 1#!/usr/bin/perl -w
dbf004d7 2# (c) 2001, Dave Jones. (the file handling bit)
00df344f 3# (c) 2005, Joel Schopp <jschopp@austin.ibm.com> (the ugly bit)
2a5a2c25 4# (c) 2007,2008, Andy Whitcroft <apw@uk.ibm.com> (new conditions, test suite)
015830be 5# (c) 2008-2010 Andy Whitcroft <apw@canonical.com>
0a920b5b
AW
6# Licensed under the terms of the GNU GPL License version 2
7
8use strict;
9
10my $P = $0;
00df344f 11$P =~ s@.*/@@g;
0a920b5b 12
000d1cc1 13my $V = '0.32';
0a920b5b
AW
14
15use Getopt::Long qw(:config no_auto_abbrev);
16
17my $quiet = 0;
18my $tree = 1;
19my $chk_signoff = 1;
20my $chk_patch = 1;
773647a0 21my $tst_only;
6c72ffaa 22my $emacs = 0;
8905a67c 23my $terse = 0;
6c72ffaa
AW
24my $file = 0;
25my $check = 0;
8905a67c
AW
26my $summary = 1;
27my $mailback = 0;
13214adf 28my $summary_file = 0;
000d1cc1 29my $show_types = 0;
6c72ffaa 30my $root;
c2fdda0d 31my %debug;
000d1cc1
JP
32my %ignore_type = ();
33my @ignore = ();
77f5b10a 34my $help = 0;
000d1cc1 35my $configuration_file = ".checkpatch.conf";
6cd7f386 36my $max_line_length = 80;
77f5b10a
HE
37
38sub help {
39 my ($exitcode) = @_;
40
41 print << "EOM";
42Usage: $P [OPTION]... [FILE]...
43Version: $V
44
45Options:
46 -q, --quiet quiet
47 --no-tree run without a kernel tree
48 --no-signoff do not check for 'Signed-off-by' line
49 --patch treat FILE as patchfile (default)
50 --emacs emacs compile window format
51 --terse one line per report
52 -f, --file treat FILE as regular source file
53 --subjective, --strict enable more subjective tests
000d1cc1 54 --ignore TYPE(,TYPE2...) ignore various comma separated message types
6cd7f386 55 --max-line-length=n set the maximum line length, if exceeded, warn
000d1cc1 56 --show-types show the message "types" in the output
77f5b10a
HE
57 --root=PATH PATH to the kernel tree root
58 --no-summary suppress the per-file summary
59 --mailback only produce a report in case of warnings/errors
60 --summary-file include the filename in summary
61 --debug KEY=[0|1] turn on/off debugging of KEY, where KEY is one of
62 'values', 'possible', 'type', and 'attr' (default
63 is all off)
64 --test-only=WORD report only warnings/errors containing WORD
65 literally
66 -h, --help, --version display this help and exit
67
68When FILE is - read standard input.
69EOM
70
71 exit($exitcode);
72}
73
000d1cc1
JP
74my $conf = which_conf($configuration_file);
75if (-f $conf) {
76 my @conf_args;
77 open(my $conffile, '<', "$conf")
78 or warn "$P: Can't find a readable $configuration_file file $!\n";
79
80 while (<$conffile>) {
81 my $line = $_;
82
83 $line =~ s/\s*\n?$//g;
84 $line =~ s/^\s*//g;
85 $line =~ s/\s+/ /g;
86
87 next if ($line =~ m/^\s*#/);
88 next if ($line =~ m/^\s*$/);
89
90 my @words = split(" ", $line);
91 foreach my $word (@words) {
92 last if ($word =~ m/^#/);
93 push (@conf_args, $word);
94 }
95 }
96 close($conffile);
97 unshift(@ARGV, @conf_args) if @conf_args;
98}
99
0a920b5b 100GetOptions(
6c72ffaa 101 'q|quiet+' => \$quiet,
0a920b5b
AW
102 'tree!' => \$tree,
103 'signoff!' => \$chk_signoff,
104 'patch!' => \$chk_patch,
6c72ffaa 105 'emacs!' => \$emacs,
8905a67c 106 'terse!' => \$terse,
77f5b10a 107 'f|file!' => \$file,
6c72ffaa
AW
108 'subjective!' => \$check,
109 'strict!' => \$check,
000d1cc1
JP
110 'ignore=s' => \@ignore,
111 'show-types!' => \$show_types,
6cd7f386 112 'max-line-length=i' => \$max_line_length,
6c72ffaa 113 'root=s' => \$root,
8905a67c
AW
114 'summary!' => \$summary,
115 'mailback!' => \$mailback,
13214adf
AW
116 'summary-file!' => \$summary_file,
117
c2fdda0d 118 'debug=s' => \%debug,
773647a0 119 'test-only=s' => \$tst_only,
77f5b10a
HE
120 'h|help' => \$help,
121 'version' => \$help
122) or help(1);
123
124help(0) if ($help);
0a920b5b
AW
125
126my $exit = 0;
127
128if ($#ARGV < 0) {
77f5b10a 129 print "$P: no input files\n";
0a920b5b
AW
130 exit(1);
131}
132
000d1cc1
JP
133@ignore = split(/,/, join(',',@ignore));
134foreach my $word (@ignore) {
135 $word =~ s/\s*\n?$//g;
136 $word =~ s/^\s*//g;
137 $word =~ s/\s+/ /g;
138 $word =~ tr/[a-z]/[A-Z]/;
139
140 next if ($word =~ m/^\s*#/);
141 next if ($word =~ m/^\s*$/);
142
143 $ignore_type{$word}++;
144}
145
c2fdda0d
AW
146my $dbg_values = 0;
147my $dbg_possible = 0;
7429c690 148my $dbg_type = 0;
a1ef277e 149my $dbg_attr = 0;
c2fdda0d 150for my $key (keys %debug) {
21caa13c
AW
151 ## no critic
152 eval "\${dbg_$key} = '$debug{$key}';";
153 die "$@" if ($@);
c2fdda0d
AW
154}
155
d2c0a235
AW
156my $rpt_cleaners = 0;
157
8905a67c
AW
158if ($terse) {
159 $emacs = 1;
160 $quiet++;
161}
162
6c72ffaa
AW
163if ($tree) {
164 if (defined $root) {
165 if (!top_of_kernel_tree($root)) {
166 die "$P: $root: --root does not point at a valid tree\n";
167 }
168 } else {
169 if (top_of_kernel_tree('.')) {
170 $root = '.';
171 } elsif ($0 =~ m@(.*)/scripts/[^/]*$@ &&
172 top_of_kernel_tree($1)) {
173 $root = $1;
174 }
175 }
176
177 if (!defined $root) {
178 print "Must be run from the top-level dir. of a kernel tree\n";
179 exit(2);
180 }
0a920b5b
AW
181}
182
6c72ffaa
AW
183my $emitted_corrupt = 0;
184
2ceb532b
AW
185our $Ident = qr{
186 [A-Za-z_][A-Za-z\d_]*
187 (?:\s*\#\#\s*[A-Za-z_][A-Za-z\d_]*)*
188 }x;
6c72ffaa
AW
189our $Storage = qr{extern|static|asmlinkage};
190our $Sparse = qr{
191 __user|
192 __kernel|
193 __force|
194 __iomem|
195 __must_check|
196 __init_refok|
417495ed 197 __kprobes|
165e72a6
SE
198 __ref|
199 __rcu
6c72ffaa 200 }x;
52131292
WS
201
202# Notes to $Attribute:
203# We need \b after 'init' otherwise 'initconst' will cause a false positive in a check
6c72ffaa
AW
204our $Attribute = qr{
205 const|
03f1df7d
JP
206 __percpu|
207 __nocast|
208 __safe|
209 __bitwise__|
210 __packed__|
211 __packed2__|
212 __naked|
213 __maybe_unused|
214 __always_unused|
215 __noreturn|
216 __used|
217 __cold|
218 __noclone|
219 __deprecated|
6c72ffaa
AW
220 __read_mostly|
221 __kprobes|
52131292 222 __(?:mem|cpu|dev|)(?:initdata|initconst|init\b)|
24e1d81a
AW
223 ____cacheline_aligned|
224 ____cacheline_aligned_in_smp|
5fe3af11
AW
225 ____cacheline_internodealigned_in_smp|
226 __weak
6c72ffaa 227 }x;
c45dcabd 228our $Modifier;
6c72ffaa 229our $Inline = qr{inline|__always_inline|noinline};
6c72ffaa
AW
230our $Member = qr{->$Ident|\.$Ident|\[[^]]*\]};
231our $Lval = qr{$Ident(?:$Member)*};
232
95e2c602
JP
233our $Int_type = qr{(?i)llu|ull|ll|lu|ul|l|u};
234our $Binary = qr{(?i)0b[01]+$Int_type?};
235our $Hex = qr{(?i)0x[0-9a-f]+$Int_type?};
236our $Int = qr{[0-9]+$Int_type?};
326b1ffc
JP
237our $Float_hex = qr{(?i)0x[0-9a-f]+p-?[0-9]+[fl]?};
238our $Float_dec = qr{(?i)(?:[0-9]+\.[0-9]*|[0-9]*\.[0-9]+)(?:e-?[0-9]+)?[fl]?};
239our $Float_int = qr{(?i)[0-9]+e-?[0-9]+[fl]?};
74349bcc 240our $Float = qr{$Float_hex|$Float_dec|$Float_int};
95e2c602 241our $Constant = qr{$Float|$Binary|$Hex|$Int};
326b1ffc 242our $Assignment = qr{\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=};
86f9d059 243our $Compare = qr{<=|>=|==|!=|<|>};
23f780c9 244our $Arithmetic = qr{\+|-|\*|\/|%};
6c72ffaa
AW
245our $Operators = qr{
246 <=|>=|==|!=|
247 =>|->|<<|>>|<|>|!|~|
23f780c9 248 &&|\|\||,|\^|\+\+|--|&|\||$Arithmetic
6c72ffaa
AW
249 }x;
250
8905a67c
AW
251our $NonptrType;
252our $Type;
253our $Declare;
254
15662b3e
JP
255our $NON_ASCII_UTF8 = qr{
256 [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
171ae1a4
AW
257 | \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
258 | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
259 | \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
260 | \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
261 | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
262 | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
263}x;
264
15662b3e
JP
265our $UTF8 = qr{
266 [\x09\x0A\x0D\x20-\x7E] # ASCII
267 | $NON_ASCII_UTF8
268}x;
269
8ed22cad 270our $typeTypedefs = qr{(?x:
fb9e9096 271 (?:__)?(?:u|s|be|le)(?:8|16|32|64)|
8ed22cad
AW
272 atomic_t
273)};
274
691e669b 275our $logFunctions = qr{(?x:
6e60c02e
JP
276 printk(?:_ratelimited|_once|)|
277 [a-z0-9]+_(?:printk|emerg|alert|crit|err|warning|warn|notice|info|debug|dbg|vdbg|devel|cont|WARN)(?:_ratelimited|_once|)|
278 WARN(?:_RATELIMIT|_ONCE|)|
b0531722
JP
279 panic|
280 MODULE_[A-Z_]+
691e669b
JP
281)};
282
20112475
JP
283our $signature_tags = qr{(?xi:
284 Signed-off-by:|
285 Acked-by:|
286 Tested-by:|
287 Reviewed-by:|
288 Reported-by:|
8543ae12 289 Suggested-by:|
20112475
JP
290 To:|
291 Cc:
292)};
293
8905a67c
AW
294our @typeList = (
295 qr{void},
c45dcabd
AW
296 qr{(?:unsigned\s+)?char},
297 qr{(?:unsigned\s+)?short},
298 qr{(?:unsigned\s+)?int},
299 qr{(?:unsigned\s+)?long},
300 qr{(?:unsigned\s+)?long\s+int},
301 qr{(?:unsigned\s+)?long\s+long},
302 qr{(?:unsigned\s+)?long\s+long\s+int},
8905a67c
AW
303 qr{unsigned},
304 qr{float},
305 qr{double},
306 qr{bool},
8905a67c
AW
307 qr{struct\s+$Ident},
308 qr{union\s+$Ident},
309 qr{enum\s+$Ident},
310 qr{${Ident}_t},
311 qr{${Ident}_handler},
312 qr{${Ident}_handler_fn},
313);
c45dcabd
AW
314our @modifierList = (
315 qr{fastcall},
316);
8905a67c 317
7840a94c
WS
318our $allowed_asm_includes = qr{(?x:
319 irq|
320 memory
321)};
322# memory.h: ARM has a custom one
323
8905a67c 324sub build_types {
d2172eb5
AW
325 my $mods = "(?x: \n" . join("|\n ", @modifierList) . "\n)";
326 my $all = "(?x: \n" . join("|\n ", @typeList) . "\n)";
c8cb2ca3 327 $Modifier = qr{(?:$Attribute|$Sparse|$mods)};
8905a67c 328 $NonptrType = qr{
d2172eb5 329 (?:$Modifier\s+|const\s+)*
cf655043 330 (?:
6b48db24 331 (?:typeof|__typeof__)\s*\([^\)]*\)|
8ed22cad 332 (?:$typeTypedefs\b)|
c45dcabd 333 (?:${all}\b)
cf655043 334 )
c8cb2ca3 335 (?:\s+$Modifier|\s+const)*
8905a67c
AW
336 }x;
337 $Type = qr{
c45dcabd 338 $NonptrType
b337d8b8 339 (?:(?:\s|\*|\[\])+\s*const|(?:\s|\*|\[\])+|(?:\s*\[\s*\])+)?
c8cb2ca3 340 (?:\s+$Inline|\s+$Modifier)*
8905a67c
AW
341 }x;
342 $Declare = qr{(?:$Storage\s+)?$Type};
343}
344build_types();
6c72ffaa 345
7d2367af
JP
346
347our $Typecast = qr{\s*(\(\s*$NonptrType\s*\)){0,1}\s*};
d1fe9c09
JP
348
349# Using $balanced_parens, $LvalOrFunc, or $FuncArg
350# requires at least perl version v5.10.0
351# Any use must be runtime checked with $^V
352
353our $balanced_parens = qr/(\((?:[^\(\)]++|(?-1))*\))/;
354our $LvalOrFunc = qr{($Lval)\s*($balanced_parens{0,1})\s*};
d7c76ba7 355our $FuncArg = qr{$Typecast{0,1}($LvalOrFunc|$Constant)};
7d2367af
JP
356
357sub deparenthesize {
358 my ($string) = @_;
359 return "" if (!defined($string));
360 $string =~ s@^\s*\(\s*@@g;
361 $string =~ s@\s*\)\s*$@@g;
362 $string =~ s@\s+@ @g;
363 return $string;
364}
365
6c72ffaa
AW
366$chk_signoff = 0 if ($file);
367
00df344f 368my @rawlines = ();
c2fdda0d
AW
369my @lines = ();
370my $vname;
6c72ffaa 371for my $filename (@ARGV) {
21caa13c 372 my $FILE;
6c72ffaa 373 if ($file) {
21caa13c 374 open($FILE, '-|', "diff -u /dev/null $filename") ||
6c72ffaa 375 die "$P: $filename: diff failed - $!\n";
21caa13c
AW
376 } elsif ($filename eq '-') {
377 open($FILE, '<&STDIN');
6c72ffaa 378 } else {
21caa13c 379 open($FILE, '<', "$filename") ||
6c72ffaa 380 die "$P: $filename: open failed - $!\n";
0a920b5b 381 }
c2fdda0d
AW
382 if ($filename eq '-') {
383 $vname = 'Your patch';
384 } else {
385 $vname = $filename;
386 }
21caa13c 387 while (<$FILE>) {
6c72ffaa
AW
388 chomp;
389 push(@rawlines, $_);
390 }
21caa13c 391 close($FILE);
c2fdda0d 392 if (!process($filename)) {
6c72ffaa
AW
393 $exit = 1;
394 }
395 @rawlines = ();
13214adf 396 @lines = ();
0a920b5b
AW
397}
398
399exit($exit);
400
401sub top_of_kernel_tree {
6c72ffaa
AW
402 my ($root) = @_;
403
404 my @tree_check = (
405 "COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
406 "README", "Documentation", "arch", "include", "drivers",
407 "fs", "init", "ipc", "kernel", "lib", "scripts",
408 );
409
410 foreach my $check (@tree_check) {
411 if (! -e $root . '/' . $check) {
412 return 0;
413 }
0a920b5b 414 }
6c72ffaa 415 return 1;
8f26b837 416}
0a920b5b 417
20112475
JP
418sub parse_email {
419 my ($formatted_email) = @_;
420
421 my $name = "";
422 my $address = "";
423 my $comment = "";
424
425 if ($formatted_email =~ /^(.*)<(\S+\@\S+)>(.*)$/) {
426 $name = $1;
427 $address = $2;
428 $comment = $3 if defined $3;
429 } elsif ($formatted_email =~ /^\s*<(\S+\@\S+)>(.*)$/) {
430 $address = $1;
431 $comment = $2 if defined $2;
432 } elsif ($formatted_email =~ /(\S+\@\S+)(.*)$/) {
433 $address = $1;
434 $comment = $2 if defined $2;
435 $formatted_email =~ s/$address.*$//;
436 $name = $formatted_email;
437 $name =~ s/^\s+|\s+$//g;
438 $name =~ s/^\"|\"$//g;
439 # If there's a name left after stripping spaces and
440 # leading quotes, and the address doesn't have both
441 # leading and trailing angle brackets, the address
442 # is invalid. ie:
443 # "joe smith joe@smith.com" bad
444 # "joe smith <joe@smith.com" bad
445 if ($name ne "" && $address !~ /^<[^>]+>$/) {
446 $name = "";
447 $address = "";
448 $comment = "";
449 }
450 }
451
452 $name =~ s/^\s+|\s+$//g;
453 $name =~ s/^\"|\"$//g;
454 $address =~ s/^\s+|\s+$//g;
455 $address =~ s/^\<|\>$//g;
456
457 if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
458 $name =~ s/(?<!\\)"/\\"/g; ##escape quotes
459 $name = "\"$name\"";
460 }
461
462 return ($name, $address, $comment);
463}
464
465sub format_email {
466 my ($name, $address) = @_;
467
468 my $formatted_email;
469
470 $name =~ s/^\s+|\s+$//g;
471 $name =~ s/^\"|\"$//g;
472 $address =~ s/^\s+|\s+$//g;
473
474 if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
475 $name =~ s/(?<!\\)"/\\"/g; ##escape quotes
476 $name = "\"$name\"";
477 }
478
479 if ("$name" eq "") {
480 $formatted_email = "$address";
481 } else {
482 $formatted_email = "$name <$address>";
483 }
484
485 return $formatted_email;
486}
487
000d1cc1
JP
488sub which_conf {
489 my ($conf) = @_;
490
491 foreach my $path (split(/:/, ".:$ENV{HOME}:.scripts")) {
492 if (-e "$path/$conf") {
493 return "$path/$conf";
494 }
495 }
496
497 return "";
498}
499
0a920b5b
AW
500sub expand_tabs {
501 my ($str) = @_;
502
503 my $res = '';
504 my $n = 0;
505 for my $c (split(//, $str)) {
506 if ($c eq "\t") {
507 $res .= ' ';
508 $n++;
509 for (; ($n % 8) != 0; $n++) {
510 $res .= ' ';
511 }
512 next;
513 }
514 $res .= $c;
515 $n++;
516 }
517
518 return $res;
519}
6c72ffaa 520sub copy_spacing {
773647a0 521 (my $res = shift) =~ tr/\t/ /c;
6c72ffaa
AW
522 return $res;
523}
0a920b5b 524
4a0df2ef
AW
525sub line_stats {
526 my ($line) = @_;
527
528 # Drop the diff line leader and expand tabs
529 $line =~ s/^.//;
530 $line = expand_tabs($line);
531
532 # Pick the indent from the front of the line.
533 my ($white) = ($line =~ /^(\s*)/);
534
535 return (length($line), length($white));
536}
537
773647a0
AW
538my $sanitise_quote = '';
539
540sub sanitise_line_reset {
541 my ($in_comment) = @_;
542
543 if ($in_comment) {
544 $sanitise_quote = '*/';
545 } else {
546 $sanitise_quote = '';
547 }
548}
00df344f
AW
549sub sanitise_line {
550 my ($line) = @_;
551
552 my $res = '';
553 my $l = '';
554
c2fdda0d 555 my $qlen = 0;
773647a0
AW
556 my $off = 0;
557 my $c;
00df344f 558
773647a0
AW
559 # Always copy over the diff marker.
560 $res = substr($line, 0, 1);
561
562 for ($off = 1; $off < length($line); $off++) {
563 $c = substr($line, $off, 1);
564
565 # Comments we are wacking completly including the begin
566 # and end, all to $;.
567 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
568 $sanitise_quote = '*/';
569
570 substr($res, $off, 2, "$;$;");
571 $off++;
572 next;
00df344f 573 }
81bc0e02 574 if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') {
773647a0
AW
575 $sanitise_quote = '';
576 substr($res, $off, 2, "$;$;");
577 $off++;
578 next;
c2fdda0d 579 }
113f04a8
DW
580 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '//') {
581 $sanitise_quote = '//';
582
583 substr($res, $off, 2, $sanitise_quote);
584 $off++;
585 next;
586 }
773647a0
AW
587
588 # A \ in a string means ignore the next character.
589 if (($sanitise_quote eq "'" || $sanitise_quote eq '"') &&
590 $c eq "\\") {
591 substr($res, $off, 2, 'XX');
592 $off++;
593 next;
00df344f 594 }
773647a0
AW
595 # Regular quotes.
596 if ($c eq "'" || $c eq '"') {
597 if ($sanitise_quote eq '') {
598 $sanitise_quote = $c;
00df344f 599
773647a0
AW
600 substr($res, $off, 1, $c);
601 next;
602 } elsif ($sanitise_quote eq $c) {
603 $sanitise_quote = '';
604 }
605 }
00df344f 606
fae17dae 607 #print "c<$c> SQ<$sanitise_quote>\n";
773647a0
AW
608 if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") {
609 substr($res, $off, 1, $;);
113f04a8
DW
610 } elsif ($off != 0 && $sanitise_quote eq '//' && $c ne "\t") {
611 substr($res, $off, 1, $;);
773647a0
AW
612 } elsif ($off != 0 && $sanitise_quote && $c ne "\t") {
613 substr($res, $off, 1, 'X');
614 } else {
615 substr($res, $off, 1, $c);
616 }
c2fdda0d
AW
617 }
618
113f04a8
DW
619 if ($sanitise_quote eq '//') {
620 $sanitise_quote = '';
621 }
622
c2fdda0d 623 # The pathname on a #include may be surrounded by '<' and '>'.
c45dcabd 624 if ($res =~ /^.\s*\#\s*include\s+\<(.*)\>/) {
c2fdda0d
AW
625 my $clean = 'X' x length($1);
626 $res =~ s@\<.*\>@<$clean>@;
627
628 # The whole of a #error is a string.
c45dcabd 629 } elsif ($res =~ /^.\s*\#\s*(?:error|warning)\s+(.*)\b/) {
c2fdda0d 630 my $clean = 'X' x length($1);
c45dcabd 631 $res =~ s@(\#\s*(?:error|warning)\s+).*@$1$clean@;
c2fdda0d
AW
632 }
633
00df344f
AW
634 return $res;
635}
636
a6962d72
JP
637sub get_quoted_string {
638 my ($line, $rawline) = @_;
639
640 return "" if ($line !~ m/(\"[X]+\")/g);
641 return substr($rawline, $-[0], $+[0] - $-[0]);
642}
643
8905a67c
AW
644sub ctx_statement_block {
645 my ($linenr, $remain, $off) = @_;
646 my $line = $linenr - 1;
647 my $blk = '';
648 my $soff = $off;
649 my $coff = $off - 1;
773647a0 650 my $coff_set = 0;
8905a67c 651
13214adf
AW
652 my $loff = 0;
653
8905a67c
AW
654 my $type = '';
655 my $level = 0;
a2750645 656 my @stack = ();
cf655043 657 my $p;
8905a67c
AW
658 my $c;
659 my $len = 0;
13214adf
AW
660
661 my $remainder;
8905a67c 662 while (1) {
a2750645
AW
663 @stack = (['', 0]) if ($#stack == -1);
664
773647a0 665 #warn "CSB: blk<$blk> remain<$remain>\n";
8905a67c
AW
666 # If we are about to drop off the end, pull in more
667 # context.
668 if ($off >= $len) {
669 for (; $remain > 0; $line++) {
dea33496 670 last if (!defined $lines[$line]);
c2fdda0d 671 next if ($lines[$line] =~ /^-/);
8905a67c 672 $remain--;
13214adf 673 $loff = $len;
c2fdda0d 674 $blk .= $lines[$line] . "\n";
8905a67c
AW
675 $len = length($blk);
676 $line++;
677 last;
678 }
679 # Bail if there is no further context.
680 #warn "CSB: blk<$blk> off<$off> len<$len>\n";
13214adf 681 if ($off >= $len) {
8905a67c
AW
682 last;
683 }
f74bd194
AW
684 if ($level == 0 && substr($blk, $off) =~ /^.\s*#\s*define/) {
685 $level++;
686 $type = '#';
687 }
8905a67c 688 }
cf655043 689 $p = $c;
8905a67c 690 $c = substr($blk, $off, 1);
13214adf 691 $remainder = substr($blk, $off);
8905a67c 692
773647a0 693 #warn "CSB: c<$c> type<$type> level<$level> remainder<$remainder> coff_set<$coff_set>\n";
4635f4fb
AW
694
695 # Handle nested #if/#else.
696 if ($remainder =~ /^#\s*(?:ifndef|ifdef|if)\s/) {
697 push(@stack, [ $type, $level ]);
698 } elsif ($remainder =~ /^#\s*(?:else|elif)\b/) {
699 ($type, $level) = @{$stack[$#stack - 1]};
700 } elsif ($remainder =~ /^#\s*endif\b/) {
701 ($type, $level) = @{pop(@stack)};
702 }
703
8905a67c
AW
704 # Statement ends at the ';' or a close '}' at the
705 # outermost level.
706 if ($level == 0 && $c eq ';') {
707 last;
708 }
709
13214adf 710 # An else is really a conditional as long as its not else if
773647a0
AW
711 if ($level == 0 && $coff_set == 0 &&
712 (!defined($p) || $p =~ /(?:\s|\}|\+)/) &&
713 $remainder =~ /^(else)(?:\s|{)/ &&
714 $remainder !~ /^else\s+if\b/) {
715 $coff = $off + length($1) - 1;
716 $coff_set = 1;
717 #warn "CSB: mark coff<$coff> soff<$soff> 1<$1>\n";
718 #warn "[" . substr($blk, $soff, $coff - $soff + 1) . "]\n";
13214adf
AW
719 }
720
8905a67c
AW
721 if (($type eq '' || $type eq '(') && $c eq '(') {
722 $level++;
723 $type = '(';
724 }
725 if ($type eq '(' && $c eq ')') {
726 $level--;
727 $type = ($level != 0)? '(' : '';
728
729 if ($level == 0 && $coff < $soff) {
730 $coff = $off;
773647a0
AW
731 $coff_set = 1;
732 #warn "CSB: mark coff<$coff>\n";
8905a67c
AW
733 }
734 }
735 if (($type eq '' || $type eq '{') && $c eq '{') {
736 $level++;
737 $type = '{';
738 }
739 if ($type eq '{' && $c eq '}') {
740 $level--;
741 $type = ($level != 0)? '{' : '';
742
743 if ($level == 0) {
b998e001
PP
744 if (substr($blk, $off + 1, 1) eq ';') {
745 $off++;
746 }
8905a67c
AW
747 last;
748 }
749 }
f74bd194
AW
750 # Preprocessor commands end at the newline unless escaped.
751 if ($type eq '#' && $c eq "\n" && $p ne "\\") {
752 $level--;
753 $type = '';
754 $off++;
755 last;
756 }
8905a67c
AW
757 $off++;
758 }
a3bb97a7 759 # We are truly at the end, so shuffle to the next line.
13214adf 760 if ($off == $len) {
a3bb97a7 761 $loff = $len + 1;
13214adf
AW
762 $line++;
763 $remain--;
764 }
8905a67c
AW
765
766 my $statement = substr($blk, $soff, $off - $soff + 1);
767 my $condition = substr($blk, $soff, $coff - $soff + 1);
768
769 #warn "STATEMENT<$statement>\n";
770 #warn "CONDITION<$condition>\n";
771
773647a0 772 #print "coff<$coff> soff<$off> loff<$loff>\n";
13214adf
AW
773
774 return ($statement, $condition,
775 $line, $remain + 1, $off - $loff + 1, $level);
776}
777
cf655043
AW
778sub statement_lines {
779 my ($stmt) = @_;
780
781 # Strip the diff line prefixes and rip blank lines at start and end.
782 $stmt =~ s/(^|\n)./$1/g;
783 $stmt =~ s/^\s*//;
784 $stmt =~ s/\s*$//;
785
786 my @stmt_lines = ($stmt =~ /\n/g);
787
788 return $#stmt_lines + 2;
789}
790
791sub statement_rawlines {
792 my ($stmt) = @_;
793
794 my @stmt_lines = ($stmt =~ /\n/g);
795
796 return $#stmt_lines + 2;
797}
798
799sub statement_block_size {
800 my ($stmt) = @_;
801
802 $stmt =~ s/(^|\n)./$1/g;
803 $stmt =~ s/^\s*{//;
804 $stmt =~ s/}\s*$//;
805 $stmt =~ s/^\s*//;
806 $stmt =~ s/\s*$//;
807
808 my @stmt_lines = ($stmt =~ /\n/g);
809 my @stmt_statements = ($stmt =~ /;/g);
810
811 my $stmt_lines = $#stmt_lines + 2;
812 my $stmt_statements = $#stmt_statements + 1;
813
814 if ($stmt_lines > $stmt_statements) {
815 return $stmt_lines;
816 } else {
817 return $stmt_statements;
818 }
819}
820
13214adf
AW
821sub ctx_statement_full {
822 my ($linenr, $remain, $off) = @_;
823 my ($statement, $condition, $level);
824
825 my (@chunks);
826
cf655043 827 # Grab the first conditional/block pair.
13214adf
AW
828 ($statement, $condition, $linenr, $remain, $off, $level) =
829 ctx_statement_block($linenr, $remain, $off);
773647a0 830 #print "F: c<$condition> s<$statement> remain<$remain>\n";
cf655043
AW
831 push(@chunks, [ $condition, $statement ]);
832 if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
833 return ($level, $linenr, @chunks);
834 }
835
836 # Pull in the following conditional/block pairs and see if they
837 # could continue the statement.
13214adf 838 for (;;) {
13214adf
AW
839 ($statement, $condition, $linenr, $remain, $off, $level) =
840 ctx_statement_block($linenr, $remain, $off);
cf655043 841 #print "C: c<$condition> s<$statement> remain<$remain>\n";
773647a0 842 last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
cf655043
AW
843 #print "C: push\n";
844 push(@chunks, [ $condition, $statement ]);
13214adf
AW
845 }
846
847 return ($level, $linenr, @chunks);
8905a67c
AW
848}
849
4a0df2ef 850sub ctx_block_get {
f0a594c1 851 my ($linenr, $remain, $outer, $open, $close, $off) = @_;
4a0df2ef
AW
852 my $line;
853 my $start = $linenr - 1;
4a0df2ef
AW
854 my $blk = '';
855 my @o;
856 my @c;
857 my @res = ();
858
f0a594c1 859 my $level = 0;
4635f4fb 860 my @stack = ($level);
00df344f
AW
861 for ($line = $start; $remain > 0; $line++) {
862 next if ($rawlines[$line] =~ /^-/);
863 $remain--;
864
865 $blk .= $rawlines[$line];
4635f4fb
AW
866
867 # Handle nested #if/#else.
01464f30 868 if ($lines[$line] =~ /^.\s*#\s*(?:ifndef|ifdef|if)\s/) {
4635f4fb 869 push(@stack, $level);
01464f30 870 } elsif ($lines[$line] =~ /^.\s*#\s*(?:else|elif)\b/) {
4635f4fb 871 $level = $stack[$#stack - 1];
01464f30 872 } elsif ($lines[$line] =~ /^.\s*#\s*endif\b/) {
4635f4fb
AW
873 $level = pop(@stack);
874 }
875
01464f30 876 foreach my $c (split(//, $lines[$line])) {
f0a594c1
AW
877 ##print "C<$c>L<$level><$open$close>O<$off>\n";
878 if ($off > 0) {
879 $off--;
880 next;
881 }
4a0df2ef 882
f0a594c1
AW
883 if ($c eq $close && $level > 0) {
884 $level--;
885 last if ($level == 0);
886 } elsif ($c eq $open) {
887 $level++;
888 }
889 }
4a0df2ef 890
f0a594c1 891 if (!$outer || $level <= 1) {
00df344f 892 push(@res, $rawlines[$line]);
4a0df2ef
AW
893 }
894
f0a594c1 895 last if ($level == 0);
4a0df2ef
AW
896 }
897
f0a594c1 898 return ($level, @res);
4a0df2ef
AW
899}
900sub ctx_block_outer {
901 my ($linenr, $remain) = @_;
902
f0a594c1
AW
903 my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0);
904 return @r;
4a0df2ef
AW
905}
906sub ctx_block {
907 my ($linenr, $remain) = @_;
908
f0a594c1
AW
909 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0);
910 return @r;
653d4876
AW
911}
912sub ctx_statement {
f0a594c1
AW
913 my ($linenr, $remain, $off) = @_;
914
915 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
916 return @r;
917}
918sub ctx_block_level {
653d4876
AW
919 my ($linenr, $remain) = @_;
920
f0a594c1 921 return ctx_block_get($linenr, $remain, 0, '{', '}', 0);
4a0df2ef 922}
9c0ca6f9
AW
923sub ctx_statement_level {
924 my ($linenr, $remain, $off) = @_;
925
926 return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
927}
4a0df2ef
AW
928
929sub ctx_locate_comment {
930 my ($first_line, $end_line) = @_;
931
932 # Catch a comment on the end of the line itself.
beae6332 933 my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@);
4a0df2ef
AW
934 return $current_comment if (defined $current_comment);
935
936 # Look through the context and try and figure out if there is a
937 # comment.
938 my $in_comment = 0;
939 $current_comment = '';
940 for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
00df344f
AW
941 my $line = $rawlines[$linenr - 1];
942 #warn " $line\n";
4a0df2ef
AW
943 if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
944 $in_comment = 1;
945 }
946 if ($line =~ m@/\*@) {
947 $in_comment = 1;
948 }
949 if (!$in_comment && $current_comment ne '') {
950 $current_comment = '';
951 }
952 $current_comment .= $line . "\n" if ($in_comment);
953 if ($line =~ m@\*/@) {
954 $in_comment = 0;
955 }
956 }
957
958 chomp($current_comment);
959 return($current_comment);
960}
961sub ctx_has_comment {
962 my ($first_line, $end_line) = @_;
963 my $cmt = ctx_locate_comment($first_line, $end_line);
964
00df344f 965 ##print "LINE: $rawlines[$end_line - 1 ]\n";
4a0df2ef
AW
966 ##print "CMMT: $cmt\n";
967
968 return ($cmt ne '');
969}
970
4d001e4d
AW
971sub raw_line {
972 my ($linenr, $cnt) = @_;
973
974 my $offset = $linenr - 1;
975 $cnt++;
976
977 my $line;
978 while ($cnt) {
979 $line = $rawlines[$offset++];
980 next if (defined($line) && $line =~ /^-/);
981 $cnt--;
982 }
983
984 return $line;
985}
986
6c72ffaa
AW
987sub cat_vet {
988 my ($vet) = @_;
989 my ($res, $coded);
9c0ca6f9 990
6c72ffaa
AW
991 $res = '';
992 while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
993 $res .= $1;
994 if ($2 ne '') {
995 $coded = sprintf("^%c", unpack('C', $2) + 64);
996 $res .= $coded;
9c0ca6f9
AW
997 }
998 }
6c72ffaa 999 $res =~ s/$/\$/;
9c0ca6f9 1000
6c72ffaa 1001 return $res;
9c0ca6f9
AW
1002}
1003
c2fdda0d 1004my $av_preprocessor = 0;
cf655043 1005my $av_pending;
c2fdda0d 1006my @av_paren_type;
1f65f947 1007my $av_pend_colon;
c2fdda0d
AW
1008
1009sub annotate_reset {
1010 $av_preprocessor = 0;
cf655043
AW
1011 $av_pending = '_';
1012 @av_paren_type = ('E');
1f65f947 1013 $av_pend_colon = 'O';
c2fdda0d
AW
1014}
1015
6c72ffaa
AW
1016sub annotate_values {
1017 my ($stream, $type) = @_;
0a920b5b 1018
6c72ffaa 1019 my $res;
1f65f947 1020 my $var = '_' x length($stream);
6c72ffaa
AW
1021 my $cur = $stream;
1022
c2fdda0d 1023 print "$stream\n" if ($dbg_values > 1);
6c72ffaa 1024
6c72ffaa 1025 while (length($cur)) {
773647a0 1026 @av_paren_type = ('E') if ($#av_paren_type < 0);
cf655043 1027 print " <" . join('', @av_paren_type) .
171ae1a4 1028 "> <$type> <$av_pending>" if ($dbg_values > 1);
6c72ffaa 1029 if ($cur =~ /^(\s+)/o) {
c2fdda0d
AW
1030 print "WS($1)\n" if ($dbg_values > 1);
1031 if ($1 =~ /\n/ && $av_preprocessor) {
cf655043 1032 $type = pop(@av_paren_type);
c2fdda0d 1033 $av_preprocessor = 0;
6c72ffaa
AW
1034 }
1035
c023e473 1036 } elsif ($cur =~ /^(\(\s*$Type\s*)\)/ && $av_pending eq '_') {
9446ef56
AW
1037 print "CAST($1)\n" if ($dbg_values > 1);
1038 push(@av_paren_type, $type);
addcdcea 1039 $type = 'c';
9446ef56 1040
e91b6e26 1041 } elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\(|\s*$)/) {
c2fdda0d 1042 print "DECLARE($1)\n" if ($dbg_values > 1);
6c72ffaa
AW
1043 $type = 'T';
1044
389a2fe5
AW
1045 } elsif ($cur =~ /^($Modifier)\s*/) {
1046 print "MODIFIER($1)\n" if ($dbg_values > 1);
1047 $type = 'T';
1048
c45dcabd 1049 } elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) {
171ae1a4 1050 print "DEFINE($1,$2)\n" if ($dbg_values > 1);
c2fdda0d 1051 $av_preprocessor = 1;
171ae1a4
AW
1052 push(@av_paren_type, $type);
1053 if ($2 ne '') {
1054 $av_pending = 'N';
1055 }
1056 $type = 'E';
1057
c45dcabd 1058 } elsif ($cur =~ /^(\#\s*(?:undef\s*$Ident|include\b))/o) {
171ae1a4
AW
1059 print "UNDEF($1)\n" if ($dbg_values > 1);
1060 $av_preprocessor = 1;
1061 push(@av_paren_type, $type);
6c72ffaa 1062
c45dcabd 1063 } elsif ($cur =~ /^(\#\s*(?:ifdef|ifndef|if))/o) {
cf655043 1064 print "PRE_START($1)\n" if ($dbg_values > 1);
c2fdda0d 1065 $av_preprocessor = 1;
cf655043
AW
1066
1067 push(@av_paren_type, $type);
1068 push(@av_paren_type, $type);
171ae1a4 1069 $type = 'E';
cf655043 1070
c45dcabd 1071 } elsif ($cur =~ /^(\#\s*(?:else|elif))/o) {
cf655043
AW
1072 print "PRE_RESTART($1)\n" if ($dbg_values > 1);
1073 $av_preprocessor = 1;
1074
1075 push(@av_paren_type, $av_paren_type[$#av_paren_type]);
1076
171ae1a4 1077 $type = 'E';
cf655043 1078
c45dcabd 1079 } elsif ($cur =~ /^(\#\s*(?:endif))/o) {
cf655043
AW
1080 print "PRE_END($1)\n" if ($dbg_values > 1);
1081
1082 $av_preprocessor = 1;
1083
1084 # Assume all arms of the conditional end as this
1085 # one does, and continue as if the #endif was not here.
1086 pop(@av_paren_type);
1087 push(@av_paren_type, $type);
171ae1a4 1088 $type = 'E';
6c72ffaa
AW
1089
1090 } elsif ($cur =~ /^(\\\n)/o) {
c2fdda0d 1091 print "PRECONT($1)\n" if ($dbg_values > 1);
6c72ffaa 1092
171ae1a4
AW
1093 } elsif ($cur =~ /^(__attribute__)\s*\(?/o) {
1094 print "ATTR($1)\n" if ($dbg_values > 1);
1095 $av_pending = $type;
1096 $type = 'N';
1097
6c72ffaa 1098 } elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
c2fdda0d 1099 print "SIZEOF($1)\n" if ($dbg_values > 1);
6c72ffaa 1100 if (defined $2) {
cf655043 1101 $av_pending = 'V';
6c72ffaa
AW
1102 }
1103 $type = 'N';
1104
14b111c1 1105 } elsif ($cur =~ /^(if|while|for)\b/o) {
c2fdda0d 1106 print "COND($1)\n" if ($dbg_values > 1);
14b111c1 1107 $av_pending = 'E';
6c72ffaa
AW
1108 $type = 'N';
1109
1f65f947
AW
1110 } elsif ($cur =~/^(case)/o) {
1111 print "CASE($1)\n" if ($dbg_values > 1);
1112 $av_pend_colon = 'C';
1113 $type = 'N';
1114
14b111c1 1115 } elsif ($cur =~/^(return|else|goto|typeof|__typeof__)\b/o) {
c2fdda0d 1116 print "KEYWORD($1)\n" if ($dbg_values > 1);
6c72ffaa
AW
1117 $type = 'N';
1118
1119 } elsif ($cur =~ /^(\()/o) {
c2fdda0d 1120 print "PAREN('$1')\n" if ($dbg_values > 1);
cf655043
AW
1121 push(@av_paren_type, $av_pending);
1122 $av_pending = '_';
6c72ffaa
AW
1123 $type = 'N';
1124
1125 } elsif ($cur =~ /^(\))/o) {
cf655043
AW
1126 my $new_type = pop(@av_paren_type);
1127 if ($new_type ne '_') {
1128 $type = $new_type;
c2fdda0d
AW
1129 print "PAREN('$1') -> $type\n"
1130 if ($dbg_values > 1);
6c72ffaa 1131 } else {
c2fdda0d 1132 print "PAREN('$1')\n" if ($dbg_values > 1);
6c72ffaa
AW
1133 }
1134
c8cb2ca3 1135 } elsif ($cur =~ /^($Ident)\s*\(/o) {
c2fdda0d 1136 print "FUNC($1)\n" if ($dbg_values > 1);
c8cb2ca3 1137 $type = 'V';
cf655043 1138 $av_pending = 'V';
6c72ffaa 1139
8e761b04
AW
1140 } elsif ($cur =~ /^($Ident\s*):(?:\s*\d+\s*(,|=|;))?/) {
1141 if (defined $2 && $type eq 'C' || $type eq 'T') {
1f65f947 1142 $av_pend_colon = 'B';
8e761b04
AW
1143 } elsif ($type eq 'E') {
1144 $av_pend_colon = 'L';
1f65f947
AW
1145 }
1146 print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1);
1147 $type = 'V';
1148
6c72ffaa 1149 } elsif ($cur =~ /^($Ident|$Constant)/o) {
c2fdda0d 1150 print "IDENT($1)\n" if ($dbg_values > 1);
6c72ffaa
AW
1151 $type = 'V';
1152
1153 } elsif ($cur =~ /^($Assignment)/o) {
c2fdda0d 1154 print "ASSIGN($1)\n" if ($dbg_values > 1);
6c72ffaa
AW
1155 $type = 'N';
1156
cf655043 1157 } elsif ($cur =~/^(;|{|})/) {
c2fdda0d 1158 print "END($1)\n" if ($dbg_values > 1);
13214adf 1159 $type = 'E';
1f65f947
AW
1160 $av_pend_colon = 'O';
1161
8e761b04
AW
1162 } elsif ($cur =~/^(,)/) {
1163 print "COMMA($1)\n" if ($dbg_values > 1);
1164 $type = 'C';
1165
1f65f947
AW
1166 } elsif ($cur =~ /^(\?)/o) {
1167 print "QUESTION($1)\n" if ($dbg_values > 1);
1168 $type = 'N';
1169
1170 } elsif ($cur =~ /^(:)/o) {
1171 print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1);
1172
1173 substr($var, length($res), 1, $av_pend_colon);
1174 if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') {
1175 $type = 'E';
1176 } else {
1177 $type = 'N';
1178 }
1179 $av_pend_colon = 'O';
13214adf 1180
8e761b04 1181 } elsif ($cur =~ /^(\[)/o) {
13214adf 1182 print "CLOSE($1)\n" if ($dbg_values > 1);
6c72ffaa
AW
1183 $type = 'N';
1184
0d413866 1185 } elsif ($cur =~ /^(-(?![->])|\+(?!\+)|\*|\&\&|\&)/o) {
74048ed8
AW
1186 my $variant;
1187
1188 print "OPV($1)\n" if ($dbg_values > 1);
1189 if ($type eq 'V') {
1190 $variant = 'B';
1191 } else {
1192 $variant = 'U';
1193 }
1194
1195 substr($var, length($res), 1, $variant);
1196 $type = 'N';
1197
6c72ffaa 1198 } elsif ($cur =~ /^($Operators)/o) {
c2fdda0d 1199 print "OP($1)\n" if ($dbg_values > 1);
6c72ffaa
AW
1200 if ($1 ne '++' && $1 ne '--') {
1201 $type = 'N';
1202 }
1203
1204 } elsif ($cur =~ /(^.)/o) {
c2fdda0d 1205 print "C($1)\n" if ($dbg_values > 1);
6c72ffaa
AW
1206 }
1207 if (defined $1) {
1208 $cur = substr($cur, length($1));
1209 $res .= $type x length($1);
1210 }
9c0ca6f9 1211 }
0a920b5b 1212
1f65f947 1213 return ($res, $var);
0a920b5b
AW
1214}
1215
8905a67c 1216sub possible {
13214adf 1217 my ($possible, $line) = @_;
9a974fdb 1218 my $notPermitted = qr{(?:
0776e594
AW
1219 ^(?:
1220 $Modifier|
1221 $Storage|
1222 $Type|
9a974fdb
AW
1223 DEFINE_\S+
1224 )$|
1225 ^(?:
0776e594
AW
1226 goto|
1227 return|
1228 case|
1229 else|
1230 asm|__asm__|
89a88353
AW
1231 do|
1232 \#|
1233 \#\#|
9a974fdb 1234 )(?:\s|$)|
0776e594 1235 ^(?:typedef|struct|enum)\b
9a974fdb
AW
1236 )}x;
1237 warn "CHECK<$possible> ($line)\n" if ($dbg_possible > 2);
1238 if ($possible !~ $notPermitted) {
c45dcabd
AW
1239 # Check for modifiers.
1240 $possible =~ s/\s*$Storage\s*//g;
1241 $possible =~ s/\s*$Sparse\s*//g;
1242 if ($possible =~ /^\s*$/) {
1243
1244 } elsif ($possible =~ /\s/) {
1245 $possible =~ s/\s*$Type\s*//g;
d2506586 1246 for my $modifier (split(' ', $possible)) {
9a974fdb
AW
1247 if ($modifier !~ $notPermitted) {
1248 warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
1249 push(@modifierList, $modifier);
1250 }
d2506586 1251 }
c45dcabd
AW
1252
1253 } else {
1254 warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
1255 push(@typeList, $possible);
1256 }
8905a67c 1257 build_types();
0776e594
AW
1258 } else {
1259 warn "NOTPOSS: $possible ($line)\n" if ($dbg_possible > 1);
8905a67c
AW
1260 }
1261}
1262
6c72ffaa
AW
1263my $prefix = '';
1264
000d1cc1
JP
1265sub show_type {
1266 return !defined $ignore_type{$_[0]};
1267}
1268
f0a594c1 1269sub report {
000d1cc1
JP
1270 if (!show_type($_[1]) ||
1271 (defined $tst_only && $_[2] !~ /\Q$tst_only\E/)) {
773647a0
AW
1272 return 0;
1273 }
000d1cc1
JP
1274 my $line;
1275 if ($show_types) {
1276 $line = "$prefix$_[0]:$_[1]: $_[2]\n";
1277 } else {
1278 $line = "$prefix$_[0]: $_[2]\n";
1279 }
8905a67c
AW
1280 $line = (split('\n', $line))[0] . "\n" if ($terse);
1281
13214adf 1282 push(our @report, $line);
773647a0
AW
1283
1284 return 1;
f0a594c1
AW
1285}
1286sub report_dump {
13214adf 1287 our @report;
f0a594c1 1288}
000d1cc1 1289
de7d4f0e 1290sub ERROR {
000d1cc1 1291 if (report("ERROR", $_[0], $_[1])) {
773647a0
AW
1292 our $clean = 0;
1293 our $cnt_error++;
1294 }
de7d4f0e
AW
1295}
1296sub WARN {
000d1cc1 1297 if (report("WARNING", $_[0], $_[1])) {
773647a0
AW
1298 our $clean = 0;
1299 our $cnt_warn++;
1300 }
de7d4f0e
AW
1301}
1302sub CHK {
000d1cc1 1303 if ($check && report("CHECK", $_[0], $_[1])) {
6c72ffaa
AW
1304 our $clean = 0;
1305 our $cnt_chk++;
1306 }
de7d4f0e
AW
1307}
1308
6ecd9674
AW
1309sub check_absolute_file {
1310 my ($absolute, $herecurr) = @_;
1311 my $file = $absolute;
1312
1313 ##print "absolute<$absolute>\n";
1314
1315 # See if any suffix of this path is a path within the tree.
1316 while ($file =~ s@^[^/]*/@@) {
1317 if (-f "$root/$file") {
1318 ##print "file<$file>\n";
1319 last;
1320 }
1321 }
1322 if (! -f _) {
1323 return 0;
1324 }
1325
1326 # It is, so see if the prefix is acceptable.
1327 my $prefix = $absolute;
1328 substr($prefix, -length($file)) = '';
1329
1330 ##print "prefix<$prefix>\n";
1331 if ($prefix ne ".../") {
000d1cc1
JP
1332 WARN("USE_RELATIVE_PATH",
1333 "use relative pathname instead of absolute in changelog text\n" . $herecurr);
6ecd9674
AW
1334 }
1335}
1336
d1fe9c09
JP
1337sub pos_last_openparen {
1338 my ($line) = @_;
1339
1340 my $pos = 0;
1341
1342 my $opens = $line =~ tr/\(/\(/;
1343 my $closes = $line =~ tr/\)/\)/;
1344
1345 my $last_openparen = 0;
1346
1347 if (($opens == 0) || ($closes >= $opens)) {
1348 return -1;
1349 }
1350
1351 my $len = length($line);
1352
1353 for ($pos = 0; $pos < $len; $pos++) {
1354 my $string = substr($line, $pos);
1355 if ($string =~ /^($FuncArg|$balanced_parens)/) {
1356 $pos += length($1) - 1;
1357 } elsif (substr($line, $pos, 1) eq '(') {
1358 $last_openparen = $pos;
1359 } elsif (index($string, '(') == -1) {
1360 last;
1361 }
1362 }
1363
1364 return $last_openparen + 1;
1365}
1366
0a920b5b
AW
1367sub process {
1368 my $filename = shift;
0a920b5b
AW
1369
1370 my $linenr=0;
1371 my $prevline="";
c2fdda0d 1372 my $prevrawline="";
0a920b5b 1373 my $stashline="";
c2fdda0d 1374 my $stashrawline="";
0a920b5b 1375
4a0df2ef 1376 my $length;
0a920b5b
AW
1377 my $indent;
1378 my $previndent=0;
1379 my $stashindent=0;
1380
de7d4f0e 1381 our $clean = 1;
0a920b5b
AW
1382 my $signoff = 0;
1383 my $is_patch = 0;
1384
15662b3e
JP
1385 my $in_header_lines = 1;
1386 my $in_commit_log = 0; #Scanning lines before patch
1387
fa64205d
PS
1388 my $non_utf8_charset = 0;
1389
13214adf 1390 our @report = ();
6c72ffaa
AW
1391 our $cnt_lines = 0;
1392 our $cnt_error = 0;
1393 our $cnt_warn = 0;
1394 our $cnt_chk = 0;
1395
0a920b5b
AW
1396 # Trace the real file/line as we go.
1397 my $realfile = '';
1398 my $realline = 0;
1399 my $realcnt = 0;
1400 my $here = '';
1401 my $in_comment = 0;
c2fdda0d 1402 my $comment_edge = 0;
0a920b5b 1403 my $first_line = 0;
1e855726 1404 my $p1_prefix = '';
0a920b5b 1405
13214adf
AW
1406 my $prev_values = 'E';
1407
1408 # suppression flags
773647a0 1409 my %suppress_ifbraces;
170d3a22 1410 my %suppress_whiletrailers;
2b474a1a 1411 my %suppress_export;
3e469cdc 1412 my $suppress_statement = 0;
653d4876 1413
323c1260
JP
1414 my %camelcase = ();
1415
c2fdda0d 1416 # Pre-scan the patch sanitizing the lines.
de7d4f0e 1417 # Pre-scan the patch looking for any __setup documentation.
c2fdda0d 1418 #
de7d4f0e
AW
1419 my @setup_docs = ();
1420 my $setup_docs = 0;
773647a0
AW
1421
1422 sanitise_line_reset();
c2fdda0d
AW
1423 my $line;
1424 foreach my $rawline (@rawlines) {
773647a0
AW
1425 $linenr++;
1426 $line = $rawline;
c2fdda0d 1427
773647a0 1428 if ($rawline=~/^\+\+\+\s+(\S+)/) {
de7d4f0e
AW
1429 $setup_docs = 0;
1430 if ($1 =~ m@Documentation/kernel-parameters.txt$@) {
1431 $setup_docs = 1;
1432 }
773647a0
AW
1433 #next;
1434 }
1435 if ($rawline=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
1436 $realline=$1-1;
1437 if (defined $2) {
1438 $realcnt=$3+1;
1439 } else {
1440 $realcnt=1+1;
1441 }
c45dcabd 1442 $in_comment = 0;
773647a0
AW
1443
1444 # Guestimate if this is a continuing comment. Run
1445 # the context looking for a comment "edge". If this
1446 # edge is a close comment then we must be in a comment
1447 # at context start.
1448 my $edge;
01fa9147
AW
1449 my $cnt = $realcnt;
1450 for (my $ln = $linenr + 1; $cnt > 0; $ln++) {
1451 next if (defined $rawlines[$ln - 1] &&
1452 $rawlines[$ln - 1] =~ /^-/);
1453 $cnt--;
1454 #print "RAW<$rawlines[$ln - 1]>\n";
721c1cb6 1455 last if (!defined $rawlines[$ln - 1]);
fae17dae
AW
1456 if ($rawlines[$ln - 1] =~ m@(/\*|\*/)@ &&
1457 $rawlines[$ln - 1] !~ m@"[^"]*(?:/\*|\*/)[^"]*"@) {
1458 ($edge) = $1;
1459 last;
1460 }
773647a0
AW
1461 }
1462 if (defined $edge && $edge eq '*/') {
1463 $in_comment = 1;
1464 }
1465
1466 # Guestimate if this is a continuing comment. If this
1467 # is the start of a diff block and this line starts
1468 # ' *' then it is very likely a comment.
1469 if (!defined $edge &&
83242e0c 1470 $rawlines[$linenr] =~ m@^.\s*(?:\*\*+| \*)(?:\s|$)@)
773647a0
AW
1471 {
1472 $in_comment = 1;
1473 }
1474
1475 ##print "COMMENT:$in_comment edge<$edge> $rawline\n";
1476 sanitise_line_reset($in_comment);
1477
171ae1a4 1478 } elsif ($realcnt && $rawline =~ /^(?:\+| |$)/) {
773647a0 1479 # Standardise the strings and chars within the input to
171ae1a4 1480 # simplify matching -- only bother with positive lines.
773647a0 1481 $line = sanitise_line($rawline);
de7d4f0e 1482 }
773647a0
AW
1483 push(@lines, $line);
1484
1485 if ($realcnt > 1) {
1486 $realcnt-- if ($line =~ /^(?:\+| |$)/);
1487 } else {
1488 $realcnt = 0;
1489 }
1490
1491 #print "==>$rawline\n";
1492 #print "-->$line\n";
de7d4f0e
AW
1493
1494 if ($setup_docs && $line =~ /^\+/) {
1495 push(@setup_docs, $line);
1496 }
1497 }
1498
6c72ffaa
AW
1499 $prefix = '';
1500
773647a0
AW
1501 $realcnt = 0;
1502 $linenr = 0;
0a920b5b
AW
1503 foreach my $line (@lines) {
1504 $linenr++;
1505
c2fdda0d 1506 my $rawline = $rawlines[$linenr - 1];
6c72ffaa 1507
0a920b5b 1508#extract the line range in the file after the patch is applied
6c72ffaa 1509 if ($line=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
0a920b5b 1510 $is_patch = 1;
4a0df2ef 1511 $first_line = $linenr + 1;
0a920b5b
AW
1512 $realline=$1-1;
1513 if (defined $2) {
1514 $realcnt=$3+1;
1515 } else {
1516 $realcnt=1+1;
1517 }
c2fdda0d 1518 annotate_reset();
13214adf
AW
1519 $prev_values = 'E';
1520
773647a0 1521 %suppress_ifbraces = ();
170d3a22 1522 %suppress_whiletrailers = ();
2b474a1a 1523 %suppress_export = ();
3e469cdc 1524 $suppress_statement = 0;
0a920b5b 1525 next;
0a920b5b 1526
4a0df2ef
AW
1527# track the line number as we move through the hunk, note that
1528# new versions of GNU diff omit the leading space on completely
1529# blank context lines so we need to count that too.
773647a0 1530 } elsif ($line =~ /^( |\+|$)/) {
0a920b5b 1531 $realline++;
d8aaf121 1532 $realcnt-- if ($realcnt != 0);
0a920b5b 1533
4a0df2ef 1534 # Measure the line length and indent.
c2fdda0d 1535 ($length, $indent) = line_stats($rawline);
0a920b5b
AW
1536
1537 # Track the previous line.
1538 ($prevline, $stashline) = ($stashline, $line);
1539 ($previndent, $stashindent) = ($stashindent, $indent);
c2fdda0d
AW
1540 ($prevrawline, $stashrawline) = ($stashrawline, $rawline);
1541
773647a0 1542 #warn "line<$line>\n";
6c72ffaa 1543
d8aaf121
AW
1544 } elsif ($realcnt == 1) {
1545 $realcnt--;
0a920b5b
AW
1546 }
1547
cc77cdca
AW
1548 my $hunk_line = ($realcnt != 0);
1549
0a920b5b 1550#make up the handle for any error we report on this line
773647a0
AW
1551 $prefix = "$filename:$realline: " if ($emacs && $file);
1552 $prefix = "$filename:$linenr: " if ($emacs && !$file);
1553
6c72ffaa
AW
1554 $here = "#$linenr: " if (!$file);
1555 $here = "#$realline: " if ($file);
773647a0
AW
1556
1557 # extract the filename as it passes
3bf9a009
RV
1558 if ($line =~ /^diff --git.*?(\S+)$/) {
1559 $realfile = $1;
1560 $realfile =~ s@^([^/]*)/@@;
270c49a0 1561 $in_commit_log = 0;
3bf9a009 1562 } elsif ($line =~ /^\+\+\+\s+(\S+)/) {
773647a0 1563 $realfile = $1;
1e855726 1564 $realfile =~ s@^([^/]*)/@@;
270c49a0 1565 $in_commit_log = 0;
1e855726
WS
1566
1567 $p1_prefix = $1;
e2f7aa4b
AW
1568 if (!$file && $tree && $p1_prefix ne '' &&
1569 -e "$root/$p1_prefix") {
000d1cc1
JP
1570 WARN("PATCH_PREFIX",
1571 "patch prefix '$p1_prefix' exists, appears to be a -p0 patch\n");
1e855726 1572 }
773647a0 1573
c1ab3326 1574 if ($realfile =~ m@^include/asm/@) {
000d1cc1
JP
1575 ERROR("MODIFIED_INCLUDE_ASM",
1576 "do not modify files in include/asm, change architecture specific files in include/asm-<architecture>\n" . "$here$rawline\n");
773647a0
AW
1577 }
1578 next;
1579 }
1580
389834b6 1581 $here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
0a920b5b 1582
c2fdda0d
AW
1583 my $hereline = "$here\n$rawline\n";
1584 my $herecurr = "$here\n$rawline\n";
1585 my $hereprev = "$here\n$prevrawline\n$rawline\n";
0a920b5b 1586
6c72ffaa
AW
1587 $cnt_lines++ if ($realcnt != 0);
1588
3bf9a009
RV
1589# Check for incorrect file permissions
1590 if ($line =~ /^new (file )?mode.*[7531]\d{0,2}$/) {
1591 my $permhere = $here . "FILE: $realfile\n";
04db4d25
JP
1592 if ($realfile !~ m@scripts/@ &&
1593 $realfile !~ /\.(py|pl|awk|sh)$/) {
000d1cc1
JP
1594 ERROR("EXECUTE_PERMISSIONS",
1595 "do not set execute permissions for source files\n" . $permhere);
3bf9a009
RV
1596 }
1597 }
1598
20112475 1599# Check the patch for a signoff:
d8aaf121 1600 if ($line =~ /^\s*signed-off-by:/i) {
4a0df2ef 1601 $signoff++;
15662b3e 1602 $in_commit_log = 0;
20112475
JP
1603 }
1604
1605# Check signature styles
270c49a0 1606 if (!$in_header_lines &&
ce0338df 1607 $line =~ /^(\s*)([a-z0-9_-]+by:|$signature_tags)(\s*)(.*)/i) {
20112475
JP
1608 my $space_before = $1;
1609 my $sign_off = $2;
1610 my $space_after = $3;
1611 my $email = $4;
1612 my $ucfirst_sign_off = ucfirst(lc($sign_off));
1613
ce0338df
JP
1614 if ($sign_off !~ /$signature_tags/) {
1615 WARN("BAD_SIGN_OFF",
1616 "Non-standard signature: $sign_off\n" . $herecurr);
1617 }
20112475 1618 if (defined $space_before && $space_before ne "") {
000d1cc1
JP
1619 WARN("BAD_SIGN_OFF",
1620 "Do not use whitespace before $ucfirst_sign_off\n" . $herecurr);
20112475
JP
1621 }
1622 if ($sign_off =~ /-by:$/i && $sign_off ne $ucfirst_sign_off) {
000d1cc1
JP
1623 WARN("BAD_SIGN_OFF",
1624 "'$ucfirst_sign_off' is the preferred signature form\n" . $herecurr);
20112475
JP
1625 }
1626 if (!defined $space_after || $space_after ne " ") {
000d1cc1
JP
1627 WARN("BAD_SIGN_OFF",
1628 "Use a single space after $ucfirst_sign_off\n" . $herecurr);
0a920b5b 1629 }
20112475
JP
1630
1631 my ($email_name, $email_address, $comment) = parse_email($email);
1632 my $suggested_email = format_email(($email_name, $email_address));
1633 if ($suggested_email eq "") {
000d1cc1
JP
1634 ERROR("BAD_SIGN_OFF",
1635 "Unrecognized email address: '$email'\n" . $herecurr);
20112475
JP
1636 } else {
1637 my $dequoted = $suggested_email;
1638 $dequoted =~ s/^"//;
1639 $dequoted =~ s/" </ </;
1640 # Don't force email to have quotes
1641 # Allow just an angle bracketed address
1642 if ("$dequoted$comment" ne $email &&
1643 "<$email_address>$comment" ne $email &&
1644 "$suggested_email$comment" ne $email) {
000d1cc1
JP
1645 WARN("BAD_SIGN_OFF",
1646 "email address '$email' might be better as '$suggested_email$comment'\n" . $herecurr);
20112475 1647 }
0a920b5b
AW
1648 }
1649 }
1650
00df344f 1651# Check for wrappage within a valid hunk of the file
8905a67c 1652 if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) {
000d1cc1
JP
1653 ERROR("CORRUPTED_PATCH",
1654 "patch seems to be corrupt (line wrapped?)\n" .
6c72ffaa 1655 $herecurr) if (!$emitted_corrupt++);
de7d4f0e
AW
1656 }
1657
6ecd9674
AW
1658# Check for absolute kernel paths.
1659 if ($tree) {
1660 while ($line =~ m{(?:^|\s)(/\S*)}g) {
1661 my $file = $1;
1662
1663 if ($file =~ m{^(.*?)(?::\d+)+:?$} &&
1664 check_absolute_file($1, $herecurr)) {
1665 #
1666 } else {
1667 check_absolute_file($file, $herecurr);
1668 }
1669 }
1670 }
1671
de7d4f0e
AW
1672# UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
1673 if (($realfile =~ /^$/ || $line =~ /^\+/) &&
171ae1a4
AW
1674 $rawline !~ m/^$UTF8*$/) {
1675 my ($utf8_prefix) = ($rawline =~ /^($UTF8*)/);
1676
1677 my $blank = copy_spacing($rawline);
1678 my $ptr = substr($blank, 0, length($utf8_prefix)) . "^";
1679 my $hereptr = "$hereline$ptr\n";
1680
34d99219
JP
1681 CHK("INVALID_UTF8",
1682 "Invalid UTF-8, patch and commit message should be encoded in UTF-8\n" . $hereptr);
00df344f
AW
1683 }
1684
15662b3e
JP
1685# Check if it's the start of a commit log
1686# (not a header line and we haven't seen the patch filename)
1687 if ($in_header_lines && $realfile =~ /^$/ &&
270c49a0 1688 $rawline !~ /^(commit\b|from\b|[\w-]+:).+$/i) {
15662b3e
JP
1689 $in_header_lines = 0;
1690 $in_commit_log = 1;
1691 }
1692
fa64205d
PS
1693# Check if there is UTF-8 in a commit log when a mail header has explicitly
1694# declined it, i.e defined some charset where it is missing.
1695 if ($in_header_lines &&
1696 $rawline =~ /^Content-Type:.+charset="(.+)".*$/ &&
1697 $1 !~ /utf-8/i) {
1698 $non_utf8_charset = 1;
1699 }
1700
1701 if ($in_commit_log && $non_utf8_charset && $realfile =~ /^$/ &&
15662b3e 1702 $rawline =~ /$NON_ASCII_UTF8/) {
fa64205d 1703 WARN("UTF8_BEFORE_PATCH",
15662b3e
JP
1704 "8-bit UTF-8 used in possible commit log\n" . $herecurr);
1705 }
1706
30670854
AW
1707# ignore non-hunk lines and lines being removed
1708 next if (!$hunk_line || $line =~ /^-/);
0a920b5b 1709
0a920b5b 1710#trailing whitespace
9c0ca6f9 1711 if ($line =~ /^\+.*\015/) {
c2fdda0d 1712 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
000d1cc1
JP
1713 ERROR("DOS_LINE_ENDINGS",
1714 "DOS line endings\n" . $herevet);
9c0ca6f9 1715
c2fdda0d
AW
1716 } elsif ($rawline =~ /^\+.*\S\s+$/ || $rawline =~ /^\+\s+$/) {
1717 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
000d1cc1
JP
1718 ERROR("TRAILING_WHITESPACE",
1719 "trailing whitespace\n" . $herevet);
d2c0a235 1720 $rpt_cleaners = 1;
0a920b5b 1721 }
5368df20 1722
3354957a 1723# check for Kconfig help text having a real description
9fe287d7
AW
1724# Only applies when adding the entry originally, after that we do not have
1725# sufficient context to determine whether it is indeed long enough.
3354957a 1726 if ($realfile =~ /Kconfig/ &&
a1385803 1727 $line =~ /.\s*config\s+/) {
3354957a 1728 my $length = 0;
9fe287d7
AW
1729 my $cnt = $realcnt;
1730 my $ln = $linenr + 1;
1731 my $f;
a1385803 1732 my $is_start = 0;
9fe287d7 1733 my $is_end = 0;
a1385803 1734 for (; $cnt > 0 && defined $lines[$ln - 1]; $ln++) {
9fe287d7
AW
1735 $f = $lines[$ln - 1];
1736 $cnt-- if ($lines[$ln - 1] !~ /^-/);
1737 $is_end = $lines[$ln - 1] =~ /^\+/;
9fe287d7
AW
1738
1739 next if ($f =~ /^-/);
a1385803
AW
1740
1741 if ($lines[$ln - 1] =~ /.\s*(?:bool|tristate)\s*\"/) {
1742 $is_start = 1;
1743 } elsif ($lines[$ln - 1] =~ /.\s*(?:---)?help(?:---)?$/) {
1744 $length = -1;
1745 }
1746
9fe287d7 1747 $f =~ s/^.//;
3354957a
AK
1748 $f =~ s/#.*//;
1749 $f =~ s/^\s+//;
1750 next if ($f =~ /^$/);
9fe287d7
AW
1751 if ($f =~ /^\s*config\s/) {
1752 $is_end = 1;
1753 last;
1754 }
3354957a
AK
1755 $length++;
1756 }
000d1cc1 1757 WARN("CONFIG_DESCRIPTION",
a1385803
AW
1758 "please write a paragraph that describes the config symbol fully\n" . $herecurr) if ($is_start && $is_end && $length < 4);
1759 #print "is_start<$is_start> is_end<$is_end> length<$length>\n";
3354957a
AK
1760 }
1761
1ba8dfd1
KC
1762# discourage the addition of CONFIG_EXPERIMENTAL in Kconfig.
1763 if ($realfile =~ /Kconfig/ &&
1764 $line =~ /.\s*depends on\s+.*\bEXPERIMENTAL\b/) {
1765 WARN("CONFIG_EXPERIMENTAL",
1766 "Use of CONFIG_EXPERIMENTAL is deprecated. For alternatives, see https://lkml.org/lkml/2012/10/23/580\n");
1767 }
1768
c68e5878
AL
1769 if (($realfile =~ /Makefile.*/ || $realfile =~ /Kbuild.*/) &&
1770 ($line =~ /\+(EXTRA_[A-Z]+FLAGS).*/)) {
1771 my $flag = $1;
1772 my $replacement = {
1773 'EXTRA_AFLAGS' => 'asflags-y',
1774 'EXTRA_CFLAGS' => 'ccflags-y',
1775 'EXTRA_CPPFLAGS' => 'cppflags-y',
1776 'EXTRA_LDFLAGS' => 'ldflags-y',
1777 };
1778
1779 WARN("DEPRECATED_VARIABLE",
1780 "Use of $flag is deprecated, please use \`$replacement->{$flag} instead.\n" . $herecurr) if ($replacement->{$flag});
1781 }
1782
5368df20
AW
1783# check we are in a valid source file if not then ignore this hunk
1784 next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/);
1785
6cd7f386 1786#line length limit
c45dcabd 1787 if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ &&
f4c014c0 1788 $rawline !~ /^.\s*\*\s*\@$Ident\s/ &&
0fccc622 1789 !($line =~ /^\+\s*$logFunctions\s*\(\s*(?:(KERN_\S+\s*|[^"]*))?"[X\t]*"\s*(?:|,|\)\s*;)\s*$/ ||
8bbea968 1790 $line =~ /^\+\s*"[^"]*"\s*(?:\s*|,|\)\s*;)\s*$/) &&
6cd7f386 1791 $length > $max_line_length)
c45dcabd 1792 {
000d1cc1 1793 WARN("LONG_LINE",
6cd7f386 1794 "line over $max_line_length characters\n" . $herecurr);
0a920b5b
AW
1795 }
1796
ca56dc09
JT
1797# Check for user-visible strings broken across lines, which breaks the ability
1798# to grep for the string. Limited to strings used as parameters (those
1799# following an open parenthesis), which almost completely eliminates false
1800# positives, as well as warning only once per parameter rather than once per
1801# line of the string. Make an exception when the previous string ends in a
1802# newline (multiple lines in one string constant) or \n\t (common in inline
1803# assembly to indent the instruction on the following line).
1804 if ($line =~ /^\+\s*"/ &&
1805 $prevline =~ /"\s*$/ &&
1806 $prevline =~ /\(/ &&
1807 $prevrawline !~ /\\n(?:\\t)*"\s*$/) {
1808 WARN("SPLIT_STRING",
1809 "quoted string split across lines\n" . $hereprev);
1810 }
1811
5e79d96e
JP
1812# check for spaces before a quoted newline
1813 if ($rawline =~ /^.*\".*\s\\n/) {
000d1cc1
JP
1814 WARN("QUOTED_WHITESPACE_BEFORE_NEWLINE",
1815 "unnecessary whitespace before a quoted newline\n" . $herecurr);
5e79d96e
JP
1816 }
1817
8905a67c
AW
1818# check for adding lines without a newline.
1819 if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
000d1cc1
JP
1820 WARN("MISSING_EOF_NEWLINE",
1821 "adding a line without newline at end of file\n" . $herecurr);
8905a67c
AW
1822 }
1823
42e41c54
MF
1824# Blackfin: use hi/lo macros
1825 if ($realfile =~ m@arch/blackfin/.*\.S$@) {
1826 if ($line =~ /\.[lL][[:space:]]*=.*&[[:space:]]*0x[fF][fF][fF][fF]/) {
1827 my $herevet = "$here\n" . cat_vet($line) . "\n";
000d1cc1
JP
1828 ERROR("LO_MACRO",
1829 "use the LO() macro, not (... & 0xFFFF)\n" . $herevet);
42e41c54
MF
1830 }
1831 if ($line =~ /\.[hH][[:space:]]*=.*>>[[:space:]]*16/) {
1832 my $herevet = "$here\n" . cat_vet($line) . "\n";
000d1cc1
JP
1833 ERROR("HI_MACRO",
1834 "use the HI() macro, not (... >> 16)\n" . $herevet);
42e41c54
MF
1835 }
1836 }
1837
b9ea10d6
AW
1838# check we are in a valid source file C or perl if not then ignore this hunk
1839 next if ($realfile !~ /\.(h|c|pl)$/);
0a920b5b
AW
1840
1841# at the beginning of a line any tabs must come first and anything
1842# more than 8 must use tabs.
c2fdda0d
AW
1843 if ($rawline =~ /^\+\s* \t\s*\S/ ||
1844 $rawline =~ /^\+\s* \s*/) {
1845 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
000d1cc1
JP
1846 ERROR("CODE_INDENT",
1847 "code indent should use tabs where possible\n" . $herevet);
d2c0a235 1848 $rpt_cleaners = 1;
0a920b5b
AW
1849 }
1850
08e44365
AP
1851# check for space before tabs.
1852 if ($rawline =~ /^\+/ && $rawline =~ / \t/) {
1853 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
000d1cc1
JP
1854 WARN("SPACE_BEFORE_TAB",
1855 "please, no space before tabs\n" . $herevet);
08e44365
AP
1856 }
1857
d1fe9c09
JP
1858# check for && or || at the start of a line
1859 if ($rawline =~ /^\+\s*(&&|\|\|)/) {
1860 CHK("LOGICAL_CONTINUATIONS",
1861 "Logical continuations should be on the previous line\n" . $hereprev);
1862 }
1863
1864# check multi-line statement indentation matches previous line
1865 if ($^V && $^V ge 5.10.0 &&
1866 $prevline =~ /^\+(\t*)(if \(|$Ident\().*(\&\&|\|\||,)\s*$/) {
1867 $prevline =~ /^\+(\t*)(.*)$/;
1868 my $oldindent = $1;
1869 my $rest = $2;
1870
1871 my $pos = pos_last_openparen($rest);
1872 if ($pos >= 0) {
b34a26f3
JP
1873 $line =~ /^(\+| )([ \t]*)/;
1874 my $newindent = $2;
d1fe9c09
JP
1875
1876 my $goodtabindent = $oldindent .
1877 "\t" x ($pos / 8) .
1878 " " x ($pos % 8);
1879 my $goodspaceindent = $oldindent . " " x $pos;
1880
1881 if ($newindent ne $goodtabindent &&
1882 $newindent ne $goodspaceindent) {
1883 CHK("PARENTHESIS_ALIGNMENT",
1884 "Alignment should match open parenthesis\n" . $hereprev);
1885 }
1886 }
1887 }
1888
23f780c9 1889 if ($line =~ /^\+.*\*[ \t]*\)[ \t]+(?!$Assignment|$Arithmetic)/) {
aad4f614
JP
1890 CHK("SPACING",
1891 "No space is necessary after a cast\n" . $hereprev);
1892 }
1893
05880600 1894 if ($realfile =~ m@^(drivers/net/|net/)@ &&
fdb4bcd6
JP
1895 $prevrawline =~ /^\+[ \t]*\/\*[ \t]*$/ &&
1896 $rawline =~ /^\+[ \t]*\*/) {
05880600
JP
1897 WARN("NETWORKING_BLOCK_COMMENT_STYLE",
1898 "networking block comments don't use an empty /* line, use /* Comment...\n" . $hereprev);
1899 }
1900
1901 if ($realfile =~ m@^(drivers/net/|net/)@ &&
a605e32e
JP
1902 $prevrawline =~ /^\+[ \t]*\/\*/ && #starting /*
1903 $prevrawline !~ /\*\/[ \t]*$/ && #no trailing */
1904 $rawline !~ /^\+[ \t]*\*/) { #no leading *
1905 WARN("NETWORKING_BLOCK_COMMENT_STYLE",
1906 "networking block comments start with * on subsequent lines\n" . $hereprev);
1907 }
1908
1909 if ($realfile =~ m@^(drivers/net/|net/)@ &&
c24f9f19
JP
1910 $rawline !~ m@^\+[ \t]*\*/[ \t]*$@ && #trailing */
1911 $rawline !~ m@^\+.*/\*.*\*/[ \t]*$@ && #inline /*...*/
1912 $rawline !~ m@^\+.*\*{2,}/[ \t]*$@ && #trailing **/
1913 $rawline =~ m@^\+[ \t]*.+\*\/[ \t]*$@) { #non blank */
05880600
JP
1914 WARN("NETWORKING_BLOCK_COMMENT_STYLE",
1915 "networking block comments put the trailing */ on a separate line\n" . $herecurr);
1916 }
1917
5f7ddae6 1918# check for spaces at the beginning of a line.
6b4c5beb
AW
1919# Exceptions:
1920# 1) within comments
1921# 2) indented preprocessor commands
1922# 3) hanging labels
1923 if ($rawline =~ /^\+ / && $line !~ /\+ *(?:$;|#|$Ident:)/) {
5f7ddae6 1924 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
000d1cc1
JP
1925 WARN("LEADING_SPACE",
1926 "please, no spaces at the start of a line\n" . $herevet);
5f7ddae6
RR
1927 }
1928
b9ea10d6
AW
1929# check we are in a valid C source file if not then ignore this hunk
1930 next if ($realfile !~ /\.(h|c)$/);
1931
1ba8dfd1
KC
1932# discourage the addition of CONFIG_EXPERIMENTAL in #if(def).
1933 if ($line =~ /^\+\s*\#\s*if.*\bCONFIG_EXPERIMENTAL\b/) {
1934 WARN("CONFIG_EXPERIMENTAL",
1935 "Use of CONFIG_EXPERIMENTAL is deprecated. For alternatives, see https://lkml.org/lkml/2012/10/23/580\n");
1936 }
1937
c2fdda0d 1938# check for RCS/CVS revision markers
cf655043 1939 if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) {
000d1cc1
JP
1940 WARN("CVS_KEYWORD",
1941 "CVS style keyword markers, these will _not_ be updated\n". $herecurr);
c2fdda0d 1942 }
22f2a2ef 1943
42e41c54
MF
1944# Blackfin: don't use __builtin_bfin_[cs]sync
1945 if ($line =~ /__builtin_bfin_csync/) {
1946 my $herevet = "$here\n" . cat_vet($line) . "\n";
000d1cc1
JP
1947 ERROR("CSYNC",
1948 "use the CSYNC() macro in asm/blackfin.h\n" . $herevet);
42e41c54
MF
1949 }
1950 if ($line =~ /__builtin_bfin_ssync/) {
1951 my $herevet = "$here\n" . cat_vet($line) . "\n";
000d1cc1
JP
1952 ERROR("SSYNC",
1953 "use the SSYNC() macro in asm/blackfin.h\n" . $herevet);
42e41c54
MF
1954 }
1955
56e77d70
JP
1956# check for old HOTPLUG __dev<foo> section markings
1957 if ($line =~ /\b(__dev(init|exit)(data|const|))\b/) {
1958 WARN("HOTPLUG_SECTION",
1959 "Using $1 is unnecessary\n" . $herecurr);
1960 }
1961
9c0ca6f9 1962# Check for potential 'bare' types
2b474a1a
AW
1963 my ($stat, $cond, $line_nr_next, $remain_next, $off_next,
1964 $realline_next);
3e469cdc
AW
1965#print "LINE<$line>\n";
1966 if ($linenr >= $suppress_statement &&
1967 $realcnt && $line =~ /.\s*\S/) {
170d3a22 1968 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
f5fe35dd 1969 ctx_statement_block($linenr, $realcnt, 0);
171ae1a4
AW
1970 $stat =~ s/\n./\n /g;
1971 $cond =~ s/\n./\n /g;
1972
3e469cdc
AW
1973#print "linenr<$linenr> <$stat>\n";
1974 # If this statement has no statement boundaries within
1975 # it there is no point in retrying a statement scan
1976 # until we hit end of it.
1977 my $frag = $stat; $frag =~ s/;+\s*$//;
1978 if ($frag !~ /(?:{|;)/) {
1979#print "skip<$line_nr_next>\n";
1980 $suppress_statement = $line_nr_next;
1981 }
f74bd194 1982
2b474a1a
AW
1983 # Find the real next line.
1984 $realline_next = $line_nr_next;
1985 if (defined $realline_next &&
1986 (!defined $lines[$realline_next - 1] ||
1987 substr($lines[$realline_next - 1], $off_next) =~ /^\s*$/)) {
1988 $realline_next++;
1989 }
1990
171ae1a4
AW
1991 my $s = $stat;
1992 $s =~ s/{.*$//s;
cf655043 1993
c2fdda0d 1994 # Ignore goto labels.
171ae1a4 1995 if ($s =~ /$Ident:\*$/s) {
c2fdda0d
AW
1996
1997 # Ignore functions being called
171ae1a4 1998 } elsif ($s =~ /^.\s*$Ident\s*\(/s) {
c2fdda0d 1999
463f2864
AW
2000 } elsif ($s =~ /^.\s*else\b/s) {
2001
c45dcabd 2002 # declarations always start with types
d2506586 2003 } 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
2004 my $type = $1;
2005 $type =~ s/\s+/ /g;
2006 possible($type, "A:" . $s);
2007
8905a67c 2008 # definitions in global scope can only start with types
a6a84062 2009 } elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b\s*(?!:)/s) {
c45dcabd 2010 possible($1, "B:" . $s);
c2fdda0d 2011 }
8905a67c
AW
2012
2013 # any (foo ... *) is a pointer cast, and foo is a type
65863862 2014 while ($s =~ /\(($Ident)(?:\s+$Sparse)*[\s\*]+\s*\)/sg) {
c45dcabd 2015 possible($1, "C:" . $s);
8905a67c
AW
2016 }
2017
2018 # Check for any sort of function declaration.
2019 # int foo(something bar, other baz);
2020 # void (*store_gdt)(x86_descr_ptr *);
171ae1a4 2021 if ($prev_values eq 'E' && $s =~ /^(.(?:typedef\s*)?(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*(?:\b$Ident|\(\*\s*$Ident\))\s*)\(/s) {
8905a67c 2022 my ($name_len) = length($1);
8905a67c 2023
cf655043 2024 my $ctx = $s;
773647a0 2025 substr($ctx, 0, $name_len + 1, '');
8905a67c 2026 $ctx =~ s/\)[^\)]*$//;
cf655043 2027
8905a67c 2028 for my $arg (split(/\s*,\s*/, $ctx)) {
c45dcabd 2029 if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$/s) {
8905a67c 2030
c45dcabd 2031 possible($1, "D:" . $s);
8905a67c
AW
2032 }
2033 }
9c0ca6f9 2034 }
8905a67c 2035
9c0ca6f9
AW
2036 }
2037
653d4876
AW
2038#
2039# Checks which may be anchored in the context.
2040#
00df344f 2041
653d4876
AW
2042# Check for switch () and associated case and default
2043# statements should be at the same indent.
00df344f
AW
2044 if ($line=~/\bswitch\s*\(.*\)/) {
2045 my $err = '';
2046 my $sep = '';
2047 my @ctx = ctx_block_outer($linenr, $realcnt);
2048 shift(@ctx);
2049 for my $ctx (@ctx) {
2050 my ($clen, $cindent) = line_stats($ctx);
2051 if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
2052 $indent != $cindent) {
2053 $err .= "$sep$ctx\n";
2054 $sep = '';
2055 } else {
2056 $sep = "[...]\n";
2057 }
2058 }
2059 if ($err ne '') {
000d1cc1
JP
2060 ERROR("SWITCH_CASE_INDENT_LEVEL",
2061 "switch and case should be at the same indent\n$hereline$err");
de7d4f0e
AW
2062 }
2063 }
2064
2065# if/while/etc brace do not go on next line, unless defining a do while loop,
2066# or if that brace on the next line is for something else
c45dcabd 2067 if ($line =~ /(.*)\b((?:if|while|for|switch)\s*\(|do\b|else\b)/ && $line !~ /^.\s*\#/) {
773647a0
AW
2068 my $pre_ctx = "$1$2";
2069
9c0ca6f9 2070 my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0);
8eef05dd
JP
2071
2072 if ($line =~ /^\+\t{6,}/) {
2073 WARN("DEEP_INDENTATION",
2074 "Too many leading tabs - consider code refactoring\n" . $herecurr);
2075 }
2076
de7d4f0e
AW
2077 my $ctx_cnt = $realcnt - $#ctx - 1;
2078 my $ctx = join("\n", @ctx);
2079
548596d5
AW
2080 my $ctx_ln = $linenr;
2081 my $ctx_skip = $realcnt;
773647a0 2082
548596d5
AW
2083 while ($ctx_skip > $ctx_cnt || ($ctx_skip == $ctx_cnt &&
2084 defined $lines[$ctx_ln - 1] &&
2085 $lines[$ctx_ln - 1] =~ /^-/)) {
2086 ##print "SKIP<$ctx_skip> CNT<$ctx_cnt>\n";
2087 $ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/);
de7d4f0e 2088 $ctx_ln++;
de7d4f0e 2089 }
548596d5 2090
53210168
AW
2091 #print "realcnt<$realcnt> ctx_cnt<$ctx_cnt>\n";
2092 #print "pre<$pre_ctx>\nline<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>\n";
de7d4f0e 2093
773647a0 2094 if ($ctx !~ /{\s*/ && defined($lines[$ctx_ln -1]) && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
000d1cc1
JP
2095 ERROR("OPEN_BRACE",
2096 "that open brace { should be on the previous line\n" .
01464f30 2097 "$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
00df344f 2098 }
773647a0
AW
2099 if ($level == 0 && $pre_ctx !~ /}\s*while\s*\($/ &&
2100 $ctx =~ /\)\s*\;\s*$/ &&
2101 defined $lines[$ctx_ln - 1])
2102 {
9c0ca6f9
AW
2103 my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
2104 if ($nindent > $indent) {
000d1cc1
JP
2105 WARN("TRAILING_SEMICOLON",
2106 "trailing semicolon indicates no statements, indent implies otherwise\n" .
01464f30 2107 "$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
9c0ca6f9
AW
2108 }
2109 }
00df344f
AW
2110 }
2111
4d001e4d
AW
2112# Check relative indent for conditionals and blocks.
2113 if ($line =~ /\b(?:(?:if|while|for)\s*\(|do\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) {
3e469cdc
AW
2114 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
2115 ctx_statement_block($linenr, $realcnt, 0)
2116 if (!defined $stat);
4d001e4d
AW
2117 my ($s, $c) = ($stat, $cond);
2118
2119 substr($s, 0, length($c), '');
2120
2121 # Make sure we remove the line prefixes as we have
2122 # none on the first line, and are going to readd them
2123 # where necessary.
2124 $s =~ s/\n./\n/gs;
2125
2126 # Find out how long the conditional actually is.
6f779c18
AW
2127 my @newlines = ($c =~ /\n/gs);
2128 my $cond_lines = 1 + $#newlines;
4d001e4d
AW
2129
2130 # We want to check the first line inside the block
2131 # starting at the end of the conditional, so remove:
2132 # 1) any blank line termination
2133 # 2) any opening brace { on end of the line
2134 # 3) any do (...) {
2135 my $continuation = 0;
2136 my $check = 0;
2137 $s =~ s/^.*\bdo\b//;
2138 $s =~ s/^\s*{//;
2139 if ($s =~ s/^\s*\\//) {
2140 $continuation = 1;
2141 }
9bd49efe 2142 if ($s =~ s/^\s*?\n//) {
4d001e4d
AW
2143 $check = 1;
2144 $cond_lines++;
2145 }
2146
2147 # Also ignore a loop construct at the end of a
2148 # preprocessor statement.
2149 if (($prevline =~ /^.\s*#\s*define\s/ ||
2150 $prevline =~ /\\\s*$/) && $continuation == 0) {
2151 $check = 0;
2152 }
2153
9bd49efe 2154 my $cond_ptr = -1;
740504c6 2155 $continuation = 0;
9bd49efe
AW
2156 while ($cond_ptr != $cond_lines) {
2157 $cond_ptr = $cond_lines;
2158
f16fa28f
AW
2159 # If we see an #else/#elif then the code
2160 # is not linear.
2161 if ($s =~ /^\s*\#\s*(?:else|elif)/) {
2162 $check = 0;
2163 }
2164
9bd49efe
AW
2165 # Ignore:
2166 # 1) blank lines, they should be at 0,
2167 # 2) preprocessor lines, and
2168 # 3) labels.
740504c6
AW
2169 if ($continuation ||
2170 $s =~ /^\s*?\n/ ||
9bd49efe
AW
2171 $s =~ /^\s*#\s*?/ ||
2172 $s =~ /^\s*$Ident\s*:/) {
740504c6 2173 $continuation = ($s =~ /^.*?\\\n/) ? 1 : 0;
30dad6eb
AW
2174 if ($s =~ s/^.*?\n//) {
2175 $cond_lines++;
2176 }
9bd49efe 2177 }
4d001e4d
AW
2178 }
2179
2180 my (undef, $sindent) = line_stats("+" . $s);
2181 my $stat_real = raw_line($linenr, $cond_lines);
2182
2183 # Check if either of these lines are modified, else
2184 # this is not this patch's fault.
2185 if (!defined($stat_real) ||
2186 $stat !~ /^\+/ && $stat_real !~ /^\+/) {
2187 $check = 0;
2188 }
2189 if (defined($stat_real) && $cond_lines > 1) {
2190 $stat_real = "[...]\n$stat_real";
2191 }
2192
9bd49efe 2193 #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
2194
2195 if ($check && (($sindent % 8) != 0 ||
2196 ($sindent <= $indent && $s ne ''))) {
000d1cc1
JP
2197 WARN("SUSPECT_CODE_INDENT",
2198 "suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n");
4d001e4d
AW
2199 }
2200 }
2201
6c72ffaa
AW
2202 # Track the 'values' across context and added lines.
2203 my $opline = $line; $opline =~ s/^./ /;
1f65f947
AW
2204 my ($curr_values, $curr_vars) =
2205 annotate_values($opline . "\n", $prev_values);
6c72ffaa 2206 $curr_values = $prev_values . $curr_values;
c2fdda0d
AW
2207 if ($dbg_values) {
2208 my $outline = $opline; $outline =~ s/\t/ /g;
cf655043
AW
2209 print "$linenr > .$outline\n";
2210 print "$linenr > $curr_values\n";
1f65f947 2211 print "$linenr > $curr_vars\n";
c2fdda0d 2212 }
6c72ffaa
AW
2213 $prev_values = substr($curr_values, -1);
2214
00df344f
AW
2215#ignore lines not being added
2216 if ($line=~/^[^\+]/) {next;}
2217
653d4876 2218# TEST: allow direct testing of the type matcher.
7429c690
AW
2219 if ($dbg_type) {
2220 if ($line =~ /^.\s*$Declare\s*$/) {
000d1cc1
JP
2221 ERROR("TEST_TYPE",
2222 "TEST: is type\n" . $herecurr);
7429c690 2223 } elsif ($dbg_type > 1 && $line =~ /^.+($Declare)/) {
000d1cc1
JP
2224 ERROR("TEST_NOT_TYPE",
2225 "TEST: is not type ($1 is)\n". $herecurr);
7429c690 2226 }
653d4876
AW
2227 next;
2228 }
a1ef277e
AW
2229# TEST: allow direct testing of the attribute matcher.
2230 if ($dbg_attr) {
9360b0e5 2231 if ($line =~ /^.\s*$Modifier\s*$/) {
000d1cc1
JP
2232 ERROR("TEST_ATTR",
2233 "TEST: is attr\n" . $herecurr);
9360b0e5 2234 } elsif ($dbg_attr > 1 && $line =~ /^.+($Modifier)/) {
000d1cc1
JP
2235 ERROR("TEST_NOT_ATTR",
2236 "TEST: is not attr ($1 is)\n". $herecurr);
a1ef277e
AW
2237 }
2238 next;
2239 }
653d4876 2240
f0a594c1 2241# check for initialisation to aggregates open brace on the next line
99423c20
AW
2242 if ($line =~ /^.\s*{/ &&
2243 $prevline =~ /(?:^|[^=])=\s*$/) {
000d1cc1
JP
2244 ERROR("OPEN_BRACE",
2245 "that open brace { should be on the previous line\n" . $hereprev);
f0a594c1
AW
2246 }
2247
653d4876
AW
2248#
2249# Checks which are anchored on the added line.
2250#
2251
2252# check for malformed paths in #include statements (uses RAW line)
c45dcabd 2253 if ($rawline =~ m{^.\s*\#\s*include\s+[<"](.*)[">]}) {
653d4876
AW
2254 my $path = $1;
2255 if ($path =~ m{//}) {
000d1cc1 2256 ERROR("MALFORMED_INCLUDE",
495e9d84
JP
2257 "malformed #include filename\n" . $herecurr);
2258 }
2259 if ($path =~ "^uapi/" && $realfile =~ m@\binclude/uapi/@) {
2260 ERROR("UAPI_INCLUDE",
2261 "No #include in ...include/uapi/... should use a uapi/ path prefix\n" . $herecurr);
653d4876 2262 }
653d4876 2263 }
00df344f 2264
0a920b5b 2265# no C99 // comments
00df344f 2266 if ($line =~ m{//}) {
000d1cc1
JP
2267 ERROR("C99_COMMENTS",
2268 "do not use C99 // comments\n" . $herecurr);
0a920b5b 2269 }
00df344f 2270 # Remove C99 comments.
0a920b5b 2271 $line =~ s@//.*@@;
6c72ffaa 2272 $opline =~ s@//.*@@;
0a920b5b 2273
2b474a1a
AW
2274# EXPORT_SYMBOL should immediately follow the thing it is exporting, consider
2275# the whole statement.
2276#print "APW <$lines[$realline_next - 1]>\n";
2277 if (defined $realline_next &&
2278 exists $lines[$realline_next - 1] &&
2279 !defined $suppress_export{$realline_next} &&
2280 ($lines[$realline_next - 1] =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
2281 $lines[$realline_next - 1] =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
3cbf62df
AW
2282 # Handle definitions which produce identifiers with
2283 # a prefix:
2284 # XXX(foo);
2285 # EXPORT_SYMBOL(something_foo);
653d4876 2286 my $name = $1;
87a53877 2287 if ($stat =~ /^(?:.\s*}\s*\n)?.([A-Z_]+)\s*\(\s*($Ident)/ &&
3cbf62df
AW
2288 $name =~ /^${Ident}_$2/) {
2289#print "FOO C name<$name>\n";
2290 $suppress_export{$realline_next} = 1;
2291
2292 } elsif ($stat !~ /(?:
2b474a1a 2293 \n.}\s*$|
48012058
AW
2294 ^.DEFINE_$Ident\(\Q$name\E\)|
2295 ^.DECLARE_$Ident\(\Q$name\E\)|
2296 ^.LIST_HEAD\(\Q$name\E\)|
2b474a1a
AW
2297 ^.(?:$Storage\s+)?$Type\s*\(\s*\*\s*\Q$name\E\s*\)\s*\(|
2298 \b\Q$name\E(?:\s+$Attribute)*\s*(?:;|=|\[|\()
48012058 2299 )/x) {
2b474a1a
AW
2300#print "FOO A<$lines[$realline_next - 1]> stat<$stat> name<$name>\n";
2301 $suppress_export{$realline_next} = 2;
2302 } else {
2303 $suppress_export{$realline_next} = 1;
0a920b5b
AW
2304 }
2305 }
2b474a1a
AW
2306 if (!defined $suppress_export{$linenr} &&
2307 $prevline =~ /^.\s*$/ &&
2308 ($line =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
2309 $line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
2310#print "FOO B <$lines[$linenr - 1]>\n";
2311 $suppress_export{$linenr} = 2;
2312 }
2313 if (defined $suppress_export{$linenr} &&
2314 $suppress_export{$linenr} == 2) {
000d1cc1
JP
2315 WARN("EXPORT_SYMBOL",
2316 "EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
2b474a1a 2317 }
0a920b5b 2318
5150bda4 2319# check for global initialisers.
c45dcabd 2320 if ($line =~ /^.$Type\s*$Ident\s*(?:\s+$Modifier)*\s*=\s*(0|NULL|false)\s*;/) {
000d1cc1
JP
2321 ERROR("GLOBAL_INITIALISERS",
2322 "do not initialise globals to 0 or NULL\n" .
f0a594c1
AW
2323 $herecurr);
2324 }
653d4876 2325# check for static initialisers.
2d1bafd7 2326 if ($line =~ /\bstatic\s.*=\s*(0|NULL|false)\s*;/) {
000d1cc1
JP
2327 ERROR("INITIALISED_STATIC",
2328 "do not initialise statics to 0 or NULL\n" .
de7d4f0e 2329 $herecurr);
0a920b5b
AW
2330 }
2331
cb710eca
JP
2332# check for static const char * arrays.
2333 if ($line =~ /\bstatic\s+const\s+char\s*\*\s*(\w+)\s*\[\s*\]\s*=\s*/) {
000d1cc1
JP
2334 WARN("STATIC_CONST_CHAR_ARRAY",
2335 "static const char * array should probably be static const char * const\n" .
cb710eca
JP
2336 $herecurr);
2337 }
2338
2339# check for static char foo[] = "bar" declarations.
2340 if ($line =~ /\bstatic\s+char\s+(\w+)\s*\[\s*\]\s*=\s*"/) {
000d1cc1
JP
2341 WARN("STATIC_CONST_CHAR_ARRAY",
2342 "static char array declaration should probably be static const char\n" .
cb710eca
JP
2343 $herecurr);
2344 }
2345
93ed0e2d
JP
2346# check for declarations of struct pci_device_id
2347 if ($line =~ /\bstruct\s+pci_device_id\s+\w+\s*\[\s*\]\s*\=\s*\{/) {
000d1cc1
JP
2348 WARN("DEFINE_PCI_DEVICE_TABLE",
2349 "Use DEFINE_PCI_DEVICE_TABLE for struct pci_device_id\n" . $herecurr);
93ed0e2d
JP
2350 }
2351
653d4876
AW
2352# check for new typedefs, only function parameters and sparse annotations
2353# make sense.
2354 if ($line =~ /\btypedef\s/ &&
8054576d 2355 $line !~ /\btypedef\s+$Type\s*\(\s*\*?$Ident\s*\)\s*\(/ &&
c45dcabd 2356 $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ &&
8ed22cad 2357 $line !~ /\b$typeTypedefs\b/ &&
653d4876 2358 $line !~ /\b__bitwise(?:__|)\b/) {
000d1cc1
JP
2359 WARN("NEW_TYPEDEFS",
2360 "do not add new typedefs\n" . $herecurr);
0a920b5b
AW
2361 }
2362
2363# * goes on variable not on type
65863862 2364 # (char*[ const])
bfcb2cc7
AW
2365 while ($line =~ m{(\($NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)\))}g) {
2366 #print "AA<$1>\n";
2367 my ($from, $to) = ($2, $2);
65863862
AW
2368
2369 # Should start with a space.
2370 $to =~ s/^(\S)/ $1/;
2371 # Should not end with a space.
2372 $to =~ s/\s+$//;
2373 # '*'s should not have spaces between.
f9a0b3d1 2374 while ($to =~ s/\*\s+\*/\*\*/) {
65863862 2375 }
d8aaf121 2376
65863862
AW
2377 #print "from<$from> to<$to>\n";
2378 if ($from ne $to) {
000d1cc1
JP
2379 ERROR("POINTER_LOCATION",
2380 "\"(foo$from)\" should be \"(foo$to)\"\n" . $herecurr);
65863862 2381 }
bfcb2cc7
AW
2382 }
2383 while ($line =~ m{(\b$NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)($Ident))}g) {
2384 #print "BB<$1>\n";
2385 my ($from, $to, $ident) = ($2, $2, $3);
65863862
AW
2386
2387 # Should start with a space.
2388 $to =~ s/^(\S)/ $1/;
2389 # Should not end with a space.
2390 $to =~ s/\s+$//;
2391 # '*'s should not have spaces between.
f9a0b3d1 2392 while ($to =~ s/\*\s+\*/\*\*/) {
65863862
AW
2393 }
2394 # Modifiers should have spaces.
2395 $to =~ s/(\b$Modifier$)/$1 /;
d8aaf121 2396
667026e7
AW
2397 #print "from<$from> to<$to> ident<$ident>\n";
2398 if ($from ne $to && $ident !~ /^$Modifier$/) {
000d1cc1
JP
2399 ERROR("POINTER_LOCATION",
2400 "\"foo${from}bar\" should be \"foo${to}bar\"\n" . $herecurr);
65863862 2401 }
0a920b5b
AW
2402 }
2403
2404# # no BUG() or BUG_ON()
2405# if ($line =~ /\b(BUG|BUG_ON)\b/) {
2406# print "Try to use WARN_ON & Recovery code rather than BUG() or BUG_ON()\n";
2407# print "$herecurr";
2408# $clean = 0;
2409# }
2410
8905a67c 2411 if ($line =~ /\bLINUX_VERSION_CODE\b/) {
000d1cc1
JP
2412 WARN("LINUX_VERSION_CODE",
2413 "LINUX_VERSION_CODE should be avoided, code should be for the version to which it is merged\n" . $herecurr);
8905a67c
AW
2414 }
2415
17441227
JP
2416# check for uses of printk_ratelimit
2417 if ($line =~ /\bprintk_ratelimit\s*\(/) {
000d1cc1
JP
2418 WARN("PRINTK_RATELIMITED",
2419"Prefer printk_ratelimited or pr_<level>_ratelimited to printk_ratelimit\n" . $herecurr);
17441227
JP
2420 }
2421
00df344f
AW
2422# printk should use KERN_* levels. Note that follow on printk's on the
2423# same line do not need a level, so we use the current block context
2424# to try and find and validate the current printk. In summary the current
25985edc 2425# printk includes all preceding printk's which have no newline on the end.
00df344f 2426# we assume the first bad printk is the one to report.
f0a594c1 2427 if ($line =~ /\bprintk\((?!KERN_)\s*"/) {
00df344f
AW
2428 my $ok = 0;
2429 for (my $ln = $linenr - 1; $ln >= $first_line; $ln--) {
2430 #print "CHECK<$lines[$ln - 1]\n";
25985edc 2431 # we have a preceding printk if it ends
00df344f
AW
2432 # with "\n" ignore it, else it is to blame
2433 if ($lines[$ln - 1] =~ m{\bprintk\(}) {
2434 if ($rawlines[$ln - 1] !~ m{\\n"}) {
2435 $ok = 1;
2436 }
2437 last;
2438 }
2439 }
2440 if ($ok == 0) {
000d1cc1
JP
2441 WARN("PRINTK_WITHOUT_KERN_LEVEL",
2442 "printk() should include KERN_ facility level\n" . $herecurr);
00df344f 2443 }
0a920b5b
AW
2444 }
2445
243f3803
JP
2446 if ($line =~ /\bprintk\s*\(\s*KERN_([A-Z]+)/) {
2447 my $orig = $1;
2448 my $level = lc($orig);
2449 $level = "warn" if ($level eq "warning");
8f26b837
JP
2450 my $level2 = $level;
2451 $level2 = "dbg" if ($level eq "debug");
243f3803 2452 WARN("PREFER_PR_LEVEL",
8f26b837 2453 "Prefer netdev_$level2(netdev, ... then dev_$level2(dev, ... then pr_$level(... to printk(KERN_$orig ...\n" . $herecurr);
243f3803
JP
2454 }
2455
2456 if ($line =~ /\bpr_warning\s*\(/) {
2457 WARN("PREFER_PR_LEVEL",
2458 "Prefer pr_warn(... to pr_warning(...\n" . $herecurr);
2459 }
2460
dc139313
JP
2461 if ($line =~ /\bdev_printk\s*\(\s*KERN_([A-Z]+)/) {
2462 my $orig = $1;
2463 my $level = lc($orig);
2464 $level = "warn" if ($level eq "warning");
2465 $level = "dbg" if ($level eq "debug");
2466 WARN("PREFER_DEV_LEVEL",
2467 "Prefer dev_$level(... to dev_printk(KERN_$orig, ...\n" . $herecurr);
2468 }
2469
653d4876
AW
2470# function brace can't be on same line, except for #defines of do while,
2471# or if closed on same line
c45dcabd
AW
2472 if (($line=~/$Type\s*$Ident\(.*\).*\s{/) and
2473 !($line=~/\#\s*define.*do\s{/) and !($line=~/}/)) {
000d1cc1
JP
2474 ERROR("OPEN_BRACE",
2475 "open brace '{' following function declarations go on the next line\n" . $herecurr);
0a920b5b 2476 }
653d4876 2477
8905a67c
AW
2478# open braces for enum, union and struct go on the same line.
2479 if ($line =~ /^.\s*{/ &&
2480 $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
000d1cc1
JP
2481 ERROR("OPEN_BRACE",
2482 "open brace '{' following $1 go on the same line\n" . $hereprev);
8905a67c
AW
2483 }
2484
0c73b4eb
AW
2485# missing space after union, struct or enum definition
2486 if ($line =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?(?:\s+$Ident)?[=\{]/) {
000d1cc1
JP
2487 WARN("SPACING",
2488 "missing space after $1 definition\n" . $herecurr);
0c73b4eb
AW
2489 }
2490
8d31cfce
AW
2491# check for spacing round square brackets; allowed:
2492# 1. with a type on the left -- int [] a;
fe2a7dbc
AW
2493# 2. at the beginning of a line for slice initialisers -- [0...10] = 5,
2494# 3. inside a curly brace -- = { [0...10] = 5 }
8d31cfce
AW
2495 while ($line =~ /(.*?\s)\[/g) {
2496 my ($where, $prefix) = ($-[1], $1);
2497 if ($prefix !~ /$Type\s+$/ &&
fe2a7dbc 2498 ($where != 0 || $prefix !~ /^.\s+$/) &&
daebc534 2499 $prefix !~ /[{,]\s+$/) {
000d1cc1
JP
2500 ERROR("BRACKET_SPACE",
2501 "space prohibited before open square bracket '['\n" . $herecurr);
8d31cfce
AW
2502 }
2503 }
2504
f0a594c1 2505# check for spaces between functions and their parentheses.
6c72ffaa 2506 while ($line =~ /($Ident)\s+\(/g) {
c2fdda0d 2507 my $name = $1;
773647a0
AW
2508 my $ctx_before = substr($line, 0, $-[1]);
2509 my $ctx = "$ctx_before$name";
c2fdda0d
AW
2510
2511 # Ignore those directives where spaces _are_ permitted.
773647a0
AW
2512 if ($name =~ /^(?:
2513 if|for|while|switch|return|case|
2514 volatile|__volatile__|
2515 __attribute__|format|__extension__|
2516 asm|__asm__)$/x)
2517 {
c2fdda0d
AW
2518
2519 # cpp #define statements have non-optional spaces, ie
2520 # if there is a space between the name and the open
2521 # parenthesis it is simply not a parameter group.
c45dcabd 2522 } elsif ($ctx_before =~ /^.\s*\#\s*define\s*$/) {
773647a0
AW
2523
2524 # cpp #elif statement condition may start with a (
c45dcabd 2525 } elsif ($ctx =~ /^.\s*\#\s*elif\s*$/) {
c2fdda0d
AW
2526
2527 # If this whole things ends with a type its most
2528 # likely a typedef for a function.
773647a0 2529 } elsif ($ctx =~ /$Type$/) {
c2fdda0d
AW
2530
2531 } else {
000d1cc1
JP
2532 WARN("SPACING",
2533 "space prohibited between function name and open parenthesis '('\n" . $herecurr);
6c72ffaa 2534 }
f0a594c1 2535 }
9a4cad4e
EN
2536
2537# check for whitespace before a non-naked semicolon
2538 if ($line =~ /^\+.*\S\s+;/) {
5646bc71
JP
2539 WARN("SPACING",
2540 "space prohibited before semicolon\n" . $herecurr);
9a4cad4e
EN
2541 }
2542
653d4876 2543# Check operator spacing.
0a920b5b 2544 if (!($line=~/\#\s*include/)) {
9c0ca6f9
AW
2545 my $ops = qr{
2546 <<=|>>=|<=|>=|==|!=|
2547 \+=|-=|\*=|\/=|%=|\^=|\|=|&=|
2548 =>|->|<<|>>|<|>|=|!|~|
1f65f947
AW
2549 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%|
2550 \?|:
9c0ca6f9 2551 }x;
cf655043 2552 my @elements = split(/($ops|;)/, $opline);
00df344f 2553 my $off = 0;
6c72ffaa
AW
2554
2555 my $blank = copy_spacing($opline);
2556
0a920b5b 2557 for (my $n = 0; $n < $#elements; $n += 2) {
4a0df2ef
AW
2558 $off += length($elements[$n]);
2559
25985edc 2560 # Pick up the preceding and succeeding characters.
773647a0
AW
2561 my $ca = substr($opline, 0, $off);
2562 my $cc = '';
2563 if (length($opline) >= ($off + length($elements[$n + 1]))) {
2564 $cc = substr($opline, $off + length($elements[$n + 1]));
2565 }
2566 my $cb = "$ca$;$cc";
2567
4a0df2ef
AW
2568 my $a = '';
2569 $a = 'V' if ($elements[$n] ne '');
2570 $a = 'W' if ($elements[$n] =~ /\s$/);
cf655043 2571 $a = 'C' if ($elements[$n] =~ /$;$/);
4a0df2ef
AW
2572 $a = 'B' if ($elements[$n] =~ /(\[|\()$/);
2573 $a = 'O' if ($elements[$n] eq '');
773647a0 2574 $a = 'E' if ($ca =~ /^\s*$/);
4a0df2ef 2575
0a920b5b 2576 my $op = $elements[$n + 1];
4a0df2ef
AW
2577
2578 my $c = '';
0a920b5b 2579 if (defined $elements[$n + 2]) {
4a0df2ef
AW
2580 $c = 'V' if ($elements[$n + 2] ne '');
2581 $c = 'W' if ($elements[$n + 2] =~ /^\s/);
cf655043 2582 $c = 'C' if ($elements[$n + 2] =~ /^$;/);
4a0df2ef
AW
2583 $c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
2584 $c = 'O' if ($elements[$n + 2] eq '');
8b1b3378 2585 $c = 'E' if ($elements[$n + 2] =~ /^\s*\\$/);
4a0df2ef
AW
2586 } else {
2587 $c = 'E';
0a920b5b
AW
2588 }
2589
4a0df2ef
AW
2590 my $ctx = "${a}x${c}";
2591
2592 my $at = "(ctx:$ctx)";
2593
6c72ffaa 2594 my $ptr = substr($blank, 0, $off) . "^";
de7d4f0e 2595 my $hereptr = "$hereline$ptr\n";
0a920b5b 2596
74048ed8 2597 # Pull out the value of this operator.
6c72ffaa 2598 my $op_type = substr($curr_values, $off + 1, 1);
0a920b5b 2599
1f65f947
AW
2600 # Get the full operator variant.
2601 my $opv = $op . substr($curr_vars, $off, 1);
2602
13214adf
AW
2603 # Ignore operators passed as parameters.
2604 if ($op_type ne 'V' &&
2605 $ca =~ /\s$/ && $cc =~ /^\s*,/) {
2606
cf655043
AW
2607# # Ignore comments
2608# } elsif ($op =~ /^$;+$/) {
13214adf 2609
d8aaf121 2610 # ; should have either the end of line or a space or \ after it
13214adf 2611 } elsif ($op eq ';') {
cf655043
AW
2612 if ($ctx !~ /.x[WEBC]/ &&
2613 $cc !~ /^\\/ && $cc !~ /^;/) {
000d1cc1
JP
2614 ERROR("SPACING",
2615 "space required after that '$op' $at\n" . $hereptr);
d8aaf121
AW
2616 }
2617
2618 # // is a comment
2619 } elsif ($op eq '//') {
0a920b5b 2620
1f65f947
AW
2621 # No spaces for:
2622 # ->
2623 # : when part of a bitfield
2624 } elsif ($op eq '->' || $opv eq ':B') {
4a0df2ef 2625 if ($ctx =~ /Wx.|.xW/) {
000d1cc1
JP
2626 ERROR("SPACING",
2627 "spaces prohibited around that '$op' $at\n" . $hereptr);
0a920b5b
AW
2628 }
2629
2630 # , must have a space on the right.
2631 } elsif ($op eq ',') {
cf655043 2632 if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) {
000d1cc1
JP
2633 ERROR("SPACING",
2634 "space required after that '$op' $at\n" . $hereptr);
0a920b5b
AW
2635 }
2636
9c0ca6f9 2637 # '*' as part of a type definition -- reported already.
74048ed8 2638 } elsif ($opv eq '*_') {
9c0ca6f9
AW
2639 #warn "'*' is part of type\n";
2640
2641 # unary operators should have a space before and
2642 # none after. May be left adjacent to another
2643 # unary operator, or a cast
2644 } elsif ($op eq '!' || $op eq '~' ||
74048ed8 2645 $opv eq '*U' || $opv eq '-U' ||
0d413866 2646 $opv eq '&U' || $opv eq '&&U') {
cf655043 2647 if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
000d1cc1
JP
2648 ERROR("SPACING",
2649 "space required before that '$op' $at\n" . $hereptr);
0a920b5b 2650 }
a3340b35 2651 if ($op eq '*' && $cc =~/\s*$Modifier\b/) {
171ae1a4
AW
2652 # A unary '*' may be const
2653
2654 } elsif ($ctx =~ /.xW/) {
000d1cc1
JP
2655 ERROR("SPACING",
2656 "space prohibited after that '$op' $at\n" . $hereptr);
0a920b5b
AW
2657 }
2658
2659 # unary ++ and unary -- are allowed no space on one side.
2660 } elsif ($op eq '++' or $op eq '--') {
773647a0 2661 if ($ctx !~ /[WEOBC]x[^W]/ && $ctx !~ /[^W]x[WOBEC]/) {
000d1cc1
JP
2662 ERROR("SPACING",
2663 "space required one side of that '$op' $at\n" . $hereptr);
773647a0
AW
2664 }
2665 if ($ctx =~ /Wx[BE]/ ||
2666 ($ctx =~ /Wx./ && $cc =~ /^;/)) {
000d1cc1
JP
2667 ERROR("SPACING",
2668 "space prohibited before that '$op' $at\n" . $hereptr);
0a920b5b 2669 }
773647a0 2670 if ($ctx =~ /ExW/) {
000d1cc1
JP
2671 ERROR("SPACING",
2672 "space prohibited after that '$op' $at\n" . $hereptr);
653d4876 2673 }
0a920b5b 2674
773647a0 2675
0a920b5b 2676 # << and >> may either have or not have spaces both sides
9c0ca6f9
AW
2677 } elsif ($op eq '<<' or $op eq '>>' or
2678 $op eq '&' or $op eq '^' or $op eq '|' or
2679 $op eq '+' or $op eq '-' or
c2fdda0d
AW
2680 $op eq '*' or $op eq '/' or
2681 $op eq '%')
0a920b5b 2682 {
773647a0 2683 if ($ctx =~ /Wx[^WCE]|[^WCE]xW/) {
000d1cc1
JP
2684 ERROR("SPACING",
2685 "need consistent spacing around '$op' $at\n" .
de7d4f0e 2686 $hereptr);
0a920b5b
AW
2687 }
2688
1f65f947
AW
2689 # A colon needs no spaces before when it is
2690 # terminating a case value or a label.
2691 } elsif ($opv eq ':C' || $opv eq ':L') {
2692 if ($ctx =~ /Wx./) {
000d1cc1
JP
2693 ERROR("SPACING",
2694 "space prohibited before that '$op' $at\n" . $hereptr);
1f65f947
AW
2695 }
2696
0a920b5b 2697 # All the others need spaces both sides.
cf655043 2698 } elsif ($ctx !~ /[EWC]x[CWE]/) {
1f65f947
AW
2699 my $ok = 0;
2700
22f2a2ef 2701 # Ignore email addresses <foo@bar>
1f65f947
AW
2702 if (($op eq '<' &&
2703 $cc =~ /^\S+\@\S+>/) ||
2704 ($op eq '>' &&
2705 $ca =~ /<\S+\@\S+$/))
2706 {
2707 $ok = 1;
2708 }
2709
2710 # Ignore ?:
2711 if (($opv eq ':O' && $ca =~ /\?$/) ||
2712 ($op eq '?' && $cc =~ /^:/)) {
2713 $ok = 1;
2714 }
2715
2716 if ($ok == 0) {
000d1cc1
JP
2717 ERROR("SPACING",
2718 "spaces required around that '$op' $at\n" . $hereptr);
22f2a2ef 2719 }
0a920b5b 2720 }
4a0df2ef 2721 $off += length($elements[$n + 1]);
0a920b5b
AW
2722 }
2723 }
2724
f0a594c1
AW
2725# check for multiple assignments
2726 if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
000d1cc1
JP
2727 CHK("MULTIPLE_ASSIGNMENTS",
2728 "multiple assignments should be avoided\n" . $herecurr);
f0a594c1
AW
2729 }
2730
22f2a2ef
AW
2731## # check for multiple declarations, allowing for a function declaration
2732## # continuation.
2733## if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
2734## $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
2735##
2736## # Remove any bracketed sections to ensure we do not
2737## # falsly report the parameters of functions.
2738## my $ln = $line;
2739## while ($ln =~ s/\([^\(\)]*\)//g) {
2740## }
2741## if ($ln =~ /,/) {
000d1cc1
JP
2742## WARN("MULTIPLE_DECLARATION",
2743## "declaring multiple variables together should be avoided\n" . $herecurr);
22f2a2ef
AW
2744## }
2745## }
f0a594c1 2746
0a920b5b 2747#need space before brace following if, while, etc
22f2a2ef
AW
2748 if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) ||
2749 $line =~ /do{/) {
000d1cc1
JP
2750 ERROR("SPACING",
2751 "space required before the open brace '{'\n" . $herecurr);
de7d4f0e
AW
2752 }
2753
c4a62ef9
JP
2754## # check for blank lines before declarations
2755## if ($line =~ /^.\t+$Type\s+$Ident(?:\s*=.*)?;/ &&
2756## $prevrawline =~ /^.\s*$/) {
2757## WARN("SPACING",
2758## "No blank lines before declarations\n" . $hereprev);
2759## }
2760##
2761
de7d4f0e
AW
2762# closing brace should have a space following it when it has anything
2763# on the line
2764 if ($line =~ /}(?!(?:,|;|\)))\S/) {
000d1cc1
JP
2765 ERROR("SPACING",
2766 "space required after that close brace '}'\n" . $herecurr);
0a920b5b
AW
2767 }
2768
22f2a2ef
AW
2769# check spacing on square brackets
2770 if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
000d1cc1
JP
2771 ERROR("SPACING",
2772 "space prohibited after that open square bracket '['\n" . $herecurr);
22f2a2ef
AW
2773 }
2774 if ($line =~ /\s\]/) {
000d1cc1
JP
2775 ERROR("SPACING",
2776 "space prohibited before that close square bracket ']'\n" . $herecurr);
22f2a2ef
AW
2777 }
2778
c45dcabd 2779# check spacing on parentheses
9c0ca6f9
AW
2780 if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
2781 $line !~ /for\s*\(\s+;/) {
000d1cc1
JP
2782 ERROR("SPACING",
2783 "space prohibited after that open parenthesis '('\n" . $herecurr);
22f2a2ef 2784 }
13214adf 2785 if ($line =~ /(\s+)\)/ && $line !~ /^.\s*\)/ &&
c45dcabd
AW
2786 $line !~ /for\s*\(.*;\s+\)/ &&
2787 $line !~ /:\s+\)/) {
000d1cc1
JP
2788 ERROR("SPACING",
2789 "space prohibited before that close parenthesis ')'\n" . $herecurr);
22f2a2ef
AW
2790 }
2791
0a920b5b 2792#goto labels aren't indented, allow a single space however
4a0df2ef 2793 if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
0a920b5b 2794 !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
000d1cc1
JP
2795 WARN("INDENTED_LABEL",
2796 "labels should not be indented\n" . $herecurr);
0a920b5b
AW
2797 }
2798
c45dcabd
AW
2799# Return is not a function.
2800 if (defined($stat) && $stat =~ /^.\s*return(\s*)(\(.*);/s) {
2801 my $spacing = $1;
2802 my $value = $2;
2803
86f9d059 2804 # Flatten any parentheses
fb2d2c1b
AW
2805 $value =~ s/\(/ \(/g;
2806 $value =~ s/\)/\) /g;
e01886ad 2807 while ($value =~ s/\[[^\[\]]*\]/1/ ||
63f17f89
AW
2808 $value !~ /(?:$Ident|-?$Constant)\s*
2809 $Compare\s*
2810 (?:$Ident|-?$Constant)/x &&
2811 $value =~ s/\([^\(\)]*\)/1/) {
c45dcabd 2812 }
fb2d2c1b
AW
2813#print "value<$value>\n";
2814 if ($value =~ /^\s*(?:$Ident|-?$Constant)\s*$/) {
000d1cc1
JP
2815 ERROR("RETURN_PARENTHESES",
2816 "return is not a function, parentheses are not required\n" . $herecurr);
c45dcabd
AW
2817
2818 } elsif ($spacing !~ /\s+/) {
000d1cc1
JP
2819 ERROR("SPACING",
2820 "space required before the open parenthesis '('\n" . $herecurr);
c45dcabd
AW
2821 }
2822 }
53a3c448
AW
2823# Return of what appears to be an errno should normally be -'ve
2824 if ($line =~ /^.\s*return\s*(E[A-Z]*)\s*;/) {
2825 my $name = $1;
2826 if ($name ne 'EOF' && $name ne 'ERROR') {
000d1cc1
JP
2827 WARN("USE_NEGATIVE_ERRNO",
2828 "return of an errno should typically be -ve (return -$1)\n" . $herecurr);
53a3c448
AW
2829 }
2830 }
c45dcabd 2831
0a920b5b 2832# Need a space before open parenthesis after if, while etc
4a0df2ef 2833 if ($line=~/\b(if|while|for|switch)\(/) {
000d1cc1 2834 ERROR("SPACING", "space required before the open parenthesis '('\n" . $herecurr);
0a920b5b
AW
2835 }
2836
f5fe35dd
AW
2837# Check for illegal assignment in if conditional -- and check for trailing
2838# statements after the conditional.
170d3a22 2839 if ($line =~ /do\s*(?!{)/) {
3e469cdc
AW
2840 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
2841 ctx_statement_block($linenr, $realcnt, 0)
2842 if (!defined $stat);
170d3a22
AW
2843 my ($stat_next) = ctx_statement_block($line_nr_next,
2844 $remain_next, $off_next);
2845 $stat_next =~ s/\n./\n /g;
2846 ##print "stat<$stat> stat_next<$stat_next>\n";
2847
2848 if ($stat_next =~ /^\s*while\b/) {
2849 # If the statement carries leading newlines,
2850 # then count those as offsets.
2851 my ($whitespace) =
2852 ($stat_next =~ /^((?:\s*\n[+-])*\s*)/s);
2853 my $offset =
2854 statement_rawlines($whitespace) - 1;
2855
2856 $suppress_whiletrailers{$line_nr_next +
2857 $offset} = 1;
2858 }
2859 }
2860 if (!defined $suppress_whiletrailers{$linenr} &&
2861 $line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) {
171ae1a4 2862 my ($s, $c) = ($stat, $cond);
8905a67c 2863
b53c8e10 2864 if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/s) {
000d1cc1
JP
2865 ERROR("ASSIGN_IN_IF",
2866 "do not use assignment in if condition\n" . $herecurr);
8905a67c
AW
2867 }
2868
2869 # Find out what is on the end of the line after the
2870 # conditional.
773647a0 2871 substr($s, 0, length($c), '');
8905a67c 2872 $s =~ s/\n.*//g;
13214adf 2873 $s =~ s/$;//g; # Remove any comments
53210168
AW
2874 if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ &&
2875 $c !~ /}\s*while\s*/)
773647a0 2876 {
bb44ad39
AW
2877 # Find out how long the conditional actually is.
2878 my @newlines = ($c =~ /\n/gs);
2879 my $cond_lines = 1 + $#newlines;
42bdf74c 2880 my $stat_real = '';
bb44ad39 2881
42bdf74c
HS
2882 $stat_real = raw_line($linenr, $cond_lines)
2883 . "\n" if ($cond_lines);
bb44ad39
AW
2884 if (defined($stat_real) && $cond_lines > 1) {
2885 $stat_real = "[...]\n$stat_real";
2886 }
2887
000d1cc1
JP
2888 ERROR("TRAILING_STATEMENTS",
2889 "trailing statements should be on next line\n" . $herecurr . $stat_real);
8905a67c
AW
2890 }
2891 }
2892
13214adf
AW
2893# Check for bitwise tests written as boolean
2894 if ($line =~ /
2895 (?:
2896 (?:\[|\(|\&\&|\|\|)
2897 \s*0[xX][0-9]+\s*
2898 (?:\&\&|\|\|)
2899 |
2900 (?:\&\&|\|\|)
2901 \s*0[xX][0-9]+\s*
2902 (?:\&\&|\|\||\)|\])
2903 )/x)
2904 {
000d1cc1
JP
2905 WARN("HEXADECIMAL_BOOLEAN_TEST",
2906 "boolean test with hexadecimal, perhaps just 1 \& or \|?\n" . $herecurr);
13214adf
AW
2907 }
2908
8905a67c 2909# if and else should not have general statements after it
13214adf
AW
2910 if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/) {
2911 my $s = $1;
2912 $s =~ s/$;//g; # Remove any comments
2913 if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) {
000d1cc1
JP
2914 ERROR("TRAILING_STATEMENTS",
2915 "trailing statements should be on next line\n" . $herecurr);
13214adf 2916 }
0a920b5b 2917 }
39667782
AW
2918# if should not continue a brace
2919 if ($line =~ /}\s*if\b/) {
000d1cc1
JP
2920 ERROR("TRAILING_STATEMENTS",
2921 "trailing statements should be on next line\n" .
39667782
AW
2922 $herecurr);
2923 }
a1080bf8
AW
2924# case and default should not have general statements after them
2925 if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
2926 $line !~ /\G(?:
3fef12d6 2927 (?:\s*$;*)(?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$|
a1080bf8
AW
2928 \s*return\s+
2929 )/xg)
2930 {
000d1cc1
JP
2931 ERROR("TRAILING_STATEMENTS",
2932 "trailing statements should be on next line\n" . $herecurr);
a1080bf8 2933 }
0a920b5b
AW
2934
2935 # Check for }<nl>else {, these must be at the same
2936 # indent level to be relevant to each other.
2937 if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ and
2938 $previndent == $indent) {
000d1cc1
JP
2939 ERROR("ELSE_AFTER_BRACE",
2940 "else should follow close brace '}'\n" . $hereprev);
0a920b5b
AW
2941 }
2942
c2fdda0d
AW
2943 if ($prevline=~/}\s*$/ and $line=~/^.\s*while\s*/ and
2944 $previndent == $indent) {
2945 my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0);
2946
2947 # Find out what is on the end of the line after the
2948 # conditional.
773647a0 2949 substr($s, 0, length($c), '');
c2fdda0d
AW
2950 $s =~ s/\n.*//g;
2951
2952 if ($s =~ /^\s*;/) {
000d1cc1
JP
2953 ERROR("WHILE_AFTER_BRACE",
2954 "while should follow close brace '}'\n" . $hereprev);
c2fdda0d
AW
2955 }
2956 }
2957
95e2c602 2958#Specific variable tests
323c1260
JP
2959 while ($line =~ m{($Constant|$Lval)}g) {
2960 my $var = $1;
95e2c602
JP
2961
2962#gcc binary extension
2963 if ($var =~ /^$Binary$/) {
2964 WARN("GCC_BINARY_CONSTANT",
2965 "Avoid gcc v4.3+ binary constant extension: <$var>\n" . $herecurr);
2966 }
2967
2968#CamelCase
807bd26c 2969 if ($var !~ /^$Constant$/ &&
be79794b 2970 $var =~ /[A-Z][a-z]|[a-z][A-Z]/ &&
807bd26c 2971 $var !~ /^(?:Clear|Set|TestClear|TestSet|)Page[A-Z]/ &&
323c1260
JP
2972 !defined $camelcase{$var}) {
2973 $camelcase{$var} = 1;
be79794b
JP
2974 CHK("CAMELCASE",
2975 "Avoid CamelCase: <$var>\n" . $herecurr);
323c1260
JP
2976 }
2977 }
0a920b5b
AW
2978
2979#no spaces allowed after \ in define
c45dcabd 2980 if ($line=~/\#\s*define.*\\\s$/) {
000d1cc1
JP
2981 WARN("WHITESPACE_AFTER_LINE_CONTINUATION",
2982 "Whitepspace after \\ makes next lines useless\n" . $herecurr);
0a920b5b
AW
2983 }
2984
653d4876 2985#warn if <asm/foo.h> is #included and <linux/foo.h> is available (uses RAW line)
c45dcabd 2986 if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) {
e09dec48
AW
2987 my $file = "$1.h";
2988 my $checkfile = "include/linux/$file";
2989 if (-f "$root/$checkfile" &&
2990 $realfile ne $checkfile &&
7840a94c 2991 $1 !~ /$allowed_asm_includes/)
c45dcabd 2992 {
e09dec48 2993 if ($realfile =~ m{^arch/}) {
000d1cc1
JP
2994 CHK("ARCH_INCLUDE_LINUX",
2995 "Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
e09dec48 2996 } else {
000d1cc1
JP
2997 WARN("INCLUDE_LINUX",
2998 "Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
e09dec48 2999 }
0a920b5b
AW
3000 }
3001 }
3002
653d4876
AW
3003# multi-statement macros should be enclosed in a do while loop, grab the
3004# first statement and ensure its the whole macro if its not enclosed
cf655043 3005# in a known good container
b8f96a31
AW
3006 if ($realfile !~ m@/vmlinux.lds.h$@ &&
3007 $line =~ /^.\s*\#\s*define\s*$Ident(\()?/) {
d8aaf121
AW
3008 my $ln = $linenr;
3009 my $cnt = $realcnt;
c45dcabd
AW
3010 my ($off, $dstat, $dcond, $rest);
3011 my $ctx = '';
c45dcabd 3012 ($dstat, $dcond, $ln, $cnt, $off) =
f74bd194
AW
3013 ctx_statement_block($linenr, $realcnt, 0);
3014 $ctx = $dstat;
c45dcabd 3015 #print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n";
a3bb97a7 3016 #print "LINE<$lines[$ln-1]> len<" . length($lines[$ln-1]) . "\n";
c45dcabd 3017
f74bd194 3018 $dstat =~ s/^.\s*\#\s*define\s+$Ident(?:\([^\)]*\))?\s*//;
292f1a9b 3019 $dstat =~ s/$;//g;
c45dcabd
AW
3020 $dstat =~ s/\\\n.//g;
3021 $dstat =~ s/^\s*//s;
3022 $dstat =~ s/\s*$//s;
de7d4f0e 3023
c45dcabd 3024 # Flatten any parentheses and braces
bf30d6ed
AW
3025 while ($dstat =~ s/\([^\(\)]*\)/1/ ||
3026 $dstat =~ s/\{[^\{\}]*\}/1/ ||
c81769fd 3027 $dstat =~ s/\[[^\[\]]*\]/1/)
bf30d6ed 3028 {
de7d4f0e 3029 }
d8aaf121 3030
e45bab8e
AW
3031 # Flatten any obvious string concatentation.
3032 while ($dstat =~ s/("X*")\s*$Ident/$1/ ||
3033 $dstat =~ s/$Ident\s*("X*")/$1/)
3034 {
3035 }
3036
c45dcabd
AW
3037 my $exceptions = qr{
3038 $Declare|
3039 module_param_named|
a0a0a7a9 3040 MODULE_PARM_DESC|
c45dcabd
AW
3041 DECLARE_PER_CPU|
3042 DEFINE_PER_CPU|
383099fd 3043 __typeof__\(|
22fd2d3e
SS
3044 union|
3045 struct|
ea71a0a0
AW
3046 \.$Ident\s*=\s*|
3047 ^\"|\"$
c45dcabd 3048 }x;
5eaa20b9 3049 #print "REST<$rest> dstat<$dstat> ctx<$ctx>\n";
f74bd194
AW
3050 if ($dstat ne '' &&
3051 $dstat !~ /^(?:$Ident|-?$Constant),$/ && # 10, // foo(),
3052 $dstat !~ /^(?:$Ident|-?$Constant);$/ && # foo();
3cc4b1c3 3053 $dstat !~ /^[!~-]?(?:$Lval|$Constant)$/ && # 10 // foo() // !foo // ~foo // -foo // foo->bar // foo.bar->baz
b9df76ac 3054 $dstat !~ /^'X'$/ && # character constants
f74bd194
AW
3055 $dstat !~ /$exceptions/ &&
3056 $dstat !~ /^\.$Ident\s*=/ && # .foo =
e942e2c3 3057 $dstat !~ /^(?:\#\s*$Ident|\#\s*$Constant)\s*$/ && # stringification #foo
72f115f9 3058 $dstat !~ /^do\s*$Constant\s*while\s*$Constant;?$/ && # do {...} while (...); // do {...} while (...)
f74bd194
AW
3059 $dstat !~ /^for\s*$Constant$/ && # for (...)
3060 $dstat !~ /^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ && # for (...) bar()
3061 $dstat !~ /^do\s*{/ && # do {...
3062 $dstat !~ /^\({/) # ({...
3063 {
3064 $ctx =~ s/\n*$//;
3065 my $herectx = $here . "\n";
3066 my $cnt = statement_rawlines($ctx);
3067
3068 for (my $n = 0; $n < $cnt; $n++) {
3069 $herectx .= raw_line($linenr, $n) . "\n";
c45dcabd
AW
3070 }
3071
f74bd194
AW
3072 if ($dstat =~ /;/) {
3073 ERROR("MULTISTATEMENT_MACRO_USE_DO_WHILE",
3074 "Macros with multiple statements should be enclosed in a do - while loop\n" . "$herectx");
3075 } else {
000d1cc1 3076 ERROR("COMPLEX_MACRO",
f74bd194 3077 "Macros with complex values should be enclosed in parenthesis\n" . "$herectx");
d8aaf121 3078 }
653d4876 3079 }
5023d347 3080
481eb486 3081# check for line continuations outside of #defines, preprocessor #, and asm
5023d347
JP
3082
3083 } else {
3084 if ($prevline !~ /^..*\\$/ &&
481eb486
JP
3085 $line !~ /^\+\s*\#.*\\$/ && # preprocessor
3086 $line !~ /^\+.*\b(__asm__|asm)\b.*\\$/ && # asm
5023d347
JP
3087 $line =~ /^\+.*\\$/) {
3088 WARN("LINE_CONTINUATIONS",
3089 "Avoid unnecessary line continuations\n" . $herecurr);
3090 }
0a920b5b
AW
3091 }
3092
b13edf7f
JP
3093# do {} while (0) macro tests:
3094# single-statement macros do not need to be enclosed in do while (0) loop,
3095# macro should not end with a semicolon
3096 if ($^V && $^V ge 5.10.0 &&
3097 $realfile !~ m@/vmlinux.lds.h$@ &&
3098 $line =~ /^.\s*\#\s*define\s+$Ident(\()?/) {
3099 my $ln = $linenr;
3100 my $cnt = $realcnt;
3101 my ($off, $dstat, $dcond, $rest);
3102 my $ctx = '';
3103 ($dstat, $dcond, $ln, $cnt, $off) =
3104 ctx_statement_block($linenr, $realcnt, 0);
3105 $ctx = $dstat;
3106
3107 $dstat =~ s/\\\n.//g;
3108
3109 if ($dstat =~ /^\+\s*#\s*define\s+$Ident\s*${balanced_parens}\s*do\s*{(.*)\s*}\s*while\s*\(\s*0\s*\)\s*([;\s]*)\s*$/) {
3110 my $stmts = $2;
3111 my $semis = $3;
3112
3113 $ctx =~ s/\n*$//;
3114 my $cnt = statement_rawlines($ctx);
3115 my $herectx = $here . "\n";
3116
3117 for (my $n = 0; $n < $cnt; $n++) {
3118 $herectx .= raw_line($linenr, $n) . "\n";
3119 }
3120
ac8e97f8
JP
3121 if (($stmts =~ tr/;/;/) == 1 &&
3122 $stmts !~ /^\s*(if|while|for|switch)\b/) {
b13edf7f
JP
3123 WARN("SINGLE_STATEMENT_DO_WHILE_MACRO",
3124 "Single statement macros should not use a do {} while (0) loop\n" . "$herectx");
3125 }
3126 if (defined $semis && $semis ne "") {
3127 WARN("DO_WHILE_MACRO_WITH_TRAILING_SEMICOLON",
3128 "do {} while (0) macros should not be semicolon terminated\n" . "$herectx");
3129 }
3130 }
3131 }
3132
080ba929
MF
3133# make sure symbols are always wrapped with VMLINUX_SYMBOL() ...
3134# all assignments may have only one of the following with an assignment:
3135# .
3136# ALIGN(...)
3137# VMLINUX_SYMBOL(...)
3138 if ($realfile eq 'vmlinux.lds.h' && $line =~ /(?:(?:^|\s)$Ident\s*=|=\s*$Ident(?:\s|$))/) {
000d1cc1
JP
3139 WARN("MISSING_VMLINUX_SYMBOL",
3140 "vmlinux.lds.h needs VMLINUX_SYMBOL() around C-visible symbols\n" . $herecurr);
080ba929
MF
3141 }
3142
f0a594c1 3143# check for redundant bracing round if etc
13214adf
AW
3144 if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) {
3145 my ($level, $endln, @chunks) =
cf655043 3146 ctx_statement_full($linenr, $realcnt, 1);
13214adf 3147 #print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n";
cf655043
AW
3148 #print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n";
3149 if ($#chunks > 0 && $level == 0) {
aad4f614
JP
3150 my @allowed = ();
3151 my $allow = 0;
13214adf 3152 my $seen = 0;
773647a0 3153 my $herectx = $here . "\n";
cf655043 3154 my $ln = $linenr - 1;
13214adf
AW
3155 for my $chunk (@chunks) {
3156 my ($cond, $block) = @{$chunk};
3157
773647a0
AW
3158 # If the condition carries leading newlines, then count those as offsets.
3159 my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s);
3160 my $offset = statement_rawlines($whitespace) - 1;
3161
aad4f614 3162 $allowed[$allow] = 0;
773647a0
AW
3163 #print "COND<$cond> whitespace<$whitespace> offset<$offset>\n";
3164
3165 # We have looked at and allowed this specific line.
3166 $suppress_ifbraces{$ln + $offset} = 1;
3167
3168 $herectx .= "$rawlines[$ln + $offset]\n[...]\n";
cf655043
AW
3169 $ln += statement_rawlines($block) - 1;
3170
773647a0 3171 substr($block, 0, length($cond), '');
13214adf
AW
3172
3173 $seen++ if ($block =~ /^\s*{/);
3174
aad4f614 3175 #print "cond<$cond> block<$block> allowed<$allowed[$allow]>\n";
cf655043
AW
3176 if (statement_lines($cond) > 1) {
3177 #print "APW: ALLOWED: cond<$cond>\n";
aad4f614 3178 $allowed[$allow] = 1;
13214adf
AW
3179 }
3180 if ($block =~/\b(?:if|for|while)\b/) {
cf655043 3181 #print "APW: ALLOWED: block<$block>\n";
aad4f614 3182 $allowed[$allow] = 1;
13214adf 3183 }
cf655043
AW
3184 if (statement_block_size($block) > 1) {
3185 #print "APW: ALLOWED: lines block<$block>\n";
aad4f614 3186 $allowed[$allow] = 1;
13214adf 3187 }
aad4f614 3188 $allow++;
13214adf 3189 }
aad4f614
JP
3190 if ($seen) {
3191 my $sum_allowed = 0;
3192 foreach (@allowed) {
3193 $sum_allowed += $_;
3194 }
3195 if ($sum_allowed == 0) {
3196 WARN("BRACES",
3197 "braces {} are not necessary for any arm of this statement\n" . $herectx);
3198 } elsif ($sum_allowed != $allow &&
3199 $seen != $allow) {
3200 CHK("BRACES",
3201 "braces {} should be used on all arms of this statement\n" . $herectx);
3202 }
13214adf
AW
3203 }
3204 }
3205 }
773647a0 3206 if (!defined $suppress_ifbraces{$linenr - 1} &&
13214adf 3207 $line =~ /\b(if|while|for|else)\b/) {
cf655043
AW
3208 my $allowed = 0;
3209
3210 # Check the pre-context.
3211 if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) {
3212 #print "APW: ALLOWED: pre<$1>\n";
3213 $allowed = 1;
3214 }
773647a0
AW
3215
3216 my ($level, $endln, @chunks) =
3217 ctx_statement_full($linenr, $realcnt, $-[0]);
3218
cf655043
AW
3219 # Check the condition.
3220 my ($cond, $block) = @{$chunks[0]};
773647a0 3221 #print "CHECKING<$linenr> cond<$cond> block<$block>\n";
cf655043 3222 if (defined $cond) {
773647a0 3223 substr($block, 0, length($cond), '');
cf655043
AW
3224 }
3225 if (statement_lines($cond) > 1) {
3226 #print "APW: ALLOWED: cond<$cond>\n";
3227 $allowed = 1;
3228 }
3229 if ($block =~/\b(?:if|for|while)\b/) {
3230 #print "APW: ALLOWED: block<$block>\n";
3231 $allowed = 1;
3232 }
3233 if (statement_block_size($block) > 1) {
3234 #print "APW: ALLOWED: lines block<$block>\n";
3235 $allowed = 1;
3236 }
3237 # Check the post-context.
3238 if (defined $chunks[1]) {
3239 my ($cond, $block) = @{$chunks[1]};
3240 if (defined $cond) {
773647a0 3241 substr($block, 0, length($cond), '');
cf655043
AW
3242 }
3243 if ($block =~ /^\s*\{/) {
3244 #print "APW: ALLOWED: chunk-1 block<$block>\n";
3245 $allowed = 1;
3246 }
3247 }
3248 if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
69932487 3249 my $herectx = $here . "\n";
f055663c 3250 my $cnt = statement_rawlines($block);
cf655043 3251
f055663c 3252 for (my $n = 0; $n < $cnt; $n++) {
69932487 3253 $herectx .= raw_line($linenr, $n) . "\n";
f0a594c1 3254 }
cf655043 3255
000d1cc1
JP
3256 WARN("BRACES",
3257 "braces {} are not necessary for single statement blocks\n" . $herectx);
f0a594c1
AW
3258 }
3259 }
3260
0979ae66 3261# check for unnecessary blank lines around braces
77b9a53a 3262 if (($line =~ /^.\s*}\s*$/ && $prevrawline =~ /^.\s*$/)) {
0979ae66
JP
3263 CHK("BRACES",
3264 "Blank lines aren't necessary before a close brace '}'\n" . $hereprev);
3265 }
77b9a53a 3266 if (($rawline =~ /^.\s*$/ && $prevline =~ /^..*{\s*$/)) {
0979ae66
JP
3267 CHK("BRACES",
3268 "Blank lines aren't necessary after an open brace '{'\n" . $hereprev);
3269 }
3270
4a0df2ef 3271# no volatiles please
6c72ffaa
AW
3272 my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
3273 if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
000d1cc1
JP
3274 WARN("VOLATILE",
3275 "Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt\n" . $herecurr);
4a0df2ef
AW
3276 }
3277
00df344f 3278# warn about #if 0
c45dcabd 3279 if ($line =~ /^.\s*\#\s*if\s+0\b/) {
000d1cc1
JP
3280 CHK("REDUNDANT_CODE",
3281 "if this code is redundant consider removing it\n" .
de7d4f0e 3282 $herecurr);
4a0df2ef
AW
3283 }
3284
03df4b51
AW
3285# check for needless "if (<foo>) fn(<foo>)" uses
3286 if ($prevline =~ /\bif\s*\(\s*($Lval)\s*\)/) {
3287 my $expr = '\s*\(\s*' . quotemeta($1) . '\s*\)\s*;';
3288 if ($line =~ /\b(kfree|usb_free_urb|debugfs_remove(?:_recursive)?)$expr/) {
3289 WARN('NEEDLESS_IF',
3290 "$1(NULL) is safe this check is probably not required\n" . $hereprev);
4c432a8f
GKH
3291 }
3292 }
f0a594c1 3293
1a15a250 3294# prefer usleep_range over udelay
37581c28 3295 if ($line =~ /\budelay\s*\(\s*(\d+)\s*\)/) {
1a15a250 3296 # ignore udelay's < 10, however
37581c28 3297 if (! ($1 < 10) ) {
000d1cc1
JP
3298 CHK("USLEEP_RANGE",
3299 "usleep_range is preferred over udelay; see Documentation/timers/timers-howto.txt\n" . $line);
1a15a250
PP
3300 }
3301 }
3302
09ef8725
PP
3303# warn about unexpectedly long msleep's
3304 if ($line =~ /\bmsleep\s*\((\d+)\);/) {
3305 if ($1 < 20) {
000d1cc1
JP
3306 WARN("MSLEEP",
3307 "msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt\n" . $line);
09ef8725
PP
3308 }
3309 }
3310
36ec1939
JP
3311# check for comparisons of jiffies
3312 if ($line =~ /\bjiffies\s*$Compare|$Compare\s*jiffies\b/) {
3313 WARN("JIFFIES_COMPARISON",
3314 "Comparing jiffies is almost always wrong; prefer time_after, time_before and friends\n" . $herecurr);
3315 }
3316
9d7a34a5
JP
3317# check for comparisons of get_jiffies_64()
3318 if ($line =~ /\bget_jiffies_64\s*\(\s*\)\s*$Compare|$Compare\s*get_jiffies_64\s*\(\s*\)/) {
3319 WARN("JIFFIES_COMPARISON",
3320 "Comparing get_jiffies_64() is almost always wrong; prefer time_after64, time_before64 and friends\n" . $herecurr);
3321 }
3322
00df344f 3323# warn about #ifdefs in C files
c45dcabd 3324# if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
00df344f
AW
3325# print "#ifdef in C files should be avoided\n";
3326# print "$herecurr";
3327# $clean = 0;
3328# }
3329
22f2a2ef 3330# warn about spacing in #ifdefs
c45dcabd 3331 if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) {
000d1cc1
JP
3332 ERROR("SPACING",
3333 "exactly one space required after that #$1\n" . $herecurr);
22f2a2ef
AW
3334 }
3335
4a0df2ef 3336# check for spinlock_t definitions without a comment.
171ae1a4
AW
3337 if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ ||
3338 $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) {
4a0df2ef
AW
3339 my $which = $1;
3340 if (!ctx_has_comment($first_line, $linenr)) {
000d1cc1
JP
3341 CHK("UNCOMMENTED_DEFINITION",
3342 "$1 definition without comment\n" . $herecurr);
4a0df2ef
AW
3343 }
3344 }
3345# check for memory barriers without a comment.
3346 if ($line =~ /\b(mb|rmb|wmb|read_barrier_depends|smp_mb|smp_rmb|smp_wmb|smp_read_barrier_depends)\(/) {
3347 if (!ctx_has_comment($first_line, $linenr)) {
000d1cc1
JP
3348 CHK("MEMORY_BARRIER",
3349 "memory barrier without comment\n" . $herecurr);
4a0df2ef
AW
3350 }
3351 }
3352# check of hardware specific defines
c45dcabd 3353 if ($line =~ m@^.\s*\#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
000d1cc1
JP
3354 CHK("ARCH_DEFINES",
3355 "architecture specific defines should be avoided\n" . $herecurr);
0a920b5b 3356 }
653d4876 3357
d4977c78
TK
3358# Check that the storage class is at the beginning of a declaration
3359 if ($line =~ /\b$Storage\b/ && $line !~ /^.\s*$Storage\b/) {
000d1cc1
JP
3360 WARN("STORAGE_CLASS",
3361 "storage class should be at the beginning of the declaration\n" . $herecurr)
d4977c78
TK
3362 }
3363
de7d4f0e
AW
3364# check the location of the inline attribute, that it is between
3365# storage class and type.
9c0ca6f9
AW
3366 if ($line =~ /\b$Type\s+$Inline\b/ ||
3367 $line =~ /\b$Inline\s+$Storage\b/) {
000d1cc1
JP
3368 ERROR("INLINE_LOCATION",
3369 "inline keyword should sit between storage class and type\n" . $herecurr);
de7d4f0e
AW
3370 }
3371
8905a67c
AW
3372# Check for __inline__ and __inline, prefer inline
3373 if ($line =~ /\b(__inline__|__inline)\b/) {
000d1cc1
JP
3374 WARN("INLINE",
3375 "plain inline is preferred over $1\n" . $herecurr);
8905a67c
AW
3376 }
3377
3d130fd0
JP
3378# Check for __attribute__ packed, prefer __packed
3379 if ($line =~ /\b__attribute__\s*\(\s*\(.*\bpacked\b/) {
000d1cc1
JP
3380 WARN("PREFER_PACKED",
3381 "__packed is preferred over __attribute__((packed))\n" . $herecurr);
3d130fd0
JP
3382 }
3383
39b7e287
JP
3384# Check for __attribute__ aligned, prefer __aligned
3385 if ($line =~ /\b__attribute__\s*\(\s*\(.*aligned/) {
000d1cc1
JP
3386 WARN("PREFER_ALIGNED",
3387 "__aligned(size) is preferred over __attribute__((aligned(size)))\n" . $herecurr);
39b7e287
JP
3388 }
3389
5f14d3bd
JP
3390# Check for __attribute__ format(printf, prefer __printf
3391 if ($line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf/) {
3392 WARN("PREFER_PRINTF",
3393 "__printf(string-index, first-to-check) is preferred over __attribute__((format(printf, string-index, first-to-check)))\n" . $herecurr);
3394 }
3395
6061d949
JP
3396# Check for __attribute__ format(scanf, prefer __scanf
3397 if ($line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*scanf\b/) {
3398 WARN("PREFER_SCANF",
3399 "__scanf(string-index, first-to-check) is preferred over __attribute__((format(scanf, string-index, first-to-check)))\n" . $herecurr);
3400 }
3401
8f53a9b8
JP
3402# check for sizeof(&)
3403 if ($line =~ /\bsizeof\s*\(\s*\&/) {
000d1cc1
JP
3404 WARN("SIZEOF_ADDRESS",
3405 "sizeof(& should be avoided\n" . $herecurr);
8f53a9b8
JP
3406 }
3407
66c80b60
JP
3408# check for sizeof without parenthesis
3409 if ($line =~ /\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/) {
3410 WARN("SIZEOF_PARENTHESIS",
3411 "sizeof $1 should be sizeof($1)\n" . $herecurr);
3412 }
3413
428e2fdc
JP
3414# check for line continuations in quoted strings with odd counts of "
3415 if ($rawline =~ /\\$/ && $rawline =~ tr/"/"/ % 2) {
000d1cc1
JP
3416 WARN("LINE_CONTINUATIONS",
3417 "Avoid line continuations in quoted strings\n" . $herecurr);
428e2fdc
JP
3418 }
3419
88982fea
JP
3420# check for struct spinlock declarations
3421 if ($line =~ /^.\s*\bstruct\s+spinlock\s+\w+\s*;/) {
3422 WARN("USE_SPINLOCK_T",
3423 "struct spinlock should be spinlock_t\n" . $herecurr);
3424 }
3425
a6962d72
JP
3426# check for seq_printf uses that could be seq_puts
3427 if ($line =~ /\bseq_printf\s*\(/) {
3428 my $fmt = get_quoted_string($line, $rawline);
3429 if ($fmt !~ /[^\\]\%/) {
3430 WARN("PREFER_SEQ_PUTS",
3431 "Prefer seq_puts to seq_printf\n" . $herecurr);
3432 }
3433 }
3434
554e165c 3435# Check for misused memsets
d1fe9c09
JP
3436 if ($^V && $^V ge 5.10.0 &&
3437 defined $stat &&
d7c76ba7
JP
3438 $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*$FuncArg\s*\)/s) {
3439
3440 my $ms_addr = $2;
d1fe9c09
JP
3441 my $ms_val = $7;
3442 my $ms_size = $12;
554e165c 3443
554e165c
AW
3444 if ($ms_size =~ /^(0x|)0$/i) {
3445 ERROR("MEMSET",
d7c76ba7 3446 "memset to 0's uses 0 as the 2nd argument, not the 3rd\n" . "$here\n$stat\n");
554e165c
AW
3447 } elsif ($ms_size =~ /^(0x|)1$/i) {
3448 WARN("MEMSET",
d7c76ba7
JP
3449 "single byte memset is suspicious. Swapped 2nd/3rd argument?\n" . "$here\n$stat\n");
3450 }
3451 }
3452
3453# typecasts on min/max could be min_t/max_t
d1fe9c09
JP
3454 if ($^V && $^V ge 5.10.0 &&
3455 defined $stat &&
d7c76ba7 3456 $stat =~ /^\+(?:.*?)\b(min|max)\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\)/) {
d1fe9c09 3457 if (defined $2 || defined $7) {
d7c76ba7
JP
3458 my $call = $1;
3459 my $cast1 = deparenthesize($2);
3460 my $arg1 = $3;
d1fe9c09
JP
3461 my $cast2 = deparenthesize($7);
3462 my $arg2 = $8;
d7c76ba7
JP
3463 my $cast;
3464
d1fe9c09 3465 if ($cast1 ne "" && $cast2 ne "" && $cast1 ne $cast2) {
d7c76ba7
JP
3466 $cast = "$cast1 or $cast2";
3467 } elsif ($cast1 ne "") {
3468 $cast = $cast1;
3469 } else {
3470 $cast = $cast2;
3471 }
3472 WARN("MINMAX",
3473 "$call() should probably be ${call}_t($cast, $arg1, $arg2)\n" . "$here\n$stat\n");
554e165c
AW
3474 }
3475 }
3476
4a273195
JP
3477# check usleep_range arguments
3478 if ($^V && $^V ge 5.10.0 &&
3479 defined $stat &&
3480 $stat =~ /^\+(?:.*?)\busleep_range\s*\(\s*($FuncArg)\s*,\s*($FuncArg)\s*\)/) {
3481 my $min = $1;
3482 my $max = $7;
3483 if ($min eq $max) {
3484 WARN("USLEEP_RANGE",
3485 "usleep_range should not use min == max args; see Documentation/timers/timers-howto.txt\n" . "$here\n$stat\n");
3486 } elsif ($min =~ /^\d+$/ && $max =~ /^\d+$/ &&
3487 $min > $max) {
3488 WARN("USLEEP_RANGE",
3489 "usleep_range args reversed, use min then max; see Documentation/timers/timers-howto.txt\n" . "$here\n$stat\n");
3490 }
3491 }
3492
de7d4f0e 3493# check for new externs in .c files.
171ae1a4 3494 if ($realfile =~ /\.c$/ && defined $stat &&
c45dcabd 3495 $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s)
171ae1a4 3496 {
c45dcabd
AW
3497 my $function_name = $1;
3498 my $paren_space = $2;
171ae1a4
AW
3499
3500 my $s = $stat;
3501 if (defined $cond) {
3502 substr($s, 0, length($cond), '');
3503 }
c45dcabd
AW
3504 if ($s =~ /^\s*;/ &&
3505 $function_name ne 'uninitialized_var')
3506 {
000d1cc1
JP
3507 WARN("AVOID_EXTERNS",
3508 "externs should be avoided in .c files\n" . $herecurr);
171ae1a4
AW
3509 }
3510
3511 if ($paren_space =~ /\n/) {
000d1cc1
JP
3512 WARN("FUNCTION_ARGUMENTS",
3513 "arguments for function declarations should follow identifier\n" . $herecurr);
171ae1a4 3514 }
9c9ba34e
AW
3515
3516 } elsif ($realfile =~ /\.c$/ && defined $stat &&
3517 $stat =~ /^.\s*extern\s+/)
3518 {
000d1cc1
JP
3519 WARN("AVOID_EXTERNS",
3520 "externs should be avoided in .c files\n" . $herecurr);
de7d4f0e
AW
3521 }
3522
3523# checks for new __setup's
3524 if ($rawline =~ /\b__setup\("([^"]*)"/) {
3525 my $name = $1;
3526
3527 if (!grep(/$name/, @setup_docs)) {
000d1cc1
JP
3528 CHK("UNDOCUMENTED_SETUP",
3529 "__setup appears un-documented -- check Documentation/kernel-parameters.txt\n" . $herecurr);
de7d4f0e 3530 }
653d4876 3531 }
9c0ca6f9
AW
3532
3533# check for pointless casting of kmalloc return
caf2a54f 3534 if ($line =~ /\*\s*\)\s*[kv][czm]alloc(_node){0,1}\b/) {
000d1cc1
JP
3535 WARN("UNNECESSARY_CASTS",
3536 "unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
9c0ca6f9 3537 }
13214adf 3538
a640d25c
JP
3539# alloc style
3540# p = alloc(sizeof(struct foo), ...) should be p = alloc(sizeof(*p), ...)
3541 if ($^V && $^V ge 5.10.0 &&
3542 $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*([kv][mz]alloc(?:_node)?)\s*\(\s*(sizeof\s*\(\s*struct\s+$Lval\s*\))/) {
3543 CHK("ALLOC_SIZEOF_STRUCT",
3544 "Prefer $3(sizeof(*$1)...) over $3($4...)\n" . $herecurr);
3545 }
3546
972fdea2
JP
3547# check for krealloc arg reuse
3548 if ($^V && $^V ge 5.10.0 &&
3549 $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*krealloc\s*\(\s*\1\s*,/) {
3550 WARN("KREALLOC_ARG_REUSE",
3551 "Reusing the krealloc arg is almost always a bug\n" . $herecurr);
3552 }
3553
5ce59ae0
JP
3554# check for alloc argument mismatch
3555 if ($line =~ /\b(kcalloc|kmalloc_array)\s*\(\s*sizeof\b/) {
3556 WARN("ALLOC_ARRAY_ARGS",
3557 "$1 uses number as first arg, sizeof is generally wrong\n" . $herecurr);
3558 }
3559
caf2a54f
JP
3560# check for multiple semicolons
3561 if ($line =~ /;\s*;\s*$/) {
d1e2ad07
JP
3562 WARN("ONE_SEMICOLON",
3563 "Statements terminations use 1 semicolon\n" . $herecurr);
3564 }
3565
3566# check for switch/default statements without a break;
3567 if ($^V && $^V ge 5.10.0 &&
3568 defined $stat &&
3569 $stat =~ /^\+[$;\s]*(?:case[$;\s]+\w+[$;\s]*:[$;\s]*|)*[$;\s]*\bdefault[$;\s]*:[$;\s]*;/g) {
3570 my $ctx = '';
3571 my $herectx = $here . "\n";
3572 my $cnt = statement_rawlines($stat);
3573 for (my $n = 0; $n < $cnt; $n++) {
3574 $herectx .= raw_line($linenr, $n) . "\n";
3575 }
3576 WARN("DEFAULT_NO_BREAK",
3577 "switch default: should use break\n" . $herectx);
caf2a54f
JP
3578 }
3579
13214adf
AW
3580# check for gcc specific __FUNCTION__
3581 if ($line =~ /__FUNCTION__/) {
000d1cc1
JP
3582 WARN("USE_FUNC",
3583 "__func__ should be used instead of gcc specific __FUNCTION__\n" . $herecurr);
13214adf 3584 }
773647a0 3585
2c92488a
JP
3586# check for use of yield()
3587 if ($line =~ /\byield\s*\(\s*\)/) {
3588 WARN("YIELD",
3589 "Using yield() is generally wrong. See yield() kernel-doc (sched/core.c)\n" . $herecurr);
3590 }
3591
179f8f40
JP
3592# check for comparisons against true and false
3593 if ($line =~ /\+\s*(.*?)\b(true|false|$Lval)\s*(==|\!=)\s*(true|false|$Lval)\b(.*)$/i) {
3594 my $lead = $1;
3595 my $arg = $2;
3596 my $test = $3;
3597 my $otype = $4;
3598 my $trail = $5;
3599 my $op = "!";
3600
3601 ($arg, $otype) = ($otype, $arg) if ($arg =~ /^(?:true|false)$/i);
3602
3603 my $type = lc($otype);
3604 if ($type =~ /^(?:true|false)$/) {
3605 if (("$test" eq "==" && "$type" eq "true") ||
3606 ("$test" eq "!=" && "$type" eq "false")) {
3607 $op = "";
3608 }
3609
3610 CHK("BOOL_COMPARISON",
3611 "Using comparison to $otype is error prone\n" . $herecurr);
3612
3613## maybe suggesting a correct construct would better
3614## "Using comparison to $otype is error prone. Perhaps use '${lead}${op}${arg}${trail}'\n" . $herecurr);
3615
3616 }
3617 }
3618
4882720b
TG
3619# check for semaphores initialized locked
3620 if ($line =~ /^.\s*sema_init.+,\W?0\W?\)/) {
000d1cc1
JP
3621 WARN("CONSIDER_COMPLETION",
3622 "consider using a completion\n" . $herecurr);
773647a0 3623 }
6712d858 3624
67d0a075
JP
3625# recommend kstrto* over simple_strto* and strict_strto*
3626 if ($line =~ /\b((simple|strict)_(strto(l|ll|ul|ull)))\s*\(/) {
000d1cc1 3627 WARN("CONSIDER_KSTRTO",
67d0a075 3628 "$1 is obsolete, use k$3 instead\n" . $herecurr);
773647a0 3629 }
6712d858 3630
f3db6639
ME
3631# check for __initcall(), use device_initcall() explicitly please
3632 if ($line =~ /^.\s*__initcall\s*\(/) {
000d1cc1
JP
3633 WARN("USE_DEVICE_INITCALL",
3634 "please use device_initcall() instead of __initcall()\n" . $herecurr);
f3db6639 3635 }
6712d858 3636
79404849
ER
3637# check for various ops structs, ensure they are const.
3638 my $struct_ops = qr{acpi_dock_ops|
3639 address_space_operations|
3640 backlight_ops|
3641 block_device_operations|
3642 dentry_operations|
3643 dev_pm_ops|
3644 dma_map_ops|
3645 extent_io_ops|
3646 file_lock_operations|
3647 file_operations|
3648 hv_ops|
3649 ide_dma_ops|
3650 intel_dvo_dev_ops|
3651 item_operations|
3652 iwl_ops|
3653 kgdb_arch|
3654 kgdb_io|
3655 kset_uevent_ops|
3656 lock_manager_operations|
3657 microcode_ops|
3658 mtrr_ops|
3659 neigh_ops|
3660 nlmsvc_binding|
3661 pci_raw_ops|
3662 pipe_buf_operations|
3663 platform_hibernation_ops|
3664 platform_suspend_ops|
3665 proto_ops|
3666 rpc_pipe_ops|
3667 seq_operations|
3668 snd_ac97_build_ops|
3669 soc_pcmcia_socket_ops|
3670 stacktrace_ops|
3671 sysfs_ops|
3672 tty_operations|
3673 usb_mon_operations|
3674 wd_ops}x;
6903ffb2 3675 if ($line !~ /\bconst\b/ &&
79404849 3676 $line =~ /\bstruct\s+($struct_ops)\b/) {
000d1cc1
JP
3677 WARN("CONST_STRUCT",
3678 "struct $1 should normally be const\n" .
6903ffb2 3679 $herecurr);
2b6db5cb 3680 }
773647a0
AW
3681
3682# use of NR_CPUS is usually wrong
3683# ignore definitions of NR_CPUS and usage to define arrays as likely right
3684 if ($line =~ /\bNR_CPUS\b/ &&
c45dcabd
AW
3685 $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ &&
3686 $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ &&
171ae1a4
AW
3687 $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ &&
3688 $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ &&
3689 $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/)
773647a0 3690 {
000d1cc1
JP
3691 WARN("NR_CPUS",
3692 "usage of NR_CPUS is often wrong - consider using cpu_possible(), num_possible_cpus(), for_each_possible_cpu(), etc\n" . $herecurr);
773647a0 3693 }
9c9ba34e
AW
3694
3695# check for %L{u,d,i} in strings
3696 my $string;
3697 while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) {
3698 $string = substr($rawline, $-[1], $+[1] - $-[1]);
2a1bc5d5 3699 $string =~ s/%%/__/g;
9c9ba34e 3700 if ($string =~ /(?<!%)%L[udi]/) {
000d1cc1
JP
3701 WARN("PRINTF_L",
3702 "\%Ld/%Lu are not-standard C, use %lld/%llu\n" . $herecurr);
9c9ba34e
AW
3703 last;
3704 }
3705 }
691d77b6
AW
3706
3707# whine mightly about in_atomic
3708 if ($line =~ /\bin_atomic\s*\(/) {
3709 if ($realfile =~ m@^drivers/@) {
000d1cc1
JP
3710 ERROR("IN_ATOMIC",
3711 "do not use in_atomic in drivers\n" . $herecurr);
f4a87736 3712 } elsif ($realfile !~ m@^kernel/@) {
000d1cc1
JP
3713 WARN("IN_ATOMIC",
3714 "use of in_atomic() is incorrect outside core kernel code\n" . $herecurr);
691d77b6
AW
3715 }
3716 }
1704f47b
PZ
3717
3718# check for lockdep_set_novalidate_class
3719 if ($line =~ /^.\s*lockdep_set_novalidate_class\s*\(/ ||
3720 $line =~ /__lockdep_no_validate__\s*\)/ ) {
3721 if ($realfile !~ m@^kernel/lockdep@ &&
3722 $realfile !~ m@^include/linux/lockdep@ &&
3723 $realfile !~ m@^drivers/base/core@) {
000d1cc1
JP
3724 ERROR("LOCKDEP",
3725 "lockdep_no_validate class is reserved for device->mutex.\n" . $herecurr);
1704f47b
PZ
3726 }
3727 }
88f8831c
DJ
3728
3729 if ($line =~ /debugfs_create_file.*S_IWUGO/ ||
3730 $line =~ /DEVICE_ATTR.*S_IWUGO/ ) {
000d1cc1
JP
3731 WARN("EXPORTED_WORLD_WRITABLE",
3732 "Exporting world writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr);
88f8831c 3733 }
13214adf
AW
3734 }
3735
3736 # If we have no input at all, then there is nothing to report on
3737 # so just keep quiet.
3738 if ($#rawlines == -1) {
3739 exit(0);
0a920b5b
AW
3740 }
3741
8905a67c
AW
3742 # In mailback mode only produce a report in the negative, for
3743 # things that appear to be patches.
3744 if ($mailback && ($clean == 1 || !$is_patch)) {
3745 exit(0);
3746 }
3747
3748 # This is not a patch, and we are are in 'no-patch' mode so
3749 # just keep quiet.
3750 if (!$chk_patch && !$is_patch) {
3751 exit(0);
3752 }
3753
3754 if (!$is_patch) {
000d1cc1
JP
3755 ERROR("NOT_UNIFIED_DIFF",
3756 "Does not appear to be a unified-diff format patch\n");
0a920b5b
AW
3757 }
3758 if ($is_patch && $chk_signoff && $signoff == 0) {
000d1cc1
JP
3759 ERROR("MISSING_SIGN_OFF",
3760 "Missing Signed-off-by: line(s)\n");
0a920b5b
AW
3761 }
3762
8905a67c 3763 print report_dump();
13214adf
AW
3764 if ($summary && !($clean == 1 && $quiet == 1)) {
3765 print "$filename " if ($summary_file);
8905a67c
AW
3766 print "total: $cnt_error errors, $cnt_warn warnings, " .
3767 (($check)? "$cnt_chk checks, " : "") .
3768 "$cnt_lines lines checked\n";
3769 print "\n" if ($quiet == 0);
f0a594c1 3770 }
8905a67c 3771
d2c0a235 3772 if ($quiet == 0) {
d1fe9c09
JP
3773
3774 if ($^V lt 5.10.0) {
3775 print("NOTE: perl $^V is not modern enough to detect all possible issues.\n");
3776 print("An upgrade to at least perl v5.10.0 is suggested.\n\n");
3777 }
3778
d2c0a235
AW
3779 # If there were whitespace errors which cleanpatch can fix
3780 # then suggest that.
3781 if ($rpt_cleaners) {
3782 print "NOTE: whitespace errors detected, you may wish to use scripts/cleanpatch or\n";
3783 print " scripts/cleanfile\n\n";
b0781216 3784 $rpt_cleaners = 0;
d2c0a235
AW
3785 }
3786 }
3787
11232688 3788 if ($quiet == 0 && keys %ignore_type) {
000d1cc1
JP
3789 print "NOTE: Ignored message types:";
3790 foreach my $ignore (sort keys %ignore_type) {
3791 print " $ignore";
3792 }
11232688 3793 print "\n\n";
000d1cc1
JP
3794 }
3795
0a920b5b 3796 if ($clean == 1 && $quiet == 0) {
c2fdda0d 3797 print "$vname has no obvious style problems and is ready for submission.\n"
0a920b5b
AW
3798 }
3799 if ($clean == 0 && $quiet == 0) {
000d1cc1
JP
3800 print << "EOM";
3801$vname has style problems, please review.
3802
3803If any of these errors are false positives, please report
3804them to the maintainer, see CHECKPATCH in MAINTAINERS.
3805EOM
0a920b5b 3806 }
13214adf 3807
0a920b5b
AW
3808 return $clean;
3809}