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