10a920b5bSAndy Whitcroft#!/usr/bin/perl -w 20a920b5bSAndy Whitcroft# (c) 2001, Dave Jones. <[email protected]> (the file handling bit) 300df344fSAndy Whitcroft# (c) 2005, Joel Schopp <[email protected]> (the ugly bit) 40a920b5bSAndy Whitcroft# (c) 2007, Andy Whitcroft <[email protected]> (new conditions, test suite, etc) 50a920b5bSAndy Whitcroft# Licensed under the terms of the GNU GPL License version 2 60a920b5bSAndy Whitcroft 70a920b5bSAndy Whitcroftuse strict; 80a920b5bSAndy Whitcroft 90a920b5bSAndy Whitcroftmy $P = $0; 1000df344fSAndy Whitcroft$P =~ s@.*/@@g; 110a920b5bSAndy Whitcroft 125fdd23acSAndy Whitcroftmy $V = '0.23'; 130a920b5bSAndy Whitcroft 140a920b5bSAndy Whitcroftuse Getopt::Long qw(:config no_auto_abbrev); 150a920b5bSAndy Whitcroft 160a920b5bSAndy Whitcroftmy $quiet = 0; 170a920b5bSAndy Whitcroftmy $tree = 1; 180a920b5bSAndy Whitcroftmy $chk_signoff = 1; 190a920b5bSAndy Whitcroftmy $chk_patch = 1; 20773647a0SAndy Whitcroftmy $tst_only; 216c72ffaaSAndy Whitcroftmy $emacs = 0; 228905a67cSAndy Whitcroftmy $terse = 0; 236c72ffaaSAndy Whitcroftmy $file = 0; 246c72ffaaSAndy Whitcroftmy $check = 0; 258905a67cSAndy Whitcroftmy $summary = 1; 268905a67cSAndy Whitcroftmy $mailback = 0; 2713214adfSAndy Whitcroftmy $summary_file = 0; 286c72ffaaSAndy Whitcroftmy $root; 29c2fdda0dSAndy Whitcroftmy %debug; 300a920b5bSAndy WhitcroftGetOptions( 316c72ffaaSAndy Whitcroft 'q|quiet+' => \$quiet, 320a920b5bSAndy Whitcroft 'tree!' => \$tree, 330a920b5bSAndy Whitcroft 'signoff!' => \$chk_signoff, 340a920b5bSAndy Whitcroft 'patch!' => \$chk_patch, 356c72ffaaSAndy Whitcroft 'emacs!' => \$emacs, 368905a67cSAndy Whitcroft 'terse!' => \$terse, 376c72ffaaSAndy Whitcroft 'file!' => \$file, 386c72ffaaSAndy Whitcroft 'subjective!' => \$check, 396c72ffaaSAndy Whitcroft 'strict!' => \$check, 406c72ffaaSAndy Whitcroft 'root=s' => \$root, 418905a67cSAndy Whitcroft 'summary!' => \$summary, 428905a67cSAndy Whitcroft 'mailback!' => \$mailback, 4313214adfSAndy Whitcroft 'summary-file!' => \$summary_file, 4413214adfSAndy Whitcroft 45c2fdda0dSAndy Whitcroft 'debug=s' => \%debug, 46773647a0SAndy Whitcroft 'test-only=s' => \$tst_only, 470a920b5bSAndy Whitcroft) or exit; 480a920b5bSAndy Whitcroft 490a920b5bSAndy Whitcroftmy $exit = 0; 500a920b5bSAndy Whitcroft 510a920b5bSAndy Whitcroftif ($#ARGV < 0) { 5200df344fSAndy Whitcroft print "usage: $P [options] patchfile\n"; 530a920b5bSAndy Whitcroft print "version: $V\n"; 540a920b5bSAndy Whitcroft print "options: -q => quiet\n"; 550a920b5bSAndy Whitcroft print " --no-tree => run without a kernel tree\n"; 568905a67cSAndy Whitcroft print " --terse => one line per report\n"; 576c72ffaaSAndy Whitcroft print " --emacs => emacs compile window format\n"; 586c72ffaaSAndy Whitcroft print " --file => check a source file\n"; 596c72ffaaSAndy Whitcroft print " --strict => enable more subjective tests\n"; 606c72ffaaSAndy Whitcroft print " --root => path to the kernel tree root\n"; 6113214adfSAndy Whitcroft print " --no-summary => suppress the per-file summary\n"; 6213214adfSAndy Whitcroft print " --summary-file => include the filename in summary\n"; 630a920b5bSAndy Whitcroft exit(1); 640a920b5bSAndy Whitcroft} 650a920b5bSAndy Whitcroft 66c2fdda0dSAndy Whitcroftmy $dbg_values = 0; 67c2fdda0dSAndy Whitcroftmy $dbg_possible = 0; 687429c690SAndy Whitcroftmy $dbg_type = 0; 69a1ef277eSAndy Whitcroftmy $dbg_attr = 0; 70c2fdda0dSAndy Whitcroftfor my $key (keys %debug) { 71c2fdda0dSAndy Whitcroft eval "\${dbg_$key} = '$debug{$key}';" 72c2fdda0dSAndy Whitcroft} 73c2fdda0dSAndy Whitcroft 748905a67cSAndy Whitcroftif ($terse) { 758905a67cSAndy Whitcroft $emacs = 1; 768905a67cSAndy Whitcroft $quiet++; 778905a67cSAndy Whitcroft} 788905a67cSAndy Whitcroft 796c72ffaaSAndy Whitcroftif ($tree) { 806c72ffaaSAndy Whitcroft if (defined $root) { 816c72ffaaSAndy Whitcroft if (!top_of_kernel_tree($root)) { 826c72ffaaSAndy Whitcroft die "$P: $root: --root does not point at a valid tree\n"; 836c72ffaaSAndy Whitcroft } 846c72ffaaSAndy Whitcroft } else { 856c72ffaaSAndy Whitcroft if (top_of_kernel_tree('.')) { 866c72ffaaSAndy Whitcroft $root = '.'; 876c72ffaaSAndy Whitcroft } elsif ($0 =~ m@(.*)/scripts/[^/]*$@ && 886c72ffaaSAndy Whitcroft top_of_kernel_tree($1)) { 896c72ffaaSAndy Whitcroft $root = $1; 906c72ffaaSAndy Whitcroft } 916c72ffaaSAndy Whitcroft } 926c72ffaaSAndy Whitcroft 936c72ffaaSAndy Whitcroft if (!defined $root) { 940a920b5bSAndy Whitcroft print "Must be run from the top-level dir. of a kernel tree\n"; 950a920b5bSAndy Whitcroft exit(2); 960a920b5bSAndy Whitcroft } 976c72ffaaSAndy Whitcroft} 986c72ffaaSAndy Whitcroft 996c72ffaaSAndy Whitcroftmy $emitted_corrupt = 0; 1006c72ffaaSAndy Whitcroft 1016c72ffaaSAndy Whitcroftour $Ident = qr{[A-Za-z_][A-Za-z\d_]*}; 1026c72ffaaSAndy Whitcroftour $Storage = qr{extern|static|asmlinkage}; 1036c72ffaaSAndy Whitcroftour $Sparse = qr{ 1046c72ffaaSAndy Whitcroft __user| 1056c72ffaaSAndy Whitcroft __kernel| 1066c72ffaaSAndy Whitcroft __force| 1076c72ffaaSAndy Whitcroft __iomem| 1086c72ffaaSAndy Whitcroft __must_check| 1096c72ffaaSAndy Whitcroft __init_refok| 110cf655043SAndy Whitcroft __kprobes 1116c72ffaaSAndy Whitcroft }x; 1126c72ffaaSAndy Whitcroftour $Attribute = qr{ 1136c72ffaaSAndy Whitcroft const| 1146c72ffaaSAndy Whitcroft __read_mostly| 1156c72ffaaSAndy Whitcroft __kprobes| 11624e1d81aSAndy Whitcroft __(?:mem|cpu|dev|)(?:initdata|init)| 11724e1d81aSAndy Whitcroft ____cacheline_aligned| 11824e1d81aSAndy Whitcroft ____cacheline_aligned_in_smp| 11924e1d81aSAndy Whitcroft ____cacheline_internodealigned_in_smp 1206c72ffaaSAndy Whitcroft }x; 121c45dcabdSAndy Whitcroftour $Modifier; 1226c72ffaaSAndy Whitcroftour $Inline = qr{inline|__always_inline|noinline}; 1236c72ffaaSAndy Whitcroftour $Member = qr{->$Ident|\.$Ident|\[[^]]*\]}; 1246c72ffaaSAndy Whitcroftour $Lval = qr{$Ident(?:$Member)*}; 1256c72ffaaSAndy Whitcroft 1266c72ffaaSAndy Whitcroftour $Constant = qr{(?:[0-9]+|0x[0-9a-fA-F]+)[UL]*}; 1276c72ffaaSAndy Whitcroftour $Assignment = qr{(?:\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=)}; 1286c72ffaaSAndy Whitcroftour $Operators = qr{ 1296c72ffaaSAndy Whitcroft <=|>=|==|!=| 1306c72ffaaSAndy Whitcroft =>|->|<<|>>|<|>|!|~| 131c2fdda0dSAndy Whitcroft &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|% 1326c72ffaaSAndy Whitcroft }x; 1336c72ffaaSAndy Whitcroft 1348905a67cSAndy Whitcroftour $NonptrType; 1358905a67cSAndy Whitcroftour $Type; 1368905a67cSAndy Whitcroftour $Declare; 1378905a67cSAndy Whitcroft 138171ae1a4SAndy Whitcroftour $UTF8 = qr { 139171ae1a4SAndy Whitcroft [\x09\x0A\x0D\x20-\x7E] # ASCII 140171ae1a4SAndy Whitcroft | [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte 141171ae1a4SAndy Whitcroft | \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs 142171ae1a4SAndy Whitcroft | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte 143171ae1a4SAndy Whitcroft | \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates 144171ae1a4SAndy Whitcroft | \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3 145171ae1a4SAndy Whitcroft | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15 146171ae1a4SAndy Whitcroft | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16 147171ae1a4SAndy Whitcroft}x; 148171ae1a4SAndy Whitcroft 1498905a67cSAndy Whitcroftour @typeList = ( 1508905a67cSAndy Whitcroft qr{void}, 151c45dcabdSAndy Whitcroft qr{(?:unsigned\s+)?char}, 152c45dcabdSAndy Whitcroft qr{(?:unsigned\s+)?short}, 153c45dcabdSAndy Whitcroft qr{(?:unsigned\s+)?int}, 154c45dcabdSAndy Whitcroft qr{(?:unsigned\s+)?long}, 155c45dcabdSAndy Whitcroft qr{(?:unsigned\s+)?long\s+int}, 156c45dcabdSAndy Whitcroft qr{(?:unsigned\s+)?long\s+long}, 157c45dcabdSAndy Whitcroft qr{(?:unsigned\s+)?long\s+long\s+int}, 1588905a67cSAndy Whitcroft qr{unsigned}, 1598905a67cSAndy Whitcroft qr{float}, 1608905a67cSAndy Whitcroft qr{double}, 1618905a67cSAndy Whitcroft qr{bool}, 1628905a67cSAndy Whitcroft qr{(?:__)?(?:u|s|be|le)(?:8|16|32|64)}, 1638905a67cSAndy Whitcroft qr{struct\s+$Ident}, 1648905a67cSAndy Whitcroft qr{union\s+$Ident}, 1658905a67cSAndy Whitcroft qr{enum\s+$Ident}, 1668905a67cSAndy Whitcroft qr{${Ident}_t}, 1678905a67cSAndy Whitcroft qr{${Ident}_handler}, 1688905a67cSAndy Whitcroft qr{${Ident}_handler_fn}, 1698905a67cSAndy Whitcroft); 170c45dcabdSAndy Whitcroftour @modifierList = ( 171c45dcabdSAndy Whitcroft qr{fastcall}, 172c45dcabdSAndy Whitcroft); 1738905a67cSAndy Whitcroft 1748905a67cSAndy Whitcroftsub build_types { 175d2172eb5SAndy Whitcroft my $mods = "(?x: \n" . join("|\n ", @modifierList) . "\n)"; 176d2172eb5SAndy Whitcroft my $all = "(?x: \n" . join("|\n ", @typeList) . "\n)"; 177c8cb2ca3SAndy Whitcroft $Modifier = qr{(?:$Attribute|$Sparse|$mods)}; 1788905a67cSAndy Whitcroft $NonptrType = qr{ 179d2172eb5SAndy Whitcroft (?:$Modifier\s+|const\s+)* 180cf655043SAndy Whitcroft (?: 181c45dcabdSAndy Whitcroft (?:typeof|__typeof__)\s*\(\s*\**\s*$Ident\s*\)| 182c45dcabdSAndy Whitcroft (?:${all}\b) 183cf655043SAndy Whitcroft ) 184c8cb2ca3SAndy Whitcroft (?:\s+$Modifier|\s+const)* 1858905a67cSAndy Whitcroft }x; 1868905a67cSAndy Whitcroft $Type = qr{ 187c45dcabdSAndy Whitcroft $NonptrType 1888905a67cSAndy Whitcroft (?:\s*\*+\s*const|\s*\*+|(?:\s*\[\s*\])+)? 189c8cb2ca3SAndy Whitcroft (?:\s+$Inline|\s+$Modifier)* 1908905a67cSAndy Whitcroft }x; 1918905a67cSAndy Whitcroft $Declare = qr{(?:$Storage\s+)?$Type}; 1928905a67cSAndy Whitcroft} 1938905a67cSAndy Whitcroftbuild_types(); 1946c72ffaaSAndy Whitcroft 1956c72ffaaSAndy Whitcroft$chk_signoff = 0 if ($file); 1960a920b5bSAndy Whitcroft 1974a0df2efSAndy Whitcroftmy @dep_includes = (); 1984a0df2efSAndy Whitcroftmy @dep_functions = (); 1996c72ffaaSAndy Whitcroftmy $removal = "Documentation/feature-removal-schedule.txt"; 2006c72ffaaSAndy Whitcroftif ($tree && -f "$root/$removal") { 2016c72ffaaSAndy Whitcroft open(REMOVE, "<$root/$removal") || 2026c72ffaaSAndy Whitcroft die "$P: $removal: open failed - $!\n"; 2030a920b5bSAndy Whitcroft while (<REMOVE>) { 204f0a594c1SAndy Whitcroft if (/^Check:\s+(.*\S)/) { 205f0a594c1SAndy Whitcroft for my $entry (split(/[, ]+/, $1)) { 206f0a594c1SAndy Whitcroft if ($entry =~ m@include/(.*)@) { 2074a0df2efSAndy Whitcroft push(@dep_includes, $1); 2084a0df2efSAndy Whitcroft 209f0a594c1SAndy Whitcroft } elsif ($entry !~ m@/@) { 210f0a594c1SAndy Whitcroft push(@dep_functions, $entry); 211f0a594c1SAndy Whitcroft } 2124a0df2efSAndy Whitcroft } 2130a920b5bSAndy Whitcroft } 2140a920b5bSAndy Whitcroft } 2150a920b5bSAndy Whitcroft} 2160a920b5bSAndy Whitcroft 21700df344fSAndy Whitcroftmy @rawlines = (); 218c2fdda0dSAndy Whitcroftmy @lines = (); 219c2fdda0dSAndy Whitcroftmy $vname; 2206c72ffaaSAndy Whitcroftfor my $filename (@ARGV) { 2216c72ffaaSAndy Whitcroft if ($file) { 2226c72ffaaSAndy Whitcroft open(FILE, "diff -u /dev/null $filename|") || 2236c72ffaaSAndy Whitcroft die "$P: $filename: diff failed - $!\n"; 2246c72ffaaSAndy Whitcroft } else { 2256c72ffaaSAndy Whitcroft open(FILE, "<$filename") || 2266c72ffaaSAndy Whitcroft die "$P: $filename: open failed - $!\n"; 2276c72ffaaSAndy Whitcroft } 228c2fdda0dSAndy Whitcroft if ($filename eq '-') { 229c2fdda0dSAndy Whitcroft $vname = 'Your patch'; 230c2fdda0dSAndy Whitcroft } else { 231c2fdda0dSAndy Whitcroft $vname = $filename; 232c2fdda0dSAndy Whitcroft } 2336c72ffaaSAndy Whitcroft while (<FILE>) { 2340a920b5bSAndy Whitcroft chomp; 23500df344fSAndy Whitcroft push(@rawlines, $_); 2366c72ffaaSAndy Whitcroft } 2376c72ffaaSAndy Whitcroft close(FILE); 238c2fdda0dSAndy Whitcroft if (!process($filename)) { 2390a920b5bSAndy Whitcroft $exit = 1; 2400a920b5bSAndy Whitcroft } 24100df344fSAndy Whitcroft @rawlines = (); 24213214adfSAndy Whitcroft @lines = (); 2430a920b5bSAndy Whitcroft} 2440a920b5bSAndy Whitcroft 2450a920b5bSAndy Whitcroftexit($exit); 2460a920b5bSAndy Whitcroft 2470a920b5bSAndy Whitcroftsub top_of_kernel_tree { 2486c72ffaaSAndy Whitcroft my ($root) = @_; 2496c72ffaaSAndy Whitcroft 2506c72ffaaSAndy Whitcroft my @tree_check = ( 2516c72ffaaSAndy Whitcroft "COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile", 2526c72ffaaSAndy Whitcroft "README", "Documentation", "arch", "include", "drivers", 2536c72ffaaSAndy Whitcroft "fs", "init", "ipc", "kernel", "lib", "scripts", 2546c72ffaaSAndy Whitcroft ); 2556c72ffaaSAndy Whitcroft 2566c72ffaaSAndy Whitcroft foreach my $check (@tree_check) { 2576c72ffaaSAndy Whitcroft if (! -e $root . '/' . $check) { 2580a920b5bSAndy Whitcroft return 0; 2590a920b5bSAndy Whitcroft } 2606c72ffaaSAndy Whitcroft } 2616c72ffaaSAndy Whitcroft return 1; 2626c72ffaaSAndy Whitcroft} 2630a920b5bSAndy Whitcroft 2640a920b5bSAndy Whitcroftsub expand_tabs { 2650a920b5bSAndy Whitcroft my ($str) = @_; 2660a920b5bSAndy Whitcroft 2670a920b5bSAndy Whitcroft my $res = ''; 2680a920b5bSAndy Whitcroft my $n = 0; 2690a920b5bSAndy Whitcroft for my $c (split(//, $str)) { 2700a920b5bSAndy Whitcroft if ($c eq "\t") { 2710a920b5bSAndy Whitcroft $res .= ' '; 2720a920b5bSAndy Whitcroft $n++; 2730a920b5bSAndy Whitcroft for (; ($n % 8) != 0; $n++) { 2740a920b5bSAndy Whitcroft $res .= ' '; 2750a920b5bSAndy Whitcroft } 2760a920b5bSAndy Whitcroft next; 2770a920b5bSAndy Whitcroft } 2780a920b5bSAndy Whitcroft $res .= $c; 2790a920b5bSAndy Whitcroft $n++; 2800a920b5bSAndy Whitcroft } 2810a920b5bSAndy Whitcroft 2820a920b5bSAndy Whitcroft return $res; 2830a920b5bSAndy Whitcroft} 2846c72ffaaSAndy Whitcroftsub copy_spacing { 285773647a0SAndy Whitcroft (my $res = shift) =~ tr/\t/ /c; 2866c72ffaaSAndy Whitcroft return $res; 2876c72ffaaSAndy Whitcroft} 2880a920b5bSAndy Whitcroft 2894a0df2efSAndy Whitcroftsub line_stats { 2904a0df2efSAndy Whitcroft my ($line) = @_; 2914a0df2efSAndy Whitcroft 2924a0df2efSAndy Whitcroft # Drop the diff line leader and expand tabs 2934a0df2efSAndy Whitcroft $line =~ s/^.//; 2944a0df2efSAndy Whitcroft $line = expand_tabs($line); 2954a0df2efSAndy Whitcroft 2964a0df2efSAndy Whitcroft # Pick the indent from the front of the line. 2974a0df2efSAndy Whitcroft my ($white) = ($line =~ /^(\s*)/); 2984a0df2efSAndy Whitcroft 2994a0df2efSAndy Whitcroft return (length($line), length($white)); 3004a0df2efSAndy Whitcroft} 3014a0df2efSAndy Whitcroft 302773647a0SAndy Whitcroftmy $sanitise_quote = ''; 303773647a0SAndy Whitcroft 304773647a0SAndy Whitcroftsub sanitise_line_reset { 305773647a0SAndy Whitcroft my ($in_comment) = @_; 306773647a0SAndy Whitcroft 307773647a0SAndy Whitcroft if ($in_comment) { 308773647a0SAndy Whitcroft $sanitise_quote = '*/'; 309773647a0SAndy Whitcroft } else { 310773647a0SAndy Whitcroft $sanitise_quote = ''; 311773647a0SAndy Whitcroft } 312773647a0SAndy Whitcroft} 31300df344fSAndy Whitcroftsub sanitise_line { 31400df344fSAndy Whitcroft my ($line) = @_; 31500df344fSAndy Whitcroft 31600df344fSAndy Whitcroft my $res = ''; 31700df344fSAndy Whitcroft my $l = ''; 31800df344fSAndy Whitcroft 319c2fdda0dSAndy Whitcroft my $qlen = 0; 320773647a0SAndy Whitcroft my $off = 0; 321773647a0SAndy Whitcroft my $c; 32200df344fSAndy Whitcroft 323773647a0SAndy Whitcroft # Always copy over the diff marker. 324773647a0SAndy Whitcroft $res = substr($line, 0, 1); 325773647a0SAndy Whitcroft 326773647a0SAndy Whitcroft for ($off = 1; $off < length($line); $off++) { 327773647a0SAndy Whitcroft $c = substr($line, $off, 1); 328773647a0SAndy Whitcroft 329773647a0SAndy Whitcroft # Comments we are wacking completly including the begin 330773647a0SAndy Whitcroft # and end, all to $;. 331773647a0SAndy Whitcroft if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') { 332773647a0SAndy Whitcroft $sanitise_quote = '*/'; 333773647a0SAndy Whitcroft 334773647a0SAndy Whitcroft substr($res, $off, 2, "$;$;"); 335773647a0SAndy Whitcroft $off++; 33600df344fSAndy Whitcroft next; 337773647a0SAndy Whitcroft } 33881bc0e02SAndy Whitcroft if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') { 339773647a0SAndy Whitcroft $sanitise_quote = ''; 340773647a0SAndy Whitcroft substr($res, $off, 2, "$;$;"); 341773647a0SAndy Whitcroft $off++; 342773647a0SAndy Whitcroft next; 343773647a0SAndy Whitcroft } 344773647a0SAndy Whitcroft 345773647a0SAndy Whitcroft # A \ in a string means ignore the next character. 346773647a0SAndy Whitcroft if (($sanitise_quote eq "'" || $sanitise_quote eq '"') && 347773647a0SAndy Whitcroft $c eq "\\") { 348773647a0SAndy Whitcroft substr($res, $off, 2, 'XX'); 349773647a0SAndy Whitcroft $off++; 350773647a0SAndy Whitcroft next; 351773647a0SAndy Whitcroft } 352773647a0SAndy Whitcroft # Regular quotes. 353773647a0SAndy Whitcroft if ($c eq "'" || $c eq '"') { 354773647a0SAndy Whitcroft if ($sanitise_quote eq '') { 355773647a0SAndy Whitcroft $sanitise_quote = $c; 356773647a0SAndy Whitcroft 357773647a0SAndy Whitcroft substr($res, $off, 1, $c); 358773647a0SAndy Whitcroft next; 359773647a0SAndy Whitcroft } elsif ($sanitise_quote eq $c) { 360773647a0SAndy Whitcroft $sanitise_quote = ''; 36100df344fSAndy Whitcroft } 36200df344fSAndy Whitcroft } 363773647a0SAndy Whitcroft 364773647a0SAndy Whitcroft #print "SQ:$sanitise_quote\n"; 365773647a0SAndy Whitcroft if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") { 366773647a0SAndy Whitcroft substr($res, $off, 1, $;); 367773647a0SAndy Whitcroft } elsif ($off != 0 && $sanitise_quote && $c ne "\t") { 368773647a0SAndy Whitcroft substr($res, $off, 1, 'X'); 36900df344fSAndy Whitcroft } else { 370773647a0SAndy Whitcroft substr($res, $off, 1, $c); 37100df344fSAndy Whitcroft } 372c2fdda0dSAndy Whitcroft } 373c2fdda0dSAndy Whitcroft 374c2fdda0dSAndy Whitcroft # The pathname on a #include may be surrounded by '<' and '>'. 375c45dcabdSAndy Whitcroft if ($res =~ /^.\s*\#\s*include\s+\<(.*)\>/) { 376c2fdda0dSAndy Whitcroft my $clean = 'X' x length($1); 377c2fdda0dSAndy Whitcroft $res =~ s@\<.*\>@<$clean>@; 378c2fdda0dSAndy Whitcroft 379c2fdda0dSAndy Whitcroft # The whole of a #error is a string. 380c45dcabdSAndy Whitcroft } elsif ($res =~ /^.\s*\#\s*(?:error|warning)\s+(.*)\b/) { 381c2fdda0dSAndy Whitcroft my $clean = 'X' x length($1); 382c45dcabdSAndy Whitcroft $res =~ s@(\#\s*(?:error|warning)\s+).*@$1$clean@; 383c2fdda0dSAndy Whitcroft } 384c2fdda0dSAndy Whitcroft 38500df344fSAndy Whitcroft return $res; 38600df344fSAndy Whitcroft} 38700df344fSAndy Whitcroft 3888905a67cSAndy Whitcroftsub ctx_statement_block { 3898905a67cSAndy Whitcroft my ($linenr, $remain, $off) = @_; 3908905a67cSAndy Whitcroft my $line = $linenr - 1; 3918905a67cSAndy Whitcroft my $blk = ''; 3928905a67cSAndy Whitcroft my $soff = $off; 3938905a67cSAndy Whitcroft my $coff = $off - 1; 394773647a0SAndy Whitcroft my $coff_set = 0; 3958905a67cSAndy Whitcroft 39613214adfSAndy Whitcroft my $loff = 0; 39713214adfSAndy Whitcroft 3988905a67cSAndy Whitcroft my $type = ''; 3998905a67cSAndy Whitcroft my $level = 0; 400cf655043SAndy Whitcroft my $p; 4018905a67cSAndy Whitcroft my $c; 4028905a67cSAndy Whitcroft my $len = 0; 40313214adfSAndy Whitcroft 40413214adfSAndy Whitcroft my $remainder; 4058905a67cSAndy Whitcroft while (1) { 406773647a0SAndy Whitcroft #warn "CSB: blk<$blk> remain<$remain>\n"; 4078905a67cSAndy Whitcroft # If we are about to drop off the end, pull in more 4088905a67cSAndy Whitcroft # context. 4098905a67cSAndy Whitcroft if ($off >= $len) { 4108905a67cSAndy Whitcroft for (; $remain > 0; $line++) { 411dea33496SAndy Whitcroft last if (!defined $lines[$line]); 412c2fdda0dSAndy Whitcroft next if ($lines[$line] =~ /^-/); 4138905a67cSAndy Whitcroft $remain--; 41413214adfSAndy Whitcroft $loff = $len; 415c2fdda0dSAndy Whitcroft $blk .= $lines[$line] . "\n"; 4168905a67cSAndy Whitcroft $len = length($blk); 4178905a67cSAndy Whitcroft $line++; 4188905a67cSAndy Whitcroft last; 4198905a67cSAndy Whitcroft } 4208905a67cSAndy Whitcroft # Bail if there is no further context. 4218905a67cSAndy Whitcroft #warn "CSB: blk<$blk> off<$off> len<$len>\n"; 42213214adfSAndy Whitcroft if ($off >= $len) { 4238905a67cSAndy Whitcroft last; 4248905a67cSAndy Whitcroft } 4258905a67cSAndy Whitcroft } 426cf655043SAndy Whitcroft $p = $c; 4278905a67cSAndy Whitcroft $c = substr($blk, $off, 1); 42813214adfSAndy Whitcroft $remainder = substr($blk, $off); 4298905a67cSAndy Whitcroft 430773647a0SAndy Whitcroft #warn "CSB: c<$c> type<$type> level<$level> remainder<$remainder> coff_set<$coff_set>\n"; 4318905a67cSAndy Whitcroft # Statement ends at the ';' or a close '}' at the 4328905a67cSAndy Whitcroft # outermost level. 4338905a67cSAndy Whitcroft if ($level == 0 && $c eq ';') { 4348905a67cSAndy Whitcroft last; 4358905a67cSAndy Whitcroft } 4368905a67cSAndy Whitcroft 43713214adfSAndy Whitcroft # An else is really a conditional as long as its not else if 438773647a0SAndy Whitcroft if ($level == 0 && $coff_set == 0 && 439773647a0SAndy Whitcroft (!defined($p) || $p =~ /(?:\s|\}|\+)/) && 440773647a0SAndy Whitcroft $remainder =~ /^(else)(?:\s|{)/ && 441773647a0SAndy Whitcroft $remainder !~ /^else\s+if\b/) { 442773647a0SAndy Whitcroft $coff = $off + length($1) - 1; 443773647a0SAndy Whitcroft $coff_set = 1; 444773647a0SAndy Whitcroft #warn "CSB: mark coff<$coff> soff<$soff> 1<$1>\n"; 445773647a0SAndy Whitcroft #warn "[" . substr($blk, $soff, $coff - $soff + 1) . "]\n"; 44613214adfSAndy Whitcroft } 44713214adfSAndy Whitcroft 4488905a67cSAndy Whitcroft if (($type eq '' || $type eq '(') && $c eq '(') { 4498905a67cSAndy Whitcroft $level++; 4508905a67cSAndy Whitcroft $type = '('; 4518905a67cSAndy Whitcroft } 4528905a67cSAndy Whitcroft if ($type eq '(' && $c eq ')') { 4538905a67cSAndy Whitcroft $level--; 4548905a67cSAndy Whitcroft $type = ($level != 0)? '(' : ''; 4558905a67cSAndy Whitcroft 4568905a67cSAndy Whitcroft if ($level == 0 && $coff < $soff) { 4578905a67cSAndy Whitcroft $coff = $off; 458773647a0SAndy Whitcroft $coff_set = 1; 459773647a0SAndy Whitcroft #warn "CSB: mark coff<$coff>\n"; 4608905a67cSAndy Whitcroft } 4618905a67cSAndy Whitcroft } 4628905a67cSAndy Whitcroft if (($type eq '' || $type eq '{') && $c eq '{') { 4638905a67cSAndy Whitcroft $level++; 4648905a67cSAndy Whitcroft $type = '{'; 4658905a67cSAndy Whitcroft } 4668905a67cSAndy Whitcroft if ($type eq '{' && $c eq '}') { 4678905a67cSAndy Whitcroft $level--; 4688905a67cSAndy Whitcroft $type = ($level != 0)? '{' : ''; 4698905a67cSAndy Whitcroft 4708905a67cSAndy Whitcroft if ($level == 0) { 4718905a67cSAndy Whitcroft last; 4728905a67cSAndy Whitcroft } 4738905a67cSAndy Whitcroft } 4748905a67cSAndy Whitcroft $off++; 4758905a67cSAndy Whitcroft } 476a3bb97a7SAndy Whitcroft # We are truly at the end, so shuffle to the next line. 47713214adfSAndy Whitcroft if ($off == $len) { 478a3bb97a7SAndy Whitcroft $loff = $len + 1; 47913214adfSAndy Whitcroft $line++; 48013214adfSAndy Whitcroft $remain--; 48113214adfSAndy Whitcroft } 4828905a67cSAndy Whitcroft 4838905a67cSAndy Whitcroft my $statement = substr($blk, $soff, $off - $soff + 1); 4848905a67cSAndy Whitcroft my $condition = substr($blk, $soff, $coff - $soff + 1); 4858905a67cSAndy Whitcroft 4868905a67cSAndy Whitcroft #warn "STATEMENT<$statement>\n"; 4878905a67cSAndy Whitcroft #warn "CONDITION<$condition>\n"; 4888905a67cSAndy Whitcroft 489773647a0SAndy Whitcroft #print "coff<$coff> soff<$off> loff<$loff>\n"; 49013214adfSAndy Whitcroft 49113214adfSAndy Whitcroft return ($statement, $condition, 49213214adfSAndy Whitcroft $line, $remain + 1, $off - $loff + 1, $level); 49313214adfSAndy Whitcroft} 49413214adfSAndy Whitcroft 495cf655043SAndy Whitcroftsub statement_lines { 496cf655043SAndy Whitcroft my ($stmt) = @_; 497cf655043SAndy Whitcroft 498cf655043SAndy Whitcroft # Strip the diff line prefixes and rip blank lines at start and end. 499cf655043SAndy Whitcroft $stmt =~ s/(^|\n)./$1/g; 500cf655043SAndy Whitcroft $stmt =~ s/^\s*//; 501cf655043SAndy Whitcroft $stmt =~ s/\s*$//; 502cf655043SAndy Whitcroft 503cf655043SAndy Whitcroft my @stmt_lines = ($stmt =~ /\n/g); 504cf655043SAndy Whitcroft 505cf655043SAndy Whitcroft return $#stmt_lines + 2; 506cf655043SAndy Whitcroft} 507cf655043SAndy Whitcroft 508cf655043SAndy Whitcroftsub statement_rawlines { 509cf655043SAndy Whitcroft my ($stmt) = @_; 510cf655043SAndy Whitcroft 511cf655043SAndy Whitcroft my @stmt_lines = ($stmt =~ /\n/g); 512cf655043SAndy Whitcroft 513cf655043SAndy Whitcroft return $#stmt_lines + 2; 514cf655043SAndy Whitcroft} 515cf655043SAndy Whitcroft 516cf655043SAndy Whitcroftsub statement_block_size { 517cf655043SAndy Whitcroft my ($stmt) = @_; 518cf655043SAndy Whitcroft 519cf655043SAndy Whitcroft $stmt =~ s/(^|\n)./$1/g; 520cf655043SAndy Whitcroft $stmt =~ s/^\s*{//; 521cf655043SAndy Whitcroft $stmt =~ s/}\s*$//; 522cf655043SAndy Whitcroft $stmt =~ s/^\s*//; 523cf655043SAndy Whitcroft $stmt =~ s/\s*$//; 524cf655043SAndy Whitcroft 525cf655043SAndy Whitcroft my @stmt_lines = ($stmt =~ /\n/g); 526cf655043SAndy Whitcroft my @stmt_statements = ($stmt =~ /;/g); 527cf655043SAndy Whitcroft 528cf655043SAndy Whitcroft my $stmt_lines = $#stmt_lines + 2; 529cf655043SAndy Whitcroft my $stmt_statements = $#stmt_statements + 1; 530cf655043SAndy Whitcroft 531cf655043SAndy Whitcroft if ($stmt_lines > $stmt_statements) { 532cf655043SAndy Whitcroft return $stmt_lines; 533cf655043SAndy Whitcroft } else { 534cf655043SAndy Whitcroft return $stmt_statements; 535cf655043SAndy Whitcroft } 536cf655043SAndy Whitcroft} 537cf655043SAndy Whitcroft 53813214adfSAndy Whitcroftsub ctx_statement_full { 53913214adfSAndy Whitcroft my ($linenr, $remain, $off) = @_; 54013214adfSAndy Whitcroft my ($statement, $condition, $level); 54113214adfSAndy Whitcroft 54213214adfSAndy Whitcroft my (@chunks); 54313214adfSAndy Whitcroft 544cf655043SAndy Whitcroft # Grab the first conditional/block pair. 54513214adfSAndy Whitcroft ($statement, $condition, $linenr, $remain, $off, $level) = 54613214adfSAndy Whitcroft ctx_statement_block($linenr, $remain, $off); 547773647a0SAndy Whitcroft #print "F: c<$condition> s<$statement> remain<$remain>\n"; 54813214adfSAndy Whitcroft push(@chunks, [ $condition, $statement ]); 549cf655043SAndy Whitcroft if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) { 550cf655043SAndy Whitcroft return ($level, $linenr, @chunks); 551cf655043SAndy Whitcroft } 552cf655043SAndy Whitcroft 553cf655043SAndy Whitcroft # Pull in the following conditional/block pairs and see if they 554cf655043SAndy Whitcroft # could continue the statement. 555cf655043SAndy Whitcroft for (;;) { 55613214adfSAndy Whitcroft ($statement, $condition, $linenr, $remain, $off, $level) = 55713214adfSAndy Whitcroft ctx_statement_block($linenr, $remain, $off); 558cf655043SAndy Whitcroft #print "C: c<$condition> s<$statement> remain<$remain>\n"; 559773647a0SAndy Whitcroft last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s)); 560cf655043SAndy Whitcroft #print "C: push\n"; 561cf655043SAndy Whitcroft push(@chunks, [ $condition, $statement ]); 56213214adfSAndy Whitcroft } 56313214adfSAndy Whitcroft 56413214adfSAndy Whitcroft return ($level, $linenr, @chunks); 5658905a67cSAndy Whitcroft} 5668905a67cSAndy Whitcroft 5674a0df2efSAndy Whitcroftsub ctx_block_get { 568f0a594c1SAndy Whitcroft my ($linenr, $remain, $outer, $open, $close, $off) = @_; 5694a0df2efSAndy Whitcroft my $line; 5704a0df2efSAndy Whitcroft my $start = $linenr - 1; 5714a0df2efSAndy Whitcroft my $blk = ''; 5724a0df2efSAndy Whitcroft my @o; 5734a0df2efSAndy Whitcroft my @c; 5744a0df2efSAndy Whitcroft my @res = (); 5754a0df2efSAndy Whitcroft 576f0a594c1SAndy Whitcroft my $level = 0; 57700df344fSAndy Whitcroft for ($line = $start; $remain > 0; $line++) { 57800df344fSAndy Whitcroft next if ($rawlines[$line] =~ /^-/); 57900df344fSAndy Whitcroft $remain--; 58000df344fSAndy Whitcroft 58100df344fSAndy Whitcroft $blk .= $rawlines[$line]; 582f0a594c1SAndy Whitcroft foreach my $c (split(//, $rawlines[$line])) { 583f0a594c1SAndy Whitcroft ##print "C<$c>L<$level><$open$close>O<$off>\n"; 584f0a594c1SAndy Whitcroft if ($off > 0) { 585f0a594c1SAndy Whitcroft $off--; 586f0a594c1SAndy Whitcroft next; 587f0a594c1SAndy Whitcroft } 5884a0df2efSAndy Whitcroft 589f0a594c1SAndy Whitcroft if ($c eq $close && $level > 0) { 590f0a594c1SAndy Whitcroft $level--; 591f0a594c1SAndy Whitcroft last if ($level == 0); 592f0a594c1SAndy Whitcroft } elsif ($c eq $open) { 593f0a594c1SAndy Whitcroft $level++; 594f0a594c1SAndy Whitcroft } 595f0a594c1SAndy Whitcroft } 5964a0df2efSAndy Whitcroft 597f0a594c1SAndy Whitcroft if (!$outer || $level <= 1) { 59800df344fSAndy Whitcroft push(@res, $rawlines[$line]); 5994a0df2efSAndy Whitcroft } 6004a0df2efSAndy Whitcroft 601f0a594c1SAndy Whitcroft last if ($level == 0); 6024a0df2efSAndy Whitcroft } 6034a0df2efSAndy Whitcroft 604f0a594c1SAndy Whitcroft return ($level, @res); 6054a0df2efSAndy Whitcroft} 6064a0df2efSAndy Whitcroftsub ctx_block_outer { 6074a0df2efSAndy Whitcroft my ($linenr, $remain) = @_; 6084a0df2efSAndy Whitcroft 609f0a594c1SAndy Whitcroft my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0); 610f0a594c1SAndy Whitcroft return @r; 6114a0df2efSAndy Whitcroft} 6124a0df2efSAndy Whitcroftsub ctx_block { 6134a0df2efSAndy Whitcroft my ($linenr, $remain) = @_; 6144a0df2efSAndy Whitcroft 615f0a594c1SAndy Whitcroft my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0); 616f0a594c1SAndy Whitcroft return @r; 617653d4876SAndy Whitcroft} 618653d4876SAndy Whitcroftsub ctx_statement { 619f0a594c1SAndy Whitcroft my ($linenr, $remain, $off) = @_; 620f0a594c1SAndy Whitcroft 621f0a594c1SAndy Whitcroft my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off); 622f0a594c1SAndy Whitcroft return @r; 623f0a594c1SAndy Whitcroft} 624f0a594c1SAndy Whitcroftsub ctx_block_level { 625653d4876SAndy Whitcroft my ($linenr, $remain) = @_; 626653d4876SAndy Whitcroft 627f0a594c1SAndy Whitcroft return ctx_block_get($linenr, $remain, 0, '{', '}', 0); 6284a0df2efSAndy Whitcroft} 6299c0ca6f9SAndy Whitcroftsub ctx_statement_level { 6309c0ca6f9SAndy Whitcroft my ($linenr, $remain, $off) = @_; 6319c0ca6f9SAndy Whitcroft 6329c0ca6f9SAndy Whitcroft return ctx_block_get($linenr, $remain, 0, '(', ')', $off); 6339c0ca6f9SAndy Whitcroft} 6344a0df2efSAndy Whitcroft 6354a0df2efSAndy Whitcroftsub ctx_locate_comment { 6364a0df2efSAndy Whitcroft my ($first_line, $end_line) = @_; 6374a0df2efSAndy Whitcroft 6384a0df2efSAndy Whitcroft # Catch a comment on the end of the line itself. 639beae6332SAndy Whitcroft my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@); 6404a0df2efSAndy Whitcroft return $current_comment if (defined $current_comment); 6414a0df2efSAndy Whitcroft 6424a0df2efSAndy Whitcroft # Look through the context and try and figure out if there is a 6434a0df2efSAndy Whitcroft # comment. 6444a0df2efSAndy Whitcroft my $in_comment = 0; 6454a0df2efSAndy Whitcroft $current_comment = ''; 6464a0df2efSAndy Whitcroft for (my $linenr = $first_line; $linenr < $end_line; $linenr++) { 64700df344fSAndy Whitcroft my $line = $rawlines[$linenr - 1]; 64800df344fSAndy Whitcroft #warn " $line\n"; 6494a0df2efSAndy Whitcroft if ($linenr == $first_line and $line =~ m@^.\s*\*@) { 6504a0df2efSAndy Whitcroft $in_comment = 1; 6514a0df2efSAndy Whitcroft } 6524a0df2efSAndy Whitcroft if ($line =~ m@/\*@) { 6534a0df2efSAndy Whitcroft $in_comment = 1; 6544a0df2efSAndy Whitcroft } 6554a0df2efSAndy Whitcroft if (!$in_comment && $current_comment ne '') { 6564a0df2efSAndy Whitcroft $current_comment = ''; 6574a0df2efSAndy Whitcroft } 6584a0df2efSAndy Whitcroft $current_comment .= $line . "\n" if ($in_comment); 6594a0df2efSAndy Whitcroft if ($line =~ m@\*/@) { 6604a0df2efSAndy Whitcroft $in_comment = 0; 6614a0df2efSAndy Whitcroft } 6624a0df2efSAndy Whitcroft } 6634a0df2efSAndy Whitcroft 6644a0df2efSAndy Whitcroft chomp($current_comment); 6654a0df2efSAndy Whitcroft return($current_comment); 6664a0df2efSAndy Whitcroft} 6674a0df2efSAndy Whitcroftsub ctx_has_comment { 6684a0df2efSAndy Whitcroft my ($first_line, $end_line) = @_; 6694a0df2efSAndy Whitcroft my $cmt = ctx_locate_comment($first_line, $end_line); 6704a0df2efSAndy Whitcroft 67100df344fSAndy Whitcroft ##print "LINE: $rawlines[$end_line - 1 ]\n"; 6724a0df2efSAndy Whitcroft ##print "CMMT: $cmt\n"; 6734a0df2efSAndy Whitcroft 6744a0df2efSAndy Whitcroft return ($cmt ne ''); 6754a0df2efSAndy Whitcroft} 6764a0df2efSAndy Whitcroft 6774d001e4dSAndy Whitcroftsub raw_line { 6784d001e4dSAndy Whitcroft my ($linenr, $cnt) = @_; 6794d001e4dSAndy Whitcroft 6804d001e4dSAndy Whitcroft my $offset = $linenr - 1; 6814d001e4dSAndy Whitcroft $cnt++; 6824d001e4dSAndy Whitcroft 6834d001e4dSAndy Whitcroft my $line; 6844d001e4dSAndy Whitcroft while ($cnt) { 6854d001e4dSAndy Whitcroft $line = $rawlines[$offset++]; 6864d001e4dSAndy Whitcroft next if (defined($line) && $line =~ /^-/); 6874d001e4dSAndy Whitcroft $cnt--; 6884d001e4dSAndy Whitcroft } 6894d001e4dSAndy Whitcroft 6904d001e4dSAndy Whitcroft return $line; 6914d001e4dSAndy Whitcroft} 6924d001e4dSAndy Whitcroft 6930a920b5bSAndy Whitcroftsub cat_vet { 6940a920b5bSAndy Whitcroft my ($vet) = @_; 6959c0ca6f9SAndy Whitcroft my ($res, $coded); 6960a920b5bSAndy Whitcroft 6979c0ca6f9SAndy Whitcroft $res = ''; 6986c72ffaaSAndy Whitcroft while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) { 6996c72ffaaSAndy Whitcroft $res .= $1; 7006c72ffaaSAndy Whitcroft if ($2 ne '') { 7019c0ca6f9SAndy Whitcroft $coded = sprintf("^%c", unpack('C', $2) + 64); 7026c72ffaaSAndy Whitcroft $res .= $coded; 7036c72ffaaSAndy Whitcroft } 7049c0ca6f9SAndy Whitcroft } 7059c0ca6f9SAndy Whitcroft $res =~ s/$/\$/; 7060a920b5bSAndy Whitcroft 7079c0ca6f9SAndy Whitcroft return $res; 7080a920b5bSAndy Whitcroft} 7090a920b5bSAndy Whitcroft 710c2fdda0dSAndy Whitcroftmy $av_preprocessor = 0; 711cf655043SAndy Whitcroftmy $av_pending; 712c2fdda0dSAndy Whitcroftmy @av_paren_type; 7131f65f947SAndy Whitcroftmy $av_pend_colon; 714c2fdda0dSAndy Whitcroft 715c2fdda0dSAndy Whitcroftsub annotate_reset { 716c2fdda0dSAndy Whitcroft $av_preprocessor = 0; 717cf655043SAndy Whitcroft $av_pending = '_'; 718cf655043SAndy Whitcroft @av_paren_type = ('E'); 7191f65f947SAndy Whitcroft $av_pend_colon = 'O'; 720c2fdda0dSAndy Whitcroft} 721c2fdda0dSAndy Whitcroft 7226c72ffaaSAndy Whitcroftsub annotate_values { 7236c72ffaaSAndy Whitcroft my ($stream, $type) = @_; 7246c72ffaaSAndy Whitcroft 7256c72ffaaSAndy Whitcroft my $res; 7261f65f947SAndy Whitcroft my $var = '_' x length($stream); 7276c72ffaaSAndy Whitcroft my $cur = $stream; 7286c72ffaaSAndy Whitcroft 729c2fdda0dSAndy Whitcroft print "$stream\n" if ($dbg_values > 1); 7306c72ffaaSAndy Whitcroft 7316c72ffaaSAndy Whitcroft while (length($cur)) { 732773647a0SAndy Whitcroft @av_paren_type = ('E') if ($#av_paren_type < 0); 733cf655043SAndy Whitcroft print " <" . join('', @av_paren_type) . 734171ae1a4SAndy Whitcroft "> <$type> <$av_pending>" if ($dbg_values > 1); 7356c72ffaaSAndy Whitcroft if ($cur =~ /^(\s+)/o) { 736c2fdda0dSAndy Whitcroft print "WS($1)\n" if ($dbg_values > 1); 737c2fdda0dSAndy Whitcroft if ($1 =~ /\n/ && $av_preprocessor) { 738cf655043SAndy Whitcroft $type = pop(@av_paren_type); 739c2fdda0dSAndy Whitcroft $av_preprocessor = 0; 7406c72ffaaSAndy Whitcroft } 7416c72ffaaSAndy Whitcroft 7428ea3eb9aSAndy Whitcroft } elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\()/) { 743c2fdda0dSAndy Whitcroft print "DECLARE($1)\n" if ($dbg_values > 1); 7446c72ffaaSAndy Whitcroft $type = 'T'; 7456c72ffaaSAndy Whitcroft 746389a2fe5SAndy Whitcroft } elsif ($cur =~ /^($Modifier)\s*/) { 747389a2fe5SAndy Whitcroft print "MODIFIER($1)\n" if ($dbg_values > 1); 748389a2fe5SAndy Whitcroft $type = 'T'; 749389a2fe5SAndy Whitcroft 750c45dcabdSAndy Whitcroft } elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) { 751171ae1a4SAndy Whitcroft print "DEFINE($1,$2)\n" if ($dbg_values > 1); 752c2fdda0dSAndy Whitcroft $av_preprocessor = 1; 753171ae1a4SAndy Whitcroft push(@av_paren_type, $type); 754171ae1a4SAndy Whitcroft if ($2 ne '') { 755cf655043SAndy Whitcroft $av_pending = 'N'; 756171ae1a4SAndy Whitcroft } 757171ae1a4SAndy Whitcroft $type = 'E'; 758171ae1a4SAndy Whitcroft 759c45dcabdSAndy Whitcroft } elsif ($cur =~ /^(\#\s*(?:undef\s*$Ident|include\b))/o) { 760171ae1a4SAndy Whitcroft print "UNDEF($1)\n" if ($dbg_values > 1); 761171ae1a4SAndy Whitcroft $av_preprocessor = 1; 762171ae1a4SAndy Whitcroft push(@av_paren_type, $type); 7636c72ffaaSAndy Whitcroft 764c45dcabdSAndy Whitcroft } elsif ($cur =~ /^(\#\s*(?:ifdef|ifndef|if))/o) { 765cf655043SAndy Whitcroft print "PRE_START($1)\n" if ($dbg_values > 1); 766c2fdda0dSAndy Whitcroft $av_preprocessor = 1; 767cf655043SAndy Whitcroft 768cf655043SAndy Whitcroft push(@av_paren_type, $type); 769cf655043SAndy Whitcroft push(@av_paren_type, $type); 770171ae1a4SAndy Whitcroft $type = 'E'; 771cf655043SAndy Whitcroft 772c45dcabdSAndy Whitcroft } elsif ($cur =~ /^(\#\s*(?:else|elif))/o) { 773cf655043SAndy Whitcroft print "PRE_RESTART($1)\n" if ($dbg_values > 1); 774cf655043SAndy Whitcroft $av_preprocessor = 1; 775cf655043SAndy Whitcroft 776cf655043SAndy Whitcroft push(@av_paren_type, $av_paren_type[$#av_paren_type]); 777cf655043SAndy Whitcroft 778171ae1a4SAndy Whitcroft $type = 'E'; 779cf655043SAndy Whitcroft 780c45dcabdSAndy Whitcroft } elsif ($cur =~ /^(\#\s*(?:endif))/o) { 781cf655043SAndy Whitcroft print "PRE_END($1)\n" if ($dbg_values > 1); 782cf655043SAndy Whitcroft 783cf655043SAndy Whitcroft $av_preprocessor = 1; 784cf655043SAndy Whitcroft 785cf655043SAndy Whitcroft # Assume all arms of the conditional end as this 786cf655043SAndy Whitcroft # one does, and continue as if the #endif was not here. 787cf655043SAndy Whitcroft pop(@av_paren_type); 788cf655043SAndy Whitcroft push(@av_paren_type, $type); 789171ae1a4SAndy Whitcroft $type = 'E'; 7906c72ffaaSAndy Whitcroft 7916c72ffaaSAndy Whitcroft } elsif ($cur =~ /^(\\\n)/o) { 792c2fdda0dSAndy Whitcroft print "PRECONT($1)\n" if ($dbg_values > 1); 7936c72ffaaSAndy Whitcroft 794171ae1a4SAndy Whitcroft } elsif ($cur =~ /^(__attribute__)\s*\(?/o) { 795171ae1a4SAndy Whitcroft print "ATTR($1)\n" if ($dbg_values > 1); 796171ae1a4SAndy Whitcroft $av_pending = $type; 797171ae1a4SAndy Whitcroft $type = 'N'; 798171ae1a4SAndy Whitcroft 7996c72ffaaSAndy Whitcroft } elsif ($cur =~ /^(sizeof)\s*(\()?/o) { 800c2fdda0dSAndy Whitcroft print "SIZEOF($1)\n" if ($dbg_values > 1); 8016c72ffaaSAndy Whitcroft if (defined $2) { 802cf655043SAndy Whitcroft $av_pending = 'V'; 8036c72ffaaSAndy Whitcroft } 8046c72ffaaSAndy Whitcroft $type = 'N'; 8056c72ffaaSAndy Whitcroft 80614b111c1SAndy Whitcroft } elsif ($cur =~ /^(if|while|for)\b/o) { 807c2fdda0dSAndy Whitcroft print "COND($1)\n" if ($dbg_values > 1); 80814b111c1SAndy Whitcroft $av_pending = 'E'; 8096c72ffaaSAndy Whitcroft $type = 'N'; 8106c72ffaaSAndy Whitcroft 8111f65f947SAndy Whitcroft } elsif ($cur =~/^(case)/o) { 8121f65f947SAndy Whitcroft print "CASE($1)\n" if ($dbg_values > 1); 8131f65f947SAndy Whitcroft $av_pend_colon = 'C'; 8141f65f947SAndy Whitcroft $type = 'N'; 8151f65f947SAndy Whitcroft 81614b111c1SAndy Whitcroft } elsif ($cur =~/^(return|else|goto|typeof|__typeof__)\b/o) { 817c2fdda0dSAndy Whitcroft print "KEYWORD($1)\n" if ($dbg_values > 1); 8186c72ffaaSAndy Whitcroft $type = 'N'; 8196c72ffaaSAndy Whitcroft 8206c72ffaaSAndy Whitcroft } elsif ($cur =~ /^(\()/o) { 821c2fdda0dSAndy Whitcroft print "PAREN('$1')\n" if ($dbg_values > 1); 822cf655043SAndy Whitcroft push(@av_paren_type, $av_pending); 823cf655043SAndy Whitcroft $av_pending = '_'; 8246c72ffaaSAndy Whitcroft $type = 'N'; 8256c72ffaaSAndy Whitcroft 8266c72ffaaSAndy Whitcroft } elsif ($cur =~ /^(\))/o) { 827cf655043SAndy Whitcroft my $new_type = pop(@av_paren_type); 828cf655043SAndy Whitcroft if ($new_type ne '_') { 829cf655043SAndy Whitcroft $type = $new_type; 830c2fdda0dSAndy Whitcroft print "PAREN('$1') -> $type\n" 831c2fdda0dSAndy Whitcroft if ($dbg_values > 1); 8326c72ffaaSAndy Whitcroft } else { 833c2fdda0dSAndy Whitcroft print "PAREN('$1')\n" if ($dbg_values > 1); 8346c72ffaaSAndy Whitcroft } 8356c72ffaaSAndy Whitcroft 836c8cb2ca3SAndy Whitcroft } elsif ($cur =~ /^($Ident)\s*\(/o) { 837c2fdda0dSAndy Whitcroft print "FUNC($1)\n" if ($dbg_values > 1); 838c8cb2ca3SAndy Whitcroft $type = 'V'; 839cf655043SAndy Whitcroft $av_pending = 'V'; 8406c72ffaaSAndy Whitcroft 8411f65f947SAndy Whitcroft } elsif ($cur =~ /^($Ident\s*):/) { 8421f65f947SAndy Whitcroft if ($type eq 'E') { 8431f65f947SAndy Whitcroft $av_pend_colon = 'L'; 8441f65f947SAndy Whitcroft } elsif ($type eq 'T') { 8451f65f947SAndy Whitcroft $av_pend_colon = 'B'; 8461f65f947SAndy Whitcroft } 8471f65f947SAndy Whitcroft print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1); 8481f65f947SAndy Whitcroft $type = 'V'; 8491f65f947SAndy Whitcroft 8506c72ffaaSAndy Whitcroft } elsif ($cur =~ /^($Ident|$Constant)/o) { 851c2fdda0dSAndy Whitcroft print "IDENT($1)\n" if ($dbg_values > 1); 8526c72ffaaSAndy Whitcroft $type = 'V'; 8536c72ffaaSAndy Whitcroft 8546c72ffaaSAndy Whitcroft } elsif ($cur =~ /^($Assignment)/o) { 855c2fdda0dSAndy Whitcroft print "ASSIGN($1)\n" if ($dbg_values > 1); 8566c72ffaaSAndy Whitcroft $type = 'N'; 8576c72ffaaSAndy Whitcroft 858cf655043SAndy Whitcroft } elsif ($cur =~/^(;|{|})/) { 859c2fdda0dSAndy Whitcroft print "END($1)\n" if ($dbg_values > 1); 86013214adfSAndy Whitcroft $type = 'E'; 8611f65f947SAndy Whitcroft $av_pend_colon = 'O'; 86213214adfSAndy Whitcroft 8631f65f947SAndy Whitcroft } elsif ($cur =~ /^(\?)/o) { 8641f65f947SAndy Whitcroft print "QUESTION($1)\n" if ($dbg_values > 1); 8651f65f947SAndy Whitcroft $type = 'N'; 8661f65f947SAndy Whitcroft 8671f65f947SAndy Whitcroft } elsif ($cur =~ /^(:)/o) { 8681f65f947SAndy Whitcroft print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1); 8691f65f947SAndy Whitcroft 8701f65f947SAndy Whitcroft substr($var, length($res), 1, $av_pend_colon); 8711f65f947SAndy Whitcroft if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') { 8721f65f947SAndy Whitcroft $type = 'E'; 8731f65f947SAndy Whitcroft } else { 8741f65f947SAndy Whitcroft $type = 'N'; 8751f65f947SAndy Whitcroft } 8761f65f947SAndy Whitcroft $av_pend_colon = 'O'; 8771f65f947SAndy Whitcroft 8781f65f947SAndy Whitcroft } elsif ($cur =~ /^(;|\[)/o) { 87913214adfSAndy Whitcroft print "CLOSE($1)\n" if ($dbg_values > 1); 8806c72ffaaSAndy Whitcroft $type = 'N'; 8816c72ffaaSAndy Whitcroft 8820d413866SAndy Whitcroft } elsif ($cur =~ /^(-(?![->])|\+(?!\+)|\*|\&\&|\&)/o) { 88374048ed8SAndy Whitcroft my $variant; 88474048ed8SAndy Whitcroft 88574048ed8SAndy Whitcroft print "OPV($1)\n" if ($dbg_values > 1); 88674048ed8SAndy Whitcroft if ($type eq 'V') { 88774048ed8SAndy Whitcroft $variant = 'B'; 88874048ed8SAndy Whitcroft } else { 88974048ed8SAndy Whitcroft $variant = 'U'; 89074048ed8SAndy Whitcroft } 89174048ed8SAndy Whitcroft 89274048ed8SAndy Whitcroft substr($var, length($res), 1, $variant); 89374048ed8SAndy Whitcroft $type = 'N'; 89474048ed8SAndy Whitcroft 8956c72ffaaSAndy Whitcroft } elsif ($cur =~ /^($Operators)/o) { 896c2fdda0dSAndy Whitcroft print "OP($1)\n" if ($dbg_values > 1); 8976c72ffaaSAndy Whitcroft if ($1 ne '++' && $1 ne '--') { 8986c72ffaaSAndy Whitcroft $type = 'N'; 8996c72ffaaSAndy Whitcroft } 9006c72ffaaSAndy Whitcroft 9016c72ffaaSAndy Whitcroft } elsif ($cur =~ /(^.)/o) { 902c2fdda0dSAndy Whitcroft print "C($1)\n" if ($dbg_values > 1); 9036c72ffaaSAndy Whitcroft } 9046c72ffaaSAndy Whitcroft if (defined $1) { 9056c72ffaaSAndy Whitcroft $cur = substr($cur, length($1)); 9066c72ffaaSAndy Whitcroft $res .= $type x length($1); 9076c72ffaaSAndy Whitcroft } 9086c72ffaaSAndy Whitcroft } 9096c72ffaaSAndy Whitcroft 9101f65f947SAndy Whitcroft return ($res, $var); 9116c72ffaaSAndy Whitcroft} 9126c72ffaaSAndy Whitcroft 9138905a67cSAndy Whitcroftsub possible { 91413214adfSAndy Whitcroft my ($possible, $line) = @_; 9158905a67cSAndy Whitcroft 9160776e594SAndy Whitcroft print "CHECK<$possible> ($line)\n" if ($dbg_possible > 2); 9170776e594SAndy Whitcroft if ($possible !~ /(?: 9180776e594SAndy Whitcroft ^(?: 9190776e594SAndy Whitcroft $Modifier| 9200776e594SAndy Whitcroft $Storage| 9210776e594SAndy Whitcroft $Type| 9220776e594SAndy Whitcroft DEFINE_\S+| 9230776e594SAndy Whitcroft goto| 9240776e594SAndy Whitcroft return| 9250776e594SAndy Whitcroft case| 9260776e594SAndy Whitcroft else| 9270776e594SAndy Whitcroft asm|__asm__| 9280776e594SAndy Whitcroft do 9290776e594SAndy Whitcroft )$| 9300776e594SAndy Whitcroft ^(?:typedef|struct|enum)\b 9310776e594SAndy Whitcroft )/x) { 932c45dcabdSAndy Whitcroft # Check for modifiers. 933c45dcabdSAndy Whitcroft $possible =~ s/\s*$Storage\s*//g; 934c45dcabdSAndy Whitcroft $possible =~ s/\s*$Sparse\s*//g; 935c45dcabdSAndy Whitcroft if ($possible =~ /^\s*$/) { 936c45dcabdSAndy Whitcroft 937c45dcabdSAndy Whitcroft } elsif ($possible =~ /\s/) { 938c45dcabdSAndy Whitcroft $possible =~ s/\s*$Type\s*//g; 939d2506586SAndy Whitcroft for my $modifier (split(' ', $possible)) { 940d2506586SAndy Whitcroft warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible); 941d2506586SAndy Whitcroft push(@modifierList, $modifier); 942d2506586SAndy Whitcroft } 943c45dcabdSAndy Whitcroft 944c45dcabdSAndy Whitcroft } else { 94513214adfSAndy Whitcroft warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible); 9468905a67cSAndy Whitcroft push(@typeList, $possible); 947c45dcabdSAndy Whitcroft } 9488905a67cSAndy Whitcroft build_types(); 9490776e594SAndy Whitcroft } else { 9500776e594SAndy Whitcroft warn "NOTPOSS: $possible ($line)\n" if ($dbg_possible > 1); 9518905a67cSAndy Whitcroft } 9528905a67cSAndy Whitcroft} 9538905a67cSAndy Whitcroft 9546c72ffaaSAndy Whitcroftmy $prefix = ''; 9556c72ffaaSAndy Whitcroft 956f0a594c1SAndy Whitcroftsub report { 957773647a0SAndy Whitcroft if (defined $tst_only && $_[0] !~ /\Q$tst_only\E/) { 958773647a0SAndy Whitcroft return 0; 959773647a0SAndy Whitcroft } 9608905a67cSAndy Whitcroft my $line = $prefix . $_[0]; 9618905a67cSAndy Whitcroft 9628905a67cSAndy Whitcroft $line = (split('\n', $line))[0] . "\n" if ($terse); 9638905a67cSAndy Whitcroft 96413214adfSAndy Whitcroft push(our @report, $line); 965773647a0SAndy Whitcroft 966773647a0SAndy Whitcroft return 1; 967f0a594c1SAndy Whitcroft} 968f0a594c1SAndy Whitcroftsub report_dump { 96913214adfSAndy Whitcroft our @report; 970f0a594c1SAndy Whitcroft} 971de7d4f0eSAndy Whitcroftsub ERROR { 972773647a0SAndy Whitcroft if (report("ERROR: $_[0]\n")) { 973de7d4f0eSAndy Whitcroft our $clean = 0; 9746c72ffaaSAndy Whitcroft our $cnt_error++; 975de7d4f0eSAndy Whitcroft } 976773647a0SAndy Whitcroft} 977de7d4f0eSAndy Whitcroftsub WARN { 978773647a0SAndy Whitcroft if (report("WARNING: $_[0]\n")) { 979de7d4f0eSAndy Whitcroft our $clean = 0; 9806c72ffaaSAndy Whitcroft our $cnt_warn++; 981de7d4f0eSAndy Whitcroft } 982773647a0SAndy Whitcroft} 983de7d4f0eSAndy Whitcroftsub CHK { 984773647a0SAndy Whitcroft if ($check && report("CHECK: $_[0]\n")) { 985de7d4f0eSAndy Whitcroft our $clean = 0; 9866c72ffaaSAndy Whitcroft our $cnt_chk++; 9876c72ffaaSAndy Whitcroft } 988de7d4f0eSAndy Whitcroft} 989de7d4f0eSAndy Whitcroft 9906ecd9674SAndy Whitcroftsub check_absolute_file { 9916ecd9674SAndy Whitcroft my ($absolute, $herecurr) = @_; 9926ecd9674SAndy Whitcroft my $file = $absolute; 9936ecd9674SAndy Whitcroft 9946ecd9674SAndy Whitcroft ##print "absolute<$absolute>\n"; 9956ecd9674SAndy Whitcroft 9966ecd9674SAndy Whitcroft # See if any suffix of this path is a path within the tree. 9976ecd9674SAndy Whitcroft while ($file =~ s@^[^/]*/@@) { 9986ecd9674SAndy Whitcroft if (-f "$root/$file") { 9996ecd9674SAndy Whitcroft ##print "file<$file>\n"; 10006ecd9674SAndy Whitcroft last; 10016ecd9674SAndy Whitcroft } 10026ecd9674SAndy Whitcroft } 10036ecd9674SAndy Whitcroft if (! -f _) { 10046ecd9674SAndy Whitcroft return 0; 10056ecd9674SAndy Whitcroft } 10066ecd9674SAndy Whitcroft 10076ecd9674SAndy Whitcroft # It is, so see if the prefix is acceptable. 10086ecd9674SAndy Whitcroft my $prefix = $absolute; 10096ecd9674SAndy Whitcroft substr($prefix, -length($file)) = ''; 10106ecd9674SAndy Whitcroft 10116ecd9674SAndy Whitcroft ##print "prefix<$prefix>\n"; 10126ecd9674SAndy Whitcroft if ($prefix ne ".../") { 10136ecd9674SAndy Whitcroft WARN("use relative pathname instead of absolute in changelog text\n" . $herecurr); 10146ecd9674SAndy Whitcroft } 10156ecd9674SAndy Whitcroft} 10166ecd9674SAndy Whitcroft 10170a920b5bSAndy Whitcroftsub process { 10180a920b5bSAndy Whitcroft my $filename = shift; 10190a920b5bSAndy Whitcroft 10200a920b5bSAndy Whitcroft my $linenr=0; 10210a920b5bSAndy Whitcroft my $prevline=""; 1022c2fdda0dSAndy Whitcroft my $prevrawline=""; 10230a920b5bSAndy Whitcroft my $stashline=""; 1024c2fdda0dSAndy Whitcroft my $stashrawline=""; 10250a920b5bSAndy Whitcroft 10264a0df2efSAndy Whitcroft my $length; 10270a920b5bSAndy Whitcroft my $indent; 10280a920b5bSAndy Whitcroft my $previndent=0; 10290a920b5bSAndy Whitcroft my $stashindent=0; 10300a920b5bSAndy Whitcroft 1031de7d4f0eSAndy Whitcroft our $clean = 1; 10320a920b5bSAndy Whitcroft my $signoff = 0; 10330a920b5bSAndy Whitcroft my $is_patch = 0; 10340a920b5bSAndy Whitcroft 103513214adfSAndy Whitcroft our @report = (); 10366c72ffaaSAndy Whitcroft our $cnt_lines = 0; 10376c72ffaaSAndy Whitcroft our $cnt_error = 0; 10386c72ffaaSAndy Whitcroft our $cnt_warn = 0; 10396c72ffaaSAndy Whitcroft our $cnt_chk = 0; 10406c72ffaaSAndy Whitcroft 10410a920b5bSAndy Whitcroft # Trace the real file/line as we go. 10420a920b5bSAndy Whitcroft my $realfile = ''; 10430a920b5bSAndy Whitcroft my $realline = 0; 10440a920b5bSAndy Whitcroft my $realcnt = 0; 10450a920b5bSAndy Whitcroft my $here = ''; 10460a920b5bSAndy Whitcroft my $in_comment = 0; 1047c2fdda0dSAndy Whitcroft my $comment_edge = 0; 10480a920b5bSAndy Whitcroft my $first_line = 0; 10490a920b5bSAndy Whitcroft 105013214adfSAndy Whitcroft my $prev_values = 'E'; 105113214adfSAndy Whitcroft 105213214adfSAndy Whitcroft # suppression flags 1053773647a0SAndy Whitcroft my %suppress_ifbraces; 1054*170d3a22SAndy Whitcroft my %suppress_whiletrailers; 1055653d4876SAndy Whitcroft 1056c2fdda0dSAndy Whitcroft # Pre-scan the patch sanitizing the lines. 1057de7d4f0eSAndy Whitcroft # Pre-scan the patch looking for any __setup documentation. 1058c2fdda0dSAndy Whitcroft # 1059de7d4f0eSAndy Whitcroft my @setup_docs = (); 1060de7d4f0eSAndy Whitcroft my $setup_docs = 0; 1061773647a0SAndy Whitcroft 1062773647a0SAndy Whitcroft sanitise_line_reset(); 1063c2fdda0dSAndy Whitcroft my $line; 1064c2fdda0dSAndy Whitcroft foreach my $rawline (@rawlines) { 1065773647a0SAndy Whitcroft $linenr++; 1066773647a0SAndy Whitcroft $line = $rawline; 1067c2fdda0dSAndy Whitcroft 1068773647a0SAndy Whitcroft if ($rawline=~/^\+\+\+\s+(\S+)/) { 1069de7d4f0eSAndy Whitcroft $setup_docs = 0; 1070de7d4f0eSAndy Whitcroft if ($1 =~ m@Documentation/kernel-parameters.txt$@) { 1071de7d4f0eSAndy Whitcroft $setup_docs = 1; 1072de7d4f0eSAndy Whitcroft } 1073773647a0SAndy Whitcroft #next; 1074de7d4f0eSAndy Whitcroft } 1075773647a0SAndy Whitcroft if ($rawline=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) { 1076773647a0SAndy Whitcroft $realline=$1-1; 1077773647a0SAndy Whitcroft if (defined $2) { 1078773647a0SAndy Whitcroft $realcnt=$3+1; 1079773647a0SAndy Whitcroft } else { 1080773647a0SAndy Whitcroft $realcnt=1+1; 1081773647a0SAndy Whitcroft } 1082c45dcabdSAndy Whitcroft $in_comment = 0; 1083773647a0SAndy Whitcroft 1084773647a0SAndy Whitcroft # Guestimate if this is a continuing comment. Run 1085773647a0SAndy Whitcroft # the context looking for a comment "edge". If this 1086773647a0SAndy Whitcroft # edge is a close comment then we must be in a comment 1087773647a0SAndy Whitcroft # at context start. 1088773647a0SAndy Whitcroft my $edge; 108901fa9147SAndy Whitcroft my $cnt = $realcnt; 109001fa9147SAndy Whitcroft for (my $ln = $linenr + 1; $cnt > 0; $ln++) { 109101fa9147SAndy Whitcroft next if (defined $rawlines[$ln - 1] && 109201fa9147SAndy Whitcroft $rawlines[$ln - 1] =~ /^-/); 109301fa9147SAndy Whitcroft $cnt--; 109401fa9147SAndy Whitcroft #print "RAW<$rawlines[$ln - 1]>\n"; 109501fa9147SAndy Whitcroft ($edge) = (defined $rawlines[$ln - 1] && 109601fa9147SAndy Whitcroft $rawlines[$ln - 1] =~ m@(/\*|\*/)@); 1097773647a0SAndy Whitcroft last if (defined $edge); 1098773647a0SAndy Whitcroft } 1099773647a0SAndy Whitcroft if (defined $edge && $edge eq '*/') { 1100773647a0SAndy Whitcroft $in_comment = 1; 1101773647a0SAndy Whitcroft } 1102773647a0SAndy Whitcroft 1103773647a0SAndy Whitcroft # Guestimate if this is a continuing comment. If this 1104773647a0SAndy Whitcroft # is the start of a diff block and this line starts 1105773647a0SAndy Whitcroft # ' *' then it is very likely a comment. 1106773647a0SAndy Whitcroft if (!defined $edge && 1107773647a0SAndy Whitcroft $rawlines[$linenr] =~ m@^.\s* \*(?:\s|$)@) 1108773647a0SAndy Whitcroft { 1109773647a0SAndy Whitcroft $in_comment = 1; 1110773647a0SAndy Whitcroft } 1111773647a0SAndy Whitcroft 1112773647a0SAndy Whitcroft ##print "COMMENT:$in_comment edge<$edge> $rawline\n"; 1113773647a0SAndy Whitcroft sanitise_line_reset($in_comment); 1114773647a0SAndy Whitcroft 1115171ae1a4SAndy Whitcroft } elsif ($realcnt && $rawline =~ /^(?:\+| |$)/) { 1116773647a0SAndy Whitcroft # Standardise the strings and chars within the input to 1117171ae1a4SAndy Whitcroft # simplify matching -- only bother with positive lines. 1118773647a0SAndy Whitcroft $line = sanitise_line($rawline); 1119773647a0SAndy Whitcroft } 1120773647a0SAndy Whitcroft push(@lines, $line); 1121773647a0SAndy Whitcroft 1122773647a0SAndy Whitcroft if ($realcnt > 1) { 1123773647a0SAndy Whitcroft $realcnt-- if ($line =~ /^(?:\+| |$)/); 1124773647a0SAndy Whitcroft } else { 1125773647a0SAndy Whitcroft $realcnt = 0; 1126773647a0SAndy Whitcroft } 1127773647a0SAndy Whitcroft 1128773647a0SAndy Whitcroft #print "==>$rawline\n"; 1129773647a0SAndy Whitcroft #print "-->$line\n"; 1130de7d4f0eSAndy Whitcroft 1131de7d4f0eSAndy Whitcroft if ($setup_docs && $line =~ /^\+/) { 1132de7d4f0eSAndy Whitcroft push(@setup_docs, $line); 1133de7d4f0eSAndy Whitcroft } 1134de7d4f0eSAndy Whitcroft } 1135de7d4f0eSAndy Whitcroft 11366c72ffaaSAndy Whitcroft $prefix = ''; 11376c72ffaaSAndy Whitcroft 1138773647a0SAndy Whitcroft $realcnt = 0; 1139773647a0SAndy Whitcroft $linenr = 0; 11400a920b5bSAndy Whitcroft foreach my $line (@lines) { 11410a920b5bSAndy Whitcroft $linenr++; 11420a920b5bSAndy Whitcroft 1143c2fdda0dSAndy Whitcroft my $rawline = $rawlines[$linenr - 1]; 114430670854SAndy Whitcroft my $hunk_line = ($realcnt != 0); 11456c72ffaaSAndy Whitcroft 11460a920b5bSAndy Whitcroft#extract the line range in the file after the patch is applied 11476c72ffaaSAndy Whitcroft if ($line=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) { 11480a920b5bSAndy Whitcroft $is_patch = 1; 11494a0df2efSAndy Whitcroft $first_line = $linenr + 1; 11500a920b5bSAndy Whitcroft $realline=$1-1; 11510a920b5bSAndy Whitcroft if (defined $2) { 11520a920b5bSAndy Whitcroft $realcnt=$3+1; 11530a920b5bSAndy Whitcroft } else { 11540a920b5bSAndy Whitcroft $realcnt=1+1; 11550a920b5bSAndy Whitcroft } 1156c2fdda0dSAndy Whitcroft annotate_reset(); 115713214adfSAndy Whitcroft $prev_values = 'E'; 115813214adfSAndy Whitcroft 1159773647a0SAndy Whitcroft %suppress_ifbraces = (); 1160*170d3a22SAndy Whitcroft %suppress_whiletrailers = (); 11610a920b5bSAndy Whitcroft next; 11620a920b5bSAndy Whitcroft 11634a0df2efSAndy Whitcroft# track the line number as we move through the hunk, note that 11644a0df2efSAndy Whitcroft# new versions of GNU diff omit the leading space on completely 11654a0df2efSAndy Whitcroft# blank context lines so we need to count that too. 1166773647a0SAndy Whitcroft } elsif ($line =~ /^( |\+|$)/) { 11670a920b5bSAndy Whitcroft $realline++; 1168d8aaf121SAndy Whitcroft $realcnt-- if ($realcnt != 0); 11690a920b5bSAndy Whitcroft 11704a0df2efSAndy Whitcroft # Measure the line length and indent. 1171c2fdda0dSAndy Whitcroft ($length, $indent) = line_stats($rawline); 11720a920b5bSAndy Whitcroft 11730a920b5bSAndy Whitcroft # Track the previous line. 11740a920b5bSAndy Whitcroft ($prevline, $stashline) = ($stashline, $line); 11750a920b5bSAndy Whitcroft ($previndent, $stashindent) = ($stashindent, $indent); 1176c2fdda0dSAndy Whitcroft ($prevrawline, $stashrawline) = ($stashrawline, $rawline); 1177c2fdda0dSAndy Whitcroft 1178773647a0SAndy Whitcroft #warn "line<$line>\n"; 11796c72ffaaSAndy Whitcroft 1180d8aaf121SAndy Whitcroft } elsif ($realcnt == 1) { 1181d8aaf121SAndy Whitcroft $realcnt--; 11820a920b5bSAndy Whitcroft } 11830a920b5bSAndy Whitcroft 11840a920b5bSAndy Whitcroft#make up the handle for any error we report on this line 1185773647a0SAndy Whitcroft $prefix = "$filename:$realline: " if ($emacs && $file); 1186773647a0SAndy Whitcroft $prefix = "$filename:$linenr: " if ($emacs && !$file); 1187773647a0SAndy Whitcroft 11886c72ffaaSAndy Whitcroft $here = "#$linenr: " if (!$file); 11896c72ffaaSAndy Whitcroft $here = "#$realline: " if ($file); 1190773647a0SAndy Whitcroft 1191773647a0SAndy Whitcroft # extract the filename as it passes 1192773647a0SAndy Whitcroft if ($line=~/^\+\+\+\s+(\S+)/) { 1193773647a0SAndy Whitcroft $realfile = $1; 1194773647a0SAndy Whitcroft $realfile =~ s@^[^/]*/@@; 1195773647a0SAndy Whitcroft 1196c1ab3326SAndy Whitcroft if ($realfile =~ m@^include/asm/@) { 1197773647a0SAndy Whitcroft ERROR("do not modify files in include/asm, change architecture specific files in include/asm-<architecture>\n" . "$here$rawline\n"); 1198773647a0SAndy Whitcroft } 1199773647a0SAndy Whitcroft next; 1200773647a0SAndy Whitcroft } 1201773647a0SAndy Whitcroft 1202389834b6SRandy Dunlap $here .= "FILE: $realfile:$realline:" if ($realcnt != 0); 12030a920b5bSAndy Whitcroft 1204c2fdda0dSAndy Whitcroft my $hereline = "$here\n$rawline\n"; 1205c2fdda0dSAndy Whitcroft my $herecurr = "$here\n$rawline\n"; 1206c2fdda0dSAndy Whitcroft my $hereprev = "$here\n$prevrawline\n$rawline\n"; 12070a920b5bSAndy Whitcroft 12086c72ffaaSAndy Whitcroft $cnt_lines++ if ($realcnt != 0); 12096c72ffaaSAndy Whitcroft 12100a920b5bSAndy Whitcroft#check the patch for a signoff: 1211d8aaf121SAndy Whitcroft if ($line =~ /^\s*signed-off-by:/i) { 12124a0df2efSAndy Whitcroft # This is a signoff, if ugly, so do not double report. 12134a0df2efSAndy Whitcroft $signoff++; 12140a920b5bSAndy Whitcroft if (!($line =~ /^\s*Signed-off-by:/)) { 1215de7d4f0eSAndy Whitcroft WARN("Signed-off-by: is the preferred form\n" . 1216de7d4f0eSAndy Whitcroft $herecurr); 12170a920b5bSAndy Whitcroft } 12180a920b5bSAndy Whitcroft if ($line =~ /^\s*signed-off-by:\S/i) { 1219773647a0SAndy Whitcroft WARN("space required after Signed-off-by:\n" . 1220de7d4f0eSAndy Whitcroft $herecurr); 12210a920b5bSAndy Whitcroft } 12220a920b5bSAndy Whitcroft } 12230a920b5bSAndy Whitcroft 122400df344fSAndy Whitcroft# Check for wrappage within a valid hunk of the file 12258905a67cSAndy Whitcroft if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) { 1226de7d4f0eSAndy Whitcroft ERROR("patch seems to be corrupt (line wrapped?)\n" . 12276c72ffaaSAndy Whitcroft $herecurr) if (!$emitted_corrupt++); 1228de7d4f0eSAndy Whitcroft } 1229de7d4f0eSAndy Whitcroft 12306ecd9674SAndy Whitcroft# Check for absolute kernel paths. 12316ecd9674SAndy Whitcroft if ($tree) { 12326ecd9674SAndy Whitcroft while ($line =~ m{(?:^|\s)(/\S*)}g) { 12336ecd9674SAndy Whitcroft my $file = $1; 12346ecd9674SAndy Whitcroft 12356ecd9674SAndy Whitcroft if ($file =~ m{^(.*?)(?::\d+)+:?$} && 12366ecd9674SAndy Whitcroft check_absolute_file($1, $herecurr)) { 12376ecd9674SAndy Whitcroft # 12386ecd9674SAndy Whitcroft } else { 12396ecd9674SAndy Whitcroft check_absolute_file($file, $herecurr); 12406ecd9674SAndy Whitcroft } 12416ecd9674SAndy Whitcroft } 12426ecd9674SAndy Whitcroft } 12436ecd9674SAndy Whitcroft 1244de7d4f0eSAndy Whitcroft# UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php 1245de7d4f0eSAndy Whitcroft if (($realfile =~ /^$/ || $line =~ /^\+/) && 1246171ae1a4SAndy Whitcroft $rawline !~ m/^$UTF8*$/) { 1247171ae1a4SAndy Whitcroft my ($utf8_prefix) = ($rawline =~ /^($UTF8*)/); 1248171ae1a4SAndy Whitcroft 1249171ae1a4SAndy Whitcroft my $blank = copy_spacing($rawline); 1250171ae1a4SAndy Whitcroft my $ptr = substr($blank, 0, length($utf8_prefix)) . "^"; 1251171ae1a4SAndy Whitcroft my $hereptr = "$hereline$ptr\n"; 1252171ae1a4SAndy Whitcroft 1253171ae1a4SAndy Whitcroft ERROR("Invalid UTF-8, patch and commit message should be encoded in UTF-8\n" . $hereptr); 125400df344fSAndy Whitcroft } 12550a920b5bSAndy Whitcroft 125630670854SAndy Whitcroft# ignore non-hunk lines and lines being removed 125730670854SAndy Whitcroft next if (!$hunk_line || $line =~ /^-/); 125800df344fSAndy Whitcroft 12590a920b5bSAndy Whitcroft#trailing whitespace 12609c0ca6f9SAndy Whitcroft if ($line =~ /^\+.*\015/) { 1261c2fdda0dSAndy Whitcroft my $herevet = "$here\n" . cat_vet($rawline) . "\n"; 12629c0ca6f9SAndy Whitcroft ERROR("DOS line endings\n" . $herevet); 12639c0ca6f9SAndy Whitcroft 1264c2fdda0dSAndy Whitcroft } elsif ($rawline =~ /^\+.*\S\s+$/ || $rawline =~ /^\+\s+$/) { 1265c2fdda0dSAndy Whitcroft my $herevet = "$here\n" . cat_vet($rawline) . "\n"; 1266de7d4f0eSAndy Whitcroft ERROR("trailing whitespace\n" . $herevet); 12670a920b5bSAndy Whitcroft } 12685368df20SAndy Whitcroft 12695368df20SAndy Whitcroft# check we are in a valid source file if not then ignore this hunk 12705368df20SAndy Whitcroft next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/); 12715368df20SAndy Whitcroft 12720a920b5bSAndy Whitcroft#80 column limit 1273c45dcabdSAndy Whitcroft if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ && 1274f4c014c0SAndy Whitcroft $rawline !~ /^.\s*\*\s*\@$Ident\s/ && 1275f4c014c0SAndy Whitcroft $line !~ /^\+\s*printk\s*\(\s*(?:KERN_\S+\s*)?"[X\t]*"\s*(?:,|\)\s*;)\s*$/ && 1276f4c014c0SAndy Whitcroft $length > 80) 1277c45dcabdSAndy Whitcroft { 1278de7d4f0eSAndy Whitcroft WARN("line over 80 characters\n" . $herecurr); 12790a920b5bSAndy Whitcroft } 12800a920b5bSAndy Whitcroft 12818905a67cSAndy Whitcroft# check for adding lines without a newline. 12828905a67cSAndy Whitcroft if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) { 12838905a67cSAndy Whitcroft WARN("adding a line without newline at end of file\n" . $herecurr); 12848905a67cSAndy Whitcroft } 12858905a67cSAndy Whitcroft 1286b9ea10d6SAndy Whitcroft# check we are in a valid source file C or perl if not then ignore this hunk 1287b9ea10d6SAndy Whitcroft next if ($realfile !~ /\.(h|c|pl)$/); 12880a920b5bSAndy Whitcroft 12890a920b5bSAndy Whitcroft# at the beginning of a line any tabs must come first and anything 12900a920b5bSAndy Whitcroft# more than 8 must use tabs. 1291c2fdda0dSAndy Whitcroft if ($rawline =~ /^\+\s* \t\s*\S/ || 1292c2fdda0dSAndy Whitcroft $rawline =~ /^\+\s* \s*/) { 1293c2fdda0dSAndy Whitcroft my $herevet = "$here\n" . cat_vet($rawline) . "\n"; 1294171ae1a4SAndy Whitcroft ERROR("code indent should use tabs where possible\n" . $herevet); 12950a920b5bSAndy Whitcroft } 12960a920b5bSAndy Whitcroft 1297b9ea10d6SAndy Whitcroft# check we are in a valid C source file if not then ignore this hunk 1298b9ea10d6SAndy Whitcroft next if ($realfile !~ /\.(h|c)$/); 1299b9ea10d6SAndy Whitcroft 1300c2fdda0dSAndy Whitcroft# check for RCS/CVS revision markers 1301cf655043SAndy Whitcroft if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) { 1302c2fdda0dSAndy Whitcroft WARN("CVS style keyword markers, these will _not_ be updated\n". $herecurr); 1303c2fdda0dSAndy Whitcroft } 130422f2a2efSAndy Whitcroft 13059c0ca6f9SAndy Whitcroft# Check for potential 'bare' types 1306*170d3a22SAndy Whitcroft my ($stat, $cond, $line_nr_next, $remain_next, $off_next); 13079c9ba34eSAndy Whitcroft if ($realcnt && $line =~ /.\s*\S/) { 1308*170d3a22SAndy Whitcroft ($stat, $cond, $line_nr_next, $remain_next, $off_next) = 1309f5fe35ddSAndy Whitcroft ctx_statement_block($linenr, $realcnt, 0); 1310171ae1a4SAndy Whitcroft $stat =~ s/\n./\n /g; 1311171ae1a4SAndy Whitcroft $cond =~ s/\n./\n /g; 1312171ae1a4SAndy Whitcroft 1313171ae1a4SAndy Whitcroft my $s = $stat; 1314171ae1a4SAndy Whitcroft $s =~ s/{.*$//s; 1315cf655043SAndy Whitcroft 1316c2fdda0dSAndy Whitcroft # Ignore goto labels. 1317171ae1a4SAndy Whitcroft if ($s =~ /$Ident:\*$/s) { 1318c2fdda0dSAndy Whitcroft 1319c2fdda0dSAndy Whitcroft # Ignore functions being called 1320171ae1a4SAndy Whitcroft } elsif ($s =~ /^.\s*$Ident\s*\(/s) { 1321c2fdda0dSAndy Whitcroft 1322c45dcabdSAndy Whitcroft # declarations always start with types 1323d2506586SAndy Whitcroft } 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) { 1324c45dcabdSAndy Whitcroft my $type = $1; 1325c45dcabdSAndy Whitcroft $type =~ s/\s+/ /g; 1326c45dcabdSAndy Whitcroft possible($type, "A:" . $s); 1327c45dcabdSAndy Whitcroft 13286c72ffaaSAndy Whitcroft # definitions in global scope can only start with types 1329a6a84062SAndy Whitcroft } elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b\s*(?!:)/s) { 1330c45dcabdSAndy Whitcroft possible($1, "B:" . $s); 1331c2fdda0dSAndy Whitcroft } 13328905a67cSAndy Whitcroft 13336c72ffaaSAndy Whitcroft # any (foo ... *) is a pointer cast, and foo is a type 1334171ae1a4SAndy Whitcroft while ($s =~ /\(($Ident)(?:\s+$Sparse)*\s*\*+\s*\)/sg) { 1335c45dcabdSAndy Whitcroft possible($1, "C:" . $s); 13369c0ca6f9SAndy Whitcroft } 13378905a67cSAndy Whitcroft 13388905a67cSAndy Whitcroft # Check for any sort of function declaration. 13398905a67cSAndy Whitcroft # int foo(something bar, other baz); 13408905a67cSAndy Whitcroft # void (*store_gdt)(x86_descr_ptr *); 1341171ae1a4SAndy Whitcroft if ($prev_values eq 'E' && $s =~ /^(.(?:typedef\s*)?(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*(?:\b$Ident|\(\*\s*$Ident\))\s*)\(/s) { 13428905a67cSAndy Whitcroft my ($name_len) = length($1); 13438905a67cSAndy Whitcroft 1344cf655043SAndy Whitcroft my $ctx = $s; 1345773647a0SAndy Whitcroft substr($ctx, 0, $name_len + 1, ''); 13468905a67cSAndy Whitcroft $ctx =~ s/\)[^\)]*$//; 1347cf655043SAndy Whitcroft 13488905a67cSAndy Whitcroft for my $arg (split(/\s*,\s*/, $ctx)) { 1349c45dcabdSAndy Whitcroft if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$/s) { 13508905a67cSAndy Whitcroft 1351c45dcabdSAndy Whitcroft possible($1, "D:" . $s); 13528905a67cSAndy Whitcroft } 13538905a67cSAndy Whitcroft } 13548905a67cSAndy Whitcroft } 13558905a67cSAndy Whitcroft 13569c0ca6f9SAndy Whitcroft } 13579c0ca6f9SAndy Whitcroft 135800df344fSAndy Whitcroft# 135900df344fSAndy Whitcroft# Checks which may be anchored in the context. 136000df344fSAndy Whitcroft# 136100df344fSAndy Whitcroft 136200df344fSAndy Whitcroft# Check for switch () and associated case and default 136300df344fSAndy Whitcroft# statements should be at the same indent. 136400df344fSAndy Whitcroft if ($line=~/\bswitch\s*\(.*\)/) { 136500df344fSAndy Whitcroft my $err = ''; 136600df344fSAndy Whitcroft my $sep = ''; 136700df344fSAndy Whitcroft my @ctx = ctx_block_outer($linenr, $realcnt); 136800df344fSAndy Whitcroft shift(@ctx); 136900df344fSAndy Whitcroft for my $ctx (@ctx) { 137000df344fSAndy Whitcroft my ($clen, $cindent) = line_stats($ctx); 137100df344fSAndy Whitcroft if ($ctx =~ /^\+\s*(case\s+|default:)/ && 137200df344fSAndy Whitcroft $indent != $cindent) { 137300df344fSAndy Whitcroft $err .= "$sep$ctx\n"; 137400df344fSAndy Whitcroft $sep = ''; 137500df344fSAndy Whitcroft } else { 137600df344fSAndy Whitcroft $sep = "[...]\n"; 137700df344fSAndy Whitcroft } 137800df344fSAndy Whitcroft } 137900df344fSAndy Whitcroft if ($err ne '') { 13809c0ca6f9SAndy Whitcroft ERROR("switch and case should be at the same indent\n$hereline$err"); 1381de7d4f0eSAndy Whitcroft } 1382de7d4f0eSAndy Whitcroft } 1383de7d4f0eSAndy Whitcroft 1384de7d4f0eSAndy Whitcroft# if/while/etc brace do not go on next line, unless defining a do while loop, 1385de7d4f0eSAndy Whitcroft# or if that brace on the next line is for something else 1386c45dcabdSAndy Whitcroft if ($line =~ /(.*)\b((?:if|while|for|switch)\s*\(|do\b|else\b)/ && $line !~ /^.\s*\#/) { 1387773647a0SAndy Whitcroft my $pre_ctx = "$1$2"; 1388773647a0SAndy Whitcroft 13899c0ca6f9SAndy Whitcroft my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0); 1390de7d4f0eSAndy Whitcroft my $ctx_cnt = $realcnt - $#ctx - 1; 1391de7d4f0eSAndy Whitcroft my $ctx = join("\n", @ctx); 1392de7d4f0eSAndy Whitcroft 1393548596d5SAndy Whitcroft my $ctx_ln = $linenr; 1394548596d5SAndy Whitcroft my $ctx_skip = $realcnt; 1395de7d4f0eSAndy Whitcroft 1396548596d5SAndy Whitcroft while ($ctx_skip > $ctx_cnt || ($ctx_skip == $ctx_cnt && 1397548596d5SAndy Whitcroft defined $lines[$ctx_ln - 1] && 1398548596d5SAndy Whitcroft $lines[$ctx_ln - 1] =~ /^-/)) { 1399548596d5SAndy Whitcroft ##print "SKIP<$ctx_skip> CNT<$ctx_cnt>\n"; 1400548596d5SAndy Whitcroft $ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/); 1401773647a0SAndy Whitcroft $ctx_ln++; 1402773647a0SAndy Whitcroft } 1403548596d5SAndy Whitcroft 140453210168SAndy Whitcroft #print "realcnt<$realcnt> ctx_cnt<$ctx_cnt>\n"; 140553210168SAndy Whitcroft #print "pre<$pre_ctx>\nline<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>\n"; 1406773647a0SAndy Whitcroft 1407773647a0SAndy Whitcroft if ($ctx !~ /{\s*/ && defined($lines[$ctx_ln -1]) && $lines[$ctx_ln - 1] =~ /^\+\s*{/) { 1408773647a0SAndy Whitcroft ERROR("that open brace { should be on the previous line\n" . 1409c45dcabdSAndy Whitcroft "$here\n$ctx\n$lines[$ctx_ln - 1]\n"); 141000df344fSAndy Whitcroft } 1411773647a0SAndy Whitcroft if ($level == 0 && $pre_ctx !~ /}\s*while\s*\($/ && 1412773647a0SAndy Whitcroft $ctx =~ /\)\s*\;\s*$/ && 1413773647a0SAndy Whitcroft defined $lines[$ctx_ln - 1]) 1414773647a0SAndy Whitcroft { 14159c0ca6f9SAndy Whitcroft my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]); 14169c0ca6f9SAndy Whitcroft if ($nindent > $indent) { 1417773647a0SAndy Whitcroft WARN("trailing semicolon indicates no statements, indent implies otherwise\n" . 1418c45dcabdSAndy Whitcroft "$here\n$ctx\n$lines[$ctx_ln - 1]\n"); 14199c0ca6f9SAndy Whitcroft } 14209c0ca6f9SAndy Whitcroft } 142100df344fSAndy Whitcroft } 142200df344fSAndy Whitcroft 14234d001e4dSAndy Whitcroft# Check relative indent for conditionals and blocks. 14244d001e4dSAndy Whitcroft if ($line =~ /\b(?:(?:if|while|for)\s*\(|do\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) { 14254d001e4dSAndy Whitcroft my ($s, $c) = ($stat, $cond); 14264d001e4dSAndy Whitcroft 14274d001e4dSAndy Whitcroft substr($s, 0, length($c), ''); 14284d001e4dSAndy Whitcroft 14294d001e4dSAndy Whitcroft # Make sure we remove the line prefixes as we have 14304d001e4dSAndy Whitcroft # none on the first line, and are going to readd them 14314d001e4dSAndy Whitcroft # where necessary. 14324d001e4dSAndy Whitcroft $s =~ s/\n./\n/gs; 14334d001e4dSAndy Whitcroft 14344d001e4dSAndy Whitcroft # Find out how long the conditional actually is. 14356f779c18SAndy Whitcroft my @newlines = ($c =~ /\n/gs); 14366f779c18SAndy Whitcroft my $cond_lines = 1 + $#newlines; 14374d001e4dSAndy Whitcroft 14384d001e4dSAndy Whitcroft # We want to check the first line inside the block 14394d001e4dSAndy Whitcroft # starting at the end of the conditional, so remove: 14404d001e4dSAndy Whitcroft # 1) any blank line termination 14414d001e4dSAndy Whitcroft # 2) any opening brace { on end of the line 14424d001e4dSAndy Whitcroft # 3) any do (...) { 14434d001e4dSAndy Whitcroft my $continuation = 0; 14444d001e4dSAndy Whitcroft my $check = 0; 14454d001e4dSAndy Whitcroft $s =~ s/^.*\bdo\b//; 14464d001e4dSAndy Whitcroft $s =~ s/^\s*{//; 14474d001e4dSAndy Whitcroft if ($s =~ s/^\s*\\//) { 14484d001e4dSAndy Whitcroft $continuation = 1; 14494d001e4dSAndy Whitcroft } 14509bd49efeSAndy Whitcroft if ($s =~ s/^\s*?\n//) { 14514d001e4dSAndy Whitcroft $check = 1; 14524d001e4dSAndy Whitcroft $cond_lines++; 14534d001e4dSAndy Whitcroft } 14544d001e4dSAndy Whitcroft 14554d001e4dSAndy Whitcroft # Also ignore a loop construct at the end of a 14564d001e4dSAndy Whitcroft # preprocessor statement. 14574d001e4dSAndy Whitcroft if (($prevline =~ /^.\s*#\s*define\s/ || 14584d001e4dSAndy Whitcroft $prevline =~ /\\\s*$/) && $continuation == 0) { 14594d001e4dSAndy Whitcroft $check = 0; 14604d001e4dSAndy Whitcroft } 14614d001e4dSAndy Whitcroft 14629bd49efeSAndy Whitcroft my $cond_ptr = -1; 14639bd49efeSAndy Whitcroft while ($cond_ptr != $cond_lines) { 14649bd49efeSAndy Whitcroft $cond_ptr = $cond_lines; 14654d001e4dSAndy Whitcroft 14669bd49efeSAndy Whitcroft # Ignore: 14679bd49efeSAndy Whitcroft # 1) blank lines, they should be at 0, 14689bd49efeSAndy Whitcroft # 2) preprocessor lines, and 14699bd49efeSAndy Whitcroft # 3) labels. 14709bd49efeSAndy Whitcroft if ($s =~ /^\s*?\n/ || 14719bd49efeSAndy Whitcroft $s =~ /^\s*#\s*?/ || 14729bd49efeSAndy Whitcroft $s =~ /^\s*$Ident\s*:/) { 14739bd49efeSAndy Whitcroft $s =~ s/^.*?\n//; 14749bd49efeSAndy Whitcroft $cond_lines++; 14759bd49efeSAndy Whitcroft } 14764d001e4dSAndy Whitcroft } 14774d001e4dSAndy Whitcroft 14784d001e4dSAndy Whitcroft my (undef, $sindent) = line_stats("+" . $s); 14794d001e4dSAndy Whitcroft my $stat_real = raw_line($linenr, $cond_lines); 14804d001e4dSAndy Whitcroft 14814d001e4dSAndy Whitcroft # Check if either of these lines are modified, else 14824d001e4dSAndy Whitcroft # this is not this patch's fault. 14834d001e4dSAndy Whitcroft if (!defined($stat_real) || 14844d001e4dSAndy Whitcroft $stat !~ /^\+/ && $stat_real !~ /^\+/) { 14854d001e4dSAndy Whitcroft $check = 0; 14864d001e4dSAndy Whitcroft } 14874d001e4dSAndy Whitcroft if (defined($stat_real) && $cond_lines > 1) { 14884d001e4dSAndy Whitcroft $stat_real = "[...]\n$stat_real"; 14894d001e4dSAndy Whitcroft } 14904d001e4dSAndy Whitcroft 14919bd49efeSAndy Whitcroft #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"; 14924d001e4dSAndy Whitcroft 14934d001e4dSAndy Whitcroft if ($check && (($sindent % 8) != 0 || 14944d001e4dSAndy Whitcroft ($sindent <= $indent && $s ne ''))) { 14954d001e4dSAndy Whitcroft WARN("suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n"); 14964d001e4dSAndy Whitcroft } 14974d001e4dSAndy Whitcroft } 14984d001e4dSAndy Whitcroft 14996c72ffaaSAndy Whitcroft # Track the 'values' across context and added lines. 15006c72ffaaSAndy Whitcroft my $opline = $line; $opline =~ s/^./ /; 15011f65f947SAndy Whitcroft my ($curr_values, $curr_vars) = 15021f65f947SAndy Whitcroft annotate_values($opline . "\n", $prev_values); 15036c72ffaaSAndy Whitcroft $curr_values = $prev_values . $curr_values; 1504c2fdda0dSAndy Whitcroft if ($dbg_values) { 1505c2fdda0dSAndy Whitcroft my $outline = $opline; $outline =~ s/\t/ /g; 1506cf655043SAndy Whitcroft print "$linenr > .$outline\n"; 1507cf655043SAndy Whitcroft print "$linenr > $curr_values\n"; 15081f65f947SAndy Whitcroft print "$linenr > $curr_vars\n"; 1509c2fdda0dSAndy Whitcroft } 15106c72ffaaSAndy Whitcroft $prev_values = substr($curr_values, -1); 15116c72ffaaSAndy Whitcroft 151200df344fSAndy Whitcroft#ignore lines not being added 151300df344fSAndy Whitcroft if ($line=~/^[^\+]/) {next;} 151400df344fSAndy Whitcroft 1515653d4876SAndy Whitcroft# TEST: allow direct testing of the type matcher. 15167429c690SAndy Whitcroft if ($dbg_type) { 15177429c690SAndy Whitcroft if ($line =~ /^.\s*$Declare\s*$/) { 15187429c690SAndy Whitcroft ERROR("TEST: is type\n" . $herecurr); 15197429c690SAndy Whitcroft } elsif ($dbg_type > 1 && $line =~ /^.+($Declare)/) { 15207429c690SAndy Whitcroft ERROR("TEST: is not type ($1 is)\n". $herecurr); 15217429c690SAndy Whitcroft } 1522653d4876SAndy Whitcroft next; 1523653d4876SAndy Whitcroft } 1524a1ef277eSAndy Whitcroft# TEST: allow direct testing of the attribute matcher. 1525a1ef277eSAndy Whitcroft if ($dbg_attr) { 1526a1ef277eSAndy Whitcroft if ($line =~ /^.\s*$Attribute\s*$/) { 1527a1ef277eSAndy Whitcroft ERROR("TEST: is attr\n" . $herecurr); 1528a1ef277eSAndy Whitcroft } elsif ($dbg_attr > 1 && $line =~ /^.+($Attribute)/) { 1529a1ef277eSAndy Whitcroft ERROR("TEST: is not attr ($1 is)\n". $herecurr); 1530a1ef277eSAndy Whitcroft } 1531a1ef277eSAndy Whitcroft next; 1532a1ef277eSAndy Whitcroft } 1533653d4876SAndy Whitcroft 1534f0a594c1SAndy Whitcroft# check for initialisation to aggregates open brace on the next line 1535f0a594c1SAndy Whitcroft if ($prevline =~ /$Declare\s*$Ident\s*=\s*$/ && 1536f0a594c1SAndy Whitcroft $line =~ /^.\s*{/) { 1537773647a0SAndy Whitcroft ERROR("that open brace { should be on the previous line\n" . $hereprev); 1538f0a594c1SAndy Whitcroft } 1539f0a594c1SAndy Whitcroft 154000df344fSAndy Whitcroft# 154100df344fSAndy Whitcroft# Checks which are anchored on the added line. 154200df344fSAndy Whitcroft# 154300df344fSAndy Whitcroft 1544653d4876SAndy Whitcroft# check for malformed paths in #include statements (uses RAW line) 1545c45dcabdSAndy Whitcroft if ($rawline =~ m{^.\s*\#\s*include\s+[<"](.*)[">]}) { 1546653d4876SAndy Whitcroft my $path = $1; 1547653d4876SAndy Whitcroft if ($path =~ m{//}) { 1548de7d4f0eSAndy Whitcroft ERROR("malformed #include filename\n" . 1549de7d4f0eSAndy Whitcroft $herecurr); 1550653d4876SAndy Whitcroft } 1551653d4876SAndy Whitcroft } 1552653d4876SAndy Whitcroft 155300df344fSAndy Whitcroft# no C99 // comments 155400df344fSAndy Whitcroft if ($line =~ m{//}) { 1555de7d4f0eSAndy Whitcroft ERROR("do not use C99 // comments\n" . $herecurr); 155600df344fSAndy Whitcroft } 155700df344fSAndy Whitcroft # Remove C99 comments. 15580a920b5bSAndy Whitcroft $line =~ s@//.*@@; 15596c72ffaaSAndy Whitcroft $opline =~ s@//.*@@; 15600a920b5bSAndy Whitcroft 15610a920b5bSAndy Whitcroft#EXPORT_SYMBOL should immediately follow its function closing }. 1562653d4876SAndy Whitcroft if (($line =~ /EXPORT_SYMBOL.*\((.*)\)/) || 1563653d4876SAndy Whitcroft ($line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) { 1564653d4876SAndy Whitcroft my $name = $1; 15650a920b5bSAndy Whitcroft if (($prevline !~ /^}/) && 15660a920b5bSAndy Whitcroft ($prevline !~ /^\+}/) && 1567653d4876SAndy Whitcroft ($prevline !~ /^ }/) && 1568cf655043SAndy Whitcroft ($prevline !~ /^.DECLARE_$Ident\(\Q$name\E\)/) && 1569cf655043SAndy Whitcroft ($prevline !~ /^.LIST_HEAD\(\Q$name\E\)/) && 1570171ae1a4SAndy Whitcroft ($prevline !~ /^.$Type\s*\(\s*\*\s*\Q$name\E\s*\)\s*\(/) && 1571cf655043SAndy Whitcroft ($prevline !~ /\b\Q$name\E(?:\s+$Attribute)?\s*(?:;|=|\[)/)) { 1572de7d4f0eSAndy Whitcroft WARN("EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr); 15730a920b5bSAndy Whitcroft } 15740a920b5bSAndy Whitcroft } 15750a920b5bSAndy Whitcroft 1576f0a594c1SAndy Whitcroft# check for external initialisers. 1577c45dcabdSAndy Whitcroft if ($line =~ /^.$Type\s*$Ident\s*(?:\s+$Modifier)*\s*=\s*(0|NULL|false)\s*;/) { 1578f0a594c1SAndy Whitcroft ERROR("do not initialise externals to 0 or NULL\n" . 1579f0a594c1SAndy Whitcroft $herecurr); 1580f0a594c1SAndy Whitcroft } 15810a920b5bSAndy Whitcroft# check for static initialisers. 15829c9ba34eSAndy Whitcroft if ($line =~ /\s*static\s.*=\s*(0|NULL|false)\s*;/) { 1583de7d4f0eSAndy Whitcroft ERROR("do not initialise statics to 0 or NULL\n" . 1584de7d4f0eSAndy Whitcroft $herecurr); 15850a920b5bSAndy Whitcroft } 15860a920b5bSAndy Whitcroft 1587653d4876SAndy Whitcroft# check for new typedefs, only function parameters and sparse annotations 1588653d4876SAndy Whitcroft# make sense. 1589653d4876SAndy Whitcroft if ($line =~ /\btypedef\s/ && 15909c0ca6f9SAndy Whitcroft $line !~ /\btypedef\s+$Type\s+\(\s*\*?$Ident\s*\)\s*\(/ && 1591c45dcabdSAndy Whitcroft $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ && 1592653d4876SAndy Whitcroft $line !~ /\b__bitwise(?:__|)\b/) { 1593de7d4f0eSAndy Whitcroft WARN("do not add new typedefs\n" . $herecurr); 15940a920b5bSAndy Whitcroft } 15950a920b5bSAndy Whitcroft 15960a920b5bSAndy Whitcroft# * goes on variable not on type 1597d8aaf121SAndy Whitcroft if ($line =~ m{\($NonptrType(\*+)(?:\s+const)?\)}) { 1598de7d4f0eSAndy Whitcroft ERROR("\"(foo$1)\" should be \"(foo $1)\"\n" . 1599de7d4f0eSAndy Whitcroft $herecurr); 1600d8aaf121SAndy Whitcroft 1601d8aaf121SAndy Whitcroft } elsif ($line =~ m{\($NonptrType\s+(\*+)(?!\s+const)\s+\)}) { 1602de7d4f0eSAndy Whitcroft ERROR("\"(foo $1 )\" should be \"(foo $1)\"\n" . 1603de7d4f0eSAndy Whitcroft $herecurr); 1604d8aaf121SAndy Whitcroft 1605234fff65SAndy Whitcroft } elsif ($line =~ m{\b$NonptrType(\*+)(?:\s+(?:$Attribute|$Sparse))?\s+[A-Za-z\d_]+}) { 1606de7d4f0eSAndy Whitcroft ERROR("\"foo$1 bar\" should be \"foo $1bar\"\n" . 1607de7d4f0eSAndy Whitcroft $herecurr); 1608d8aaf121SAndy Whitcroft 1609234fff65SAndy Whitcroft } elsif ($line =~ m{\b$NonptrType\s+(\*+)(?!\s+(?:$Attribute|$Sparse))\s+[A-Za-z\d_]+}) { 1610de7d4f0eSAndy Whitcroft ERROR("\"foo $1 bar\" should be \"foo $1bar\"\n" . 1611de7d4f0eSAndy Whitcroft $herecurr); 16120a920b5bSAndy Whitcroft } 16130a920b5bSAndy Whitcroft 16140a920b5bSAndy Whitcroft# # no BUG() or BUG_ON() 16150a920b5bSAndy Whitcroft# if ($line =~ /\b(BUG|BUG_ON)\b/) { 16160a920b5bSAndy Whitcroft# print "Try to use WARN_ON & Recovery code rather than BUG() or BUG_ON()\n"; 16170a920b5bSAndy Whitcroft# print "$herecurr"; 16180a920b5bSAndy Whitcroft# $clean = 0; 16190a920b5bSAndy Whitcroft# } 16200a920b5bSAndy Whitcroft 16218905a67cSAndy Whitcroft if ($line =~ /\bLINUX_VERSION_CODE\b/) { 1622c2fdda0dSAndy Whitcroft WARN("LINUX_VERSION_CODE should be avoided, code should be for the version to which it is merged\n" . $herecurr); 16238905a67cSAndy Whitcroft } 16248905a67cSAndy Whitcroft 162500df344fSAndy Whitcroft# printk should use KERN_* levels. Note that follow on printk's on the 162600df344fSAndy Whitcroft# same line do not need a level, so we use the current block context 162700df344fSAndy Whitcroft# to try and find and validate the current printk. In summary the current 162800df344fSAndy Whitcroft# printk includes all preceeding printk's which have no newline on the end. 162900df344fSAndy Whitcroft# we assume the first bad printk is the one to report. 1630f0a594c1SAndy Whitcroft if ($line =~ /\bprintk\((?!KERN_)\s*"/) { 163100df344fSAndy Whitcroft my $ok = 0; 163200df344fSAndy Whitcroft for (my $ln = $linenr - 1; $ln >= $first_line; $ln--) { 163300df344fSAndy Whitcroft #print "CHECK<$lines[$ln - 1]\n"; 163400df344fSAndy Whitcroft # we have a preceeding printk if it ends 163500df344fSAndy Whitcroft # with "\n" ignore it, else it is to blame 163600df344fSAndy Whitcroft if ($lines[$ln - 1] =~ m{\bprintk\(}) { 163700df344fSAndy Whitcroft if ($rawlines[$ln - 1] !~ m{\\n"}) { 163800df344fSAndy Whitcroft $ok = 1; 163900df344fSAndy Whitcroft } 164000df344fSAndy Whitcroft last; 164100df344fSAndy Whitcroft } 164200df344fSAndy Whitcroft } 164300df344fSAndy Whitcroft if ($ok == 0) { 1644de7d4f0eSAndy Whitcroft WARN("printk() should include KERN_ facility level\n" . $herecurr); 16450a920b5bSAndy Whitcroft } 164600df344fSAndy Whitcroft } 16470a920b5bSAndy Whitcroft 1648653d4876SAndy Whitcroft# function brace can't be on same line, except for #defines of do while, 1649653d4876SAndy Whitcroft# or if closed on same line 1650c45dcabdSAndy Whitcroft if (($line=~/$Type\s*$Ident\(.*\).*\s{/) and 1651c45dcabdSAndy Whitcroft !($line=~/\#\s*define.*do\s{/) and !($line=~/}/)) { 1652de7d4f0eSAndy Whitcroft ERROR("open brace '{' following function declarations go on the next line\n" . $herecurr); 16530a920b5bSAndy Whitcroft } 1654653d4876SAndy Whitcroft 16558905a67cSAndy Whitcroft# open braces for enum, union and struct go on the same line. 16568905a67cSAndy Whitcroft if ($line =~ /^.\s*{/ && 16578905a67cSAndy Whitcroft $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) { 16588905a67cSAndy Whitcroft ERROR("open brace '{' following $1 go on the same line\n" . $hereprev); 16598905a67cSAndy Whitcroft } 16608905a67cSAndy Whitcroft 16618d31cfceSAndy Whitcroft# check for spacing round square brackets; allowed: 16628d31cfceSAndy Whitcroft# 1. with a type on the left -- int [] a; 1663fe2a7dbcSAndy Whitcroft# 2. at the beginning of a line for slice initialisers -- [0...10] = 5, 1664fe2a7dbcSAndy Whitcroft# 3. inside a curly brace -- = { [0...10] = 5 } 16658d31cfceSAndy Whitcroft while ($line =~ /(.*?\s)\[/g) { 16668d31cfceSAndy Whitcroft my ($where, $prefix) = ($-[1], $1); 16678d31cfceSAndy Whitcroft if ($prefix !~ /$Type\s+$/ && 1668fe2a7dbcSAndy Whitcroft ($where != 0 || $prefix !~ /^.\s+$/) && 1669fe2a7dbcSAndy Whitcroft $prefix !~ /{\s+$/) { 16708d31cfceSAndy Whitcroft ERROR("space prohibited before open square bracket '['\n" . $herecurr); 16718d31cfceSAndy Whitcroft } 16728d31cfceSAndy Whitcroft } 16738d31cfceSAndy Whitcroft 1674f0a594c1SAndy Whitcroft# check for spaces between functions and their parentheses. 16756c72ffaaSAndy Whitcroft while ($line =~ /($Ident)\s+\(/g) { 1676c2fdda0dSAndy Whitcroft my $name = $1; 1677773647a0SAndy Whitcroft my $ctx_before = substr($line, 0, $-[1]); 1678773647a0SAndy Whitcroft my $ctx = "$ctx_before$name"; 1679c2fdda0dSAndy Whitcroft 1680c2fdda0dSAndy Whitcroft # Ignore those directives where spaces _are_ permitted. 1681773647a0SAndy Whitcroft if ($name =~ /^(?: 1682773647a0SAndy Whitcroft if|for|while|switch|return|case| 1683773647a0SAndy Whitcroft volatile|__volatile__| 1684773647a0SAndy Whitcroft __attribute__|format|__extension__| 1685773647a0SAndy Whitcroft asm|__asm__)$/x) 1686773647a0SAndy Whitcroft { 1687c2fdda0dSAndy Whitcroft 1688c2fdda0dSAndy Whitcroft # cpp #define statements have non-optional spaces, ie 1689c2fdda0dSAndy Whitcroft # if there is a space between the name and the open 1690c2fdda0dSAndy Whitcroft # parenthesis it is simply not a parameter group. 1691c45dcabdSAndy Whitcroft } elsif ($ctx_before =~ /^.\s*\#\s*define\s*$/) { 1692773647a0SAndy Whitcroft 1693773647a0SAndy Whitcroft # cpp #elif statement condition may start with a ( 1694c45dcabdSAndy Whitcroft } elsif ($ctx =~ /^.\s*\#\s*elif\s*$/) { 1695c2fdda0dSAndy Whitcroft 1696c2fdda0dSAndy Whitcroft # If this whole things ends with a type its most 1697c2fdda0dSAndy Whitcroft # likely a typedef for a function. 1698773647a0SAndy Whitcroft } elsif ($ctx =~ /$Type$/) { 1699c2fdda0dSAndy Whitcroft 1700c2fdda0dSAndy Whitcroft } else { 1701773647a0SAndy Whitcroft WARN("space prohibited between function name and open parenthesis '('\n" . $herecurr); 1702f0a594c1SAndy Whitcroft } 17036c72ffaaSAndy Whitcroft } 1704653d4876SAndy Whitcroft# Check operator spacing. 17050a920b5bSAndy Whitcroft if (!($line=~/\#\s*include/)) { 17069c0ca6f9SAndy Whitcroft my $ops = qr{ 17079c0ca6f9SAndy Whitcroft <<=|>>=|<=|>=|==|!=| 17089c0ca6f9SAndy Whitcroft \+=|-=|\*=|\/=|%=|\^=|\|=|&=| 17099c0ca6f9SAndy Whitcroft =>|->|<<|>>|<|>|=|!|~| 17101f65f947SAndy Whitcroft &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%| 17111f65f947SAndy Whitcroft \?|: 17129c0ca6f9SAndy Whitcroft }x; 1713cf655043SAndy Whitcroft my @elements = split(/($ops|;)/, $opline); 171400df344fSAndy Whitcroft my $off = 0; 17156c72ffaaSAndy Whitcroft 17166c72ffaaSAndy Whitcroft my $blank = copy_spacing($opline); 17176c72ffaaSAndy Whitcroft 17180a920b5bSAndy Whitcroft for (my $n = 0; $n < $#elements; $n += 2) { 17194a0df2efSAndy Whitcroft $off += length($elements[$n]); 17204a0df2efSAndy Whitcroft 1721773647a0SAndy Whitcroft # Pick up the preceeding and succeeding characters. 1722773647a0SAndy Whitcroft my $ca = substr($opline, 0, $off); 1723773647a0SAndy Whitcroft my $cc = ''; 1724773647a0SAndy Whitcroft if (length($opline) >= ($off + length($elements[$n + 1]))) { 1725773647a0SAndy Whitcroft $cc = substr($opline, $off + length($elements[$n + 1])); 1726773647a0SAndy Whitcroft } 1727773647a0SAndy Whitcroft my $cb = "$ca$;$cc"; 1728773647a0SAndy Whitcroft 17294a0df2efSAndy Whitcroft my $a = ''; 17304a0df2efSAndy Whitcroft $a = 'V' if ($elements[$n] ne ''); 17314a0df2efSAndy Whitcroft $a = 'W' if ($elements[$n] =~ /\s$/); 1732cf655043SAndy Whitcroft $a = 'C' if ($elements[$n] =~ /$;$/); 17334a0df2efSAndy Whitcroft $a = 'B' if ($elements[$n] =~ /(\[|\()$/); 17344a0df2efSAndy Whitcroft $a = 'O' if ($elements[$n] eq ''); 1735773647a0SAndy Whitcroft $a = 'E' if ($ca =~ /^\s*$/); 17364a0df2efSAndy Whitcroft 17370a920b5bSAndy Whitcroft my $op = $elements[$n + 1]; 17384a0df2efSAndy Whitcroft 17394a0df2efSAndy Whitcroft my $c = ''; 17400a920b5bSAndy Whitcroft if (defined $elements[$n + 2]) { 17414a0df2efSAndy Whitcroft $c = 'V' if ($elements[$n + 2] ne ''); 17424a0df2efSAndy Whitcroft $c = 'W' if ($elements[$n + 2] =~ /^\s/); 1743cf655043SAndy Whitcroft $c = 'C' if ($elements[$n + 2] =~ /^$;/); 17444a0df2efSAndy Whitcroft $c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/); 17454a0df2efSAndy Whitcroft $c = 'O' if ($elements[$n + 2] eq ''); 174622f2a2efSAndy Whitcroft $c = 'E' if ($elements[$n + 2] =~ /\s*\\$/); 17474a0df2efSAndy Whitcroft } else { 17484a0df2efSAndy Whitcroft $c = 'E'; 17490a920b5bSAndy Whitcroft } 17500a920b5bSAndy Whitcroft 17514a0df2efSAndy Whitcroft my $ctx = "${a}x${c}"; 17524a0df2efSAndy Whitcroft 17534a0df2efSAndy Whitcroft my $at = "(ctx:$ctx)"; 17544a0df2efSAndy Whitcroft 17556c72ffaaSAndy Whitcroft my $ptr = substr($blank, 0, $off) . "^"; 1756de7d4f0eSAndy Whitcroft my $hereptr = "$hereline$ptr\n"; 17570a920b5bSAndy Whitcroft 175874048ed8SAndy Whitcroft # Pull out the value of this operator. 17596c72ffaaSAndy Whitcroft my $op_type = substr($curr_values, $off + 1, 1); 17600a920b5bSAndy Whitcroft 17611f65f947SAndy Whitcroft # Get the full operator variant. 17621f65f947SAndy Whitcroft my $opv = $op . substr($curr_vars, $off, 1); 17631f65f947SAndy Whitcroft 176413214adfSAndy Whitcroft # Ignore operators passed as parameters. 176513214adfSAndy Whitcroft if ($op_type ne 'V' && 176613214adfSAndy Whitcroft $ca =~ /\s$/ && $cc =~ /^\s*,/) { 176713214adfSAndy Whitcroft 1768cf655043SAndy Whitcroft# # Ignore comments 1769cf655043SAndy Whitcroft# } elsif ($op =~ /^$;+$/) { 177013214adfSAndy Whitcroft 1771d8aaf121SAndy Whitcroft # ; should have either the end of line or a space or \ after it 177213214adfSAndy Whitcroft } elsif ($op eq ';') { 1773cf655043SAndy Whitcroft if ($ctx !~ /.x[WEBC]/ && 1774cf655043SAndy Whitcroft $cc !~ /^\\/ && $cc !~ /^;/) { 1775773647a0SAndy Whitcroft ERROR("space required after that '$op' $at\n" . $hereptr); 1776d8aaf121SAndy Whitcroft } 1777d8aaf121SAndy Whitcroft 1778d8aaf121SAndy Whitcroft # // is a comment 1779d8aaf121SAndy Whitcroft } elsif ($op eq '//') { 17800a920b5bSAndy Whitcroft 17811f65f947SAndy Whitcroft # No spaces for: 17821f65f947SAndy Whitcroft # -> 17831f65f947SAndy Whitcroft # : when part of a bitfield 17841f65f947SAndy Whitcroft } elsif ($op eq '->' || $opv eq ':B') { 17854a0df2efSAndy Whitcroft if ($ctx =~ /Wx.|.xW/) { 1786773647a0SAndy Whitcroft ERROR("spaces prohibited around that '$op' $at\n" . $hereptr); 17870a920b5bSAndy Whitcroft } 17880a920b5bSAndy Whitcroft 17890a920b5bSAndy Whitcroft # , must have a space on the right. 17900a920b5bSAndy Whitcroft } elsif ($op eq ',') { 1791cf655043SAndy Whitcroft if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) { 1792773647a0SAndy Whitcroft ERROR("space required after that '$op' $at\n" . $hereptr); 17930a920b5bSAndy Whitcroft } 17940a920b5bSAndy Whitcroft 17959c0ca6f9SAndy Whitcroft # '*' as part of a type definition -- reported already. 179674048ed8SAndy Whitcroft } elsif ($opv eq '*_') { 17979c0ca6f9SAndy Whitcroft #warn "'*' is part of type\n"; 17989c0ca6f9SAndy Whitcroft 17999c0ca6f9SAndy Whitcroft # unary operators should have a space before and 18009c0ca6f9SAndy Whitcroft # none after. May be left adjacent to another 18019c0ca6f9SAndy Whitcroft # unary operator, or a cast 18029c0ca6f9SAndy Whitcroft } elsif ($op eq '!' || $op eq '~' || 180374048ed8SAndy Whitcroft $opv eq '*U' || $opv eq '-U' || 18040d413866SAndy Whitcroft $opv eq '&U' || $opv eq '&&U') { 1805cf655043SAndy Whitcroft if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) { 1806773647a0SAndy Whitcroft ERROR("space required before that '$op' $at\n" . $hereptr); 18070a920b5bSAndy Whitcroft } 1808171ae1a4SAndy Whitcroft if ($op eq '*' && $cc =~/\s*const\b/) { 1809171ae1a4SAndy Whitcroft # A unary '*' may be const 1810171ae1a4SAndy Whitcroft 1811171ae1a4SAndy Whitcroft } elsif ($ctx =~ /.xW/) { 1812773647a0SAndy Whitcroft ERROR("space prohibited after that '$op' $at\n" . $hereptr); 18130a920b5bSAndy Whitcroft } 18140a920b5bSAndy Whitcroft 18150a920b5bSAndy Whitcroft # unary ++ and unary -- are allowed no space on one side. 18160a920b5bSAndy Whitcroft } elsif ($op eq '++' or $op eq '--') { 1817773647a0SAndy Whitcroft if ($ctx !~ /[WEOBC]x[^W]/ && $ctx !~ /[^W]x[WOBEC]/) { 1818773647a0SAndy Whitcroft ERROR("space required one side of that '$op' $at\n" . $hereptr); 18190a920b5bSAndy Whitcroft } 1820773647a0SAndy Whitcroft if ($ctx =~ /Wx[BE]/ || 1821773647a0SAndy Whitcroft ($ctx =~ /Wx./ && $cc =~ /^;/)) { 1822773647a0SAndy Whitcroft ERROR("space prohibited before that '$op' $at\n" . $hereptr); 1823653d4876SAndy Whitcroft } 1824773647a0SAndy Whitcroft if ($ctx =~ /ExW/) { 1825773647a0SAndy Whitcroft ERROR("space prohibited after that '$op' $at\n" . $hereptr); 1826773647a0SAndy Whitcroft } 1827773647a0SAndy Whitcroft 18280a920b5bSAndy Whitcroft 18290a920b5bSAndy Whitcroft # << and >> may either have or not have spaces both sides 18309c0ca6f9SAndy Whitcroft } elsif ($op eq '<<' or $op eq '>>' or 18319c0ca6f9SAndy Whitcroft $op eq '&' or $op eq '^' or $op eq '|' or 18329c0ca6f9SAndy Whitcroft $op eq '+' or $op eq '-' or 1833c2fdda0dSAndy Whitcroft $op eq '*' or $op eq '/' or 1834c2fdda0dSAndy Whitcroft $op eq '%') 18350a920b5bSAndy Whitcroft { 1836773647a0SAndy Whitcroft if ($ctx =~ /Wx[^WCE]|[^WCE]xW/) { 1837de7d4f0eSAndy Whitcroft ERROR("need consistent spacing around '$op' $at\n" . 1838de7d4f0eSAndy Whitcroft $hereptr); 18390a920b5bSAndy Whitcroft } 18400a920b5bSAndy Whitcroft 18411f65f947SAndy Whitcroft # A colon needs no spaces before when it is 18421f65f947SAndy Whitcroft # terminating a case value or a label. 18431f65f947SAndy Whitcroft } elsif ($opv eq ':C' || $opv eq ':L') { 18441f65f947SAndy Whitcroft if ($ctx =~ /Wx./) { 18451f65f947SAndy Whitcroft ERROR("space prohibited before that '$op' $at\n" . $hereptr); 18461f65f947SAndy Whitcroft } 18471f65f947SAndy Whitcroft 18480a920b5bSAndy Whitcroft # All the others need spaces both sides. 1849cf655043SAndy Whitcroft } elsif ($ctx !~ /[EWC]x[CWE]/) { 18501f65f947SAndy Whitcroft my $ok = 0; 18511f65f947SAndy Whitcroft 185222f2a2efSAndy Whitcroft # Ignore email addresses <foo@bar> 18531f65f947SAndy Whitcroft if (($op eq '<' && 18541f65f947SAndy Whitcroft $cc =~ /^\S+\@\S+>/) || 18551f65f947SAndy Whitcroft ($op eq '>' && 18561f65f947SAndy Whitcroft $ca =~ /<\S+\@\S+$/)) 18571f65f947SAndy Whitcroft { 18581f65f947SAndy Whitcroft $ok = 1; 18591f65f947SAndy Whitcroft } 18601f65f947SAndy Whitcroft 18611f65f947SAndy Whitcroft # Ignore ?: 18621f65f947SAndy Whitcroft if (($opv eq ':O' && $ca =~ /\?$/) || 18631f65f947SAndy Whitcroft ($op eq '?' && $cc =~ /^:/)) { 18641f65f947SAndy Whitcroft $ok = 1; 18651f65f947SAndy Whitcroft } 18661f65f947SAndy Whitcroft 18671f65f947SAndy Whitcroft if ($ok == 0) { 1868773647a0SAndy Whitcroft ERROR("spaces required around that '$op' $at\n" . $hereptr); 18690a920b5bSAndy Whitcroft } 187022f2a2efSAndy Whitcroft } 18714a0df2efSAndy Whitcroft $off += length($elements[$n + 1]); 18720a920b5bSAndy Whitcroft } 18730a920b5bSAndy Whitcroft } 18740a920b5bSAndy Whitcroft 1875f0a594c1SAndy Whitcroft# check for multiple assignments 1876f0a594c1SAndy Whitcroft if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) { 18776c72ffaaSAndy Whitcroft CHK("multiple assignments should be avoided\n" . $herecurr); 1878f0a594c1SAndy Whitcroft } 1879f0a594c1SAndy Whitcroft 188022f2a2efSAndy Whitcroft## # check for multiple declarations, allowing for a function declaration 188122f2a2efSAndy Whitcroft## # continuation. 188222f2a2efSAndy Whitcroft## if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ && 188322f2a2efSAndy Whitcroft## $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) { 188422f2a2efSAndy Whitcroft## 188522f2a2efSAndy Whitcroft## # Remove any bracketed sections to ensure we do not 188622f2a2efSAndy Whitcroft## # falsly report the parameters of functions. 188722f2a2efSAndy Whitcroft## my $ln = $line; 188822f2a2efSAndy Whitcroft## while ($ln =~ s/\([^\(\)]*\)//g) { 188922f2a2efSAndy Whitcroft## } 189022f2a2efSAndy Whitcroft## if ($ln =~ /,/) { 189122f2a2efSAndy Whitcroft## WARN("declaring multiple variables together should be avoided\n" . $herecurr); 189222f2a2efSAndy Whitcroft## } 189322f2a2efSAndy Whitcroft## } 1894f0a594c1SAndy Whitcroft 18950a920b5bSAndy Whitcroft#need space before brace following if, while, etc 189622f2a2efSAndy Whitcroft if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) || 189722f2a2efSAndy Whitcroft $line =~ /do{/) { 1898773647a0SAndy Whitcroft ERROR("space required before the open brace '{'\n" . $herecurr); 1899de7d4f0eSAndy Whitcroft } 1900de7d4f0eSAndy Whitcroft 1901de7d4f0eSAndy Whitcroft# closing brace should have a space following it when it has anything 1902de7d4f0eSAndy Whitcroft# on the line 1903de7d4f0eSAndy Whitcroft if ($line =~ /}(?!(?:,|;|\)))\S/) { 1904773647a0SAndy Whitcroft ERROR("space required after that close brace '}'\n" . $herecurr); 19050a920b5bSAndy Whitcroft } 19060a920b5bSAndy Whitcroft 190722f2a2efSAndy Whitcroft# check spacing on square brackets 190822f2a2efSAndy Whitcroft if ($line =~ /\[\s/ && $line !~ /\[\s*$/) { 1909773647a0SAndy Whitcroft ERROR("space prohibited after that open square bracket '['\n" . $herecurr); 191022f2a2efSAndy Whitcroft } 191122f2a2efSAndy Whitcroft if ($line =~ /\s\]/) { 1912773647a0SAndy Whitcroft ERROR("space prohibited before that close square bracket ']'\n" . $herecurr); 191322f2a2efSAndy Whitcroft } 191422f2a2efSAndy Whitcroft 1915c45dcabdSAndy Whitcroft# check spacing on parentheses 19169c0ca6f9SAndy Whitcroft if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ && 19179c0ca6f9SAndy Whitcroft $line !~ /for\s*\(\s+;/) { 1918773647a0SAndy Whitcroft ERROR("space prohibited after that open parenthesis '('\n" . $herecurr); 191922f2a2efSAndy Whitcroft } 192013214adfSAndy Whitcroft if ($line =~ /(\s+)\)/ && $line !~ /^.\s*\)/ && 1921c45dcabdSAndy Whitcroft $line !~ /for\s*\(.*;\s+\)/ && 1922c45dcabdSAndy Whitcroft $line !~ /:\s+\)/) { 1923773647a0SAndy Whitcroft ERROR("space prohibited before that close parenthesis ')'\n" . $herecurr); 192422f2a2efSAndy Whitcroft } 192522f2a2efSAndy Whitcroft 19260a920b5bSAndy Whitcroft#goto labels aren't indented, allow a single space however 19274a0df2efSAndy Whitcroft if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and 19280a920b5bSAndy Whitcroft !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) { 1929de7d4f0eSAndy Whitcroft WARN("labels should not be indented\n" . $herecurr); 19300a920b5bSAndy Whitcroft } 19310a920b5bSAndy Whitcroft 1932c45dcabdSAndy Whitcroft# Return is not a function. 1933c45dcabdSAndy Whitcroft if (defined($stat) && $stat =~ /^.\s*return(\s*)(\(.*);/s) { 1934c45dcabdSAndy Whitcroft my $spacing = $1; 1935c45dcabdSAndy Whitcroft my $value = $2; 1936c45dcabdSAndy Whitcroft 1937c45dcabdSAndy Whitcroft # Flatten any parentheses and braces 1938fee61c47SAndy Whitcroft $value =~ s/\)\(/\) \(/g; 1939c45dcabdSAndy Whitcroft while ($value =~ s/\([^\(\)]*\)/1/) { 1940c45dcabdSAndy Whitcroft } 1941c45dcabdSAndy Whitcroft 1942c45dcabdSAndy Whitcroft if ($value =~ /^(?:$Ident|-?$Constant)$/) { 1943c45dcabdSAndy Whitcroft ERROR("return is not a function, parentheses are not required\n" . $herecurr); 1944c45dcabdSAndy Whitcroft 1945c45dcabdSAndy Whitcroft } elsif ($spacing !~ /\s+/) { 1946c45dcabdSAndy Whitcroft ERROR("space required before the open parenthesis '('\n" . $herecurr); 1947c45dcabdSAndy Whitcroft } 1948c45dcabdSAndy Whitcroft } 1949c45dcabdSAndy Whitcroft 19500a920b5bSAndy Whitcroft# Need a space before open parenthesis after if, while etc 19514a0df2efSAndy Whitcroft if ($line=~/\b(if|while|for|switch)\(/) { 1952773647a0SAndy Whitcroft ERROR("space required before the open parenthesis '('\n" . $herecurr); 19530a920b5bSAndy Whitcroft } 19540a920b5bSAndy Whitcroft 1955f5fe35ddSAndy Whitcroft# Check for illegal assignment in if conditional -- and check for trailing 1956f5fe35ddSAndy Whitcroft# statements after the conditional. 1957*170d3a22SAndy Whitcroft if ($line =~ /do\s*(?!{)/) { 1958*170d3a22SAndy Whitcroft my ($stat_next) = ctx_statement_block($line_nr_next, 1959*170d3a22SAndy Whitcroft $remain_next, $off_next); 1960*170d3a22SAndy Whitcroft $stat_next =~ s/\n./\n /g; 1961*170d3a22SAndy Whitcroft ##print "stat<$stat> stat_next<$stat_next>\n"; 1962*170d3a22SAndy Whitcroft 1963*170d3a22SAndy Whitcroft if ($stat_next =~ /^\s*while\b/) { 1964*170d3a22SAndy Whitcroft # If the statement carries leading newlines, 1965*170d3a22SAndy Whitcroft # then count those as offsets. 1966*170d3a22SAndy Whitcroft my ($whitespace) = 1967*170d3a22SAndy Whitcroft ($stat_next =~ /^((?:\s*\n[+-])*\s*)/s); 1968*170d3a22SAndy Whitcroft my $offset = 1969*170d3a22SAndy Whitcroft statement_rawlines($whitespace) - 1; 1970*170d3a22SAndy Whitcroft 1971*170d3a22SAndy Whitcroft $suppress_whiletrailers{$line_nr_next + 1972*170d3a22SAndy Whitcroft $offset} = 1; 1973*170d3a22SAndy Whitcroft } 1974*170d3a22SAndy Whitcroft } 1975*170d3a22SAndy Whitcroft if (!defined $suppress_whiletrailers{$linenr} && 1976*170d3a22SAndy Whitcroft $line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) { 1977171ae1a4SAndy Whitcroft my ($s, $c) = ($stat, $cond); 19788905a67cSAndy Whitcroft 19798905a67cSAndy Whitcroft if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/) { 1980c2fdda0dSAndy Whitcroft ERROR("do not use assignment in if condition\n" . $herecurr); 19818905a67cSAndy Whitcroft } 19828905a67cSAndy Whitcroft 19838905a67cSAndy Whitcroft # Find out what is on the end of the line after the 19848905a67cSAndy Whitcroft # conditional. 1985773647a0SAndy Whitcroft substr($s, 0, length($c), ''); 19868905a67cSAndy Whitcroft $s =~ s/\n.*//g; 198713214adfSAndy Whitcroft $s =~ s/$;//g; # Remove any comments 198853210168SAndy Whitcroft if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ && 198953210168SAndy Whitcroft $c !~ /}\s*while\s*/) 1990773647a0SAndy Whitcroft { 19918905a67cSAndy Whitcroft ERROR("trailing statements should be on next line\n" . $herecurr); 19928905a67cSAndy Whitcroft } 19938905a67cSAndy Whitcroft } 19948905a67cSAndy Whitcroft 199513214adfSAndy Whitcroft# Check for bitwise tests written as boolean 199613214adfSAndy Whitcroft if ($line =~ / 199713214adfSAndy Whitcroft (?: 199813214adfSAndy Whitcroft (?:\[|\(|\&\&|\|\|) 199913214adfSAndy Whitcroft \s*0[xX][0-9]+\s* 200013214adfSAndy Whitcroft (?:\&\&|\|\|) 200113214adfSAndy Whitcroft | 200213214adfSAndy Whitcroft (?:\&\&|\|\|) 200313214adfSAndy Whitcroft \s*0[xX][0-9]+\s* 200413214adfSAndy Whitcroft (?:\&\&|\|\||\)|\]) 200513214adfSAndy Whitcroft )/x) 200613214adfSAndy Whitcroft { 200713214adfSAndy Whitcroft WARN("boolean test with hexadecimal, perhaps just 1 \& or \|?\n" . $herecurr); 200813214adfSAndy Whitcroft } 200913214adfSAndy Whitcroft 20108905a67cSAndy Whitcroft# if and else should not have general statements after it 201113214adfSAndy Whitcroft if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/) { 201213214adfSAndy Whitcroft my $s = $1; 201313214adfSAndy Whitcroft $s =~ s/$;//g; # Remove any comments 201413214adfSAndy Whitcroft if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) { 20158905a67cSAndy Whitcroft ERROR("trailing statements should be on next line\n" . $herecurr); 20160a920b5bSAndy Whitcroft } 201713214adfSAndy Whitcroft } 2018a1080bf8SAndy Whitcroft# case and default should not have general statements after them 2019a1080bf8SAndy Whitcroft if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g && 2020a1080bf8SAndy Whitcroft $line !~ /\G(?: 2021a1080bf8SAndy Whitcroft (?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$| 2022a1080bf8SAndy Whitcroft \s*return\s+ 2023a1080bf8SAndy Whitcroft )/xg) 2024a1080bf8SAndy Whitcroft { 2025a1080bf8SAndy Whitcroft ERROR("trailing statements should be on next line\n" . $herecurr); 2026a1080bf8SAndy Whitcroft } 20270a920b5bSAndy Whitcroft 20280a920b5bSAndy Whitcroft # Check for }<nl>else {, these must be at the same 20290a920b5bSAndy Whitcroft # indent level to be relevant to each other. 20300a920b5bSAndy Whitcroft if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ and 20310a920b5bSAndy Whitcroft $previndent == $indent) { 2032de7d4f0eSAndy Whitcroft ERROR("else should follow close brace '}'\n" . $hereprev); 20330a920b5bSAndy Whitcroft } 20340a920b5bSAndy Whitcroft 2035c2fdda0dSAndy Whitcroft if ($prevline=~/}\s*$/ and $line=~/^.\s*while\s*/ and 2036c2fdda0dSAndy Whitcroft $previndent == $indent) { 2037c2fdda0dSAndy Whitcroft my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0); 2038c2fdda0dSAndy Whitcroft 2039c2fdda0dSAndy Whitcroft # Find out what is on the end of the line after the 2040c2fdda0dSAndy Whitcroft # conditional. 2041773647a0SAndy Whitcroft substr($s, 0, length($c), ''); 2042c2fdda0dSAndy Whitcroft $s =~ s/\n.*//g; 2043c2fdda0dSAndy Whitcroft 2044c2fdda0dSAndy Whitcroft if ($s =~ /^\s*;/) { 2045c2fdda0dSAndy Whitcroft ERROR("while should follow close brace '}'\n" . $hereprev); 2046c2fdda0dSAndy Whitcroft } 2047c2fdda0dSAndy Whitcroft } 2048c2fdda0dSAndy Whitcroft 20490a920b5bSAndy Whitcroft#studly caps, commented out until figure out how to distinguish between use of existing and adding new 20500a920b5bSAndy Whitcroft# if (($line=~/[\w_][a-z\d]+[A-Z]/) and !($line=~/print/)) { 20510a920b5bSAndy Whitcroft# print "No studly caps, use _\n"; 20520a920b5bSAndy Whitcroft# print "$herecurr"; 20530a920b5bSAndy Whitcroft# $clean = 0; 20540a920b5bSAndy Whitcroft# } 20550a920b5bSAndy Whitcroft 20560a920b5bSAndy Whitcroft#no spaces allowed after \ in define 2057c45dcabdSAndy Whitcroft if ($line=~/\#\s*define.*\\\s$/) { 2058de7d4f0eSAndy Whitcroft WARN("Whitepspace after \\ makes next lines useless\n" . $herecurr); 20590a920b5bSAndy Whitcroft } 20600a920b5bSAndy Whitcroft 2061653d4876SAndy Whitcroft#warn if <asm/foo.h> is #included and <linux/foo.h> is available (uses RAW line) 2062c45dcabdSAndy Whitcroft if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) { 2063e09dec48SAndy Whitcroft my $file = "$1.h"; 2064e09dec48SAndy Whitcroft my $checkfile = "include/linux/$file"; 2065e09dec48SAndy Whitcroft if (-f "$root/$checkfile" && 2066e09dec48SAndy Whitcroft $realfile ne $checkfile && 2067c45dcabdSAndy Whitcroft $1 ne 'irq') 2068c45dcabdSAndy Whitcroft { 2069e09dec48SAndy Whitcroft if ($realfile =~ m{^arch/}) { 2070e09dec48SAndy Whitcroft CHK("Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr); 2071e09dec48SAndy Whitcroft } else { 2072e09dec48SAndy Whitcroft WARN("Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr); 2073e09dec48SAndy Whitcroft } 20740a920b5bSAndy Whitcroft } 20750a920b5bSAndy Whitcroft } 20760a920b5bSAndy Whitcroft 2077653d4876SAndy Whitcroft# multi-statement macros should be enclosed in a do while loop, grab the 2078653d4876SAndy Whitcroft# first statement and ensure its the whole macro if its not enclosed 2079cf655043SAndy Whitcroft# in a known good container 2080b8f96a31SAndy Whitcroft if ($realfile !~ m@/vmlinux.lds.h$@ && 2081b8f96a31SAndy Whitcroft $line =~ /^.\s*\#\s*define\s*$Ident(\()?/) { 2082d8aaf121SAndy Whitcroft my $ln = $linenr; 2083d8aaf121SAndy Whitcroft my $cnt = $realcnt; 2084c45dcabdSAndy Whitcroft my ($off, $dstat, $dcond, $rest); 2085c45dcabdSAndy Whitcroft my $ctx = ''; 2086653d4876SAndy Whitcroft 2087c45dcabdSAndy Whitcroft my $args = defined($1); 2088de7d4f0eSAndy Whitcroft 2089c45dcabdSAndy Whitcroft # Find the end of the macro and limit our statement 2090c45dcabdSAndy Whitcroft # search to that. 2091c45dcabdSAndy Whitcroft while ($cnt > 0 && defined $lines[$ln - 1] && 2092c45dcabdSAndy Whitcroft $lines[$ln - 1] =~ /^(?:-|..*\\$)/) 2093c45dcabdSAndy Whitcroft { 2094c45dcabdSAndy Whitcroft $ctx .= $rawlines[$ln - 1] . "\n"; 2095a3bb97a7SAndy Whitcroft $cnt-- if ($lines[$ln - 1] !~ /^-/); 2096c45dcabdSAndy Whitcroft $ln++; 2097de7d4f0eSAndy Whitcroft } 2098c45dcabdSAndy Whitcroft $ctx .= $rawlines[$ln - 1]; 2099d8aaf121SAndy Whitcroft 2100c45dcabdSAndy Whitcroft ($dstat, $dcond, $ln, $cnt, $off) = 2101c45dcabdSAndy Whitcroft ctx_statement_block($linenr, $ln - $linenr + 1, 0); 2102c45dcabdSAndy Whitcroft #print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n"; 2103a3bb97a7SAndy Whitcroft #print "LINE<$lines[$ln-1]> len<" . length($lines[$ln-1]) . "\n"; 2104c45dcabdSAndy Whitcroft 2105c45dcabdSAndy Whitcroft # Extract the remainder of the define (if any) and 2106c45dcabdSAndy Whitcroft # rip off surrounding spaces, and trailing \'s. 2107c45dcabdSAndy Whitcroft $rest = ''; 2108636d140aSAndy Whitcroft while ($off != 0 || ($cnt > 0 && $rest =~ /\\\s*$/)) { 2109636d140aSAndy Whitcroft #print "ADDING cnt<$cnt> $off <" . substr($lines[$ln - 1], $off) . "> rest<$rest>\n"; 2110a3bb97a7SAndy Whitcroft if ($off != 0 || $lines[$ln - 1] !~ /^-/) { 2111c45dcabdSAndy Whitcroft $rest .= substr($lines[$ln - 1], $off) . "\n"; 2112c45dcabdSAndy Whitcroft $cnt--; 2113a3bb97a7SAndy Whitcroft } 2114a3bb97a7SAndy Whitcroft $ln++; 2115c45dcabdSAndy Whitcroft $off = 0; 2116c45dcabdSAndy Whitcroft } 2117c45dcabdSAndy Whitcroft $rest =~ s/\\\n.//g; 2118c45dcabdSAndy Whitcroft $rest =~ s/^\s*//s; 2119c45dcabdSAndy Whitcroft $rest =~ s/\s*$//s; 2120c45dcabdSAndy Whitcroft 2121c45dcabdSAndy Whitcroft # Clean up the original statement. 2122c45dcabdSAndy Whitcroft if ($args) { 2123c45dcabdSAndy Whitcroft substr($dstat, 0, length($dcond), ''); 2124d8aaf121SAndy Whitcroft } else { 2125c45dcabdSAndy Whitcroft $dstat =~ s/^.\s*\#\s*define\s+$Ident\s*//; 2126c45dcabdSAndy Whitcroft } 2127292f1a9bSAndy Whitcroft $dstat =~ s/$;//g; 2128c45dcabdSAndy Whitcroft $dstat =~ s/\\\n.//g; 2129c45dcabdSAndy Whitcroft $dstat =~ s/^\s*//s; 2130c45dcabdSAndy Whitcroft $dstat =~ s/\s*$//s; 2131c45dcabdSAndy Whitcroft 2132c45dcabdSAndy Whitcroft # Flatten any parentheses and braces 2133c45dcabdSAndy Whitcroft while ($dstat =~ s/\([^\(\)]*\)/1/) { 2134c45dcabdSAndy Whitcroft } 2135c45dcabdSAndy Whitcroft while ($dstat =~ s/\{[^\{\}]*\}/1/) { 2136c45dcabdSAndy Whitcroft } 2137c45dcabdSAndy Whitcroft 2138c45dcabdSAndy Whitcroft my $exceptions = qr{ 2139c45dcabdSAndy Whitcroft $Declare| 2140c45dcabdSAndy Whitcroft module_param_named| 2141c45dcabdSAndy Whitcroft MODULE_PARAM_DESC| 2142c45dcabdSAndy Whitcroft DECLARE_PER_CPU| 2143c45dcabdSAndy Whitcroft DEFINE_PER_CPU| 2144c45dcabdSAndy Whitcroft __typeof__\( 2145c45dcabdSAndy Whitcroft }x; 2146a3bb97a7SAndy Whitcroft #print "REST<$rest>\n"; 2147c45dcabdSAndy Whitcroft if ($rest ne '') { 2148c45dcabdSAndy Whitcroft if ($rest !~ /while\s*\(/ && 2149c45dcabdSAndy Whitcroft $dstat !~ /$exceptions/) 2150c45dcabdSAndy Whitcroft { 2151c45dcabdSAndy Whitcroft ERROR("Macros with multiple statements should be enclosed in a do - while loop\n" . "$here\n$ctx\n"); 2152c45dcabdSAndy Whitcroft } 2153c45dcabdSAndy Whitcroft 2154c45dcabdSAndy Whitcroft } elsif ($ctx !~ /;/) { 2155c45dcabdSAndy Whitcroft if ($dstat ne '' && 2156c45dcabdSAndy Whitcroft $dstat !~ /^(?:$Ident|-?$Constant)$/ && 2157c45dcabdSAndy Whitcroft $dstat !~ /$exceptions/ && 2158c45dcabdSAndy Whitcroft $dstat =~ /$Operators/) 2159c45dcabdSAndy Whitcroft { 2160de7d4f0eSAndy Whitcroft ERROR("Macros with complex values should be enclosed in parenthesis\n" . "$here\n$ctx\n"); 2161d8aaf121SAndy Whitcroft } 21620a920b5bSAndy Whitcroft } 2163653d4876SAndy Whitcroft } 21640a920b5bSAndy Whitcroft 2165f0a594c1SAndy Whitcroft# check for redundant bracing round if etc 216613214adfSAndy Whitcroft if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) { 216713214adfSAndy Whitcroft my ($level, $endln, @chunks) = 2168cf655043SAndy Whitcroft ctx_statement_full($linenr, $realcnt, 1); 216913214adfSAndy Whitcroft #print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n"; 2170cf655043SAndy Whitcroft #print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n"; 2171cf655043SAndy Whitcroft if ($#chunks > 0 && $level == 0) { 217213214adfSAndy Whitcroft my $allowed = 0; 217313214adfSAndy Whitcroft my $seen = 0; 2174773647a0SAndy Whitcroft my $herectx = $here . "\n"; 2175cf655043SAndy Whitcroft my $ln = $linenr - 1; 217613214adfSAndy Whitcroft for my $chunk (@chunks) { 217713214adfSAndy Whitcroft my ($cond, $block) = @{$chunk}; 217813214adfSAndy Whitcroft 2179773647a0SAndy Whitcroft # If the condition carries leading newlines, then count those as offsets. 2180773647a0SAndy Whitcroft my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s); 2181773647a0SAndy Whitcroft my $offset = statement_rawlines($whitespace) - 1; 2182773647a0SAndy Whitcroft 2183773647a0SAndy Whitcroft #print "COND<$cond> whitespace<$whitespace> offset<$offset>\n"; 2184773647a0SAndy Whitcroft 2185773647a0SAndy Whitcroft # We have looked at and allowed this specific line. 2186773647a0SAndy Whitcroft $suppress_ifbraces{$ln + $offset} = 1; 2187773647a0SAndy Whitcroft 2188773647a0SAndy Whitcroft $herectx .= "$rawlines[$ln + $offset]\n[...]\n"; 2189cf655043SAndy Whitcroft $ln += statement_rawlines($block) - 1; 2190cf655043SAndy Whitcroft 2191773647a0SAndy Whitcroft substr($block, 0, length($cond), ''); 219213214adfSAndy Whitcroft 219313214adfSAndy Whitcroft $seen++ if ($block =~ /^\s*{/); 219413214adfSAndy Whitcroft 2195cf655043SAndy Whitcroft #print "cond<$cond> block<$block> allowed<$allowed>\n"; 2196cf655043SAndy Whitcroft if (statement_lines($cond) > 1) { 2197cf655043SAndy Whitcroft #print "APW: ALLOWED: cond<$cond>\n"; 219813214adfSAndy Whitcroft $allowed = 1; 219913214adfSAndy Whitcroft } 220013214adfSAndy Whitcroft if ($block =~/\b(?:if|for|while)\b/) { 2201cf655043SAndy Whitcroft #print "APW: ALLOWED: block<$block>\n"; 220213214adfSAndy Whitcroft $allowed = 1; 220313214adfSAndy Whitcroft } 2204cf655043SAndy Whitcroft if (statement_block_size($block) > 1) { 2205cf655043SAndy Whitcroft #print "APW: ALLOWED: lines block<$block>\n"; 220613214adfSAndy Whitcroft $allowed = 1; 220713214adfSAndy Whitcroft } 220813214adfSAndy Whitcroft } 220913214adfSAndy Whitcroft if ($seen && !$allowed) { 2210cf655043SAndy Whitcroft WARN("braces {} are not necessary for any arm of this statement\n" . $herectx); 221113214adfSAndy Whitcroft } 221213214adfSAndy Whitcroft } 221313214adfSAndy Whitcroft } 2214773647a0SAndy Whitcroft if (!defined $suppress_ifbraces{$linenr - 1} && 221513214adfSAndy Whitcroft $line =~ /\b(if|while|for|else)\b/) { 2216cf655043SAndy Whitcroft my $allowed = 0; 2217f0a594c1SAndy Whitcroft 2218cf655043SAndy Whitcroft # Check the pre-context. 2219cf655043SAndy Whitcroft if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) { 2220cf655043SAndy Whitcroft #print "APW: ALLOWED: pre<$1>\n"; 2221cf655043SAndy Whitcroft $allowed = 1; 2222f0a594c1SAndy Whitcroft } 2223773647a0SAndy Whitcroft 2224773647a0SAndy Whitcroft my ($level, $endln, @chunks) = 2225773647a0SAndy Whitcroft ctx_statement_full($linenr, $realcnt, $-[0]); 2226773647a0SAndy Whitcroft 2227cf655043SAndy Whitcroft # Check the condition. 2228cf655043SAndy Whitcroft my ($cond, $block) = @{$chunks[0]}; 2229773647a0SAndy Whitcroft #print "CHECKING<$linenr> cond<$cond> block<$block>\n"; 2230cf655043SAndy Whitcroft if (defined $cond) { 2231773647a0SAndy Whitcroft substr($block, 0, length($cond), ''); 2232cf655043SAndy Whitcroft } 2233cf655043SAndy Whitcroft if (statement_lines($cond) > 1) { 2234cf655043SAndy Whitcroft #print "APW: ALLOWED: cond<$cond>\n"; 2235cf655043SAndy Whitcroft $allowed = 1; 2236cf655043SAndy Whitcroft } 2237cf655043SAndy Whitcroft if ($block =~/\b(?:if|for|while)\b/) { 2238cf655043SAndy Whitcroft #print "APW: ALLOWED: block<$block>\n"; 2239cf655043SAndy Whitcroft $allowed = 1; 2240cf655043SAndy Whitcroft } 2241cf655043SAndy Whitcroft if (statement_block_size($block) > 1) { 2242cf655043SAndy Whitcroft #print "APW: ALLOWED: lines block<$block>\n"; 2243cf655043SAndy Whitcroft $allowed = 1; 2244cf655043SAndy Whitcroft } 2245cf655043SAndy Whitcroft # Check the post-context. 2246cf655043SAndy Whitcroft if (defined $chunks[1]) { 2247cf655043SAndy Whitcroft my ($cond, $block) = @{$chunks[1]}; 2248cf655043SAndy Whitcroft if (defined $cond) { 2249773647a0SAndy Whitcroft substr($block, 0, length($cond), ''); 2250cf655043SAndy Whitcroft } 2251cf655043SAndy Whitcroft if ($block =~ /^\s*\{/) { 2252cf655043SAndy Whitcroft #print "APW: ALLOWED: chunk-1 block<$block>\n"; 2253cf655043SAndy Whitcroft $allowed = 1; 2254cf655043SAndy Whitcroft } 2255cf655043SAndy Whitcroft } 2256cf655043SAndy Whitcroft if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) { 2257cf655043SAndy Whitcroft my $herectx = $here . "\n";; 2258f055663cSAndy Whitcroft my $cnt = statement_rawlines($block); 2259cf655043SAndy Whitcroft 2260f055663cSAndy Whitcroft for (my $n = 0; $n < $cnt; $n++) { 2261f055663cSAndy Whitcroft $herectx .= raw_line($linenr, $n) . "\n";; 2262cf655043SAndy Whitcroft } 2263cf655043SAndy Whitcroft 2264cf655043SAndy Whitcroft WARN("braces {} are not necessary for single statement blocks\n" . $herectx); 2265f0a594c1SAndy Whitcroft } 2266f0a594c1SAndy Whitcroft } 2267f0a594c1SAndy Whitcroft 2268653d4876SAndy Whitcroft# don't include deprecated include files (uses RAW line) 22694a0df2efSAndy Whitcroft for my $inc (@dep_includes) { 2270c45dcabdSAndy Whitcroft if ($rawline =~ m@^.\s*\#\s*include\s*\<$inc>@) { 2271de7d4f0eSAndy Whitcroft ERROR("Don't use <$inc>: see Documentation/feature-removal-schedule.txt\n" . $herecurr); 22720a920b5bSAndy Whitcroft } 22730a920b5bSAndy Whitcroft } 22740a920b5bSAndy Whitcroft 22754a0df2efSAndy Whitcroft# don't use deprecated functions 22764a0df2efSAndy Whitcroft for my $func (@dep_functions) { 227700df344fSAndy Whitcroft if ($line =~ /\b$func\b/) { 2278de7d4f0eSAndy Whitcroft ERROR("Don't use $func(): see Documentation/feature-removal-schedule.txt\n" . $herecurr); 22794a0df2efSAndy Whitcroft } 22804a0df2efSAndy Whitcroft } 22814a0df2efSAndy Whitcroft 22824a0df2efSAndy Whitcroft# no volatiles please 22836c72ffaaSAndy Whitcroft my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b}; 22846c72ffaaSAndy Whitcroft if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) { 2285de7d4f0eSAndy Whitcroft WARN("Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt\n" . $herecurr); 22864a0df2efSAndy Whitcroft } 22874a0df2efSAndy Whitcroft 22889c0ca6f9SAndy Whitcroft# SPIN_LOCK_UNLOCKED & RW_LOCK_UNLOCKED are deprecated 22899c0ca6f9SAndy Whitcroft if ($line =~ /\b(SPIN_LOCK_UNLOCKED|RW_LOCK_UNLOCKED)/) { 22909c0ca6f9SAndy Whitcroft ERROR("Use of $1 is deprecated: see Documentation/spinlocks.txt\n" . $herecurr); 22919c0ca6f9SAndy Whitcroft } 22929c0ca6f9SAndy Whitcroft 229300df344fSAndy Whitcroft# warn about #if 0 2294c45dcabdSAndy Whitcroft if ($line =~ /^.\s*\#\s*if\s+0\b/) { 2295de7d4f0eSAndy Whitcroft CHK("if this code is redundant consider removing it\n" . 2296de7d4f0eSAndy Whitcroft $herecurr); 22974a0df2efSAndy Whitcroft } 22984a0df2efSAndy Whitcroft 2299f0a594c1SAndy Whitcroft# check for needless kfree() checks 2300f0a594c1SAndy Whitcroft if ($prevline =~ /\bif\s*\(([^\)]*)\)/) { 2301f0a594c1SAndy Whitcroft my $expr = $1; 2302f0a594c1SAndy Whitcroft if ($line =~ /\bkfree\(\Q$expr\E\);/) { 23033c232147SWolfram Sang WARN("kfree(NULL) is safe this check is probably not required\n" . $hereprev); 2304f0a594c1SAndy Whitcroft } 2305f0a594c1SAndy Whitcroft } 23064c432a8fSGreg Kroah-Hartman# check for needless usb_free_urb() checks 23074c432a8fSGreg Kroah-Hartman if ($prevline =~ /\bif\s*\(([^\)]*)\)/) { 23084c432a8fSGreg Kroah-Hartman my $expr = $1; 23094c432a8fSGreg Kroah-Hartman if ($line =~ /\busb_free_urb\(\Q$expr\E\);/) { 23104c432a8fSGreg Kroah-Hartman WARN("usb_free_urb(NULL) is safe this check is probably not required\n" . $hereprev); 23114c432a8fSGreg Kroah-Hartman } 23124c432a8fSGreg Kroah-Hartman } 2313f0a594c1SAndy Whitcroft 231400df344fSAndy Whitcroft# warn about #ifdefs in C files 2315c45dcabdSAndy Whitcroft# if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) { 231600df344fSAndy Whitcroft# print "#ifdef in C files should be avoided\n"; 231700df344fSAndy Whitcroft# print "$herecurr"; 231800df344fSAndy Whitcroft# $clean = 0; 231900df344fSAndy Whitcroft# } 232000df344fSAndy Whitcroft 232122f2a2efSAndy Whitcroft# warn about spacing in #ifdefs 2322c45dcabdSAndy Whitcroft if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) { 232322f2a2efSAndy Whitcroft ERROR("exactly one space required after that #$1\n" . $herecurr); 232422f2a2efSAndy Whitcroft } 232522f2a2efSAndy Whitcroft 23264a0df2efSAndy Whitcroft# check for spinlock_t definitions without a comment. 2327171ae1a4SAndy Whitcroft if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ || 2328171ae1a4SAndy Whitcroft $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) { 23294a0df2efSAndy Whitcroft my $which = $1; 23304a0df2efSAndy Whitcroft if (!ctx_has_comment($first_line, $linenr)) { 2331de7d4f0eSAndy Whitcroft CHK("$1 definition without comment\n" . $herecurr); 23324a0df2efSAndy Whitcroft } 23334a0df2efSAndy Whitcroft } 23344a0df2efSAndy Whitcroft# check for memory barriers without a comment. 23354a0df2efSAndy Whitcroft if ($line =~ /\b(mb|rmb|wmb|read_barrier_depends|smp_mb|smp_rmb|smp_wmb|smp_read_barrier_depends)\(/) { 23364a0df2efSAndy Whitcroft if (!ctx_has_comment($first_line, $linenr)) { 2337de7d4f0eSAndy Whitcroft CHK("memory barrier without comment\n" . $herecurr); 23384a0df2efSAndy Whitcroft } 23394a0df2efSAndy Whitcroft } 23404a0df2efSAndy Whitcroft# check of hardware specific defines 2341c45dcabdSAndy Whitcroft if ($line =~ m@^.\s*\#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) { 2342de7d4f0eSAndy Whitcroft CHK("architecture specific defines should be avoided\n" . $herecurr); 23430a920b5bSAndy Whitcroft } 2344653d4876SAndy Whitcroft 2345de7d4f0eSAndy Whitcroft# check the location of the inline attribute, that it is between 2346de7d4f0eSAndy Whitcroft# storage class and type. 23479c0ca6f9SAndy Whitcroft if ($line =~ /\b$Type\s+$Inline\b/ || 23489c0ca6f9SAndy Whitcroft $line =~ /\b$Inline\s+$Storage\b/) { 2349de7d4f0eSAndy Whitcroft ERROR("inline keyword should sit between storage class and type\n" . $herecurr); 2350de7d4f0eSAndy Whitcroft } 2351de7d4f0eSAndy Whitcroft 23528905a67cSAndy Whitcroft# Check for __inline__ and __inline, prefer inline 23538905a67cSAndy Whitcroft if ($line =~ /\b(__inline__|__inline)\b/) { 23548905a67cSAndy Whitcroft WARN("plain inline is preferred over $1\n" . $herecurr); 23558905a67cSAndy Whitcroft } 23568905a67cSAndy Whitcroft 2357de7d4f0eSAndy Whitcroft# check for new externs in .c files. 2358171ae1a4SAndy Whitcroft if ($realfile =~ /\.c$/ && defined $stat && 2359c45dcabdSAndy Whitcroft $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s) 2360171ae1a4SAndy Whitcroft { 2361c45dcabdSAndy Whitcroft my $function_name = $1; 2362c45dcabdSAndy Whitcroft my $paren_space = $2; 2363171ae1a4SAndy Whitcroft 2364171ae1a4SAndy Whitcroft my $s = $stat; 2365171ae1a4SAndy Whitcroft if (defined $cond) { 2366171ae1a4SAndy Whitcroft substr($s, 0, length($cond), ''); 2367171ae1a4SAndy Whitcroft } 2368c45dcabdSAndy Whitcroft if ($s =~ /^\s*;/ && 2369c45dcabdSAndy Whitcroft $function_name ne 'uninitialized_var') 2370c45dcabdSAndy Whitcroft { 2371de7d4f0eSAndy Whitcroft WARN("externs should be avoided in .c files\n" . $herecurr); 2372de7d4f0eSAndy Whitcroft } 2373de7d4f0eSAndy Whitcroft 2374171ae1a4SAndy Whitcroft if ($paren_space =~ /\n/) { 2375171ae1a4SAndy Whitcroft WARN("arguments for function declarations should follow identifier\n" . $herecurr); 2376171ae1a4SAndy Whitcroft } 23779c9ba34eSAndy Whitcroft 23789c9ba34eSAndy Whitcroft } elsif ($realfile =~ /\.c$/ && defined $stat && 23799c9ba34eSAndy Whitcroft $stat =~ /^.\s*extern\s+/) 23809c9ba34eSAndy Whitcroft { 23819c9ba34eSAndy Whitcroft WARN("externs should be avoided in .c files\n" . $herecurr); 2382171ae1a4SAndy Whitcroft } 2383171ae1a4SAndy Whitcroft 2384de7d4f0eSAndy Whitcroft# checks for new __setup's 2385de7d4f0eSAndy Whitcroft if ($rawline =~ /\b__setup\("([^"]*)"/) { 2386de7d4f0eSAndy Whitcroft my $name = $1; 2387de7d4f0eSAndy Whitcroft 2388de7d4f0eSAndy Whitcroft if (!grep(/$name/, @setup_docs)) { 2389de7d4f0eSAndy Whitcroft CHK("__setup appears un-documented -- check Documentation/kernel-parameters.txt\n" . $herecurr); 2390de7d4f0eSAndy Whitcroft } 2391653d4876SAndy Whitcroft } 23929c0ca6f9SAndy Whitcroft 23939c0ca6f9SAndy Whitcroft# check for pointless casting of kmalloc return 23949c0ca6f9SAndy Whitcroft if ($line =~ /\*\s*\)\s*k[czm]alloc\b/) { 23959c0ca6f9SAndy Whitcroft WARN("unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr); 23969c0ca6f9SAndy Whitcroft } 239713214adfSAndy Whitcroft 239813214adfSAndy Whitcroft# check for gcc specific __FUNCTION__ 239913214adfSAndy Whitcroft if ($line =~ /__FUNCTION__/) { 240013214adfSAndy Whitcroft WARN("__func__ should be used instead of gcc specific __FUNCTION__\n" . $herecurr); 240113214adfSAndy Whitcroft } 2402773647a0SAndy Whitcroft 2403773647a0SAndy Whitcroft# check for semaphores used as mutexes 2404171ae1a4SAndy Whitcroft if ($line =~ /^.\s*(DECLARE_MUTEX|init_MUTEX)\s*\(/) { 2405773647a0SAndy Whitcroft WARN("mutexes are preferred for single holder semaphores\n" . $herecurr); 2406773647a0SAndy Whitcroft } 2407773647a0SAndy Whitcroft# check for semaphores used as mutexes 2408171ae1a4SAndy Whitcroft if ($line =~ /^.\s*init_MUTEX_LOCKED\s*\(/) { 2409773647a0SAndy Whitcroft WARN("consider using a completion\n" . $herecurr); 2410773647a0SAndy Whitcroft } 2411773647a0SAndy Whitcroft# recommend strict_strto* over simple_strto* 2412773647a0SAndy Whitcroft if ($line =~ /\bsimple_(strto.*?)\s*\(/) { 2413773647a0SAndy Whitcroft WARN("consider using strict_$1 in preference to simple_$1\n" . $herecurr); 2414773647a0SAndy Whitcroft } 2415f3db6639SMichael Ellerman# check for __initcall(), use device_initcall() explicitly please 2416f3db6639SMichael Ellerman if ($line =~ /^.\s*__initcall\s*\(/) { 2417f3db6639SMichael Ellerman WARN("please use device_initcall() instead of __initcall()\n" . $herecurr); 2418f3db6639SMichael Ellerman } 2419773647a0SAndy Whitcroft 2420773647a0SAndy Whitcroft# use of NR_CPUS is usually wrong 2421773647a0SAndy Whitcroft# ignore definitions of NR_CPUS and usage to define arrays as likely right 2422773647a0SAndy Whitcroft if ($line =~ /\bNR_CPUS\b/ && 2423c45dcabdSAndy Whitcroft $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ && 2424c45dcabdSAndy Whitcroft $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ && 2425171ae1a4SAndy Whitcroft $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ && 2426171ae1a4SAndy Whitcroft $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ && 2427171ae1a4SAndy Whitcroft $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/) 2428773647a0SAndy Whitcroft { 2429773647a0SAndy Whitcroft WARN("usage of NR_CPUS is often wrong - consider using cpu_possible(), num_possible_cpus(), for_each_possible_cpu(), etc\n" . $herecurr); 2430773647a0SAndy Whitcroft } 24319c9ba34eSAndy Whitcroft 24329c9ba34eSAndy Whitcroft# check for %L{u,d,i} in strings 24339c9ba34eSAndy Whitcroft my $string; 24349c9ba34eSAndy Whitcroft while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) { 24359c9ba34eSAndy Whitcroft $string = substr($rawline, $-[1], $+[1] - $-[1]); 24362a1bc5d5SAndy Whitcroft $string =~ s/%%/__/g; 24379c9ba34eSAndy Whitcroft if ($string =~ /(?<!%)%L[udi]/) { 24389c9ba34eSAndy Whitcroft WARN("\%Ld/%Lu are not-standard C, use %lld/%llu\n" . $herecurr); 24399c9ba34eSAndy Whitcroft last; 24409c9ba34eSAndy Whitcroft } 24419c9ba34eSAndy Whitcroft } 244213214adfSAndy Whitcroft } 244313214adfSAndy Whitcroft 244413214adfSAndy Whitcroft # If we have no input at all, then there is nothing to report on 244513214adfSAndy Whitcroft # so just keep quiet. 244613214adfSAndy Whitcroft if ($#rawlines == -1) { 244713214adfSAndy Whitcroft exit(0); 24480a920b5bSAndy Whitcroft } 24490a920b5bSAndy Whitcroft 24508905a67cSAndy Whitcroft # In mailback mode only produce a report in the negative, for 24518905a67cSAndy Whitcroft # things that appear to be patches. 24528905a67cSAndy Whitcroft if ($mailback && ($clean == 1 || !$is_patch)) { 24538905a67cSAndy Whitcroft exit(0); 24548905a67cSAndy Whitcroft } 24558905a67cSAndy Whitcroft 24568905a67cSAndy Whitcroft # This is not a patch, and we are are in 'no-patch' mode so 24578905a67cSAndy Whitcroft # just keep quiet. 24588905a67cSAndy Whitcroft if (!$chk_patch && !$is_patch) { 24598905a67cSAndy Whitcroft exit(0); 24608905a67cSAndy Whitcroft } 24618905a67cSAndy Whitcroft 24628905a67cSAndy Whitcroft if (!$is_patch) { 2463de7d4f0eSAndy Whitcroft ERROR("Does not appear to be a unified-diff format patch\n"); 24640a920b5bSAndy Whitcroft } 24650a920b5bSAndy Whitcroft if ($is_patch && $chk_signoff && $signoff == 0) { 2466de7d4f0eSAndy Whitcroft ERROR("Missing Signed-off-by: line(s)\n"); 24670a920b5bSAndy Whitcroft } 24680a920b5bSAndy Whitcroft 2469f0a594c1SAndy Whitcroft print report_dump(); 247013214adfSAndy Whitcroft if ($summary && !($clean == 1 && $quiet == 1)) { 247113214adfSAndy Whitcroft print "$filename " if ($summary_file); 24726c72ffaaSAndy Whitcroft print "total: $cnt_error errors, $cnt_warn warnings, " . 24736c72ffaaSAndy Whitcroft (($check)? "$cnt_chk checks, " : "") . 24746c72ffaaSAndy Whitcroft "$cnt_lines lines checked\n"; 24758905a67cSAndy Whitcroft print "\n" if ($quiet == 0); 24766c72ffaaSAndy Whitcroft } 24778905a67cSAndy Whitcroft 24780a920b5bSAndy Whitcroft if ($clean == 1 && $quiet == 0) { 2479c2fdda0dSAndy Whitcroft print "$vname has no obvious style problems and is ready for submission.\n" 24800a920b5bSAndy Whitcroft } 24810a920b5bSAndy Whitcroft if ($clean == 0 && $quiet == 0) { 2482c2fdda0dSAndy Whitcroft print "$vname has style problems, please review. If any of these errors\n"; 24830a920b5bSAndy Whitcroft print "are false positives report them to the maintainer, see\n"; 24840a920b5bSAndy Whitcroft print "CHECKPATCH in MAINTAINERS.\n"; 24850a920b5bSAndy Whitcroft } 248613214adfSAndy Whitcroft 24870a920b5bSAndy Whitcroft return $clean; 24880a920b5bSAndy Whitcroft} 2489