2 # (c) 2001, Dave Jones. <davej@codemonkey.org.uk> (the file handling bit)
3 # (c) 2005, Joel Schopp <jschopp@austin.ibm.com> (the ugly bit)
4 # (c) 2007, Andy Whitcroft <apw@uk.ibm.com> (new conditions, test suite, etc)
5 # Licensed under the terms of the GNU GPL License version 2
14 use Getopt
::Long
qw(:config no_auto_abbrev);
29 'q|quiet+' => \
$quiet,
31 'signoff!' => \
$chk_signoff,
32 'patch!' => \
$chk_patch,
33 'test-type!' => \
$tst_type,
37 'subjective!' => \
$check,
40 'summary!' => \
$summary,
41 'mailback!' => \
$mailback,
47 print "usage: $P [options] patchfile\n";
48 print "version: $V\n";
49 print "options: -q => quiet\n";
50 print " --no-tree => run without a kernel tree\n";
51 print " --terse => one line per report\n";
52 print " --emacs => emacs compile window format\n";
53 print " --file => check a source file\n";
54 print " --strict => enable more subjective tests\n";
55 print " --root => path to the kernel tree root\n";
66 if (!top_of_kernel_tree
($root)) {
67 die "$P: $root: --root does not point at a valid tree\n";
70 if (top_of_kernel_tree
('.')) {
72 } elsif ($0 =~ m@
(.*)/scripts/[^/]*$@
&&
73 top_of_kernel_tree
($1)) {
79 print "Must be run from the top-level dir. of a kernel tree\n";
84 my $emitted_corrupt = 0;
86 our $Ident = qr{[A-Za-z_][A-Za-z\d_]*};
87 our $Storage = qr{extern|static|asmlinkage};
102 __
(?
:mem
|cpu
|dev
|)(?
:initdata
|init
)
104 our $Inline = qr{inline|__always_inline|noinline};
105 our $Member = qr{->$Ident|\.$Ident|\[[^]]*\]};
106 our $Lval = qr{$Ident(?:$Member)*};
108 our $Constant = qr{(?:[0-9]+|0x[0-9a-fA-F]+)[UL]*};
109 our $Assignment = qr{(?:\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=)};
113 &&|\
|\
||,|\
^|\
+\
+|--|&|\
||\
+|-|\
*|\
/
132 qr{long\s+long\s+int},
133 qr{(?:__)?(?:u|s|be|le)(?:8|16|32|64)},
138 qr{${Ident}_handler
},
139 qr{${Ident}_handler_fn
},
143 my $all = "(?: \n" . join("|\n ", @typeList) . "\n)";
149 (?
:\s
+$Sparse|\s
+const
)*
154 (?
:\s
*\
*+\s
*const
|\s
*\
*+|(?
:\s
*\
[\s
*\
])+)?
155 (?
:\s
+$Sparse|\s
+$Attribute)*
157 $Declare = qr{(?:$Storage\s+)?$Type};
161 $chk_signoff = 0 if ($file);
163 my @dep_includes = ();
164 my @dep_functions = ();
165 my $removal = "Documentation/feature-removal-schedule.txt";
166 if ($tree && -f
"$root/$removal") {
167 open(REMOVE
, "<$root/$removal") ||
168 die "$P: $removal: open failed - $!\n";
170 if (/^Check:\s+(.*\S)/) {
171 for my $entry (split(/[, ]+/, $1)) {
172 if ($entry =~ m
@include/(.*)@
) {
173 push(@dep_includes, $1);
175 } elsif ($entry !~ m@
/@
) {
176 push(@dep_functions, $entry);
184 for my $filename (@ARGV) {
186 open(FILE
, "diff -u /dev/null $filename|") ||
187 die "$P: $filename: diff failed - $!\n";
189 open(FILE
, "<$filename") ||
190 die "$P: $filename: open failed - $!\n";
197 if (!process
($filename, @rawlines)) {
205 sub top_of_kernel_tree
{
209 "COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
210 "README", "Documentation", "arch", "include", "drivers",
211 "fs", "init", "ipc", "kernel", "lib", "scripts",
214 foreach my $check (@tree_check) {
215 if (! -e
$root . '/' . $check) {
227 for my $c (split(//, $str)) {
231 for (; ($n % 8) != 0; $n++) {
246 for my $c (split(//, $str)) {
260 # Drop the diff line leader and expand tabs
262 $line = expand_tabs
($line);
264 # Pick the indent from the front of the line.
265 my ($white) = ($line =~ /^(\s*)/);
267 return (length($line), length($white));
278 foreach my $c (split(//, $line)) {
279 if ($l ne "\\" && ($c eq "'" || $c eq '"')) {
285 } elsif ($quote eq $c) {
289 if ($quote && $c ne "\t") {
301 sub ctx_statement_block
{
302 my ($linenr, $remain, $off) = @_;
303 my $line = $linenr - 1;
313 #warn "CSB: blk<$blk>\n";
314 # If we are about to drop off the end, pull in more
317 for (; $remain > 0; $line++) {
318 next if ($rawlines[$line] =~ /^-/);
320 $blk .= sanitise_line
($rawlines[$line]) . "\n";
325 # Bail if there is no further context.
326 #warn "CSB: blk<$blk> off<$off> len<$len>\n";
331 $c = substr($blk, $off, 1);
333 #warn "CSB: c<$c> type<$type> level<$level>\n";
334 # Statement ends at the ';' or a close '}' at the
336 if ($level == 0 && $c eq ';') {
340 if (($type eq '' || $type eq '(') && $c eq '(') {
344 if ($type eq '(' && $c eq ')') {
346 $type = ($level != 0)?
'(' : '';
348 if ($level == 0 && $coff < $soff) {
352 if (($type eq '' || $type eq '{') && $c eq '{') {
356 if ($type eq '{' && $c eq '}') {
358 $type = ($level != 0)?
'{' : '';
367 my $statement = substr($blk, $soff, $off - $soff + 1);
368 my $condition = substr($blk, $soff, $coff - $soff + 1);
370 #warn "STATEMENT<$statement>\n";
371 #warn "CONDITION<$condition>\n";
373 return ($statement, $condition);
377 my ($linenr, $remain, $outer, $open, $close, $off) = @_;
379 my $start = $linenr - 1;
386 for ($line = $start; $remain > 0; $line++) {
387 next if ($rawlines[$line] =~ /^-/);
390 $blk .= $rawlines[$line];
391 foreach my $c (split(//, $rawlines[$line])) {
392 ##print "C<$c>L<$level><$open$close>O<$off>\n";
398 if ($c eq $close && $level > 0) {
400 last if ($level == 0);
401 } elsif ($c eq $open) {
406 if (!$outer || $level <= 1) {
407 push(@res, $rawlines[$line]);
410 last if ($level == 0);
413 return ($level, @res);
415 sub ctx_block_outer
{
416 my ($linenr, $remain) = @_;
418 my ($level, @r) = ctx_block_get
($linenr, $remain, 1, '{', '}', 0);
422 my ($linenr, $remain) = @_;
424 my ($level, @r) = ctx_block_get
($linenr, $remain, 0, '{', '}', 0);
428 my ($linenr, $remain, $off) = @_;
430 my ($level, @r) = ctx_block_get
($linenr, $remain, 0, '(', ')', $off);
433 sub ctx_block_level
{
434 my ($linenr, $remain) = @_;
436 return ctx_block_get
($linenr, $remain, 0, '{', '}', 0);
438 sub ctx_statement_level
{
439 my ($linenr, $remain, $off) = @_;
441 return ctx_block_get
($linenr, $remain, 0, '(', ')', $off);
444 sub ctx_locate_comment
{
445 my ($first_line, $end_line) = @_;
447 # Catch a comment on the end of the line itself.
448 my ($current_comment) = ($rawlines[$end_line - 1] =~ m@
.*(/\*.*\*/)\s
*$@
);
449 return $current_comment if (defined $current_comment);
451 # Look through the context and try and figure out if there is a
454 $current_comment = '';
455 for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
456 my $line = $rawlines[$linenr - 1];
458 if ($linenr == $first_line and $line =~ m@
^.\s
*\
*@
) {
461 if ($line =~ m@
/\
*@
) {
464 if (!$in_comment && $current_comment ne '') {
465 $current_comment = '';
467 $current_comment .= $line . "\n" if ($in_comment);
468 if ($line =~ m@\
*/@
) {
473 chomp($current_comment);
474 return($current_comment);
476 sub ctx_has_comment
{
477 my ($first_line, $end_line) = @_;
478 my $cmt = ctx_locate_comment
($first_line, $end_line);
480 ##print "LINE: $rawlines[$end_line - 1 ]\n";
481 ##print "CMMT: $cmt\n";
491 while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
494 $coded = sprintf("^%c", unpack('C', $2) + 64);
503 sub annotate_values
{
504 my ($stream, $type) = @_;
511 print "$stream\n" if ($debug);
515 my $preprocessor = 0;
519 while (length($cur)) {
520 print " <$type> " if ($debug);
521 if ($cur =~ /^(\s+)/o) {
522 print "WS($1)\n" if ($debug);
523 if ($1 =~ /\n/ && $preprocessor) {
528 } elsif ($cur =~ /^($Type)/) {
529 print "DECLARE($1)\n" if ($debug);
532 } elsif ($cur =~ /^(#\s*define\s*$Ident)(\(?)/o) {
533 print "DEFINE($1)\n" if ($debug);
535 $paren_type[$paren] = 'N';
537 } elsif ($cur =~ /^(#\s*(?:ifdef|ifndef|if|else|endif))/o) {
538 print "PRE($1)\n" if ($debug);
542 } elsif ($cur =~ /^(\\\n)/o) {
543 print "PRECONT($1)\n" if ($debug);
545 } elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
546 print "SIZEOF($1)\n" if ($debug);
548 $paren_type[$paren] = 'V';
552 } elsif ($cur =~ /^(if|while|typeof|for)\b/o) {
553 print "COND($1)\n" if ($debug);
554 $paren_type[$paren] = 'N';
557 } elsif ($cur =~/^(return|case|else)/o) {
558 print "KEYWORD($1)\n" if ($debug);
561 } elsif ($cur =~ /^(\()/o) {
562 print "PAREN('$1')\n" if ($debug);
566 } elsif ($cur =~ /^(\))/o) {
567 $paren-- if ($paren > 0);
568 if (defined $paren_type[$paren]) {
569 $type = $paren_type[$paren];
570 undef $paren_type[$paren];
571 print "PAREN('$1') -> $type\n" if ($debug);
573 print "PAREN('$1')\n" if ($debug);
576 } elsif ($cur =~ /^($Ident)\(/o) {
577 print "FUNC($1)\n" if ($debug);
578 $paren_type[$paren] = 'V';
580 } elsif ($cur =~ /^($Ident|$Constant)/o) {
581 print "IDENT($1)\n" if ($debug);
584 } elsif ($cur =~ /^($Assignment)/o) {
585 print "ASSIGN($1)\n" if ($debug);
588 } elsif ($cur =~ /^(;|{|}|\?|:|\[)/o) {
589 print "END($1)\n" if ($debug);
592 } elsif ($cur =~ /^($Operators)/o) {
593 print "OP($1)\n" if ($debug);
594 if ($1 ne '++' && $1 ne '--') {
598 } elsif ($cur =~ /(^.)/o) {
599 print "C($1)\n" if ($debug);
602 $cur = substr($cur, length($1));
603 $res .= $type x
length($1);
613 #print "CHECK<$possible>\n";
614 if ($possible !~ /^(?:$Storage|$Type|DEFINE_\S+)$/ &&
615 $possible ne 'goto' && $possible ne 'return' &&
616 $possible ne 'struct' && $possible ne 'enum' &&
617 $possible ne 'case' && $possible ne 'else' &&
618 $possible ne 'typedef') {
619 #print "POSSIBLE<$possible>\n";
620 push(@typeList, $possible);
629 my $line = $prefix . $_[0];
631 $line = (split('\n', $line))[0] . "\n" if ($terse);
633 push(@report, $line);
639 report
("ERROR: $_[0]\n");
644 report
("WARNING: $_[0]\n");
650 report
("CHECK: $_[0]\n");
657 my $filename = shift;
678 # Trace the real file/line as we go.
686 my $prev_values = 'N';
688 # Pre-scan the patch looking for any __setup documentation.
691 foreach my $line (@lines) {
692 if ($line=~/^\+\+\+\s+(\S+)/) {
694 if ($1 =~ m
@Documentation/kernel
-parameters
.txt
$@
) {
700 if ($setup_docs && $line =~ /^\+/) {
701 push(@setup_docs, $line);
707 foreach my $line (@lines) {
713 #extract the filename as it passes
714 if ($line=~/^\+\+\+\s+(\S+)/) {
716 $realfile =~ s@
^[^/]*/@@
;
720 #extract the line range in the file after the patch is applied
721 if ($line=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
723 $first_line = $linenr + 1;
735 # track the line number as we move through the hunk, note that
736 # new versions of GNU diff omit the leading space on completely
737 # blank context lines so we need to count that too.
738 if ($line =~ /^( |\+|$)/) {
740 $realcnt-- if ($realcnt != 0);
742 # Guestimate if this is a continuing comment. Run
743 # the context looking for a comment "edge". If this
744 # edge is a close comment then we must be in a comment
746 if ($linenr == $first_line) {
748 for (my $ln = $first_line; $ln < ($linenr + $realcnt); $ln++) {
749 ($edge) = ($lines[$ln - 1] =~ m@
(/\*|\*/)@
);
750 last if (defined $edge);
752 if (defined $edge && $edge eq '*/') {
757 # Guestimate if this is a continuing comment. If this
758 # is the start of a diff block and this line starts
759 # ' *' then it is very likely a comment.
760 if ($linenr == $first_line and $line =~ m@
^.\s
*\
*@
) {
764 # Find the last comment edge on _this_ line.
765 while (($line =~ m@
(/\*|\*/)@g)) {
773 # Measure the line length and indent.
774 ($length, $indent) = line_stats
($line);
776 # Track the previous line.
777 ($prevline, $stashline) = ($stashline, $line);
778 ($previndent, $stashindent) = ($stashindent, $indent);
780 } elsif ($realcnt == 1) {
784 #make up the handle for any error we report on this line
785 $here = "#$linenr: " if (!$file);
786 $here = "#$realline: " if ($file);
787 $here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
789 my $hereline = "$here\n$line\n";
790 my $herecurr = "$here\n$line\n";
791 my $hereprev = "$here\n$prevline\n$line\n";
793 $prefix = "$filename:$realline: " if ($emacs && $file);
794 $prefix = "$filename:$linenr: " if ($emacs && !$file);
795 $cnt_lines++ if ($realcnt != 0);
797 #check the patch for a signoff:
798 if ($line =~ /^\s*signed-off-by:/i) {
799 # This is a signoff, if ugly, so do not double report.
801 if (!($line =~ /^\s*Signed-off-by:/)) {
802 WARN
("Signed-off-by: is the preferred form\n" .
805 if ($line =~ /^\s*signed-off-by:\S/i) {
806 WARN
("need space after Signed-off-by:\n" .
811 # Check for wrappage within a valid hunk of the file
812 if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) {
813 ERROR
("patch seems to be corrupt (line wrapped?)\n" .
814 $herecurr) if (!$emitted_corrupt++);
817 # UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
818 if (($realfile =~ /^$/ || $line =~ /^\+/) &&
820 [\x09\x0A\x0D\x20-\x7E] # ASCII
821 | [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
822 | \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
823 | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
824 | \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
825 | \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
826 | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
827 | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
829 ERROR
("Invalid UTF-8\n" . $herecurr);
832 #ignore lines being removed
833 if ($line=~/^-/) {next;}
835 # check we are in a valid source file if not then ignore this hunk
836 next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/);
839 if ($line =~ /^\+.*\015/) {
840 my $herevet = "$here\n" . cat_vet
($line) . "\n";
841 ERROR
("DOS line endings\n" . $herevet);
843 } elsif ($line =~ /^\+.*\S\s+$/ || $line =~ /^\+\s+$/) {
844 my $herevet = "$here\n" . cat_vet
($line) . "\n";
845 ERROR
("trailing whitespace\n" . $herevet);
848 if ($line =~ /^\+/ && !($prevline=~/\/\
*\
*/) && $length > 80) {
849 WARN
("line over 80 characters\n" . $herecurr);
852 # check for adding lines without a newline.
853 if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
854 WARN
("adding a line without newline at end of file\n" . $herecurr);
857 # check we are in a valid source file *.[hc] if not then ignore this hunk
858 next if ($realfile !~ /\.[hc]$/);
860 # at the beginning of a line any tabs must come first and anything
861 # more than 8 must use tabs.
862 if ($line=~/^\+\s* \t\s*\S/ or $line=~/^\+\s* \s*/) {
863 my $herevet = "$here\n" . cat_vet
($line) . "\n";
864 ERROR
("use tabs not spaces\n" . $herevet);
867 # Remove comments from the line before processing.
868 my $comment_edge = ($line =~ s@
/\*.*\*/@
@g) +
869 ($line =~ s@
/\
*.*@@
) +
870 ($line =~ s@
^(.).*\
*/@
$1@
);
872 # The rest of our checks refer specifically to C style
873 # only apply those _outside_ comments. Only skip
874 # lines in the middle of comments.
875 next if (!$comment_edge && $in_comment);
877 # Standardise the strings and chars within the input to simplify matching.
878 $line = sanitise_line
($line);
880 # Check for potential 'bare' types
882 $line !~ /$Ident:\s*$/ &&
883 ($line =~ /^.\s*$Ident\s*\(\*+\s*$Ident\)\s*\(/ ||
884 $line !~ /^.\s*$Ident\s*\(/)) {
885 # definitions in global scope can only start with types
886 if ($line =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b/) {
889 # declarations always start with types
890 } elsif ($prev_values eq 'N' && $line =~ /^.\s*(?:$Storage\s+)?($Ident)\b\s*\**\s*$Ident\s*(?:;|=)/) {
893 # any (foo ... *) is a pointer cast, and foo is a type
894 } elsif ($line =~ /\(($Ident)(?:\s+$Sparse)*\s*\*+\s*\)/) {
898 # Check for any sort of function declaration.
899 # int foo(something bar, other baz);
900 # void (*store_gdt)(x86_descr_ptr *);
901 if ($prev_values eq 'N' && $line =~ /^(.(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*(?:\b$Ident|\(\*\s*$Ident\))\s*)\(/) {
902 my ($name_len) = length($1);
903 my ($level, @ctx) = ctx_statement_level
($linenr, $realcnt, $name_len);
904 my $ctx = join("\n", @ctx);
907 substr($ctx, 0, $name_len + 1) = '';
908 $ctx =~ s/\)[^\)]*$//;
909 for my $arg (split(/\s*,\s*/, $ctx)) {
910 if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/ || $arg =~ /^($Ident)$/) {
920 # Checks which may be anchored in the context.
923 # Check for switch () and associated case and default
924 # statements should be at the same indent.
925 if ($line=~/\bswitch\s*\(.*\)/) {
928 my @ctx = ctx_block_outer
($linenr, $realcnt);
931 my ($clen, $cindent) = line_stats
($ctx);
932 if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
933 $indent != $cindent) {
934 $err .= "$sep$ctx\n";
941 ERROR
("switch and case should be at the same indent\n$hereline$err");
945 # if/while/etc brace do not go on next line, unless defining a do while loop,
946 # or if that brace on the next line is for something else
947 if ($line =~ /\b(?:(if|while|for|switch)\s*\(|do\b|else\b)/ && $line !~ /^.#/) {
948 my ($level, @ctx) = ctx_statement_level
($linenr, $realcnt, 0);
949 my $ctx_ln = $linenr + $#ctx + 1;
950 my $ctx_cnt = $realcnt - $#ctx - 1;
951 my $ctx = join("\n", @ctx);
953 # Skip over any removed lines in the context following statement.
954 while ($ctx_cnt > 0 && $lines[$ctx_ln - 1] =~ /^-/) {
958 ##warn "line<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>";
960 if ($ctx !~ /{\s*/ && $ctx_cnt > 0 && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
961 ERROR
("That open brace { should be on the previous line\n" .
962 "$here\n$ctx\n$lines[$ctx_ln - 1]");
964 if ($level == 0 && $ctx =~ /\)\s*\;\s*$/ && defined $lines[$ctx_ln - 1]) {
965 my ($nlength, $nindent) = line_stats
($lines[$ctx_ln - 1]);
966 if ($nindent > $indent) {
967 WARN
("Trailing semicolon indicates no statements, indent implies otherwise\n" .
968 "$here\n$ctx\n$lines[$ctx_ln - 1]");
973 # Track the 'values' across context and added lines.
974 my $opline = $line; $opline =~ s/^./ /;
975 my $curr_values = annotate_values
($opline . "\n", $prev_values);
976 $curr_values = $prev_values . $curr_values;
977 #warn "--> $opline\n";
978 #warn "--> $curr_values ($prev_values)\n";
979 $prev_values = substr($curr_values, -1);
981 #ignore lines not being added
982 if ($line=~/^[^\+]/) {next;}
984 # TEST: allow direct testing of the type matcher.
985 if ($tst_type && $line =~ /^.$Declare$/) {
986 ERROR
("TEST: is type $Declare\n" . $herecurr);
990 # check for initialisation to aggregates open brace on the next line
991 if ($prevline =~ /$Declare\s*$Ident\s*=\s*$/ &&
993 ERROR
("That open brace { should be on the previous line\n" . $hereprev);
997 # Checks which are anchored on the added line.
1000 # check for malformed paths in #include statements (uses RAW line)
1001 if ($rawline =~ m{^.#\s*include\s+[<"](.*)[">]}) {
1003 if ($path =~ m{//}) {
1004 ERROR
("malformed #include filename\n" .
1007 # Sanitise this special form of string.
1008 $path = 'X' x
length($path);
1009 $line =~ s{\<.*\>}{<$path>};
1012 # no C99 // comments
1013 if ($line =~ m{//}) {
1014 ERROR
("do not use C99 // comments\n" . $herecurr);
1016 # Remove C99 comments.
1018 $opline =~ s@
//.*@@
;
1020 #EXPORT_SYMBOL should immediately follow its function closing }.
1021 if (($line =~ /EXPORT_SYMBOL.*\((.*)\)/) ||
1022 ($line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
1024 if (($prevline !~ /^}/) &&
1025 ($prevline !~ /^\+}/) &&
1026 ($prevline !~ /^ }/) &&
1027 ($prevline !~ /\b\Q$name\E(?:\s+$Attribute)?\s*(?:;|=)/)) {
1028 WARN
("EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
1032 # check for external initialisers.
1033 if ($line =~ /^.$Type\s*$Ident\s*=\s*(0|NULL);/) {
1034 ERROR
("do not initialise externals to 0 or NULL\n" .
1037 # check for static initialisers.
1038 if ($line =~ /\s*static\s.*=\s*(0|NULL);/) {
1039 ERROR
("do not initialise statics to 0 or NULL\n" .
1043 # check for new typedefs, only function parameters and sparse annotations
1045 if ($line =~ /\btypedef\s/ &&
1046 $line !~ /\btypedef\s+$Type\s+\(\s*\*?$Ident\s*\)\s*\(/ &&
1047 $line !~ /\b__bitwise(?:__|)\b/) {
1048 WARN
("do not add new typedefs\n" . $herecurr);
1051 # * goes on variable not on type
1052 if ($line =~ m{\($NonptrType(\*+)(?:\s+const)?\)}) {
1053 ERROR
("\"(foo$1)\" should be \"(foo $1)\"\n" .
1056 } elsif ($line =~ m{\($NonptrType\s+(\*+)(?!\s+const)\s+\)}) {
1057 ERROR
("\"(foo $1 )\" should be \"(foo $1)\"\n" .
1060 } elsif ($line =~ m{$NonptrType(\*+)(?:\s+(?:$Attribute|$Sparse))?\s+[A-Za-z\d_]+}) {
1061 ERROR
("\"foo$1 bar\" should be \"foo $1bar\"\n" .
1064 } elsif ($line =~ m{$NonptrType\s+(\*+)(?!\s+(?:$Attribute|$Sparse))\s+[A-Za-z\d_]+}) {
1065 ERROR
("\"foo $1 bar\" should be \"foo $1bar\"\n" .
1069 # # no BUG() or BUG_ON()
1070 # if ($line =~ /\b(BUG|BUG_ON)\b/) {
1071 # print "Try to use WARN_ON & Recovery code rather than BUG() or BUG_ON()\n";
1072 # print "$herecurr";
1076 if ($line =~ /\bLINUX_VERSION_CODE\b/) {
1077 WARN
("LINUX_VERSION_CODE should be avoided, code should be for the version to which it is merged" . $herecurr);
1080 # printk should use KERN_* levels. Note that follow on printk's on the
1081 # same line do not need a level, so we use the current block context
1082 # to try and find and validate the current printk. In summary the current
1083 # printk includes all preceeding printk's which have no newline on the end.
1084 # we assume the first bad printk is the one to report.
1085 if ($line =~ /\bprintk\((?!KERN_)\s*"/) {
1087 for (my $ln = $linenr - 1; $ln >= $first_line; $ln--) {
1088 #print "CHECK<$lines[$ln - 1]\n";
1089 # we have a preceeding printk if it ends
1090 # with "\n" ignore it, else it is to blame
1091 if ($lines[$ln - 1] =~ m{\bprintk\(}) {
1092 if ($rawlines[$ln - 1] !~ m{\\n"}) {
1099 WARN
("printk() should include KERN_ facility level\n" . $herecurr);
1103 # function brace can't be on same line, except for #defines of do while,
1104 # or if closed on same line
1105 if (($line=~/$Type\s*[A-Za-z\d_]+\(.*\).* {/) and
1106 !($line=~/\#define.*do\s{/) and !($line=~/}/)) {
1107 ERROR
("open brace '{' following function declarations go on the next line\n" . $herecurr);
1110 # open braces for enum, union and struct go on the same line.
1111 if ($line =~ /^.\s*{/ &&
1112 $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
1113 ERROR
("open brace '{' following $1 go on the same line\n" . $hereprev);
1116 # check for spaces between functions and their parentheses.
1117 while ($line =~ /($Ident)\s+\(/g) {
1118 if ($1 !~ /^(?:if|for|while|switch|return|volatile|__volatile__|__attribute__|format|__extension__|Copyright|case)$/ &&
1119 $line !~ /$Type\s+\(/ && $line !~ /^.\#\s*define\b/) {
1120 WARN
("no space between function name and open parenthesis '('\n" . $herecurr);
1123 # Check operator spacing.
1124 if (!($line=~/\#\s*include/)) {
1126 <<=|>>=|<=|>=|==|!=|
1127 \
+=|-=|\
*=|\
/=|%=|\
^=|\
|=|&=|
1128 =>|->|<<|>>|<|>|=|!|~|
1129 &&|\
|\
||,|\
^|\
+\
+|--|&|\
||\
+|-|\
*|\
/
1131 my @elements = split(/($ops|;)/, $opline);
1134 my $blank = copy_spacing
($opline);
1136 for (my $n = 0; $n < $#elements; $n += 2) {
1137 $off += length($elements[$n]);
1140 $a = 'V' if ($elements[$n] ne '');
1141 $a = 'W' if ($elements[$n] =~ /\s$/);
1142 $a = 'B' if ($elements[$n] =~ /(\[|\()$/);
1143 $a = 'O' if ($elements[$n] eq '');
1144 $a = 'E' if ($elements[$n] eq '' && $n == 0);
1146 my $op = $elements[$n + 1];
1149 if (defined $elements[$n + 2]) {
1150 $c = 'V' if ($elements[$n + 2] ne '');
1151 $c = 'W' if ($elements[$n + 2] =~ /^\s/);
1152 $c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
1153 $c = 'O' if ($elements[$n + 2] eq '');
1154 $c = 'E' if ($elements[$n + 2] =~ /\s*\\$/);
1159 # Pick up the preceeding and succeeding characters.
1160 my $ca = substr($opline, 0, $off);
1162 if (length($opline) >= ($off + length($elements[$n + 1]))) {
1163 $cc = substr($opline, $off + length($elements[$n + 1]));
1165 my $cb = "$ca$;$cc";
1167 my $ctx = "${a}x${c}";
1169 my $at = "(ctx:$ctx)";
1171 my $ptr = substr($blank, 0, $off) . "^";
1172 my $hereptr = "$hereline$ptr\n";
1174 # Classify operators into binary, unary, or
1175 # definitions (* only) where they have more
1177 my $op_type = substr($curr_values, $off + 1, 1);
1178 my $op_left = substr($curr_values, $off, 1);
1180 if ($op_type eq 'T') {
1182 } elsif ($op_left eq 'V') {
1187 #if ($op eq '-' || $op eq '&' || $op eq '*') {
1188 # print "UNARY: <$op_left$op_type $is_unary $a:$op:$c> <$ca:$op:$cc> <$unary_ctx>\n";
1191 # ; should have either the end of line or a space or \ after it
1193 if ($ctx !~ /.x[WEB]/ && $cc !~ /^\\/ &&
1195 ERROR
("need space after that '$op' $at\n" . $hereptr);
1199 } elsif ($op eq '//') {
1201 # -> should have no spaces
1202 } elsif ($op eq '->') {
1203 if ($ctx =~ /Wx.|.xW/) {
1204 ERROR
("no spaces around that '$op' $at\n" . $hereptr);
1207 # , must have a space on the right.
1208 } elsif ($op eq ',') {
1209 if ($ctx !~ /.xW|.xE/ && $cc !~ /^}/) {
1210 ERROR
("need space after that '$op' $at\n" . $hereptr);
1213 # '*' as part of a type definition -- reported already.
1214 } elsif ($op eq '*' && $is_unary == 2) {
1215 #warn "'*' is part of type\n";
1217 # unary operators should have a space before and
1218 # none after. May be left adjacent to another
1219 # unary operator, or a cast
1220 } elsif ($op eq '!' || $op eq '~' ||
1221 ($is_unary && ($op eq '*' || $op eq '-' || $op eq '&'))) {
1222 if ($ctx !~ /[WEB]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
1223 ERROR
("need space before that '$op' $at\n" . $hereptr);
1225 if ($ctx =~ /.xW/) {
1226 ERROR
("no space after that '$op' $at\n" . $hereptr);
1229 # unary ++ and unary -- are allowed no space on one side.
1230 } elsif ($op eq '++' or $op eq '--') {
1231 if ($ctx !~ /[WOB]x[^W]/ && $ctx !~ /[^W]x[WOBE]/) {
1232 ERROR
("need space one side of that '$op' $at\n" . $hereptr);
1234 if ($ctx =~ /Wx./ && $cc =~ /^;/) {
1235 ERROR
("no space before that '$op' $at\n" . $hereptr);
1238 # << and >> may either have or not have spaces both sides
1239 } elsif ($op eq '<<' or $op eq '>>' or
1240 $op eq '&' or $op eq '^' or $op eq '|' or
1241 $op eq '+' or $op eq '-' or
1242 $op eq '*' or $op eq '/')
1244 if ($ctx !~ /VxV|WxW|VxE|WxE|VxO/) {
1245 ERROR
("need consistent spacing around '$op' $at\n" .
1249 # All the others need spaces both sides.
1250 } elsif ($ctx !~ /[EW]x[WE]/) {
1251 # Ignore email addresses <foo@bar>
1252 if (!($op eq '<' && $cb =~ /$;\S+\@\S+>/) &&
1253 !($op eq '>' && $cb =~ /<\S+\@\S+$;/)) {
1254 ERROR
("need spaces around that '$op' $at\n" . $hereptr);
1257 $off += length($elements[$n + 1]);
1261 # check for multiple assignments
1262 if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
1263 CHK
("multiple assignments should be avoided\n" . $herecurr);
1266 ## # check for multiple declarations, allowing for a function declaration
1268 ## if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
1269 ## $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
1271 ## # Remove any bracketed sections to ensure we do not
1272 ## # falsly report the parameters of functions.
1274 ## while ($ln =~ s/\([^\(\)]*\)//g) {
1276 ## if ($ln =~ /,/) {
1277 ## WARN("declaring multiple variables together should be avoided\n" . $herecurr);
1281 #need space before brace following if, while, etc
1282 if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) ||
1284 ERROR
("need a space before the open brace '{'\n" . $herecurr);
1287 # closing brace should have a space following it when it has anything
1289 if ($line =~ /}(?!(?:,|;|\)))\S/) {
1290 ERROR
("need a space after that close brace '}'\n" . $herecurr);
1293 # check spacing on square brackets
1294 if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
1295 ERROR
("no space after that open square bracket '['\n" . $herecurr);
1297 if ($line =~ /\s\]/) {
1298 ERROR
("no space before that close square bracket ']'\n" . $herecurr);
1301 # check spacing on paretheses
1302 if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
1303 $line !~ /for\s*\(\s+;/) {
1304 ERROR
("no space after that open parenthesis '('\n" . $herecurr);
1306 if ($line =~ /\s\)/ && $line !~ /^.\s*\)/ &&
1307 $line !~ /for\s*\(.*;\s+\)/) {
1308 ERROR
("no space before that close parenthesis ')'\n" . $herecurr);
1311 #goto labels aren't indented, allow a single space however
1312 if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
1313 !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
1314 WARN
("labels should not be indented\n" . $herecurr);
1317 # Need a space before open parenthesis after if, while etc
1318 if ($line=~/\b(if|while|for|switch)\(/) {
1319 ERROR
("need a space before the open parenthesis '('\n" . $herecurr);
1322 # Check for illegal assignment in if conditional.
1323 if ($line =~ /\bif\s*\(/) {
1324 my ($s, $c) = ctx_statement_block
($linenr, $realcnt, 0);
1326 if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/) {
1327 ERROR
("do not use assignment in if condition ($c)\n" . $herecurr);
1330 # Find out what is on the end of the line after the
1332 substr($s, 0, length($c)) = '';
1335 if (length($c) && $s !~ /^\s*({|;|\/\
*.*\
*\
/)?\s*\\*\s*$/) {
1336 ERROR
("trailing statements should be on next line\n" . $herecurr);
1340 # if and else should not have general statements after it
1341 if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/ &&
1342 $1 !~ /^\s*(?:\sif|{|\\|$)/) {
1343 ERROR
("trailing statements should be on next line\n" . $herecurr);
1346 # Check for }<nl>else {, these must be at the same
1347 # indent level to be relevant to each other.
1348 if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ and
1349 $previndent == $indent) {
1350 ERROR
("else should follow close brace '}'\n" . $hereprev);
1353 #studly caps, commented out until figure out how to distinguish between use of existing and adding new
1354 # if (($line=~/[\w_][a-z\d]+[A-Z]/) and !($line=~/print/)) {
1355 # print "No studly caps, use _\n";
1356 # print "$herecurr";
1360 #no spaces allowed after \ in define
1361 if ($line=~/\#define.*\\\s$/) {
1362 WARN
("Whitepspace after \\ makes next lines useless\n" . $herecurr);
1365 #warn if <asm/foo.h> is #included and <linux/foo.h> is available (uses RAW line)
1366 if ($tree && $rawline =~ m{^.\#\s*include\s*\<asm\/(.*)\.h\>}) {
1367 my $checkfile = "$root/include/linux/$1.h";
1368 if (-f
$checkfile && $1 ne 'irq.h') {
1369 CHK
("Use #include <linux/$1.h> instead of <asm/$1.h>\n" .
1374 # multi-statement macros should be enclosed in a do while loop, grab the
1375 # first statement and ensure its the whole macro if its not enclosed
1376 # in a known goot container
1377 if ($prevline =~ /\#define.*\\/ &&
1378 $prevline !~/(?:do\s+{|\(\{|\{)/ &&
1379 $line !~ /(?:do\s+{|\(\{|\{)/ &&
1380 $line !~ /^.\s*$Declare\s/) {
1381 # Grab the first statement, if that is the entire macro
1382 # its ok. This may start either on the #define line
1388 # If the macro starts on the define line start
1389 # grabbing the statement after the identifier
1390 $prevline =~ m{^(.#\s*define\s*$Ident(?:\([^\)]*\))?\s*)(.*)\\\s*$};
1391 ##print "1<$1> 2<$2>\n";
1392 if (defined $2 && $2 ne '') {
1396 while ($lines[$ln - 1] =~ /^-/) {
1401 my @ctx = ctx_statement
($ln, $cnt, $off);
1402 my $ctx_ln = $ln + $#ctx + 1;
1403 my $ctx = join("\n", @ctx);
1405 # Pull in any empty extension lines.
1406 while ($ctx =~ /\\$/ &&
1407 $lines[$ctx_ln - 1] =~ /^.\s*(?:\\)?$/) {
1408 $ctx .= $lines[$ctx_ln - 1];
1412 if ($ctx =~ /\\$/) {
1414 ERROR
("Macros with multiple statements should be enclosed in a do - while loop\n" . "$here\n$ctx\n");
1416 ERROR
("Macros with complex values should be enclosed in parenthesis\n" . "$here\n$ctx\n");
1421 # check for redundant bracing round if etc
1422 if ($line =~ /\b(if|while|for|else)\b/) {
1423 # Locate the end of the opening statement.
1424 my @control = ctx_statement
($linenr, $realcnt, 0);
1425 my $nr = $linenr + (scalar(@control) - 1);
1426 my $cnt = $realcnt - (scalar(@control) - 1);
1428 my $off = $realcnt - $cnt;
1429 #print "$off: line<$line>end<" . $lines[$nr - 1] . ">\n";
1431 # If this is is a braced statement group check it
1432 if ($lines[$nr - 1] =~ /{\s*$/) {
1433 my ($lvl, @block) = ctx_block_level
($nr, $cnt);
1435 my $stmt = join("\n", @block);
1436 # Drop the diff line leader.
1437 $stmt =~ s/\n./\n/g;
1438 # Drop the code outside the block.
1439 $stmt =~ s/(^[^{]*){\s*//;
1441 $stmt =~ s/\s*}([^}]*$)//;
1444 #print "block<" . join(' ', @block) . "><" . scalar(@block) . ">\n";
1445 #print "stmt<$stmt>\n\n";
1447 # Count the newlines, if there is only one
1448 # then the block should not have {}'s.
1449 my @lines = ($stmt =~ /\n/g);
1450 #print "lines<" . scalar(@lines) . ">\n";
1451 if ($lvl == 0 && scalar(@lines) == 0 &&
1452 $stmt !~ /{/ && $stmt !~ /\bif\b/ &&
1453 $before !~ /}/ && $after !~ /{/) {
1454 my $herectx = "$here\n" . join("\n", @control, @block[1 .. $#block]) . "\n";
1456 WARN
("braces {} are not necessary for single statement blocks\n" . $herectx);
1461 # don't include deprecated include files (uses RAW line)
1462 for my $inc (@dep_includes) {
1463 if ($rawline =~ m@\#\s
*include\s
*\
<$inc>@
) {
1464 ERROR
("Don't use <$inc>: see Documentation/feature-removal-schedule.txt\n" . $herecurr);
1468 # don't use deprecated functions
1469 for my $func (@dep_functions) {
1470 if ($line =~ /\b$func\b/) {
1471 ERROR
("Don't use $func(): see Documentation/feature-removal-schedule.txt\n" . $herecurr);
1475 # no volatiles please
1476 my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
1477 if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
1478 WARN
("Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt\n" . $herecurr);
1481 # SPIN_LOCK_UNLOCKED & RW_LOCK_UNLOCKED are deprecated
1482 if ($line =~ /\b(SPIN_LOCK_UNLOCKED|RW_LOCK_UNLOCKED)/) {
1483 ERROR
("Use of $1 is deprecated: see Documentation/spinlocks.txt\n" . $herecurr);
1487 if ($line =~ /^.#\s*if\s+0\b/) {
1488 CHK
("if this code is redundant consider removing it\n" .
1492 # check for needless kfree() checks
1493 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
1495 if ($line =~ /\bkfree\(\Q$expr\E\);/) {
1496 WARN
("kfree(NULL) is safe this check is probabally not required\n" . $hereprev);
1500 # warn about #ifdefs in C files
1501 # if ($line =~ /^.#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
1502 # print "#ifdef in C files should be avoided\n";
1503 # print "$herecurr";
1507 # warn about spacing in #ifdefs
1508 if ($line =~ /^.#\s*(ifdef|ifndef|elif)\s\s+/) {
1509 ERROR
("exactly one space required after that #$1\n" . $herecurr);
1512 # check for spinlock_t definitions without a comment.
1513 if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/) {
1515 if (!ctx_has_comment
($first_line, $linenr)) {
1516 CHK
("$1 definition without comment\n" . $herecurr);
1519 # check for memory barriers without a comment.
1520 if ($line =~ /\b(mb|rmb|wmb|read_barrier_depends|smp_mb|smp_rmb|smp_wmb|smp_read_barrier_depends)\(/) {
1521 if (!ctx_has_comment
($first_line, $linenr)) {
1522 CHK
("memory barrier without comment\n" . $herecurr);
1525 # check of hardware specific defines
1526 if ($line =~ m@
^.#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
1527 CHK
("architecture specific defines should be avoided\n" . $herecurr);
1530 # check the location of the inline attribute, that it is between
1531 # storage class and type.
1532 if ($line =~ /\b$Type\s+$Inline\b/ ||
1533 $line =~ /\b$Inline\s+$Storage\b/) {
1534 ERROR
("inline keyword should sit between storage class and type\n" . $herecurr);
1537 # Check for __inline__ and __inline, prefer inline
1538 if ($line =~ /\b(__inline__|__inline)\b/) {
1539 WARN
("plain inline is preferred over $1\n" . $herecurr);
1542 # check for new externs in .c files.
1543 if ($line =~ /^.\s*extern\s/ && ($realfile =~ /\.c$/)) {
1544 WARN
("externs should be avoided in .c files\n" . $herecurr);
1547 # checks for new __setup's
1548 if ($rawline =~ /\b__setup\("([^"]*)"/) {
1551 if (!grep(/$name/, @setup_docs)) {
1552 CHK
("__setup appears un-documented -- check Documentation/kernel-parameters.txt\n" . $herecurr);
1556 # check for pointless casting of kmalloc return
1557 if ($line =~ /\*\s*\)\s*k[czm]alloc\b/) {
1558 WARN
("unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
1562 # In mailback mode only produce a report in the negative, for
1563 # things that appear to be patches.
1564 if ($mailback && ($clean == 1 || !$is_patch)) {
1568 # This is not a patch, and we are are in 'no-patch' mode so
1570 if (!$chk_patch && !$is_patch) {
1575 ERROR
("Does not appear to be a unified-diff format patch\n");
1577 if ($is_patch && $chk_signoff && $signoff == 0) {
1578 ERROR
("Missing Signed-off-by: line(s)\n");
1581 print report_dump
();
1583 print "total: $cnt_error errors, $cnt_warn warnings, " .
1584 (($check)?
"$cnt_chk checks, " : "") .
1585 "$cnt_lines lines checked\n";
1586 print "\n" if ($quiet == 0);
1589 if ($clean == 1 && $quiet == 0) {
1590 print "Your patch has no obvious style problems and is ready for submission.\n"
1592 if ($clean == 0 && $quiet == 0) {
1593 print "Your patch has style problems, please review. If any of these errors\n";
1594 print "are false positives report them to the maintainer, see\n";
1595 print "CHECKPATCH in MAINTAINERS.\n";