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
15 use Getopt
::Long
qw(:config no_auto_abbrev);
35 my $configuration_file = ".checkpatch.conf";
41 Usage
: $P [OPTION
]... [FILE
]...
46 --no-tree run without a kernel tree
47 --no-signoff
do not check
for 'Signed-off-by' line
48 --patch treat FILE as patchfile
(default)
49 --emacs emacs compile window format
50 --terse one line per report
51 -f
, --file treat FILE as regular source file
52 --subjective
, --strict enable more subjective tests
53 --ignore TYPE
(,TYPE2
...) ignore various comma separated message types
54 --show
-types show the message
"types" in the output
55 --root
=PATH PATH to the kernel tree root
56 --no-summary suppress the per
-file summary
57 --mailback only produce a report
in case of warnings
/errors
58 --summary
-file include the filename
in summary
59 --debug KEY
=[0|1] turn on
/off debugging of KEY
, where KEY is one of
60 'values', 'possible', 'type', and 'attr' (default
62 --test
-only
=WORD report only warnings
/errors containing WORD
64 -h
, --help
, --version display this help
and exit
66 When FILE is
- read standard input
.
72 my $conf = which_conf
($configuration_file);
75 open(my $conffile, '<', "$conf")
76 or warn "$P: Can't find a readable $configuration_file file $!\n";
81 $line =~ s/\s*\n?$//g;
85 next if ($line =~ m/^\s*#/);
86 next if ($line =~ m/^\s*$/);
88 my @words = split(" ", $line);
89 foreach my $word (@words) {
90 last if ($word =~ m/^#/);
91 push (@conf_args, $word);
95 unshift(@ARGV, @conf_args) if @conf_args;
99 'q|quiet+' => \
$quiet,
101 'signoff!' => \
$chk_signoff,
102 'patch!' => \
$chk_patch,
106 'subjective!' => \
$check,
107 'strict!' => \
$check,
108 'ignore=s' => \
@ignore,
109 'show-types!' => \
$show_types,
111 'summary!' => \
$summary,
112 'mailback!' => \
$mailback,
113 'summary-file!' => \
$summary_file,
115 'debug=s' => \
%debug,
116 'test-only=s' => \
$tst_only,
126 print "$P: no input files\n";
130 @ignore = split(/,/, join(',',@ignore));
131 foreach my $word (@ignore) {
132 $word =~ s/\s*\n?$//g;
135 $word =~ tr/[a-z]/[A-Z]/;
137 next if ($word =~ m/^\s*#/);
138 next if ($word =~ m/^\s*$/);
140 $ignore_type{$word}++;
144 my $dbg_possible = 0;
147 for my $key (keys %debug) {
149 eval "\${dbg_$key} = '$debug{$key}';";
153 my $rpt_cleaners = 0;
162 if (!top_of_kernel_tree
($root)) {
163 die "$P: $root: --root does not point at a valid tree\n";
166 if (top_of_kernel_tree
('.')) {
168 } elsif ($0 =~ m@
(.*)/scripts/[^/]*$@
&&
169 top_of_kernel_tree
($1)) {
174 if (!defined $root) {
175 print "Must be run from the top-level dir. of a kernel tree\n";
180 my $emitted_corrupt = 0;
183 [A
-Za
-z_
][A
-Za
-z\d_
]*
184 (?
:\s
*\#\#\s
*[A
-Za
-z_
][A
-Za
-z\d_
]*)*
186 our $Storage = qr{extern|static|asmlinkage};
199 # Notes to $Attribute:
200 # We need \b after 'init' otherwise 'initconst' will cause a false positive in a check
219 __
(?
:mem
|cpu
|dev
|)(?
:initdata
|initconst
|init
\b)|
220 ____cacheline_aligned
|
221 ____cacheline_aligned_in_smp
|
222 ____cacheline_internodealigned_in_smp
|
226 our $Inline = qr{inline|__always_inline|noinline};
227 our $Member = qr{->$Ident|\.$Ident|\[[^]]*\]};
228 our $Lval = qr{$Ident(?:$Member)*};
230 our $Constant = qr{(?i:(?:[0-9]+|0x[0-9a-f]+)[ul]*)};
231 our $Assignment = qr{(?:\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=)};
232 our $Compare = qr{<=|>=|==|!=|<|>};
236 &&|\
|\
||,|\
^|\
+\
+|--|&|\
||\
+|-|\
*|\
/|%
243 our $NON_ASCII_UTF8 = qr{
244 [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
245 | \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
246 | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
247 | \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
248 | \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
249 | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
250 | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
254 [\x09\x0A\x0D\x20-\x7E] # ASCII
258 our $typeTypedefs = qr{(?x
:
259 (?
:__
)?
(?
:u
|s
|be
|le)(?
:8|16|32|64)|
263 our $logFunctions = qr{(?x
:
264 printk
(?
:_ratelimited
|_once
|)|
265 [a
-z0
-9]+_
(?
:printk
|emerg
|alert
|crit
|err
|warning
|warn|notice
|info
|debug
|dbg
|vdbg
|devel
|cont
|WARN
)(?
:_ratelimited
|_once
|)|
266 WARN
(?
:_RATELIMIT
|_ONCE
|)|
271 our $signature_tags = qr{(?xi
:
283 qr{(?:unsigned\s+)?char},
284 qr{(?:unsigned\s+)?short},
285 qr{(?:unsigned\s+)?int},
286 qr{(?:unsigned\s+)?long},
287 qr{(?:unsigned\s+)?long\s+int},
288 qr{(?:unsigned\s+)?long\s+long},
289 qr{(?:unsigned\s+)?long\s+long\s+int},
298 qr{${Ident}_handler
},
299 qr{${Ident}_handler_fn
},
301 our @modifierList = (
305 our $allowed_asm_includes = qr{(?x
:
309 # memory.h: ARM has a custom one
312 my $mods = "(?x: \n" . join("|\n ", @modifierList) . "\n)";
313 my $all = "(?x: \n" . join("|\n ", @typeList) . "\n)";
314 $Modifier = qr{(?:$Attribute|$Sparse|$mods)};
316 (?
:$Modifier\s
+|const\s
+)*
318 (?
:typeof
|__typeof__
)\s
*\
([^\
)]*\
)|
322 (?
:\s
+$Modifier|\s
+const
)*
326 (?
:[\s\
*]+\s
*const
|[\s\
*]+|(?
:\s
*\
[\s
*\
])+)?
327 (?
:\s
+$Inline|\s
+$Modifier)*
329 $Declare = qr{(?:$Storage\s+)?$Type};
333 our $match_balanced_parentheses = qr/(\((?:[^\(\)]+|(-1))*\))/;
335 our $Typecast = qr{\s*(\(\s*$NonptrType\s*\)){0,1}\s
*};
336 our $LvalOrFunc = qr{($Lval)\s*($match_balanced_parentheses{0,1})\s
*};
337 our $FuncArg = qr{$Typecast{0,1}($LvalOrFunc|$Constant)};
341 return "" if (!defined($string));
342 $string =~ s@
^\s
*\
(\s
*@
@g;
343 $string =~ s@\s
*\
)\s
*$@
@g;
344 $string =~ s@\s
+@
@g;
348 $chk_signoff = 0 if ($file);
350 my @dep_includes = ();
351 my @dep_functions = ();
352 my $removal = "Documentation/feature-removal-schedule.txt";
353 if ($tree && -f
"$root/$removal") {
354 open(my $REMOVE, '<', "$root/$removal") ||
355 die "$P: $removal: open failed - $!\n";
357 if (/^Check:\s+(.*\S)/) {
358 for my $entry (split(/[, ]+/, $1)) {
359 if ($entry =~ m
@include/(.*)@
) {
360 push(@dep_includes, $1);
362 } elsif ($entry !~ m@
/@
) {
363 push(@dep_functions, $entry);
374 for my $filename (@ARGV) {
377 open($FILE, '-|', "diff -u /dev/null $filename") ||
378 die "$P: $filename: diff failed - $!\n";
379 } elsif ($filename eq '-') {
380 open($FILE, '<&STDIN');
382 open($FILE, '<', "$filename") ||
383 die "$P: $filename: open failed - $!\n";
385 if ($filename eq '-') {
386 $vname = 'Your patch';
395 if (!process
($filename)) {
404 sub top_of_kernel_tree
{
408 "COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
409 "README", "Documentation", "arch", "include", "drivers",
410 "fs", "init", "ipc", "kernel", "lib", "scripts",
413 foreach my $check (@tree_check) {
414 if (! -e
$root . '/' . $check) {
422 my ($formatted_email) = @_;
428 if ($formatted_email =~ /^(.*)<(\S+\@\S+)>(.*)$/) {
431 $comment = $3 if defined $3;
432 } elsif ($formatted_email =~ /^\s*<(\S+\@\S+)>(.*)$/) {
434 $comment = $2 if defined $2;
435 } elsif ($formatted_email =~ /(\S+\@\S+)(.*)$/) {
437 $comment = $2 if defined $2;
438 $formatted_email =~ s/$address.*$//;
439 $name = $formatted_email;
440 $name =~ s/^\s+|\s+$//g;
441 $name =~ s/^\"|\"$//g;
442 # If there's a name left after stripping spaces and
443 # leading quotes, and the address doesn't have both
444 # leading and trailing angle brackets, the address
446 # "joe smith joe@smith.com" bad
447 # "joe smith <joe@smith.com" bad
448 if ($name ne "" && $address !~ /^<[^>]+>$/) {
455 $name =~ s/^\s+|\s+$//g;
456 $name =~ s/^\"|\"$//g;
457 $address =~ s/^\s+|\s+$//g;
458 $address =~ s/^\<|\>$//g;
460 if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
461 $name =~ s/(?<!\\)"/\\"/g; ##escape quotes
465 return ($name, $address, $comment);
469 my ($name, $address) = @_;
473 $name =~ s/^\s+|\s+$//g;
474 $name =~ s/^\"|\"$//g;
475 $address =~ s/^\s+|\s+$//g;
477 if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
478 $name =~ s/(?<!\\)"/\\"/g; ##escape quotes
483 $formatted_email = "$address";
485 $formatted_email = "$name <$address>";
488 return $formatted_email;
494 foreach my $path (split(/:/, ".:$ENV{HOME}:.scripts")) {
495 if (-e
"$path/$conf") {
496 return "$path/$conf";
508 for my $c (split(//, $str)) {
512 for (; ($n % 8) != 0; $n++) {
524 (my $res = shift) =~ tr/\t/ /c;
531 # Drop the diff line leader and expand tabs
533 $line = expand_tabs
($line);
535 # Pick the indent from the front of the line.
536 my ($white) = ($line =~ /^(\s*)/);
538 return (length($line), length($white));
541 my $sanitise_quote = '';
543 sub sanitise_line_reset
{
544 my ($in_comment) = @_;
547 $sanitise_quote = '*/';
549 $sanitise_quote = '';
562 # Always copy over the diff marker.
563 $res = substr($line, 0, 1);
565 for ($off = 1; $off < length($line); $off++) {
566 $c = substr($line, $off, 1);
568 # Comments we are wacking completly including the begin
569 # and end, all to $;.
570 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
571 $sanitise_quote = '*/';
573 substr($res, $off, 2, "$;$;");
577 if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') {
578 $sanitise_quote = '';
579 substr($res, $off, 2, "$;$;");
583 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '//') {
584 $sanitise_quote = '//';
586 substr($res, $off, 2, $sanitise_quote);
591 # A \ in a string means ignore the next character.
592 if (($sanitise_quote eq "'" || $sanitise_quote eq '"') &&
594 substr($res, $off, 2, 'XX');
599 if ($c eq "'" || $c eq '"') {
600 if ($sanitise_quote eq '') {
601 $sanitise_quote = $c;
603 substr($res, $off, 1, $c);
605 } elsif ($sanitise_quote eq $c) {
606 $sanitise_quote = '';
610 #print "c<$c> SQ<$sanitise_quote>\n";
611 if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") {
612 substr($res, $off, 1, $;);
613 } elsif ($off != 0 && $sanitise_quote eq '//' && $c ne "\t") {
614 substr($res, $off, 1, $;);
615 } elsif ($off != 0 && $sanitise_quote && $c ne "\t") {
616 substr($res, $off, 1, 'X');
618 substr($res, $off, 1, $c);
622 if ($sanitise_quote eq '//') {
623 $sanitise_quote = '';
626 # The pathname on a #include may be surrounded by '<' and '>'.
627 if ($res =~ /^.\s*\#\s*include\s+\<(.*)\>/) {
628 my $clean = 'X' x
length($1);
629 $res =~ s@\
<.*\
>@
<$clean>@
;
631 # The whole of a #error is a string.
632 } elsif ($res =~ /^.\s*\#\s*(?:error|warning)\s+(.*)\b/) {
633 my $clean = 'X' x
length($1);
634 $res =~ s@
(\#\s
*(?
:error
|warning
)\s
+).*@
$1$clean@
;
640 sub ctx_statement_block
{
641 my ($linenr, $remain, $off) = @_;
642 my $line = $linenr - 1;
659 @stack = (['', 0]) if ($#stack == -1);
661 #warn "CSB: blk<$blk> remain<$remain>\n";
662 # If we are about to drop off the end, pull in more
665 for (; $remain > 0; $line++) {
666 last if (!defined $lines[$line]);
667 next if ($lines[$line] =~ /^-/);
670 $blk .= $lines[$line] . "\n";
675 # Bail if there is no further context.
676 #warn "CSB: blk<$blk> off<$off> len<$len>\n";
680 if ($level == 0 && substr($blk, $off) =~ /^.\s*#\s*define/) {
686 $c = substr($blk, $off, 1);
687 $remainder = substr($blk, $off);
689 #warn "CSB: c<$c> type<$type> level<$level> remainder<$remainder> coff_set<$coff_set>\n";
691 # Handle nested #if/#else.
692 if ($remainder =~ /^#\s*(?:ifndef|ifdef|if)\s/) {
693 push(@stack, [ $type, $level ]);
694 } elsif ($remainder =~ /^#\s*(?:else|elif)\b/) {
695 ($type, $level) = @
{$stack[$#stack - 1]};
696 } elsif ($remainder =~ /^#\s*endif\b/) {
697 ($type, $level) = @
{pop(@stack)};
700 # Statement ends at the ';' or a close '}' at the
702 if ($level == 0 && $c eq ';') {
706 # An else is really a conditional as long as its not else if
707 if ($level == 0 && $coff_set == 0 &&
708 (!defined($p) || $p =~ /(?:\s|\}|\+)/) &&
709 $remainder =~ /^(else)(?:\s|{)/ &&
710 $remainder !~ /^else\s+if\b/) {
711 $coff = $off + length($1) - 1;
713 #warn "CSB: mark coff<$coff> soff<$soff> 1<$1>\n";
714 #warn "[" . substr($blk, $soff, $coff - $soff + 1) . "]\n";
717 if (($type eq '' || $type eq '(') && $c eq '(') {
721 if ($type eq '(' && $c eq ')') {
723 $type = ($level != 0)?
'(' : '';
725 if ($level == 0 && $coff < $soff) {
728 #warn "CSB: mark coff<$coff>\n";
731 if (($type eq '' || $type eq '{') && $c eq '{') {
735 if ($type eq '{' && $c eq '}') {
737 $type = ($level != 0)?
'{' : '';
740 if (substr($blk, $off + 1, 1) eq ';') {
746 # Preprocessor commands end at the newline unless escaped.
747 if ($type eq '#' && $c eq "\n" && $p ne "\\") {
755 # We are truly at the end, so shuffle to the next line.
762 my $statement = substr($blk, $soff, $off - $soff + 1);
763 my $condition = substr($blk, $soff, $coff - $soff + 1);
765 #warn "STATEMENT<$statement>\n";
766 #warn "CONDITION<$condition>\n";
768 #print "coff<$coff> soff<$off> loff<$loff>\n";
770 return ($statement, $condition,
771 $line, $remain + 1, $off - $loff + 1, $level);
774 sub statement_lines
{
777 # Strip the diff line prefixes and rip blank lines at start and end.
778 $stmt =~ s/(^|\n)./$1/g;
782 my @stmt_lines = ($stmt =~ /\n/g);
784 return $#stmt_lines + 2;
787 sub statement_rawlines
{
790 my @stmt_lines = ($stmt =~ /\n/g);
792 return $#stmt_lines + 2;
795 sub statement_block_size
{
798 $stmt =~ s/(^|\n)./$1/g;
804 my @stmt_lines = ($stmt =~ /\n/g);
805 my @stmt_statements = ($stmt =~ /;/g);
807 my $stmt_lines = $#stmt_lines + 2;
808 my $stmt_statements = $#stmt_statements + 1;
810 if ($stmt_lines > $stmt_statements) {
813 return $stmt_statements;
817 sub ctx_statement_full
{
818 my ($linenr, $remain, $off) = @_;
819 my ($statement, $condition, $level);
823 # Grab the first conditional/block pair.
824 ($statement, $condition, $linenr, $remain, $off, $level) =
825 ctx_statement_block
($linenr, $remain, $off);
826 #print "F: c<$condition> s<$statement> remain<$remain>\n";
827 push(@chunks, [ $condition, $statement ]);
828 if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
829 return ($level, $linenr, @chunks);
832 # Pull in the following conditional/block pairs and see if they
833 # could continue the statement.
835 ($statement, $condition, $linenr, $remain, $off, $level) =
836 ctx_statement_block
($linenr, $remain, $off);
837 #print "C: c<$condition> s<$statement> remain<$remain>\n";
838 last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
840 push(@chunks, [ $condition, $statement ]);
843 return ($level, $linenr, @chunks);
847 my ($linenr, $remain, $outer, $open, $close, $off) = @_;
849 my $start = $linenr - 1;
856 my @stack = ($level);
857 for ($line = $start; $remain > 0; $line++) {
858 next if ($rawlines[$line] =~ /^-/);
861 $blk .= $rawlines[$line];
863 # Handle nested #if/#else.
864 if ($lines[$line] =~ /^.\s*#\s*(?:ifndef|ifdef|if)\s/) {
865 push(@stack, $level);
866 } elsif ($lines[$line] =~ /^.\s*#\s*(?:else|elif)\b/) {
867 $level = $stack[$#stack - 1];
868 } elsif ($lines[$line] =~ /^.\s*#\s*endif\b/) {
869 $level = pop(@stack);
872 foreach my $c (split(//, $lines[$line])) {
873 ##print "C<$c>L<$level><$open$close>O<$off>\n";
879 if ($c eq $close && $level > 0) {
881 last if ($level == 0);
882 } elsif ($c eq $open) {
887 if (!$outer || $level <= 1) {
888 push(@res, $rawlines[$line]);
891 last if ($level == 0);
894 return ($level, @res);
896 sub ctx_block_outer
{
897 my ($linenr, $remain) = @_;
899 my ($level, @r) = ctx_block_get
($linenr, $remain, 1, '{', '}', 0);
903 my ($linenr, $remain) = @_;
905 my ($level, @r) = ctx_block_get
($linenr, $remain, 0, '{', '}', 0);
909 my ($linenr, $remain, $off) = @_;
911 my ($level, @r) = ctx_block_get
($linenr, $remain, 0, '(', ')', $off);
914 sub ctx_block_level
{
915 my ($linenr, $remain) = @_;
917 return ctx_block_get
($linenr, $remain, 0, '{', '}', 0);
919 sub ctx_statement_level
{
920 my ($linenr, $remain, $off) = @_;
922 return ctx_block_get
($linenr, $remain, 0, '(', ')', $off);
925 sub ctx_locate_comment
{
926 my ($first_line, $end_line) = @_;
928 # Catch a comment on the end of the line itself.
929 my ($current_comment) = ($rawlines[$end_line - 1] =~ m@
.*(/\*.*\*/)\s
*(?
:\\\s
*)?
$@
);
930 return $current_comment if (defined $current_comment);
932 # Look through the context and try and figure out if there is a
935 $current_comment = '';
936 for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
937 my $line = $rawlines[$linenr - 1];
939 if ($linenr == $first_line and $line =~ m@
^.\s
*\
*@
) {
942 if ($line =~ m@
/\
*@
) {
945 if (!$in_comment && $current_comment ne '') {
946 $current_comment = '';
948 $current_comment .= $line . "\n" if ($in_comment);
949 if ($line =~ m@\
*/@
) {
954 chomp($current_comment);
955 return($current_comment);
957 sub ctx_has_comment
{
958 my ($first_line, $end_line) = @_;
959 my $cmt = ctx_locate_comment
($first_line, $end_line);
961 ##print "LINE: $rawlines[$end_line - 1 ]\n";
962 ##print "CMMT: $cmt\n";
968 my ($linenr, $cnt) = @_;
970 my $offset = $linenr - 1;
975 $line = $rawlines[$offset++];
976 next if (defined($line) && $line =~ /^-/);
988 while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
991 $coded = sprintf("^%c", unpack('C', $2) + 64);
1000 my $av_preprocessor = 0;
1005 sub annotate_reset
{
1006 $av_preprocessor = 0;
1008 @av_paren_type = ('E');
1009 $av_pend_colon = 'O';
1012 sub annotate_values
{
1013 my ($stream, $type) = @_;
1016 my $var = '_' x
length($stream);
1019 print "$stream\n" if ($dbg_values > 1);
1021 while (length($cur)) {
1022 @av_paren_type = ('E') if ($#av_paren_type < 0);
1023 print " <" . join('', @av_paren_type) .
1024 "> <$type> <$av_pending>" if ($dbg_values > 1);
1025 if ($cur =~ /^(\s+)/o) {
1026 print "WS($1)\n" if ($dbg_values > 1);
1027 if ($1 =~ /\n/ && $av_preprocessor) {
1028 $type = pop(@av_paren_type);
1029 $av_preprocessor = 0;
1032 } elsif ($cur =~ /^(\(\s*$Type\s*)\)/ && $av_pending eq '_') {
1033 print "CAST($1)\n" if ($dbg_values > 1);
1034 push(@av_paren_type, $type);
1037 } elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\(|\s*$)/) {
1038 print "DECLARE($1)\n" if ($dbg_values > 1);
1041 } elsif ($cur =~ /^($Modifier)\s*/) {
1042 print "MODIFIER($1)\n" if ($dbg_values > 1);
1045 } elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) {
1046 print "DEFINE($1,$2)\n" if ($dbg_values > 1);
1047 $av_preprocessor = 1;
1048 push(@av_paren_type, $type);
1054 } elsif ($cur =~ /^(\#\s*(?:undef\s*$Ident|include\b))/o) {
1055 print "UNDEF($1)\n" if ($dbg_values > 1);
1056 $av_preprocessor = 1;
1057 push(@av_paren_type, $type);
1059 } elsif ($cur =~ /^(\#\s*(?:ifdef|ifndef|if))/o) {
1060 print "PRE_START($1)\n" if ($dbg_values > 1);
1061 $av_preprocessor = 1;
1063 push(@av_paren_type, $type);
1064 push(@av_paren_type, $type);
1067 } elsif ($cur =~ /^(\#\s*(?:else|elif))/o) {
1068 print "PRE_RESTART($1)\n" if ($dbg_values > 1);
1069 $av_preprocessor = 1;
1071 push(@av_paren_type, $av_paren_type[$#av_paren_type]);
1075 } elsif ($cur =~ /^(\#\s*(?:endif))/o) {
1076 print "PRE_END($1)\n" if ($dbg_values > 1);
1078 $av_preprocessor = 1;
1080 # Assume all arms of the conditional end as this
1081 # one does, and continue as if the #endif was not here.
1082 pop(@av_paren_type);
1083 push(@av_paren_type, $type);
1086 } elsif ($cur =~ /^(\\\n)/o) {
1087 print "PRECONT($1)\n" if ($dbg_values > 1);
1089 } elsif ($cur =~ /^(__attribute__)\s*\(?/o) {
1090 print "ATTR($1)\n" if ($dbg_values > 1);
1091 $av_pending = $type;
1094 } elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
1095 print "SIZEOF($1)\n" if ($dbg_values > 1);
1101 } elsif ($cur =~ /^(if|while|for)\b/o) {
1102 print "COND($1)\n" if ($dbg_values > 1);
1106 } elsif ($cur =~/^(case)/o) {
1107 print "CASE($1)\n" if ($dbg_values > 1);
1108 $av_pend_colon = 'C';
1111 } elsif ($cur =~/^(return|else|goto|typeof|__typeof__)\b/o) {
1112 print "KEYWORD($1)\n" if ($dbg_values > 1);
1115 } elsif ($cur =~ /^(\()/o) {
1116 print "PAREN('$1')\n" if ($dbg_values > 1);
1117 push(@av_paren_type, $av_pending);
1121 } elsif ($cur =~ /^(\))/o) {
1122 my $new_type = pop(@av_paren_type);
1123 if ($new_type ne '_') {
1125 print "PAREN('$1') -> $type\n"
1126 if ($dbg_values > 1);
1128 print "PAREN('$1')\n" if ($dbg_values > 1);
1131 } elsif ($cur =~ /^($Ident)\s*\(/o) {
1132 print "FUNC($1)\n" if ($dbg_values > 1);
1136 } elsif ($cur =~ /^($Ident\s*):(?:\s*\d+\s*(,|=|;))?/) {
1137 if (defined $2 && $type eq 'C' || $type eq 'T') {
1138 $av_pend_colon = 'B';
1139 } elsif ($type eq 'E') {
1140 $av_pend_colon = 'L';
1142 print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1);
1145 } elsif ($cur =~ /^($Ident|$Constant)/o) {
1146 print "IDENT($1)\n" if ($dbg_values > 1);
1149 } elsif ($cur =~ /^($Assignment)/o) {
1150 print "ASSIGN($1)\n" if ($dbg_values > 1);
1153 } elsif ($cur =~/^(;|{|})/) {
1154 print "END($1)\n" if ($dbg_values > 1);
1156 $av_pend_colon = 'O';
1158 } elsif ($cur =~/^(,)/) {
1159 print "COMMA($1)\n" if ($dbg_values > 1);
1162 } elsif ($cur =~ /^(\?)/o) {
1163 print "QUESTION($1)\n" if ($dbg_values > 1);
1166 } elsif ($cur =~ /^(:)/o) {
1167 print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1);
1169 substr($var, length($res), 1, $av_pend_colon);
1170 if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') {
1175 $av_pend_colon = 'O';
1177 } elsif ($cur =~ /^(\[)/o) {
1178 print "CLOSE($1)\n" if ($dbg_values > 1);
1181 } elsif ($cur =~ /^(-(?![->])|\+(?!\+)|\*|\&\&|\&)/o) {
1184 print "OPV($1)\n" if ($dbg_values > 1);
1191 substr($var, length($res), 1, $variant);
1194 } elsif ($cur =~ /^($Operators)/o) {
1195 print "OP($1)\n" if ($dbg_values > 1);
1196 if ($1 ne '++' && $1 ne '--') {
1200 } elsif ($cur =~ /(^.)/o) {
1201 print "C($1)\n" if ($dbg_values > 1);
1204 $cur = substr($cur, length($1));
1205 $res .= $type x
length($1);
1209 return ($res, $var);
1213 my ($possible, $line) = @_;
1214 my $notPermitted = qr{(?
:
1231 ^(?
:typedef
|struct
|enum
)\b
1233 warn "CHECK<$possible> ($line)\n" if ($dbg_possible > 2);
1234 if ($possible !~ $notPermitted) {
1235 # Check for modifiers.
1236 $possible =~ s/\s*$Storage\s*//g;
1237 $possible =~ s/\s*$Sparse\s*//g;
1238 if ($possible =~ /^\s*$/) {
1240 } elsif ($possible =~ /\s/) {
1241 $possible =~ s/\s*$Type\s*//g;
1242 for my $modifier (split(' ', $possible)) {
1243 if ($modifier !~ $notPermitted) {
1244 warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
1245 push(@modifierList, $modifier);
1250 warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
1251 push(@typeList, $possible);
1255 warn "NOTPOSS: $possible ($line)\n" if ($dbg_possible > 1);
1262 return !defined $ignore_type{$_[0]};
1266 if (!show_type
($_[1]) ||
1267 (defined $tst_only && $_[2] !~ /\Q$tst_only\E/)) {
1272 $line = "$prefix$_[0]:$_[1]: $_[2]\n";
1274 $line = "$prefix$_[0]: $_[2]\n";
1276 $line = (split('\n', $line))[0] . "\n" if ($terse);
1278 push(our @report, $line);
1287 if (report
("ERROR", $_[0], $_[1])) {
1293 if (report
("WARNING", $_[0], $_[1])) {
1299 if ($check && report
("CHECK", $_[0], $_[1])) {
1305 sub check_absolute_file
{
1306 my ($absolute, $herecurr) = @_;
1307 my $file = $absolute;
1309 ##print "absolute<$absolute>\n";
1311 # See if any suffix of this path is a path within the tree.
1312 while ($file =~ s@
^[^/]*/@@
) {
1313 if (-f
"$root/$file") {
1314 ##print "file<$file>\n";
1322 # It is, so see if the prefix is acceptable.
1323 my $prefix = $absolute;
1324 substr($prefix, -length($file)) = '';
1326 ##print "prefix<$prefix>\n";
1327 if ($prefix ne ".../") {
1328 WARN
("USE_RELATIVE_PATH",
1329 "use relative pathname instead of absolute in changelog text\n" . $herecurr);
1334 my $filename = shift;
1340 my $stashrawline="";
1351 my $in_header_lines = 1;
1352 my $in_commit_log = 0; #Scanning lines before patch
1360 # Trace the real file/line as we go.
1366 my $comment_edge = 0;
1370 my $prev_values = 'E';
1373 my %suppress_ifbraces;
1374 my %suppress_whiletrailers;
1375 my %suppress_export;
1376 my $suppress_statement = 0;
1378 # Pre-scan the patch sanitizing the lines.
1379 # Pre-scan the patch looking for any __setup documentation.
1381 my @setup_docs = ();
1384 sanitise_line_reset
();
1386 foreach my $rawline (@rawlines) {
1390 if ($rawline=~/^\+\+\+\s+(\S+)/) {
1392 if ($1 =~ m
@Documentation/kernel
-parameters
.txt
$@
) {
1397 if ($rawline=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
1406 # Guestimate if this is a continuing comment. Run
1407 # the context looking for a comment "edge". If this
1408 # edge is a close comment then we must be in a comment
1412 for (my $ln = $linenr + 1; $cnt > 0; $ln++) {
1413 next if (defined $rawlines[$ln - 1] &&
1414 $rawlines[$ln - 1] =~ /^-/);
1416 #print "RAW<$rawlines[$ln - 1]>\n";
1417 last if (!defined $rawlines[$ln - 1]);
1418 if ($rawlines[$ln - 1] =~ m@
(/\*|\*/)@
&&
1419 $rawlines[$ln - 1] !~ m@
"[^"]*(?
:/\*|\*/)[^"]*"@
) {
1424 if (defined $edge && $edge eq '*/') {
1428 # Guestimate if this is a continuing comment. If this
1429 # is the start of a diff block and this line starts
1430 # ' *' then it is very likely a comment.
1431 if (!defined $edge &&
1432 $rawlines[$linenr] =~ m@
^.\s
*(?
:\
*\
*+| \
*)(?
:\s
|$)@
)
1437 ##print "COMMENT:$in_comment edge<$edge> $rawline\n";
1438 sanitise_line_reset
($in_comment);
1440 } elsif ($realcnt && $rawline =~ /^(?:\+| |$)/) {
1441 # Standardise the strings and chars within the input to
1442 # simplify matching -- only bother with positive lines.
1443 $line = sanitise_line
($rawline);
1445 push(@lines, $line);
1448 $realcnt-- if ($line =~ /^(?:\+| |$)/);
1453 #print "==>$rawline\n";
1454 #print "-->$line\n";
1456 if ($setup_docs && $line =~ /^\+/) {
1457 push(@setup_docs, $line);
1465 foreach my $line (@lines) {
1468 my $rawline = $rawlines[$linenr - 1];
1470 #extract the line range in the file after the patch is applied
1471 if ($line=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
1473 $first_line = $linenr + 1;
1483 %suppress_ifbraces = ();
1484 %suppress_whiletrailers = ();
1485 %suppress_export = ();
1486 $suppress_statement = 0;
1489 # track the line number as we move through the hunk, note that
1490 # new versions of GNU diff omit the leading space on completely
1491 # blank context lines so we need to count that too.
1492 } elsif ($line =~ /^( |\+|$)/) {
1494 $realcnt-- if ($realcnt != 0);
1496 # Measure the line length and indent.
1497 ($length, $indent) = line_stats
($rawline);
1499 # Track the previous line.
1500 ($prevline, $stashline) = ($stashline, $line);
1501 ($previndent, $stashindent) = ($stashindent, $indent);
1502 ($prevrawline, $stashrawline) = ($stashrawline, $rawline);
1504 #warn "line<$line>\n";
1506 } elsif ($realcnt == 1) {
1510 my $hunk_line = ($realcnt != 0);
1512 #make up the handle for any error we report on this line
1513 $prefix = "$filename:$realline: " if ($emacs && $file);
1514 $prefix = "$filename:$linenr: " if ($emacs && !$file);
1516 $here = "#$linenr: " if (!$file);
1517 $here = "#$realline: " if ($file);
1519 # extract the filename as it passes
1520 if ($line =~ /^diff --git.*?(\S+)$/) {
1522 $realfile =~ s@
^([^/]*)/@@
;
1524 } elsif ($line =~ /^\+\+\+\s+(\S+)/) {
1526 $realfile =~ s@
^([^/]*)/@@
;
1530 if (!$file && $tree && $p1_prefix ne '' &&
1531 -e
"$root/$p1_prefix") {
1532 WARN
("PATCH_PREFIX",
1533 "patch prefix '$p1_prefix' exists, appears to be a -p0 patch\n");
1536 if ($realfile =~ m@
^include
/asm/@
) {
1537 ERROR
("MODIFIED_INCLUDE_ASM",
1538 "do not modify files in include/asm, change architecture specific files in include/asm-<architecture>\n" . "$here$rawline\n");
1543 $here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
1545 my $hereline = "$here\n$rawline\n";
1546 my $herecurr = "$here\n$rawline\n";
1547 my $hereprev = "$here\n$prevrawline\n$rawline\n";
1549 $cnt_lines++ if ($realcnt != 0);
1551 # Check for incorrect file permissions
1552 if ($line =~ /^new (file )?mode.*[7531]\d{0,2}$/) {
1553 my $permhere = $here . "FILE: $realfile\n";
1554 if ($realfile =~ /(Makefile|Kconfig|\.c|\.h|\.S|\.tmpl)$/) {
1555 ERROR
("EXECUTE_PERMISSIONS",
1556 "do not set execute permissions for source files\n" . $permhere);
1560 # Check the patch for a signoff:
1561 if ($line =~ /^\s*signed-off-by:/i) {
1566 # Check signature styles
1567 if (!$in_header_lines &&
1568 $line =~ /^(\s*)($signature_tags)(\s*)(.*)/) {
1569 my $space_before = $1;
1571 my $space_after = $3;
1573 my $ucfirst_sign_off = ucfirst(lc($sign_off));
1575 if (defined $space_before && $space_before ne "") {
1576 WARN
("BAD_SIGN_OFF",
1577 "Do not use whitespace before $ucfirst_sign_off\n" . $herecurr);
1579 if ($sign_off =~ /-by:$/i && $sign_off ne $ucfirst_sign_off) {
1580 WARN
("BAD_SIGN_OFF",
1581 "'$ucfirst_sign_off' is the preferred signature form\n" . $herecurr);
1583 if (!defined $space_after || $space_after ne " ") {
1584 WARN
("BAD_SIGN_OFF",
1585 "Use a single space after $ucfirst_sign_off\n" . $herecurr);
1588 my ($email_name, $email_address, $comment) = parse_email
($email);
1589 my $suggested_email = format_email
(($email_name, $email_address));
1590 if ($suggested_email eq "") {
1591 ERROR
("BAD_SIGN_OFF",
1592 "Unrecognized email address: '$email'\n" . $herecurr);
1594 my $dequoted = $suggested_email;
1595 $dequoted =~ s/^"//;
1596 $dequoted =~ s/" </ </;
1597 # Don't force email to have quotes
1598 # Allow just an angle bracketed address
1599 if ("$dequoted$comment" ne $email &&
1600 "<$email_address>$comment" ne $email &&
1601 "$suggested_email$comment" ne $email) {
1602 WARN
("BAD_SIGN_OFF",
1603 "email address '$email' might be better as '$suggested_email$comment'\n" . $herecurr);
1608 # Check for wrappage within a valid hunk of the file
1609 if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) {
1610 ERROR
("CORRUPTED_PATCH",
1611 "patch seems to be corrupt (line wrapped?)\n" .
1612 $herecurr) if (!$emitted_corrupt++);
1615 # Check for absolute kernel paths.
1617 while ($line =~ m{(?:^|\s)(/\S*)}g) {
1620 if ($file =~ m{^(.*?)(?::\d+)+:?$} &&
1621 check_absolute_file
($1, $herecurr)) {
1624 check_absolute_file
($file, $herecurr);
1629 # UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
1630 if (($realfile =~ /^$/ || $line =~ /^\+/) &&
1631 $rawline !~ m/^$UTF8*$/) {
1632 my ($utf8_prefix) = ($rawline =~ /^($UTF8*)/);
1634 my $blank = copy_spacing
($rawline);
1635 my $ptr = substr($blank, 0, length($utf8_prefix)) . "^";
1636 my $hereptr = "$hereline$ptr\n";
1639 "Invalid UTF-8, patch and commit message should be encoded in UTF-8\n" . $hereptr);
1642 # Check if it's the start of a commit log
1643 # (not a header line and we haven't seen the patch filename)
1644 if ($in_header_lines && $realfile =~ /^$/ &&
1645 $rawline !~ /^(commit\b|from\b|[\w-]+:).+$/i) {
1646 $in_header_lines = 0;
1650 # Still not yet in a patch, check for any UTF-8
1651 if ($in_commit_log && $realfile =~ /^$/ &&
1652 $rawline =~ /$NON_ASCII_UTF8/) {
1653 CHK
("UTF8_BEFORE_PATCH",
1654 "8-bit UTF-8 used in possible commit log\n" . $herecurr);
1657 # ignore non-hunk lines and lines being removed
1658 next if (!$hunk_line || $line =~ /^-/);
1660 #trailing whitespace
1661 if ($line =~ /^\+.*\015/) {
1662 my $herevet = "$here\n" . cat_vet
($rawline) . "\n";
1663 ERROR
("DOS_LINE_ENDINGS",
1664 "DOS line endings\n" . $herevet);
1666 } elsif ($rawline =~ /^\+.*\S\s+$/ || $rawline =~ /^\+\s+$/) {
1667 my $herevet = "$here\n" . cat_vet
($rawline) . "\n";
1668 ERROR
("TRAILING_WHITESPACE",
1669 "trailing whitespace\n" . $herevet);
1673 # check for Kconfig help text having a real description
1674 # Only applies when adding the entry originally, after that we do not have
1675 # sufficient context to determine whether it is indeed long enough.
1676 if ($realfile =~ /Kconfig/ &&
1677 $line =~ /.\s*config\s+/) {
1680 my $ln = $linenr + 1;
1684 for (; $cnt > 0 && defined $lines[$ln - 1]; $ln++) {
1685 $f = $lines[$ln - 1];
1686 $cnt-- if ($lines[$ln - 1] !~ /^-/);
1687 $is_end = $lines[$ln - 1] =~ /^\+/;
1689 next if ($f =~ /^-/);
1691 if ($lines[$ln - 1] =~ /.\s*(?:bool|tristate)\s*\"/) {
1693 } elsif ($lines[$ln - 1] =~ /.\s*(?:---)?help(?:---)?$/) {
1700 next if ($f =~ /^$/);
1701 if ($f =~ /^\s*config\s/) {
1707 WARN
("CONFIG_DESCRIPTION",
1708 "please write a paragraph that describes the config symbol fully\n" . $herecurr) if ($is_start && $is_end && $length < 4);
1709 #print "is_start<$is_start> is_end<$is_end> length<$length>\n";
1712 if (($realfile =~ /Makefile.*/ || $realfile =~ /Kbuild.*/) &&
1713 ($line =~ /\+(EXTRA_[A-Z]+FLAGS).*/)) {
1716 'EXTRA_AFLAGS' => 'asflags-y',
1717 'EXTRA_CFLAGS' => 'ccflags-y',
1718 'EXTRA_CPPFLAGS' => 'cppflags-y',
1719 'EXTRA_LDFLAGS' => 'ldflags-y',
1722 WARN
("DEPRECATED_VARIABLE",
1723 "Use of $flag is deprecated, please use \`$replacement->{$flag} instead.\n" . $herecurr) if ($replacement->{$flag});
1726 # check we are in a valid source file if not then ignore this hunk
1727 next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/);
1730 if ($line =~ /^\+/ && $prevrawline !~ /\/\
*\
*/ &&
1731 $rawline !~ /^.\s*\*\s*\@$Ident\s/ &&
1732 !($line =~ /^\+\s*$logFunctions\s*\(\s*(?:(KERN_\S+\s*|[^"]*))?"[X\t]*"\s*(?:|,|\)\s*;)\s*$/ ||
1733 $line =~ /^\+\s*"[^"]*"\s*(?:\s*|,|\)\s*;)\s*$/) &&
1737 "line over 80 characters\n" . $herecurr);
1740 # check for spaces before a quoted newline
1741 if ($rawline =~ /^.*\".*\s\\n/) {
1742 WARN
("QUOTED_WHITESPACE_BEFORE_NEWLINE",
1743 "unnecessary whitespace before a quoted newline\n" . $herecurr);
1746 # check for adding lines without a newline.
1747 if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
1748 WARN
("MISSING_EOF_NEWLINE",
1749 "adding a line without newline at end of file\n" . $herecurr);
1752 # Blackfin: use hi/lo macros
1753 if ($realfile =~ m
@arch/blackfin/.*\
.S
$@
) {
1754 if ($line =~ /\.[lL][[:space:]]*=.*&[[:space:]]*0x[fF][fF][fF][fF]/) {
1755 my $herevet = "$here\n" . cat_vet
($line) . "\n";
1757 "use the LO() macro, not (... & 0xFFFF)\n" . $herevet);
1759 if ($line =~ /\.[hH][[:space:]]*=.*>>[[:space:]]*16/) {
1760 my $herevet = "$here\n" . cat_vet
($line) . "\n";
1762 "use the HI() macro, not (... >> 16)\n" . $herevet);
1766 # check we are in a valid source file C or perl if not then ignore this hunk
1767 next if ($realfile !~ /\.(h|c|pl)$/);
1769 # at the beginning of a line any tabs must come first and anything
1770 # more than 8 must use tabs.
1771 if ($rawline =~ /^\+\s* \t\s*\S/ ||
1772 $rawline =~ /^\+\s* \s*/) {
1773 my $herevet = "$here\n" . cat_vet
($rawline) . "\n";
1774 ERROR
("CODE_INDENT",
1775 "code indent should use tabs where possible\n" . $herevet);
1779 # check for space before tabs.
1780 if ($rawline =~ /^\+/ && $rawline =~ / \t/) {
1781 my $herevet = "$here\n" . cat_vet
($rawline) . "\n";
1782 WARN
("SPACE_BEFORE_TAB",
1783 "please, no space before tabs\n" . $herevet);
1786 # check for spaces at the beginning of a line.
1788 # 1) within comments
1789 # 2) indented preprocessor commands
1791 if ($rawline =~ /^\+ / && $line !~ /\+ *(?:$;|#|$Ident:)/) {
1792 my $herevet = "$here\n" . cat_vet
($rawline) . "\n";
1793 WARN
("LEADING_SPACE",
1794 "please, no spaces at the start of a line\n" . $herevet);
1797 # check we are in a valid C source file if not then ignore this hunk
1798 next if ($realfile !~ /\.(h|c)$/);
1800 # check for RCS/CVS revision markers
1801 if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) {
1803 "CVS style keyword markers, these will _not_ be updated\n". $herecurr);
1806 # Blackfin: don't use __builtin_bfin_[cs]sync
1807 if ($line =~ /__builtin_bfin_csync/) {
1808 my $herevet = "$here\n" . cat_vet
($line) . "\n";
1810 "use the CSYNC() macro in asm/blackfin.h\n" . $herevet);
1812 if ($line =~ /__builtin_bfin_ssync/) {
1813 my $herevet = "$here\n" . cat_vet
($line) . "\n";
1815 "use the SSYNC() macro in asm/blackfin.h\n" . $herevet);
1818 # Check for potential 'bare' types
1819 my ($stat, $cond, $line_nr_next, $remain_next, $off_next,
1821 #print "LINE<$line>\n";
1822 if ($linenr >= $suppress_statement &&
1823 $realcnt && $line =~ /.\s*\S/) {
1824 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
1825 ctx_statement_block
($linenr, $realcnt, 0);
1826 $stat =~ s/\n./\n /g;
1827 $cond =~ s/\n./\n /g;
1829 #print "linenr<$linenr> <$stat>\n";
1830 # If this statement has no statement boundaries within
1831 # it there is no point in retrying a statement scan
1832 # until we hit end of it.
1833 my $frag = $stat; $frag =~ s/;+\s*$//;
1834 if ($frag !~ /(?:{|;)/) {
1835 #print "skip<$line_nr_next>\n";
1836 $suppress_statement = $line_nr_next;
1839 # Find the real next line.
1840 $realline_next = $line_nr_next;
1841 if (defined $realline_next &&
1842 (!defined $lines[$realline_next - 1] ||
1843 substr($lines[$realline_next - 1], $off_next) =~ /^\s*$/)) {
1850 # Ignore goto labels.
1851 if ($s =~ /$Ident:\*$/s) {
1853 # Ignore functions being called
1854 } elsif ($s =~ /^.\s*$Ident\s*\(/s) {
1856 } elsif ($s =~ /^.\s*else\b/s) {
1858 # declarations always start with types
1859 } 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) {
1862 possible
($type, "A:" . $s);
1864 # definitions in global scope can only start with types
1865 } elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b\s*(?!:)/s) {
1866 possible
($1, "B:" . $s);
1869 # any (foo ... *) is a pointer cast, and foo is a type
1870 while ($s =~ /\(($Ident)(?:\s+$Sparse)*[\s\*]+\s*\)/sg) {
1871 possible
($1, "C:" . $s);
1874 # Check for any sort of function declaration.
1875 # int foo(something bar, other baz);
1876 # void (*store_gdt)(x86_descr_ptr *);
1877 if ($prev_values eq 'E' && $s =~ /^(.(?:typedef\s*)?(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*(?:\b$Ident|\(\*\s*$Ident\))\s*)\(/s) {
1878 my ($name_len) = length($1);
1881 substr($ctx, 0, $name_len + 1, '');
1882 $ctx =~ s/\)[^\)]*$//;
1884 for my $arg (split(/\s*,\s*/, $ctx)) {
1885 if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$/s) {
1887 possible
($1, "D:" . $s);
1895 # Checks which may be anchored in the context.
1898 # Check for switch () and associated case and default
1899 # statements should be at the same indent.
1900 if ($line=~/\bswitch\s*\(.*\)/) {
1903 my @ctx = ctx_block_outer
($linenr, $realcnt);
1905 for my $ctx (@ctx) {
1906 my ($clen, $cindent) = line_stats
($ctx);
1907 if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
1908 $indent != $cindent) {
1909 $err .= "$sep$ctx\n";
1916 ERROR
("SWITCH_CASE_INDENT_LEVEL",
1917 "switch and case should be at the same indent\n$hereline$err");
1921 # if/while/etc brace do not go on next line, unless defining a do while loop,
1922 # or if that brace on the next line is for something else
1923 if ($line =~ /(.*)\b((?:if|while|for|switch)\s*\(|do\b|else\b)/ && $line !~ /^.\s*\#/) {
1924 my $pre_ctx = "$1$2";
1926 my ($level, @ctx) = ctx_statement_level
($linenr, $realcnt, 0);
1928 if ($line =~ /^\+\t{6,}/) {
1929 WARN
("DEEP_INDENTATION",
1930 "Too many leading tabs - consider code refactoring\n" . $herecurr);
1933 my $ctx_cnt = $realcnt - $#ctx - 1;
1934 my $ctx = join("\n", @ctx);
1936 my $ctx_ln = $linenr;
1937 my $ctx_skip = $realcnt;
1939 while ($ctx_skip > $ctx_cnt || ($ctx_skip == $ctx_cnt &&
1940 defined $lines[$ctx_ln - 1] &&
1941 $lines[$ctx_ln - 1] =~ /^-/)) {
1942 ##print "SKIP<$ctx_skip> CNT<$ctx_cnt>\n";
1943 $ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/);
1947 #print "realcnt<$realcnt> ctx_cnt<$ctx_cnt>\n";
1948 #print "pre<$pre_ctx>\nline<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>\n";
1950 if ($ctx !~ /{\s*/ && defined($lines[$ctx_ln -1]) && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
1952 "that open brace { should be on the previous line\n" .
1953 "$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
1955 if ($level == 0 && $pre_ctx !~ /}\s*while\s*\($/ &&
1956 $ctx =~ /\)\s*\;\s*$/ &&
1957 defined $lines[$ctx_ln - 1])
1959 my ($nlength, $nindent) = line_stats
($lines[$ctx_ln - 1]);
1960 if ($nindent > $indent) {
1961 WARN
("TRAILING_SEMICOLON",
1962 "trailing semicolon indicates no statements, indent implies otherwise\n" .
1963 "$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
1968 # Check relative indent for conditionals and blocks.
1969 if ($line =~ /\b(?:(?:if|while|for)\s*\(|do\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) {
1970 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
1971 ctx_statement_block
($linenr, $realcnt, 0)
1972 if (!defined $stat);
1973 my ($s, $c) = ($stat, $cond);
1975 substr($s, 0, length($c), '');
1977 # Make sure we remove the line prefixes as we have
1978 # none on the first line, and are going to readd them
1982 # Find out how long the conditional actually is.
1983 my @newlines = ($c =~ /\n/gs);
1984 my $cond_lines = 1 + $#newlines;
1986 # We want to check the first line inside the block
1987 # starting at the end of the conditional, so remove:
1988 # 1) any blank line termination
1989 # 2) any opening brace { on end of the line
1991 my $continuation = 0;
1993 $s =~ s/^.*\bdo\b//;
1995 if ($s =~ s/^\s*\\//) {
1998 if ($s =~ s/^\s*?\n//) {
2003 # Also ignore a loop construct at the end of a
2004 # preprocessor statement.
2005 if (($prevline =~ /^.\s*#\s*define\s/ ||
2006 $prevline =~ /\\\s*$/) && $continuation == 0) {
2012 while ($cond_ptr != $cond_lines) {
2013 $cond_ptr = $cond_lines;
2015 # If we see an #else/#elif then the code
2017 if ($s =~ /^\s*\#\s*(?:else|elif)/) {
2022 # 1) blank lines, they should be at 0,
2023 # 2) preprocessor lines, and
2025 if ($continuation ||
2027 $s =~ /^\s*#\s*?/ ||
2028 $s =~ /^\s*$Ident\s*:/) {
2029 $continuation = ($s =~ /^.*?\\\n/) ?
1 : 0;
2030 if ($s =~ s/^.*?\n//) {
2036 my (undef, $sindent) = line_stats
("+" . $s);
2037 my $stat_real = raw_line
($linenr, $cond_lines);
2039 # Check if either of these lines are modified, else
2040 # this is not this patch's fault.
2041 if (!defined($stat_real) ||
2042 $stat !~ /^\+/ && $stat_real !~ /^\+/) {
2045 if (defined($stat_real) && $cond_lines > 1) {
2046 $stat_real = "[...]\n$stat_real";
2049 #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";
2051 if ($check && (($sindent % 8) != 0 ||
2052 ($sindent <= $indent && $s ne ''))) {
2053 WARN
("SUSPECT_CODE_INDENT",
2054 "suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n");
2058 # Track the 'values' across context and added lines.
2059 my $opline = $line; $opline =~ s/^./ /;
2060 my ($curr_values, $curr_vars) =
2061 annotate_values
($opline . "\n", $prev_values);
2062 $curr_values = $prev_values . $curr_values;
2064 my $outline = $opline; $outline =~ s/\t/ /g;
2065 print "$linenr > .$outline\n";
2066 print "$linenr > $curr_values\n";
2067 print "$linenr > $curr_vars\n";
2069 $prev_values = substr($curr_values, -1);
2071 #ignore lines not being added
2072 if ($line=~/^[^\+]/) {next;}
2074 # TEST: allow direct testing of the type matcher.
2076 if ($line =~ /^.\s*$Declare\s*$/) {
2078 "TEST: is type\n" . $herecurr);
2079 } elsif ($dbg_type > 1 && $line =~ /^.+($Declare)/) {
2080 ERROR
("TEST_NOT_TYPE",
2081 "TEST: is not type ($1 is)\n". $herecurr);
2085 # TEST: allow direct testing of the attribute matcher.
2087 if ($line =~ /^.\s*$Modifier\s*$/) {
2089 "TEST: is attr\n" . $herecurr);
2090 } elsif ($dbg_attr > 1 && $line =~ /^.+($Modifier)/) {
2091 ERROR
("TEST_NOT_ATTR",
2092 "TEST: is not attr ($1 is)\n". $herecurr);
2097 # check for initialisation to aggregates open brace on the next line
2098 if ($line =~ /^.\s*{/ &&
2099 $prevline =~ /(?:^|[^=])=\s*$/) {
2101 "that open brace { should be on the previous line\n" . $hereprev);
2105 # Checks which are anchored on the added line.
2108 # check for malformed paths in #include statements (uses RAW line)
2109 if ($rawline =~ m{^.\s*\#\s*include\s+[<"](.*)[">]}) {
2111 if ($path =~ m{//}) {
2112 ERROR
("MALFORMED_INCLUDE",
2113 "malformed #include filename\n" .
2118 # no C99 // comments
2119 if ($line =~ m{//}) {
2120 ERROR
("C99_COMMENTS",
2121 "do not use C99 // comments\n" . $herecurr);
2123 # Remove C99 comments.
2125 $opline =~ s@
//.*@@
;
2127 # EXPORT_SYMBOL should immediately follow the thing it is exporting, consider
2128 # the whole statement.
2129 #print "APW <$lines[$realline_next - 1]>\n";
2130 if (defined $realline_next &&
2131 exists $lines[$realline_next - 1] &&
2132 !defined $suppress_export{$realline_next} &&
2133 ($lines[$realline_next - 1] =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
2134 $lines[$realline_next - 1] =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
2135 # Handle definitions which produce identifiers with
2138 # EXPORT_SYMBOL(something_foo);
2140 if ($stat =~ /^(?:.\s*}\s*\n)?.([A-Z_]+)\s*\(\s*($Ident)/ &&
2141 $name =~ /^${Ident}_$2/) {
2142 #print "FOO C name<$name>\n";
2143 $suppress_export{$realline_next} = 1;
2145 } elsif ($stat !~ /(?
:
2147 ^.DEFINE_
$Ident\
(\Q
$name\E\
)|
2148 ^.DECLARE_
$Ident\
(\Q
$name\E\
)|
2149 ^.LIST_HEAD\
(\Q
$name\E\
)|
2150 ^.(?
:$Storage\s
+)?
$Type\s
*\
(\s
*\
*\s
*\Q
$name\E\s
*\
)\s
*\
(|
2151 \b\Q
$name\E
(?
:\s
+$Attribute)*\s
*(?
:;|=|\
[|\
()
2153 #print "FOO A<$lines[$realline_next - 1]> stat<$stat> name<$name>\n";
2154 $suppress_export{$realline_next} = 2;
2156 $suppress_export{$realline_next} = 1;
2159 if (!defined $suppress_export{$linenr} &&
2160 $prevline =~ /^.\s*$/ &&
2161 ($line =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
2162 $line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
2163 #print "FOO B <$lines[$linenr - 1]>\n";
2164 $suppress_export{$linenr} = 2;
2166 if (defined $suppress_export{$linenr} &&
2167 $suppress_export{$linenr} == 2) {
2168 WARN
("EXPORT_SYMBOL",
2169 "EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
2172 # check for global initialisers.
2173 if ($line =~ /^.$Type\s*$Ident\s*(?:\s+$Modifier)*\s*=\s*(0|NULL|false)\s*;/) {
2174 ERROR
("GLOBAL_INITIALISERS",
2175 "do not initialise globals to 0 or NULL\n" .
2178 # check for static initialisers.
2179 if ($line =~ /\bstatic\s.*=\s*(0|NULL|false)\s*;/) {
2180 ERROR
("INITIALISED_STATIC",
2181 "do not initialise statics to 0 or NULL\n" .
2185 # check for static const char * arrays.
2186 if ($line =~ /\bstatic\s+const\s+char\s*\*\s*(\w+)\s*\[\s*\]\s*=\s*/) {
2187 WARN
("STATIC_CONST_CHAR_ARRAY",
2188 "static const char * array should probably be static const char * const\n" .
2192 # check for static char foo[] = "bar" declarations.
2193 if ($line =~ /\bstatic\s+char\s+(\w+)\s*\[\s*\]\s*=\s*"/) {
2194 WARN
("STATIC_CONST_CHAR_ARRAY",
2195 "static char array declaration should probably be static const char\n" .
2199 # check for declarations of struct pci_device_id
2200 if ($line =~ /\bstruct\s+pci_device_id\s+\w+\s*\[\s*\]\s*\=\s*\{/) {
2201 WARN
("DEFINE_PCI_DEVICE_TABLE",
2202 "Use DEFINE_PCI_DEVICE_TABLE for struct pci_device_id\n" . $herecurr);
2205 # check for new typedefs, only function parameters and sparse annotations
2207 if ($line =~ /\btypedef\s/ &&
2208 $line !~ /\btypedef\s+$Type\s*\(\s*\*?$Ident\s*\)\s*\(/ &&
2209 $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ &&
2210 $line !~ /\b$typeTypedefs\b/ &&
2211 $line !~ /\b__bitwise(?:__|)\b/) {
2212 WARN
("NEW_TYPEDEFS",
2213 "do not add new typedefs\n" . $herecurr);
2216 # * goes on variable not on type
2218 while ($line =~ m{(\($NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)\))}g) {
2220 my ($from, $to) = ($2, $2);
2222 # Should start with a space.
2223 $to =~ s/^(\S)/ $1/;
2224 # Should not end with a space.
2226 # '*'s should not have spaces between.
2227 while ($to =~ s/\*\s+\*/\*\*/) {
2230 #print "from<$from> to<$to>\n";
2232 ERROR
("POINTER_LOCATION",
2233 "\"(foo$from)\" should be \"(foo$to)\"\n" . $herecurr);
2236 while ($line =~ m{(\b$NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)($Ident))}g) {
2238 my ($from, $to, $ident) = ($2, $2, $3);
2240 # Should start with a space.
2241 $to =~ s/^(\S)/ $1/;
2242 # Should not end with a space.
2244 # '*'s should not have spaces between.
2245 while ($to =~ s/\*\s+\*/\*\*/) {
2247 # Modifiers should have spaces.
2248 $to =~ s/(\b$Modifier$)/$1 /;
2250 #print "from<$from> to<$to> ident<$ident>\n";
2251 if ($from ne $to && $ident !~ /^$Modifier$/) {
2252 ERROR
("POINTER_LOCATION",
2253 "\"foo${from}bar\" should be \"foo${to}bar\"\n" . $herecurr);
2257 # # no BUG() or BUG_ON()
2258 # if ($line =~ /\b(BUG|BUG_ON)\b/) {
2259 # print "Try to use WARN_ON & Recovery code rather than BUG() or BUG_ON()\n";
2260 # print "$herecurr";
2264 if ($line =~ /\bLINUX_VERSION_CODE\b/) {
2265 WARN
("LINUX_VERSION_CODE",
2266 "LINUX_VERSION_CODE should be avoided, code should be for the version to which it is merged\n" . $herecurr);
2269 # check for uses of printk_ratelimit
2270 if ($line =~ /\bprintk_ratelimit\s*\(/) {
2271 WARN
("PRINTK_RATELIMITED",
2272 "Prefer printk_ratelimited or pr_<level>_ratelimited to printk_ratelimit\n" . $herecurr);
2275 # printk should use KERN_* levels. Note that follow on printk's on the
2276 # same line do not need a level, so we use the current block context
2277 # to try and find and validate the current printk. In summary the current
2278 # printk includes all preceding printk's which have no newline on the end.
2279 # we assume the first bad printk is the one to report.
2280 if ($line =~ /\bprintk\((?!KERN_)\s*"/) {
2282 for (my $ln = $linenr - 1; $ln >= $first_line; $ln--) {
2283 #print "CHECK<$lines[$ln - 1]\n";
2284 # we have a preceding printk if it ends
2285 # with "\n" ignore it, else it is to blame
2286 if ($lines[$ln - 1] =~ m{\bprintk\(}) {
2287 if ($rawlines[$ln - 1] !~ m{\\n"}) {
2294 WARN
("PRINTK_WITHOUT_KERN_LEVEL",
2295 "printk() should include KERN_ facility level\n" . $herecurr);
2299 # function brace can't be on same line, except for #defines of do while,
2300 # or if closed on same line
2301 if (($line=~/$Type\s*$Ident\(.*\).*\s{/) and
2302 !($line=~/\#\s*define.*do\s{/) and !($line=~/}/)) {
2304 "open brace '{' following function declarations go on the next line\n" . $herecurr);
2307 # open braces for enum, union and struct go on the same line.
2308 if ($line =~ /^.\s*{/ &&
2309 $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
2311 "open brace '{' following $1 go on the same line\n" . $hereprev);
2314 # missing space after union, struct or enum definition
2315 if ($line =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?(?:\s+$Ident)?[=\{]/) {
2317 "missing space after $1 definition\n" . $herecurr);
2320 # check for spacing round square brackets; allowed:
2321 # 1. with a type on the left -- int [] a;
2322 # 2. at the beginning of a line for slice initialisers -- [0...10] = 5,
2323 # 3. inside a curly brace -- = { [0...10] = 5 }
2324 while ($line =~ /(.*?\s)\[/g) {
2325 my ($where, $prefix) = ($-[1], $1);
2326 if ($prefix !~ /$Type\s+$/ &&
2327 ($where != 0 || $prefix !~ /^.\s+$/) &&
2328 $prefix !~ /{\s+$/) {
2329 ERROR
("BRACKET_SPACE",
2330 "space prohibited before open square bracket '['\n" . $herecurr);
2334 # check for spaces between functions and their parentheses.
2335 while ($line =~ /($Ident)\s+\(/g) {
2337 my $ctx_before = substr($line, 0, $-[1]);
2338 my $ctx = "$ctx_before$name";
2340 # Ignore those directives where spaces _are_ permitted.
2342 if|for|while|switch
|return|case
|
2343 volatile
|__volatile__
|
2344 __attribute__
|format
|__extension__
|
2348 # cpp #define statements have non-optional spaces, ie
2349 # if there is a space between the name and the open
2350 # parenthesis it is simply not a parameter group.
2351 } elsif ($ctx_before =~ /^.\s*\#\s*define\s*$/) {
2353 # cpp #elif statement condition may start with a (
2354 } elsif ($ctx =~ /^.\s*\#\s*elif\s*$/) {
2356 # If this whole things ends with a type its most
2357 # likely a typedef for a function.
2358 } elsif ($ctx =~ /$Type$/) {
2362 "space prohibited between function name and open parenthesis '('\n" . $herecurr);
2365 # Check operator spacing.
2366 if (!($line=~/\#\s*include/)) {
2368 <<=|>>=|<=|>=|==|!=|
2369 \
+=|-=|\
*=|\
/=|%=|\
^=|\
|=|&=|
2370 =>|->|<<|>>|<|>|=|!|~|
2371 &&|\
|\
||,|\
^|\
+\
+|--|&|\
||\
+|-|\
*|\
/|%|
2374 my @elements = split(/($ops|;)/, $opline);
2377 my $blank = copy_spacing
($opline);
2379 for (my $n = 0; $n < $#elements; $n += 2) {
2380 $off += length($elements[$n]);
2382 # Pick up the preceding and succeeding characters.
2383 my $ca = substr($opline, 0, $off);
2385 if (length($opline) >= ($off + length($elements[$n + 1]))) {
2386 $cc = substr($opline, $off + length($elements[$n + 1]));
2388 my $cb = "$ca$;$cc";
2391 $a = 'V' if ($elements[$n] ne '');
2392 $a = 'W' if ($elements[$n] =~ /\s$/);
2393 $a = 'C' if ($elements[$n] =~ /$;$/);
2394 $a = 'B' if ($elements[$n] =~ /(\[|\()$/);
2395 $a = 'O' if ($elements[$n] eq '');
2396 $a = 'E' if ($ca =~ /^\s*$/);
2398 my $op = $elements[$n + 1];
2401 if (defined $elements[$n + 2]) {
2402 $c = 'V' if ($elements[$n + 2] ne '');
2403 $c = 'W' if ($elements[$n + 2] =~ /^\s/);
2404 $c = 'C' if ($elements[$n + 2] =~ /^$;/);
2405 $c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
2406 $c = 'O' if ($elements[$n + 2] eq '');
2407 $c = 'E' if ($elements[$n + 2] =~ /^\s*\\$/);
2412 my $ctx = "${a}x${c}";
2414 my $at = "(ctx:$ctx)";
2416 my $ptr = substr($blank, 0, $off) . "^";
2417 my $hereptr = "$hereline$ptr\n";
2419 # Pull out the value of this operator.
2420 my $op_type = substr($curr_values, $off + 1, 1);
2422 # Get the full operator variant.
2423 my $opv = $op . substr($curr_vars, $off, 1);
2425 # Ignore operators passed as parameters.
2426 if ($op_type ne 'V' &&
2427 $ca =~ /\s$/ && $cc =~ /^\s*,/) {
2430 # } elsif ($op =~ /^$;+$/) {
2432 # ; should have either the end of line or a space or \ after it
2433 } elsif ($op eq ';') {
2434 if ($ctx !~ /.x[WEBC]/ &&
2435 $cc !~ /^\\/ && $cc !~ /^;/) {
2437 "space required after that '$op' $at\n" . $hereptr);
2441 } elsif ($op eq '//') {
2445 # : when part of a bitfield
2446 } elsif ($op eq '->' || $opv eq ':B') {
2447 if ($ctx =~ /Wx.|.xW/) {
2449 "spaces prohibited around that '$op' $at\n" . $hereptr);
2452 # , must have a space on the right.
2453 } elsif ($op eq ',') {
2454 if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) {
2456 "space required after that '$op' $at\n" . $hereptr);
2459 # '*' as part of a type definition -- reported already.
2460 } elsif ($opv eq '*_') {
2461 #warn "'*' is part of type\n";
2463 # unary operators should have a space before and
2464 # none after. May be left adjacent to another
2465 # unary operator, or a cast
2466 } elsif ($op eq '!' || $op eq '~' ||
2467 $opv eq '*U' || $opv eq '-U' ||
2468 $opv eq '&U' || $opv eq '&&U') {
2469 if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
2471 "space required before that '$op' $at\n" . $hereptr);
2473 if ($op eq '*' && $cc =~/\s*$Modifier\b/) {
2474 # A unary '*' may be const
2476 } elsif ($ctx =~ /.xW/) {
2478 "space prohibited after that '$op' $at\n" . $hereptr);
2481 # unary ++ and unary -- are allowed no space on one side.
2482 } elsif ($op eq '++' or $op eq '--') {
2483 if ($ctx !~ /[WEOBC]x[^W]/ && $ctx !~ /[^W]x[WOBEC]/) {
2485 "space required one side of that '$op' $at\n" . $hereptr);
2487 if ($ctx =~ /Wx[BE]/ ||
2488 ($ctx =~ /Wx./ && $cc =~ /^;/)) {
2490 "space prohibited before that '$op' $at\n" . $hereptr);
2492 if ($ctx =~ /ExW/) {
2494 "space prohibited after that '$op' $at\n" . $hereptr);
2498 # << and >> may either have or not have spaces both sides
2499 } elsif ($op eq '<<' or $op eq '>>' or
2500 $op eq '&' or $op eq '^' or $op eq '|' or
2501 $op eq '+' or $op eq '-' or
2502 $op eq '*' or $op eq '/' or
2505 if ($ctx =~ /Wx[^WCE]|[^WCE]xW/) {
2507 "need consistent spacing around '$op' $at\n" .
2511 # A colon needs no spaces before when it is
2512 # terminating a case value or a label.
2513 } elsif ($opv eq ':C' || $opv eq ':L') {
2514 if ($ctx =~ /Wx./) {
2516 "space prohibited before that '$op' $at\n" . $hereptr);
2519 # All the others need spaces both sides.
2520 } elsif ($ctx !~ /[EWC]x[CWE]/) {
2523 # Ignore email addresses <foo@bar>
2525 $cc =~ /^\S+\@\S+>/) ||
2527 $ca =~ /<\S+\@\S+$/))
2533 if (($opv eq ':O' && $ca =~ /\?$/) ||
2534 ($op eq '?' && $cc =~ /^:/)) {
2540 "spaces required around that '$op' $at\n" . $hereptr);
2543 $off += length($elements[$n + 1]);
2547 # check for multiple assignments
2548 if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
2549 CHK
("MULTIPLE_ASSIGNMENTS",
2550 "multiple assignments should be avoided\n" . $herecurr);
2553 ## # check for multiple declarations, allowing for a function declaration
2555 ## if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
2556 ## $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
2558 ## # Remove any bracketed sections to ensure we do not
2559 ## # falsly report the parameters of functions.
2561 ## while ($ln =~ s/\([^\(\)]*\)//g) {
2563 ## if ($ln =~ /,/) {
2564 ## WARN("MULTIPLE_DECLARATION",
2565 ## "declaring multiple variables together should be avoided\n" . $herecurr);
2569 #need space before brace following if, while, etc
2570 if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) ||
2573 "space required before the open brace '{'\n" . $herecurr);
2576 # closing brace should have a space following it when it has anything
2578 if ($line =~ /}(?!(?:,|;|\)))\S/) {
2580 "space required after that close brace '}'\n" . $herecurr);
2583 # check spacing on square brackets
2584 if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
2586 "space prohibited after that open square bracket '['\n" . $herecurr);
2588 if ($line =~ /\s\]/) {
2590 "space prohibited before that close square bracket ']'\n" . $herecurr);
2593 # check spacing on parentheses
2594 if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
2595 $line !~ /for\s*\(\s+;/) {
2597 "space prohibited after that open parenthesis '('\n" . $herecurr);
2599 if ($line =~ /(\s+)\)/ && $line !~ /^.\s*\)/ &&
2600 $line !~ /for\s*\(.*;\s+\)/ &&
2601 $line !~ /:\s+\)/) {
2603 "space prohibited before that close parenthesis ')'\n" . $herecurr);
2606 #goto labels aren't indented, allow a single space however
2607 if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
2608 !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
2609 WARN
("INDENTED_LABEL",
2610 "labels should not be indented\n" . $herecurr);
2613 # Return is not a function.
2614 if (defined($stat) && $stat =~ /^.\s*return(\s*)(\(.*);/s) {
2618 # Flatten any parentheses
2619 $value =~ s/\(/ \(/g;
2620 $value =~ s/\)/\) /g;
2621 while ($value =~ s/\[[^\[\]]*\]/1/ ||
2622 $value !~ /(?
:$Ident|-?
$Constant)\s
*
2624 (?
:$Ident|-?
$Constant)/x
&&
2625 $value =~ s/\([^\(\)]*\)/1/) {
2627 #print "value<$value>\n";
2628 if ($value =~ /^\s*(?:$Ident|-?$Constant)\s*$/) {
2629 ERROR
("RETURN_PARENTHESES",
2630 "return is not a function, parentheses are not required\n" . $herecurr);
2632 } elsif ($spacing !~ /\s+/) {
2634 "space required before the open parenthesis '('\n" . $herecurr);
2637 # Return of what appears to be an errno should normally be -'ve
2638 if ($line =~ /^.\s*return\s*(E[A-Z]*)\s*;/) {
2640 if ($name ne 'EOF' && $name ne 'ERROR') {
2641 WARN
("USE_NEGATIVE_ERRNO",
2642 "return of an errno should typically be -ve (return -$1)\n" . $herecurr);
2646 # Need a space before open parenthesis after if, while etc
2647 if ($line=~/\b(if|while|for|switch)\(/) {
2648 ERROR
("SPACING", "space required before the open parenthesis '('\n" . $herecurr);
2651 # Check for illegal assignment in if conditional -- and check for trailing
2652 # statements after the conditional.
2653 if ($line =~ /do\s*(?!{)/) {
2654 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
2655 ctx_statement_block
($linenr, $realcnt, 0)
2656 if (!defined $stat);
2657 my ($stat_next) = ctx_statement_block
($line_nr_next,
2658 $remain_next, $off_next);
2659 $stat_next =~ s/\n./\n /g;
2660 ##print "stat<$stat> stat_next<$stat_next>\n";
2662 if ($stat_next =~ /^\s*while\b/) {
2663 # If the statement carries leading newlines,
2664 # then count those as offsets.
2666 ($stat_next =~ /^((?:\s*\n[+-])*\s*)/s);
2668 statement_rawlines
($whitespace) - 1;
2670 $suppress_whiletrailers{$line_nr_next +
2674 if (!defined $suppress_whiletrailers{$linenr} &&
2675 $line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) {
2676 my ($s, $c) = ($stat, $cond);
2678 if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/s) {
2679 ERROR
("ASSIGN_IN_IF",
2680 "do not use assignment in if condition\n" . $herecurr);
2683 # Find out what is on the end of the line after the
2685 substr($s, 0, length($c), '');
2687 $s =~ s/$;//g; # Remove any comments
2688 if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ &&
2689 $c !~ /}\s*while\s*/)
2691 # Find out how long the conditional actually is.
2692 my @newlines = ($c =~ /\n/gs);
2693 my $cond_lines = 1 + $#newlines;
2696 $stat_real = raw_line
($linenr, $cond_lines)
2697 . "\n" if ($cond_lines);
2698 if (defined($stat_real) && $cond_lines > 1) {
2699 $stat_real = "[...]\n$stat_real";
2702 ERROR
("TRAILING_STATEMENTS",
2703 "trailing statements should be on next line\n" . $herecurr . $stat_real);
2707 # Check for bitwise tests written as boolean
2719 WARN
("HEXADECIMAL_BOOLEAN_TEST",
2720 "boolean test with hexadecimal, perhaps just 1 \& or \|?\n" . $herecurr);
2723 # if and else should not have general statements after it
2724 if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/) {
2726 $s =~ s/$;//g; # Remove any comments
2727 if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) {
2728 ERROR
("TRAILING_STATEMENTS",
2729 "trailing statements should be on next line\n" . $herecurr);
2732 # if should not continue a brace
2733 if ($line =~ /}\s*if\b/) {
2734 ERROR
("TRAILING_STATEMENTS",
2735 "trailing statements should be on next line\n" .
2738 # case and default should not have general statements after them
2739 if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
2741 (?
:\s
*$;*)(?
:\s
*{)?
(?
:\s
*$;*)(?
:\s
*\\)?\s
*$|
2745 ERROR
("TRAILING_STATEMENTS",
2746 "trailing statements should be on next line\n" . $herecurr);
2749 # Check for }<nl>else {, these must be at the same
2750 # indent level to be relevant to each other.
2751 if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ and
2752 $previndent == $indent) {
2753 ERROR
("ELSE_AFTER_BRACE",
2754 "else should follow close brace '}'\n" . $hereprev);
2757 if ($prevline=~/}\s*$/ and $line=~/^.\s*while\s*/ and
2758 $previndent == $indent) {
2759 my ($s, $c) = ctx_statement_block
($linenr, $realcnt, 0);
2761 # Find out what is on the end of the line after the
2763 substr($s, 0, length($c), '');
2766 if ($s =~ /^\s*;/) {
2767 ERROR
("WHILE_AFTER_BRACE",
2768 "while should follow close brace '}'\n" . $hereprev);
2772 #studly caps, commented out until figure out how to distinguish between use of existing and adding new
2773 # if (($line=~/[\w_][a-z\d]+[A-Z]/) and !($line=~/print/)) {
2774 # print "No studly caps, use _\n";
2775 # print "$herecurr";
2779 #no spaces allowed after \ in define
2780 if ($line=~/\#\s*define.*\\\s$/) {
2781 WARN
("WHITESPACE_AFTER_LINE_CONTINUATION",
2782 "Whitepspace after \\ makes next lines useless\n" . $herecurr);
2785 #warn if <asm/foo.h> is #included and <linux/foo.h> is available (uses RAW line)
2786 if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) {
2788 my $checkfile = "include/linux/$file";
2789 if (-f
"$root/$checkfile" &&
2790 $realfile ne $checkfile &&
2791 $1 !~ /$allowed_asm_includes/)
2793 if ($realfile =~ m{^arch/}) {
2794 CHK
("ARCH_INCLUDE_LINUX",
2795 "Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
2797 WARN
("INCLUDE_LINUX",
2798 "Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
2803 # multi-statement macros should be enclosed in a do while loop, grab the
2804 # first statement and ensure its the whole macro if its not enclosed
2805 # in a known good container
2806 if ($realfile !~ m@
/vmlinux
.lds
.h
$@
&&
2807 $line =~ /^.\s*\#\s*define\s*$Ident(\()?/) {
2810 my ($off, $dstat, $dcond, $rest);
2812 ($dstat, $dcond, $ln, $cnt, $off) =
2813 ctx_statement_block
($linenr, $realcnt, 0);
2815 #print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n";
2816 #print "LINE<$lines[$ln-1]> len<" . length($lines[$ln-1]) . "\n";
2818 $dstat =~ s/^.\s*\#\s*define\s+$Ident(?:\([^\)]*\))?\s*//;
2820 $dstat =~ s/\\\n.//g;
2821 $dstat =~ s/^\s*//s;
2822 $dstat =~ s/\s*$//s;
2824 # Flatten any parentheses and braces
2825 while ($dstat =~ s/\([^\(\)]*\)/1/ ||
2826 $dstat =~ s/\{[^\{\}]*\}/1/ ||
2827 $dstat =~ s/\[[^\[\]]*\]/1/)
2831 my $exceptions = qr{
2843 #print "REST<$rest> dstat<$dstat> ctx<$ctx>\n";
2845 $dstat !~ /^(?:$Ident|-?$Constant),$/ && # 10, // foo(),
2846 $dstat !~ /^(?:$Ident|-?$Constant);$/ && # foo();
2847 $dstat !~ /^(?:$Ident|-?$Constant)$/ && # 10 // foo()
2848 $dstat !~ /$exceptions/ &&
2849 $dstat !~ /^\.$Ident\s*=/ && # .foo =
2850 $dstat !~ /^do\s*$Constant\s*while\s*$Constant;?$/ && # do {...} while (...); // do {...} while (...)
2851 $dstat !~ /^for\s*$Constant$/ && # for (...)
2852 $dstat !~ /^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ && # for (...) bar()
2853 $dstat !~ /^do\s*{/ && # do {...
2854 $dstat !~ /^\({/) # ({...
2857 my $herectx = $here . "\n";
2858 my $cnt = statement_rawlines
($ctx);
2860 for (my $n = 0; $n < $cnt; $n++) {
2861 $herectx .= raw_line
($linenr, $n) . "\n";
2864 if ($dstat =~ /;/) {
2865 ERROR
("MULTISTATEMENT_MACRO_USE_DO_WHILE",
2866 "Macros with multiple statements should be enclosed in a do - while loop\n" . "$herectx");
2868 ERROR
("COMPLEX_MACRO",
2869 "Macros with complex values should be enclosed in parenthesis\n" . "$herectx");
2874 # make sure symbols are always wrapped with VMLINUX_SYMBOL() ...
2875 # all assignments may have only one of the following with an assignment:
2878 # VMLINUX_SYMBOL(...)
2879 if ($realfile eq 'vmlinux.lds.h' && $line =~ /(?:(?:^|\s)$Ident\s*=|=\s*$Ident(?:\s|$))/) {
2880 WARN
("MISSING_VMLINUX_SYMBOL",
2881 "vmlinux.lds.h needs VMLINUX_SYMBOL() around C-visible symbols\n" . $herecurr);
2884 # check for redundant bracing round if etc
2885 if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) {
2886 my ($level, $endln, @chunks) =
2887 ctx_statement_full
($linenr, $realcnt, 1);
2888 #print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n";
2889 #print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n";
2890 if ($#chunks > 0 && $level == 0) {
2893 my $herectx = $here . "\n";
2894 my $ln = $linenr - 1;
2895 for my $chunk (@chunks) {
2896 my ($cond, $block) = @
{$chunk};
2898 # If the condition carries leading newlines, then count those as offsets.
2899 my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s);
2900 my $offset = statement_rawlines
($whitespace) - 1;
2902 #print "COND<$cond> whitespace<$whitespace> offset<$offset>\n";
2904 # We have looked at and allowed this specific line.
2905 $suppress_ifbraces{$ln + $offset} = 1;
2907 $herectx .= "$rawlines[$ln + $offset]\n[...]\n";
2908 $ln += statement_rawlines
($block) - 1;
2910 substr($block, 0, length($cond), '');
2912 $seen++ if ($block =~ /^\s*{/);
2914 #print "cond<$cond> block<$block> allowed<$allowed>\n";
2915 if (statement_lines
($cond) > 1) {
2916 #print "APW: ALLOWED: cond<$cond>\n";
2919 if ($block =~/\b(?:if|for|while)\b/) {
2920 #print "APW: ALLOWED: block<$block>\n";
2923 if (statement_block_size
($block) > 1) {
2924 #print "APW: ALLOWED: lines block<$block>\n";
2928 if ($seen && !$allowed) {
2930 "braces {} are not necessary for any arm of this statement\n" . $herectx);
2934 if (!defined $suppress_ifbraces{$linenr - 1} &&
2935 $line =~ /\b(if|while|for|else)\b/) {
2938 # Check the pre-context.
2939 if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) {
2940 #print "APW: ALLOWED: pre<$1>\n";
2944 my ($level, $endln, @chunks) =
2945 ctx_statement_full
($linenr, $realcnt, $-[0]);
2947 # Check the condition.
2948 my ($cond, $block) = @
{$chunks[0]};
2949 #print "CHECKING<$linenr> cond<$cond> block<$block>\n";
2950 if (defined $cond) {
2951 substr($block, 0, length($cond), '');
2953 if (statement_lines
($cond) > 1) {
2954 #print "APW: ALLOWED: cond<$cond>\n";
2957 if ($block =~/\b(?:if|for|while)\b/) {
2958 #print "APW: ALLOWED: block<$block>\n";
2961 if (statement_block_size
($block) > 1) {
2962 #print "APW: ALLOWED: lines block<$block>\n";
2965 # Check the post-context.
2966 if (defined $chunks[1]) {
2967 my ($cond, $block) = @
{$chunks[1]};
2968 if (defined $cond) {
2969 substr($block, 0, length($cond), '');
2971 if ($block =~ /^\s*\{/) {
2972 #print "APW: ALLOWED: chunk-1 block<$block>\n";
2976 if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
2977 my $herectx = $here . "\n";
2978 my $cnt = statement_rawlines
($block);
2980 for (my $n = 0; $n < $cnt; $n++) {
2981 $herectx .= raw_line
($linenr, $n) . "\n";
2985 "braces {} are not necessary for single statement blocks\n" . $herectx);
2989 # don't include deprecated include files (uses RAW line)
2990 for my $inc (@dep_includes) {
2991 if ($rawline =~ m@
^.\s
*\#\s
*include\s
*\
<$inc>@
) {
2992 ERROR
("DEPRECATED_INCLUDE",
2993 "Don't use <$inc>: see Documentation/feature-removal-schedule.txt\n" . $herecurr);
2997 # don't use deprecated functions
2998 for my $func (@dep_functions) {
2999 if ($line =~ /\b$func\b/) {
3000 ERROR
("DEPRECATED_FUNCTION",
3001 "Don't use $func(): see Documentation/feature-removal-schedule.txt\n" . $herecurr);
3005 # no volatiles please
3006 my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
3007 if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
3009 "Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt\n" . $herecurr);
3013 if ($line =~ /^.\s*\#\s*if\s+0\b/) {
3014 CHK
("REDUNDANT_CODE",
3015 "if this code is redundant consider removing it\n" .
3019 # check for needless kfree() checks
3020 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
3022 if ($line =~ /\bkfree\(\Q$expr\E\);/) {
3023 WARN
("NEEDLESS_KFREE",
3024 "kfree(NULL) is safe this check is probably not required\n" . $hereprev);
3027 # check for needless usb_free_urb() checks
3028 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
3030 if ($line =~ /\busb_free_urb\(\Q$expr\E\);/) {
3031 WARN
("NEEDLESS_USB_FREE_URB",
3032 "usb_free_urb(NULL) is safe this check is probably not required\n" . $hereprev);
3036 # prefer usleep_range over udelay
3037 if ($line =~ /\budelay\s*\(\s*(\w+)\s*\)/) {
3038 # ignore udelay's < 10, however
3039 if (! (($1 =~ /(\d+)/) && ($1 < 10)) ) {
3041 "usleep_range is preferred over udelay; see Documentation/timers/timers-howto.txt\n" . $line);
3045 # warn about unexpectedly long msleep's
3046 if ($line =~ /\bmsleep\s*\((\d+)\);/) {
3049 "msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt\n" . $line);
3053 # warn about #ifdefs in C files
3054 # if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
3055 # print "#ifdef in C files should be avoided\n";
3056 # print "$herecurr";
3060 # warn about spacing in #ifdefs
3061 if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) {
3063 "exactly one space required after that #$1\n" . $herecurr);
3066 # check for spinlock_t definitions without a comment.
3067 if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ ||
3068 $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) {
3070 if (!ctx_has_comment
($first_line, $linenr)) {
3071 CHK
("UNCOMMENTED_DEFINITION",
3072 "$1 definition without comment\n" . $herecurr);
3075 # check for memory barriers without a comment.
3076 if ($line =~ /\b(mb|rmb|wmb|read_barrier_depends|smp_mb|smp_rmb|smp_wmb|smp_read_barrier_depends)\(/) {
3077 if (!ctx_has_comment
($first_line, $linenr)) {
3078 CHK
("MEMORY_BARRIER",
3079 "memory barrier without comment\n" . $herecurr);
3082 # check of hardware specific defines
3083 if ($line =~ m@
^.\s
*\#\s
*if.*\b(__i386__
|__powerpc64__
|__sun__
|__s390x__
)\b@
&& $realfile !~ m
@include/asm
-@
) {
3085 "architecture specific defines should be avoided\n" . $herecurr);
3088 # Check that the storage class is at the beginning of a declaration
3089 if ($line =~ /\b$Storage\b/ && $line !~ /^.\s*$Storage\b/) {
3090 WARN
("STORAGE_CLASS",
3091 "storage class should be at the beginning of the declaration\n" . $herecurr)
3094 # check the location of the inline attribute, that it is between
3095 # storage class and type.
3096 if ($line =~ /\b$Type\s+$Inline\b/ ||
3097 $line =~ /\b$Inline\s+$Storage\b/) {
3098 ERROR
("INLINE_LOCATION",
3099 "inline keyword should sit between storage class and type\n" . $herecurr);
3102 # Check for __inline__ and __inline, prefer inline
3103 if ($line =~ /\b(__inline__|__inline)\b/) {
3105 "plain inline is preferred over $1\n" . $herecurr);
3108 # Check for __attribute__ packed, prefer __packed
3109 if ($line =~ /\b__attribute__\s*\(\s*\(.*\bpacked\b/) {
3110 WARN
("PREFER_PACKED",
3111 "__packed is preferred over __attribute__((packed))\n" . $herecurr);
3114 # Check for __attribute__ aligned, prefer __aligned
3115 if ($line =~ /\b__attribute__\s*\(\s*\(.*aligned/) {
3116 WARN
("PREFER_ALIGNED",
3117 "__aligned(size) is preferred over __attribute__((aligned(size)))\n" . $herecurr);
3120 # Check for __attribute__ format(printf, prefer __printf
3121 if ($line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf/) {
3122 WARN
("PREFER_PRINTF",
3123 "__printf(string-index, first-to-check) is preferred over __attribute__((format(printf, string-index, first-to-check)))\n" . $herecurr);
3126 # check for sizeof(&)
3127 if ($line =~ /\bsizeof\s*\(\s*\&/) {
3128 WARN
("SIZEOF_ADDRESS",
3129 "sizeof(& should be avoided\n" . $herecurr);
3132 # check for line continuations in quoted strings with odd counts of "
3133 if ($rawline =~ /\\$/ && $rawline =~ tr/"/"/ % 2) {
3134 WARN
("LINE_CONTINUATIONS",
3135 "Avoid line continuations in quoted strings\n" . $herecurr);
3138 # Check for misused memsets
3139 if (defined $stat &&
3140 $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*$FuncArg\s*\)/s) {
3146 if ($ms_size =~ /^(0x|)0$/i) {
3148 "memset to 0's uses 0 as the 2nd argument, not the 3rd\n" . "$here\n$stat\n");
3149 } elsif ($ms_size =~ /^(0x|)1$/i) {
3151 "single byte memset is suspicious. Swapped 2nd/3rd argument?\n" . "$here\n$stat\n");
3155 # typecasts on min/max could be min_t/max_t
3156 if (defined $stat &&
3157 $stat =~ /^\+(?:.*?)\b(min|max)\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\)/) {
3158 if (defined $2 || defined $8) {
3160 my $cast1 = deparenthesize
($2);
3162 my $cast2 = deparenthesize
($8);
3166 if ($cast1 ne "" && $cast2 ne "") {
3167 $cast = "$cast1 or $cast2";
3168 } elsif ($cast1 ne "") {
3174 "$call() should probably be ${call}_t($cast, $arg1, $arg2)\n" . "$here\n$stat\n");
3178 # check for new externs in .c files.
3179 if ($realfile =~ /\.c$/ && defined $stat &&
3180 $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s)
3182 my $function_name = $1;
3183 my $paren_space = $2;
3186 if (defined $cond) {
3187 substr($s, 0, length($cond), '');
3189 if ($s =~ /^\s*;/ &&
3190 $function_name ne 'uninitialized_var')
3192 WARN
("AVOID_EXTERNS",
3193 "externs should be avoided in .c files\n" . $herecurr);
3196 if ($paren_space =~ /\n/) {
3197 WARN
("FUNCTION_ARGUMENTS",
3198 "arguments for function declarations should follow identifier\n" . $herecurr);
3201 } elsif ($realfile =~ /\.c$/ && defined $stat &&
3202 $stat =~ /^.\s*extern\s+/)
3204 WARN
("AVOID_EXTERNS",
3205 "externs should be avoided in .c files\n" . $herecurr);
3208 # checks for new __setup's
3209 if ($rawline =~ /\b__setup\("([^"]*)"/) {
3212 if (!grep(/$name/, @setup_docs)) {
3213 CHK
("UNDOCUMENTED_SETUP",
3214 "__setup appears un-documented -- check Documentation/kernel-parameters.txt\n" . $herecurr);
3218 # check for pointless casting of kmalloc return
3219 if ($line =~ /\*\s*\)\s*[kv][czm]alloc(_node){0,1}\b/) {
3220 WARN
("UNNECESSARY_CASTS",
3221 "unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
3224 # check for multiple semicolons
3225 if ($line =~ /;\s*;\s*$/) {
3226 WARN
("ONE_SEMICOLON",
3227 "Statements terminations use 1 semicolon\n" . $herecurr);
3230 # check for gcc specific __FUNCTION__
3231 if ($line =~ /__FUNCTION__/) {
3233 "__func__ should be used instead of gcc specific __FUNCTION__\n" . $herecurr);
3236 # check for semaphores initialized locked
3237 if ($line =~ /^.\s*sema_init.+,\W?0\W?\)/) {
3238 WARN
("CONSIDER_COMPLETION",
3239 "consider using a completion\n" . $herecurr);
3242 # recommend kstrto* over simple_strto* and strict_strto*
3243 if ($line =~ /\b((simple|strict)_(strto(l|ll|ul|ull)))\s*\(/) {
3244 WARN
("CONSIDER_KSTRTO",
3245 "$1 is obsolete, use k$3 instead\n" . $herecurr);
3247 # check for __initcall(), use device_initcall() explicitly please
3248 if ($line =~ /^.\s*__initcall\s*\(/) {
3249 WARN
("USE_DEVICE_INITCALL",
3250 "please use device_initcall() instead of __initcall()\n" . $herecurr);
3252 # check for various ops structs, ensure they are const.
3253 my $struct_ops = qr{acpi_dock_ops
|
3254 address_space_operations
|
3256 block_device_operations
|
3261 file_lock_operations
|
3271 lock_manager_operations
|
3277 pipe_buf_operations
|
3278 platform_hibernation_ops
|
3279 platform_suspend_ops
|
3284 soc_pcmcia_socket_ops
|
3290 if ($line !~ /\bconst\b/ &&
3291 $line =~ /\bstruct\s+($struct_ops)\b/) {
3292 WARN
("CONST_STRUCT",
3293 "struct $1 should normally be const\n" .
3297 # use of NR_CPUS is usually wrong
3298 # ignore definitions of NR_CPUS and usage to define arrays as likely right
3299 if ($line =~ /\bNR_CPUS\b/ &&
3300 $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ &&
3301 $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ &&
3302 $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ &&
3303 $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ &&
3304 $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/)
3307 "usage of NR_CPUS is often wrong - consider using cpu_possible(), num_possible_cpus(), for_each_possible_cpu(), etc\n" . $herecurr);
3310 # check for %L{u,d,i} in strings
3312 while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) {
3313 $string = substr($rawline, $-[1], $+[1] - $-[1]);
3314 $string =~ s/%%/__/g;
3315 if ($string =~ /(?<!%)%L[udi]/) {
3317 "\%Ld/%Lu are not-standard C, use %lld/%llu\n" . $herecurr);
3322 # whine mightly about in_atomic
3323 if ($line =~ /\bin_atomic\s*\(/) {
3324 if ($realfile =~ m@
^drivers
/@
) {
3326 "do not use in_atomic in drivers\n" . $herecurr);
3327 } elsif ($realfile !~ m@
^kernel
/@
) {
3329 "use of in_atomic() is incorrect outside core kernel code\n" . $herecurr);
3333 # check for lockdep_set_novalidate_class
3334 if ($line =~ /^.\s*lockdep_set_novalidate_class\s*\(/ ||
3335 $line =~ /__lockdep_no_validate__\s*\)/ ) {
3336 if ($realfile !~ m@
^kernel
/lockdep@
&&
3337 $realfile !~ m@
^include
/linux/lockdep@
&&
3338 $realfile !~ m@
^drivers
/base/core@
) {
3340 "lockdep_no_validate class is reserved for device->mutex.\n" . $herecurr);
3344 if ($line =~ /debugfs_create_file.*S_IWUGO/ ||
3345 $line =~ /DEVICE_ATTR.*S_IWUGO/ ) {
3346 WARN
("EXPORTED_WORLD_WRITABLE",
3347 "Exporting world writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr);
3351 # If we have no input at all, then there is nothing to report on
3352 # so just keep quiet.
3353 if ($#rawlines == -1) {
3357 # In mailback mode only produce a report in the negative, for
3358 # things that appear to be patches.
3359 if ($mailback && ($clean == 1 || !$is_patch)) {
3363 # This is not a patch, and we are are in 'no-patch' mode so
3365 if (!$chk_patch && !$is_patch) {
3370 ERROR
("NOT_UNIFIED_DIFF",
3371 "Does not appear to be a unified-diff format patch\n");
3373 if ($is_patch && $chk_signoff && $signoff == 0) {
3374 ERROR
("MISSING_SIGN_OFF",
3375 "Missing Signed-off-by: line(s)\n");
3378 print report_dump
();
3379 if ($summary && !($clean == 1 && $quiet == 1)) {
3380 print "$filename " if ($summary_file);
3381 print "total: $cnt_error errors, $cnt_warn warnings, " .
3382 (($check)?
"$cnt_chk checks, " : "") .
3383 "$cnt_lines lines checked\n";
3384 print "\n" if ($quiet == 0);
3388 # If there were whitespace errors which cleanpatch can fix
3389 # then suggest that.
3390 if ($rpt_cleaners) {
3391 print "NOTE: whitespace errors detected, you may wish to use scripts/cleanpatch or\n";
3392 print " scripts/cleanfile\n\n";
3397 if (keys %ignore_type) {
3398 print "NOTE: Ignored message types:";
3399 foreach my $ignore (sort keys %ignore_type) {
3403 print "\n" if ($quiet == 0);
3406 if ($clean == 1 && $quiet == 0) {
3407 print "$vname has no obvious style problems and is ready for submission.\n"
3409 if ($clean == 0 && $quiet == 0) {
3411 $vname has style problems
, please review
.
3413 If any of these errors are false positives
, please report
3414 them to the maintainer
, see CHECKPATCH
in MAINTAINERS
.