blob: 309050f30874cf2361e06bb5386e45eb168e124c [file] [log] [blame]
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001#!/usr/bin/perl -w
Dave Jonesdbf004d2010-01-12 16:59:52 -05002# (c) 2001, Dave Jones. (the file handling bit)
Andy Whitcroft00df344f2007-06-08 13:47:06 -07003# (c) 2005, Joel Schopp <jschopp@austin.ibm.com> (the ugly bit)
Andy Whitcroft2a5a2c22009-01-06 14:41:23 -08004# (c) 2007,2008, Andy Whitcroft <apw@uk.ibm.com> (new conditions, test suite)
Andy Whitcroft131edb32009-10-26 16:50:14 -07005# (c) 2008,2009, Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07006# Licensed under the terms of the GNU GPL License version 2
7
8use strict;
9
10my $P = $0;
Andy Whitcroft00df344f2007-06-08 13:47:06 -070011$P =~ s@.*/@@g;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070012
Andy Whitcroft5e8d8f62009-10-26 16:50:17 -070013my $V = '0.30';
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070014
15use Getopt::Long qw(:config no_auto_abbrev);
16
17my $quiet = 0;
18my $tree = 1;
19my $chk_signoff = 1;
20my $chk_patch = 1;
Andy Whitcroft773647a2008-03-28 14:15:58 -070021my $tst_only;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070022my $emacs = 0;
Andy Whitcroft8905a672007-11-28 16:21:06 -080023my $terse = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070024my $file = 0;
25my $check = 0;
Andy Whitcroft8905a672007-11-28 16:21:06 -080026my $summary = 1;
27my $mailback = 0;
Andy Whitcroft13214ad2008-02-08 04:22:03 -080028my $summary_file = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070029my $root;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -080030my %debug;
Hannes Eder77f5b102009-09-21 17:04:37 -070031my $help = 0;
32
33sub help {
34 my ($exitcode) = @_;
35
36 print << "EOM";
37Usage: $P [OPTION]... [FILE]...
38Version: $V
39
40Options:
41 -q, --quiet quiet
42 --no-tree run without a kernel tree
43 --no-signoff do not check for 'Signed-off-by' line
44 --patch treat FILE as patchfile (default)
45 --emacs emacs compile window format
46 --terse one line per report
47 -f, --file treat FILE as regular source file
48 --subjective, --strict enable more subjective tests
49 --root=PATH PATH to the kernel tree root
50 --no-summary suppress the per-file summary
51 --mailback only produce a report in case of warnings/errors
52 --summary-file include the filename in summary
53 --debug KEY=[0|1] turn on/off debugging of KEY, where KEY is one of
54 'values', 'possible', 'type', and 'attr' (default
55 is all off)
56 --test-only=WORD report only warnings/errors containing WORD
57 literally
58 -h, --help, --version display this help and exit
59
60When FILE is - read standard input.
61EOM
62
63 exit($exitcode);
64}
65
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070066GetOptions(
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070067 'q|quiet+' => \$quiet,
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070068 'tree!' => \$tree,
69 'signoff!' => \$chk_signoff,
70 'patch!' => \$chk_patch,
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070071 'emacs!' => \$emacs,
Andy Whitcroft8905a672007-11-28 16:21:06 -080072 'terse!' => \$terse,
Hannes Eder77f5b102009-09-21 17:04:37 -070073 'f|file!' => \$file,
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070074 'subjective!' => \$check,
75 'strict!' => \$check,
76 'root=s' => \$root,
Andy Whitcroft8905a672007-11-28 16:21:06 -080077 'summary!' => \$summary,
78 'mailback!' => \$mailback,
Andy Whitcroft13214ad2008-02-08 04:22:03 -080079 'summary-file!' => \$summary_file,
80
Andy Whitcroftc2fdda02008-02-08 04:20:54 -080081 'debug=s' => \%debug,
Andy Whitcroft773647a2008-03-28 14:15:58 -070082 'test-only=s' => \$tst_only,
Hannes Eder77f5b102009-09-21 17:04:37 -070083 'h|help' => \$help,
84 'version' => \$help
85) or help(1);
86
87help(0) if ($help);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070088
89my $exit = 0;
90
91if ($#ARGV < 0) {
Hannes Eder77f5b102009-09-21 17:04:37 -070092 print "$P: no input files\n";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070093 exit(1);
94}
95
Andy Whitcroftc2fdda02008-02-08 04:20:54 -080096my $dbg_values = 0;
97my $dbg_possible = 0;
Andy Whitcroft7429c692008-07-23 21:29:06 -070098my $dbg_type = 0;
Andy Whitcrofta1ef2772008-10-15 22:02:17 -070099my $dbg_attr = 0;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800100for my $key (keys %debug) {
Andy Whitcroft21caa132009-01-06 14:41:30 -0800101 ## no critic
102 eval "\${dbg_$key} = '$debug{$key}';";
103 die "$@" if ($@);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800104}
105
Andy Whitcroft8905a672007-11-28 16:21:06 -0800106if ($terse) {
107 $emacs = 1;
108 $quiet++;
109}
110
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700111if ($tree) {
112 if (defined $root) {
113 if (!top_of_kernel_tree($root)) {
114 die "$P: $root: --root does not point at a valid tree\n";
115 }
116 } else {
117 if (top_of_kernel_tree('.')) {
118 $root = '.';
119 } elsif ($0 =~ m@(.*)/scripts/[^/]*$@ &&
120 top_of_kernel_tree($1)) {
121 $root = $1;
122 }
123 }
124
125 if (!defined $root) {
126 print "Must be run from the top-level dir. of a kernel tree\n";
127 exit(2);
128 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700129}
130
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700131my $emitted_corrupt = 0;
132
Andy Whitcroft2ceb5322009-10-26 16:50:14 -0700133our $Ident = qr{
134 [A-Za-z_][A-Za-z\d_]*
135 (?:\s*\#\#\s*[A-Za-z_][A-Za-z\d_]*)*
136 }x;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700137our $Storage = qr{extern|static|asmlinkage};
138our $Sparse = qr{
139 __user|
140 __kernel|
141 __force|
142 __iomem|
143 __must_check|
144 __init_refok|
Andy Whitcroft417495e2009-02-27 14:03:08 -0800145 __kprobes|
146 __ref
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700147 }x;
148our $Attribute = qr{
149 const|
150 __read_mostly|
151 __kprobes|
Andy Whitcroft24e1d812008-10-15 22:02:18 -0700152 __(?:mem|cpu|dev|)(?:initdata|init)|
153 ____cacheline_aligned|
154 ____cacheline_aligned_in_smp|
Andy Whitcroft5fe3af12009-01-06 14:41:18 -0800155 ____cacheline_internodealigned_in_smp|
156 __weak
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700157 }x;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700158our $Modifier;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700159our $Inline = qr{inline|__always_inline|noinline};
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700160our $Member = qr{->$Ident|\.$Ident|\[[^]]*\]};
161our $Lval = qr{$Ident(?:$Member)*};
162
163our $Constant = qr{(?:[0-9]+|0x[0-9a-fA-F]+)[UL]*};
164our $Assignment = qr{(?:\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=)};
Andy Whitcroft86f9d052009-01-06 14:41:24 -0800165our $Compare = qr{<=|>=|==|!=|<|>};
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700166our $Operators = qr{
167 <=|>=|==|!=|
168 =>|->|<<|>>|<|>|!|~|
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800169 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700170 }x;
171
Andy Whitcroft8905a672007-11-28 16:21:06 -0800172our $NonptrType;
173our $Type;
174our $Declare;
175
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700176our $UTF8 = qr {
177 [\x09\x0A\x0D\x20-\x7E] # ASCII
178 | [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
179 | \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
180 | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
181 | \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
182 | \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
183 | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
184 | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
185}x;
186
Andy Whitcroft8ed22ca2008-10-15 22:02:32 -0700187our $typeTypedefs = qr{(?x:
Andy Whitcroftfb9e9092009-09-21 17:04:38 -0700188 (?:__)?(?:u|s|be|le)(?:8|16|32|64)|
Andy Whitcroft8ed22ca2008-10-15 22:02:32 -0700189 atomic_t
190)};
191
Andy Whitcroft8905a672007-11-28 16:21:06 -0800192our @typeList = (
193 qr{void},
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700194 qr{(?:unsigned\s+)?char},
195 qr{(?:unsigned\s+)?short},
196 qr{(?:unsigned\s+)?int},
197 qr{(?:unsigned\s+)?long},
198 qr{(?:unsigned\s+)?long\s+int},
199 qr{(?:unsigned\s+)?long\s+long},
200 qr{(?:unsigned\s+)?long\s+long\s+int},
Andy Whitcroft8905a672007-11-28 16:21:06 -0800201 qr{unsigned},
202 qr{float},
203 qr{double},
204 qr{bool},
Andy Whitcroft8905a672007-11-28 16:21:06 -0800205 qr{struct\s+$Ident},
206 qr{union\s+$Ident},
207 qr{enum\s+$Ident},
208 qr{${Ident}_t},
209 qr{${Ident}_handler},
210 qr{${Ident}_handler_fn},
211);
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700212our @modifierList = (
213 qr{fastcall},
214);
Andy Whitcroft8905a672007-11-28 16:21:06 -0800215
216sub build_types {
Andy Whitcroftd2172eb2008-07-23 21:29:07 -0700217 my $mods = "(?x: \n" . join("|\n ", @modifierList) . "\n)";
218 my $all = "(?x: \n" . join("|\n ", @typeList) . "\n)";
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700219 $Modifier = qr{(?:$Attribute|$Sparse|$mods)};
Andy Whitcroft8905a672007-11-28 16:21:06 -0800220 $NonptrType = qr{
Andy Whitcroftd2172eb2008-07-23 21:29:07 -0700221 (?:$Modifier\s+|const\s+)*
Andy Whitcroftcf655042008-03-04 14:28:20 -0800222 (?:
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700223 (?:typeof|__typeof__)\s*\(\s*\**\s*$Ident\s*\)|
Andy Whitcroft8ed22ca2008-10-15 22:02:32 -0700224 (?:$typeTypedefs\b)|
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700225 (?:${all}\b)
Andy Whitcroftcf655042008-03-04 14:28:20 -0800226 )
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700227 (?:\s+$Modifier|\s+const)*
Andy Whitcroft8905a672007-11-28 16:21:06 -0800228 }x;
229 $Type = qr{
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700230 $NonptrType
Andy Whitcroft65863862009-01-06 14:41:21 -0800231 (?:[\s\*]+\s*const|[\s\*]+|(?:\s*\[\s*\])+)?
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700232 (?:\s+$Inline|\s+$Modifier)*
Andy Whitcroft8905a672007-11-28 16:21:06 -0800233 }x;
234 $Declare = qr{(?:$Storage\s+)?$Type};
235}
236build_types();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700237
238$chk_signoff = 0 if ($file);
239
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700240my @dep_includes = ();
241my @dep_functions = ();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700242my $removal = "Documentation/feature-removal-schedule.txt";
243if ($tree && -f "$root/$removal") {
Andy Whitcroft21caa132009-01-06 14:41:30 -0800244 open(my $REMOVE, '<', "$root/$removal") ||
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700245 die "$P: $removal: open failed - $!\n";
Andy Whitcroft21caa132009-01-06 14:41:30 -0800246 while (<$REMOVE>) {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700247 if (/^Check:\s+(.*\S)/) {
248 for my $entry (split(/[, ]+/, $1)) {
249 if ($entry =~ m@include/(.*)@) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700250 push(@dep_includes, $1);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700251
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700252 } elsif ($entry !~ m@/@) {
253 push(@dep_functions, $entry);
254 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700255 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700256 }
257 }
Andy Whitcroft21caa132009-01-06 14:41:30 -0800258 close($REMOVE);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700259}
260
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700261my @rawlines = ();
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800262my @lines = ();
263my $vname;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700264for my $filename (@ARGV) {
Andy Whitcroft21caa132009-01-06 14:41:30 -0800265 my $FILE;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700266 if ($file) {
Andy Whitcroft21caa132009-01-06 14:41:30 -0800267 open($FILE, '-|', "diff -u /dev/null $filename") ||
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700268 die "$P: $filename: diff failed - $!\n";
Andy Whitcroft21caa132009-01-06 14:41:30 -0800269 } elsif ($filename eq '-') {
270 open($FILE, '<&STDIN');
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700271 } else {
Andy Whitcroft21caa132009-01-06 14:41:30 -0800272 open($FILE, '<', "$filename") ||
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700273 die "$P: $filename: open failed - $!\n";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700274 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800275 if ($filename eq '-') {
276 $vname = 'Your patch';
277 } else {
278 $vname = $filename;
279 }
Andy Whitcroft21caa132009-01-06 14:41:30 -0800280 while (<$FILE>) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700281 chomp;
282 push(@rawlines, $_);
283 }
Andy Whitcroft21caa132009-01-06 14:41:30 -0800284 close($FILE);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800285 if (!process($filename)) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700286 $exit = 1;
287 }
288 @rawlines = ();
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800289 @lines = ();
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700290}
291
292exit($exit);
293
294sub top_of_kernel_tree {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700295 my ($root) = @_;
296
297 my @tree_check = (
298 "COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
299 "README", "Documentation", "arch", "include", "drivers",
300 "fs", "init", "ipc", "kernel", "lib", "scripts",
301 );
302
303 foreach my $check (@tree_check) {
304 if (! -e $root . '/' . $check) {
305 return 0;
306 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700307 }
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700308 return 1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700309}
310
311sub expand_tabs {
312 my ($str) = @_;
313
314 my $res = '';
315 my $n = 0;
316 for my $c (split(//, $str)) {
317 if ($c eq "\t") {
318 $res .= ' ';
319 $n++;
320 for (; ($n % 8) != 0; $n++) {
321 $res .= ' ';
322 }
323 next;
324 }
325 $res .= $c;
326 $n++;
327 }
328
329 return $res;
330}
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700331sub copy_spacing {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700332 (my $res = shift) =~ tr/\t/ /c;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700333 return $res;
334}
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700335
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700336sub line_stats {
337 my ($line) = @_;
338
339 # Drop the diff line leader and expand tabs
340 $line =~ s/^.//;
341 $line = expand_tabs($line);
342
343 # Pick the indent from the front of the line.
344 my ($white) = ($line =~ /^(\s*)/);
345
346 return (length($line), length($white));
347}
348
Andy Whitcroft773647a2008-03-28 14:15:58 -0700349my $sanitise_quote = '';
350
351sub sanitise_line_reset {
352 my ($in_comment) = @_;
353
354 if ($in_comment) {
355 $sanitise_quote = '*/';
356 } else {
357 $sanitise_quote = '';
358 }
359}
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700360sub sanitise_line {
361 my ($line) = @_;
362
363 my $res = '';
364 my $l = '';
365
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800366 my $qlen = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -0700367 my $off = 0;
368 my $c;
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700369
Andy Whitcroft773647a2008-03-28 14:15:58 -0700370 # Always copy over the diff marker.
371 $res = substr($line, 0, 1);
372
373 for ($off = 1; $off < length($line); $off++) {
374 $c = substr($line, $off, 1);
375
376 # Comments we are wacking completly including the begin
377 # and end, all to $;.
378 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
379 $sanitise_quote = '*/';
380
381 substr($res, $off, 2, "$;$;");
382 $off++;
383 next;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800384 }
Andy Whitcroft81bc0e02008-10-15 22:02:26 -0700385 if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700386 $sanitise_quote = '';
387 substr($res, $off, 2, "$;$;");
388 $off++;
389 next;
390 }
Daniel Walker113f04a2009-09-21 17:04:35 -0700391 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '//') {
392 $sanitise_quote = '//';
393
394 substr($res, $off, 2, $sanitise_quote);
395 $off++;
396 next;
397 }
Andy Whitcroft773647a2008-03-28 14:15:58 -0700398
399 # A \ in a string means ignore the next character.
400 if (($sanitise_quote eq "'" || $sanitise_quote eq '"') &&
401 $c eq "\\") {
402 substr($res, $off, 2, 'XX');
403 $off++;
404 next;
405 }
406 # Regular quotes.
407 if ($c eq "'" || $c eq '"') {
408 if ($sanitise_quote eq '') {
409 $sanitise_quote = $c;
410
411 substr($res, $off, 1, $c);
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700412 next;
Andy Whitcroft773647a2008-03-28 14:15:58 -0700413 } elsif ($sanitise_quote eq $c) {
414 $sanitise_quote = '';
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700415 }
416 }
Andy Whitcroft773647a2008-03-28 14:15:58 -0700417
Andy Whitcroftfae17da2009-01-06 14:41:20 -0800418 #print "c<$c> SQ<$sanitise_quote>\n";
Andy Whitcroft773647a2008-03-28 14:15:58 -0700419 if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") {
420 substr($res, $off, 1, $;);
Daniel Walker113f04a2009-09-21 17:04:35 -0700421 } elsif ($off != 0 && $sanitise_quote eq '//' && $c ne "\t") {
422 substr($res, $off, 1, $;);
Andy Whitcroft773647a2008-03-28 14:15:58 -0700423 } elsif ($off != 0 && $sanitise_quote && $c ne "\t") {
424 substr($res, $off, 1, 'X');
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700425 } else {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700426 substr($res, $off, 1, $c);
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700427 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800428 }
429
Daniel Walker113f04a2009-09-21 17:04:35 -0700430 if ($sanitise_quote eq '//') {
431 $sanitise_quote = '';
432 }
433
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800434 # The pathname on a #include may be surrounded by '<' and '>'.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700435 if ($res =~ /^.\s*\#\s*include\s+\<(.*)\>/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800436 my $clean = 'X' x length($1);
437 $res =~ s@\<.*\>@<$clean>@;
438
439 # The whole of a #error is a string.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700440 } elsif ($res =~ /^.\s*\#\s*(?:error|warning)\s+(.*)\b/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800441 my $clean = 'X' x length($1);
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700442 $res =~ s@(\#\s*(?:error|warning)\s+).*@$1$clean@;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800443 }
444
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700445 return $res;
446}
447
Andy Whitcroft8905a672007-11-28 16:21:06 -0800448sub ctx_statement_block {
449 my ($linenr, $remain, $off) = @_;
450 my $line = $linenr - 1;
451 my $blk = '';
452 my $soff = $off;
453 my $coff = $off - 1;
Andy Whitcroft773647a2008-03-28 14:15:58 -0700454 my $coff_set = 0;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800455
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800456 my $loff = 0;
457
Andy Whitcroft8905a672007-11-28 16:21:06 -0800458 my $type = '';
459 my $level = 0;
Andy Whitcrofta2750642009-01-15 13:51:04 -0800460 my @stack = ();
Andy Whitcroftcf655042008-03-04 14:28:20 -0800461 my $p;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800462 my $c;
463 my $len = 0;
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800464
465 my $remainder;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800466 while (1) {
Andy Whitcrofta2750642009-01-15 13:51:04 -0800467 @stack = (['', 0]) if ($#stack == -1);
468
Andy Whitcroft773647a2008-03-28 14:15:58 -0700469 #warn "CSB: blk<$blk> remain<$remain>\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -0800470 # If we are about to drop off the end, pull in more
471 # context.
472 if ($off >= $len) {
473 for (; $remain > 0; $line++) {
Andy Whitcroftdea33492008-10-15 22:02:25 -0700474 last if (!defined $lines[$line]);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800475 next if ($lines[$line] =~ /^-/);
Andy Whitcroft8905a672007-11-28 16:21:06 -0800476 $remain--;
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800477 $loff = $len;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800478 $blk .= $lines[$line] . "\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -0800479 $len = length($blk);
480 $line++;
481 last;
482 }
483 # Bail if there is no further context.
484 #warn "CSB: blk<$blk> off<$off> len<$len>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800485 if ($off >= $len) {
Andy Whitcroft8905a672007-11-28 16:21:06 -0800486 last;
487 }
488 }
Andy Whitcroftcf655042008-03-04 14:28:20 -0800489 $p = $c;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800490 $c = substr($blk, $off, 1);
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800491 $remainder = substr($blk, $off);
Andy Whitcroft8905a672007-11-28 16:21:06 -0800492
Andy Whitcroft773647a2008-03-28 14:15:58 -0700493 #warn "CSB: c<$c> type<$type> level<$level> remainder<$remainder> coff_set<$coff_set>\n";
Andy Whitcroft4635f4f2009-01-06 14:41:27 -0800494
495 # Handle nested #if/#else.
496 if ($remainder =~ /^#\s*(?:ifndef|ifdef|if)\s/) {
497 push(@stack, [ $type, $level ]);
498 } elsif ($remainder =~ /^#\s*(?:else|elif)\b/) {
499 ($type, $level) = @{$stack[$#stack - 1]};
500 } elsif ($remainder =~ /^#\s*endif\b/) {
501 ($type, $level) = @{pop(@stack)};
502 }
503
Andy Whitcroft8905a672007-11-28 16:21:06 -0800504 # Statement ends at the ';' or a close '}' at the
505 # outermost level.
506 if ($level == 0 && $c eq ';') {
507 last;
508 }
509
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800510 # An else is really a conditional as long as its not else if
Andy Whitcroft773647a2008-03-28 14:15:58 -0700511 if ($level == 0 && $coff_set == 0 &&
512 (!defined($p) || $p =~ /(?:\s|\}|\+)/) &&
513 $remainder =~ /^(else)(?:\s|{)/ &&
514 $remainder !~ /^else\s+if\b/) {
515 $coff = $off + length($1) - 1;
516 $coff_set = 1;
517 #warn "CSB: mark coff<$coff> soff<$soff> 1<$1>\n";
518 #warn "[" . substr($blk, $soff, $coff - $soff + 1) . "]\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800519 }
520
Andy Whitcroft8905a672007-11-28 16:21:06 -0800521 if (($type eq '' || $type eq '(') && $c eq '(') {
522 $level++;
523 $type = '(';
524 }
525 if ($type eq '(' && $c eq ')') {
526 $level--;
527 $type = ($level != 0)? '(' : '';
528
529 if ($level == 0 && $coff < $soff) {
530 $coff = $off;
Andy Whitcroft773647a2008-03-28 14:15:58 -0700531 $coff_set = 1;
532 #warn "CSB: mark coff<$coff>\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -0800533 }
534 }
535 if (($type eq '' || $type eq '{') && $c eq '{') {
536 $level++;
537 $type = '{';
538 }
539 if ($type eq '{' && $c eq '}') {
540 $level--;
541 $type = ($level != 0)? '{' : '';
542
543 if ($level == 0) {
544 last;
545 }
546 }
547 $off++;
548 }
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -0700549 # We are truly at the end, so shuffle to the next line.
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800550 if ($off == $len) {
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -0700551 $loff = $len + 1;
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800552 $line++;
553 $remain--;
554 }
Andy Whitcroft8905a672007-11-28 16:21:06 -0800555
556 my $statement = substr($blk, $soff, $off - $soff + 1);
557 my $condition = substr($blk, $soff, $coff - $soff + 1);
558
559 #warn "STATEMENT<$statement>\n";
560 #warn "CONDITION<$condition>\n";
561
Andy Whitcroft773647a2008-03-28 14:15:58 -0700562 #print "coff<$coff> soff<$off> loff<$loff>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800563
564 return ($statement, $condition,
565 $line, $remain + 1, $off - $loff + 1, $level);
566}
567
Andy Whitcroftcf655042008-03-04 14:28:20 -0800568sub statement_lines {
569 my ($stmt) = @_;
570
571 # Strip the diff line prefixes and rip blank lines at start and end.
572 $stmt =~ s/(^|\n)./$1/g;
573 $stmt =~ s/^\s*//;
574 $stmt =~ s/\s*$//;
575
576 my @stmt_lines = ($stmt =~ /\n/g);
577
578 return $#stmt_lines + 2;
579}
580
581sub statement_rawlines {
582 my ($stmt) = @_;
583
584 my @stmt_lines = ($stmt =~ /\n/g);
585
586 return $#stmt_lines + 2;
587}
588
589sub statement_block_size {
590 my ($stmt) = @_;
591
592 $stmt =~ s/(^|\n)./$1/g;
593 $stmt =~ s/^\s*{//;
594 $stmt =~ s/}\s*$//;
595 $stmt =~ s/^\s*//;
596 $stmt =~ s/\s*$//;
597
598 my @stmt_lines = ($stmt =~ /\n/g);
599 my @stmt_statements = ($stmt =~ /;/g);
600
601 my $stmt_lines = $#stmt_lines + 2;
602 my $stmt_statements = $#stmt_statements + 1;
603
604 if ($stmt_lines > $stmt_statements) {
605 return $stmt_lines;
606 } else {
607 return $stmt_statements;
608 }
609}
610
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800611sub ctx_statement_full {
612 my ($linenr, $remain, $off) = @_;
613 my ($statement, $condition, $level);
614
615 my (@chunks);
616
Andy Whitcroftcf655042008-03-04 14:28:20 -0800617 # Grab the first conditional/block pair.
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800618 ($statement, $condition, $linenr, $remain, $off, $level) =
619 ctx_statement_block($linenr, $remain, $off);
Andy Whitcroft773647a2008-03-28 14:15:58 -0700620 #print "F: c<$condition> s<$statement> remain<$remain>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -0800621 push(@chunks, [ $condition, $statement ]);
622 if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
623 return ($level, $linenr, @chunks);
624 }
625
626 # Pull in the following conditional/block pairs and see if they
627 # could continue the statement.
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800628 for (;;) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800629 ($statement, $condition, $linenr, $remain, $off, $level) =
630 ctx_statement_block($linenr, $remain, $off);
Andy Whitcroftcf655042008-03-04 14:28:20 -0800631 #print "C: c<$condition> s<$statement> remain<$remain>\n";
Andy Whitcroft773647a2008-03-28 14:15:58 -0700632 last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
Andy Whitcroftcf655042008-03-04 14:28:20 -0800633 #print "C: push\n";
634 push(@chunks, [ $condition, $statement ]);
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800635 }
636
637 return ($level, $linenr, @chunks);
Andy Whitcroft8905a672007-11-28 16:21:06 -0800638}
639
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700640sub ctx_block_get {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700641 my ($linenr, $remain, $outer, $open, $close, $off) = @_;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700642 my $line;
643 my $start = $linenr - 1;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700644 my $blk = '';
645 my @o;
646 my @c;
647 my @res = ();
648
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700649 my $level = 0;
Andy Whitcroft4635f4f2009-01-06 14:41:27 -0800650 my @stack = ($level);
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700651 for ($line = $start; $remain > 0; $line++) {
652 next if ($rawlines[$line] =~ /^-/);
653 $remain--;
654
655 $blk .= $rawlines[$line];
Andy Whitcroft4635f4f2009-01-06 14:41:27 -0800656
657 # Handle nested #if/#else.
658 if ($rawlines[$line] =~ /^.\s*#\s*(?:ifndef|ifdef|if)\s/) {
659 push(@stack, $level);
660 } elsif ($rawlines[$line] =~ /^.\s*#\s*(?:else|elif)\b/) {
661 $level = $stack[$#stack - 1];
662 } elsif ($rawlines[$line] =~ /^.\s*#\s*endif\b/) {
663 $level = pop(@stack);
664 }
665
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700666 foreach my $c (split(//, $rawlines[$line])) {
667 ##print "C<$c>L<$level><$open$close>O<$off>\n";
668 if ($off > 0) {
669 $off--;
670 next;
671 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700672
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700673 if ($c eq $close && $level > 0) {
674 $level--;
675 last if ($level == 0);
676 } elsif ($c eq $open) {
677 $level++;
678 }
679 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700680
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700681 if (!$outer || $level <= 1) {
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700682 push(@res, $rawlines[$line]);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700683 }
684
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700685 last if ($level == 0);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700686 }
687
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700688 return ($level, @res);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700689}
690sub ctx_block_outer {
691 my ($linenr, $remain) = @_;
692
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700693 my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0);
694 return @r;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700695}
696sub ctx_block {
697 my ($linenr, $remain) = @_;
698
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700699 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0);
700 return @r;
Andy Whitcroft653d4872007-06-23 17:16:34 -0700701}
702sub ctx_statement {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700703 my ($linenr, $remain, $off) = @_;
704
705 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
706 return @r;
707}
708sub ctx_block_level {
Andy Whitcroft653d4872007-06-23 17:16:34 -0700709 my ($linenr, $remain) = @_;
710
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700711 return ctx_block_get($linenr, $remain, 0, '{', '}', 0);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700712}
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700713sub ctx_statement_level {
714 my ($linenr, $remain, $off) = @_;
715
716 return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
717}
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700718
719sub ctx_locate_comment {
720 my ($first_line, $end_line) = @_;
721
722 # Catch a comment on the end of the line itself.
Andy Whitcroftbeae6332008-07-23 21:28:59 -0700723 my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700724 return $current_comment if (defined $current_comment);
725
726 # Look through the context and try and figure out if there is a
727 # comment.
728 my $in_comment = 0;
729 $current_comment = '';
730 for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700731 my $line = $rawlines[$linenr - 1];
732 #warn " $line\n";
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700733 if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
734 $in_comment = 1;
735 }
736 if ($line =~ m@/\*@) {
737 $in_comment = 1;
738 }
739 if (!$in_comment && $current_comment ne '') {
740 $current_comment = '';
741 }
742 $current_comment .= $line . "\n" if ($in_comment);
743 if ($line =~ m@\*/@) {
744 $in_comment = 0;
745 }
746 }
747
748 chomp($current_comment);
749 return($current_comment);
750}
751sub ctx_has_comment {
752 my ($first_line, $end_line) = @_;
753 my $cmt = ctx_locate_comment($first_line, $end_line);
754
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700755 ##print "LINE: $rawlines[$end_line - 1 ]\n";
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700756 ##print "CMMT: $cmt\n";
757
758 return ($cmt ne '');
759}
760
Andy Whitcroft4d001e42008-10-15 22:02:21 -0700761sub raw_line {
762 my ($linenr, $cnt) = @_;
763
764 my $offset = $linenr - 1;
765 $cnt++;
766
767 my $line;
768 while ($cnt) {
769 $line = $rawlines[$offset++];
770 next if (defined($line) && $line =~ /^-/);
771 $cnt--;
772 }
773
774 return $line;
775}
776
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700777sub cat_vet {
778 my ($vet) = @_;
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700779 my ($res, $coded);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700780
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700781 $res = '';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700782 while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
783 $res .= $1;
784 if ($2 ne '') {
785 $coded = sprintf("^%c", unpack('C', $2) + 64);
786 $res .= $coded;
787 }
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700788 }
789 $res =~ s/$/\$/;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700790
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700791 return $res;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700792}
793
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800794my $av_preprocessor = 0;
Andy Whitcroftcf655042008-03-04 14:28:20 -0800795my $av_pending;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800796my @av_paren_type;
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700797my $av_pend_colon;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800798
799sub annotate_reset {
800 $av_preprocessor = 0;
Andy Whitcroftcf655042008-03-04 14:28:20 -0800801 $av_pending = '_';
802 @av_paren_type = ('E');
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700803 $av_pend_colon = 'O';
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800804}
805
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700806sub annotate_values {
807 my ($stream, $type) = @_;
808
809 my $res;
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700810 my $var = '_' x length($stream);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700811 my $cur = $stream;
812
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800813 print "$stream\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700814
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700815 while (length($cur)) {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700816 @av_paren_type = ('E') if ($#av_paren_type < 0);
Andy Whitcroftcf655042008-03-04 14:28:20 -0800817 print " <" . join('', @av_paren_type) .
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700818 "> <$type> <$av_pending>" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700819 if ($cur =~ /^(\s+)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800820 print "WS($1)\n" if ($dbg_values > 1);
821 if ($1 =~ /\n/ && $av_preprocessor) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800822 $type = pop(@av_paren_type);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800823 $av_preprocessor = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700824 }
825
Andy Whitcroft8ea3eb92008-07-23 21:29:08 -0700826 } elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\()/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800827 print "DECLARE($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700828 $type = 'T';
829
Andy Whitcroft389a2fe2008-07-23 21:29:05 -0700830 } elsif ($cur =~ /^($Modifier)\s*/) {
831 print "MODIFIER($1)\n" if ($dbg_values > 1);
832 $type = 'T';
833
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700834 } elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700835 print "DEFINE($1,$2)\n" if ($dbg_values > 1);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800836 $av_preprocessor = 1;
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700837 push(@av_paren_type, $type);
838 if ($2 ne '') {
839 $av_pending = 'N';
840 }
841 $type = 'E';
842
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700843 } elsif ($cur =~ /^(\#\s*(?:undef\s*$Ident|include\b))/o) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700844 print "UNDEF($1)\n" if ($dbg_values > 1);
845 $av_preprocessor = 1;
846 push(@av_paren_type, $type);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700847
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700848 } elsif ($cur =~ /^(\#\s*(?:ifdef|ifndef|if))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800849 print "PRE_START($1)\n" if ($dbg_values > 1);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800850 $av_preprocessor = 1;
Andy Whitcroftcf655042008-03-04 14:28:20 -0800851
852 push(@av_paren_type, $type);
853 push(@av_paren_type, $type);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700854 $type = 'E';
Andy Whitcroftcf655042008-03-04 14:28:20 -0800855
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700856 } elsif ($cur =~ /^(\#\s*(?:else|elif))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800857 print "PRE_RESTART($1)\n" if ($dbg_values > 1);
858 $av_preprocessor = 1;
859
860 push(@av_paren_type, $av_paren_type[$#av_paren_type]);
861
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700862 $type = 'E';
Andy Whitcroftcf655042008-03-04 14:28:20 -0800863
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700864 } elsif ($cur =~ /^(\#\s*(?:endif))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800865 print "PRE_END($1)\n" if ($dbg_values > 1);
866
867 $av_preprocessor = 1;
868
869 # Assume all arms of the conditional end as this
870 # one does, and continue as if the #endif was not here.
871 pop(@av_paren_type);
872 push(@av_paren_type, $type);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700873 $type = 'E';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700874
875 } elsif ($cur =~ /^(\\\n)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800876 print "PRECONT($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700877
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700878 } elsif ($cur =~ /^(__attribute__)\s*\(?/o) {
879 print "ATTR($1)\n" if ($dbg_values > 1);
880 $av_pending = $type;
881 $type = 'N';
882
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700883 } elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800884 print "SIZEOF($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700885 if (defined $2) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800886 $av_pending = 'V';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700887 }
888 $type = 'N';
889
Andy Whitcroft14b111c2008-10-15 22:02:16 -0700890 } elsif ($cur =~ /^(if|while|for)\b/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800891 print "COND($1)\n" if ($dbg_values > 1);
Andy Whitcroft14b111c2008-10-15 22:02:16 -0700892 $av_pending = 'E';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700893 $type = 'N';
894
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700895 } elsif ($cur =~/^(case)/o) {
896 print "CASE($1)\n" if ($dbg_values > 1);
897 $av_pend_colon = 'C';
898 $type = 'N';
899
Andy Whitcroft14b111c2008-10-15 22:02:16 -0700900 } elsif ($cur =~/^(return|else|goto|typeof|__typeof__)\b/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800901 print "KEYWORD($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700902 $type = 'N';
903
904 } elsif ($cur =~ /^(\()/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800905 print "PAREN('$1')\n" if ($dbg_values > 1);
Andy Whitcroftcf655042008-03-04 14:28:20 -0800906 push(@av_paren_type, $av_pending);
907 $av_pending = '_';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700908 $type = 'N';
909
910 } elsif ($cur =~ /^(\))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800911 my $new_type = pop(@av_paren_type);
912 if ($new_type ne '_') {
913 $type = $new_type;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800914 print "PAREN('$1') -> $type\n"
915 if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700916 } else {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800917 print "PAREN('$1')\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700918 }
919
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700920 } elsif ($cur =~ /^($Ident)\s*\(/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800921 print "FUNC($1)\n" if ($dbg_values > 1);
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700922 $type = 'V';
Andy Whitcroftcf655042008-03-04 14:28:20 -0800923 $av_pending = 'V';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700924
Andy Whitcroft8e761b02009-01-06 14:41:19 -0800925 } elsif ($cur =~ /^($Ident\s*):(?:\s*\d+\s*(,|=|;))?/) {
926 if (defined $2 && $type eq 'C' || $type eq 'T') {
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700927 $av_pend_colon = 'B';
Andy Whitcroft8e761b02009-01-06 14:41:19 -0800928 } elsif ($type eq 'E') {
929 $av_pend_colon = 'L';
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700930 }
931 print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1);
932 $type = 'V';
933
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700934 } elsif ($cur =~ /^($Ident|$Constant)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800935 print "IDENT($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700936 $type = 'V';
937
938 } elsif ($cur =~ /^($Assignment)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800939 print "ASSIGN($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700940 $type = 'N';
941
Andy Whitcroftcf655042008-03-04 14:28:20 -0800942 } elsif ($cur =~/^(;|{|})/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800943 print "END($1)\n" if ($dbg_values > 1);
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800944 $type = 'E';
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700945 $av_pend_colon = 'O';
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800946
Andy Whitcroft8e761b02009-01-06 14:41:19 -0800947 } elsif ($cur =~/^(,)/) {
948 print "COMMA($1)\n" if ($dbg_values > 1);
949 $type = 'C';
950
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700951 } elsif ($cur =~ /^(\?)/o) {
952 print "QUESTION($1)\n" if ($dbg_values > 1);
953 $type = 'N';
954
955 } elsif ($cur =~ /^(:)/o) {
956 print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1);
957
958 substr($var, length($res), 1, $av_pend_colon);
959 if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') {
960 $type = 'E';
961 } else {
962 $type = 'N';
963 }
964 $av_pend_colon = 'O';
965
Andy Whitcroft8e761b02009-01-06 14:41:19 -0800966 } elsif ($cur =~ /^(\[)/o) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800967 print "CLOSE($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700968 $type = 'N';
969
Andy Whitcroft0d413862008-10-15 22:02:16 -0700970 } elsif ($cur =~ /^(-(?![->])|\+(?!\+)|\*|\&\&|\&)/o) {
Andy Whitcroft74048ed2008-07-23 21:29:10 -0700971 my $variant;
972
973 print "OPV($1)\n" if ($dbg_values > 1);
974 if ($type eq 'V') {
975 $variant = 'B';
976 } else {
977 $variant = 'U';
978 }
979
980 substr($var, length($res), 1, $variant);
981 $type = 'N';
982
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700983 } elsif ($cur =~ /^($Operators)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800984 print "OP($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700985 if ($1 ne '++' && $1 ne '--') {
986 $type = 'N';
987 }
988
989 } elsif ($cur =~ /(^.)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800990 print "C($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700991 }
992 if (defined $1) {
993 $cur = substr($cur, length($1));
994 $res .= $type x length($1);
995 }
996 }
997
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700998 return ($res, $var);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700999}
1000
Andy Whitcroft8905a672007-11-28 16:21:06 -08001001sub possible {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001002 my ($possible, $line) = @_;
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001003 my $notPermitted = qr{(?:
Andy Whitcroft0776e592008-10-15 22:02:29 -07001004 ^(?:
1005 $Modifier|
1006 $Storage|
1007 $Type|
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001008 DEFINE_\S+
1009 )$|
1010 ^(?:
Andy Whitcroft0776e592008-10-15 22:02:29 -07001011 goto|
1012 return|
1013 case|
1014 else|
1015 asm|__asm__|
1016 do
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001017 )(?:\s|$)|
Andy Whitcroft0776e592008-10-15 22:02:29 -07001018 ^(?:typedef|struct|enum)\b
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001019 )}x;
1020 warn "CHECK<$possible> ($line)\n" if ($dbg_possible > 2);
1021 if ($possible !~ $notPermitted) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001022 # Check for modifiers.
1023 $possible =~ s/\s*$Storage\s*//g;
1024 $possible =~ s/\s*$Sparse\s*//g;
1025 if ($possible =~ /^\s*$/) {
1026
1027 } elsif ($possible =~ /\s/) {
1028 $possible =~ s/\s*$Type\s*//g;
Andy Whitcroftd2506582008-07-23 21:29:09 -07001029 for my $modifier (split(' ', $possible)) {
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001030 if ($modifier !~ $notPermitted) {
1031 warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
1032 push(@modifierList, $modifier);
1033 }
Andy Whitcroftd2506582008-07-23 21:29:09 -07001034 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001035
1036 } else {
1037 warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
1038 push(@typeList, $possible);
1039 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001040 build_types();
Andy Whitcroft0776e592008-10-15 22:02:29 -07001041 } else {
1042 warn "NOTPOSS: $possible ($line)\n" if ($dbg_possible > 1);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001043 }
1044}
1045
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001046my $prefix = '';
1047
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001048sub report {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001049 if (defined $tst_only && $_[0] !~ /\Q$tst_only\E/) {
1050 return 0;
1051 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001052 my $line = $prefix . $_[0];
1053
1054 $line = (split('\n', $line))[0] . "\n" if ($terse);
1055
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001056 push(our @report, $line);
Andy Whitcroft773647a2008-03-28 14:15:58 -07001057
1058 return 1;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001059}
1060sub report_dump {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001061 our @report;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001062}
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001063sub ERROR {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001064 if (report("ERROR: $_[0]\n")) {
1065 our $clean = 0;
1066 our $cnt_error++;
1067 }
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001068}
1069sub WARN {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001070 if (report("WARNING: $_[0]\n")) {
1071 our $clean = 0;
1072 our $cnt_warn++;
1073 }
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001074}
1075sub CHK {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001076 if ($check && report("CHECK: $_[0]\n")) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001077 our $clean = 0;
1078 our $cnt_chk++;
1079 }
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001080}
1081
Andy Whitcroft6ecd9672008-10-15 22:02:21 -07001082sub check_absolute_file {
1083 my ($absolute, $herecurr) = @_;
1084 my $file = $absolute;
1085
1086 ##print "absolute<$absolute>\n";
1087
1088 # See if any suffix of this path is a path within the tree.
1089 while ($file =~ s@^[^/]*/@@) {
1090 if (-f "$root/$file") {
1091 ##print "file<$file>\n";
1092 last;
1093 }
1094 }
1095 if (! -f _) {
1096 return 0;
1097 }
1098
1099 # It is, so see if the prefix is acceptable.
1100 my $prefix = $absolute;
1101 substr($prefix, -length($file)) = '';
1102
1103 ##print "prefix<$prefix>\n";
1104 if ($prefix ne ".../") {
1105 WARN("use relative pathname instead of absolute in changelog text\n" . $herecurr);
1106 }
1107}
1108
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001109sub process {
1110 my $filename = shift;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001111
1112 my $linenr=0;
1113 my $prevline="";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001114 my $prevrawline="";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001115 my $stashline="";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001116 my $stashrawline="";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001117
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001118 my $length;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001119 my $indent;
1120 my $previndent=0;
1121 my $stashindent=0;
1122
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001123 our $clean = 1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001124 my $signoff = 0;
1125 my $is_patch = 0;
1126
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001127 our @report = ();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001128 our $cnt_lines = 0;
1129 our $cnt_error = 0;
1130 our $cnt_warn = 0;
1131 our $cnt_chk = 0;
1132
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001133 # Trace the real file/line as we go.
1134 my $realfile = '';
1135 my $realline = 0;
1136 my $realcnt = 0;
1137 my $here = '';
1138 my $in_comment = 0;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001139 my $comment_edge = 0;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001140 my $first_line = 0;
Wolfram Sang1e855722009-01-06 14:41:24 -08001141 my $p1_prefix = '';
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001142
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001143 my $prev_values = 'E';
1144
1145 # suppression flags
Andy Whitcroft773647a2008-03-28 14:15:58 -07001146 my %suppress_ifbraces;
Andy Whitcroft170d3a22008-10-15 22:02:30 -07001147 my %suppress_whiletrailers;
Andy Whitcroft2b474a12009-10-26 16:50:16 -07001148 my %suppress_export;
Andy Whitcroft653d4872007-06-23 17:16:34 -07001149
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001150 # Pre-scan the patch sanitizing the lines.
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001151 # Pre-scan the patch looking for any __setup documentation.
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001152 #
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001153 my @setup_docs = ();
1154 my $setup_docs = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001155
1156 sanitise_line_reset();
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001157 my $line;
1158 foreach my $rawline (@rawlines) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001159 $linenr++;
1160 $line = $rawline;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001161
Andy Whitcroft773647a2008-03-28 14:15:58 -07001162 if ($rawline=~/^\+\+\+\s+(\S+)/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001163 $setup_docs = 0;
1164 if ($1 =~ m@Documentation/kernel-parameters.txt$@) {
1165 $setup_docs = 1;
1166 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001167 #next;
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001168 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001169 if ($rawline=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
1170 $realline=$1-1;
1171 if (defined $2) {
1172 $realcnt=$3+1;
1173 } else {
1174 $realcnt=1+1;
1175 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001176 $in_comment = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001177
1178 # Guestimate if this is a continuing comment. Run
1179 # the context looking for a comment "edge". If this
1180 # edge is a close comment then we must be in a comment
1181 # at context start.
1182 my $edge;
Andy Whitcroft01fa9142008-10-15 22:02:19 -07001183 my $cnt = $realcnt;
1184 for (my $ln = $linenr + 1; $cnt > 0; $ln++) {
1185 next if (defined $rawlines[$ln - 1] &&
1186 $rawlines[$ln - 1] =~ /^-/);
1187 $cnt--;
1188 #print "RAW<$rawlines[$ln - 1]>\n";
Andy Whitcroft721c1cb2009-01-06 14:41:16 -08001189 last if (!defined $rawlines[$ln - 1]);
Andy Whitcroftfae17da2009-01-06 14:41:20 -08001190 if ($rawlines[$ln - 1] =~ m@(/\*|\*/)@ &&
1191 $rawlines[$ln - 1] !~ m@"[^"]*(?:/\*|\*/)[^"]*"@) {
1192 ($edge) = $1;
1193 last;
1194 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001195 }
1196 if (defined $edge && $edge eq '*/') {
1197 $in_comment = 1;
1198 }
1199
1200 # Guestimate if this is a continuing comment. If this
1201 # is the start of a diff block and this line starts
1202 # ' *' then it is very likely a comment.
1203 if (!defined $edge &&
Andy Whitcroft83242e02009-01-06 14:41:17 -08001204 $rawlines[$linenr] =~ m@^.\s*(?:\*\*+| \*)(?:\s|$)@)
Andy Whitcroft773647a2008-03-28 14:15:58 -07001205 {
1206 $in_comment = 1;
1207 }
1208
1209 ##print "COMMENT:$in_comment edge<$edge> $rawline\n";
1210 sanitise_line_reset($in_comment);
1211
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001212 } elsif ($realcnt && $rawline =~ /^(?:\+| |$)/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001213 # Standardise the strings and chars within the input to
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001214 # simplify matching -- only bother with positive lines.
Andy Whitcroft773647a2008-03-28 14:15:58 -07001215 $line = sanitise_line($rawline);
1216 }
1217 push(@lines, $line);
1218
1219 if ($realcnt > 1) {
1220 $realcnt-- if ($line =~ /^(?:\+| |$)/);
1221 } else {
1222 $realcnt = 0;
1223 }
1224
1225 #print "==>$rawline\n";
1226 #print "-->$line\n";
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001227
1228 if ($setup_docs && $line =~ /^\+/) {
1229 push(@setup_docs, $line);
1230 }
1231 }
1232
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001233 $prefix = '';
1234
Andy Whitcroft773647a2008-03-28 14:15:58 -07001235 $realcnt = 0;
1236 $linenr = 0;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001237 foreach my $line (@lines) {
1238 $linenr++;
1239
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001240 my $rawline = $rawlines[$linenr - 1];
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001241
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001242#extract the line range in the file after the patch is applied
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001243 if ($line=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001244 $is_patch = 1;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001245 $first_line = $linenr + 1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001246 $realline=$1-1;
1247 if (defined $2) {
1248 $realcnt=$3+1;
1249 } else {
1250 $realcnt=1+1;
1251 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001252 annotate_reset();
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001253 $prev_values = 'E';
1254
Andy Whitcroft773647a2008-03-28 14:15:58 -07001255 %suppress_ifbraces = ();
Andy Whitcroft170d3a22008-10-15 22:02:30 -07001256 %suppress_whiletrailers = ();
Andy Whitcroft2b474a12009-10-26 16:50:16 -07001257 %suppress_export = ();
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001258 next;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001259
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001260# track the line number as we move through the hunk, note that
1261# new versions of GNU diff omit the leading space on completely
1262# blank context lines so we need to count that too.
Andy Whitcroft773647a2008-03-28 14:15:58 -07001263 } elsif ($line =~ /^( |\+|$)/) {
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001264 $realline++;
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001265 $realcnt-- if ($realcnt != 0);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001266
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001267 # Measure the line length and indent.
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001268 ($length, $indent) = line_stats($rawline);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001269
1270 # Track the previous line.
1271 ($prevline, $stashline) = ($stashline, $line);
1272 ($previndent, $stashindent) = ($stashindent, $indent);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001273 ($prevrawline, $stashrawline) = ($stashrawline, $rawline);
1274
Andy Whitcroft773647a2008-03-28 14:15:58 -07001275 #warn "line<$line>\n";
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001276
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001277 } elsif ($realcnt == 1) {
1278 $realcnt--;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001279 }
1280
Andy Whitcroftcc77cdc2009-10-26 16:50:13 -07001281 my $hunk_line = ($realcnt != 0);
1282
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001283#make up the handle for any error we report on this line
Andy Whitcroft773647a2008-03-28 14:15:58 -07001284 $prefix = "$filename:$realline: " if ($emacs && $file);
1285 $prefix = "$filename:$linenr: " if ($emacs && !$file);
1286
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001287 $here = "#$linenr: " if (!$file);
1288 $here = "#$realline: " if ($file);
Andy Whitcroft773647a2008-03-28 14:15:58 -07001289
1290 # extract the filename as it passes
1291 if ($line=~/^\+\+\+\s+(\S+)/) {
1292 $realfile = $1;
Wolfram Sang1e855722009-01-06 14:41:24 -08001293 $realfile =~ s@^([^/]*)/@@;
1294
1295 $p1_prefix = $1;
Andy Whitcrofte2f7aa42009-02-27 14:03:06 -08001296 if (!$file && $tree && $p1_prefix ne '' &&
1297 -e "$root/$p1_prefix") {
Wolfram Sang1e855722009-01-06 14:41:24 -08001298 WARN("patch prefix '$p1_prefix' exists, appears to be a -p0 patch\n");
1299 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001300
Andy Whitcroftc1ab3322008-10-15 22:02:20 -07001301 if ($realfile =~ m@^include/asm/@) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001302 ERROR("do not modify files in include/asm, change architecture specific files in include/asm-<architecture>\n" . "$here$rawline\n");
1303 }
1304 next;
1305 }
1306
Randy Dunlap389834b2007-06-08 13:47:03 -07001307 $here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001308
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001309 my $hereline = "$here\n$rawline\n";
1310 my $herecurr = "$here\n$rawline\n";
1311 my $hereprev = "$here\n$prevrawline\n$rawline\n";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001312
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001313 $cnt_lines++ if ($realcnt != 0);
1314
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001315#check the patch for a signoff:
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001316 if ($line =~ /^\s*signed-off-by:/i) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001317 # This is a signoff, if ugly, so do not double report.
1318 $signoff++;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001319 if (!($line =~ /^\s*Signed-off-by:/)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001320 WARN("Signed-off-by: is the preferred form\n" .
1321 $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001322 }
1323 if ($line =~ /^\s*signed-off-by:\S/i) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001324 WARN("space required after Signed-off-by:\n" .
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001325 $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001326 }
1327 }
1328
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001329# Check for wrappage within a valid hunk of the file
Andy Whitcroft8905a672007-11-28 16:21:06 -08001330 if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001331 ERROR("patch seems to be corrupt (line wrapped?)\n" .
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001332 $herecurr) if (!$emitted_corrupt++);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001333 }
1334
Andy Whitcroft6ecd9672008-10-15 22:02:21 -07001335# Check for absolute kernel paths.
1336 if ($tree) {
1337 while ($line =~ m{(?:^|\s)(/\S*)}g) {
1338 my $file = $1;
1339
1340 if ($file =~ m{^(.*?)(?::\d+)+:?$} &&
1341 check_absolute_file($1, $herecurr)) {
1342 #
1343 } else {
1344 check_absolute_file($file, $herecurr);
1345 }
1346 }
1347 }
1348
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001349# UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
1350 if (($realfile =~ /^$/ || $line =~ /^\+/) &&
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001351 $rawline !~ m/^$UTF8*$/) {
1352 my ($utf8_prefix) = ($rawline =~ /^($UTF8*)/);
1353
1354 my $blank = copy_spacing($rawline);
1355 my $ptr = substr($blank, 0, length($utf8_prefix)) . "^";
1356 my $hereptr = "$hereline$ptr\n";
1357
1358 ERROR("Invalid UTF-8, patch and commit message should be encoded in UTF-8\n" . $hereptr);
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001359 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001360
Andy Whitcroft306708542008-10-15 22:02:28 -07001361# ignore non-hunk lines and lines being removed
1362 next if (!$hunk_line || $line =~ /^-/);
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001363
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001364#trailing whitespace
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001365 if ($line =~ /^\+.*\015/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001366 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001367 ERROR("DOS line endings\n" . $herevet);
1368
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001369 } elsif ($rawline =~ /^\+.*\S\s+$/ || $rawline =~ /^\+\s+$/) {
1370 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001371 ERROR("trailing whitespace\n" . $herevet);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001372 }
Andy Whitcroft5368df202008-10-15 22:02:27 -07001373
1374# check we are in a valid source file if not then ignore this hunk
1375 next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/);
1376
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001377#80 column limit
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001378 if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ &&
Andy Whitcroftf4c014c2008-07-23 21:29:01 -07001379 $rawline !~ /^.\s*\*\s*\@$Ident\s/ &&
1380 $line !~ /^\+\s*printk\s*\(\s*(?:KERN_\S+\s*)?"[X\t]*"\s*(?:,|\)\s*;)\s*$/ &&
1381 $length > 80)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001382 {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001383 WARN("line over 80 characters\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001384 }
1385
Andy Whitcroft8905a672007-11-28 16:21:06 -08001386# check for adding lines without a newline.
1387 if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
1388 WARN("adding a line without newline at end of file\n" . $herecurr);
1389 }
1390
Mike Frysinger42e41c52009-09-21 17:04:40 -07001391# Blackfin: use hi/lo macros
1392 if ($realfile =~ m@arch/blackfin/.*\.S$@) {
1393 if ($line =~ /\.[lL][[:space:]]*=.*&[[:space:]]*0x[fF][fF][fF][fF]/) {
1394 my $herevet = "$here\n" . cat_vet($line) . "\n";
1395 ERROR("use the LO() macro, not (... & 0xFFFF)\n" . $herevet);
1396 }
1397 if ($line =~ /\.[hH][[:space:]]*=.*>>[[:space:]]*16/) {
1398 my $herevet = "$here\n" . cat_vet($line) . "\n";
1399 ERROR("use the HI() macro, not (... >> 16)\n" . $herevet);
1400 }
1401 }
1402
Andy Whitcroftb9ea10d2008-10-15 22:02:24 -07001403# check we are in a valid source file C or perl if not then ignore this hunk
1404 next if ($realfile !~ /\.(h|c|pl)$/);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001405
1406# at the beginning of a line any tabs must come first and anything
1407# more than 8 must use tabs.
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001408 if ($rawline =~ /^\+\s* \t\s*\S/ ||
1409 $rawline =~ /^\+\s* \s*/) {
1410 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001411 ERROR("code indent should use tabs where possible\n" . $herevet);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001412 }
1413
Andy Whitcroftb9ea10d2008-10-15 22:02:24 -07001414# check we are in a valid C source file if not then ignore this hunk
1415 next if ($realfile !~ /\.(h|c)$/);
1416
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001417# check for RCS/CVS revision markers
Andy Whitcroftcf655042008-03-04 14:28:20 -08001418 if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001419 WARN("CVS style keyword markers, these will _not_ be updated\n". $herecurr);
1420 }
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001421
Mike Frysinger42e41c52009-09-21 17:04:40 -07001422# Blackfin: don't use __builtin_bfin_[cs]sync
1423 if ($line =~ /__builtin_bfin_csync/) {
1424 my $herevet = "$here\n" . cat_vet($line) . "\n";
1425 ERROR("use the CSYNC() macro in asm/blackfin.h\n" . $herevet);
1426 }
1427 if ($line =~ /__builtin_bfin_ssync/) {
1428 my $herevet = "$here\n" . cat_vet($line) . "\n";
1429 ERROR("use the SSYNC() macro in asm/blackfin.h\n" . $herevet);
1430 }
1431
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001432# Check for potential 'bare' types
Andy Whitcroft2b474a12009-10-26 16:50:16 -07001433 my ($stat, $cond, $line_nr_next, $remain_next, $off_next,
1434 $realline_next);
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07001435 if ($realcnt && $line =~ /.\s*\S/) {
Andy Whitcroft170d3a22008-10-15 22:02:30 -07001436 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
Andy Whitcroftf5fe35d2008-07-23 21:29:03 -07001437 ctx_statement_block($linenr, $realcnt, 0);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001438 $stat =~ s/\n./\n /g;
1439 $cond =~ s/\n./\n /g;
1440
Andy Whitcroft2b474a12009-10-26 16:50:16 -07001441 # Find the real next line.
1442 $realline_next = $line_nr_next;
1443 if (defined $realline_next &&
1444 (!defined $lines[$realline_next - 1] ||
1445 substr($lines[$realline_next - 1], $off_next) =~ /^\s*$/)) {
1446 $realline_next++;
1447 }
1448
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001449 my $s = $stat;
1450 $s =~ s/{.*$//s;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001451
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001452 # Ignore goto labels.
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001453 if ($s =~ /$Ident:\*$/s) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001454
1455 # Ignore functions being called
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001456 } elsif ($s =~ /^.\s*$Ident\s*\(/s) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001457
Andy Whitcroft463f2862009-09-21 17:04:34 -07001458 } elsif ($s =~ /^.\s*else\b/s) {
1459
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001460 # declarations always start with types
Andy Whitcroftd2506582008-07-23 21:29:09 -07001461 } 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 -07001462 my $type = $1;
1463 $type =~ s/\s+/ /g;
1464 possible($type, "A:" . $s);
1465
Andy Whitcroft8905a672007-11-28 16:21:06 -08001466 # definitions in global scope can only start with types
Andy Whitcrofta6a840622008-10-15 22:02:30 -07001467 } elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b\s*(?!:)/s) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001468 possible($1, "B:" . $s);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001469 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001470
1471 # any (foo ... *) is a pointer cast, and foo is a type
Andy Whitcroft65863862009-01-06 14:41:21 -08001472 while ($s =~ /\(($Ident)(?:\s+$Sparse)*[\s\*]+\s*\)/sg) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001473 possible($1, "C:" . $s);
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001474 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001475
1476 # Check for any sort of function declaration.
1477 # int foo(something bar, other baz);
1478 # void (*store_gdt)(x86_descr_ptr *);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001479 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 -08001480 my ($name_len) = length($1);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001481
Andy Whitcroftcf655042008-03-04 14:28:20 -08001482 my $ctx = $s;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001483 substr($ctx, 0, $name_len + 1, '');
Andy Whitcroft8905a672007-11-28 16:21:06 -08001484 $ctx =~ s/\)[^\)]*$//;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001485
Andy Whitcroft8905a672007-11-28 16:21:06 -08001486 for my $arg (split(/\s*,\s*/, $ctx)) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001487 if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$/s) {
Andy Whitcroft8905a672007-11-28 16:21:06 -08001488
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001489 possible($1, "D:" . $s);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001490 }
1491 }
1492 }
1493
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001494 }
1495
Andy Whitcroft653d4872007-06-23 17:16:34 -07001496#
1497# Checks which may be anchored in the context.
1498#
1499
1500# Check for switch () and associated case and default
1501# statements should be at the same indent.
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001502 if ($line=~/\bswitch\s*\(.*\)/) {
1503 my $err = '';
1504 my $sep = '';
1505 my @ctx = ctx_block_outer($linenr, $realcnt);
1506 shift(@ctx);
1507 for my $ctx (@ctx) {
1508 my ($clen, $cindent) = line_stats($ctx);
1509 if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
1510 $indent != $cindent) {
1511 $err .= "$sep$ctx\n";
1512 $sep = '';
1513 } else {
1514 $sep = "[...]\n";
1515 }
1516 }
1517 if ($err ne '') {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001518 ERROR("switch and case should be at the same indent\n$hereline$err");
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001519 }
1520 }
1521
1522# if/while/etc brace do not go on next line, unless defining a do while loop,
1523# or if that brace on the next line is for something else
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001524 if ($line =~ /(.*)\b((?:if|while|for|switch)\s*\(|do\b|else\b)/ && $line !~ /^.\s*\#/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001525 my $pre_ctx = "$1$2";
1526
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001527 my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001528 my $ctx_cnt = $realcnt - $#ctx - 1;
1529 my $ctx = join("\n", @ctx);
1530
Andy Whitcroft548596d2008-07-23 21:29:01 -07001531 my $ctx_ln = $linenr;
1532 my $ctx_skip = $realcnt;
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001533
Andy Whitcroft548596d2008-07-23 21:29:01 -07001534 while ($ctx_skip > $ctx_cnt || ($ctx_skip == $ctx_cnt &&
1535 defined $lines[$ctx_ln - 1] &&
1536 $lines[$ctx_ln - 1] =~ /^-/)) {
1537 ##print "SKIP<$ctx_skip> CNT<$ctx_cnt>\n";
1538 $ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/);
Andy Whitcroft773647a2008-03-28 14:15:58 -07001539 $ctx_ln++;
1540 }
Andy Whitcroft548596d2008-07-23 21:29:01 -07001541
Andy Whitcroft53210162008-07-23 21:29:03 -07001542 #print "realcnt<$realcnt> ctx_cnt<$ctx_cnt>\n";
1543 #print "pre<$pre_ctx>\nline<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>\n";
Andy Whitcroft773647a2008-03-28 14:15:58 -07001544
1545 if ($ctx !~ /{\s*/ && defined($lines[$ctx_ln -1]) && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
1546 ERROR("that open brace { should be on the previous line\n" .
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001547 "$here\n$ctx\n$lines[$ctx_ln - 1]\n");
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001548 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001549 if ($level == 0 && $pre_ctx !~ /}\s*while\s*\($/ &&
1550 $ctx =~ /\)\s*\;\s*$/ &&
1551 defined $lines[$ctx_ln - 1])
1552 {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001553 my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
1554 if ($nindent > $indent) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001555 WARN("trailing semicolon indicates no statements, indent implies otherwise\n" .
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001556 "$here\n$ctx\n$lines[$ctx_ln - 1]\n");
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001557 }
1558 }
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001559 }
1560
Andy Whitcroft4d001e42008-10-15 22:02:21 -07001561# Check relative indent for conditionals and blocks.
1562 if ($line =~ /\b(?:(?:if|while|for)\s*\(|do\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) {
1563 my ($s, $c) = ($stat, $cond);
1564
1565 substr($s, 0, length($c), '');
1566
1567 # Make sure we remove the line prefixes as we have
1568 # none on the first line, and are going to readd them
1569 # where necessary.
1570 $s =~ s/\n./\n/gs;
1571
1572 # Find out how long the conditional actually is.
Andy Whitcroft6f779c12008-10-15 22:02:27 -07001573 my @newlines = ($c =~ /\n/gs);
1574 my $cond_lines = 1 + $#newlines;
Andy Whitcroft4d001e42008-10-15 22:02:21 -07001575
1576 # We want to check the first line inside the block
1577 # starting at the end of the conditional, so remove:
1578 # 1) any blank line termination
1579 # 2) any opening brace { on end of the line
1580 # 3) any do (...) {
1581 my $continuation = 0;
1582 my $check = 0;
1583 $s =~ s/^.*\bdo\b//;
1584 $s =~ s/^\s*{//;
1585 if ($s =~ s/^\s*\\//) {
1586 $continuation = 1;
1587 }
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07001588 if ($s =~ s/^\s*?\n//) {
Andy Whitcroft4d001e42008-10-15 22:02:21 -07001589 $check = 1;
1590 $cond_lines++;
1591 }
1592
1593 # Also ignore a loop construct at the end of a
1594 # preprocessor statement.
1595 if (($prevline =~ /^.\s*#\s*define\s/ ||
1596 $prevline =~ /\\\s*$/) && $continuation == 0) {
1597 $check = 0;
1598 }
1599
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07001600 my $cond_ptr = -1;
Andy Whitcroft740504c2008-10-15 22:02:35 -07001601 $continuation = 0;
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07001602 while ($cond_ptr != $cond_lines) {
1603 $cond_ptr = $cond_lines;
Andy Whitcroft4d001e42008-10-15 22:02:21 -07001604
Andy Whitcroftf16fa282008-10-15 22:02:32 -07001605 # If we see an #else/#elif then the code
1606 # is not linear.
1607 if ($s =~ /^\s*\#\s*(?:else|elif)/) {
1608 $check = 0;
1609 }
1610
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07001611 # Ignore:
1612 # 1) blank lines, they should be at 0,
1613 # 2) preprocessor lines, and
1614 # 3) labels.
Andy Whitcroft740504c2008-10-15 22:02:35 -07001615 if ($continuation ||
1616 $s =~ /^\s*?\n/ ||
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07001617 $s =~ /^\s*#\s*?/ ||
1618 $s =~ /^\s*$Ident\s*:/) {
Andy Whitcroft740504c2008-10-15 22:02:35 -07001619 $continuation = ($s =~ /^.*?\\\n/) ? 1 : 0;
Andy Whitcroft30dad6e2009-09-21 17:04:36 -07001620 if ($s =~ s/^.*?\n//) {
1621 $cond_lines++;
1622 }
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07001623 }
Andy Whitcroft4d001e42008-10-15 22:02:21 -07001624 }
1625
1626 my (undef, $sindent) = line_stats("+" . $s);
1627 my $stat_real = raw_line($linenr, $cond_lines);
1628
1629 # Check if either of these lines are modified, else
1630 # this is not this patch's fault.
1631 if (!defined($stat_real) ||
1632 $stat !~ /^\+/ && $stat_real !~ /^\+/) {
1633 $check = 0;
1634 }
1635 if (defined($stat_real) && $cond_lines > 1) {
1636 $stat_real = "[...]\n$stat_real";
1637 }
1638
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07001639 #print "line<$line> prevline<$prevline> indent<$indent> sindent<$sindent> check<$check> continuation<$continuation> s<$s> cond_lines<$cond_lines> stat_real<$stat_real> stat<$stat>\n";
Andy Whitcroft4d001e42008-10-15 22:02:21 -07001640
1641 if ($check && (($sindent % 8) != 0 ||
1642 ($sindent <= $indent && $s ne ''))) {
1643 WARN("suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n");
1644 }
1645 }
1646
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001647 # Track the 'values' across context and added lines.
1648 my $opline = $line; $opline =~ s/^./ /;
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001649 my ($curr_values, $curr_vars) =
1650 annotate_values($opline . "\n", $prev_values);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001651 $curr_values = $prev_values . $curr_values;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001652 if ($dbg_values) {
1653 my $outline = $opline; $outline =~ s/\t/ /g;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001654 print "$linenr > .$outline\n";
1655 print "$linenr > $curr_values\n";
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001656 print "$linenr > $curr_vars\n";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001657 }
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001658 $prev_values = substr($curr_values, -1);
1659
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001660#ignore lines not being added
1661 if ($line=~/^[^\+]/) {next;}
1662
Andy Whitcroft653d4872007-06-23 17:16:34 -07001663# TEST: allow direct testing of the type matcher.
Andy Whitcroft7429c692008-07-23 21:29:06 -07001664 if ($dbg_type) {
1665 if ($line =~ /^.\s*$Declare\s*$/) {
1666 ERROR("TEST: is type\n" . $herecurr);
1667 } elsif ($dbg_type > 1 && $line =~ /^.+($Declare)/) {
1668 ERROR("TEST: is not type ($1 is)\n". $herecurr);
1669 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001670 next;
1671 }
Andy Whitcrofta1ef2772008-10-15 22:02:17 -07001672# TEST: allow direct testing of the attribute matcher.
1673 if ($dbg_attr) {
Andy Whitcroft9360b0e2009-02-27 14:03:08 -08001674 if ($line =~ /^.\s*$Modifier\s*$/) {
Andy Whitcrofta1ef2772008-10-15 22:02:17 -07001675 ERROR("TEST: is attr\n" . $herecurr);
Andy Whitcroft9360b0e2009-02-27 14:03:08 -08001676 } elsif ($dbg_attr > 1 && $line =~ /^.+($Modifier)/) {
Andy Whitcrofta1ef2772008-10-15 22:02:17 -07001677 ERROR("TEST: is not attr ($1 is)\n". $herecurr);
1678 }
1679 next;
1680 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001681
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001682# check for initialisation to aggregates open brace on the next line
Andy Whitcroft99423c22009-10-26 16:50:15 -07001683 if ($line =~ /^.\s*{/ &&
1684 $prevline =~ /(?:^|[^=])=\s*$/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001685 ERROR("that open brace { should be on the previous line\n" . $hereprev);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001686 }
1687
Andy Whitcroft653d4872007-06-23 17:16:34 -07001688#
1689# Checks which are anchored on the added line.
1690#
1691
1692# check for malformed paths in #include statements (uses RAW line)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001693 if ($rawline =~ m{^.\s*\#\s*include\s+[<"](.*)[">]}) {
Andy Whitcroft653d4872007-06-23 17:16:34 -07001694 my $path = $1;
1695 if ($path =~ m{//}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001696 ERROR("malformed #include filename\n" .
1697 $herecurr);
Andy Whitcroft653d4872007-06-23 17:16:34 -07001698 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001699 }
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001700
1701# no C99 // comments
1702 if ($line =~ m{//}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001703 ERROR("do not use C99 // comments\n" . $herecurr);
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001704 }
1705 # Remove C99 comments.
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001706 $line =~ s@//.*@@;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001707 $opline =~ s@//.*@@;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001708
Andy Whitcroft2b474a12009-10-26 16:50:16 -07001709# EXPORT_SYMBOL should immediately follow the thing it is exporting, consider
1710# the whole statement.
1711#print "APW <$lines[$realline_next - 1]>\n";
1712 if (defined $realline_next &&
1713 exists $lines[$realline_next - 1] &&
1714 !defined $suppress_export{$realline_next} &&
1715 ($lines[$realline_next - 1] =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
1716 $lines[$realline_next - 1] =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
Andy Whitcroft653d4872007-06-23 17:16:34 -07001717 my $name = $1;
Andy Whitcroft2b474a12009-10-26 16:50:16 -07001718 if ($stat !~ /(?:
1719 \n.}\s*$|
Andy Whitcroft48012052008-10-15 22:02:34 -07001720 ^.DEFINE_$Ident\(\Q$name\E\)|
1721 ^.DECLARE_$Ident\(\Q$name\E\)|
1722 ^.LIST_HEAD\(\Q$name\E\)|
Andy Whitcroft2b474a12009-10-26 16:50:16 -07001723 ^.(?:$Storage\s+)?$Type\s*\(\s*\*\s*\Q$name\E\s*\)\s*\(|
1724 \b\Q$name\E(?:\s+$Attribute)*\s*(?:;|=|\[|\()
Andy Whitcroft48012052008-10-15 22:02:34 -07001725 )/x) {
Andy Whitcroft2b474a12009-10-26 16:50:16 -07001726#print "FOO A<$lines[$realline_next - 1]> stat<$stat> name<$name>\n";
1727 $suppress_export{$realline_next} = 2;
1728 } else {
1729 $suppress_export{$realline_next} = 1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001730 }
1731 }
Andy Whitcroft2b474a12009-10-26 16:50:16 -07001732 if (!defined $suppress_export{$linenr} &&
1733 $prevline =~ /^.\s*$/ &&
1734 ($line =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
1735 $line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
1736#print "FOO B <$lines[$linenr - 1]>\n";
1737 $suppress_export{$linenr} = 2;
1738 }
1739 if (defined $suppress_export{$linenr} &&
1740 $suppress_export{$linenr} == 2) {
1741 WARN("EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
1742 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001743
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001744# check for external initialisers.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001745 if ($line =~ /^.$Type\s*$Ident\s*(?:\s+$Modifier)*\s*=\s*(0|NULL|false)\s*;/) {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001746 ERROR("do not initialise externals to 0 or NULL\n" .
1747 $herecurr);
1748 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001749# check for static initialisers.
Andy Whitcroft2d1bafd2009-01-06 14:41:28 -08001750 if ($line =~ /\bstatic\s.*=\s*(0|NULL|false)\s*;/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001751 ERROR("do not initialise statics to 0 or NULL\n" .
1752 $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001753 }
1754
Andy Whitcroft653d4872007-06-23 17:16:34 -07001755# check for new typedefs, only function parameters and sparse annotations
1756# make sense.
1757 if ($line =~ /\btypedef\s/ &&
Andy Whitcroft80545762009-01-06 14:41:26 -08001758 $line !~ /\btypedef\s+$Type\s*\(\s*\*?$Ident\s*\)\s*\(/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001759 $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ &&
Andy Whitcroft8ed22ca2008-10-15 22:02:32 -07001760 $line !~ /\b$typeTypedefs\b/ &&
Andy Whitcroft653d4872007-06-23 17:16:34 -07001761 $line !~ /\b__bitwise(?:__|)\b/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001762 WARN("do not add new typedefs\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001763 }
1764
1765# * goes on variable not on type
Andy Whitcroft65863862009-01-06 14:41:21 -08001766 # (char*[ const])
Andy Whitcroft00ef4ec2009-02-27 14:03:07 -08001767 if ($line =~ m{\($NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)\)}) {
Andy Whitcroft65863862009-01-06 14:41:21 -08001768 my ($from, $to) = ($1, $1);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001769
Andy Whitcroft65863862009-01-06 14:41:21 -08001770 # Should start with a space.
1771 $to =~ s/^(\S)/ $1/;
1772 # Should not end with a space.
1773 $to =~ s/\s+$//;
1774 # '*'s should not have spaces between.
Andy Whitcroftf9a0b3d2009-01-15 13:51:05 -08001775 while ($to =~ s/\*\s+\*/\*\*/) {
Andy Whitcroft65863862009-01-06 14:41:21 -08001776 }
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001777
Andy Whitcroft65863862009-01-06 14:41:21 -08001778 #print "from<$from> to<$to>\n";
1779 if ($from ne $to) {
1780 ERROR("\"(foo$from)\" should be \"(foo$to)\"\n" . $herecurr);
1781 }
Andy Whitcroft00ef4ec2009-02-27 14:03:07 -08001782 } elsif ($line =~ m{\b$NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)($Ident)}) {
Andy Whitcroft65863862009-01-06 14:41:21 -08001783 my ($from, $to, $ident) = ($1, $1, $2);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001784
Andy Whitcroft65863862009-01-06 14:41:21 -08001785 # Should start with a space.
1786 $to =~ s/^(\S)/ $1/;
1787 # Should not end with a space.
1788 $to =~ s/\s+$//;
1789 # '*'s should not have spaces between.
Andy Whitcroftf9a0b3d2009-01-15 13:51:05 -08001790 while ($to =~ s/\*\s+\*/\*\*/) {
Andy Whitcroft65863862009-01-06 14:41:21 -08001791 }
1792 # Modifiers should have spaces.
1793 $to =~ s/(\b$Modifier$)/$1 /;
1794
Andy Whitcroft667026e2009-02-27 14:03:08 -08001795 #print "from<$from> to<$to> ident<$ident>\n";
1796 if ($from ne $to && $ident !~ /^$Modifier$/) {
Andy Whitcroft65863862009-01-06 14:41:21 -08001797 ERROR("\"foo${from}bar\" should be \"foo${to}bar\"\n" . $herecurr);
1798 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001799 }
1800
1801# # no BUG() or BUG_ON()
1802# if ($line =~ /\b(BUG|BUG_ON)\b/) {
1803# print "Try to use WARN_ON & Recovery code rather than BUG() or BUG_ON()\n";
1804# print "$herecurr";
1805# $clean = 0;
1806# }
1807
Andy Whitcroft8905a672007-11-28 16:21:06 -08001808 if ($line =~ /\bLINUX_VERSION_CODE\b/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001809 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 -08001810 }
1811
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001812# printk should use KERN_* levels. Note that follow on printk's on the
1813# same line do not need a level, so we use the current block context
1814# to try and find and validate the current printk. In summary the current
1815# printk includes all preceeding printk's which have no newline on the end.
1816# we assume the first bad printk is the one to report.
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001817 if ($line =~ /\bprintk\((?!KERN_)\s*"/) {
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001818 my $ok = 0;
1819 for (my $ln = $linenr - 1; $ln >= $first_line; $ln--) {
1820 #print "CHECK<$lines[$ln - 1]\n";
1821 # we have a preceeding printk if it ends
1822 # with "\n" ignore it, else it is to blame
1823 if ($lines[$ln - 1] =~ m{\bprintk\(}) {
1824 if ($rawlines[$ln - 1] !~ m{\\n"}) {
1825 $ok = 1;
1826 }
1827 last;
1828 }
1829 }
1830 if ($ok == 0) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001831 WARN("printk() should include KERN_ facility level\n" . $herecurr);
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001832 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001833 }
1834
Andy Whitcroft653d4872007-06-23 17:16:34 -07001835# function brace can't be on same line, except for #defines of do while,
1836# or if closed on same line
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001837 if (($line=~/$Type\s*$Ident\(.*\).*\s{/) and
1838 !($line=~/\#\s*define.*do\s{/) and !($line=~/}/)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001839 ERROR("open brace '{' following function declarations go on the next line\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001840 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001841
Andy Whitcroft8905a672007-11-28 16:21:06 -08001842# open braces for enum, union and struct go on the same line.
1843 if ($line =~ /^.\s*{/ &&
1844 $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
1845 ERROR("open brace '{' following $1 go on the same line\n" . $hereprev);
1846 }
1847
Andy Whitcroft8d31cfc2008-07-23 21:29:02 -07001848# check for spacing round square brackets; allowed:
1849# 1. with a type on the left -- int [] a;
Andy Whitcroftfe2a7db2008-10-15 22:02:15 -07001850# 2. at the beginning of a line for slice initialisers -- [0...10] = 5,
1851# 3. inside a curly brace -- = { [0...10] = 5 }
Andy Whitcroft8d31cfc2008-07-23 21:29:02 -07001852 while ($line =~ /(.*?\s)\[/g) {
1853 my ($where, $prefix) = ($-[1], $1);
1854 if ($prefix !~ /$Type\s+$/ &&
Andy Whitcroftfe2a7db2008-10-15 22:02:15 -07001855 ($where != 0 || $prefix !~ /^.\s+$/) &&
1856 $prefix !~ /{\s+$/) {
Andy Whitcroft8d31cfc2008-07-23 21:29:02 -07001857 ERROR("space prohibited before open square bracket '['\n" . $herecurr);
1858 }
1859 }
1860
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001861# check for spaces between functions and their parentheses.
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001862 while ($line =~ /($Ident)\s+\(/g) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001863 my $name = $1;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001864 my $ctx_before = substr($line, 0, $-[1]);
1865 my $ctx = "$ctx_before$name";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001866
1867 # Ignore those directives where spaces _are_ permitted.
Andy Whitcroft773647a2008-03-28 14:15:58 -07001868 if ($name =~ /^(?:
1869 if|for|while|switch|return|case|
1870 volatile|__volatile__|
1871 __attribute__|format|__extension__|
1872 asm|__asm__)$/x)
1873 {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001874
1875 # cpp #define statements have non-optional spaces, ie
1876 # if there is a space between the name and the open
1877 # parenthesis it is simply not a parameter group.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001878 } elsif ($ctx_before =~ /^.\s*\#\s*define\s*$/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001879
1880 # cpp #elif statement condition may start with a (
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001881 } elsif ($ctx =~ /^.\s*\#\s*elif\s*$/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001882
1883 # If this whole things ends with a type its most
1884 # likely a typedef for a function.
Andy Whitcroft773647a2008-03-28 14:15:58 -07001885 } elsif ($ctx =~ /$Type$/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001886
1887 } else {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001888 WARN("space prohibited between function name and open parenthesis '('\n" . $herecurr);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001889 }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001890 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001891# Check operator spacing.
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001892 if (!($line=~/\#\s*include/)) {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001893 my $ops = qr{
1894 <<=|>>=|<=|>=|==|!=|
1895 \+=|-=|\*=|\/=|%=|\^=|\|=|&=|
1896 =>|->|<<|>>|<|>|=|!|~|
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001897 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%|
1898 \?|:
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001899 }x;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001900 my @elements = split(/($ops|;)/, $opline);
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001901 my $off = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001902
1903 my $blank = copy_spacing($opline);
1904
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001905 for (my $n = 0; $n < $#elements; $n += 2) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001906 $off += length($elements[$n]);
1907
Andy Whitcroft773647a2008-03-28 14:15:58 -07001908 # Pick up the preceeding and succeeding characters.
1909 my $ca = substr($opline, 0, $off);
1910 my $cc = '';
1911 if (length($opline) >= ($off + length($elements[$n + 1]))) {
1912 $cc = substr($opline, $off + length($elements[$n + 1]));
1913 }
1914 my $cb = "$ca$;$cc";
1915
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001916 my $a = '';
1917 $a = 'V' if ($elements[$n] ne '');
1918 $a = 'W' if ($elements[$n] =~ /\s$/);
Andy Whitcroftcf655042008-03-04 14:28:20 -08001919 $a = 'C' if ($elements[$n] =~ /$;$/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001920 $a = 'B' if ($elements[$n] =~ /(\[|\()$/);
1921 $a = 'O' if ($elements[$n] eq '');
Andy Whitcroft773647a2008-03-28 14:15:58 -07001922 $a = 'E' if ($ca =~ /^\s*$/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001923
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001924 my $op = $elements[$n + 1];
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001925
1926 my $c = '';
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001927 if (defined $elements[$n + 2]) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001928 $c = 'V' if ($elements[$n + 2] ne '');
1929 $c = 'W' if ($elements[$n + 2] =~ /^\s/);
Andy Whitcroftcf655042008-03-04 14:28:20 -08001930 $c = 'C' if ($elements[$n + 2] =~ /^$;/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001931 $c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
1932 $c = 'O' if ($elements[$n + 2] eq '');
Andy Whitcroft8b1b3372009-01-06 14:41:27 -08001933 $c = 'E' if ($elements[$n + 2] =~ /^\s*\\$/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001934 } else {
1935 $c = 'E';
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001936 }
1937
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001938 my $ctx = "${a}x${c}";
1939
1940 my $at = "(ctx:$ctx)";
1941
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001942 my $ptr = substr($blank, 0, $off) . "^";
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001943 my $hereptr = "$hereline$ptr\n";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001944
Andy Whitcroft74048ed2008-07-23 21:29:10 -07001945 # Pull out the value of this operator.
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001946 my $op_type = substr($curr_values, $off + 1, 1);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001947
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001948 # Get the full operator variant.
1949 my $opv = $op . substr($curr_vars, $off, 1);
1950
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001951 # Ignore operators passed as parameters.
1952 if ($op_type ne 'V' &&
1953 $ca =~ /\s$/ && $cc =~ /^\s*,/) {
1954
Andy Whitcroftcf655042008-03-04 14:28:20 -08001955# # Ignore comments
1956# } elsif ($op =~ /^$;+$/) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001957
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001958 # ; should have either the end of line or a space or \ after it
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001959 } elsif ($op eq ';') {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001960 if ($ctx !~ /.x[WEBC]/ &&
1961 $cc !~ /^\\/ && $cc !~ /^;/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001962 ERROR("space required after that '$op' $at\n" . $hereptr);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001963 }
1964
1965 # // is a comment
1966 } elsif ($op eq '//') {
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001967
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001968 # No spaces for:
1969 # ->
1970 # : when part of a bitfield
1971 } elsif ($op eq '->' || $opv eq ':B') {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001972 if ($ctx =~ /Wx.|.xW/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001973 ERROR("spaces prohibited around that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001974 }
1975
1976 # , must have a space on the right.
1977 } elsif ($op eq ',') {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001978 if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001979 ERROR("space required after that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001980 }
1981
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001982 # '*' as part of a type definition -- reported already.
Andy Whitcroft74048ed2008-07-23 21:29:10 -07001983 } elsif ($opv eq '*_') {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001984 #warn "'*' is part of type\n";
1985
1986 # unary operators should have a space before and
1987 # none after. May be left adjacent to another
1988 # unary operator, or a cast
1989 } elsif ($op eq '!' || $op eq '~' ||
Andy Whitcroft74048ed2008-07-23 21:29:10 -07001990 $opv eq '*U' || $opv eq '-U' ||
Andy Whitcroft0d413862008-10-15 22:02:16 -07001991 $opv eq '&U' || $opv eq '&&U') {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001992 if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001993 ERROR("space required before that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001994 }
Andy Whitcrofta3340b32009-02-27 14:03:07 -08001995 if ($op eq '*' && $cc =~/\s*$Modifier\b/) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001996 # A unary '*' may be const
1997
1998 } elsif ($ctx =~ /.xW/) {
Andy Whitcroftfb9e9092009-09-21 17:04:38 -07001999 ERROR("space prohibited after that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002000 }
2001
2002 # unary ++ and unary -- are allowed no space on one side.
2003 } elsif ($op eq '++' or $op eq '--') {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002004 if ($ctx !~ /[WEOBC]x[^W]/ && $ctx !~ /[^W]x[WOBEC]/) {
2005 ERROR("space required one side of that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002006 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002007 if ($ctx =~ /Wx[BE]/ ||
2008 ($ctx =~ /Wx./ && $cc =~ /^;/)) {
2009 ERROR("space prohibited before that '$op' $at\n" . $hereptr);
Andy Whitcroft653d4872007-06-23 17:16:34 -07002010 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002011 if ($ctx =~ /ExW/) {
2012 ERROR("space prohibited after that '$op' $at\n" . $hereptr);
2013 }
2014
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002015
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002016 # << and >> may either have or not have spaces both sides
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002017 } elsif ($op eq '<<' or $op eq '>>' or
2018 $op eq '&' or $op eq '^' or $op eq '|' or
2019 $op eq '+' or $op eq '-' or
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002020 $op eq '*' or $op eq '/' or
2021 $op eq '%')
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002022 {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002023 if ($ctx =~ /Wx[^WCE]|[^WCE]xW/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002024 ERROR("need consistent spacing around '$op' $at\n" .
2025 $hereptr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002026 }
2027
Andy Whitcroft1f65f942008-07-23 21:29:10 -07002028 # A colon needs no spaces before when it is
2029 # terminating a case value or a label.
2030 } elsif ($opv eq ':C' || $opv eq ':L') {
2031 if ($ctx =~ /Wx./) {
2032 ERROR("space prohibited before that '$op' $at\n" . $hereptr);
2033 }
2034
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002035 # All the others need spaces both sides.
Andy Whitcroftcf655042008-03-04 14:28:20 -08002036 } elsif ($ctx !~ /[EWC]x[CWE]/) {
Andy Whitcroft1f65f942008-07-23 21:29:10 -07002037 my $ok = 0;
2038
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002039 # Ignore email addresses <foo@bar>
Andy Whitcroft1f65f942008-07-23 21:29:10 -07002040 if (($op eq '<' &&
2041 $cc =~ /^\S+\@\S+>/) ||
2042 ($op eq '>' &&
2043 $ca =~ /<\S+\@\S+$/))
2044 {
2045 $ok = 1;
2046 }
2047
2048 # Ignore ?:
2049 if (($opv eq ':O' && $ca =~ /\?$/) ||
2050 ($op eq '?' && $cc =~ /^:/)) {
2051 $ok = 1;
2052 }
2053
2054 if ($ok == 0) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002055 ERROR("spaces required around that '$op' $at\n" . $hereptr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002056 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002057 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002058 $off += length($elements[$n + 1]);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002059 }
2060 }
2061
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002062# check for multiple assignments
2063 if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002064 CHK("multiple assignments should be avoided\n" . $herecurr);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002065 }
2066
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002067## # check for multiple declarations, allowing for a function declaration
2068## # continuation.
2069## if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
2070## $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
2071##
2072## # Remove any bracketed sections to ensure we do not
2073## # falsly report the parameters of functions.
2074## my $ln = $line;
2075## while ($ln =~ s/\([^\(\)]*\)//g) {
2076## }
2077## if ($ln =~ /,/) {
2078## WARN("declaring multiple variables together should be avoided\n" . $herecurr);
2079## }
2080## }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002081
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002082#need space before brace following if, while, etc
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002083 if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) ||
2084 $line =~ /do{/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002085 ERROR("space required before the open brace '{'\n" . $herecurr);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002086 }
2087
2088# closing brace should have a space following it when it has anything
2089# on the line
2090 if ($line =~ /}(?!(?:,|;|\)))\S/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002091 ERROR("space required after that close brace '}'\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002092 }
2093
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002094# check spacing on square brackets
2095 if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002096 ERROR("space prohibited after that open square bracket '['\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002097 }
2098 if ($line =~ /\s\]/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002099 ERROR("space prohibited before that close square bracket ']'\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002100 }
2101
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002102# check spacing on parentheses
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002103 if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
2104 $line !~ /for\s*\(\s+;/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002105 ERROR("space prohibited after that open parenthesis '('\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002106 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002107 if ($line =~ /(\s+)\)/ && $line !~ /^.\s*\)/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002108 $line !~ /for\s*\(.*;\s+\)/ &&
2109 $line !~ /:\s+\)/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002110 ERROR("space prohibited before that close parenthesis ')'\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002111 }
2112
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002113#goto labels aren't indented, allow a single space however
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002114 if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002115 !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002116 WARN("labels should not be indented\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002117 }
2118
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002119# Return is not a function.
2120 if (defined($stat) && $stat =~ /^.\s*return(\s*)(\(.*);/s) {
2121 my $spacing = $1;
2122 my $value = $2;
2123
Andy Whitcroft86f9d052009-01-06 14:41:24 -08002124 # Flatten any parentheses
Andy Whitcroftfee61c42008-07-23 21:28:56 -07002125 $value =~ s/\)\(/\) \(/g;
Andy Whitcroft63f17f82009-01-15 13:51:06 -08002126 while ($value =~ s/\[[^\{\}]*\]/1/ ||
2127 $value !~ /(?:$Ident|-?$Constant)\s*
2128 $Compare\s*
2129 (?:$Ident|-?$Constant)/x &&
2130 $value =~ s/\([^\(\)]*\)/1/) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002131 }
2132
2133 if ($value =~ /^(?:$Ident|-?$Constant)$/) {
2134 ERROR("return is not a function, parentheses are not required\n" . $herecurr);
2135
2136 } elsif ($spacing !~ /\s+/) {
2137 ERROR("space required before the open parenthesis '('\n" . $herecurr);
2138 }
2139 }
2140
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002141# Need a space before open parenthesis after if, while etc
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002142 if ($line=~/\b(if|while|for|switch)\(/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002143 ERROR("space required before the open parenthesis '('\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002144 }
2145
Andy Whitcroftf5fe35d2008-07-23 21:29:03 -07002146# Check for illegal assignment in if conditional -- and check for trailing
2147# statements after the conditional.
Andy Whitcroft170d3a22008-10-15 22:02:30 -07002148 if ($line =~ /do\s*(?!{)/) {
2149 my ($stat_next) = ctx_statement_block($line_nr_next,
2150 $remain_next, $off_next);
2151 $stat_next =~ s/\n./\n /g;
2152 ##print "stat<$stat> stat_next<$stat_next>\n";
2153
2154 if ($stat_next =~ /^\s*while\b/) {
2155 # If the statement carries leading newlines,
2156 # then count those as offsets.
2157 my ($whitespace) =
2158 ($stat_next =~ /^((?:\s*\n[+-])*\s*)/s);
2159 my $offset =
2160 statement_rawlines($whitespace) - 1;
2161
2162 $suppress_whiletrailers{$line_nr_next +
2163 $offset} = 1;
2164 }
2165 }
2166 if (!defined $suppress_whiletrailers{$linenr} &&
2167 $line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002168 my ($s, $c) = ($stat, $cond);
Andy Whitcroft8905a672007-11-28 16:21:06 -08002169
Andy Whitcroftb53c8e12009-01-06 14:41:29 -08002170 if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/s) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002171 ERROR("do not use assignment in if condition\n" . $herecurr);
Andy Whitcroft8905a672007-11-28 16:21:06 -08002172 }
2173
2174 # Find out what is on the end of the line after the
2175 # conditional.
Andy Whitcroft773647a2008-03-28 14:15:58 -07002176 substr($s, 0, length($c), '');
Andy Whitcroft8905a672007-11-28 16:21:06 -08002177 $s =~ s/\n.*//g;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002178 $s =~ s/$;//g; # Remove any comments
Andy Whitcroft53210162008-07-23 21:29:03 -07002179 if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ &&
2180 $c !~ /}\s*while\s*/)
Andy Whitcroft773647a2008-03-28 14:15:58 -07002181 {
Andy Whitcroftbb44ad32008-10-15 22:02:34 -07002182 # Find out how long the conditional actually is.
2183 my @newlines = ($c =~ /\n/gs);
2184 my $cond_lines = 1 + $#newlines;
2185
2186 my $stat_real = raw_line($linenr, $cond_lines);
2187 if (defined($stat_real) && $cond_lines > 1) {
2188 $stat_real = "[...]\n$stat_real";
2189 }
2190
2191 ERROR("trailing statements should be on next line\n" . $herecurr . $stat_real);
Andy Whitcroft8905a672007-11-28 16:21:06 -08002192 }
2193 }
2194
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002195# Check for bitwise tests written as boolean
2196 if ($line =~ /
2197 (?:
2198 (?:\[|\(|\&\&|\|\|)
2199 \s*0[xX][0-9]+\s*
2200 (?:\&\&|\|\|)
2201 |
2202 (?:\&\&|\|\|)
2203 \s*0[xX][0-9]+\s*
2204 (?:\&\&|\|\||\)|\])
2205 )/x)
2206 {
2207 WARN("boolean test with hexadecimal, perhaps just 1 \& or \|?\n" . $herecurr);
2208 }
2209
Andy Whitcroft8905a672007-11-28 16:21:06 -08002210# if and else should not have general statements after it
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002211 if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/) {
2212 my $s = $1;
2213 $s =~ s/$;//g; # Remove any comments
2214 if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) {
2215 ERROR("trailing statements should be on next line\n" . $herecurr);
2216 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002217 }
Andy Whitcroft39667782009-01-15 13:51:06 -08002218# if should not continue a brace
2219 if ($line =~ /}\s*if\b/) {
2220 ERROR("trailing statements should be on next line\n" .
2221 $herecurr);
2222 }
Andy Whitcrofta1080bf2008-10-15 22:02:25 -07002223# case and default should not have general statements after them
2224 if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
2225 $line !~ /\G(?:
Andy Whitcroft3fef12d2008-10-15 22:02:36 -07002226 (?:\s*$;*)(?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$|
Andy Whitcrofta1080bf2008-10-15 22:02:25 -07002227 \s*return\s+
2228 )/xg)
2229 {
2230 ERROR("trailing statements should be on next line\n" . $herecurr);
2231 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002232
2233 # Check for }<nl>else {, these must be at the same
2234 # indent level to be relevant to each other.
2235 if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ and
2236 $previndent == $indent) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002237 ERROR("else should follow close brace '}'\n" . $hereprev);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002238 }
2239
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002240 if ($prevline=~/}\s*$/ and $line=~/^.\s*while\s*/ and
2241 $previndent == $indent) {
2242 my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0);
2243
2244 # Find out what is on the end of the line after the
2245 # conditional.
Andy Whitcroft773647a2008-03-28 14:15:58 -07002246 substr($s, 0, length($c), '');
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002247 $s =~ s/\n.*//g;
2248
2249 if ($s =~ /^\s*;/) {
2250 ERROR("while should follow close brace '}'\n" . $hereprev);
2251 }
2252 }
2253
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002254#studly caps, commented out until figure out how to distinguish between use of existing and adding new
2255# if (($line=~/[\w_][a-z\d]+[A-Z]/) and !($line=~/print/)) {
2256# print "No studly caps, use _\n";
2257# print "$herecurr";
2258# $clean = 0;
2259# }
2260
2261#no spaces allowed after \ in define
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002262 if ($line=~/\#\s*define.*\\\s$/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002263 WARN("Whitepspace after \\ makes next lines useless\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002264 }
2265
Andy Whitcroft653d4872007-06-23 17:16:34 -07002266#warn if <asm/foo.h> is #included and <linux/foo.h> is available (uses RAW line)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002267 if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) {
Andy Whitcrofte09dec42008-10-15 22:02:20 -07002268 my $file = "$1.h";
2269 my $checkfile = "include/linux/$file";
2270 if (-f "$root/$checkfile" &&
2271 $realfile ne $checkfile &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002272 $1 ne 'irq')
2273 {
Andy Whitcrofte09dec42008-10-15 22:02:20 -07002274 if ($realfile =~ m{^arch/}) {
2275 CHK("Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
2276 } else {
2277 WARN("Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
2278 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002279 }
2280 }
2281
Andy Whitcroft653d4872007-06-23 17:16:34 -07002282# multi-statement macros should be enclosed in a do while loop, grab the
2283# first statement and ensure its the whole macro if its not enclosed
Andy Whitcroftcf655042008-03-04 14:28:20 -08002284# in a known good container
Andy Whitcroftb8f96a312008-07-23 21:29:07 -07002285 if ($realfile !~ m@/vmlinux.lds.h$@ &&
2286 $line =~ /^.\s*\#\s*define\s*$Ident(\()?/) {
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002287 my $ln = $linenr;
2288 my $cnt = $realcnt;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002289 my ($off, $dstat, $dcond, $rest);
2290 my $ctx = '';
Andy Whitcroft653d4872007-06-23 17:16:34 -07002291
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002292 my $args = defined($1);
2293
2294 # Find the end of the macro and limit our statement
2295 # search to that.
2296 while ($cnt > 0 && defined $lines[$ln - 1] &&
2297 $lines[$ln - 1] =~ /^(?:-|..*\\$)/)
2298 {
2299 $ctx .= $rawlines[$ln - 1] . "\n";
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -07002300 $cnt-- if ($lines[$ln - 1] !~ /^-/);
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002301 $ln++;
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002302 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002303 $ctx .= $rawlines[$ln - 1];
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002304
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002305 ($dstat, $dcond, $ln, $cnt, $off) =
2306 ctx_statement_block($linenr, $ln - $linenr + 1, 0);
2307 #print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n";
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -07002308 #print "LINE<$lines[$ln-1]> len<" . length($lines[$ln-1]) . "\n";
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002309
2310 # Extract the remainder of the define (if any) and
2311 # rip off surrounding spaces, and trailing \'s.
2312 $rest = '';
Andy Whitcroft636d140a2008-10-15 22:02:18 -07002313 while ($off != 0 || ($cnt > 0 && $rest =~ /\\\s*$/)) {
2314 #print "ADDING cnt<$cnt> $off <" . substr($lines[$ln - 1], $off) . "> rest<$rest>\n";
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -07002315 if ($off != 0 || $lines[$ln - 1] !~ /^-/) {
2316 $rest .= substr($lines[$ln - 1], $off) . "\n";
2317 $cnt--;
2318 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002319 $ln++;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002320 $off = 0;
2321 }
2322 $rest =~ s/\\\n.//g;
2323 $rest =~ s/^\s*//s;
2324 $rest =~ s/\s*$//s;
2325
2326 # Clean up the original statement.
2327 if ($args) {
2328 substr($dstat, 0, length($dcond), '');
2329 } else {
2330 $dstat =~ s/^.\s*\#\s*define\s+$Ident\s*//;
2331 }
Andy Whitcroft292f1a92008-07-23 21:29:11 -07002332 $dstat =~ s/$;//g;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002333 $dstat =~ s/\\\n.//g;
2334 $dstat =~ s/^\s*//s;
2335 $dstat =~ s/\s*$//s;
2336
2337 # Flatten any parentheses and braces
Andy Whitcroftbf30d6e2008-10-15 22:02:33 -07002338 while ($dstat =~ s/\([^\(\)]*\)/1/ ||
2339 $dstat =~ s/\{[^\{\}]*\}/1/ ||
2340 $dstat =~ s/\[[^\{\}]*\]/1/)
2341 {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002342 }
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002343
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002344 my $exceptions = qr{
2345 $Declare|
2346 module_param_named|
2347 MODULE_PARAM_DESC|
2348 DECLARE_PER_CPU|
2349 DEFINE_PER_CPU|
Andy Whitcroft383099f2009-01-06 14:41:18 -08002350 __typeof__\(|
Andy Whitcroftea71a0a2009-09-21 17:04:38 -07002351 \.$Ident\s*=\s*|
2352 ^\"|\"$
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002353 }x;
Andy Whitcroft383099f2009-01-06 14:41:18 -08002354 #print "REST<$rest> dstat<$dstat>\n";
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002355 if ($rest ne '') {
2356 if ($rest !~ /while\s*\(/ &&
2357 $dstat !~ /$exceptions/)
2358 {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002359 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 -07002360 }
2361
2362 } elsif ($ctx !~ /;/) {
2363 if ($dstat ne '' &&
2364 $dstat !~ /^(?:$Ident|-?$Constant)$/ &&
2365 $dstat !~ /$exceptions/ &&
Andy Whitcroftb132e5d2008-10-15 22:02:31 -07002366 $dstat !~ /^\.$Ident\s*=/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002367 $dstat =~ /$Operators/)
2368 {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002369 ERROR("Macros with complex values should be enclosed in parenthesis\n" . "$here\n$ctx\n");
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002370 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07002371 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002372 }
2373
Mike Frysinger080ba922009-01-06 14:41:25 -08002374# make sure symbols are always wrapped with VMLINUX_SYMBOL() ...
2375# all assignments may have only one of the following with an assignment:
2376# .
2377# ALIGN(...)
2378# VMLINUX_SYMBOL(...)
2379 if ($realfile eq 'vmlinux.lds.h' && $line =~ /(?:(?:^|\s)$Ident\s*=|=\s*$Ident(?:\s|$))/) {
2380 WARN("vmlinux.lds.h needs VMLINUX_SYMBOL() around C-visible symbols\n" . $herecurr);
2381 }
2382
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002383# check for redundant bracing round if etc
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002384 if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) {
2385 my ($level, $endln, @chunks) =
Andy Whitcroftcf655042008-03-04 14:28:20 -08002386 ctx_statement_full($linenr, $realcnt, 1);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002387 #print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08002388 #print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n";
2389 if ($#chunks > 0 && $level == 0) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002390 my $allowed = 0;
2391 my $seen = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07002392 my $herectx = $here . "\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08002393 my $ln = $linenr - 1;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002394 for my $chunk (@chunks) {
2395 my ($cond, $block) = @{$chunk};
2396
Andy Whitcroft773647a2008-03-28 14:15:58 -07002397 # If the condition carries leading newlines, then count those as offsets.
2398 my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s);
2399 my $offset = statement_rawlines($whitespace) - 1;
2400
2401 #print "COND<$cond> whitespace<$whitespace> offset<$offset>\n";
2402
2403 # We have looked at and allowed this specific line.
2404 $suppress_ifbraces{$ln + $offset} = 1;
2405
2406 $herectx .= "$rawlines[$ln + $offset]\n[...]\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08002407 $ln += statement_rawlines($block) - 1;
2408
Andy Whitcroft773647a2008-03-28 14:15:58 -07002409 substr($block, 0, length($cond), '');
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002410
2411 $seen++ if ($block =~ /^\s*{/);
2412
Andy Whitcroftcf655042008-03-04 14:28:20 -08002413 #print "cond<$cond> block<$block> allowed<$allowed>\n";
2414 if (statement_lines($cond) > 1) {
2415 #print "APW: ALLOWED: cond<$cond>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002416 $allowed = 1;
2417 }
2418 if ($block =~/\b(?:if|for|while)\b/) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08002419 #print "APW: ALLOWED: block<$block>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002420 $allowed = 1;
2421 }
Andy Whitcroftcf655042008-03-04 14:28:20 -08002422 if (statement_block_size($block) > 1) {
2423 #print "APW: ALLOWED: lines block<$block>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002424 $allowed = 1;
2425 }
2426 }
2427 if ($seen && !$allowed) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08002428 WARN("braces {} are not necessary for any arm of this statement\n" . $herectx);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002429 }
2430 }
2431 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002432 if (!defined $suppress_ifbraces{$linenr - 1} &&
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002433 $line =~ /\b(if|while|for|else)\b/) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08002434 my $allowed = 0;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002435
Andy Whitcroftcf655042008-03-04 14:28:20 -08002436 # Check the pre-context.
2437 if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) {
2438 #print "APW: ALLOWED: pre<$1>\n";
2439 $allowed = 1;
2440 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002441
2442 my ($level, $endln, @chunks) =
2443 ctx_statement_full($linenr, $realcnt, $-[0]);
2444
Andy Whitcroftcf655042008-03-04 14:28:20 -08002445 # Check the condition.
2446 my ($cond, $block) = @{$chunks[0]};
Andy Whitcroft773647a2008-03-28 14:15:58 -07002447 #print "CHECKING<$linenr> cond<$cond> block<$block>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08002448 if (defined $cond) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002449 substr($block, 0, length($cond), '');
Andy Whitcroftcf655042008-03-04 14:28:20 -08002450 }
2451 if (statement_lines($cond) > 1) {
2452 #print "APW: ALLOWED: cond<$cond>\n";
2453 $allowed = 1;
2454 }
2455 if ($block =~/\b(?:if|for|while)\b/) {
2456 #print "APW: ALLOWED: block<$block>\n";
2457 $allowed = 1;
2458 }
2459 if (statement_block_size($block) > 1) {
2460 #print "APW: ALLOWED: lines block<$block>\n";
2461 $allowed = 1;
2462 }
2463 # Check the post-context.
2464 if (defined $chunks[1]) {
2465 my ($cond, $block) = @{$chunks[1]};
2466 if (defined $cond) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002467 substr($block, 0, length($cond), '');
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002468 }
Andy Whitcroftcf655042008-03-04 14:28:20 -08002469 if ($block =~ /^\s*\{/) {
2470 #print "APW: ALLOWED: chunk-1 block<$block>\n";
2471 $allowed = 1;
2472 }
2473 }
2474 if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
2475 my $herectx = $here . "\n";;
Andy Whitcroftf0556632008-10-15 22:02:23 -07002476 my $cnt = statement_rawlines($block);
Andy Whitcroftcf655042008-03-04 14:28:20 -08002477
Andy Whitcroftf0556632008-10-15 22:02:23 -07002478 for (my $n = 0; $n < $cnt; $n++) {
2479 $herectx .= raw_line($linenr, $n) . "\n";;
Andy Whitcroftcf655042008-03-04 14:28:20 -08002480 }
2481
2482 WARN("braces {} are not necessary for single statement blocks\n" . $herectx);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002483 }
2484 }
2485
Andy Whitcroft653d4872007-06-23 17:16:34 -07002486# don't include deprecated include files (uses RAW line)
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002487 for my $inc (@dep_includes) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002488 if ($rawline =~ m@^.\s*\#\s*include\s*\<$inc>@) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002489 ERROR("Don't use <$inc>: see Documentation/feature-removal-schedule.txt\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002490 }
2491 }
2492
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002493# don't use deprecated functions
2494 for my $func (@dep_functions) {
Andy Whitcroft00df344f2007-06-08 13:47:06 -07002495 if ($line =~ /\b$func\b/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002496 ERROR("Don't use $func(): see Documentation/feature-removal-schedule.txt\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002497 }
2498 }
2499
2500# no volatiles please
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002501 my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
2502 if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002503 WARN("Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002504 }
2505
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002506# SPIN_LOCK_UNLOCKED & RW_LOCK_UNLOCKED are deprecated
2507 if ($line =~ /\b(SPIN_LOCK_UNLOCKED|RW_LOCK_UNLOCKED)/) {
2508 ERROR("Use of $1 is deprecated: see Documentation/spinlocks.txt\n" . $herecurr);
2509 }
2510
Andy Whitcroft00df344f2007-06-08 13:47:06 -07002511# warn about #if 0
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002512 if ($line =~ /^.\s*\#\s*if\s+0\b/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002513 CHK("if this code is redundant consider removing it\n" .
2514 $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002515 }
2516
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002517# check for needless kfree() checks
2518 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
2519 my $expr = $1;
2520 if ($line =~ /\bkfree\(\Q$expr\E\);/) {
Wolfram Sang3c232142008-07-23 21:29:05 -07002521 WARN("kfree(NULL) is safe this check is probably not required\n" . $hereprev);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002522 }
2523 }
Greg Kroah-Hartman4c432a82008-07-23 21:29:04 -07002524# check for needless usb_free_urb() checks
2525 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
2526 my $expr = $1;
2527 if ($line =~ /\busb_free_urb\(\Q$expr\E\);/) {
2528 WARN("usb_free_urb(NULL) is safe this check is probably not required\n" . $hereprev);
2529 }
2530 }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002531
Andy Whitcroft00df344f2007-06-08 13:47:06 -07002532# warn about #ifdefs in C files
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002533# if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
Andy Whitcroft00df344f2007-06-08 13:47:06 -07002534# print "#ifdef in C files should be avoided\n";
2535# print "$herecurr";
2536# $clean = 0;
2537# }
2538
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002539# warn about spacing in #ifdefs
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002540 if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) {
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002541 ERROR("exactly one space required after that #$1\n" . $herecurr);
2542 }
2543
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002544# check for spinlock_t definitions without a comment.
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002545 if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ ||
2546 $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002547 my $which = $1;
2548 if (!ctx_has_comment($first_line, $linenr)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002549 CHK("$1 definition without comment\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002550 }
2551 }
2552# check for memory barriers without a comment.
2553 if ($line =~ /\b(mb|rmb|wmb|read_barrier_depends|smp_mb|smp_rmb|smp_wmb|smp_read_barrier_depends)\(/) {
2554 if (!ctx_has_comment($first_line, $linenr)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002555 CHK("memory barrier without comment\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002556 }
2557 }
2558# check of hardware specific defines
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002559 if ($line =~ m@^.\s*\#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002560 CHK("architecture specific defines should be avoided\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002561 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07002562
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002563# check the location of the inline attribute, that it is between
2564# storage class and type.
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002565 if ($line =~ /\b$Type\s+$Inline\b/ ||
2566 $line =~ /\b$Inline\s+$Storage\b/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002567 ERROR("inline keyword should sit between storage class and type\n" . $herecurr);
2568 }
2569
Andy Whitcroft8905a672007-11-28 16:21:06 -08002570# Check for __inline__ and __inline, prefer inline
2571 if ($line =~ /\b(__inline__|__inline)\b/) {
2572 WARN("plain inline is preferred over $1\n" . $herecurr);
2573 }
2574
Joe Perches8f53a9b2010-03-05 13:43:48 -08002575# check for sizeof(&)
2576 if ($line =~ /\bsizeof\s*\(\s*\&/) {
2577 WARN("sizeof(& should be avoided\n" . $herecurr);
2578 }
2579
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002580# check for new externs in .c files.
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002581 if ($realfile =~ /\.c$/ && defined $stat &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002582 $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s)
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002583 {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002584 my $function_name = $1;
2585 my $paren_space = $2;
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002586
2587 my $s = $stat;
2588 if (defined $cond) {
2589 substr($s, 0, length($cond), '');
2590 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002591 if ($s =~ /^\s*;/ &&
2592 $function_name ne 'uninitialized_var')
2593 {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002594 WARN("externs should be avoided in .c files\n" . $herecurr);
2595 }
2596
2597 if ($paren_space =~ /\n/) {
2598 WARN("arguments for function declarations should follow identifier\n" . $herecurr);
2599 }
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07002600
2601 } elsif ($realfile =~ /\.c$/ && defined $stat &&
2602 $stat =~ /^.\s*extern\s+/)
2603 {
2604 WARN("externs should be avoided in .c files\n" . $herecurr);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002605 }
2606
2607# checks for new __setup's
2608 if ($rawline =~ /\b__setup\("([^"]*)"/) {
2609 my $name = $1;
2610
2611 if (!grep(/$name/, @setup_docs)) {
2612 CHK("__setup appears un-documented -- check Documentation/kernel-parameters.txt\n" . $herecurr);
2613 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07002614 }
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002615
2616# check for pointless casting of kmalloc return
2617 if ($line =~ /\*\s*\)\s*k[czm]alloc\b/) {
2618 WARN("unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
2619 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002620
2621# check for gcc specific __FUNCTION__
2622 if ($line =~ /__FUNCTION__/) {
2623 WARN("__func__ should be used instead of gcc specific __FUNCTION__\n" . $herecurr);
2624 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002625
2626# check for semaphores used as mutexes
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002627 if ($line =~ /^.\s*(DECLARE_MUTEX|init_MUTEX)\s*\(/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002628 WARN("mutexes are preferred for single holder semaphores\n" . $herecurr);
2629 }
2630# check for semaphores used as mutexes
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002631 if ($line =~ /^.\s*init_MUTEX_LOCKED\s*\(/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002632 WARN("consider using a completion\n" . $herecurr);
2633 }
2634# recommend strict_strto* over simple_strto*
2635 if ($line =~ /\bsimple_(strto.*?)\s*\(/) {
2636 WARN("consider using strict_$1 in preference to simple_$1\n" . $herecurr);
2637 }
Michael Ellermanf3db6632008-07-23 21:28:57 -07002638# check for __initcall(), use device_initcall() explicitly please
2639 if ($line =~ /^.\s*__initcall\s*\(/) {
2640 WARN("please use device_initcall() instead of __initcall()\n" . $herecurr);
2641 }
Andy Whitcroft2b6db5c2009-01-06 14:41:29 -08002642# check for struct file_operations, ensure they are const.
Andy Whitcroft6903ffb2009-01-15 13:51:07 -08002643 if ($line !~ /\bconst\b/ &&
2644 $line =~ /\bstruct\s+(file_operations|seq_operations)\b/) {
2645 WARN("struct $1 should normally be const\n" .
2646 $herecurr);
Andy Whitcroft2b6db5c2009-01-06 14:41:29 -08002647 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002648
2649# use of NR_CPUS is usually wrong
2650# ignore definitions of NR_CPUS and usage to define arrays as likely right
2651 if ($line =~ /\bNR_CPUS\b/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002652 $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ &&
2653 $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ &&
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002654 $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ &&
2655 $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ &&
2656 $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/)
Andy Whitcroft773647a2008-03-28 14:15:58 -07002657 {
2658 WARN("usage of NR_CPUS is often wrong - consider using cpu_possible(), num_possible_cpus(), for_each_possible_cpu(), etc\n" . $herecurr);
2659 }
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07002660
2661# check for %L{u,d,i} in strings
2662 my $string;
2663 while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) {
2664 $string = substr($rawline, $-[1], $+[1] - $-[1]);
Andy Whitcroft2a1bc5d2008-10-15 22:02:23 -07002665 $string =~ s/%%/__/g;
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07002666 if ($string =~ /(?<!%)%L[udi]/) {
2667 WARN("\%Ld/%Lu are not-standard C, use %lld/%llu\n" . $herecurr);
2668 last;
2669 }
2670 }
Andy Whitcroft691d77b2009-01-06 14:41:16 -08002671
2672# whine mightly about in_atomic
2673 if ($line =~ /\bin_atomic\s*\(/) {
2674 if ($realfile =~ m@^drivers/@) {
2675 ERROR("do not use in_atomic in drivers\n" . $herecurr);
Andy Whitcroftf4a87732009-02-27 14:03:05 -08002676 } elsif ($realfile !~ m@^kernel/@) {
Andy Whitcroft691d77b2009-01-06 14:41:16 -08002677 WARN("use of in_atomic() is incorrect outside core kernel code\n" . $herecurr);
2678 }
2679 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002680 }
2681
2682 # If we have no input at all, then there is nothing to report on
2683 # so just keep quiet.
2684 if ($#rawlines == -1) {
2685 exit(0);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002686 }
2687
Andy Whitcroft8905a672007-11-28 16:21:06 -08002688 # In mailback mode only produce a report in the negative, for
2689 # things that appear to be patches.
2690 if ($mailback && ($clean == 1 || !$is_patch)) {
2691 exit(0);
2692 }
2693
2694 # This is not a patch, and we are are in 'no-patch' mode so
2695 # just keep quiet.
2696 if (!$chk_patch && !$is_patch) {
2697 exit(0);
2698 }
2699
2700 if (!$is_patch) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002701 ERROR("Does not appear to be a unified-diff format patch\n");
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002702 }
2703 if ($is_patch && $chk_signoff && $signoff == 0) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002704 ERROR("Missing Signed-off-by: line(s)\n");
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002705 }
2706
Andy Whitcroft8905a672007-11-28 16:21:06 -08002707 print report_dump();
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002708 if ($summary && !($clean == 1 && $quiet == 1)) {
2709 print "$filename " if ($summary_file);
Andy Whitcroft8905a672007-11-28 16:21:06 -08002710 print "total: $cnt_error errors, $cnt_warn warnings, " .
2711 (($check)? "$cnt_chk checks, " : "") .
2712 "$cnt_lines lines checked\n";
2713 print "\n" if ($quiet == 0);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002714 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08002715
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002716 if ($clean == 1 && $quiet == 0) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002717 print "$vname has no obvious style problems and is ready for submission.\n"
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002718 }
2719 if ($clean == 0 && $quiet == 0) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002720 print "$vname has style problems, please review. If any of these errors\n";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002721 print "are false positives report them to the maintainer, see\n";
2722 print "CHECKPATCH in MAINTAINERS.\n";
2723 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002724
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002725 return $clean;
2726}