blob: 88027f237cdf61f56c0be064b43dd7984285c081 [file] [log] [blame]
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001#!/usr/bin/perl -w
2# (c) 2001, Dave Jones. <davej@codemonkey.org.uk> (the file handling bit)
Andy Whitcroft00df3442007-06-08 13:47:06 -07003# (c) 2005, Joel Schopp <jschopp@austin.ibm.com> (the ugly bit)
Andy Whitcroft0a920b52007-06-01 00:46:48 -07004# (c) 2007, Andy Whitcroft <apw@uk.ibm.com> (new conditions, test suite, etc)
5# Licensed under the terms of the GNU GPL License version 2
6
7use strict;
8
9my $P = $0;
Andy Whitcroft00df3442007-06-08 13:47:06 -070010$P =~ s@.*/@@g;
Andy Whitcroft0a920b52007-06-01 00:46:48 -070011
Andy Whitcroft6cbb2e72008-07-23 21:28:55 -070012my $V = '0.20';
Andy Whitcroft0a920b52007-06-01 00:46:48 -070013
14use Getopt::Long qw(:config no_auto_abbrev);
15
16my $quiet = 0;
17my $tree = 1;
18my $chk_signoff = 1;
19my $chk_patch = 1;
Andy Whitcroft773647a2008-03-28 14:15:58 -070020my $tst_only;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070021my $emacs = 0;
Andy Whitcroft8905a672007-11-28 16:21:06 -080022my $terse = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070023my $file = 0;
24my $check = 0;
Andy Whitcroft8905a672007-11-28 16:21:06 -080025my $summary = 1;
26my $mailback = 0;
Andy Whitcroft13214ad2008-02-08 04:22:03 -080027my $summary_file = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070028my $root;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -080029my %debug;
Andy Whitcroft0a920b52007-06-01 00:46:48 -070030GetOptions(
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070031 'q|quiet+' => \$quiet,
Andy Whitcroft0a920b52007-06-01 00:46:48 -070032 'tree!' => \$tree,
33 'signoff!' => \$chk_signoff,
34 'patch!' => \$chk_patch,
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070035 'emacs!' => \$emacs,
Andy Whitcroft8905a672007-11-28 16:21:06 -080036 'terse!' => \$terse,
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070037 'file!' => \$file,
38 'subjective!' => \$check,
39 'strict!' => \$check,
40 'root=s' => \$root,
Andy Whitcroft8905a672007-11-28 16:21:06 -080041 'summary!' => \$summary,
42 'mailback!' => \$mailback,
Andy Whitcroft13214ad2008-02-08 04:22:03 -080043 'summary-file!' => \$summary_file,
44
Andy Whitcroftc2fdda02008-02-08 04:20:54 -080045 'debug=s' => \%debug,
Andy Whitcroft773647a2008-03-28 14:15:58 -070046 'test-only=s' => \$tst_only,
Andy Whitcroft0a920b52007-06-01 00:46:48 -070047) or exit;
48
49my $exit = 0;
50
51if ($#ARGV < 0) {
Andy Whitcroft00df3442007-06-08 13:47:06 -070052 print "usage: $P [options] patchfile\n";
Andy Whitcroft0a920b52007-06-01 00:46:48 -070053 print "version: $V\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -080054 print "options: -q => quiet\n";
55 print " --no-tree => run without a kernel tree\n";
56 print " --terse => one line per report\n";
57 print " --emacs => emacs compile window format\n";
58 print " --file => check a source file\n";
59 print " --strict => enable more subjective tests\n";
60 print " --root => path to the kernel tree root\n";
61 print " --no-summary => suppress the per-file summary\n";
62 print " --summary-file => include the filename in summary\n";
Andy Whitcroft0a920b52007-06-01 00:46:48 -070063 exit(1);
64}
65
Andy Whitcroftc2fdda02008-02-08 04:20:54 -080066my $dbg_values = 0;
67my $dbg_possible = 0;
Andy Whitcroft7429c692008-07-23 21:29:06 -070068my $dbg_type = 0;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -080069for my $key (keys %debug) {
70 eval "\${dbg_$key} = '$debug{$key}';"
71}
72
Andy Whitcroft8905a672007-11-28 16:21:06 -080073if ($terse) {
74 $emacs = 1;
75 $quiet++;
76}
77
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070078if ($tree) {
79 if (defined $root) {
80 if (!top_of_kernel_tree($root)) {
81 die "$P: $root: --root does not point at a valid tree\n";
82 }
83 } else {
84 if (top_of_kernel_tree('.')) {
85 $root = '.';
86 } elsif ($0 =~ m@(.*)/scripts/[^/]*$@ &&
87 top_of_kernel_tree($1)) {
88 $root = $1;
89 }
90 }
91
92 if (!defined $root) {
93 print "Must be run from the top-level dir. of a kernel tree\n";
94 exit(2);
95 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -070096}
97
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070098my $emitted_corrupt = 0;
99
100our $Ident = qr{[A-Za-z_][A-Za-z\d_]*};
101our $Storage = qr{extern|static|asmlinkage};
102our $Sparse = qr{
103 __user|
104 __kernel|
105 __force|
106 __iomem|
107 __must_check|
108 __init_refok|
Andy Whitcroftcf655042008-03-04 14:28:20 -0800109 __kprobes
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700110 }x;
111our $Attribute = qr{
112 const|
113 __read_mostly|
114 __kprobes|
115 __(?:mem|cpu|dev|)(?:initdata|init)
116 }x;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700117our $Modifier;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700118our $Inline = qr{inline|__always_inline|noinline};
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700119our $Member = qr{->$Ident|\.$Ident|\[[^]]*\]};
120our $Lval = qr{$Ident(?:$Member)*};
121
122our $Constant = qr{(?:[0-9]+|0x[0-9a-fA-F]+)[UL]*};
123our $Assignment = qr{(?:\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=)};
124our $Operators = qr{
125 <=|>=|==|!=|
126 =>|->|<<|>>|<|>|!|~|
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800127 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700128 }x;
129
Andy Whitcroft8905a672007-11-28 16:21:06 -0800130our $NonptrType;
131our $Type;
132our $Declare;
133
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700134our $UTF8 = qr {
135 [\x09\x0A\x0D\x20-\x7E] # ASCII
136 | [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
137 | \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
138 | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
139 | \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
140 | \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
141 | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
142 | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
143}x;
144
Andy Whitcroft8905a672007-11-28 16:21:06 -0800145our @typeList = (
146 qr{void},
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700147 qr{(?:unsigned\s+)?char},
148 qr{(?:unsigned\s+)?short},
149 qr{(?:unsigned\s+)?int},
150 qr{(?:unsigned\s+)?long},
151 qr{(?:unsigned\s+)?long\s+int},
152 qr{(?:unsigned\s+)?long\s+long},
153 qr{(?:unsigned\s+)?long\s+long\s+int},
Andy Whitcroft8905a672007-11-28 16:21:06 -0800154 qr{unsigned},
155 qr{float},
156 qr{double},
157 qr{bool},
Andy Whitcroft8905a672007-11-28 16:21:06 -0800158 qr{(?:__)?(?:u|s|be|le)(?:8|16|32|64)},
159 qr{struct\s+$Ident},
160 qr{union\s+$Ident},
161 qr{enum\s+$Ident},
162 qr{${Ident}_t},
163 qr{${Ident}_handler},
164 qr{${Ident}_handler_fn},
165);
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700166our @modifierList = (
167 qr{fastcall},
168);
Andy Whitcroft8905a672007-11-28 16:21:06 -0800169
170sub build_types {
Andy Whitcroftd2172eb2008-07-23 21:29:07 -0700171 my $mods = "(?x: \n" . join("|\n ", @modifierList) . "\n)";
172 my $all = "(?x: \n" . join("|\n ", @typeList) . "\n)";
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700173 $Modifier = qr{(?:$Attribute|$Sparse|$mods)};
Andy Whitcroft8905a672007-11-28 16:21:06 -0800174 $NonptrType = qr{
Andy Whitcroftd2172eb2008-07-23 21:29:07 -0700175 (?:$Modifier\s+|const\s+)*
Andy Whitcroftcf655042008-03-04 14:28:20 -0800176 (?:
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700177 (?:typeof|__typeof__)\s*\(\s*\**\s*$Ident\s*\)|
178 (?:${all}\b)
Andy Whitcroftcf655042008-03-04 14:28:20 -0800179 )
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700180 (?:\s+$Modifier|\s+const)*
Andy Whitcroft8905a672007-11-28 16:21:06 -0800181 }x;
182 $Type = qr{
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700183 $NonptrType
Andy Whitcroft8905a672007-11-28 16:21:06 -0800184 (?:\s*\*+\s*const|\s*\*+|(?:\s*\[\s*\])+)?
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700185 (?:\s+$Inline|\s+$Modifier)*
Andy Whitcroft8905a672007-11-28 16:21:06 -0800186 }x;
187 $Declare = qr{(?:$Storage\s+)?$Type};
188}
189build_types();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700190
191$chk_signoff = 0 if ($file);
192
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700193my @dep_includes = ();
194my @dep_functions = ();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700195my $removal = "Documentation/feature-removal-schedule.txt";
196if ($tree && -f "$root/$removal") {
197 open(REMOVE, "<$root/$removal") ||
198 die "$P: $removal: open failed - $!\n";
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700199 while (<REMOVE>) {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700200 if (/^Check:\s+(.*\S)/) {
201 for my $entry (split(/[, ]+/, $1)) {
202 if ($entry =~ m@include/(.*)@) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700203 push(@dep_includes, $1);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700204
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700205 } elsif ($entry !~ m@/@) {
206 push(@dep_functions, $entry);
207 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700208 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700209 }
210 }
211}
212
Andy Whitcroft00df3442007-06-08 13:47:06 -0700213my @rawlines = ();
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800214my @lines = ();
215my $vname;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700216for my $filename (@ARGV) {
217 if ($file) {
218 open(FILE, "diff -u /dev/null $filename|") ||
219 die "$P: $filename: diff failed - $!\n";
220 } else {
221 open(FILE, "<$filename") ||
222 die "$P: $filename: open failed - $!\n";
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700223 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800224 if ($filename eq '-') {
225 $vname = 'Your patch';
226 } else {
227 $vname = $filename;
228 }
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700229 while (<FILE>) {
230 chomp;
231 push(@rawlines, $_);
232 }
233 close(FILE);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800234 if (!process($filename)) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700235 $exit = 1;
236 }
237 @rawlines = ();
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800238 @lines = ();
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700239}
240
241exit($exit);
242
243sub top_of_kernel_tree {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700244 my ($root) = @_;
245
246 my @tree_check = (
247 "COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
248 "README", "Documentation", "arch", "include", "drivers",
249 "fs", "init", "ipc", "kernel", "lib", "scripts",
250 );
251
252 foreach my $check (@tree_check) {
253 if (! -e $root . '/' . $check) {
254 return 0;
255 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700256 }
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700257 return 1;
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700258}
259
260sub expand_tabs {
261 my ($str) = @_;
262
263 my $res = '';
264 my $n = 0;
265 for my $c (split(//, $str)) {
266 if ($c eq "\t") {
267 $res .= ' ';
268 $n++;
269 for (; ($n % 8) != 0; $n++) {
270 $res .= ' ';
271 }
272 next;
273 }
274 $res .= $c;
275 $n++;
276 }
277
278 return $res;
279}
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700280sub copy_spacing {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700281 (my $res = shift) =~ tr/\t/ /c;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700282 return $res;
283}
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700284
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700285sub line_stats {
286 my ($line) = @_;
287
288 # Drop the diff line leader and expand tabs
289 $line =~ s/^.//;
290 $line = expand_tabs($line);
291
292 # Pick the indent from the front of the line.
293 my ($white) = ($line =~ /^(\s*)/);
294
295 return (length($line), length($white));
296}
297
Andy Whitcroft773647a2008-03-28 14:15:58 -0700298my $sanitise_quote = '';
299
300sub sanitise_line_reset {
301 my ($in_comment) = @_;
302
303 if ($in_comment) {
304 $sanitise_quote = '*/';
305 } else {
306 $sanitise_quote = '';
307 }
308}
Andy Whitcroft00df3442007-06-08 13:47:06 -0700309sub sanitise_line {
310 my ($line) = @_;
311
312 my $res = '';
313 my $l = '';
314
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800315 my $qlen = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -0700316 my $off = 0;
317 my $c;
Andy Whitcroft00df3442007-06-08 13:47:06 -0700318
Andy Whitcroft773647a2008-03-28 14:15:58 -0700319 # Always copy over the diff marker.
320 $res = substr($line, 0, 1);
321
322 for ($off = 1; $off < length($line); $off++) {
323 $c = substr($line, $off, 1);
324
325 # Comments we are wacking completly including the begin
326 # and end, all to $;.
327 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
328 $sanitise_quote = '*/';
329
330 substr($res, $off, 2, "$;$;");
331 $off++;
332 next;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800333 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700334 if (substr($line, $off, 2) eq '*/') {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700335 $sanitise_quote = '';
336 substr($res, $off, 2, "$;$;");
337 $off++;
338 next;
339 }
340
341 # A \ in a string means ignore the next character.
342 if (($sanitise_quote eq "'" || $sanitise_quote eq '"') &&
343 $c eq "\\") {
344 substr($res, $off, 2, 'XX');
345 $off++;
346 next;
347 }
348 # Regular quotes.
349 if ($c eq "'" || $c eq '"') {
350 if ($sanitise_quote eq '') {
351 $sanitise_quote = $c;
352
353 substr($res, $off, 1, $c);
Andy Whitcroft00df3442007-06-08 13:47:06 -0700354 next;
Andy Whitcroft773647a2008-03-28 14:15:58 -0700355 } elsif ($sanitise_quote eq $c) {
356 $sanitise_quote = '';
Andy Whitcroft00df3442007-06-08 13:47:06 -0700357 }
358 }
Andy Whitcroft773647a2008-03-28 14:15:58 -0700359
360 #print "SQ:$sanitise_quote\n";
361 if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") {
362 substr($res, $off, 1, $;);
363 } elsif ($off != 0 && $sanitise_quote && $c ne "\t") {
364 substr($res, $off, 1, 'X');
Andy Whitcroft00df3442007-06-08 13:47:06 -0700365 } else {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700366 substr($res, $off, 1, $c);
Andy Whitcroft00df3442007-06-08 13:47:06 -0700367 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800368 }
369
370 # The pathname on a #include may be surrounded by '<' and '>'.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700371 if ($res =~ /^.\s*\#\s*include\s+\<(.*)\>/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800372 my $clean = 'X' x length($1);
373 $res =~ s@\<.*\>@<$clean>@;
374
375 # The whole of a #error is a string.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700376 } elsif ($res =~ /^.\s*\#\s*(?:error|warning)\s+(.*)\b/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800377 my $clean = 'X' x length($1);
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700378 $res =~ s@(\#\s*(?:error|warning)\s+).*@$1$clean@;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800379 }
380
Andy Whitcroft00df3442007-06-08 13:47:06 -0700381 return $res;
382}
383
Andy Whitcroft8905a672007-11-28 16:21:06 -0800384sub ctx_statement_block {
385 my ($linenr, $remain, $off) = @_;
386 my $line = $linenr - 1;
387 my $blk = '';
388 my $soff = $off;
389 my $coff = $off - 1;
Andy Whitcroft773647a2008-03-28 14:15:58 -0700390 my $coff_set = 0;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800391
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800392 my $loff = 0;
393
Andy Whitcroft8905a672007-11-28 16:21:06 -0800394 my $type = '';
395 my $level = 0;
Andy Whitcroftcf655042008-03-04 14:28:20 -0800396 my $p;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800397 my $c;
398 my $len = 0;
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800399
400 my $remainder;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800401 while (1) {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700402 #warn "CSB: blk<$blk> remain<$remain>\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -0800403 # If we are about to drop off the end, pull in more
404 # context.
405 if ($off >= $len) {
406 for (; $remain > 0; $line++) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800407 next if ($lines[$line] =~ /^-/);
Andy Whitcroft8905a672007-11-28 16:21:06 -0800408 $remain--;
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800409 $loff = $len;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800410 $blk .= $lines[$line] . "\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -0800411 $len = length($blk);
412 $line++;
413 last;
414 }
415 # Bail if there is no further context.
416 #warn "CSB: blk<$blk> off<$off> len<$len>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800417 if ($off >= $len) {
Andy Whitcroft8905a672007-11-28 16:21:06 -0800418 last;
419 }
420 }
Andy Whitcroftcf655042008-03-04 14:28:20 -0800421 $p = $c;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800422 $c = substr($blk, $off, 1);
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800423 $remainder = substr($blk, $off);
Andy Whitcroft8905a672007-11-28 16:21:06 -0800424
Andy Whitcroft773647a2008-03-28 14:15:58 -0700425 #warn "CSB: c<$c> type<$type> level<$level> remainder<$remainder> coff_set<$coff_set>\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -0800426 # Statement ends at the ';' or a close '}' at the
427 # outermost level.
428 if ($level == 0 && $c eq ';') {
429 last;
430 }
431
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800432 # An else is really a conditional as long as its not else if
Andy Whitcroft773647a2008-03-28 14:15:58 -0700433 if ($level == 0 && $coff_set == 0 &&
434 (!defined($p) || $p =~ /(?:\s|\}|\+)/) &&
435 $remainder =~ /^(else)(?:\s|{)/ &&
436 $remainder !~ /^else\s+if\b/) {
437 $coff = $off + length($1) - 1;
438 $coff_set = 1;
439 #warn "CSB: mark coff<$coff> soff<$soff> 1<$1>\n";
440 #warn "[" . substr($blk, $soff, $coff - $soff + 1) . "]\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800441 }
442
Andy Whitcroft8905a672007-11-28 16:21:06 -0800443 if (($type eq '' || $type eq '(') && $c eq '(') {
444 $level++;
445 $type = '(';
446 }
447 if ($type eq '(' && $c eq ')') {
448 $level--;
449 $type = ($level != 0)? '(' : '';
450
451 if ($level == 0 && $coff < $soff) {
452 $coff = $off;
Andy Whitcroft773647a2008-03-28 14:15:58 -0700453 $coff_set = 1;
454 #warn "CSB: mark coff<$coff>\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -0800455 }
456 }
457 if (($type eq '' || $type eq '{') && $c eq '{') {
458 $level++;
459 $type = '{';
460 }
461 if ($type eq '{' && $c eq '}') {
462 $level--;
463 $type = ($level != 0)? '{' : '';
464
465 if ($level == 0) {
466 last;
467 }
468 }
469 $off++;
470 }
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -0700471 # We are truly at the end, so shuffle to the next line.
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800472 if ($off == $len) {
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -0700473 $loff = $len + 1;
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800474 $line++;
475 $remain--;
476 }
Andy Whitcroft8905a672007-11-28 16:21:06 -0800477
478 my $statement = substr($blk, $soff, $off - $soff + 1);
479 my $condition = substr($blk, $soff, $coff - $soff + 1);
480
481 #warn "STATEMENT<$statement>\n";
482 #warn "CONDITION<$condition>\n";
483
Andy Whitcroft773647a2008-03-28 14:15:58 -0700484 #print "coff<$coff> soff<$off> loff<$loff>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800485
486 return ($statement, $condition,
487 $line, $remain + 1, $off - $loff + 1, $level);
488}
489
Andy Whitcroftcf655042008-03-04 14:28:20 -0800490sub statement_lines {
491 my ($stmt) = @_;
492
493 # Strip the diff line prefixes and rip blank lines at start and end.
494 $stmt =~ s/(^|\n)./$1/g;
495 $stmt =~ s/^\s*//;
496 $stmt =~ s/\s*$//;
497
498 my @stmt_lines = ($stmt =~ /\n/g);
499
500 return $#stmt_lines + 2;
501}
502
503sub statement_rawlines {
504 my ($stmt) = @_;
505
506 my @stmt_lines = ($stmt =~ /\n/g);
507
508 return $#stmt_lines + 2;
509}
510
511sub statement_block_size {
512 my ($stmt) = @_;
513
514 $stmt =~ s/(^|\n)./$1/g;
515 $stmt =~ s/^\s*{//;
516 $stmt =~ s/}\s*$//;
517 $stmt =~ s/^\s*//;
518 $stmt =~ s/\s*$//;
519
520 my @stmt_lines = ($stmt =~ /\n/g);
521 my @stmt_statements = ($stmt =~ /;/g);
522
523 my $stmt_lines = $#stmt_lines + 2;
524 my $stmt_statements = $#stmt_statements + 1;
525
526 if ($stmt_lines > $stmt_statements) {
527 return $stmt_lines;
528 } else {
529 return $stmt_statements;
530 }
531}
532
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800533sub ctx_statement_full {
534 my ($linenr, $remain, $off) = @_;
535 my ($statement, $condition, $level);
536
537 my (@chunks);
538
Andy Whitcroftcf655042008-03-04 14:28:20 -0800539 # Grab the first conditional/block pair.
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800540 ($statement, $condition, $linenr, $remain, $off, $level) =
541 ctx_statement_block($linenr, $remain, $off);
Andy Whitcroft773647a2008-03-28 14:15:58 -0700542 #print "F: c<$condition> s<$statement> remain<$remain>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -0800543 push(@chunks, [ $condition, $statement ]);
544 if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
545 return ($level, $linenr, @chunks);
546 }
547
548 # Pull in the following conditional/block pairs and see if they
549 # could continue the statement.
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800550 for (;;) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800551 ($statement, $condition, $linenr, $remain, $off, $level) =
552 ctx_statement_block($linenr, $remain, $off);
Andy Whitcroftcf655042008-03-04 14:28:20 -0800553 #print "C: c<$condition> s<$statement> remain<$remain>\n";
Andy Whitcroft773647a2008-03-28 14:15:58 -0700554 last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
Andy Whitcroftcf655042008-03-04 14:28:20 -0800555 #print "C: push\n";
556 push(@chunks, [ $condition, $statement ]);
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800557 }
558
559 return ($level, $linenr, @chunks);
Andy Whitcroft8905a672007-11-28 16:21:06 -0800560}
561
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700562sub ctx_block_get {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700563 my ($linenr, $remain, $outer, $open, $close, $off) = @_;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700564 my $line;
565 my $start = $linenr - 1;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700566 my $blk = '';
567 my @o;
568 my @c;
569 my @res = ();
570
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700571 my $level = 0;
Andy Whitcroft00df3442007-06-08 13:47:06 -0700572 for ($line = $start; $remain > 0; $line++) {
573 next if ($rawlines[$line] =~ /^-/);
574 $remain--;
575
576 $blk .= $rawlines[$line];
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700577 foreach my $c (split(//, $rawlines[$line])) {
578 ##print "C<$c>L<$level><$open$close>O<$off>\n";
579 if ($off > 0) {
580 $off--;
581 next;
582 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700583
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700584 if ($c eq $close && $level > 0) {
585 $level--;
586 last if ($level == 0);
587 } elsif ($c eq $open) {
588 $level++;
589 }
590 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700591
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700592 if (!$outer || $level <= 1) {
Andy Whitcroft00df3442007-06-08 13:47:06 -0700593 push(@res, $rawlines[$line]);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700594 }
595
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700596 last if ($level == 0);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700597 }
598
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700599 return ($level, @res);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700600}
601sub ctx_block_outer {
602 my ($linenr, $remain) = @_;
603
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700604 my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0);
605 return @r;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700606}
607sub ctx_block {
608 my ($linenr, $remain) = @_;
609
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700610 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0);
611 return @r;
Andy Whitcroft653d4872007-06-23 17:16:34 -0700612}
613sub ctx_statement {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700614 my ($linenr, $remain, $off) = @_;
615
616 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
617 return @r;
618}
619sub ctx_block_level {
Andy Whitcroft653d4872007-06-23 17:16:34 -0700620 my ($linenr, $remain) = @_;
621
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700622 return ctx_block_get($linenr, $remain, 0, '{', '}', 0);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700623}
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700624sub ctx_statement_level {
625 my ($linenr, $remain, $off) = @_;
626
627 return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
628}
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700629
630sub ctx_locate_comment {
631 my ($first_line, $end_line) = @_;
632
633 # Catch a comment on the end of the line itself.
Andy Whitcroftbeae6332008-07-23 21:28:59 -0700634 my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700635 return $current_comment if (defined $current_comment);
636
637 # Look through the context and try and figure out if there is a
638 # comment.
639 my $in_comment = 0;
640 $current_comment = '';
641 for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
Andy Whitcroft00df3442007-06-08 13:47:06 -0700642 my $line = $rawlines[$linenr - 1];
643 #warn " $line\n";
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700644 if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
645 $in_comment = 1;
646 }
647 if ($line =~ m@/\*@) {
648 $in_comment = 1;
649 }
650 if (!$in_comment && $current_comment ne '') {
651 $current_comment = '';
652 }
653 $current_comment .= $line . "\n" if ($in_comment);
654 if ($line =~ m@\*/@) {
655 $in_comment = 0;
656 }
657 }
658
659 chomp($current_comment);
660 return($current_comment);
661}
662sub ctx_has_comment {
663 my ($first_line, $end_line) = @_;
664 my $cmt = ctx_locate_comment($first_line, $end_line);
665
Andy Whitcroft00df3442007-06-08 13:47:06 -0700666 ##print "LINE: $rawlines[$end_line - 1 ]\n";
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700667 ##print "CMMT: $cmt\n";
668
669 return ($cmt ne '');
670}
671
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700672sub cat_vet {
673 my ($vet) = @_;
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700674 my ($res, $coded);
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700675
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700676 $res = '';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700677 while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
678 $res .= $1;
679 if ($2 ne '') {
680 $coded = sprintf("^%c", unpack('C', $2) + 64);
681 $res .= $coded;
682 }
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700683 }
684 $res =~ s/$/\$/;
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700685
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700686 return $res;
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700687}
688
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800689my $av_preprocessor = 0;
Andy Whitcroftcf655042008-03-04 14:28:20 -0800690my $av_pending;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800691my @av_paren_type;
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700692my $av_pend_colon;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800693
694sub annotate_reset {
695 $av_preprocessor = 0;
Andy Whitcroftcf655042008-03-04 14:28:20 -0800696 $av_pending = '_';
697 @av_paren_type = ('E');
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700698 $av_pend_colon = 'O';
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800699}
700
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700701sub annotate_values {
702 my ($stream, $type) = @_;
703
704 my $res;
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700705 my $var = '_' x length($stream);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700706 my $cur = $stream;
707
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800708 print "$stream\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700709
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700710 while (length($cur)) {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700711 @av_paren_type = ('E') if ($#av_paren_type < 0);
Andy Whitcroftcf655042008-03-04 14:28:20 -0800712 print " <" . join('', @av_paren_type) .
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700713 "> <$type> <$av_pending>" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700714 if ($cur =~ /^(\s+)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800715 print "WS($1)\n" if ($dbg_values > 1);
716 if ($1 =~ /\n/ && $av_preprocessor) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800717 $type = pop(@av_paren_type);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800718 $av_preprocessor = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700719 }
720
Andy Whitcroft8ea3eb92008-07-23 21:29:08 -0700721 } elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\()/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800722 print "DECLARE($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700723 $type = 'T';
724
Andy Whitcroft389a2fe2008-07-23 21:29:05 -0700725 } elsif ($cur =~ /^($Modifier)\s*/) {
726 print "MODIFIER($1)\n" if ($dbg_values > 1);
727 $type = 'T';
728
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700729 } elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700730 print "DEFINE($1,$2)\n" if ($dbg_values > 1);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800731 $av_preprocessor = 1;
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700732 push(@av_paren_type, $type);
733 if ($2 ne '') {
734 $av_pending = 'N';
735 }
736 $type = 'E';
737
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700738 } elsif ($cur =~ /^(\#\s*(?:undef\s*$Ident|include\b))/o) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700739 print "UNDEF($1)\n" if ($dbg_values > 1);
740 $av_preprocessor = 1;
741 push(@av_paren_type, $type);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700742
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700743 } elsif ($cur =~ /^(\#\s*(?:ifdef|ifndef|if))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800744 print "PRE_START($1)\n" if ($dbg_values > 1);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800745 $av_preprocessor = 1;
Andy Whitcroftcf655042008-03-04 14:28:20 -0800746
747 push(@av_paren_type, $type);
748 push(@av_paren_type, $type);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700749 $type = 'E';
Andy Whitcroftcf655042008-03-04 14:28:20 -0800750
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700751 } elsif ($cur =~ /^(\#\s*(?:else|elif))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800752 print "PRE_RESTART($1)\n" if ($dbg_values > 1);
753 $av_preprocessor = 1;
754
755 push(@av_paren_type, $av_paren_type[$#av_paren_type]);
756
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700757 $type = 'E';
Andy Whitcroftcf655042008-03-04 14:28:20 -0800758
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700759 } elsif ($cur =~ /^(\#\s*(?:endif))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800760 print "PRE_END($1)\n" if ($dbg_values > 1);
761
762 $av_preprocessor = 1;
763
764 # Assume all arms of the conditional end as this
765 # one does, and continue as if the #endif was not here.
766 pop(@av_paren_type);
767 push(@av_paren_type, $type);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700768 $type = 'E';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700769
770 } elsif ($cur =~ /^(\\\n)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800771 print "PRECONT($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700772
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700773 } elsif ($cur =~ /^(__attribute__)\s*\(?/o) {
774 print "ATTR($1)\n" if ($dbg_values > 1);
775 $av_pending = $type;
776 $type = 'N';
777
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700778 } elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800779 print "SIZEOF($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700780 if (defined $2) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800781 $av_pending = 'V';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700782 }
783 $type = 'N';
784
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800785 } elsif ($cur =~ /^(if|while|typeof|__typeof__|for)\b/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800786 print "COND($1)\n" if ($dbg_values > 1);
Andy Whitcroftcf655042008-03-04 14:28:20 -0800787 $av_pending = 'N';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700788 $type = 'N';
789
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700790 } elsif ($cur =~/^(case)/o) {
791 print "CASE($1)\n" if ($dbg_values > 1);
792 $av_pend_colon = 'C';
793 $type = 'N';
794
795 } elsif ($cur =~/^(return|else|goto)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800796 print "KEYWORD($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700797 $type = 'N';
798
799 } elsif ($cur =~ /^(\()/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800800 print "PAREN('$1')\n" if ($dbg_values > 1);
Andy Whitcroftcf655042008-03-04 14:28:20 -0800801 push(@av_paren_type, $av_pending);
802 $av_pending = '_';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700803 $type = 'N';
804
805 } elsif ($cur =~ /^(\))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800806 my $new_type = pop(@av_paren_type);
807 if ($new_type ne '_') {
808 $type = $new_type;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800809 print "PAREN('$1') -> $type\n"
810 if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700811 } else {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800812 print "PAREN('$1')\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700813 }
814
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700815 } elsif ($cur =~ /^($Ident)\s*\(/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800816 print "FUNC($1)\n" if ($dbg_values > 1);
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700817 $type = 'V';
Andy Whitcroftcf655042008-03-04 14:28:20 -0800818 $av_pending = 'V';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700819
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700820 } elsif ($cur =~ /^($Ident\s*):/) {
821 if ($type eq 'E') {
822 $av_pend_colon = 'L';
823 } elsif ($type eq 'T') {
824 $av_pend_colon = 'B';
825 }
826 print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1);
827 $type = 'V';
828
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700829 } elsif ($cur =~ /^($Ident|$Constant)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800830 print "IDENT($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700831 $type = 'V';
832
833 } elsif ($cur =~ /^($Assignment)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800834 print "ASSIGN($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700835 $type = 'N';
836
Andy Whitcroftcf655042008-03-04 14:28:20 -0800837 } elsif ($cur =~/^(;|{|})/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800838 print "END($1)\n" if ($dbg_values > 1);
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800839 $type = 'E';
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700840 $av_pend_colon = 'O';
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800841
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700842 } elsif ($cur =~ /^(\?)/o) {
843 print "QUESTION($1)\n" if ($dbg_values > 1);
844 $type = 'N';
845
846 } elsif ($cur =~ /^(:)/o) {
847 print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1);
848
849 substr($var, length($res), 1, $av_pend_colon);
850 if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') {
851 $type = 'E';
852 } else {
853 $type = 'N';
854 }
855 $av_pend_colon = 'O';
856
857 } elsif ($cur =~ /^(;|\[)/o) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800858 print "CLOSE($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700859 $type = 'N';
860
861 } elsif ($cur =~ /^($Operators)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800862 print "OP($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700863 if ($1 ne '++' && $1 ne '--') {
864 $type = 'N';
865 }
866
867 } elsif ($cur =~ /(^.)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800868 print "C($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700869 }
870 if (defined $1) {
871 $cur = substr($cur, length($1));
872 $res .= $type x length($1);
873 }
874 }
875
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700876 return ($res, $var);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700877}
878
Andy Whitcroft8905a672007-11-28 16:21:06 -0800879sub possible {
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800880 my ($possible, $line) = @_;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800881
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700882 print "CHECK<$possible> ($line)\n" if ($dbg_possible > 1);
Andy Whitcroft0221f552008-07-23 21:29:08 -0700883 if ($possible !~ /^(?:$Modifier|$Storage|$Type|DEFINE_\S+)$/ &&
Andy Whitcroft8905a672007-11-28 16:21:06 -0800884 $possible ne 'goto' && $possible ne 'return' &&
Andy Whitcroft8905a672007-11-28 16:21:06 -0800885 $possible ne 'case' && $possible ne 'else' &&
Andy Whitcroftd3ddcf42008-07-23 21:28:58 -0700886 $possible ne 'asm' && $possible ne '__asm__' &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700887 $possible !~ /^(typedef|struct|enum)\b/) {
888 # Check for modifiers.
889 $possible =~ s/\s*$Storage\s*//g;
890 $possible =~ s/\s*$Sparse\s*//g;
891 if ($possible =~ /^\s*$/) {
892
893 } elsif ($possible =~ /\s/) {
894 $possible =~ s/\s*$Type\s*//g;
Andy Whitcroftd2506582008-07-23 21:29:09 -0700895 for my $modifier (split(' ', $possible)) {
896 warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
897 push(@modifierList, $modifier);
898 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700899
900 } else {
901 warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
902 push(@typeList, $possible);
903 }
Andy Whitcroft8905a672007-11-28 16:21:06 -0800904 build_types();
905 }
906}
907
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700908my $prefix = '';
909
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700910sub report {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700911 if (defined $tst_only && $_[0] !~ /\Q$tst_only\E/) {
912 return 0;
913 }
Andy Whitcroft8905a672007-11-28 16:21:06 -0800914 my $line = $prefix . $_[0];
915
916 $line = (split('\n', $line))[0] . "\n" if ($terse);
917
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800918 push(our @report, $line);
Andy Whitcroft773647a2008-03-28 14:15:58 -0700919
920 return 1;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700921}
922sub report_dump {
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800923 our @report;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700924}
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700925sub ERROR {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700926 if (report("ERROR: $_[0]\n")) {
927 our $clean = 0;
928 our $cnt_error++;
929 }
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700930}
931sub WARN {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700932 if (report("WARNING: $_[0]\n")) {
933 our $clean = 0;
934 our $cnt_warn++;
935 }
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700936}
937sub CHK {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700938 if ($check && report("CHECK: $_[0]\n")) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700939 our $clean = 0;
940 our $cnt_chk++;
941 }
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700942}
943
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700944sub process {
945 my $filename = shift;
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700946
947 my $linenr=0;
948 my $prevline="";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800949 my $prevrawline="";
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700950 my $stashline="";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800951 my $stashrawline="";
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700952
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700953 my $length;
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700954 my $indent;
955 my $previndent=0;
956 my $stashindent=0;
957
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700958 our $clean = 1;
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700959 my $signoff = 0;
960 my $is_patch = 0;
961
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800962 our @report = ();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700963 our $cnt_lines = 0;
964 our $cnt_error = 0;
965 our $cnt_warn = 0;
966 our $cnt_chk = 0;
967
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700968 # Trace the real file/line as we go.
969 my $realfile = '';
970 my $realline = 0;
971 my $realcnt = 0;
972 my $here = '';
973 my $in_comment = 0;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800974 my $comment_edge = 0;
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700975 my $first_line = 0;
976
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800977 my $prev_values = 'E';
978
979 # suppression flags
Andy Whitcroft773647a2008-03-28 14:15:58 -0700980 my %suppress_ifbraces;
Andy Whitcroft653d4872007-06-23 17:16:34 -0700981
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800982 # Pre-scan the patch sanitizing the lines.
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700983 # Pre-scan the patch looking for any __setup documentation.
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800984 #
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700985 my @setup_docs = ();
986 my $setup_docs = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -0700987
988 sanitise_line_reset();
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800989 my $line;
990 foreach my $rawline (@rawlines) {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700991 $linenr++;
992 $line = $rawline;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800993
Andy Whitcroft773647a2008-03-28 14:15:58 -0700994 if ($rawline=~/^\+\+\+\s+(\S+)/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700995 $setup_docs = 0;
996 if ($1 =~ m@Documentation/kernel-parameters.txt$@) {
997 $setup_docs = 1;
998 }
Andy Whitcroft773647a2008-03-28 14:15:58 -0700999 #next;
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001000 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001001 if ($rawline=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
1002 $realline=$1-1;
1003 if (defined $2) {
1004 $realcnt=$3+1;
1005 } else {
1006 $realcnt=1+1;
1007 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001008 $in_comment = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001009
1010 # Guestimate if this is a continuing comment. Run
1011 # the context looking for a comment "edge". If this
1012 # edge is a close comment then we must be in a comment
1013 # at context start.
1014 my $edge;
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001015 for (my $ln = $linenr + 1; $ln < ($linenr + $realcnt); $ln++) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001016 next if ($line =~ /^-/);
1017 ($edge) = ($rawlines[$ln - 1] =~ m@(/\*|\*/)@);
1018 last if (defined $edge);
1019 }
1020 if (defined $edge && $edge eq '*/') {
1021 $in_comment = 1;
1022 }
1023
1024 # Guestimate if this is a continuing comment. If this
1025 # is the start of a diff block and this line starts
1026 # ' *' then it is very likely a comment.
1027 if (!defined $edge &&
1028 $rawlines[$linenr] =~ m@^.\s* \*(?:\s|$)@)
1029 {
1030 $in_comment = 1;
1031 }
1032
1033 ##print "COMMENT:$in_comment edge<$edge> $rawline\n";
1034 sanitise_line_reset($in_comment);
1035
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001036 } elsif ($realcnt && $rawline =~ /^(?:\+| |$)/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001037 # Standardise the strings and chars within the input to
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001038 # simplify matching -- only bother with positive lines.
Andy Whitcroft773647a2008-03-28 14:15:58 -07001039 $line = sanitise_line($rawline);
1040 }
1041 push(@lines, $line);
1042
1043 if ($realcnt > 1) {
1044 $realcnt-- if ($line =~ /^(?:\+| |$)/);
1045 } else {
1046 $realcnt = 0;
1047 }
1048
1049 #print "==>$rawline\n";
1050 #print "-->$line\n";
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001051
1052 if ($setup_docs && $line =~ /^\+/) {
1053 push(@setup_docs, $line);
1054 }
1055 }
1056
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001057 $prefix = '';
1058
Andy Whitcroft773647a2008-03-28 14:15:58 -07001059 $realcnt = 0;
1060 $linenr = 0;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001061 foreach my $line (@lines) {
1062 $linenr++;
1063
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001064 my $rawline = $rawlines[$linenr - 1];
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001065
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001066#extract the line range in the file after the patch is applied
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001067 if ($line=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001068 $is_patch = 1;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001069 $first_line = $linenr + 1;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001070 $realline=$1-1;
1071 if (defined $2) {
1072 $realcnt=$3+1;
1073 } else {
1074 $realcnt=1+1;
1075 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001076 annotate_reset();
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001077 $prev_values = 'E';
1078
Andy Whitcroft773647a2008-03-28 14:15:58 -07001079 %suppress_ifbraces = ();
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001080 next;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001081
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001082# track the line number as we move through the hunk, note that
1083# new versions of GNU diff omit the leading space on completely
1084# blank context lines so we need to count that too.
Andy Whitcroft773647a2008-03-28 14:15:58 -07001085 } elsif ($line =~ /^( |\+|$)/) {
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001086 $realline++;
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001087 $realcnt-- if ($realcnt != 0);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001088
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001089 # Measure the line length and indent.
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001090 ($length, $indent) = line_stats($rawline);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001091
1092 # Track the previous line.
1093 ($prevline, $stashline) = ($stashline, $line);
1094 ($previndent, $stashindent) = ($stashindent, $indent);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001095 ($prevrawline, $stashrawline) = ($stashrawline, $rawline);
1096
Andy Whitcroft773647a2008-03-28 14:15:58 -07001097 #warn "line<$line>\n";
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001098
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001099 } elsif ($realcnt == 1) {
1100 $realcnt--;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001101 }
1102
1103#make up the handle for any error we report on this line
Andy Whitcroft773647a2008-03-28 14:15:58 -07001104 $prefix = "$filename:$realline: " if ($emacs && $file);
1105 $prefix = "$filename:$linenr: " if ($emacs && !$file);
1106
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001107 $here = "#$linenr: " if (!$file);
1108 $here = "#$realline: " if ($file);
Andy Whitcroft773647a2008-03-28 14:15:58 -07001109
1110 # extract the filename as it passes
1111 if ($line=~/^\+\+\+\s+(\S+)/) {
1112 $realfile = $1;
1113 $realfile =~ s@^[^/]*/@@;
1114
1115 if ($realfile =~ m@include/asm/@) {
1116 ERROR("do not modify files in include/asm, change architecture specific files in include/asm-<architecture>\n" . "$here$rawline\n");
1117 }
1118 next;
1119 }
1120
Randy Dunlap389834b2007-06-08 13:47:03 -07001121 $here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001122
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001123 my $hereline = "$here\n$rawline\n";
1124 my $herecurr = "$here\n$rawline\n";
1125 my $hereprev = "$here\n$prevrawline\n$rawline\n";
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001126
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001127 $cnt_lines++ if ($realcnt != 0);
1128
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001129#check the patch for a signoff:
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001130 if ($line =~ /^\s*signed-off-by:/i) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001131 # This is a signoff, if ugly, so do not double report.
1132 $signoff++;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001133 if (!($line =~ /^\s*Signed-off-by:/)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001134 WARN("Signed-off-by: is the preferred form\n" .
1135 $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001136 }
1137 if ($line =~ /^\s*signed-off-by:\S/i) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001138 WARN("space required after Signed-off-by:\n" .
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001139 $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001140 }
1141 }
1142
Andy Whitcroft00df3442007-06-08 13:47:06 -07001143# Check for wrappage within a valid hunk of the file
Andy Whitcroft8905a672007-11-28 16:21:06 -08001144 if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001145 ERROR("patch seems to be corrupt (line wrapped?)\n" .
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001146 $herecurr) if (!$emitted_corrupt++);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001147 }
1148
1149# UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
1150 if (($realfile =~ /^$/ || $line =~ /^\+/) &&
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001151 $rawline !~ m/^$UTF8*$/) {
1152 my ($utf8_prefix) = ($rawline =~ /^($UTF8*)/);
1153
1154 my $blank = copy_spacing($rawline);
1155 my $ptr = substr($blank, 0, length($utf8_prefix)) . "^";
1156 my $hereptr = "$hereline$ptr\n";
1157
1158 ERROR("Invalid UTF-8, patch and commit message should be encoded in UTF-8\n" . $hereptr);
Andy Whitcroft00df3442007-06-08 13:47:06 -07001159 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001160
Andy Whitcroft00df3442007-06-08 13:47:06 -07001161#ignore lines being removed
1162 if ($line=~/^-/) {next;}
1163
1164# check we are in a valid source file if not then ignore this hunk
1165 next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001166
1167#trailing whitespace
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001168 if ($line =~ /^\+.*\015/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001169 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001170 ERROR("DOS line endings\n" . $herevet);
1171
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001172 } elsif ($rawline =~ /^\+.*\S\s+$/ || $rawline =~ /^\+\s+$/) {
1173 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001174 ERROR("trailing whitespace\n" . $herevet);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001175 }
1176#80 column limit
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001177 if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ &&
Andy Whitcroftf4c014c2008-07-23 21:29:01 -07001178 $rawline !~ /^.\s*\*\s*\@$Ident\s/ &&
1179 $line !~ /^\+\s*printk\s*\(\s*(?:KERN_\S+\s*)?"[X\t]*"\s*(?:,|\)\s*;)\s*$/ &&
1180 $length > 80)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001181 {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001182 WARN("line over 80 characters\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001183 }
1184
Andy Whitcroft8905a672007-11-28 16:21:06 -08001185# check for adding lines without a newline.
1186 if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
1187 WARN("adding a line without newline at end of file\n" . $herecurr);
1188 }
1189
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001190# check we are in a valid source file *.[hc] if not then ignore this hunk
1191 next if ($realfile !~ /\.[hc]$/);
1192
1193# at the beginning of a line any tabs must come first and anything
1194# more than 8 must use tabs.
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001195 if ($rawline =~ /^\+\s* \t\s*\S/ ||
1196 $rawline =~ /^\+\s* \s*/) {
1197 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001198 ERROR("code indent should use tabs where possible\n" . $herevet);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001199 }
1200
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001201# check for RCS/CVS revision markers
Andy Whitcroftcf655042008-03-04 14:28:20 -08001202 if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001203 WARN("CVS style keyword markers, these will _not_ be updated\n". $herecurr);
1204 }
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001205
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001206# Check for potential 'bare' types
Andy Whitcroftf5fe35d2008-07-23 21:29:03 -07001207 my ($stat, $cond, $line_nr_next, $remain_next);
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07001208 if ($realcnt && $line =~ /.\s*\S/) {
Andy Whitcroftf5fe35d2008-07-23 21:29:03 -07001209 ($stat, $cond, $line_nr_next, $remain_next) =
1210 ctx_statement_block($linenr, $realcnt, 0);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001211 $stat =~ s/\n./\n /g;
1212 $cond =~ s/\n./\n /g;
1213
1214 my $s = $stat;
1215 $s =~ s/{.*$//s;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001216
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001217 # Ignore goto labels.
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001218 if ($s =~ /$Ident:\*$/s) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001219
1220 # Ignore functions being called
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001221 } elsif ($s =~ /^.\s*$Ident\s*\(/s) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001222
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001223 # declarations always start with types
Andy Whitcroftd2506582008-07-23 21:29:09 -07001224 } 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) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001225 my $type = $1;
1226 $type =~ s/\s+/ /g;
1227 possible($type, "A:" . $s);
1228
Andy Whitcroft8905a672007-11-28 16:21:06 -08001229 # definitions in global scope can only start with types
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001230 } elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b/s) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001231 possible($1, "B:" . $s);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001232 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001233
1234 # any (foo ... *) is a pointer cast, and foo is a type
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001235 while ($s =~ /\(($Ident)(?:\s+$Sparse)*\s*\*+\s*\)/sg) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001236 possible($1, "C:" . $s);
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001237 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001238
1239 # Check for any sort of function declaration.
1240 # int foo(something bar, other baz);
1241 # void (*store_gdt)(x86_descr_ptr *);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001242 if ($prev_values eq 'E' && $s =~ /^(.(?:typedef\s*)?(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*(?:\b$Ident|\(\*\s*$Ident\))\s*)\(/s) {
Andy Whitcroft8905a672007-11-28 16:21:06 -08001243 my ($name_len) = length($1);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001244
Andy Whitcroftcf655042008-03-04 14:28:20 -08001245 my $ctx = $s;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001246 substr($ctx, 0, $name_len + 1, '');
Andy Whitcroft8905a672007-11-28 16:21:06 -08001247 $ctx =~ s/\)[^\)]*$//;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001248
Andy Whitcroft8905a672007-11-28 16:21:06 -08001249 for my $arg (split(/\s*,\s*/, $ctx)) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001250 if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$/s) {
Andy Whitcroft8905a672007-11-28 16:21:06 -08001251
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001252 possible($1, "D:" . $s);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001253 }
1254 }
1255 }
1256
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001257 }
1258
Andy Whitcroft653d4872007-06-23 17:16:34 -07001259#
1260# Checks which may be anchored in the context.
1261#
1262
1263# Check for switch () and associated case and default
1264# statements should be at the same indent.
Andy Whitcroft00df3442007-06-08 13:47:06 -07001265 if ($line=~/\bswitch\s*\(.*\)/) {
1266 my $err = '';
1267 my $sep = '';
1268 my @ctx = ctx_block_outer($linenr, $realcnt);
1269 shift(@ctx);
1270 for my $ctx (@ctx) {
1271 my ($clen, $cindent) = line_stats($ctx);
1272 if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
1273 $indent != $cindent) {
1274 $err .= "$sep$ctx\n";
1275 $sep = '';
1276 } else {
1277 $sep = "[...]\n";
1278 }
1279 }
1280 if ($err ne '') {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001281 ERROR("switch and case should be at the same indent\n$hereline$err");
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001282 }
1283 }
Andy Whitcrofte2a763c2008-07-23 21:29:02 -07001284 if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
1285 $line !~ /\G(?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$/g) {
1286 ERROR("trailing statements should be on next line\n" . $herecurr);
1287 }
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001288
1289# if/while/etc brace do not go on next line, unless defining a do while loop,
1290# or if that brace on the next line is for something else
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001291 if ($line =~ /(.*)\b((?:if|while|for|switch)\s*\(|do\b|else\b)/ && $line !~ /^.\s*\#/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001292 my $pre_ctx = "$1$2";
1293
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001294 my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001295 my $ctx_cnt = $realcnt - $#ctx - 1;
1296 my $ctx = join("\n", @ctx);
1297
Andy Whitcroft548596d2008-07-23 21:29:01 -07001298 my $ctx_ln = $linenr;
1299 my $ctx_skip = $realcnt;
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001300
Andy Whitcroft548596d2008-07-23 21:29:01 -07001301 while ($ctx_skip > $ctx_cnt || ($ctx_skip == $ctx_cnt &&
1302 defined $lines[$ctx_ln - 1] &&
1303 $lines[$ctx_ln - 1] =~ /^-/)) {
1304 ##print "SKIP<$ctx_skip> CNT<$ctx_cnt>\n";
1305 $ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/);
Andy Whitcroft773647a2008-03-28 14:15:58 -07001306 $ctx_ln++;
1307 }
Andy Whitcroft548596d2008-07-23 21:29:01 -07001308
Andy Whitcroft53210162008-07-23 21:29:03 -07001309 #print "realcnt<$realcnt> ctx_cnt<$ctx_cnt>\n";
1310 #print "pre<$pre_ctx>\nline<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>\n";
Andy Whitcroft773647a2008-03-28 14:15:58 -07001311
1312 if ($ctx !~ /{\s*/ && defined($lines[$ctx_ln -1]) && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
1313 ERROR("that open brace { should be on the previous line\n" .
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001314 "$here\n$ctx\n$lines[$ctx_ln - 1]\n");
Andy Whitcroft00df3442007-06-08 13:47:06 -07001315 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001316 if ($level == 0 && $pre_ctx !~ /}\s*while\s*\($/ &&
1317 $ctx =~ /\)\s*\;\s*$/ &&
1318 defined $lines[$ctx_ln - 1])
1319 {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001320 my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
1321 if ($nindent > $indent) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001322 WARN("trailing semicolon indicates no statements, indent implies otherwise\n" .
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001323 "$here\n$ctx\n$lines[$ctx_ln - 1]\n");
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001324 }
1325 }
Andy Whitcroft00df3442007-06-08 13:47:06 -07001326 }
1327
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001328 # Track the 'values' across context and added lines.
1329 my $opline = $line; $opline =~ s/^./ /;
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001330 my ($curr_values, $curr_vars) =
1331 annotate_values($opline . "\n", $prev_values);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001332 $curr_values = $prev_values . $curr_values;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001333 if ($dbg_values) {
1334 my $outline = $opline; $outline =~ s/\t/ /g;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001335 print "$linenr > .$outline\n";
1336 print "$linenr > $curr_values\n";
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001337 print "$linenr > $curr_vars\n";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001338 }
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001339 $prev_values = substr($curr_values, -1);
1340
Andy Whitcroft00df3442007-06-08 13:47:06 -07001341#ignore lines not being added
1342 if ($line=~/^[^\+]/) {next;}
1343
Andy Whitcroft653d4872007-06-23 17:16:34 -07001344# TEST: allow direct testing of the type matcher.
Andy Whitcroft7429c692008-07-23 21:29:06 -07001345 if ($dbg_type) {
1346 if ($line =~ /^.\s*$Declare\s*$/) {
1347 ERROR("TEST: is type\n" . $herecurr);
1348 } elsif ($dbg_type > 1 && $line =~ /^.+($Declare)/) {
1349 ERROR("TEST: is not type ($1 is)\n". $herecurr);
1350 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001351 next;
1352 }
1353
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001354# check for initialisation to aggregates open brace on the next line
1355 if ($prevline =~ /$Declare\s*$Ident\s*=\s*$/ &&
1356 $line =~ /^.\s*{/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001357 ERROR("that open brace { should be on the previous line\n" . $hereprev);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001358 }
1359
Andy Whitcroft653d4872007-06-23 17:16:34 -07001360#
1361# Checks which are anchored on the added line.
1362#
1363
1364# check for malformed paths in #include statements (uses RAW line)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001365 if ($rawline =~ m{^.\s*\#\s*include\s+[<"](.*)[">]}) {
Andy Whitcroft653d4872007-06-23 17:16:34 -07001366 my $path = $1;
1367 if ($path =~ m{//}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001368 ERROR("malformed #include filename\n" .
1369 $herecurr);
Andy Whitcroft653d4872007-06-23 17:16:34 -07001370 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001371 }
Andy Whitcroft00df3442007-06-08 13:47:06 -07001372
1373# no C99 // comments
1374 if ($line =~ m{//}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001375 ERROR("do not use C99 // comments\n" . $herecurr);
Andy Whitcroft00df3442007-06-08 13:47:06 -07001376 }
1377 # Remove C99 comments.
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001378 $line =~ s@//.*@@;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001379 $opline =~ s@//.*@@;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001380
1381#EXPORT_SYMBOL should immediately follow its function closing }.
Andy Whitcroft653d4872007-06-23 17:16:34 -07001382 if (($line =~ /EXPORT_SYMBOL.*\((.*)\)/) ||
1383 ($line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
1384 my $name = $1;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001385 if (($prevline !~ /^}/) &&
1386 ($prevline !~ /^\+}/) &&
Andy Whitcroft653d4872007-06-23 17:16:34 -07001387 ($prevline !~ /^ }/) &&
Andy Whitcroftcf655042008-03-04 14:28:20 -08001388 ($prevline !~ /^.DECLARE_$Ident\(\Q$name\E\)/) &&
1389 ($prevline !~ /^.LIST_HEAD\(\Q$name\E\)/) &&
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001390 ($prevline !~ /^.$Type\s*\(\s*\*\s*\Q$name\E\s*\)\s*\(/) &&
Andy Whitcroftcf655042008-03-04 14:28:20 -08001391 ($prevline !~ /\b\Q$name\E(?:\s+$Attribute)?\s*(?:;|=|\[)/)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001392 WARN("EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001393 }
1394 }
1395
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001396# check for external initialisers.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001397 if ($line =~ /^.$Type\s*$Ident\s*(?:\s+$Modifier)*\s*=\s*(0|NULL|false)\s*;/) {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001398 ERROR("do not initialise externals to 0 or NULL\n" .
1399 $herecurr);
1400 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001401# check for static initialisers.
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07001402 if ($line =~ /\s*static\s.*=\s*(0|NULL|false)\s*;/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001403 ERROR("do not initialise statics to 0 or NULL\n" .
1404 $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001405 }
1406
Andy Whitcroft653d4872007-06-23 17:16:34 -07001407# check for new typedefs, only function parameters and sparse annotations
1408# make sense.
1409 if ($line =~ /\btypedef\s/ &&
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001410 $line !~ /\btypedef\s+$Type\s+\(\s*\*?$Ident\s*\)\s*\(/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001411 $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ &&
Andy Whitcroft653d4872007-06-23 17:16:34 -07001412 $line !~ /\b__bitwise(?:__|)\b/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001413 WARN("do not add new typedefs\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001414 }
1415
1416# * goes on variable not on type
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001417 if ($line =~ m{\($NonptrType(\*+)(?:\s+const)?\)}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001418 ERROR("\"(foo$1)\" should be \"(foo $1)\"\n" .
1419 $herecurr);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001420
1421 } elsif ($line =~ m{\($NonptrType\s+(\*+)(?!\s+const)\s+\)}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001422 ERROR("\"(foo $1 )\" should be \"(foo $1)\"\n" .
1423 $herecurr);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001424
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001425 } elsif ($line =~ m{$NonptrType(\*+)(?:\s+(?:$Attribute|$Sparse))?\s+[A-Za-z\d_]+}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001426 ERROR("\"foo$1 bar\" should be \"foo $1bar\"\n" .
1427 $herecurr);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001428
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001429 } elsif ($line =~ m{$NonptrType\s+(\*+)(?!\s+(?:$Attribute|$Sparse))\s+[A-Za-z\d_]+}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001430 ERROR("\"foo $1 bar\" should be \"foo $1bar\"\n" .
1431 $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001432 }
1433
1434# # no BUG() or BUG_ON()
1435# if ($line =~ /\b(BUG|BUG_ON)\b/) {
1436# print "Try to use WARN_ON & Recovery code rather than BUG() or BUG_ON()\n";
1437# print "$herecurr";
1438# $clean = 0;
1439# }
1440
Andy Whitcroft8905a672007-11-28 16:21:06 -08001441 if ($line =~ /\bLINUX_VERSION_CODE\b/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001442 WARN("LINUX_VERSION_CODE should be avoided, code should be for the version to which it is merged\n" . $herecurr);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001443 }
1444
Andy Whitcroft00df3442007-06-08 13:47:06 -07001445# printk should use KERN_* levels. Note that follow on printk's on the
1446# same line do not need a level, so we use the current block context
1447# to try and find and validate the current printk. In summary the current
1448# printk includes all preceeding printk's which have no newline on the end.
1449# we assume the first bad printk is the one to report.
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001450 if ($line =~ /\bprintk\((?!KERN_)\s*"/) {
Andy Whitcroft00df3442007-06-08 13:47:06 -07001451 my $ok = 0;
1452 for (my $ln = $linenr - 1; $ln >= $first_line; $ln--) {
1453 #print "CHECK<$lines[$ln - 1]\n";
1454 # we have a preceeding printk if it ends
1455 # with "\n" ignore it, else it is to blame
1456 if ($lines[$ln - 1] =~ m{\bprintk\(}) {
1457 if ($rawlines[$ln - 1] !~ m{\\n"}) {
1458 $ok = 1;
1459 }
1460 last;
1461 }
1462 }
1463 if ($ok == 0) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001464 WARN("printk() should include KERN_ facility level\n" . $herecurr);
Andy Whitcroft00df3442007-06-08 13:47:06 -07001465 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001466 }
1467
Andy Whitcroft653d4872007-06-23 17:16:34 -07001468# function brace can't be on same line, except for #defines of do while,
1469# or if closed on same line
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001470 if (($line=~/$Type\s*$Ident\(.*\).*\s{/) and
1471 !($line=~/\#\s*define.*do\s{/) and !($line=~/}/)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001472 ERROR("open brace '{' following function declarations go on the next line\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001473 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001474
Andy Whitcroft8905a672007-11-28 16:21:06 -08001475# open braces for enum, union and struct go on the same line.
1476 if ($line =~ /^.\s*{/ &&
1477 $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
1478 ERROR("open brace '{' following $1 go on the same line\n" . $hereprev);
1479 }
1480
Andy Whitcroft8d31cfc2008-07-23 21:29:02 -07001481# check for spacing round square brackets; allowed:
1482# 1. with a type on the left -- int [] a;
1483# 2. at the beginning of a line for slice initialisers -- [0..10] = 5,
1484 while ($line =~ /(.*?\s)\[/g) {
1485 my ($where, $prefix) = ($-[1], $1);
1486 if ($prefix !~ /$Type\s+$/ &&
1487 ($where != 0 || $prefix !~ /^.\s+$/)) {
1488 ERROR("space prohibited before open square bracket '['\n" . $herecurr);
1489 }
1490 }
1491
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001492# check for spaces between functions and their parentheses.
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001493 while ($line =~ /($Ident)\s+\(/g) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001494 my $name = $1;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001495 my $ctx_before = substr($line, 0, $-[1]);
1496 my $ctx = "$ctx_before$name";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001497
1498 # Ignore those directives where spaces _are_ permitted.
Andy Whitcroft773647a2008-03-28 14:15:58 -07001499 if ($name =~ /^(?:
1500 if|for|while|switch|return|case|
1501 volatile|__volatile__|
1502 __attribute__|format|__extension__|
1503 asm|__asm__)$/x)
1504 {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001505
1506 # cpp #define statements have non-optional spaces, ie
1507 # if there is a space between the name and the open
1508 # parenthesis it is simply not a parameter group.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001509 } elsif ($ctx_before =~ /^.\s*\#\s*define\s*$/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001510
1511 # cpp #elif statement condition may start with a (
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001512 } elsif ($ctx =~ /^.\s*\#\s*elif\s*$/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001513
1514 # If this whole things ends with a type its most
1515 # likely a typedef for a function.
Andy Whitcroft773647a2008-03-28 14:15:58 -07001516 } elsif ($ctx =~ /$Type$/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001517
1518 } else {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001519 WARN("space prohibited between function name and open parenthesis '('\n" . $herecurr);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001520 }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001521 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001522# Check operator spacing.
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001523 if (!($line=~/\#\s*include/)) {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001524 my $ops = qr{
1525 <<=|>>=|<=|>=|==|!=|
1526 \+=|-=|\*=|\/=|%=|\^=|\|=|&=|
1527 =>|->|<<|>>|<|>|=|!|~|
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001528 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%|
1529 \?|:
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001530 }x;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001531 my @elements = split(/($ops|;)/, $opline);
Andy Whitcroft00df3442007-06-08 13:47:06 -07001532 my $off = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001533
1534 my $blank = copy_spacing($opline);
1535
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001536 for (my $n = 0; $n < $#elements; $n += 2) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001537 $off += length($elements[$n]);
1538
Andy Whitcroft773647a2008-03-28 14:15:58 -07001539 # Pick up the preceeding and succeeding characters.
1540 my $ca = substr($opline, 0, $off);
1541 my $cc = '';
1542 if (length($opline) >= ($off + length($elements[$n + 1]))) {
1543 $cc = substr($opline, $off + length($elements[$n + 1]));
1544 }
1545 my $cb = "$ca$;$cc";
1546
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001547 my $a = '';
1548 $a = 'V' if ($elements[$n] ne '');
1549 $a = 'W' if ($elements[$n] =~ /\s$/);
Andy Whitcroftcf655042008-03-04 14:28:20 -08001550 $a = 'C' if ($elements[$n] =~ /$;$/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001551 $a = 'B' if ($elements[$n] =~ /(\[|\()$/);
1552 $a = 'O' if ($elements[$n] eq '');
Andy Whitcroft773647a2008-03-28 14:15:58 -07001553 $a = 'E' if ($ca =~ /^\s*$/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001554
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001555 my $op = $elements[$n + 1];
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001556
1557 my $c = '';
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001558 if (defined $elements[$n + 2]) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001559 $c = 'V' if ($elements[$n + 2] ne '');
1560 $c = 'W' if ($elements[$n + 2] =~ /^\s/);
Andy Whitcroftcf655042008-03-04 14:28:20 -08001561 $c = 'C' if ($elements[$n + 2] =~ /^$;/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001562 $c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
1563 $c = 'O' if ($elements[$n + 2] eq '');
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001564 $c = 'E' if ($elements[$n + 2] =~ /\s*\\$/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001565 } else {
1566 $c = 'E';
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001567 }
1568
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001569 my $ctx = "${a}x${c}";
1570
1571 my $at = "(ctx:$ctx)";
1572
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001573 my $ptr = substr($blank, 0, $off) . "^";
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001574 my $hereptr = "$hereline$ptr\n";
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001575
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001576 # Classify operators into binary, unary, or
1577 # definitions (* only) where they have more
1578 # than one mode.
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001579 my $op_type = substr($curr_values, $off + 1, 1);
1580 my $op_left = substr($curr_values, $off, 1);
1581 my $is_unary;
1582 if ($op_type eq 'T') {
1583 $is_unary = 2;
1584 } elsif ($op_left eq 'V') {
1585 $is_unary = 0;
1586 } else {
1587 $is_unary = 1;
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001588 }
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001589 #if ($op eq '-' || $op eq '&' || $op eq '*') {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001590 # print "UNARY: <$op_left$op_type $is_unary $a:$op:$c> <$ca:$op:$cc> <$unary_ctx>\n";
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001591 #}
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001592
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001593 # Get the full operator variant.
1594 my $opv = $op . substr($curr_vars, $off, 1);
1595
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001596 # Ignore operators passed as parameters.
1597 if ($op_type ne 'V' &&
1598 $ca =~ /\s$/ && $cc =~ /^\s*,/) {
1599
Andy Whitcroftcf655042008-03-04 14:28:20 -08001600# # Ignore comments
1601# } elsif ($op =~ /^$;+$/) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001602
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001603 # ; should have either the end of line or a space or \ after it
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001604 } elsif ($op eq ';') {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001605 if ($ctx !~ /.x[WEBC]/ &&
1606 $cc !~ /^\\/ && $cc !~ /^;/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001607 ERROR("space required after that '$op' $at\n" . $hereptr);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001608 }
1609
1610 # // is a comment
1611 } elsif ($op eq '//') {
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001612
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001613 # No spaces for:
1614 # ->
1615 # : when part of a bitfield
1616 } elsif ($op eq '->' || $opv eq ':B') {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001617 if ($ctx =~ /Wx.|.xW/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001618 ERROR("spaces prohibited around that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001619 }
1620
1621 # , must have a space on the right.
1622 } elsif ($op eq ',') {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001623 if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001624 ERROR("space required after that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001625 }
1626
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001627 # '*' as part of a type definition -- reported already.
1628 } elsif ($op eq '*' && $is_unary == 2) {
1629 #warn "'*' is part of type\n";
1630
1631 # unary operators should have a space before and
1632 # none after. May be left adjacent to another
1633 # unary operator, or a cast
1634 } elsif ($op eq '!' || $op eq '~' ||
1635 ($is_unary && ($op eq '*' || $op eq '-' || $op eq '&'))) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001636 if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001637 ERROR("space required before that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001638 }
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001639 if ($op eq '*' && $cc =~/\s*const\b/) {
1640 # A unary '*' may be const
1641
1642 } elsif ($ctx =~ /.xW/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001643 ERROR("space prohibited after that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001644 }
1645
1646 # unary ++ and unary -- are allowed no space on one side.
1647 } elsif ($op eq '++' or $op eq '--') {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001648 if ($ctx !~ /[WEOBC]x[^W]/ && $ctx !~ /[^W]x[WOBEC]/) {
1649 ERROR("space required one side of that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001650 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001651 if ($ctx =~ /Wx[BE]/ ||
1652 ($ctx =~ /Wx./ && $cc =~ /^;/)) {
1653 ERROR("space prohibited before that '$op' $at\n" . $hereptr);
Andy Whitcroft653d4872007-06-23 17:16:34 -07001654 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001655 if ($ctx =~ /ExW/) {
1656 ERROR("space prohibited after that '$op' $at\n" . $hereptr);
1657 }
1658
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001659
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001660 # << and >> may either have or not have spaces both sides
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001661 } elsif ($op eq '<<' or $op eq '>>' or
1662 $op eq '&' or $op eq '^' or $op eq '|' or
1663 $op eq '+' or $op eq '-' or
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001664 $op eq '*' or $op eq '/' or
1665 $op eq '%')
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001666 {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001667 if ($ctx =~ /Wx[^WCE]|[^WCE]xW/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001668 ERROR("need consistent spacing around '$op' $at\n" .
1669 $hereptr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001670 }
1671
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001672 # A colon needs no spaces before when it is
1673 # terminating a case value or a label.
1674 } elsif ($opv eq ':C' || $opv eq ':L') {
1675 if ($ctx =~ /Wx./) {
1676 ERROR("space prohibited before that '$op' $at\n" . $hereptr);
1677 }
1678
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001679 # All the others need spaces both sides.
Andy Whitcroftcf655042008-03-04 14:28:20 -08001680 } elsif ($ctx !~ /[EWC]x[CWE]/) {
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001681 my $ok = 0;
1682
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001683 # Ignore email addresses <foo@bar>
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001684 if (($op eq '<' &&
1685 $cc =~ /^\S+\@\S+>/) ||
1686 ($op eq '>' &&
1687 $ca =~ /<\S+\@\S+$/))
1688 {
1689 $ok = 1;
1690 }
1691
1692 # Ignore ?:
1693 if (($opv eq ':O' && $ca =~ /\?$/) ||
1694 ($op eq '?' && $cc =~ /^:/)) {
1695 $ok = 1;
1696 }
1697
1698 if ($ok == 0) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001699 ERROR("spaces required around that '$op' $at\n" . $hereptr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001700 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001701 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001702 $off += length($elements[$n + 1]);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001703 }
1704 }
1705
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001706# check for multiple assignments
1707 if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001708 CHK("multiple assignments should be avoided\n" . $herecurr);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001709 }
1710
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001711## # check for multiple declarations, allowing for a function declaration
1712## # continuation.
1713## if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
1714## $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
1715##
1716## # Remove any bracketed sections to ensure we do not
1717## # falsly report the parameters of functions.
1718## my $ln = $line;
1719## while ($ln =~ s/\([^\(\)]*\)//g) {
1720## }
1721## if ($ln =~ /,/) {
1722## WARN("declaring multiple variables together should be avoided\n" . $herecurr);
1723## }
1724## }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001725
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001726#need space before brace following if, while, etc
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001727 if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) ||
1728 $line =~ /do{/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001729 ERROR("space required before the open brace '{'\n" . $herecurr);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001730 }
1731
1732# closing brace should have a space following it when it has anything
1733# on the line
1734 if ($line =~ /}(?!(?:,|;|\)))\S/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001735 ERROR("space required after that close brace '}'\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001736 }
1737
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001738# check spacing on square brackets
1739 if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001740 ERROR("space prohibited after that open square bracket '['\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001741 }
1742 if ($line =~ /\s\]/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001743 ERROR("space prohibited before that close square bracket ']'\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001744 }
1745
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001746# check spacing on parentheses
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001747 if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
1748 $line !~ /for\s*\(\s+;/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001749 ERROR("space prohibited after that open parenthesis '('\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001750 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001751 if ($line =~ /(\s+)\)/ && $line !~ /^.\s*\)/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001752 $line !~ /for\s*\(.*;\s+\)/ &&
1753 $line !~ /:\s+\)/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001754 ERROR("space prohibited before that close parenthesis ')'\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001755 }
1756
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001757#goto labels aren't indented, allow a single space however
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001758 if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001759 !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001760 WARN("labels should not be indented\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001761 }
1762
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001763# Return is not a function.
1764 if (defined($stat) && $stat =~ /^.\s*return(\s*)(\(.*);/s) {
1765 my $spacing = $1;
1766 my $value = $2;
1767
1768 # Flatten any parentheses and braces
Andy Whitcroftfee61c42008-07-23 21:28:56 -07001769 $value =~ s/\)\(/\) \(/g;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001770 while ($value =~ s/\([^\(\)]*\)/1/) {
1771 }
1772
1773 if ($value =~ /^(?:$Ident|-?$Constant)$/) {
1774 ERROR("return is not a function, parentheses are not required\n" . $herecurr);
1775
1776 } elsif ($spacing !~ /\s+/) {
1777 ERROR("space required before the open parenthesis '('\n" . $herecurr);
1778 }
1779 }
1780
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001781# Need a space before open parenthesis after if, while etc
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001782 if ($line=~/\b(if|while|for|switch)\(/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001783 ERROR("space required before the open parenthesis '('\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001784 }
1785
Andy Whitcroftf5fe35d2008-07-23 21:29:03 -07001786# Check for illegal assignment in if conditional -- and check for trailing
1787# statements after the conditional.
Andy Whitcroft53210162008-07-23 21:29:03 -07001788 if ($line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001789 my ($s, $c) = ($stat, $cond);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001790
1791 if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001792 ERROR("do not use assignment in if condition\n" . $herecurr);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001793 }
1794
1795 # Find out what is on the end of the line after the
1796 # conditional.
Andy Whitcroft773647a2008-03-28 14:15:58 -07001797 substr($s, 0, length($c), '');
Andy Whitcroft8905a672007-11-28 16:21:06 -08001798 $s =~ s/\n.*//g;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001799 $s =~ s/$;//g; # Remove any comments
Andy Whitcroft53210162008-07-23 21:29:03 -07001800 if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ &&
1801 $c !~ /}\s*while\s*/)
Andy Whitcroft773647a2008-03-28 14:15:58 -07001802 {
Andy Whitcroft8905a672007-11-28 16:21:06 -08001803 ERROR("trailing statements should be on next line\n" . $herecurr);
1804 }
1805 }
1806
Andy Whitcroftf5fe35d2008-07-23 21:29:03 -07001807# Check relative indent for conditionals and blocks.
1808 if ($line =~ /\b(?:(?:if|while|for)\s*\(|do\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) {
1809 my ($s, $c) = ($stat, $cond);
1810
1811 substr($s, 0, length($c), '');
1812
1813 # Make sure we remove the line prefixes as we have
1814 # none on the first line, and are going to readd them
1815 # where necessary.
1816 $s =~ s/\n./\n/gs;
1817
1818 # We want to check the first line inside the block
1819 # starting at the end of the conditional, so remove:
1820 # 1) any blank line termination
1821 # 2) any opening brace { on end of the line
1822 # 3) any do (...) {
1823 my $continuation = 0;
1824 my $check = 0;
1825 $s =~ s/^.*\bdo\b//;
1826 $s =~ s/^\s*{//;
1827 if ($s =~ s/^\s*\\//) {
1828 $continuation = 1;
1829 }
1830 if ($s =~ s/^\s*\n//) {
1831 $check = 1;
1832 }
1833
1834 # Also ignore a loop construct at the end of a
1835 # preprocessor statement.
1836 if (($prevline =~ /^.\s*#\s*define\s/ ||
1837 $prevline =~ /\\\s*$/) && $continuation == 0) {
1838 $check = 0;
1839 }
1840
1841 # Ignore the current line if its is a preprocessor
1842 # line.
1843 if ($s =~ /^\s*#\s*/) {
1844 $check = 0;
1845 }
1846
1847 my (undef, $sindent) = line_stats("+" . $s);
1848
1849 ##print "line<$line> prevline<$prevline> indent<$indent> sindent<$sindent> check<$check> continuation<$continuation> s<$s>\n";
1850
1851 if ($check && (($sindent % 8) != 0 ||
1852 ($sindent <= $indent && $s ne ''))) {
1853 WARN("suspect code indent for conditional statements\n" . $herecurr);
1854 }
1855 }
1856
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001857# Check for bitwise tests written as boolean
1858 if ($line =~ /
1859 (?:
1860 (?:\[|\(|\&\&|\|\|)
1861 \s*0[xX][0-9]+\s*
1862 (?:\&\&|\|\|)
1863 |
1864 (?:\&\&|\|\|)
1865 \s*0[xX][0-9]+\s*
1866 (?:\&\&|\|\||\)|\])
1867 )/x)
1868 {
1869 WARN("boolean test with hexadecimal, perhaps just 1 \& or \|?\n" . $herecurr);
1870 }
1871
Andy Whitcroft8905a672007-11-28 16:21:06 -08001872# if and else should not have general statements after it
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001873 if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/) {
1874 my $s = $1;
1875 $s =~ s/$;//g; # Remove any comments
1876 if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) {
1877 ERROR("trailing statements should be on next line\n" . $herecurr);
1878 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001879 }
1880
1881 # Check for }<nl>else {, these must be at the same
1882 # indent level to be relevant to each other.
1883 if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ and
1884 $previndent == $indent) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001885 ERROR("else should follow close brace '}'\n" . $hereprev);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001886 }
1887
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001888 if ($prevline=~/}\s*$/ and $line=~/^.\s*while\s*/ and
1889 $previndent == $indent) {
1890 my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0);
1891
1892 # Find out what is on the end of the line after the
1893 # conditional.
Andy Whitcroft773647a2008-03-28 14:15:58 -07001894 substr($s, 0, length($c), '');
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001895 $s =~ s/\n.*//g;
1896
1897 if ($s =~ /^\s*;/) {
1898 ERROR("while should follow close brace '}'\n" . $hereprev);
1899 }
1900 }
1901
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001902#studly caps, commented out until figure out how to distinguish between use of existing and adding new
1903# if (($line=~/[\w_][a-z\d]+[A-Z]/) and !($line=~/print/)) {
1904# print "No studly caps, use _\n";
1905# print "$herecurr";
1906# $clean = 0;
1907# }
1908
1909#no spaces allowed after \ in define
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001910 if ($line=~/\#\s*define.*\\\s$/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001911 WARN("Whitepspace after \\ makes next lines useless\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001912 }
1913
Andy Whitcroft653d4872007-06-23 17:16:34 -07001914#warn if <asm/foo.h> is #included and <linux/foo.h> is available (uses RAW line)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001915 if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) {
1916 my $checkfile = "include/linux/$1.h";
1917 if (-f "$root/$checkfile" && $realfile ne $checkfile &&
1918 $1 ne 'irq')
1919 {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001920 WARN("Use #include <linux/$1.h> instead of <asm/$1.h>\n" .
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001921 $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001922 }
1923 }
1924
Andy Whitcroft653d4872007-06-23 17:16:34 -07001925# multi-statement macros should be enclosed in a do while loop, grab the
1926# first statement and ensure its the whole macro if its not enclosed
Andy Whitcroftcf655042008-03-04 14:28:20 -08001927# in a known good container
Andy Whitcroftb8f96a32008-07-23 21:29:07 -07001928 if ($realfile !~ m@/vmlinux.lds.h$@ &&
1929 $line =~ /^.\s*\#\s*define\s*$Ident(\()?/) {
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001930 my $ln = $linenr;
1931 my $cnt = $realcnt;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001932 my ($off, $dstat, $dcond, $rest);
1933 my $ctx = '';
Andy Whitcroft653d4872007-06-23 17:16:34 -07001934
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001935 my $args = defined($1);
1936
1937 # Find the end of the macro and limit our statement
1938 # search to that.
1939 while ($cnt > 0 && defined $lines[$ln - 1] &&
1940 $lines[$ln - 1] =~ /^(?:-|..*\\$)/)
1941 {
1942 $ctx .= $rawlines[$ln - 1] . "\n";
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -07001943 $cnt-- if ($lines[$ln - 1] !~ /^-/);
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001944 $ln++;
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001945 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001946 $ctx .= $rawlines[$ln - 1];
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001947
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001948 ($dstat, $dcond, $ln, $cnt, $off) =
1949 ctx_statement_block($linenr, $ln - $linenr + 1, 0);
1950 #print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n";
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -07001951 #print "LINE<$lines[$ln-1]> len<" . length($lines[$ln-1]) . "\n";
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001952
1953 # Extract the remainder of the define (if any) and
1954 # rip off surrounding spaces, and trailing \'s.
1955 $rest = '';
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -07001956 while ($off != 0 || ($cnt > 0 && $rest =~ /(?:^|\\)\s*$/)) {
1957 #print "ADDING $off <" . substr($lines[$ln - 1], $off) . ">\n";
1958 if ($off != 0 || $lines[$ln - 1] !~ /^-/) {
1959 $rest .= substr($lines[$ln - 1], $off) . "\n";
1960 $cnt--;
1961 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001962 $ln++;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001963 $off = 0;
1964 }
1965 $rest =~ s/\\\n.//g;
1966 $rest =~ s/^\s*//s;
1967 $rest =~ s/\s*$//s;
1968
1969 # Clean up the original statement.
1970 if ($args) {
1971 substr($dstat, 0, length($dcond), '');
1972 } else {
1973 $dstat =~ s/^.\s*\#\s*define\s+$Ident\s*//;
1974 }
1975 $dstat =~ s/\\\n.//g;
1976 $dstat =~ s/^\s*//s;
1977 $dstat =~ s/\s*$//s;
1978
1979 # Flatten any parentheses and braces
1980 while ($dstat =~ s/\([^\(\)]*\)/1/) {
1981 }
1982 while ($dstat =~ s/\{[^\{\}]*\}/1/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001983 }
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001984
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001985 my $exceptions = qr{
1986 $Declare|
1987 module_param_named|
1988 MODULE_PARAM_DESC|
1989 DECLARE_PER_CPU|
1990 DEFINE_PER_CPU|
1991 __typeof__\(
1992 }x;
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -07001993 #print "REST<$rest>\n";
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001994 if ($rest ne '') {
1995 if ($rest !~ /while\s*\(/ &&
1996 $dstat !~ /$exceptions/)
1997 {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001998 ERROR("Macros with multiple statements should be enclosed in a do - while loop\n" . "$here\n$ctx\n");
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001999 }
2000
2001 } elsif ($ctx !~ /;/) {
2002 if ($dstat ne '' &&
2003 $dstat !~ /^(?:$Ident|-?$Constant)$/ &&
2004 $dstat !~ /$exceptions/ &&
2005 $dstat =~ /$Operators/)
2006 {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002007 ERROR("Macros with complex values should be enclosed in parenthesis\n" . "$here\n$ctx\n");
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002008 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07002009 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002010 }
2011
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002012# check for redundant bracing round if etc
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002013 if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) {
2014 my ($level, $endln, @chunks) =
Andy Whitcroftcf655042008-03-04 14:28:20 -08002015 ctx_statement_full($linenr, $realcnt, 1);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002016 #print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08002017 #print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n";
2018 if ($#chunks > 0 && $level == 0) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002019 my $allowed = 0;
2020 my $seen = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07002021 my $herectx = $here . "\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08002022 my $ln = $linenr - 1;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002023 for my $chunk (@chunks) {
2024 my ($cond, $block) = @{$chunk};
2025
Andy Whitcroft773647a2008-03-28 14:15:58 -07002026 # If the condition carries leading newlines, then count those as offsets.
2027 my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s);
2028 my $offset = statement_rawlines($whitespace) - 1;
2029
2030 #print "COND<$cond> whitespace<$whitespace> offset<$offset>\n";
2031
2032 # We have looked at and allowed this specific line.
2033 $suppress_ifbraces{$ln + $offset} = 1;
2034
2035 $herectx .= "$rawlines[$ln + $offset]\n[...]\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08002036 $ln += statement_rawlines($block) - 1;
2037
Andy Whitcroft773647a2008-03-28 14:15:58 -07002038 substr($block, 0, length($cond), '');
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002039
2040 $seen++ if ($block =~ /^\s*{/);
2041
Andy Whitcroftcf655042008-03-04 14:28:20 -08002042 #print "cond<$cond> block<$block> allowed<$allowed>\n";
2043 if (statement_lines($cond) > 1) {
2044 #print "APW: ALLOWED: cond<$cond>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002045 $allowed = 1;
2046 }
2047 if ($block =~/\b(?:if|for|while)\b/) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08002048 #print "APW: ALLOWED: block<$block>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002049 $allowed = 1;
2050 }
Andy Whitcroftcf655042008-03-04 14:28:20 -08002051 if (statement_block_size($block) > 1) {
2052 #print "APW: ALLOWED: lines block<$block>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002053 $allowed = 1;
2054 }
2055 }
2056 if ($seen && !$allowed) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08002057 WARN("braces {} are not necessary for any arm of this statement\n" . $herectx);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002058 }
2059 }
2060 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002061 if (!defined $suppress_ifbraces{$linenr - 1} &&
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002062 $line =~ /\b(if|while|for|else)\b/) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08002063 my $allowed = 0;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002064
Andy Whitcroftcf655042008-03-04 14:28:20 -08002065 # Check the pre-context.
2066 if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) {
2067 #print "APW: ALLOWED: pre<$1>\n";
2068 $allowed = 1;
2069 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002070
2071 my ($level, $endln, @chunks) =
2072 ctx_statement_full($linenr, $realcnt, $-[0]);
2073
Andy Whitcroftcf655042008-03-04 14:28:20 -08002074 # Check the condition.
2075 my ($cond, $block) = @{$chunks[0]};
Andy Whitcroft773647a2008-03-28 14:15:58 -07002076 #print "CHECKING<$linenr> cond<$cond> block<$block>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08002077 if (defined $cond) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002078 substr($block, 0, length($cond), '');
Andy Whitcroftcf655042008-03-04 14:28:20 -08002079 }
2080 if (statement_lines($cond) > 1) {
2081 #print "APW: ALLOWED: cond<$cond>\n";
2082 $allowed = 1;
2083 }
2084 if ($block =~/\b(?:if|for|while)\b/) {
2085 #print "APW: ALLOWED: block<$block>\n";
2086 $allowed = 1;
2087 }
2088 if (statement_block_size($block) > 1) {
2089 #print "APW: ALLOWED: lines block<$block>\n";
2090 $allowed = 1;
2091 }
2092 # Check the post-context.
2093 if (defined $chunks[1]) {
2094 my ($cond, $block) = @{$chunks[1]};
2095 if (defined $cond) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002096 substr($block, 0, length($cond), '');
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002097 }
Andy Whitcroftcf655042008-03-04 14:28:20 -08002098 if ($block =~ /^\s*\{/) {
2099 #print "APW: ALLOWED: chunk-1 block<$block>\n";
2100 $allowed = 1;
2101 }
2102 }
2103 if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
2104 my $herectx = $here . "\n";;
2105 my $end = $linenr + statement_rawlines($block) - 1;
2106
2107 for (my $ln = $linenr - 1; $ln < $end; $ln++) {
2108 $herectx .= $rawlines[$ln] . "\n";;
2109 }
2110
2111 WARN("braces {} are not necessary for single statement blocks\n" . $herectx);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002112 }
2113 }
2114
Andy Whitcroft653d4872007-06-23 17:16:34 -07002115# don't include deprecated include files (uses RAW line)
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002116 for my $inc (@dep_includes) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002117 if ($rawline =~ m@^.\s*\#\s*include\s*\<$inc>@) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002118 ERROR("Don't use <$inc>: see Documentation/feature-removal-schedule.txt\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002119 }
2120 }
2121
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002122# don't use deprecated functions
2123 for my $func (@dep_functions) {
Andy Whitcroft00df3442007-06-08 13:47:06 -07002124 if ($line =~ /\b$func\b/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002125 ERROR("Don't use $func(): see Documentation/feature-removal-schedule.txt\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002126 }
2127 }
2128
2129# no volatiles please
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002130 my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
2131 if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002132 WARN("Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002133 }
2134
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002135# SPIN_LOCK_UNLOCKED & RW_LOCK_UNLOCKED are deprecated
2136 if ($line =~ /\b(SPIN_LOCK_UNLOCKED|RW_LOCK_UNLOCKED)/) {
2137 ERROR("Use of $1 is deprecated: see Documentation/spinlocks.txt\n" . $herecurr);
2138 }
2139
Andy Whitcroft00df3442007-06-08 13:47:06 -07002140# warn about #if 0
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002141 if ($line =~ /^.\s*\#\s*if\s+0\b/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002142 CHK("if this code is redundant consider removing it\n" .
2143 $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002144 }
2145
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002146# check for needless kfree() checks
2147 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
2148 my $expr = $1;
2149 if ($line =~ /\bkfree\(\Q$expr\E\);/) {
Wolfram Sang3c232142008-07-23 21:29:05 -07002150 WARN("kfree(NULL) is safe this check is probably not required\n" . $hereprev);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002151 }
2152 }
Greg Kroah-Hartman4c432a82008-07-23 21:29:04 -07002153# check for needless usb_free_urb() checks
2154 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
2155 my $expr = $1;
2156 if ($line =~ /\busb_free_urb\(\Q$expr\E\);/) {
2157 WARN("usb_free_urb(NULL) is safe this check is probably not required\n" . $hereprev);
2158 }
2159 }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002160
Andy Whitcroft00df3442007-06-08 13:47:06 -07002161# warn about #ifdefs in C files
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002162# if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
Andy Whitcroft00df3442007-06-08 13:47:06 -07002163# print "#ifdef in C files should be avoided\n";
2164# print "$herecurr";
2165# $clean = 0;
2166# }
2167
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002168# warn about spacing in #ifdefs
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002169 if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) {
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002170 ERROR("exactly one space required after that #$1\n" . $herecurr);
2171 }
2172
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002173# check for spinlock_t definitions without a comment.
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002174 if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ ||
2175 $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002176 my $which = $1;
2177 if (!ctx_has_comment($first_line, $linenr)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002178 CHK("$1 definition without comment\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002179 }
2180 }
2181# check for memory barriers without a comment.
2182 if ($line =~ /\b(mb|rmb|wmb|read_barrier_depends|smp_mb|smp_rmb|smp_wmb|smp_read_barrier_depends)\(/) {
2183 if (!ctx_has_comment($first_line, $linenr)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002184 CHK("memory barrier without comment\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002185 }
2186 }
2187# check of hardware specific defines
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002188 if ($line =~ m@^.\s*\#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002189 CHK("architecture specific defines should be avoided\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002190 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07002191
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002192# check the location of the inline attribute, that it is between
2193# storage class and type.
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002194 if ($line =~ /\b$Type\s+$Inline\b/ ||
2195 $line =~ /\b$Inline\s+$Storage\b/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002196 ERROR("inline keyword should sit between storage class and type\n" . $herecurr);
2197 }
2198
Andy Whitcroft8905a672007-11-28 16:21:06 -08002199# Check for __inline__ and __inline, prefer inline
2200 if ($line =~ /\b(__inline__|__inline)\b/) {
2201 WARN("plain inline is preferred over $1\n" . $herecurr);
2202 }
2203
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002204# check for new externs in .c files.
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002205 if ($realfile =~ /\.c$/ && defined $stat &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002206 $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s)
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002207 {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002208 my $function_name = $1;
2209 my $paren_space = $2;
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002210
2211 my $s = $stat;
2212 if (defined $cond) {
2213 substr($s, 0, length($cond), '');
2214 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002215 if ($s =~ /^\s*;/ &&
2216 $function_name ne 'uninitialized_var')
2217 {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002218 WARN("externs should be avoided in .c files\n" . $herecurr);
2219 }
2220
2221 if ($paren_space =~ /\n/) {
2222 WARN("arguments for function declarations should follow identifier\n" . $herecurr);
2223 }
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07002224
2225 } elsif ($realfile =~ /\.c$/ && defined $stat &&
2226 $stat =~ /^.\s*extern\s+/)
2227 {
2228 WARN("externs should be avoided in .c files\n" . $herecurr);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002229 }
2230
2231# checks for new __setup's
2232 if ($rawline =~ /\b__setup\("([^"]*)"/) {
2233 my $name = $1;
2234
2235 if (!grep(/$name/, @setup_docs)) {
2236 CHK("__setup appears un-documented -- check Documentation/kernel-parameters.txt\n" . $herecurr);
2237 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07002238 }
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002239
2240# check for pointless casting of kmalloc return
2241 if ($line =~ /\*\s*\)\s*k[czm]alloc\b/) {
2242 WARN("unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
2243 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002244
2245# check for gcc specific __FUNCTION__
2246 if ($line =~ /__FUNCTION__/) {
2247 WARN("__func__ should be used instead of gcc specific __FUNCTION__\n" . $herecurr);
2248 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002249
2250# check for semaphores used as mutexes
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002251 if ($line =~ /^.\s*(DECLARE_MUTEX|init_MUTEX)\s*\(/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002252 WARN("mutexes are preferred for single holder semaphores\n" . $herecurr);
2253 }
2254# check for semaphores used as mutexes
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002255 if ($line =~ /^.\s*init_MUTEX_LOCKED\s*\(/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002256 WARN("consider using a completion\n" . $herecurr);
2257 }
2258# recommend strict_strto* over simple_strto*
2259 if ($line =~ /\bsimple_(strto.*?)\s*\(/) {
2260 WARN("consider using strict_$1 in preference to simple_$1\n" . $herecurr);
2261 }
Michael Ellermanf3db6632008-07-23 21:28:57 -07002262# check for __initcall(), use device_initcall() explicitly please
2263 if ($line =~ /^.\s*__initcall\s*\(/) {
2264 WARN("please use device_initcall() instead of __initcall()\n" . $herecurr);
2265 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002266
2267# use of NR_CPUS is usually wrong
2268# ignore definitions of NR_CPUS and usage to define arrays as likely right
2269 if ($line =~ /\bNR_CPUS\b/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002270 $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ &&
2271 $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ &&
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002272 $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ &&
2273 $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ &&
2274 $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/)
Andy Whitcroft773647a2008-03-28 14:15:58 -07002275 {
2276 WARN("usage of NR_CPUS is often wrong - consider using cpu_possible(), num_possible_cpus(), for_each_possible_cpu(), etc\n" . $herecurr);
2277 }
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07002278
2279# check for %L{u,d,i} in strings
2280 my $string;
2281 while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) {
2282 $string = substr($rawline, $-[1], $+[1] - $-[1]);
2283 if ($string =~ /(?<!%)%L[udi]/) {
2284 WARN("\%Ld/%Lu are not-standard C, use %lld/%llu\n" . $herecurr);
2285 last;
2286 }
2287 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002288 }
2289
2290 # If we have no input at all, then there is nothing to report on
2291 # so just keep quiet.
2292 if ($#rawlines == -1) {
2293 exit(0);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002294 }
2295
Andy Whitcroft8905a672007-11-28 16:21:06 -08002296 # In mailback mode only produce a report in the negative, for
2297 # things that appear to be patches.
2298 if ($mailback && ($clean == 1 || !$is_patch)) {
2299 exit(0);
2300 }
2301
2302 # This is not a patch, and we are are in 'no-patch' mode so
2303 # just keep quiet.
2304 if (!$chk_patch && !$is_patch) {
2305 exit(0);
2306 }
2307
2308 if (!$is_patch) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002309 ERROR("Does not appear to be a unified-diff format patch\n");
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002310 }
2311 if ($is_patch && $chk_signoff && $signoff == 0) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002312 ERROR("Missing Signed-off-by: line(s)\n");
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002313 }
2314
Andy Whitcroft8905a672007-11-28 16:21:06 -08002315 print report_dump();
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002316 if ($summary && !($clean == 1 && $quiet == 1)) {
2317 print "$filename " if ($summary_file);
Andy Whitcroft8905a672007-11-28 16:21:06 -08002318 print "total: $cnt_error errors, $cnt_warn warnings, " .
2319 (($check)? "$cnt_chk checks, " : "") .
2320 "$cnt_lines lines checked\n";
2321 print "\n" if ($quiet == 0);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002322 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08002323
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002324 if ($clean == 1 && $quiet == 0) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002325 print "$vname has no obvious style problems and is ready for submission.\n"
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002326 }
2327 if ($clean == 0 && $quiet == 0) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002328 print "$vname has style problems, please review. If any of these errors\n";
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002329 print "are false positives report them to the maintainer, see\n";
2330 print "CHECKPATCH in MAINTAINERS.\n";
2331 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002332
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002333 return $clean;
2334}