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