blob: cc61cf7187efc7a7ed12de4a9da2c37320ae57ef [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 Whitcroft33cba062008-07-23 21:29:12 -070012my $V = '0.21';
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 Whitcrofta1ef2772008-10-15 22:02:17 -070069my $dbg_attr = 0;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -080070for my $key (keys %debug) {
71 eval "\${dbg_$key} = '$debug{$key}';"
72}
73
Andy Whitcroft8905a672007-11-28 16:21:06 -080074if ($terse) {
75 $emacs = 1;
76 $quiet++;
77}
78
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070079if ($tree) {
80 if (defined $root) {
81 if (!top_of_kernel_tree($root)) {
82 die "$P: $root: --root does not point at a valid tree\n";
83 }
84 } else {
85 if (top_of_kernel_tree('.')) {
86 $root = '.';
87 } elsif ($0 =~ m@(.*)/scripts/[^/]*$@ &&
88 top_of_kernel_tree($1)) {
89 $root = $1;
90 }
91 }
92
93 if (!defined $root) {
94 print "Must be run from the top-level dir. of a kernel tree\n";
95 exit(2);
96 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -070097}
98
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070099my $emitted_corrupt = 0;
100
101our $Ident = qr{[A-Za-z_][A-Za-z\d_]*};
102our $Storage = qr{extern|static|asmlinkage};
103our $Sparse = qr{
104 __user|
105 __kernel|
106 __force|
107 __iomem|
108 __must_check|
109 __init_refok|
Andy Whitcroftcf655042008-03-04 14:28:20 -0800110 __kprobes
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700111 }x;
112our $Attribute = qr{
113 const|
114 __read_mostly|
115 __kprobes|
Andy Whitcroft24e1d812008-10-15 22:02:18 -0700116 __(?:mem|cpu|dev|)(?:initdata|init)|
117 ____cacheline_aligned|
118 ____cacheline_aligned_in_smp|
119 ____cacheline_internodealigned_in_smp
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700120 }x;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700121our $Modifier;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700122our $Inline = qr{inline|__always_inline|noinline};
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700123our $Member = qr{->$Ident|\.$Ident|\[[^]]*\]};
124our $Lval = qr{$Ident(?:$Member)*};
125
126our $Constant = qr{(?:[0-9]+|0x[0-9a-fA-F]+)[UL]*};
127our $Assignment = qr{(?:\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=)};
128our $Operators = qr{
129 <=|>=|==|!=|
130 =>|->|<<|>>|<|>|!|~|
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800131 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700132 }x;
133
Andy Whitcroft8905a672007-11-28 16:21:06 -0800134our $NonptrType;
135our $Type;
136our $Declare;
137
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700138our $UTF8 = qr {
139 [\x09\x0A\x0D\x20-\x7E] # ASCII
140 | [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
141 | \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
142 | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
143 | \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
144 | \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
145 | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
146 | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
147}x;
148
Andy Whitcroft8905a672007-11-28 16:21:06 -0800149our @typeList = (
150 qr{void},
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700151 qr{(?:unsigned\s+)?char},
152 qr{(?:unsigned\s+)?short},
153 qr{(?:unsigned\s+)?int},
154 qr{(?:unsigned\s+)?long},
155 qr{(?:unsigned\s+)?long\s+int},
156 qr{(?:unsigned\s+)?long\s+long},
157 qr{(?:unsigned\s+)?long\s+long\s+int},
Andy Whitcroft8905a672007-11-28 16:21:06 -0800158 qr{unsigned},
159 qr{float},
160 qr{double},
161 qr{bool},
Andy Whitcroft8905a672007-11-28 16:21:06 -0800162 qr{(?:__)?(?:u|s|be|le)(?:8|16|32|64)},
163 qr{struct\s+$Ident},
164 qr{union\s+$Ident},
165 qr{enum\s+$Ident},
166 qr{${Ident}_t},
167 qr{${Ident}_handler},
168 qr{${Ident}_handler_fn},
169);
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700170our @modifierList = (
171 qr{fastcall},
172);
Andy Whitcroft8905a672007-11-28 16:21:06 -0800173
174sub build_types {
Andy Whitcroftd2172eb2008-07-23 21:29:07 -0700175 my $mods = "(?x: \n" . join("|\n ", @modifierList) . "\n)";
176 my $all = "(?x: \n" . join("|\n ", @typeList) . "\n)";
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700177 $Modifier = qr{(?:$Attribute|$Sparse|$mods)};
Andy Whitcroft8905a672007-11-28 16:21:06 -0800178 $NonptrType = qr{
Andy Whitcroftd2172eb2008-07-23 21:29:07 -0700179 (?:$Modifier\s+|const\s+)*
Andy Whitcroftcf655042008-03-04 14:28:20 -0800180 (?:
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700181 (?:typeof|__typeof__)\s*\(\s*\**\s*$Ident\s*\)|
182 (?:${all}\b)
Andy Whitcroftcf655042008-03-04 14:28:20 -0800183 )
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700184 (?:\s+$Modifier|\s+const)*
Andy Whitcroft8905a672007-11-28 16:21:06 -0800185 }x;
186 $Type = qr{
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700187 $NonptrType
Andy Whitcroft8905a672007-11-28 16:21:06 -0800188 (?:\s*\*+\s*const|\s*\*+|(?:\s*\[\s*\])+)?
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700189 (?:\s+$Inline|\s+$Modifier)*
Andy Whitcroft8905a672007-11-28 16:21:06 -0800190 }x;
191 $Declare = qr{(?:$Storage\s+)?$Type};
192}
193build_types();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700194
195$chk_signoff = 0 if ($file);
196
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700197my @dep_includes = ();
198my @dep_functions = ();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700199my $removal = "Documentation/feature-removal-schedule.txt";
200if ($tree && -f "$root/$removal") {
201 open(REMOVE, "<$root/$removal") ||
202 die "$P: $removal: open failed - $!\n";
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700203 while (<REMOVE>) {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700204 if (/^Check:\s+(.*\S)/) {
205 for my $entry (split(/[, ]+/, $1)) {
206 if ($entry =~ m@include/(.*)@) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700207 push(@dep_includes, $1);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700208
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700209 } elsif ($entry !~ m@/@) {
210 push(@dep_functions, $entry);
211 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700212 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700213 }
214 }
215}
216
Andy Whitcroft00df3442007-06-08 13:47:06 -0700217my @rawlines = ();
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800218my @lines = ();
219my $vname;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700220for my $filename (@ARGV) {
221 if ($file) {
222 open(FILE, "diff -u /dev/null $filename|") ||
223 die "$P: $filename: diff failed - $!\n";
224 } else {
225 open(FILE, "<$filename") ||
226 die "$P: $filename: open failed - $!\n";
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700227 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800228 if ($filename eq '-') {
229 $vname = 'Your patch';
230 } else {
231 $vname = $filename;
232 }
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700233 while (<FILE>) {
234 chomp;
235 push(@rawlines, $_);
236 }
237 close(FILE);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800238 if (!process($filename)) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700239 $exit = 1;
240 }
241 @rawlines = ();
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800242 @lines = ();
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700243}
244
245exit($exit);
246
247sub top_of_kernel_tree {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700248 my ($root) = @_;
249
250 my @tree_check = (
251 "COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
252 "README", "Documentation", "arch", "include", "drivers",
253 "fs", "init", "ipc", "kernel", "lib", "scripts",
254 );
255
256 foreach my $check (@tree_check) {
257 if (! -e $root . '/' . $check) {
258 return 0;
259 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700260 }
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700261 return 1;
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700262}
263
264sub expand_tabs {
265 my ($str) = @_;
266
267 my $res = '';
268 my $n = 0;
269 for my $c (split(//, $str)) {
270 if ($c eq "\t") {
271 $res .= ' ';
272 $n++;
273 for (; ($n % 8) != 0; $n++) {
274 $res .= ' ';
275 }
276 next;
277 }
278 $res .= $c;
279 $n++;
280 }
281
282 return $res;
283}
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700284sub copy_spacing {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700285 (my $res = shift) =~ tr/\t/ /c;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700286 return $res;
287}
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700288
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700289sub line_stats {
290 my ($line) = @_;
291
292 # Drop the diff line leader and expand tabs
293 $line =~ s/^.//;
294 $line = expand_tabs($line);
295
296 # Pick the indent from the front of the line.
297 my ($white) = ($line =~ /^(\s*)/);
298
299 return (length($line), length($white));
300}
301
Andy Whitcroft773647a2008-03-28 14:15:58 -0700302my $sanitise_quote = '';
303
304sub sanitise_line_reset {
305 my ($in_comment) = @_;
306
307 if ($in_comment) {
308 $sanitise_quote = '*/';
309 } else {
310 $sanitise_quote = '';
311 }
312}
Andy Whitcroft00df3442007-06-08 13:47:06 -0700313sub sanitise_line {
314 my ($line) = @_;
315
316 my $res = '';
317 my $l = '';
318
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800319 my $qlen = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -0700320 my $off = 0;
321 my $c;
Andy Whitcroft00df3442007-06-08 13:47:06 -0700322
Andy Whitcroft773647a2008-03-28 14:15:58 -0700323 # Always copy over the diff marker.
324 $res = substr($line, 0, 1);
325
326 for ($off = 1; $off < length($line); $off++) {
327 $c = substr($line, $off, 1);
328
329 # Comments we are wacking completly including the begin
330 # and end, all to $;.
331 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
332 $sanitise_quote = '*/';
333
334 substr($res, $off, 2, "$;$;");
335 $off++;
336 next;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800337 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700338 if (substr($line, $off, 2) eq '*/') {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700339 $sanitise_quote = '';
340 substr($res, $off, 2, "$;$;");
341 $off++;
342 next;
343 }
344
345 # A \ in a string means ignore the next character.
346 if (($sanitise_quote eq "'" || $sanitise_quote eq '"') &&
347 $c eq "\\") {
348 substr($res, $off, 2, 'XX');
349 $off++;
350 next;
351 }
352 # Regular quotes.
353 if ($c eq "'" || $c eq '"') {
354 if ($sanitise_quote eq '') {
355 $sanitise_quote = $c;
356
357 substr($res, $off, 1, $c);
Andy Whitcroft00df3442007-06-08 13:47:06 -0700358 next;
Andy Whitcroft773647a2008-03-28 14:15:58 -0700359 } elsif ($sanitise_quote eq $c) {
360 $sanitise_quote = '';
Andy Whitcroft00df3442007-06-08 13:47:06 -0700361 }
362 }
Andy Whitcroft773647a2008-03-28 14:15:58 -0700363
364 #print "SQ:$sanitise_quote\n";
365 if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") {
366 substr($res, $off, 1, $;);
367 } elsif ($off != 0 && $sanitise_quote && $c ne "\t") {
368 substr($res, $off, 1, 'X');
Andy Whitcroft00df3442007-06-08 13:47:06 -0700369 } else {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700370 substr($res, $off, 1, $c);
Andy Whitcroft00df3442007-06-08 13:47:06 -0700371 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800372 }
373
374 # The pathname on a #include may be surrounded by '<' and '>'.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700375 if ($res =~ /^.\s*\#\s*include\s+\<(.*)\>/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800376 my $clean = 'X' x length($1);
377 $res =~ s@\<.*\>@<$clean>@;
378
379 # The whole of a #error is a string.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700380 } elsif ($res =~ /^.\s*\#\s*(?:error|warning)\s+(.*)\b/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800381 my $clean = 'X' x length($1);
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700382 $res =~ s@(\#\s*(?:error|warning)\s+).*@$1$clean@;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800383 }
384
Andy Whitcroft00df3442007-06-08 13:47:06 -0700385 return $res;
386}
387
Andy Whitcroft8905a672007-11-28 16:21:06 -0800388sub ctx_statement_block {
389 my ($linenr, $remain, $off) = @_;
390 my $line = $linenr - 1;
391 my $blk = '';
392 my $soff = $off;
393 my $coff = $off - 1;
Andy Whitcroft773647a2008-03-28 14:15:58 -0700394 my $coff_set = 0;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800395
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800396 my $loff = 0;
397
Andy Whitcroft8905a672007-11-28 16:21:06 -0800398 my $type = '';
399 my $level = 0;
Andy Whitcroftcf655042008-03-04 14:28:20 -0800400 my $p;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800401 my $c;
402 my $len = 0;
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800403
404 my $remainder;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800405 while (1) {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700406 #warn "CSB: blk<$blk> remain<$remain>\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -0800407 # If we are about to drop off the end, pull in more
408 # context.
409 if ($off >= $len) {
410 for (; $remain > 0; $line++) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800411 next if ($lines[$line] =~ /^-/);
Andy Whitcroft8905a672007-11-28 16:21:06 -0800412 $remain--;
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800413 $loff = $len;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800414 $blk .= $lines[$line] . "\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -0800415 $len = length($blk);
416 $line++;
417 last;
418 }
419 # Bail if there is no further context.
420 #warn "CSB: blk<$blk> off<$off> len<$len>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800421 if ($off >= $len) {
Andy Whitcroft8905a672007-11-28 16:21:06 -0800422 last;
423 }
424 }
Andy Whitcroftcf655042008-03-04 14:28:20 -0800425 $p = $c;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800426 $c = substr($blk, $off, 1);
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800427 $remainder = substr($blk, $off);
Andy Whitcroft8905a672007-11-28 16:21:06 -0800428
Andy Whitcroft773647a2008-03-28 14:15:58 -0700429 #warn "CSB: c<$c> type<$type> level<$level> remainder<$remainder> coff_set<$coff_set>\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -0800430 # Statement ends at the ';' or a close '}' at the
431 # outermost level.
432 if ($level == 0 && $c eq ';') {
433 last;
434 }
435
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800436 # An else is really a conditional as long as its not else if
Andy Whitcroft773647a2008-03-28 14:15:58 -0700437 if ($level == 0 && $coff_set == 0 &&
438 (!defined($p) || $p =~ /(?:\s|\}|\+)/) &&
439 $remainder =~ /^(else)(?:\s|{)/ &&
440 $remainder !~ /^else\s+if\b/) {
441 $coff = $off + length($1) - 1;
442 $coff_set = 1;
443 #warn "CSB: mark coff<$coff> soff<$soff> 1<$1>\n";
444 #warn "[" . substr($blk, $soff, $coff - $soff + 1) . "]\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800445 }
446
Andy Whitcroft8905a672007-11-28 16:21:06 -0800447 if (($type eq '' || $type eq '(') && $c eq '(') {
448 $level++;
449 $type = '(';
450 }
451 if ($type eq '(' && $c eq ')') {
452 $level--;
453 $type = ($level != 0)? '(' : '';
454
455 if ($level == 0 && $coff < $soff) {
456 $coff = $off;
Andy Whitcroft773647a2008-03-28 14:15:58 -0700457 $coff_set = 1;
458 #warn "CSB: mark coff<$coff>\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -0800459 }
460 }
461 if (($type eq '' || $type eq '{') && $c eq '{') {
462 $level++;
463 $type = '{';
464 }
465 if ($type eq '{' && $c eq '}') {
466 $level--;
467 $type = ($level != 0)? '{' : '';
468
469 if ($level == 0) {
470 last;
471 }
472 }
473 $off++;
474 }
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -0700475 # We are truly at the end, so shuffle to the next line.
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800476 if ($off == $len) {
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -0700477 $loff = $len + 1;
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800478 $line++;
479 $remain--;
480 }
Andy Whitcroft8905a672007-11-28 16:21:06 -0800481
482 my $statement = substr($blk, $soff, $off - $soff + 1);
483 my $condition = substr($blk, $soff, $coff - $soff + 1);
484
485 #warn "STATEMENT<$statement>\n";
486 #warn "CONDITION<$condition>\n";
487
Andy Whitcroft773647a2008-03-28 14:15:58 -0700488 #print "coff<$coff> soff<$off> loff<$loff>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800489
490 return ($statement, $condition,
491 $line, $remain + 1, $off - $loff + 1, $level);
492}
493
Andy Whitcroftcf655042008-03-04 14:28:20 -0800494sub statement_lines {
495 my ($stmt) = @_;
496
497 # Strip the diff line prefixes and rip blank lines at start and end.
498 $stmt =~ s/(^|\n)./$1/g;
499 $stmt =~ s/^\s*//;
500 $stmt =~ s/\s*$//;
501
502 my @stmt_lines = ($stmt =~ /\n/g);
503
504 return $#stmt_lines + 2;
505}
506
507sub statement_rawlines {
508 my ($stmt) = @_;
509
510 my @stmt_lines = ($stmt =~ /\n/g);
511
512 return $#stmt_lines + 2;
513}
514
515sub statement_block_size {
516 my ($stmt) = @_;
517
518 $stmt =~ s/(^|\n)./$1/g;
519 $stmt =~ s/^\s*{//;
520 $stmt =~ s/}\s*$//;
521 $stmt =~ s/^\s*//;
522 $stmt =~ s/\s*$//;
523
524 my @stmt_lines = ($stmt =~ /\n/g);
525 my @stmt_statements = ($stmt =~ /;/g);
526
527 my $stmt_lines = $#stmt_lines + 2;
528 my $stmt_statements = $#stmt_statements + 1;
529
530 if ($stmt_lines > $stmt_statements) {
531 return $stmt_lines;
532 } else {
533 return $stmt_statements;
534 }
535}
536
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800537sub ctx_statement_full {
538 my ($linenr, $remain, $off) = @_;
539 my ($statement, $condition, $level);
540
541 my (@chunks);
542
Andy Whitcroftcf655042008-03-04 14:28:20 -0800543 # Grab the first conditional/block pair.
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800544 ($statement, $condition, $linenr, $remain, $off, $level) =
545 ctx_statement_block($linenr, $remain, $off);
Andy Whitcroft773647a2008-03-28 14:15:58 -0700546 #print "F: c<$condition> s<$statement> remain<$remain>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -0800547 push(@chunks, [ $condition, $statement ]);
548 if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
549 return ($level, $linenr, @chunks);
550 }
551
552 # Pull in the following conditional/block pairs and see if they
553 # could continue the statement.
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800554 for (;;) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800555 ($statement, $condition, $linenr, $remain, $off, $level) =
556 ctx_statement_block($linenr, $remain, $off);
Andy Whitcroftcf655042008-03-04 14:28:20 -0800557 #print "C: c<$condition> s<$statement> remain<$remain>\n";
Andy Whitcroft773647a2008-03-28 14:15:58 -0700558 last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
Andy Whitcroftcf655042008-03-04 14:28:20 -0800559 #print "C: push\n";
560 push(@chunks, [ $condition, $statement ]);
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800561 }
562
563 return ($level, $linenr, @chunks);
Andy Whitcroft8905a672007-11-28 16:21:06 -0800564}
565
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700566sub ctx_block_get {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700567 my ($linenr, $remain, $outer, $open, $close, $off) = @_;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700568 my $line;
569 my $start = $linenr - 1;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700570 my $blk = '';
571 my @o;
572 my @c;
573 my @res = ();
574
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700575 my $level = 0;
Andy Whitcroft00df3442007-06-08 13:47:06 -0700576 for ($line = $start; $remain > 0; $line++) {
577 next if ($rawlines[$line] =~ /^-/);
578 $remain--;
579
580 $blk .= $rawlines[$line];
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700581 foreach my $c (split(//, $rawlines[$line])) {
582 ##print "C<$c>L<$level><$open$close>O<$off>\n";
583 if ($off > 0) {
584 $off--;
585 next;
586 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700587
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700588 if ($c eq $close && $level > 0) {
589 $level--;
590 last if ($level == 0);
591 } elsif ($c eq $open) {
592 $level++;
593 }
594 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700595
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700596 if (!$outer || $level <= 1) {
Andy Whitcroft00df3442007-06-08 13:47:06 -0700597 push(@res, $rawlines[$line]);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700598 }
599
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700600 last if ($level == 0);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700601 }
602
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700603 return ($level, @res);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700604}
605sub ctx_block_outer {
606 my ($linenr, $remain) = @_;
607
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700608 my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0);
609 return @r;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700610}
611sub ctx_block {
612 my ($linenr, $remain) = @_;
613
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700614 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0);
615 return @r;
Andy Whitcroft653d4872007-06-23 17:16:34 -0700616}
617sub ctx_statement {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700618 my ($linenr, $remain, $off) = @_;
619
620 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
621 return @r;
622}
623sub ctx_block_level {
Andy Whitcroft653d4872007-06-23 17:16:34 -0700624 my ($linenr, $remain) = @_;
625
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700626 return ctx_block_get($linenr, $remain, 0, '{', '}', 0);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700627}
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700628sub ctx_statement_level {
629 my ($linenr, $remain, $off) = @_;
630
631 return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
632}
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700633
634sub ctx_locate_comment {
635 my ($first_line, $end_line) = @_;
636
637 # Catch a comment on the end of the line itself.
Andy Whitcroftbeae6332008-07-23 21:28:59 -0700638 my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700639 return $current_comment if (defined $current_comment);
640
641 # Look through the context and try and figure out if there is a
642 # comment.
643 my $in_comment = 0;
644 $current_comment = '';
645 for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
Andy Whitcroft00df3442007-06-08 13:47:06 -0700646 my $line = $rawlines[$linenr - 1];
647 #warn " $line\n";
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700648 if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
649 $in_comment = 1;
650 }
651 if ($line =~ m@/\*@) {
652 $in_comment = 1;
653 }
654 if (!$in_comment && $current_comment ne '') {
655 $current_comment = '';
656 }
657 $current_comment .= $line . "\n" if ($in_comment);
658 if ($line =~ m@\*/@) {
659 $in_comment = 0;
660 }
661 }
662
663 chomp($current_comment);
664 return($current_comment);
665}
666sub ctx_has_comment {
667 my ($first_line, $end_line) = @_;
668 my $cmt = ctx_locate_comment($first_line, $end_line);
669
Andy Whitcroft00df3442007-06-08 13:47:06 -0700670 ##print "LINE: $rawlines[$end_line - 1 ]\n";
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700671 ##print "CMMT: $cmt\n";
672
673 return ($cmt ne '');
674}
675
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700676sub cat_vet {
677 my ($vet) = @_;
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700678 my ($res, $coded);
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700679
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700680 $res = '';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700681 while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
682 $res .= $1;
683 if ($2 ne '') {
684 $coded = sprintf("^%c", unpack('C', $2) + 64);
685 $res .= $coded;
686 }
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700687 }
688 $res =~ s/$/\$/;
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700689
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700690 return $res;
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700691}
692
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800693my $av_preprocessor = 0;
Andy Whitcroftcf655042008-03-04 14:28:20 -0800694my $av_pending;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800695my @av_paren_type;
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700696my $av_pend_colon;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800697
698sub annotate_reset {
699 $av_preprocessor = 0;
Andy Whitcroftcf655042008-03-04 14:28:20 -0800700 $av_pending = '_';
701 @av_paren_type = ('E');
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700702 $av_pend_colon = 'O';
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800703}
704
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700705sub annotate_values {
706 my ($stream, $type) = @_;
707
708 my $res;
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700709 my $var = '_' x length($stream);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700710 my $cur = $stream;
711
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800712 print "$stream\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700713
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700714 while (length($cur)) {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700715 @av_paren_type = ('E') if ($#av_paren_type < 0);
Andy Whitcroftcf655042008-03-04 14:28:20 -0800716 print " <" . join('', @av_paren_type) .
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700717 "> <$type> <$av_pending>" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700718 if ($cur =~ /^(\s+)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800719 print "WS($1)\n" if ($dbg_values > 1);
720 if ($1 =~ /\n/ && $av_preprocessor) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800721 $type = pop(@av_paren_type);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800722 $av_preprocessor = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700723 }
724
Andy Whitcroft8ea3eb92008-07-23 21:29:08 -0700725 } elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\()/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800726 print "DECLARE($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700727 $type = 'T';
728
Andy Whitcroft389a2fe2008-07-23 21:29:05 -0700729 } elsif ($cur =~ /^($Modifier)\s*/) {
730 print "MODIFIER($1)\n" if ($dbg_values > 1);
731 $type = 'T';
732
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700733 } elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700734 print "DEFINE($1,$2)\n" if ($dbg_values > 1);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800735 $av_preprocessor = 1;
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700736 push(@av_paren_type, $type);
737 if ($2 ne '') {
738 $av_pending = 'N';
739 }
740 $type = 'E';
741
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700742 } elsif ($cur =~ /^(\#\s*(?:undef\s*$Ident|include\b))/o) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700743 print "UNDEF($1)\n" if ($dbg_values > 1);
744 $av_preprocessor = 1;
745 push(@av_paren_type, $type);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700746
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700747 } elsif ($cur =~ /^(\#\s*(?:ifdef|ifndef|if))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800748 print "PRE_START($1)\n" if ($dbg_values > 1);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800749 $av_preprocessor = 1;
Andy Whitcroftcf655042008-03-04 14:28:20 -0800750
751 push(@av_paren_type, $type);
752 push(@av_paren_type, $type);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700753 $type = 'E';
Andy Whitcroftcf655042008-03-04 14:28:20 -0800754
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700755 } elsif ($cur =~ /^(\#\s*(?:else|elif))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800756 print "PRE_RESTART($1)\n" if ($dbg_values > 1);
757 $av_preprocessor = 1;
758
759 push(@av_paren_type, $av_paren_type[$#av_paren_type]);
760
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700761 $type = 'E';
Andy Whitcroftcf655042008-03-04 14:28:20 -0800762
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700763 } elsif ($cur =~ /^(\#\s*(?:endif))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800764 print "PRE_END($1)\n" if ($dbg_values > 1);
765
766 $av_preprocessor = 1;
767
768 # Assume all arms of the conditional end as this
769 # one does, and continue as if the #endif was not here.
770 pop(@av_paren_type);
771 push(@av_paren_type, $type);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700772 $type = 'E';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700773
774 } elsif ($cur =~ /^(\\\n)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800775 print "PRECONT($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700776
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700777 } elsif ($cur =~ /^(__attribute__)\s*\(?/o) {
778 print "ATTR($1)\n" if ($dbg_values > 1);
779 $av_pending = $type;
780 $type = 'N';
781
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700782 } elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800783 print "SIZEOF($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700784 if (defined $2) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800785 $av_pending = 'V';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700786 }
787 $type = 'N';
788
Andy Whitcroft14b111c2008-10-15 22:02:16 -0700789 } elsif ($cur =~ /^(if|while|for)\b/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800790 print "COND($1)\n" if ($dbg_values > 1);
Andy Whitcroft14b111c2008-10-15 22:02:16 -0700791 $av_pending = 'E';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700792 $type = 'N';
793
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700794 } elsif ($cur =~/^(case)/o) {
795 print "CASE($1)\n" if ($dbg_values > 1);
796 $av_pend_colon = 'C';
797 $type = 'N';
798
Andy Whitcroft14b111c2008-10-15 22:02:16 -0700799 } elsif ($cur =~/^(return|else|goto|typeof|__typeof__)\b/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800800 print "KEYWORD($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700801 $type = 'N';
802
803 } elsif ($cur =~ /^(\()/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800804 print "PAREN('$1')\n" if ($dbg_values > 1);
Andy Whitcroftcf655042008-03-04 14:28:20 -0800805 push(@av_paren_type, $av_pending);
806 $av_pending = '_';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700807 $type = 'N';
808
809 } elsif ($cur =~ /^(\))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800810 my $new_type = pop(@av_paren_type);
811 if ($new_type ne '_') {
812 $type = $new_type;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800813 print "PAREN('$1') -> $type\n"
814 if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700815 } else {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800816 print "PAREN('$1')\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700817 }
818
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700819 } elsif ($cur =~ /^($Ident)\s*\(/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800820 print "FUNC($1)\n" if ($dbg_values > 1);
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700821 $type = 'V';
Andy Whitcroftcf655042008-03-04 14:28:20 -0800822 $av_pending = 'V';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700823
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700824 } elsif ($cur =~ /^($Ident\s*):/) {
825 if ($type eq 'E') {
826 $av_pend_colon = 'L';
827 } elsif ($type eq 'T') {
828 $av_pend_colon = 'B';
829 }
830 print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1);
831 $type = 'V';
832
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700833 } elsif ($cur =~ /^($Ident|$Constant)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800834 print "IDENT($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700835 $type = 'V';
836
837 } elsif ($cur =~ /^($Assignment)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800838 print "ASSIGN($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700839 $type = 'N';
840
Andy Whitcroftcf655042008-03-04 14:28:20 -0800841 } elsif ($cur =~/^(;|{|})/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800842 print "END($1)\n" if ($dbg_values > 1);
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800843 $type = 'E';
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700844 $av_pend_colon = 'O';
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800845
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700846 } elsif ($cur =~ /^(\?)/o) {
847 print "QUESTION($1)\n" if ($dbg_values > 1);
848 $type = 'N';
849
850 } elsif ($cur =~ /^(:)/o) {
851 print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1);
852
853 substr($var, length($res), 1, $av_pend_colon);
854 if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') {
855 $type = 'E';
856 } else {
857 $type = 'N';
858 }
859 $av_pend_colon = 'O';
860
861 } elsif ($cur =~ /^(;|\[)/o) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800862 print "CLOSE($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700863 $type = 'N';
864
Andy Whitcroft0d413862008-10-15 22:02:16 -0700865 } elsif ($cur =~ /^(-(?![->])|\+(?!\+)|\*|\&\&|\&)/o) {
Andy Whitcroft74048ed2008-07-23 21:29:10 -0700866 my $variant;
867
868 print "OPV($1)\n" if ($dbg_values > 1);
869 if ($type eq 'V') {
870 $variant = 'B';
871 } else {
872 $variant = 'U';
873 }
874
875 substr($var, length($res), 1, $variant);
876 $type = 'N';
877
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700878 } elsif ($cur =~ /^($Operators)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800879 print "OP($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700880 if ($1 ne '++' && $1 ne '--') {
881 $type = 'N';
882 }
883
884 } elsif ($cur =~ /(^.)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800885 print "C($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700886 }
887 if (defined $1) {
888 $cur = substr($cur, length($1));
889 $res .= $type x length($1);
890 }
891 }
892
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700893 return ($res, $var);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700894}
895
Andy Whitcroft8905a672007-11-28 16:21:06 -0800896sub possible {
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800897 my ($possible, $line) = @_;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800898
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700899 print "CHECK<$possible> ($line)\n" if ($dbg_possible > 1);
Andy Whitcroft0221f552008-07-23 21:29:08 -0700900 if ($possible !~ /^(?:$Modifier|$Storage|$Type|DEFINE_\S+)$/ &&
Andy Whitcroft8905a672007-11-28 16:21:06 -0800901 $possible ne 'goto' && $possible ne 'return' &&
Andy Whitcroft8905a672007-11-28 16:21:06 -0800902 $possible ne 'case' && $possible ne 'else' &&
Andy Whitcroftd3ddcf42008-07-23 21:28:58 -0700903 $possible ne 'asm' && $possible ne '__asm__' &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700904 $possible !~ /^(typedef|struct|enum)\b/) {
905 # Check for modifiers.
906 $possible =~ s/\s*$Storage\s*//g;
907 $possible =~ s/\s*$Sparse\s*//g;
908 if ($possible =~ /^\s*$/) {
909
910 } elsif ($possible =~ /\s/) {
911 $possible =~ s/\s*$Type\s*//g;
Andy Whitcroftd2506582008-07-23 21:29:09 -0700912 for my $modifier (split(' ', $possible)) {
913 warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
914 push(@modifierList, $modifier);
915 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700916
917 } else {
918 warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
919 push(@typeList, $possible);
920 }
Andy Whitcroft8905a672007-11-28 16:21:06 -0800921 build_types();
922 }
923}
924
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700925my $prefix = '';
926
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700927sub report {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700928 if (defined $tst_only && $_[0] !~ /\Q$tst_only\E/) {
929 return 0;
930 }
Andy Whitcroft8905a672007-11-28 16:21:06 -0800931 my $line = $prefix . $_[0];
932
933 $line = (split('\n', $line))[0] . "\n" if ($terse);
934
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800935 push(our @report, $line);
Andy Whitcroft773647a2008-03-28 14:15:58 -0700936
937 return 1;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700938}
939sub report_dump {
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800940 our @report;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700941}
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700942sub ERROR {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700943 if (report("ERROR: $_[0]\n")) {
944 our $clean = 0;
945 our $cnt_error++;
946 }
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700947}
948sub WARN {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700949 if (report("WARNING: $_[0]\n")) {
950 our $clean = 0;
951 our $cnt_warn++;
952 }
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700953}
954sub CHK {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700955 if ($check && report("CHECK: $_[0]\n")) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700956 our $clean = 0;
957 our $cnt_chk++;
958 }
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700959}
960
Andy Whitcroft6ecd9672008-10-15 22:02:21 -0700961sub check_absolute_file {
962 my ($absolute, $herecurr) = @_;
963 my $file = $absolute;
964
965 ##print "absolute<$absolute>\n";
966
967 # See if any suffix of this path is a path within the tree.
968 while ($file =~ s@^[^/]*/@@) {
969 if (-f "$root/$file") {
970 ##print "file<$file>\n";
971 last;
972 }
973 }
974 if (! -f _) {
975 return 0;
976 }
977
978 # It is, so see if the prefix is acceptable.
979 my $prefix = $absolute;
980 substr($prefix, -length($file)) = '';
981
982 ##print "prefix<$prefix>\n";
983 if ($prefix ne ".../") {
984 WARN("use relative pathname instead of absolute in changelog text\n" . $herecurr);
985 }
986}
987
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700988sub process {
989 my $filename = shift;
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700990
991 my $linenr=0;
992 my $prevline="";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800993 my $prevrawline="";
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700994 my $stashline="";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800995 my $stashrawline="";
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700996
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700997 my $length;
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700998 my $indent;
999 my $previndent=0;
1000 my $stashindent=0;
1001
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001002 our $clean = 1;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001003 my $signoff = 0;
1004 my $is_patch = 0;
1005
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001006 our @report = ();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001007 our $cnt_lines = 0;
1008 our $cnt_error = 0;
1009 our $cnt_warn = 0;
1010 our $cnt_chk = 0;
1011
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001012 # Trace the real file/line as we go.
1013 my $realfile = '';
1014 my $realline = 0;
1015 my $realcnt = 0;
1016 my $here = '';
1017 my $in_comment = 0;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001018 my $comment_edge = 0;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001019 my $first_line = 0;
1020
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001021 my $prev_values = 'E';
1022
1023 # suppression flags
Andy Whitcroft773647a2008-03-28 14:15:58 -07001024 my %suppress_ifbraces;
Andy Whitcroft653d4872007-06-23 17:16:34 -07001025
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001026 # Pre-scan the patch sanitizing the lines.
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001027 # Pre-scan the patch looking for any __setup documentation.
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001028 #
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001029 my @setup_docs = ();
1030 my $setup_docs = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001031
1032 sanitise_line_reset();
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001033 my $line;
1034 foreach my $rawline (@rawlines) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001035 $linenr++;
1036 $line = $rawline;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001037
Andy Whitcroft773647a2008-03-28 14:15:58 -07001038 if ($rawline=~/^\+\+\+\s+(\S+)/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001039 $setup_docs = 0;
1040 if ($1 =~ m@Documentation/kernel-parameters.txt$@) {
1041 $setup_docs = 1;
1042 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001043 #next;
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001044 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001045 if ($rawline=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
1046 $realline=$1-1;
1047 if (defined $2) {
1048 $realcnt=$3+1;
1049 } else {
1050 $realcnt=1+1;
1051 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001052 $in_comment = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001053
1054 # Guestimate if this is a continuing comment. Run
1055 # the context looking for a comment "edge". If this
1056 # edge is a close comment then we must be in a comment
1057 # at context start.
1058 my $edge;
Andy Whitcroft01fa9142008-10-15 22:02:19 -07001059 my $cnt = $realcnt;
1060 for (my $ln = $linenr + 1; $cnt > 0; $ln++) {
1061 next if (defined $rawlines[$ln - 1] &&
1062 $rawlines[$ln - 1] =~ /^-/);
1063 $cnt--;
1064 #print "RAW<$rawlines[$ln - 1]>\n";
1065 ($edge) = (defined $rawlines[$ln - 1] &&
1066 $rawlines[$ln - 1] =~ m@(/\*|\*/)@);
Andy Whitcroft773647a2008-03-28 14:15:58 -07001067 last if (defined $edge);
1068 }
1069 if (defined $edge && $edge eq '*/') {
1070 $in_comment = 1;
1071 }
1072
1073 # Guestimate if this is a continuing comment. If this
1074 # is the start of a diff block and this line starts
1075 # ' *' then it is very likely a comment.
1076 if (!defined $edge &&
1077 $rawlines[$linenr] =~ m@^.\s* \*(?:\s|$)@)
1078 {
1079 $in_comment = 1;
1080 }
1081
1082 ##print "COMMENT:$in_comment edge<$edge> $rawline\n";
1083 sanitise_line_reset($in_comment);
1084
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001085 } elsif ($realcnt && $rawline =~ /^(?:\+| |$)/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001086 # Standardise the strings and chars within the input to
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001087 # simplify matching -- only bother with positive lines.
Andy Whitcroft773647a2008-03-28 14:15:58 -07001088 $line = sanitise_line($rawline);
1089 }
1090 push(@lines, $line);
1091
1092 if ($realcnt > 1) {
1093 $realcnt-- if ($line =~ /^(?:\+| |$)/);
1094 } else {
1095 $realcnt = 0;
1096 }
1097
1098 #print "==>$rawline\n";
1099 #print "-->$line\n";
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001100
1101 if ($setup_docs && $line =~ /^\+/) {
1102 push(@setup_docs, $line);
1103 }
1104 }
1105
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001106 $prefix = '';
1107
Andy Whitcroft773647a2008-03-28 14:15:58 -07001108 $realcnt = 0;
1109 $linenr = 0;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001110 foreach my $line (@lines) {
1111 $linenr++;
1112
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001113 my $rawline = $rawlines[$linenr - 1];
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001114
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001115#extract the line range in the file after the patch is applied
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001116 if ($line=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001117 $is_patch = 1;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001118 $first_line = $linenr + 1;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001119 $realline=$1-1;
1120 if (defined $2) {
1121 $realcnt=$3+1;
1122 } else {
1123 $realcnt=1+1;
1124 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001125 annotate_reset();
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001126 $prev_values = 'E';
1127
Andy Whitcroft773647a2008-03-28 14:15:58 -07001128 %suppress_ifbraces = ();
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001129 next;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001130
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001131# track the line number as we move through the hunk, note that
1132# new versions of GNU diff omit the leading space on completely
1133# blank context lines so we need to count that too.
Andy Whitcroft773647a2008-03-28 14:15:58 -07001134 } elsif ($line =~ /^( |\+|$)/) {
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001135 $realline++;
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001136 $realcnt-- if ($realcnt != 0);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001137
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001138 # Measure the line length and indent.
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001139 ($length, $indent) = line_stats($rawline);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001140
1141 # Track the previous line.
1142 ($prevline, $stashline) = ($stashline, $line);
1143 ($previndent, $stashindent) = ($stashindent, $indent);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001144 ($prevrawline, $stashrawline) = ($stashrawline, $rawline);
1145
Andy Whitcroft773647a2008-03-28 14:15:58 -07001146 #warn "line<$line>\n";
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001147
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001148 } elsif ($realcnt == 1) {
1149 $realcnt--;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001150 }
1151
1152#make up the handle for any error we report on this line
Andy Whitcroft773647a2008-03-28 14:15:58 -07001153 $prefix = "$filename:$realline: " if ($emacs && $file);
1154 $prefix = "$filename:$linenr: " if ($emacs && !$file);
1155
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001156 $here = "#$linenr: " if (!$file);
1157 $here = "#$realline: " if ($file);
Andy Whitcroft773647a2008-03-28 14:15:58 -07001158
1159 # extract the filename as it passes
1160 if ($line=~/^\+\+\+\s+(\S+)/) {
1161 $realfile = $1;
1162 $realfile =~ s@^[^/]*/@@;
1163
Andy Whitcroftc1ab3322008-10-15 22:02:20 -07001164 if ($realfile =~ m@^include/asm/@) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001165 ERROR("do not modify files in include/asm, change architecture specific files in include/asm-<architecture>\n" . "$here$rawline\n");
1166 }
1167 next;
1168 }
1169
Randy Dunlap389834b2007-06-08 13:47:03 -07001170 $here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001171
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001172 my $hereline = "$here\n$rawline\n";
1173 my $herecurr = "$here\n$rawline\n";
1174 my $hereprev = "$here\n$prevrawline\n$rawline\n";
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001175
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001176 $cnt_lines++ if ($realcnt != 0);
1177
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001178#check the patch for a signoff:
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001179 if ($line =~ /^\s*signed-off-by:/i) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001180 # This is a signoff, if ugly, so do not double report.
1181 $signoff++;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001182 if (!($line =~ /^\s*Signed-off-by:/)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001183 WARN("Signed-off-by: is the preferred form\n" .
1184 $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001185 }
1186 if ($line =~ /^\s*signed-off-by:\S/i) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001187 WARN("space required after Signed-off-by:\n" .
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001188 $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001189 }
1190 }
1191
Andy Whitcroft00df3442007-06-08 13:47:06 -07001192# Check for wrappage within a valid hunk of the file
Andy Whitcroft8905a672007-11-28 16:21:06 -08001193 if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001194 ERROR("patch seems to be corrupt (line wrapped?)\n" .
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001195 $herecurr) if (!$emitted_corrupt++);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001196 }
1197
Andy Whitcroft6ecd9672008-10-15 22:02:21 -07001198# Check for absolute kernel paths.
1199 if ($tree) {
1200 while ($line =~ m{(?:^|\s)(/\S*)}g) {
1201 my $file = $1;
1202
1203 if ($file =~ m{^(.*?)(?::\d+)+:?$} &&
1204 check_absolute_file($1, $herecurr)) {
1205 #
1206 } else {
1207 check_absolute_file($file, $herecurr);
1208 }
1209 }
1210 }
1211
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001212# UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
1213 if (($realfile =~ /^$/ || $line =~ /^\+/) &&
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001214 $rawline !~ m/^$UTF8*$/) {
1215 my ($utf8_prefix) = ($rawline =~ /^($UTF8*)/);
1216
1217 my $blank = copy_spacing($rawline);
1218 my $ptr = substr($blank, 0, length($utf8_prefix)) . "^";
1219 my $hereptr = "$hereline$ptr\n";
1220
1221 ERROR("Invalid UTF-8, patch and commit message should be encoded in UTF-8\n" . $hereptr);
Andy Whitcroft00df3442007-06-08 13:47:06 -07001222 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001223
Andy Whitcroft00df3442007-06-08 13:47:06 -07001224#ignore lines being removed
1225 if ($line=~/^-/) {next;}
1226
1227# check we are in a valid source file if not then ignore this hunk
1228 next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001229
1230#trailing whitespace
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001231 if ($line =~ /^\+.*\015/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001232 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001233 ERROR("DOS line endings\n" . $herevet);
1234
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001235 } elsif ($rawline =~ /^\+.*\S\s+$/ || $rawline =~ /^\+\s+$/) {
1236 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001237 ERROR("trailing whitespace\n" . $herevet);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001238 }
1239#80 column limit
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001240 if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ &&
Andy Whitcroftf4c014c2008-07-23 21:29:01 -07001241 $rawline !~ /^.\s*\*\s*\@$Ident\s/ &&
1242 $line !~ /^\+\s*printk\s*\(\s*(?:KERN_\S+\s*)?"[X\t]*"\s*(?:,|\)\s*;)\s*$/ &&
1243 $length > 80)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001244 {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001245 WARN("line over 80 characters\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001246 }
1247
Andy Whitcroft8905a672007-11-28 16:21:06 -08001248# check for adding lines without a newline.
1249 if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
1250 WARN("adding a line without newline at end of file\n" . $herecurr);
1251 }
1252
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001253# check we are in a valid source file *.[hc] if not then ignore this hunk
1254 next if ($realfile !~ /\.[hc]$/);
1255
1256# at the beginning of a line any tabs must come first and anything
1257# more than 8 must use tabs.
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001258 if ($rawline =~ /^\+\s* \t\s*\S/ ||
1259 $rawline =~ /^\+\s* \s*/) {
1260 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001261 ERROR("code indent should use tabs where possible\n" . $herevet);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001262 }
1263
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001264# check for RCS/CVS revision markers
Andy Whitcroftcf655042008-03-04 14:28:20 -08001265 if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001266 WARN("CVS style keyword markers, these will _not_ be updated\n". $herecurr);
1267 }
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001268
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001269# Check for potential 'bare' types
Andy Whitcroftf5fe35d2008-07-23 21:29:03 -07001270 my ($stat, $cond, $line_nr_next, $remain_next);
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07001271 if ($realcnt && $line =~ /.\s*\S/) {
Andy Whitcroftf5fe35d2008-07-23 21:29:03 -07001272 ($stat, $cond, $line_nr_next, $remain_next) =
1273 ctx_statement_block($linenr, $realcnt, 0);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001274 $stat =~ s/\n./\n /g;
1275 $cond =~ s/\n./\n /g;
1276
1277 my $s = $stat;
1278 $s =~ s/{.*$//s;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001279
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001280 # Ignore goto labels.
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001281 if ($s =~ /$Ident:\*$/s) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001282
1283 # Ignore functions being called
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001284 } elsif ($s =~ /^.\s*$Ident\s*\(/s) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001285
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001286 # declarations always start with types
Andy Whitcroftd2506582008-07-23 21:29:09 -07001287 } 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 -07001288 my $type = $1;
1289 $type =~ s/\s+/ /g;
1290 possible($type, "A:" . $s);
1291
Andy Whitcroft8905a672007-11-28 16:21:06 -08001292 # definitions in global scope can only start with types
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001293 } elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b/s) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001294 possible($1, "B:" . $s);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001295 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001296
1297 # any (foo ... *) is a pointer cast, and foo is a type
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001298 while ($s =~ /\(($Ident)(?:\s+$Sparse)*\s*\*+\s*\)/sg) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001299 possible($1, "C:" . $s);
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001300 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001301
1302 # Check for any sort of function declaration.
1303 # int foo(something bar, other baz);
1304 # void (*store_gdt)(x86_descr_ptr *);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001305 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 -08001306 my ($name_len) = length($1);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001307
Andy Whitcroftcf655042008-03-04 14:28:20 -08001308 my $ctx = $s;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001309 substr($ctx, 0, $name_len + 1, '');
Andy Whitcroft8905a672007-11-28 16:21:06 -08001310 $ctx =~ s/\)[^\)]*$//;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001311
Andy Whitcroft8905a672007-11-28 16:21:06 -08001312 for my $arg (split(/\s*,\s*/, $ctx)) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001313 if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$/s) {
Andy Whitcroft8905a672007-11-28 16:21:06 -08001314
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001315 possible($1, "D:" . $s);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001316 }
1317 }
1318 }
1319
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001320 }
1321
Andy Whitcroft653d4872007-06-23 17:16:34 -07001322#
1323# Checks which may be anchored in the context.
1324#
1325
1326# Check for switch () and associated case and default
1327# statements should be at the same indent.
Andy Whitcroft00df3442007-06-08 13:47:06 -07001328 if ($line=~/\bswitch\s*\(.*\)/) {
1329 my $err = '';
1330 my $sep = '';
1331 my @ctx = ctx_block_outer($linenr, $realcnt);
1332 shift(@ctx);
1333 for my $ctx (@ctx) {
1334 my ($clen, $cindent) = line_stats($ctx);
1335 if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
1336 $indent != $cindent) {
1337 $err .= "$sep$ctx\n";
1338 $sep = '';
1339 } else {
1340 $sep = "[...]\n";
1341 }
1342 }
1343 if ($err ne '') {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001344 ERROR("switch and case should be at the same indent\n$hereline$err");
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001345 }
1346 }
Andy Whitcrofte2a763c2008-07-23 21:29:02 -07001347 if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
Andy Whitcroft1bdab9e2008-10-15 22:02:17 -07001348 $line !~ /\G(?:
1349 (?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$|
1350 \s*return\s+
1351 )/xg)
1352 {
Andy Whitcrofte2a763c2008-07-23 21:29:02 -07001353 ERROR("trailing statements should be on next line\n" . $herecurr);
1354 }
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001355
1356# if/while/etc brace do not go on next line, unless defining a do while loop,
1357# or if that brace on the next line is for something else
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001358 if ($line =~ /(.*)\b((?:if|while|for|switch)\s*\(|do\b|else\b)/ && $line !~ /^.\s*\#/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001359 my $pre_ctx = "$1$2";
1360
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001361 my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001362 my $ctx_cnt = $realcnt - $#ctx - 1;
1363 my $ctx = join("\n", @ctx);
1364
Andy Whitcroft548596d2008-07-23 21:29:01 -07001365 my $ctx_ln = $linenr;
1366 my $ctx_skip = $realcnt;
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001367
Andy Whitcroft548596d2008-07-23 21:29:01 -07001368 while ($ctx_skip > $ctx_cnt || ($ctx_skip == $ctx_cnt &&
1369 defined $lines[$ctx_ln - 1] &&
1370 $lines[$ctx_ln - 1] =~ /^-/)) {
1371 ##print "SKIP<$ctx_skip> CNT<$ctx_cnt>\n";
1372 $ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/);
Andy Whitcroft773647a2008-03-28 14:15:58 -07001373 $ctx_ln++;
1374 }
Andy Whitcroft548596d2008-07-23 21:29:01 -07001375
Andy Whitcroft53210162008-07-23 21:29:03 -07001376 #print "realcnt<$realcnt> ctx_cnt<$ctx_cnt>\n";
1377 #print "pre<$pre_ctx>\nline<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>\n";
Andy Whitcroft773647a2008-03-28 14:15:58 -07001378
1379 if ($ctx !~ /{\s*/ && defined($lines[$ctx_ln -1]) && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
1380 ERROR("that open brace { should be on the previous line\n" .
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001381 "$here\n$ctx\n$lines[$ctx_ln - 1]\n");
Andy Whitcroft00df3442007-06-08 13:47:06 -07001382 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001383 if ($level == 0 && $pre_ctx !~ /}\s*while\s*\($/ &&
1384 $ctx =~ /\)\s*\;\s*$/ &&
1385 defined $lines[$ctx_ln - 1])
1386 {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001387 my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
1388 if ($nindent > $indent) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001389 WARN("trailing semicolon indicates no statements, indent implies otherwise\n" .
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001390 "$here\n$ctx\n$lines[$ctx_ln - 1]\n");
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001391 }
1392 }
Andy Whitcroft00df3442007-06-08 13:47:06 -07001393 }
1394
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001395 # Track the 'values' across context and added lines.
1396 my $opline = $line; $opline =~ s/^./ /;
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001397 my ($curr_values, $curr_vars) =
1398 annotate_values($opline . "\n", $prev_values);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001399 $curr_values = $prev_values . $curr_values;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001400 if ($dbg_values) {
1401 my $outline = $opline; $outline =~ s/\t/ /g;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001402 print "$linenr > .$outline\n";
1403 print "$linenr > $curr_values\n";
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001404 print "$linenr > $curr_vars\n";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001405 }
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001406 $prev_values = substr($curr_values, -1);
1407
Andy Whitcroft00df3442007-06-08 13:47:06 -07001408#ignore lines not being added
1409 if ($line=~/^[^\+]/) {next;}
1410
Andy Whitcroft653d4872007-06-23 17:16:34 -07001411# TEST: allow direct testing of the type matcher.
Andy Whitcroft7429c692008-07-23 21:29:06 -07001412 if ($dbg_type) {
1413 if ($line =~ /^.\s*$Declare\s*$/) {
1414 ERROR("TEST: is type\n" . $herecurr);
1415 } elsif ($dbg_type > 1 && $line =~ /^.+($Declare)/) {
1416 ERROR("TEST: is not type ($1 is)\n". $herecurr);
1417 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001418 next;
1419 }
Andy Whitcrofta1ef2772008-10-15 22:02:17 -07001420# TEST: allow direct testing of the attribute matcher.
1421 if ($dbg_attr) {
1422 if ($line =~ /^.\s*$Attribute\s*$/) {
1423 ERROR("TEST: is attr\n" . $herecurr);
1424 } elsif ($dbg_attr > 1 && $line =~ /^.+($Attribute)/) {
1425 ERROR("TEST: is not attr ($1 is)\n". $herecurr);
1426 }
1427 next;
1428 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001429
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001430# check for initialisation to aggregates open brace on the next line
1431 if ($prevline =~ /$Declare\s*$Ident\s*=\s*$/ &&
1432 $line =~ /^.\s*{/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001433 ERROR("that open brace { should be on the previous line\n" . $hereprev);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001434 }
1435
Andy Whitcroft653d4872007-06-23 17:16:34 -07001436#
1437# Checks which are anchored on the added line.
1438#
1439
1440# check for malformed paths in #include statements (uses RAW line)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001441 if ($rawline =~ m{^.\s*\#\s*include\s+[<"](.*)[">]}) {
Andy Whitcroft653d4872007-06-23 17:16:34 -07001442 my $path = $1;
1443 if ($path =~ m{//}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001444 ERROR("malformed #include filename\n" .
1445 $herecurr);
Andy Whitcroft653d4872007-06-23 17:16:34 -07001446 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001447 }
Andy Whitcroft00df3442007-06-08 13:47:06 -07001448
1449# no C99 // comments
1450 if ($line =~ m{//}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001451 ERROR("do not use C99 // comments\n" . $herecurr);
Andy Whitcroft00df3442007-06-08 13:47:06 -07001452 }
1453 # Remove C99 comments.
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001454 $line =~ s@//.*@@;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001455 $opline =~ s@//.*@@;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001456
1457#EXPORT_SYMBOL should immediately follow its function closing }.
Andy Whitcroft653d4872007-06-23 17:16:34 -07001458 if (($line =~ /EXPORT_SYMBOL.*\((.*)\)/) ||
1459 ($line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
1460 my $name = $1;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001461 if (($prevline !~ /^}/) &&
1462 ($prevline !~ /^\+}/) &&
Andy Whitcroft653d4872007-06-23 17:16:34 -07001463 ($prevline !~ /^ }/) &&
Andy Whitcroftcf655042008-03-04 14:28:20 -08001464 ($prevline !~ /^.DECLARE_$Ident\(\Q$name\E\)/) &&
1465 ($prevline !~ /^.LIST_HEAD\(\Q$name\E\)/) &&
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001466 ($prevline !~ /^.$Type\s*\(\s*\*\s*\Q$name\E\s*\)\s*\(/) &&
Andy Whitcroftcf655042008-03-04 14:28:20 -08001467 ($prevline !~ /\b\Q$name\E(?:\s+$Attribute)?\s*(?:;|=|\[)/)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001468 WARN("EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001469 }
1470 }
1471
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001472# check for external initialisers.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001473 if ($line =~ /^.$Type\s*$Ident\s*(?:\s+$Modifier)*\s*=\s*(0|NULL|false)\s*;/) {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001474 ERROR("do not initialise externals to 0 or NULL\n" .
1475 $herecurr);
1476 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001477# check for static initialisers.
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07001478 if ($line =~ /\s*static\s.*=\s*(0|NULL|false)\s*;/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001479 ERROR("do not initialise statics to 0 or NULL\n" .
1480 $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001481 }
1482
Andy Whitcroft653d4872007-06-23 17:16:34 -07001483# check for new typedefs, only function parameters and sparse annotations
1484# make sense.
1485 if ($line =~ /\btypedef\s/ &&
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001486 $line !~ /\btypedef\s+$Type\s+\(\s*\*?$Ident\s*\)\s*\(/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001487 $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ &&
Andy Whitcroft653d4872007-06-23 17:16:34 -07001488 $line !~ /\b__bitwise(?:__|)\b/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001489 WARN("do not add new typedefs\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001490 }
1491
1492# * goes on variable not on type
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001493 if ($line =~ m{\($NonptrType(\*+)(?:\s+const)?\)}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001494 ERROR("\"(foo$1)\" should be \"(foo $1)\"\n" .
1495 $herecurr);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001496
1497 } elsif ($line =~ m{\($NonptrType\s+(\*+)(?!\s+const)\s+\)}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001498 ERROR("\"(foo $1 )\" should be \"(foo $1)\"\n" .
1499 $herecurr);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001500
Andy Whitcroft234fff62008-07-23 21:29:12 -07001501 } elsif ($line =~ m{\b$NonptrType(\*+)(?:\s+(?:$Attribute|$Sparse))?\s+[A-Za-z\d_]+}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001502 ERROR("\"foo$1 bar\" should be \"foo $1bar\"\n" .
1503 $herecurr);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001504
Andy Whitcroft234fff62008-07-23 21:29:12 -07001505 } elsif ($line =~ m{\b$NonptrType\s+(\*+)(?!\s+(?:$Attribute|$Sparse))\s+[A-Za-z\d_]+}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001506 ERROR("\"foo $1 bar\" should be \"foo $1bar\"\n" .
1507 $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001508 }
1509
1510# # no BUG() or BUG_ON()
1511# if ($line =~ /\b(BUG|BUG_ON)\b/) {
1512# print "Try to use WARN_ON & Recovery code rather than BUG() or BUG_ON()\n";
1513# print "$herecurr";
1514# $clean = 0;
1515# }
1516
Andy Whitcroft8905a672007-11-28 16:21:06 -08001517 if ($line =~ /\bLINUX_VERSION_CODE\b/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001518 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 -08001519 }
1520
Andy Whitcroft00df3442007-06-08 13:47:06 -07001521# printk should use KERN_* levels. Note that follow on printk's on the
1522# same line do not need a level, so we use the current block context
1523# to try and find and validate the current printk. In summary the current
1524# printk includes all preceeding printk's which have no newline on the end.
1525# we assume the first bad printk is the one to report.
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001526 if ($line =~ /\bprintk\((?!KERN_)\s*"/) {
Andy Whitcroft00df3442007-06-08 13:47:06 -07001527 my $ok = 0;
1528 for (my $ln = $linenr - 1; $ln >= $first_line; $ln--) {
1529 #print "CHECK<$lines[$ln - 1]\n";
1530 # we have a preceeding printk if it ends
1531 # with "\n" ignore it, else it is to blame
1532 if ($lines[$ln - 1] =~ m{\bprintk\(}) {
1533 if ($rawlines[$ln - 1] !~ m{\\n"}) {
1534 $ok = 1;
1535 }
1536 last;
1537 }
1538 }
1539 if ($ok == 0) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001540 WARN("printk() should include KERN_ facility level\n" . $herecurr);
Andy Whitcroft00df3442007-06-08 13:47:06 -07001541 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001542 }
1543
Andy Whitcroft653d4872007-06-23 17:16:34 -07001544# function brace can't be on same line, except for #defines of do while,
1545# or if closed on same line
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001546 if (($line=~/$Type\s*$Ident\(.*\).*\s{/) and
1547 !($line=~/\#\s*define.*do\s{/) and !($line=~/}/)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001548 ERROR("open brace '{' following function declarations go on the next line\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001549 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001550
Andy Whitcroft8905a672007-11-28 16:21:06 -08001551# open braces for enum, union and struct go on the same line.
1552 if ($line =~ /^.\s*{/ &&
1553 $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
1554 ERROR("open brace '{' following $1 go on the same line\n" . $hereprev);
1555 }
1556
Andy Whitcroft8d31cfc2008-07-23 21:29:02 -07001557# check for spacing round square brackets; allowed:
1558# 1. with a type on the left -- int [] a;
Andy Whitcroftfe2a7db2008-10-15 22:02:15 -07001559# 2. at the beginning of a line for slice initialisers -- [0...10] = 5,
1560# 3. inside a curly brace -- = { [0...10] = 5 }
Andy Whitcroft8d31cfc2008-07-23 21:29:02 -07001561 while ($line =~ /(.*?\s)\[/g) {
1562 my ($where, $prefix) = ($-[1], $1);
1563 if ($prefix !~ /$Type\s+$/ &&
Andy Whitcroftfe2a7db2008-10-15 22:02:15 -07001564 ($where != 0 || $prefix !~ /^.\s+$/) &&
1565 $prefix !~ /{\s+$/) {
Andy Whitcroft8d31cfc2008-07-23 21:29:02 -07001566 ERROR("space prohibited before open square bracket '['\n" . $herecurr);
1567 }
1568 }
1569
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001570# check for spaces between functions and their parentheses.
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001571 while ($line =~ /($Ident)\s+\(/g) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001572 my $name = $1;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001573 my $ctx_before = substr($line, 0, $-[1]);
1574 my $ctx = "$ctx_before$name";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001575
1576 # Ignore those directives where spaces _are_ permitted.
Andy Whitcroft773647a2008-03-28 14:15:58 -07001577 if ($name =~ /^(?:
1578 if|for|while|switch|return|case|
1579 volatile|__volatile__|
1580 __attribute__|format|__extension__|
1581 asm|__asm__)$/x)
1582 {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001583
1584 # cpp #define statements have non-optional spaces, ie
1585 # if there is a space between the name and the open
1586 # parenthesis it is simply not a parameter group.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001587 } elsif ($ctx_before =~ /^.\s*\#\s*define\s*$/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001588
1589 # cpp #elif statement condition may start with a (
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001590 } elsif ($ctx =~ /^.\s*\#\s*elif\s*$/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001591
1592 # If this whole things ends with a type its most
1593 # likely a typedef for a function.
Andy Whitcroft773647a2008-03-28 14:15:58 -07001594 } elsif ($ctx =~ /$Type$/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001595
1596 } else {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001597 WARN("space prohibited between function name and open parenthesis '('\n" . $herecurr);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001598 }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001599 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001600# Check operator spacing.
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001601 if (!($line=~/\#\s*include/)) {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001602 my $ops = qr{
1603 <<=|>>=|<=|>=|==|!=|
1604 \+=|-=|\*=|\/=|%=|\^=|\|=|&=|
1605 =>|->|<<|>>|<|>|=|!|~|
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001606 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%|
1607 \?|:
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001608 }x;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001609 my @elements = split(/($ops|;)/, $opline);
Andy Whitcroft00df3442007-06-08 13:47:06 -07001610 my $off = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001611
1612 my $blank = copy_spacing($opline);
1613
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001614 for (my $n = 0; $n < $#elements; $n += 2) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001615 $off += length($elements[$n]);
1616
Andy Whitcroft773647a2008-03-28 14:15:58 -07001617 # Pick up the preceeding and succeeding characters.
1618 my $ca = substr($opline, 0, $off);
1619 my $cc = '';
1620 if (length($opline) >= ($off + length($elements[$n + 1]))) {
1621 $cc = substr($opline, $off + length($elements[$n + 1]));
1622 }
1623 my $cb = "$ca$;$cc";
1624
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001625 my $a = '';
1626 $a = 'V' if ($elements[$n] ne '');
1627 $a = 'W' if ($elements[$n] =~ /\s$/);
Andy Whitcroftcf655042008-03-04 14:28:20 -08001628 $a = 'C' if ($elements[$n] =~ /$;$/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001629 $a = 'B' if ($elements[$n] =~ /(\[|\()$/);
1630 $a = 'O' if ($elements[$n] eq '');
Andy Whitcroft773647a2008-03-28 14:15:58 -07001631 $a = 'E' if ($ca =~ /^\s*$/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001632
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001633 my $op = $elements[$n + 1];
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001634
1635 my $c = '';
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001636 if (defined $elements[$n + 2]) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001637 $c = 'V' if ($elements[$n + 2] ne '');
1638 $c = 'W' if ($elements[$n + 2] =~ /^\s/);
Andy Whitcroftcf655042008-03-04 14:28:20 -08001639 $c = 'C' if ($elements[$n + 2] =~ /^$;/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001640 $c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
1641 $c = 'O' if ($elements[$n + 2] eq '');
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001642 $c = 'E' if ($elements[$n + 2] =~ /\s*\\$/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001643 } else {
1644 $c = 'E';
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001645 }
1646
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001647 my $ctx = "${a}x${c}";
1648
1649 my $at = "(ctx:$ctx)";
1650
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001651 my $ptr = substr($blank, 0, $off) . "^";
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001652 my $hereptr = "$hereline$ptr\n";
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001653
Andy Whitcroft74048ed2008-07-23 21:29:10 -07001654 # Pull out the value of this operator.
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001655 my $op_type = substr($curr_values, $off + 1, 1);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001656
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001657 # Get the full operator variant.
1658 my $opv = $op . substr($curr_vars, $off, 1);
1659
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001660 # Ignore operators passed as parameters.
1661 if ($op_type ne 'V' &&
1662 $ca =~ /\s$/ && $cc =~ /^\s*,/) {
1663
Andy Whitcroftcf655042008-03-04 14:28:20 -08001664# # Ignore comments
1665# } elsif ($op =~ /^$;+$/) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001666
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001667 # ; should have either the end of line or a space or \ after it
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001668 } elsif ($op eq ';') {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001669 if ($ctx !~ /.x[WEBC]/ &&
1670 $cc !~ /^\\/ && $cc !~ /^;/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001671 ERROR("space required after that '$op' $at\n" . $hereptr);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001672 }
1673
1674 # // is a comment
1675 } elsif ($op eq '//') {
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001676
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001677 # No spaces for:
1678 # ->
1679 # : when part of a bitfield
1680 } elsif ($op eq '->' || $opv eq ':B') {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001681 if ($ctx =~ /Wx.|.xW/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001682 ERROR("spaces prohibited around that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001683 }
1684
1685 # , must have a space on the right.
1686 } elsif ($op eq ',') {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001687 if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001688 ERROR("space required after that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001689 }
1690
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001691 # '*' as part of a type definition -- reported already.
Andy Whitcroft74048ed2008-07-23 21:29:10 -07001692 } elsif ($opv eq '*_') {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001693 #warn "'*' is part of type\n";
1694
1695 # unary operators should have a space before and
1696 # none after. May be left adjacent to another
1697 # unary operator, or a cast
1698 } elsif ($op eq '!' || $op eq '~' ||
Andy Whitcroft74048ed2008-07-23 21:29:10 -07001699 $opv eq '*U' || $opv eq '-U' ||
Andy Whitcroft0d413862008-10-15 22:02:16 -07001700 $opv eq '&U' || $opv eq '&&U') {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001701 if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001702 ERROR("space required before that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001703 }
Andy Whitcroft74048ed2008-07-23 21:29:10 -07001704 if ($op eq '*' && $cc =~/\s*const\b/) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001705 # A unary '*' may be const
1706
1707 } elsif ($ctx =~ /.xW/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001708 ERROR("space prohibited after that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001709 }
1710
1711 # unary ++ and unary -- are allowed no space on one side.
1712 } elsif ($op eq '++' or $op eq '--') {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001713 if ($ctx !~ /[WEOBC]x[^W]/ && $ctx !~ /[^W]x[WOBEC]/) {
1714 ERROR("space required one side of that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001715 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001716 if ($ctx =~ /Wx[BE]/ ||
1717 ($ctx =~ /Wx./ && $cc =~ /^;/)) {
1718 ERROR("space prohibited before that '$op' $at\n" . $hereptr);
Andy Whitcroft653d4872007-06-23 17:16:34 -07001719 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001720 if ($ctx =~ /ExW/) {
1721 ERROR("space prohibited after that '$op' $at\n" . $hereptr);
1722 }
1723
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001724
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001725 # << and >> may either have or not have spaces both sides
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001726 } elsif ($op eq '<<' or $op eq '>>' or
1727 $op eq '&' or $op eq '^' or $op eq '|' or
1728 $op eq '+' or $op eq '-' or
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001729 $op eq '*' or $op eq '/' or
1730 $op eq '%')
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001731 {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001732 if ($ctx =~ /Wx[^WCE]|[^WCE]xW/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001733 ERROR("need consistent spacing around '$op' $at\n" .
1734 $hereptr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001735 }
1736
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001737 # A colon needs no spaces before when it is
1738 # terminating a case value or a label.
1739 } elsif ($opv eq ':C' || $opv eq ':L') {
1740 if ($ctx =~ /Wx./) {
1741 ERROR("space prohibited before that '$op' $at\n" . $hereptr);
1742 }
1743
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001744 # All the others need spaces both sides.
Andy Whitcroftcf655042008-03-04 14:28:20 -08001745 } elsif ($ctx !~ /[EWC]x[CWE]/) {
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001746 my $ok = 0;
1747
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001748 # Ignore email addresses <foo@bar>
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001749 if (($op eq '<' &&
1750 $cc =~ /^\S+\@\S+>/) ||
1751 ($op eq '>' &&
1752 $ca =~ /<\S+\@\S+$/))
1753 {
1754 $ok = 1;
1755 }
1756
1757 # Ignore ?:
1758 if (($opv eq ':O' && $ca =~ /\?$/) ||
1759 ($op eq '?' && $cc =~ /^:/)) {
1760 $ok = 1;
1761 }
1762
1763 if ($ok == 0) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001764 ERROR("spaces required around that '$op' $at\n" . $hereptr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001765 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001766 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001767 $off += length($elements[$n + 1]);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001768 }
1769 }
1770
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001771# check for multiple assignments
1772 if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001773 CHK("multiple assignments should be avoided\n" . $herecurr);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001774 }
1775
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001776## # check for multiple declarations, allowing for a function declaration
1777## # continuation.
1778## if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
1779## $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
1780##
1781## # Remove any bracketed sections to ensure we do not
1782## # falsly report the parameters of functions.
1783## my $ln = $line;
1784## while ($ln =~ s/\([^\(\)]*\)//g) {
1785## }
1786## if ($ln =~ /,/) {
1787## WARN("declaring multiple variables together should be avoided\n" . $herecurr);
1788## }
1789## }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001790
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001791#need space before brace following if, while, etc
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001792 if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) ||
1793 $line =~ /do{/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001794 ERROR("space required before the open brace '{'\n" . $herecurr);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001795 }
1796
1797# closing brace should have a space following it when it has anything
1798# on the line
1799 if ($line =~ /}(?!(?:,|;|\)))\S/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001800 ERROR("space required after that close brace '}'\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001801 }
1802
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001803# check spacing on square brackets
1804 if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001805 ERROR("space prohibited after that open square bracket '['\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001806 }
1807 if ($line =~ /\s\]/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001808 ERROR("space prohibited before that close square bracket ']'\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001809 }
1810
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001811# check spacing on parentheses
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001812 if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
1813 $line !~ /for\s*\(\s+;/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001814 ERROR("space prohibited after that open parenthesis '('\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001815 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001816 if ($line =~ /(\s+)\)/ && $line !~ /^.\s*\)/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001817 $line !~ /for\s*\(.*;\s+\)/ &&
1818 $line !~ /:\s+\)/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001819 ERROR("space prohibited before that close parenthesis ')'\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001820 }
1821
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001822#goto labels aren't indented, allow a single space however
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001823 if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001824 !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001825 WARN("labels should not be indented\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001826 }
1827
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001828# Return is not a function.
1829 if (defined($stat) && $stat =~ /^.\s*return(\s*)(\(.*);/s) {
1830 my $spacing = $1;
1831 my $value = $2;
1832
1833 # Flatten any parentheses and braces
Andy Whitcroftfee61c42008-07-23 21:28:56 -07001834 $value =~ s/\)\(/\) \(/g;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001835 while ($value =~ s/\([^\(\)]*\)/1/) {
1836 }
1837
1838 if ($value =~ /^(?:$Ident|-?$Constant)$/) {
1839 ERROR("return is not a function, parentheses are not required\n" . $herecurr);
1840
1841 } elsif ($spacing !~ /\s+/) {
1842 ERROR("space required before the open parenthesis '('\n" . $herecurr);
1843 }
1844 }
1845
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001846# Need a space before open parenthesis after if, while etc
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001847 if ($line=~/\b(if|while|for|switch)\(/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001848 ERROR("space required before the open parenthesis '('\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001849 }
1850
Andy Whitcroftf5fe35d2008-07-23 21:29:03 -07001851# Check for illegal assignment in if conditional -- and check for trailing
1852# statements after the conditional.
Andy Whitcroft53210162008-07-23 21:29:03 -07001853 if ($line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001854 my ($s, $c) = ($stat, $cond);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001855
1856 if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001857 ERROR("do not use assignment in if condition\n" . $herecurr);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001858 }
1859
1860 # Find out what is on the end of the line after the
1861 # conditional.
Andy Whitcroft773647a2008-03-28 14:15:58 -07001862 substr($s, 0, length($c), '');
Andy Whitcroft8905a672007-11-28 16:21:06 -08001863 $s =~ s/\n.*//g;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001864 $s =~ s/$;//g; # Remove any comments
Andy Whitcroft53210162008-07-23 21:29:03 -07001865 if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ &&
1866 $c !~ /}\s*while\s*/)
Andy Whitcroft773647a2008-03-28 14:15:58 -07001867 {
Andy Whitcroft8905a672007-11-28 16:21:06 -08001868 ERROR("trailing statements should be on next line\n" . $herecurr);
1869 }
1870 }
1871
Andy Whitcroftf5fe35d2008-07-23 21:29:03 -07001872# Check relative indent for conditionals and blocks.
1873 if ($line =~ /\b(?:(?:if|while|for)\s*\(|do\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) {
1874 my ($s, $c) = ($stat, $cond);
1875
1876 substr($s, 0, length($c), '');
1877
1878 # Make sure we remove the line prefixes as we have
1879 # none on the first line, and are going to readd them
1880 # where necessary.
1881 $s =~ s/\n./\n/gs;
1882
1883 # We want to check the first line inside the block
1884 # starting at the end of the conditional, so remove:
1885 # 1) any blank line termination
1886 # 2) any opening brace { on end of the line
1887 # 3) any do (...) {
1888 my $continuation = 0;
1889 my $check = 0;
1890 $s =~ s/^.*\bdo\b//;
1891 $s =~ s/^\s*{//;
1892 if ($s =~ s/^\s*\\//) {
1893 $continuation = 1;
1894 }
1895 if ($s =~ s/^\s*\n//) {
1896 $check = 1;
1897 }
1898
1899 # Also ignore a loop construct at the end of a
1900 # preprocessor statement.
1901 if (($prevline =~ /^.\s*#\s*define\s/ ||
1902 $prevline =~ /\\\s*$/) && $continuation == 0) {
1903 $check = 0;
1904 }
1905
1906 # Ignore the current line if its is a preprocessor
1907 # line.
1908 if ($s =~ /^\s*#\s*/) {
1909 $check = 0;
1910 }
1911
Andy Whitcroft14b111c2008-10-15 22:02:16 -07001912 # Ignore the current line if it is label.
1913 if ($s =~ /^\s*$Ident\s*:/) {
1914 $check = 0;
1915 }
1916
Andy Whitcroftf5fe35d2008-07-23 21:29:03 -07001917 my (undef, $sindent) = line_stats("+" . $s);
1918
1919 ##print "line<$line> prevline<$prevline> indent<$indent> sindent<$sindent> check<$check> continuation<$continuation> s<$s>\n";
1920
1921 if ($check && (($sindent % 8) != 0 ||
1922 ($sindent <= $indent && $s ne ''))) {
1923 WARN("suspect code indent for conditional statements\n" . $herecurr);
1924 }
1925 }
1926
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001927# Check for bitwise tests written as boolean
1928 if ($line =~ /
1929 (?:
1930 (?:\[|\(|\&\&|\|\|)
1931 \s*0[xX][0-9]+\s*
1932 (?:\&\&|\|\|)
1933 |
1934 (?:\&\&|\|\|)
1935 \s*0[xX][0-9]+\s*
1936 (?:\&\&|\|\||\)|\])
1937 )/x)
1938 {
1939 WARN("boolean test with hexadecimal, perhaps just 1 \& or \|?\n" . $herecurr);
1940 }
1941
Andy Whitcroft8905a672007-11-28 16:21:06 -08001942# if and else should not have general statements after it
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001943 if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/) {
1944 my $s = $1;
1945 $s =~ s/$;//g; # Remove any comments
1946 if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) {
1947 ERROR("trailing statements should be on next line\n" . $herecurr);
1948 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001949 }
1950
1951 # Check for }<nl>else {, these must be at the same
1952 # indent level to be relevant to each other.
1953 if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ and
1954 $previndent == $indent) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001955 ERROR("else should follow close brace '}'\n" . $hereprev);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001956 }
1957
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001958 if ($prevline=~/}\s*$/ and $line=~/^.\s*while\s*/ and
1959 $previndent == $indent) {
1960 my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0);
1961
1962 # Find out what is on the end of the line after the
1963 # conditional.
Andy Whitcroft773647a2008-03-28 14:15:58 -07001964 substr($s, 0, length($c), '');
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001965 $s =~ s/\n.*//g;
1966
1967 if ($s =~ /^\s*;/) {
1968 ERROR("while should follow close brace '}'\n" . $hereprev);
1969 }
1970 }
1971
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001972#studly caps, commented out until figure out how to distinguish between use of existing and adding new
1973# if (($line=~/[\w_][a-z\d]+[A-Z]/) and !($line=~/print/)) {
1974# print "No studly caps, use _\n";
1975# print "$herecurr";
1976# $clean = 0;
1977# }
1978
1979#no spaces allowed after \ in define
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001980 if ($line=~/\#\s*define.*\\\s$/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001981 WARN("Whitepspace after \\ makes next lines useless\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001982 }
1983
Andy Whitcroft653d4872007-06-23 17:16:34 -07001984#warn if <asm/foo.h> is #included and <linux/foo.h> is available (uses RAW line)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001985 if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) {
Andy Whitcrofte09dec42008-10-15 22:02:20 -07001986 my $file = "$1.h";
1987 my $checkfile = "include/linux/$file";
1988 if (-f "$root/$checkfile" &&
1989 $realfile ne $checkfile &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001990 $1 ne 'irq')
1991 {
Andy Whitcrofte09dec42008-10-15 22:02:20 -07001992 if ($realfile =~ m{^arch/}) {
1993 CHK("Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
1994 } else {
1995 WARN("Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
1996 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001997 }
1998 }
1999
Andy Whitcroft653d4872007-06-23 17:16:34 -07002000# multi-statement macros should be enclosed in a do while loop, grab the
2001# first statement and ensure its the whole macro if its not enclosed
Andy Whitcroftcf655042008-03-04 14:28:20 -08002002# in a known good container
Andy Whitcroftb8f96a32008-07-23 21:29:07 -07002003 if ($realfile !~ m@/vmlinux.lds.h$@ &&
2004 $line =~ /^.\s*\#\s*define\s*$Ident(\()?/) {
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002005 my $ln = $linenr;
2006 my $cnt = $realcnt;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002007 my ($off, $dstat, $dcond, $rest);
2008 my $ctx = '';
Andy Whitcroft653d4872007-06-23 17:16:34 -07002009
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002010 my $args = defined($1);
2011
2012 # Find the end of the macro and limit our statement
2013 # search to that.
2014 while ($cnt > 0 && defined $lines[$ln - 1] &&
2015 $lines[$ln - 1] =~ /^(?:-|..*\\$)/)
2016 {
2017 $ctx .= $rawlines[$ln - 1] . "\n";
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -07002018 $cnt-- if ($lines[$ln - 1] !~ /^-/);
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002019 $ln++;
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002020 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002021 $ctx .= $rawlines[$ln - 1];
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002022
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002023 ($dstat, $dcond, $ln, $cnt, $off) =
2024 ctx_statement_block($linenr, $ln - $linenr + 1, 0);
2025 #print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n";
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -07002026 #print "LINE<$lines[$ln-1]> len<" . length($lines[$ln-1]) . "\n";
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002027
2028 # Extract the remainder of the define (if any) and
2029 # rip off surrounding spaces, and trailing \'s.
2030 $rest = '';
Andy Whitcroft636d1402008-10-15 22:02:18 -07002031 while ($off != 0 || ($cnt > 0 && $rest =~ /\\\s*$/)) {
2032 #print "ADDING cnt<$cnt> $off <" . substr($lines[$ln - 1], $off) . "> rest<$rest>\n";
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -07002033 if ($off != 0 || $lines[$ln - 1] !~ /^-/) {
2034 $rest .= substr($lines[$ln - 1], $off) . "\n";
2035 $cnt--;
2036 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002037 $ln++;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002038 $off = 0;
2039 }
2040 $rest =~ s/\\\n.//g;
2041 $rest =~ s/^\s*//s;
2042 $rest =~ s/\s*$//s;
2043
2044 # Clean up the original statement.
2045 if ($args) {
2046 substr($dstat, 0, length($dcond), '');
2047 } else {
2048 $dstat =~ s/^.\s*\#\s*define\s+$Ident\s*//;
2049 }
Andy Whitcroft292f1a92008-07-23 21:29:11 -07002050 $dstat =~ s/$;//g;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002051 $dstat =~ s/\\\n.//g;
2052 $dstat =~ s/^\s*//s;
2053 $dstat =~ s/\s*$//s;
2054
2055 # Flatten any parentheses and braces
2056 while ($dstat =~ s/\([^\(\)]*\)/1/) {
2057 }
2058 while ($dstat =~ s/\{[^\{\}]*\}/1/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002059 }
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002060
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002061 my $exceptions = qr{
2062 $Declare|
2063 module_param_named|
2064 MODULE_PARAM_DESC|
2065 DECLARE_PER_CPU|
2066 DEFINE_PER_CPU|
2067 __typeof__\(
2068 }x;
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -07002069 #print "REST<$rest>\n";
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002070 if ($rest ne '') {
2071 if ($rest !~ /while\s*\(/ &&
2072 $dstat !~ /$exceptions/)
2073 {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002074 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 -07002075 }
2076
2077 } elsif ($ctx !~ /;/) {
2078 if ($dstat ne '' &&
2079 $dstat !~ /^(?:$Ident|-?$Constant)$/ &&
2080 $dstat !~ /$exceptions/ &&
2081 $dstat =~ /$Operators/)
2082 {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002083 ERROR("Macros with complex values should be enclosed in parenthesis\n" . "$here\n$ctx\n");
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002084 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07002085 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002086 }
2087
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002088# check for redundant bracing round if etc
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002089 if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) {
2090 my ($level, $endln, @chunks) =
Andy Whitcroftcf655042008-03-04 14:28:20 -08002091 ctx_statement_full($linenr, $realcnt, 1);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002092 #print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08002093 #print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n";
2094 if ($#chunks > 0 && $level == 0) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002095 my $allowed = 0;
2096 my $seen = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07002097 my $herectx = $here . "\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08002098 my $ln = $linenr - 1;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002099 for my $chunk (@chunks) {
2100 my ($cond, $block) = @{$chunk};
2101
Andy Whitcroft773647a2008-03-28 14:15:58 -07002102 # If the condition carries leading newlines, then count those as offsets.
2103 my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s);
2104 my $offset = statement_rawlines($whitespace) - 1;
2105
2106 #print "COND<$cond> whitespace<$whitespace> offset<$offset>\n";
2107
2108 # We have looked at and allowed this specific line.
2109 $suppress_ifbraces{$ln + $offset} = 1;
2110
2111 $herectx .= "$rawlines[$ln + $offset]\n[...]\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08002112 $ln += statement_rawlines($block) - 1;
2113
Andy Whitcroft773647a2008-03-28 14:15:58 -07002114 substr($block, 0, length($cond), '');
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002115
2116 $seen++ if ($block =~ /^\s*{/);
2117
Andy Whitcroftcf655042008-03-04 14:28:20 -08002118 #print "cond<$cond> block<$block> allowed<$allowed>\n";
2119 if (statement_lines($cond) > 1) {
2120 #print "APW: ALLOWED: cond<$cond>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002121 $allowed = 1;
2122 }
2123 if ($block =~/\b(?:if|for|while)\b/) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08002124 #print "APW: ALLOWED: block<$block>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002125 $allowed = 1;
2126 }
Andy Whitcroftcf655042008-03-04 14:28:20 -08002127 if (statement_block_size($block) > 1) {
2128 #print "APW: ALLOWED: lines block<$block>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002129 $allowed = 1;
2130 }
2131 }
2132 if ($seen && !$allowed) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08002133 WARN("braces {} are not necessary for any arm of this statement\n" . $herectx);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002134 }
2135 }
2136 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002137 if (!defined $suppress_ifbraces{$linenr - 1} &&
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002138 $line =~ /\b(if|while|for|else)\b/) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08002139 my $allowed = 0;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002140
Andy Whitcroftcf655042008-03-04 14:28:20 -08002141 # Check the pre-context.
2142 if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) {
2143 #print "APW: ALLOWED: pre<$1>\n";
2144 $allowed = 1;
2145 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002146
2147 my ($level, $endln, @chunks) =
2148 ctx_statement_full($linenr, $realcnt, $-[0]);
2149
Andy Whitcroftcf655042008-03-04 14:28:20 -08002150 # Check the condition.
2151 my ($cond, $block) = @{$chunks[0]};
Andy Whitcroft773647a2008-03-28 14:15:58 -07002152 #print "CHECKING<$linenr> cond<$cond> block<$block>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08002153 if (defined $cond) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002154 substr($block, 0, length($cond), '');
Andy Whitcroftcf655042008-03-04 14:28:20 -08002155 }
2156 if (statement_lines($cond) > 1) {
2157 #print "APW: ALLOWED: cond<$cond>\n";
2158 $allowed = 1;
2159 }
2160 if ($block =~/\b(?:if|for|while)\b/) {
2161 #print "APW: ALLOWED: block<$block>\n";
2162 $allowed = 1;
2163 }
2164 if (statement_block_size($block) > 1) {
2165 #print "APW: ALLOWED: lines block<$block>\n";
2166 $allowed = 1;
2167 }
2168 # Check the post-context.
2169 if (defined $chunks[1]) {
2170 my ($cond, $block) = @{$chunks[1]};
2171 if (defined $cond) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002172 substr($block, 0, length($cond), '');
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002173 }
Andy Whitcroftcf655042008-03-04 14:28:20 -08002174 if ($block =~ /^\s*\{/) {
2175 #print "APW: ALLOWED: chunk-1 block<$block>\n";
2176 $allowed = 1;
2177 }
2178 }
2179 if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
2180 my $herectx = $here . "\n";;
2181 my $end = $linenr + statement_rawlines($block) - 1;
2182
2183 for (my $ln = $linenr - 1; $ln < $end; $ln++) {
2184 $herectx .= $rawlines[$ln] . "\n";;
2185 }
2186
2187 WARN("braces {} are not necessary for single statement blocks\n" . $herectx);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002188 }
2189 }
2190
Andy Whitcroft653d4872007-06-23 17:16:34 -07002191# don't include deprecated include files (uses RAW line)
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002192 for my $inc (@dep_includes) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002193 if ($rawline =~ m@^.\s*\#\s*include\s*\<$inc>@) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002194 ERROR("Don't use <$inc>: see Documentation/feature-removal-schedule.txt\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002195 }
2196 }
2197
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002198# don't use deprecated functions
2199 for my $func (@dep_functions) {
Andy Whitcroft00df3442007-06-08 13:47:06 -07002200 if ($line =~ /\b$func\b/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002201 ERROR("Don't use $func(): see Documentation/feature-removal-schedule.txt\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002202 }
2203 }
2204
2205# no volatiles please
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002206 my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
2207 if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002208 WARN("Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002209 }
2210
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002211# SPIN_LOCK_UNLOCKED & RW_LOCK_UNLOCKED are deprecated
2212 if ($line =~ /\b(SPIN_LOCK_UNLOCKED|RW_LOCK_UNLOCKED)/) {
2213 ERROR("Use of $1 is deprecated: see Documentation/spinlocks.txt\n" . $herecurr);
2214 }
2215
Andy Whitcroft00df3442007-06-08 13:47:06 -07002216# warn about #if 0
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002217 if ($line =~ /^.\s*\#\s*if\s+0\b/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002218 CHK("if this code is redundant consider removing it\n" .
2219 $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002220 }
2221
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002222# check for needless kfree() checks
2223 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
2224 my $expr = $1;
2225 if ($line =~ /\bkfree\(\Q$expr\E\);/) {
Wolfram Sang3c232142008-07-23 21:29:05 -07002226 WARN("kfree(NULL) is safe this check is probably not required\n" . $hereprev);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002227 }
2228 }
Greg Kroah-Hartman4c432a82008-07-23 21:29:04 -07002229# check for needless usb_free_urb() checks
2230 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
2231 my $expr = $1;
2232 if ($line =~ /\busb_free_urb\(\Q$expr\E\);/) {
2233 WARN("usb_free_urb(NULL) is safe this check is probably not required\n" . $hereprev);
2234 }
2235 }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002236
Andy Whitcroft00df3442007-06-08 13:47:06 -07002237# warn about #ifdefs in C files
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002238# if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
Andy Whitcroft00df3442007-06-08 13:47:06 -07002239# print "#ifdef in C files should be avoided\n";
2240# print "$herecurr";
2241# $clean = 0;
2242# }
2243
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002244# warn about spacing in #ifdefs
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002245 if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) {
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002246 ERROR("exactly one space required after that #$1\n" . $herecurr);
2247 }
2248
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002249# check for spinlock_t definitions without a comment.
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002250 if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ ||
2251 $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002252 my $which = $1;
2253 if (!ctx_has_comment($first_line, $linenr)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002254 CHK("$1 definition without comment\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002255 }
2256 }
2257# check for memory barriers without a comment.
2258 if ($line =~ /\b(mb|rmb|wmb|read_barrier_depends|smp_mb|smp_rmb|smp_wmb|smp_read_barrier_depends)\(/) {
2259 if (!ctx_has_comment($first_line, $linenr)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002260 CHK("memory barrier without comment\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002261 }
2262 }
2263# check of hardware specific defines
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002264 if ($line =~ m@^.\s*\#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002265 CHK("architecture specific defines should be avoided\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002266 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07002267
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002268# check the location of the inline attribute, that it is between
2269# storage class and type.
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002270 if ($line =~ /\b$Type\s+$Inline\b/ ||
2271 $line =~ /\b$Inline\s+$Storage\b/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002272 ERROR("inline keyword should sit between storage class and type\n" . $herecurr);
2273 }
2274
Andy Whitcroft8905a672007-11-28 16:21:06 -08002275# Check for __inline__ and __inline, prefer inline
2276 if ($line =~ /\b(__inline__|__inline)\b/) {
2277 WARN("plain inline is preferred over $1\n" . $herecurr);
2278 }
2279
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002280# check for new externs in .c files.
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002281 if ($realfile =~ /\.c$/ && defined $stat &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002282 $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s)
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002283 {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002284 my $function_name = $1;
2285 my $paren_space = $2;
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002286
2287 my $s = $stat;
2288 if (defined $cond) {
2289 substr($s, 0, length($cond), '');
2290 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002291 if ($s =~ /^\s*;/ &&
2292 $function_name ne 'uninitialized_var')
2293 {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002294 WARN("externs should be avoided in .c files\n" . $herecurr);
2295 }
2296
2297 if ($paren_space =~ /\n/) {
2298 WARN("arguments for function declarations should follow identifier\n" . $herecurr);
2299 }
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07002300
2301 } elsif ($realfile =~ /\.c$/ && defined $stat &&
2302 $stat =~ /^.\s*extern\s+/)
2303 {
2304 WARN("externs should be avoided in .c files\n" . $herecurr);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002305 }
2306
2307# checks for new __setup's
2308 if ($rawline =~ /\b__setup\("([^"]*)"/) {
2309 my $name = $1;
2310
2311 if (!grep(/$name/, @setup_docs)) {
2312 CHK("__setup appears un-documented -- check Documentation/kernel-parameters.txt\n" . $herecurr);
2313 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07002314 }
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002315
2316# check for pointless casting of kmalloc return
2317 if ($line =~ /\*\s*\)\s*k[czm]alloc\b/) {
2318 WARN("unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
2319 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002320
2321# check for gcc specific __FUNCTION__
2322 if ($line =~ /__FUNCTION__/) {
2323 WARN("__func__ should be used instead of gcc specific __FUNCTION__\n" . $herecurr);
2324 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002325
2326# check for semaphores used as mutexes
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002327 if ($line =~ /^.\s*(DECLARE_MUTEX|init_MUTEX)\s*\(/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002328 WARN("mutexes are preferred for single holder semaphores\n" . $herecurr);
2329 }
2330# check for semaphores used as mutexes
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002331 if ($line =~ /^.\s*init_MUTEX_LOCKED\s*\(/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002332 WARN("consider using a completion\n" . $herecurr);
2333 }
2334# recommend strict_strto* over simple_strto*
2335 if ($line =~ /\bsimple_(strto.*?)\s*\(/) {
2336 WARN("consider using strict_$1 in preference to simple_$1\n" . $herecurr);
2337 }
Michael Ellermanf3db6632008-07-23 21:28:57 -07002338# check for __initcall(), use device_initcall() explicitly please
2339 if ($line =~ /^.\s*__initcall\s*\(/) {
2340 WARN("please use device_initcall() instead of __initcall()\n" . $herecurr);
2341 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002342
2343# use of NR_CPUS is usually wrong
2344# ignore definitions of NR_CPUS and usage to define arrays as likely right
2345 if ($line =~ /\bNR_CPUS\b/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002346 $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ &&
2347 $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ &&
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002348 $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ &&
2349 $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ &&
2350 $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/)
Andy Whitcroft773647a2008-03-28 14:15:58 -07002351 {
2352 WARN("usage of NR_CPUS is often wrong - consider using cpu_possible(), num_possible_cpus(), for_each_possible_cpu(), etc\n" . $herecurr);
2353 }
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07002354
2355# check for %L{u,d,i} in strings
2356 my $string;
2357 while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) {
2358 $string = substr($rawline, $-[1], $+[1] - $-[1]);
2359 if ($string =~ /(?<!%)%L[udi]/) {
2360 WARN("\%Ld/%Lu are not-standard C, use %lld/%llu\n" . $herecurr);
2361 last;
2362 }
2363 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002364 }
2365
2366 # If we have no input at all, then there is nothing to report on
2367 # so just keep quiet.
2368 if ($#rawlines == -1) {
2369 exit(0);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002370 }
2371
Andy Whitcroft8905a672007-11-28 16:21:06 -08002372 # In mailback mode only produce a report in the negative, for
2373 # things that appear to be patches.
2374 if ($mailback && ($clean == 1 || !$is_patch)) {
2375 exit(0);
2376 }
2377
2378 # This is not a patch, and we are are in 'no-patch' mode so
2379 # just keep quiet.
2380 if (!$chk_patch && !$is_patch) {
2381 exit(0);
2382 }
2383
2384 if (!$is_patch) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002385 ERROR("Does not appear to be a unified-diff format patch\n");
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002386 }
2387 if ($is_patch && $chk_signoff && $signoff == 0) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002388 ERROR("Missing Signed-off-by: line(s)\n");
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002389 }
2390
Andy Whitcroft8905a672007-11-28 16:21:06 -08002391 print report_dump();
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002392 if ($summary && !($clean == 1 && $quiet == 1)) {
2393 print "$filename " if ($summary_file);
Andy Whitcroft8905a672007-11-28 16:21:06 -08002394 print "total: $cnt_error errors, $cnt_warn warnings, " .
2395 (($check)? "$cnt_chk checks, " : "") .
2396 "$cnt_lines lines checked\n";
2397 print "\n" if ($quiet == 0);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002398 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08002399
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002400 if ($clean == 1 && $quiet == 0) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002401 print "$vname has no obvious style problems and is ready for submission.\n"
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002402 }
2403 if ($clean == 0 && $quiet == 0) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002404 print "$vname has style problems, please review. If any of these errors\n";
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002405 print "are false positives report them to the maintainer, see\n";
2406 print "CHECKPATCH in MAINTAINERS.\n";
2407 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002408
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002409 return $clean;
2410}