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