blob: e44ff91e811db8bb605f9e17520d8f860b748399 [file] [log] [blame]
Andy Whitcroft0a920b52007-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 Whitcroft00df3442007-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 Whitcroft0a920b52007-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 Whitcroft00df3442007-06-08 13:47:06 -070011$P =~ s@.*/@@g;
Andy Whitcroft0a920b52007-06-01 00:46:48 -070012
Andy Whitcroft5e8d8f62009-10-26 16:50:17 -070013my $V = '0.30';
Andy Whitcroft0a920b52007-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 Whitcroft0a920b52007-06-01 00:46:48 -070066GetOptions(
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070067 'q|quiet+' => \$quiet,
Andy Whitcroft0a920b52007-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 Whitcroft0a920b52007-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 Whitcroft0a920b52007-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 Whitcroftd2c0a232010-10-26 14:23:12 -0700106my $rpt_cleaners = 0;
107
Andy Whitcroft8905a672007-11-28 16:21:06 -0800108if ($terse) {
109 $emacs = 1;
110 $quiet++;
111}
112
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700113if ($tree) {
114 if (defined $root) {
115 if (!top_of_kernel_tree($root)) {
116 die "$P: $root: --root does not point at a valid tree\n";
117 }
118 } else {
119 if (top_of_kernel_tree('.')) {
120 $root = '.';
121 } elsif ($0 =~ m@(.*)/scripts/[^/]*$@ &&
122 top_of_kernel_tree($1)) {
123 $root = $1;
124 }
125 }
126
127 if (!defined $root) {
128 print "Must be run from the top-level dir. of a kernel tree\n";
129 exit(2);
130 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700131}
132
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700133my $emitted_corrupt = 0;
134
Andy Whitcroft2ceb5322009-10-26 16:50:14 -0700135our $Ident = qr{
136 [A-Za-z_][A-Za-z\d_]*
137 (?:\s*\#\#\s*[A-Za-z_][A-Za-z\d_]*)*
138 }x;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700139our $Storage = qr{extern|static|asmlinkage};
140our $Sparse = qr{
141 __user|
142 __kernel|
143 __force|
144 __iomem|
145 __must_check|
146 __init_refok|
Andy Whitcroft417495e2009-02-27 14:03:08 -0800147 __kprobes|
148 __ref
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700149 }x;
Wolfram Sang52131292010-03-05 13:43:51 -0800150
151# Notes to $Attribute:
152# We need \b after 'init' otherwise 'initconst' will cause a false positive in a check
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700153our $Attribute = qr{
154 const|
155 __read_mostly|
156 __kprobes|
Wolfram Sang52131292010-03-05 13:43:51 -0800157 __(?:mem|cpu|dev|)(?:initdata|initconst|init\b)|
Andy Whitcroft24e1d812008-10-15 22:02:18 -0700158 ____cacheline_aligned|
159 ____cacheline_aligned_in_smp|
Andy Whitcroft5fe3af12009-01-06 14:41:18 -0800160 ____cacheline_internodealigned_in_smp|
161 __weak
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700162 }x;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700163our $Modifier;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700164our $Inline = qr{inline|__always_inline|noinline};
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700165our $Member = qr{->$Ident|\.$Ident|\[[^]]*\]};
166our $Lval = qr{$Ident(?:$Member)*};
167
168our $Constant = qr{(?:[0-9]+|0x[0-9a-fA-F]+)[UL]*};
169our $Assignment = qr{(?:\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=)};
Andy Whitcroft86f9d052009-01-06 14:41:24 -0800170our $Compare = qr{<=|>=|==|!=|<|>};
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700171our $Operators = qr{
172 <=|>=|==|!=|
173 =>|->|<<|>>|<|>|!|~|
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800174 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700175 }x;
176
Andy Whitcroft8905a672007-11-28 16:21:06 -0800177our $NonptrType;
178our $Type;
179our $Declare;
180
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700181our $UTF8 = qr {
182 [\x09\x0A\x0D\x20-\x7E] # ASCII
183 | [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
184 | \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
185 | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
186 | \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
187 | \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
188 | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
189 | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
190}x;
191
Andy Whitcroft8ed22ca2008-10-15 22:02:32 -0700192our $typeTypedefs = qr{(?x:
Andy Whitcroftfb9e9092009-09-21 17:04:38 -0700193 (?:__)?(?:u|s|be|le)(?:8|16|32|64)|
Andy Whitcroft8ed22ca2008-10-15 22:02:32 -0700194 atomic_t
195)};
196
Joe Perches691e6692010-03-05 13:43:51 -0800197our $logFunctions = qr{(?x:
198 printk|
199 pr_(debug|dbg|vdbg|devel|info|warning|err|notice|alert|crit|emerg|cont)|
Joe Perches8bbea962010-08-09 17:21:01 -0700200 (dev|netdev|netif)_(printk|dbg|vdbg|info|warn|err|notice|alert|crit|emerg|WARN)|
Joe Perches691e6692010-03-05 13:43:51 -0800201 WARN|
202 panic
203)};
204
Andy Whitcroft8905a672007-11-28 16:21:06 -0800205our @typeList = (
206 qr{void},
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700207 qr{(?:unsigned\s+)?char},
208 qr{(?:unsigned\s+)?short},
209 qr{(?:unsigned\s+)?int},
210 qr{(?:unsigned\s+)?long},
211 qr{(?:unsigned\s+)?long\s+int},
212 qr{(?:unsigned\s+)?long\s+long},
213 qr{(?:unsigned\s+)?long\s+long\s+int},
Andy Whitcroft8905a672007-11-28 16:21:06 -0800214 qr{unsigned},
215 qr{float},
216 qr{double},
217 qr{bool},
Andy Whitcroft8905a672007-11-28 16:21:06 -0800218 qr{struct\s+$Ident},
219 qr{union\s+$Ident},
220 qr{enum\s+$Ident},
221 qr{${Ident}_t},
222 qr{${Ident}_handler},
223 qr{${Ident}_handler_fn},
224);
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700225our @modifierList = (
226 qr{fastcall},
227);
Andy Whitcroft8905a672007-11-28 16:21:06 -0800228
Wolfram Sang7840a942010-08-09 17:20:57 -0700229our $allowed_asm_includes = qr{(?x:
230 irq|
231 memory
232)};
233# memory.h: ARM has a custom one
234
Andy Whitcroft8905a672007-11-28 16:21:06 -0800235sub build_types {
Andy Whitcroftd2172eb2008-07-23 21:29:07 -0700236 my $mods = "(?x: \n" . join("|\n ", @modifierList) . "\n)";
237 my $all = "(?x: \n" . join("|\n ", @typeList) . "\n)";
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700238 $Modifier = qr{(?:$Attribute|$Sparse|$mods)};
Andy Whitcroft8905a672007-11-28 16:21:06 -0800239 $NonptrType = qr{
Andy Whitcroftd2172eb2008-07-23 21:29:07 -0700240 (?:$Modifier\s+|const\s+)*
Andy Whitcroftcf655042008-03-04 14:28:20 -0800241 (?:
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700242 (?:typeof|__typeof__)\s*\(\s*\**\s*$Ident\s*\)|
Andy Whitcroft8ed22ca2008-10-15 22:02:32 -0700243 (?:$typeTypedefs\b)|
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700244 (?:${all}\b)
Andy Whitcroftcf655042008-03-04 14:28:20 -0800245 )
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700246 (?:\s+$Modifier|\s+const)*
Andy Whitcroft8905a672007-11-28 16:21:06 -0800247 }x;
248 $Type = qr{
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700249 $NonptrType
Andy Whitcroft65863862009-01-06 14:41:21 -0800250 (?:[\s\*]+\s*const|[\s\*]+|(?:\s*\[\s*\])+)?
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700251 (?:\s+$Inline|\s+$Modifier)*
Andy Whitcroft8905a672007-11-28 16:21:06 -0800252 }x;
253 $Declare = qr{(?:$Storage\s+)?$Type};
254}
255build_types();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700256
257$chk_signoff = 0 if ($file);
258
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700259my @dep_includes = ();
260my @dep_functions = ();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700261my $removal = "Documentation/feature-removal-schedule.txt";
262if ($tree && -f "$root/$removal") {
Andy Whitcroft21caa132009-01-06 14:41:30 -0800263 open(my $REMOVE, '<', "$root/$removal") ||
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700264 die "$P: $removal: open failed - $!\n";
Andy Whitcroft21caa132009-01-06 14:41:30 -0800265 while (<$REMOVE>) {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700266 if (/^Check:\s+(.*\S)/) {
267 for my $entry (split(/[, ]+/, $1)) {
268 if ($entry =~ m@include/(.*)@) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700269 push(@dep_includes, $1);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700270
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700271 } elsif ($entry !~ m@/@) {
272 push(@dep_functions, $entry);
273 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700274 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700275 }
276 }
Andy Whitcroft21caa132009-01-06 14:41:30 -0800277 close($REMOVE);
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700278}
279
Andy Whitcroft00df3442007-06-08 13:47:06 -0700280my @rawlines = ();
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800281my @lines = ();
282my $vname;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700283for my $filename (@ARGV) {
Andy Whitcroft21caa132009-01-06 14:41:30 -0800284 my $FILE;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700285 if ($file) {
Andy Whitcroft21caa132009-01-06 14:41:30 -0800286 open($FILE, '-|', "diff -u /dev/null $filename") ||
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700287 die "$P: $filename: diff failed - $!\n";
Andy Whitcroft21caa132009-01-06 14:41:30 -0800288 } elsif ($filename eq '-') {
289 open($FILE, '<&STDIN');
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700290 } else {
Andy Whitcroft21caa132009-01-06 14:41:30 -0800291 open($FILE, '<', "$filename") ||
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700292 die "$P: $filename: open failed - $!\n";
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700293 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800294 if ($filename eq '-') {
295 $vname = 'Your patch';
296 } else {
297 $vname = $filename;
298 }
Andy Whitcroft21caa132009-01-06 14:41:30 -0800299 while (<$FILE>) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700300 chomp;
301 push(@rawlines, $_);
302 }
Andy Whitcroft21caa132009-01-06 14:41:30 -0800303 close($FILE);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800304 if (!process($filename)) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700305 $exit = 1;
306 }
307 @rawlines = ();
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800308 @lines = ();
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700309}
310
311exit($exit);
312
313sub top_of_kernel_tree {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700314 my ($root) = @_;
315
316 my @tree_check = (
317 "COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
318 "README", "Documentation", "arch", "include", "drivers",
319 "fs", "init", "ipc", "kernel", "lib", "scripts",
320 );
321
322 foreach my $check (@tree_check) {
323 if (! -e $root . '/' . $check) {
324 return 0;
325 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700326 }
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700327 return 1;
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700328}
329
330sub expand_tabs {
331 my ($str) = @_;
332
333 my $res = '';
334 my $n = 0;
335 for my $c (split(//, $str)) {
336 if ($c eq "\t") {
337 $res .= ' ';
338 $n++;
339 for (; ($n % 8) != 0; $n++) {
340 $res .= ' ';
341 }
342 next;
343 }
344 $res .= $c;
345 $n++;
346 }
347
348 return $res;
349}
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700350sub copy_spacing {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700351 (my $res = shift) =~ tr/\t/ /c;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700352 return $res;
353}
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700354
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700355sub line_stats {
356 my ($line) = @_;
357
358 # Drop the diff line leader and expand tabs
359 $line =~ s/^.//;
360 $line = expand_tabs($line);
361
362 # Pick the indent from the front of the line.
363 my ($white) = ($line =~ /^(\s*)/);
364
365 return (length($line), length($white));
366}
367
Andy Whitcroft773647a2008-03-28 14:15:58 -0700368my $sanitise_quote = '';
369
370sub sanitise_line_reset {
371 my ($in_comment) = @_;
372
373 if ($in_comment) {
374 $sanitise_quote = '*/';
375 } else {
376 $sanitise_quote = '';
377 }
378}
Andy Whitcroft00df3442007-06-08 13:47:06 -0700379sub sanitise_line {
380 my ($line) = @_;
381
382 my $res = '';
383 my $l = '';
384
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800385 my $qlen = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -0700386 my $off = 0;
387 my $c;
Andy Whitcroft00df3442007-06-08 13:47:06 -0700388
Andy Whitcroft773647a2008-03-28 14:15:58 -0700389 # Always copy over the diff marker.
390 $res = substr($line, 0, 1);
391
392 for ($off = 1; $off < length($line); $off++) {
393 $c = substr($line, $off, 1);
394
395 # Comments we are wacking completly including the begin
396 # and end, all to $;.
397 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
398 $sanitise_quote = '*/';
399
400 substr($res, $off, 2, "$;$;");
401 $off++;
402 next;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800403 }
Andy Whitcroft81bc0e02008-10-15 22:02:26 -0700404 if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700405 $sanitise_quote = '';
406 substr($res, $off, 2, "$;$;");
407 $off++;
408 next;
409 }
Daniel Walker113f04a2009-09-21 17:04:35 -0700410 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '//') {
411 $sanitise_quote = '//';
412
413 substr($res, $off, 2, $sanitise_quote);
414 $off++;
415 next;
416 }
Andy Whitcroft773647a2008-03-28 14:15:58 -0700417
418 # A \ in a string means ignore the next character.
419 if (($sanitise_quote eq "'" || $sanitise_quote eq '"') &&
420 $c eq "\\") {
421 substr($res, $off, 2, 'XX');
422 $off++;
423 next;
424 }
425 # Regular quotes.
426 if ($c eq "'" || $c eq '"') {
427 if ($sanitise_quote eq '') {
428 $sanitise_quote = $c;
429
430 substr($res, $off, 1, $c);
Andy Whitcroft00df3442007-06-08 13:47:06 -0700431 next;
Andy Whitcroft773647a2008-03-28 14:15:58 -0700432 } elsif ($sanitise_quote eq $c) {
433 $sanitise_quote = '';
Andy Whitcroft00df3442007-06-08 13:47:06 -0700434 }
435 }
Andy Whitcroft773647a2008-03-28 14:15:58 -0700436
Andy Whitcroftfae17da2009-01-06 14:41:20 -0800437 #print "c<$c> SQ<$sanitise_quote>\n";
Andy Whitcroft773647a2008-03-28 14:15:58 -0700438 if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") {
439 substr($res, $off, 1, $;);
Daniel Walker113f04a2009-09-21 17:04:35 -0700440 } elsif ($off != 0 && $sanitise_quote eq '//' && $c ne "\t") {
441 substr($res, $off, 1, $;);
Andy Whitcroft773647a2008-03-28 14:15:58 -0700442 } elsif ($off != 0 && $sanitise_quote && $c ne "\t") {
443 substr($res, $off, 1, 'X');
Andy Whitcroft00df3442007-06-08 13:47:06 -0700444 } else {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700445 substr($res, $off, 1, $c);
Andy Whitcroft00df3442007-06-08 13:47:06 -0700446 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800447 }
448
Daniel Walker113f04a2009-09-21 17:04:35 -0700449 if ($sanitise_quote eq '//') {
450 $sanitise_quote = '';
451 }
452
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800453 # The pathname on a #include may be surrounded by '<' and '>'.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700454 if ($res =~ /^.\s*\#\s*include\s+\<(.*)\>/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800455 my $clean = 'X' x length($1);
456 $res =~ s@\<.*\>@<$clean>@;
457
458 # The whole of a #error is a string.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700459 } elsif ($res =~ /^.\s*\#\s*(?:error|warning)\s+(.*)\b/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800460 my $clean = 'X' x length($1);
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700461 $res =~ s@(\#\s*(?:error|warning)\s+).*@$1$clean@;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800462 }
463
Andy Whitcroft00df3442007-06-08 13:47:06 -0700464 return $res;
465}
466
Andy Whitcroft8905a672007-11-28 16:21:06 -0800467sub ctx_statement_block {
468 my ($linenr, $remain, $off) = @_;
469 my $line = $linenr - 1;
470 my $blk = '';
471 my $soff = $off;
472 my $coff = $off - 1;
Andy Whitcroft773647a2008-03-28 14:15:58 -0700473 my $coff_set = 0;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800474
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800475 my $loff = 0;
476
Andy Whitcroft8905a672007-11-28 16:21:06 -0800477 my $type = '';
478 my $level = 0;
Andy Whitcrofta2750642009-01-15 13:51:04 -0800479 my @stack = ();
Andy Whitcroftcf655042008-03-04 14:28:20 -0800480 my $p;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800481 my $c;
482 my $len = 0;
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800483
484 my $remainder;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800485 while (1) {
Andy Whitcrofta2750642009-01-15 13:51:04 -0800486 @stack = (['', 0]) if ($#stack == -1);
487
Andy Whitcroft773647a2008-03-28 14:15:58 -0700488 #warn "CSB: blk<$blk> remain<$remain>\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -0800489 # If we are about to drop off the end, pull in more
490 # context.
491 if ($off >= $len) {
492 for (; $remain > 0; $line++) {
Andy Whitcroftdea33492008-10-15 22:02:25 -0700493 last if (!defined $lines[$line]);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800494 next if ($lines[$line] =~ /^-/);
Andy Whitcroft8905a672007-11-28 16:21:06 -0800495 $remain--;
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800496 $loff = $len;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800497 $blk .= $lines[$line] . "\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -0800498 $len = length($blk);
499 $line++;
500 last;
501 }
502 # Bail if there is no further context.
503 #warn "CSB: blk<$blk> off<$off> len<$len>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800504 if ($off >= $len) {
Andy Whitcroft8905a672007-11-28 16:21:06 -0800505 last;
506 }
507 }
Andy Whitcroftcf655042008-03-04 14:28:20 -0800508 $p = $c;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800509 $c = substr($blk, $off, 1);
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800510 $remainder = substr($blk, $off);
Andy Whitcroft8905a672007-11-28 16:21:06 -0800511
Andy Whitcroft773647a2008-03-28 14:15:58 -0700512 #warn "CSB: c<$c> type<$type> level<$level> remainder<$remainder> coff_set<$coff_set>\n";
Andy Whitcroft4635f4f2009-01-06 14:41:27 -0800513
514 # Handle nested #if/#else.
515 if ($remainder =~ /^#\s*(?:ifndef|ifdef|if)\s/) {
516 push(@stack, [ $type, $level ]);
517 } elsif ($remainder =~ /^#\s*(?:else|elif)\b/) {
518 ($type, $level) = @{$stack[$#stack - 1]};
519 } elsif ($remainder =~ /^#\s*endif\b/) {
520 ($type, $level) = @{pop(@stack)};
521 }
522
Andy Whitcroft8905a672007-11-28 16:21:06 -0800523 # Statement ends at the ';' or a close '}' at the
524 # outermost level.
525 if ($level == 0 && $c eq ';') {
526 last;
527 }
528
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800529 # An else is really a conditional as long as its not else if
Andy Whitcroft773647a2008-03-28 14:15:58 -0700530 if ($level == 0 && $coff_set == 0 &&
531 (!defined($p) || $p =~ /(?:\s|\}|\+)/) &&
532 $remainder =~ /^(else)(?:\s|{)/ &&
533 $remainder !~ /^else\s+if\b/) {
534 $coff = $off + length($1) - 1;
535 $coff_set = 1;
536 #warn "CSB: mark coff<$coff> soff<$soff> 1<$1>\n";
537 #warn "[" . substr($blk, $soff, $coff - $soff + 1) . "]\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800538 }
539
Andy Whitcroft8905a672007-11-28 16:21:06 -0800540 if (($type eq '' || $type eq '(') && $c eq '(') {
541 $level++;
542 $type = '(';
543 }
544 if ($type eq '(' && $c eq ')') {
545 $level--;
546 $type = ($level != 0)? '(' : '';
547
548 if ($level == 0 && $coff < $soff) {
549 $coff = $off;
Andy Whitcroft773647a2008-03-28 14:15:58 -0700550 $coff_set = 1;
551 #warn "CSB: mark coff<$coff>\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -0800552 }
553 }
554 if (($type eq '' || $type eq '{') && $c eq '{') {
555 $level++;
556 $type = '{';
557 }
558 if ($type eq '{' && $c eq '}') {
559 $level--;
560 $type = ($level != 0)? '{' : '';
561
562 if ($level == 0) {
Patrick Pannutob998e002010-08-09 17:21:03 -0700563 if (substr($blk, $off + 1, 1) eq ';') {
564 $off++;
565 }
Andy Whitcroft8905a672007-11-28 16:21:06 -0800566 last;
567 }
568 }
569 $off++;
570 }
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -0700571 # We are truly at the end, so shuffle to the next line.
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800572 if ($off == $len) {
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -0700573 $loff = $len + 1;
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800574 $line++;
575 $remain--;
576 }
Andy Whitcroft8905a672007-11-28 16:21:06 -0800577
578 my $statement = substr($blk, $soff, $off - $soff + 1);
579 my $condition = substr($blk, $soff, $coff - $soff + 1);
580
581 #warn "STATEMENT<$statement>\n";
582 #warn "CONDITION<$condition>\n";
583
Andy Whitcroft773647a2008-03-28 14:15:58 -0700584 #print "coff<$coff> soff<$off> loff<$loff>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800585
586 return ($statement, $condition,
587 $line, $remain + 1, $off - $loff + 1, $level);
588}
589
Andy Whitcroftcf655042008-03-04 14:28:20 -0800590sub statement_lines {
591 my ($stmt) = @_;
592
593 # Strip the diff line prefixes and rip blank lines at start and end.
594 $stmt =~ s/(^|\n)./$1/g;
595 $stmt =~ s/^\s*//;
596 $stmt =~ s/\s*$//;
597
598 my @stmt_lines = ($stmt =~ /\n/g);
599
600 return $#stmt_lines + 2;
601}
602
603sub statement_rawlines {
604 my ($stmt) = @_;
605
606 my @stmt_lines = ($stmt =~ /\n/g);
607
608 return $#stmt_lines + 2;
609}
610
611sub statement_block_size {
612 my ($stmt) = @_;
613
614 $stmt =~ s/(^|\n)./$1/g;
615 $stmt =~ s/^\s*{//;
616 $stmt =~ s/}\s*$//;
617 $stmt =~ s/^\s*//;
618 $stmt =~ s/\s*$//;
619
620 my @stmt_lines = ($stmt =~ /\n/g);
621 my @stmt_statements = ($stmt =~ /;/g);
622
623 my $stmt_lines = $#stmt_lines + 2;
624 my $stmt_statements = $#stmt_statements + 1;
625
626 if ($stmt_lines > $stmt_statements) {
627 return $stmt_lines;
628 } else {
629 return $stmt_statements;
630 }
631}
632
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800633sub ctx_statement_full {
634 my ($linenr, $remain, $off) = @_;
635 my ($statement, $condition, $level);
636
637 my (@chunks);
638
Andy Whitcroftcf655042008-03-04 14:28:20 -0800639 # Grab the first conditional/block pair.
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800640 ($statement, $condition, $linenr, $remain, $off, $level) =
641 ctx_statement_block($linenr, $remain, $off);
Andy Whitcroft773647a2008-03-28 14:15:58 -0700642 #print "F: c<$condition> s<$statement> remain<$remain>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -0800643 push(@chunks, [ $condition, $statement ]);
644 if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
645 return ($level, $linenr, @chunks);
646 }
647
648 # Pull in the following conditional/block pairs and see if they
649 # could continue the statement.
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800650 for (;;) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800651 ($statement, $condition, $linenr, $remain, $off, $level) =
652 ctx_statement_block($linenr, $remain, $off);
Andy Whitcroftcf655042008-03-04 14:28:20 -0800653 #print "C: c<$condition> s<$statement> remain<$remain>\n";
Andy Whitcroft773647a2008-03-28 14:15:58 -0700654 last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
Andy Whitcroftcf655042008-03-04 14:28:20 -0800655 #print "C: push\n";
656 push(@chunks, [ $condition, $statement ]);
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800657 }
658
659 return ($level, $linenr, @chunks);
Andy Whitcroft8905a672007-11-28 16:21:06 -0800660}
661
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700662sub ctx_block_get {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700663 my ($linenr, $remain, $outer, $open, $close, $off) = @_;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700664 my $line;
665 my $start = $linenr - 1;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700666 my $blk = '';
667 my @o;
668 my @c;
669 my @res = ();
670
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700671 my $level = 0;
Andy Whitcroft4635f4f2009-01-06 14:41:27 -0800672 my @stack = ($level);
Andy Whitcroft00df3442007-06-08 13:47:06 -0700673 for ($line = $start; $remain > 0; $line++) {
674 next if ($rawlines[$line] =~ /^-/);
675 $remain--;
676
677 $blk .= $rawlines[$line];
Andy Whitcroft4635f4f2009-01-06 14:41:27 -0800678
679 # Handle nested #if/#else.
680 if ($rawlines[$line] =~ /^.\s*#\s*(?:ifndef|ifdef|if)\s/) {
681 push(@stack, $level);
682 } elsif ($rawlines[$line] =~ /^.\s*#\s*(?:else|elif)\b/) {
683 $level = $stack[$#stack - 1];
684 } elsif ($rawlines[$line] =~ /^.\s*#\s*endif\b/) {
685 $level = pop(@stack);
686 }
687
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700688 foreach my $c (split(//, $rawlines[$line])) {
689 ##print "C<$c>L<$level><$open$close>O<$off>\n";
690 if ($off > 0) {
691 $off--;
692 next;
693 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700694
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700695 if ($c eq $close && $level > 0) {
696 $level--;
697 last if ($level == 0);
698 } elsif ($c eq $open) {
699 $level++;
700 }
701 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700702
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700703 if (!$outer || $level <= 1) {
Andy Whitcroft00df3442007-06-08 13:47:06 -0700704 push(@res, $rawlines[$line]);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700705 }
706
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700707 last if ($level == 0);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700708 }
709
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700710 return ($level, @res);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700711}
712sub ctx_block_outer {
713 my ($linenr, $remain) = @_;
714
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700715 my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0);
716 return @r;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700717}
718sub ctx_block {
719 my ($linenr, $remain) = @_;
720
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700721 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0);
722 return @r;
Andy Whitcroft653d4872007-06-23 17:16:34 -0700723}
724sub ctx_statement {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700725 my ($linenr, $remain, $off) = @_;
726
727 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
728 return @r;
729}
730sub ctx_block_level {
Andy Whitcroft653d4872007-06-23 17:16:34 -0700731 my ($linenr, $remain) = @_;
732
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700733 return ctx_block_get($linenr, $remain, 0, '{', '}', 0);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700734}
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700735sub ctx_statement_level {
736 my ($linenr, $remain, $off) = @_;
737
738 return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
739}
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700740
741sub ctx_locate_comment {
742 my ($first_line, $end_line) = @_;
743
744 # Catch a comment on the end of the line itself.
Andy Whitcroftbeae6332008-07-23 21:28:59 -0700745 my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700746 return $current_comment if (defined $current_comment);
747
748 # Look through the context and try and figure out if there is a
749 # comment.
750 my $in_comment = 0;
751 $current_comment = '';
752 for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
Andy Whitcroft00df3442007-06-08 13:47:06 -0700753 my $line = $rawlines[$linenr - 1];
754 #warn " $line\n";
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700755 if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
756 $in_comment = 1;
757 }
758 if ($line =~ m@/\*@) {
759 $in_comment = 1;
760 }
761 if (!$in_comment && $current_comment ne '') {
762 $current_comment = '';
763 }
764 $current_comment .= $line . "\n" if ($in_comment);
765 if ($line =~ m@\*/@) {
766 $in_comment = 0;
767 }
768 }
769
770 chomp($current_comment);
771 return($current_comment);
772}
773sub ctx_has_comment {
774 my ($first_line, $end_line) = @_;
775 my $cmt = ctx_locate_comment($first_line, $end_line);
776
Andy Whitcroft00df3442007-06-08 13:47:06 -0700777 ##print "LINE: $rawlines[$end_line - 1 ]\n";
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700778 ##print "CMMT: $cmt\n";
779
780 return ($cmt ne '');
781}
782
Andy Whitcroft4d001e42008-10-15 22:02:21 -0700783sub raw_line {
784 my ($linenr, $cnt) = @_;
785
786 my $offset = $linenr - 1;
787 $cnt++;
788
789 my $line;
790 while ($cnt) {
791 $line = $rawlines[$offset++];
792 next if (defined($line) && $line =~ /^-/);
793 $cnt--;
794 }
795
796 return $line;
797}
798
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700799sub cat_vet {
800 my ($vet) = @_;
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700801 my ($res, $coded);
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700802
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700803 $res = '';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700804 while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
805 $res .= $1;
806 if ($2 ne '') {
807 $coded = sprintf("^%c", unpack('C', $2) + 64);
808 $res .= $coded;
809 }
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700810 }
811 $res =~ s/$/\$/;
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700812
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700813 return $res;
Andy Whitcroft0a920b52007-06-01 00:46:48 -0700814}
815
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800816my $av_preprocessor = 0;
Andy Whitcroftcf655042008-03-04 14:28:20 -0800817my $av_pending;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800818my @av_paren_type;
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700819my $av_pend_colon;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800820
821sub annotate_reset {
822 $av_preprocessor = 0;
Andy Whitcroftcf655042008-03-04 14:28:20 -0800823 $av_pending = '_';
824 @av_paren_type = ('E');
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700825 $av_pend_colon = 'O';
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800826}
827
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700828sub annotate_values {
829 my ($stream, $type) = @_;
830
831 my $res;
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700832 my $var = '_' x length($stream);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700833 my $cur = $stream;
834
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800835 print "$stream\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700836
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700837 while (length($cur)) {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700838 @av_paren_type = ('E') if ($#av_paren_type < 0);
Andy Whitcroftcf655042008-03-04 14:28:20 -0800839 print " <" . join('', @av_paren_type) .
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700840 "> <$type> <$av_pending>" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700841 if ($cur =~ /^(\s+)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800842 print "WS($1)\n" if ($dbg_values > 1);
843 if ($1 =~ /\n/ && $av_preprocessor) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800844 $type = pop(@av_paren_type);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800845 $av_preprocessor = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700846 }
847
Andy Whitcroft9446ef52010-10-26 14:23:13 -0700848 } elsif ($cur =~ /^(\(\s*$Type\s*)\)/) {
849 print "CAST($1)\n" if ($dbg_values > 1);
850 push(@av_paren_type, $type);
851 $type = 'C';
852
Andy Whitcrofte91b6e22010-10-26 14:23:11 -0700853 } elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\(|\s*$)/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800854 print "DECLARE($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700855 $type = 'T';
856
Andy Whitcroft389a2fe2008-07-23 21:29:05 -0700857 } elsif ($cur =~ /^($Modifier)\s*/) {
858 print "MODIFIER($1)\n" if ($dbg_values > 1);
859 $type = 'T';
860
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700861 } elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700862 print "DEFINE($1,$2)\n" if ($dbg_values > 1);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800863 $av_preprocessor = 1;
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700864 push(@av_paren_type, $type);
865 if ($2 ne '') {
866 $av_pending = 'N';
867 }
868 $type = 'E';
869
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700870 } elsif ($cur =~ /^(\#\s*(?:undef\s*$Ident|include\b))/o) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700871 print "UNDEF($1)\n" if ($dbg_values > 1);
872 $av_preprocessor = 1;
873 push(@av_paren_type, $type);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700874
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700875 } elsif ($cur =~ /^(\#\s*(?:ifdef|ifndef|if))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800876 print "PRE_START($1)\n" if ($dbg_values > 1);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800877 $av_preprocessor = 1;
Andy Whitcroftcf655042008-03-04 14:28:20 -0800878
879 push(@av_paren_type, $type);
880 push(@av_paren_type, $type);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700881 $type = 'E';
Andy Whitcroftcf655042008-03-04 14:28:20 -0800882
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700883 } elsif ($cur =~ /^(\#\s*(?:else|elif))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800884 print "PRE_RESTART($1)\n" if ($dbg_values > 1);
885 $av_preprocessor = 1;
886
887 push(@av_paren_type, $av_paren_type[$#av_paren_type]);
888
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700889 $type = 'E';
Andy Whitcroftcf655042008-03-04 14:28:20 -0800890
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700891 } elsif ($cur =~ /^(\#\s*(?:endif))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800892 print "PRE_END($1)\n" if ($dbg_values > 1);
893
894 $av_preprocessor = 1;
895
896 # Assume all arms of the conditional end as this
897 # one does, and continue as if the #endif was not here.
898 pop(@av_paren_type);
899 push(@av_paren_type, $type);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700900 $type = 'E';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700901
902 } elsif ($cur =~ /^(\\\n)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800903 print "PRECONT($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700904
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700905 } elsif ($cur =~ /^(__attribute__)\s*\(?/o) {
906 print "ATTR($1)\n" if ($dbg_values > 1);
907 $av_pending = $type;
908 $type = 'N';
909
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700910 } elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800911 print "SIZEOF($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700912 if (defined $2) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800913 $av_pending = 'V';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700914 }
915 $type = 'N';
916
Andy Whitcroft14b111c2008-10-15 22:02:16 -0700917 } elsif ($cur =~ /^(if|while|for)\b/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800918 print "COND($1)\n" if ($dbg_values > 1);
Andy Whitcroft14b111c2008-10-15 22:02:16 -0700919 $av_pending = 'E';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700920 $type = 'N';
921
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700922 } elsif ($cur =~/^(case)/o) {
923 print "CASE($1)\n" if ($dbg_values > 1);
924 $av_pend_colon = 'C';
925 $type = 'N';
926
Andy Whitcroft14b111c2008-10-15 22:02:16 -0700927 } elsif ($cur =~/^(return|else|goto|typeof|__typeof__)\b/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800928 print "KEYWORD($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700929 $type = 'N';
930
931 } elsif ($cur =~ /^(\()/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800932 print "PAREN('$1')\n" if ($dbg_values > 1);
Andy Whitcroftcf655042008-03-04 14:28:20 -0800933 push(@av_paren_type, $av_pending);
934 $av_pending = '_';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700935 $type = 'N';
936
937 } elsif ($cur =~ /^(\))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -0800938 my $new_type = pop(@av_paren_type);
939 if ($new_type ne '_') {
940 $type = $new_type;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800941 print "PAREN('$1') -> $type\n"
942 if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700943 } else {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800944 print "PAREN('$1')\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700945 }
946
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700947 } elsif ($cur =~ /^($Ident)\s*\(/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800948 print "FUNC($1)\n" if ($dbg_values > 1);
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700949 $type = 'V';
Andy Whitcroftcf655042008-03-04 14:28:20 -0800950 $av_pending = 'V';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700951
Andy Whitcroft8e761b02009-01-06 14:41:19 -0800952 } elsif ($cur =~ /^($Ident\s*):(?:\s*\d+\s*(,|=|;))?/) {
953 if (defined $2 && $type eq 'C' || $type eq 'T') {
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700954 $av_pend_colon = 'B';
Andy Whitcroft8e761b02009-01-06 14:41:19 -0800955 } elsif ($type eq 'E') {
956 $av_pend_colon = 'L';
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700957 }
958 print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1);
959 $type = 'V';
960
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700961 } elsif ($cur =~ /^($Ident|$Constant)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800962 print "IDENT($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700963 $type = 'V';
964
965 } elsif ($cur =~ /^($Assignment)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800966 print "ASSIGN($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700967 $type = 'N';
968
Andy Whitcroftcf655042008-03-04 14:28:20 -0800969 } elsif ($cur =~/^(;|{|})/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800970 print "END($1)\n" if ($dbg_values > 1);
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800971 $type = 'E';
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700972 $av_pend_colon = 'O';
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800973
Andy Whitcroft8e761b02009-01-06 14:41:19 -0800974 } elsif ($cur =~/^(,)/) {
975 print "COMMA($1)\n" if ($dbg_values > 1);
976 $type = 'C';
977
Andy Whitcroft1f65f942008-07-23 21:29:10 -0700978 } elsif ($cur =~ /^(\?)/o) {
979 print "QUESTION($1)\n" if ($dbg_values > 1);
980 $type = 'N';
981
982 } elsif ($cur =~ /^(:)/o) {
983 print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1);
984
985 substr($var, length($res), 1, $av_pend_colon);
986 if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') {
987 $type = 'E';
988 } else {
989 $type = 'N';
990 }
991 $av_pend_colon = 'O';
992
Andy Whitcroft8e761b02009-01-06 14:41:19 -0800993 } elsif ($cur =~ /^(\[)/o) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800994 print "CLOSE($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700995 $type = 'N';
996
Andy Whitcroft0d413862008-10-15 22:02:16 -0700997 } elsif ($cur =~ /^(-(?![->])|\+(?!\+)|\*|\&\&|\&)/o) {
Andy Whitcroft74048ed2008-07-23 21:29:10 -0700998 my $variant;
999
1000 print "OPV($1)\n" if ($dbg_values > 1);
1001 if ($type eq 'V') {
1002 $variant = 'B';
1003 } else {
1004 $variant = 'U';
1005 }
1006
1007 substr($var, length($res), 1, $variant);
1008 $type = 'N';
1009
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001010 } elsif ($cur =~ /^($Operators)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001011 print "OP($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001012 if ($1 ne '++' && $1 ne '--') {
1013 $type = 'N';
1014 }
1015
1016 } elsif ($cur =~ /(^.)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001017 print "C($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001018 }
1019 if (defined $1) {
1020 $cur = substr($cur, length($1));
1021 $res .= $type x length($1);
1022 }
1023 }
1024
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001025 return ($res, $var);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001026}
1027
Andy Whitcroft8905a672007-11-28 16:21:06 -08001028sub possible {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001029 my ($possible, $line) = @_;
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001030 my $notPermitted = qr{(?:
Andy Whitcroft0776e592008-10-15 22:02:29 -07001031 ^(?:
1032 $Modifier|
1033 $Storage|
1034 $Type|
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001035 DEFINE_\S+
1036 )$|
1037 ^(?:
Andy Whitcroft0776e592008-10-15 22:02:29 -07001038 goto|
1039 return|
1040 case|
1041 else|
1042 asm|__asm__|
1043 do
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001044 )(?:\s|$)|
Andy Whitcroft0776e592008-10-15 22:02:29 -07001045 ^(?:typedef|struct|enum)\b
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001046 )}x;
1047 warn "CHECK<$possible> ($line)\n" if ($dbg_possible > 2);
1048 if ($possible !~ $notPermitted) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001049 # Check for modifiers.
1050 $possible =~ s/\s*$Storage\s*//g;
1051 $possible =~ s/\s*$Sparse\s*//g;
1052 if ($possible =~ /^\s*$/) {
1053
1054 } elsif ($possible =~ /\s/) {
1055 $possible =~ s/\s*$Type\s*//g;
Andy Whitcroftd2506582008-07-23 21:29:09 -07001056 for my $modifier (split(' ', $possible)) {
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001057 if ($modifier !~ $notPermitted) {
1058 warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
1059 push(@modifierList, $modifier);
1060 }
Andy Whitcroftd2506582008-07-23 21:29:09 -07001061 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001062
1063 } else {
1064 warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
1065 push(@typeList, $possible);
1066 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001067 build_types();
Andy Whitcroft0776e592008-10-15 22:02:29 -07001068 } else {
1069 warn "NOTPOSS: $possible ($line)\n" if ($dbg_possible > 1);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001070 }
1071}
1072
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001073my $prefix = '';
1074
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001075sub report {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001076 if (defined $tst_only && $_[0] !~ /\Q$tst_only\E/) {
1077 return 0;
1078 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001079 my $line = $prefix . $_[0];
1080
1081 $line = (split('\n', $line))[0] . "\n" if ($terse);
1082
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001083 push(our @report, $line);
Andy Whitcroft773647a2008-03-28 14:15:58 -07001084
1085 return 1;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001086}
1087sub report_dump {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001088 our @report;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001089}
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001090sub ERROR {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001091 if (report("ERROR: $_[0]\n")) {
1092 our $clean = 0;
1093 our $cnt_error++;
1094 }
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001095}
1096sub WARN {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001097 if (report("WARNING: $_[0]\n")) {
1098 our $clean = 0;
1099 our $cnt_warn++;
1100 }
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001101}
1102sub CHK {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001103 if ($check && report("CHECK: $_[0]\n")) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001104 our $clean = 0;
1105 our $cnt_chk++;
1106 }
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001107}
1108
Andy Whitcroft6ecd9672008-10-15 22:02:21 -07001109sub check_absolute_file {
1110 my ($absolute, $herecurr) = @_;
1111 my $file = $absolute;
1112
1113 ##print "absolute<$absolute>\n";
1114
1115 # See if any suffix of this path is a path within the tree.
1116 while ($file =~ s@^[^/]*/@@) {
1117 if (-f "$root/$file") {
1118 ##print "file<$file>\n";
1119 last;
1120 }
1121 }
1122 if (! -f _) {
1123 return 0;
1124 }
1125
1126 # It is, so see if the prefix is acceptable.
1127 my $prefix = $absolute;
1128 substr($prefix, -length($file)) = '';
1129
1130 ##print "prefix<$prefix>\n";
1131 if ($prefix ne ".../") {
1132 WARN("use relative pathname instead of absolute in changelog text\n" . $herecurr);
1133 }
1134}
1135
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001136sub process {
1137 my $filename = shift;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001138
1139 my $linenr=0;
1140 my $prevline="";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001141 my $prevrawline="";
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001142 my $stashline="";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001143 my $stashrawline="";
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001144
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001145 my $length;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001146 my $indent;
1147 my $previndent=0;
1148 my $stashindent=0;
1149
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001150 our $clean = 1;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001151 my $signoff = 0;
1152 my $is_patch = 0;
1153
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001154 our @report = ();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001155 our $cnt_lines = 0;
1156 our $cnt_error = 0;
1157 our $cnt_warn = 0;
1158 our $cnt_chk = 0;
1159
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001160 # Trace the real file/line as we go.
1161 my $realfile = '';
1162 my $realline = 0;
1163 my $realcnt = 0;
1164 my $here = '';
1165 my $in_comment = 0;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001166 my $comment_edge = 0;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001167 my $first_line = 0;
Wolfram Sang1e855722009-01-06 14:41:24 -08001168 my $p1_prefix = '';
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001169
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001170 my $prev_values = 'E';
1171
1172 # suppression flags
Andy Whitcroft773647a2008-03-28 14:15:58 -07001173 my %suppress_ifbraces;
Andy Whitcroft170d3a22008-10-15 22:02:30 -07001174 my %suppress_whiletrailers;
Andy Whitcroft2b474a12009-10-26 16:50:16 -07001175 my %suppress_export;
Andy Whitcroft653d4872007-06-23 17:16:34 -07001176
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001177 # Pre-scan the patch sanitizing the lines.
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001178 # Pre-scan the patch looking for any __setup documentation.
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001179 #
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001180 my @setup_docs = ();
1181 my $setup_docs = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001182
1183 sanitise_line_reset();
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001184 my $line;
1185 foreach my $rawline (@rawlines) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001186 $linenr++;
1187 $line = $rawline;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001188
Andy Whitcroft773647a2008-03-28 14:15:58 -07001189 if ($rawline=~/^\+\+\+\s+(\S+)/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001190 $setup_docs = 0;
1191 if ($1 =~ m@Documentation/kernel-parameters.txt$@) {
1192 $setup_docs = 1;
1193 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001194 #next;
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001195 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001196 if ($rawline=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
1197 $realline=$1-1;
1198 if (defined $2) {
1199 $realcnt=$3+1;
1200 } else {
1201 $realcnt=1+1;
1202 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001203 $in_comment = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001204
1205 # Guestimate if this is a continuing comment. Run
1206 # the context looking for a comment "edge". If this
1207 # edge is a close comment then we must be in a comment
1208 # at context start.
1209 my $edge;
Andy Whitcroft01fa9142008-10-15 22:02:19 -07001210 my $cnt = $realcnt;
1211 for (my $ln = $linenr + 1; $cnt > 0; $ln++) {
1212 next if (defined $rawlines[$ln - 1] &&
1213 $rawlines[$ln - 1] =~ /^-/);
1214 $cnt--;
1215 #print "RAW<$rawlines[$ln - 1]>\n";
Andy Whitcroft721c1cb2009-01-06 14:41:16 -08001216 last if (!defined $rawlines[$ln - 1]);
Andy Whitcroftfae17da2009-01-06 14:41:20 -08001217 if ($rawlines[$ln - 1] =~ m@(/\*|\*/)@ &&
1218 $rawlines[$ln - 1] !~ m@"[^"]*(?:/\*|\*/)[^"]*"@) {
1219 ($edge) = $1;
1220 last;
1221 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001222 }
1223 if (defined $edge && $edge eq '*/') {
1224 $in_comment = 1;
1225 }
1226
1227 # Guestimate if this is a continuing comment. If this
1228 # is the start of a diff block and this line starts
1229 # ' *' then it is very likely a comment.
1230 if (!defined $edge &&
Andy Whitcroft83242e02009-01-06 14:41:17 -08001231 $rawlines[$linenr] =~ m@^.\s*(?:\*\*+| \*)(?:\s|$)@)
Andy Whitcroft773647a2008-03-28 14:15:58 -07001232 {
1233 $in_comment = 1;
1234 }
1235
1236 ##print "COMMENT:$in_comment edge<$edge> $rawline\n";
1237 sanitise_line_reset($in_comment);
1238
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001239 } elsif ($realcnt && $rawline =~ /^(?:\+| |$)/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001240 # Standardise the strings and chars within the input to
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001241 # simplify matching -- only bother with positive lines.
Andy Whitcroft773647a2008-03-28 14:15:58 -07001242 $line = sanitise_line($rawline);
1243 }
1244 push(@lines, $line);
1245
1246 if ($realcnt > 1) {
1247 $realcnt-- if ($line =~ /^(?:\+| |$)/);
1248 } else {
1249 $realcnt = 0;
1250 }
1251
1252 #print "==>$rawline\n";
1253 #print "-->$line\n";
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001254
1255 if ($setup_docs && $line =~ /^\+/) {
1256 push(@setup_docs, $line);
1257 }
1258 }
1259
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001260 $prefix = '';
1261
Andy Whitcroft773647a2008-03-28 14:15:58 -07001262 $realcnt = 0;
1263 $linenr = 0;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001264 foreach my $line (@lines) {
1265 $linenr++;
1266
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001267 my $rawline = $rawlines[$linenr - 1];
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001268
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001269#extract the line range in the file after the patch is applied
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001270 if ($line=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001271 $is_patch = 1;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001272 $first_line = $linenr + 1;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001273 $realline=$1-1;
1274 if (defined $2) {
1275 $realcnt=$3+1;
1276 } else {
1277 $realcnt=1+1;
1278 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001279 annotate_reset();
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001280 $prev_values = 'E';
1281
Andy Whitcroft773647a2008-03-28 14:15:58 -07001282 %suppress_ifbraces = ();
Andy Whitcroft170d3a22008-10-15 22:02:30 -07001283 %suppress_whiletrailers = ();
Andy Whitcroft2b474a12009-10-26 16:50:16 -07001284 %suppress_export = ();
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001285 next;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001286
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001287# track the line number as we move through the hunk, note that
1288# new versions of GNU diff omit the leading space on completely
1289# blank context lines so we need to count that too.
Andy Whitcroft773647a2008-03-28 14:15:58 -07001290 } elsif ($line =~ /^( |\+|$)/) {
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001291 $realline++;
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001292 $realcnt-- if ($realcnt != 0);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001293
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001294 # Measure the line length and indent.
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001295 ($length, $indent) = line_stats($rawline);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001296
1297 # Track the previous line.
1298 ($prevline, $stashline) = ($stashline, $line);
1299 ($previndent, $stashindent) = ($stashindent, $indent);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001300 ($prevrawline, $stashrawline) = ($stashrawline, $rawline);
1301
Andy Whitcroft773647a2008-03-28 14:15:58 -07001302 #warn "line<$line>\n";
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001303
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001304 } elsif ($realcnt == 1) {
1305 $realcnt--;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001306 }
1307
Andy Whitcroftcc77cdc2009-10-26 16:50:13 -07001308 my $hunk_line = ($realcnt != 0);
1309
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001310#make up the handle for any error we report on this line
Andy Whitcroft773647a2008-03-28 14:15:58 -07001311 $prefix = "$filename:$realline: " if ($emacs && $file);
1312 $prefix = "$filename:$linenr: " if ($emacs && !$file);
1313
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001314 $here = "#$linenr: " if (!$file);
1315 $here = "#$realline: " if ($file);
Andy Whitcroft773647a2008-03-28 14:15:58 -07001316
1317 # extract the filename as it passes
1318 if ($line=~/^\+\+\+\s+(\S+)/) {
1319 $realfile = $1;
Wolfram Sang1e855722009-01-06 14:41:24 -08001320 $realfile =~ s@^([^/]*)/@@;
1321
1322 $p1_prefix = $1;
Andy Whitcrofte2f7aa42009-02-27 14:03:06 -08001323 if (!$file && $tree && $p1_prefix ne '' &&
1324 -e "$root/$p1_prefix") {
Wolfram Sang1e855722009-01-06 14:41:24 -08001325 WARN("patch prefix '$p1_prefix' exists, appears to be a -p0 patch\n");
1326 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001327
Andy Whitcroftc1ab3322008-10-15 22:02:20 -07001328 if ($realfile =~ m@^include/asm/@) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001329 ERROR("do not modify files in include/asm, change architecture specific files in include/asm-<architecture>\n" . "$here$rawline\n");
1330 }
1331 next;
1332 }
1333
Randy Dunlap389834b2007-06-08 13:47:03 -07001334 $here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001335
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001336 my $hereline = "$here\n$rawline\n";
1337 my $herecurr = "$here\n$rawline\n";
1338 my $hereprev = "$here\n$prevrawline\n$rawline\n";
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001339
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001340 $cnt_lines++ if ($realcnt != 0);
1341
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001342#check the patch for a signoff:
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001343 if ($line =~ /^\s*signed-off-by:/i) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001344 # This is a signoff, if ugly, so do not double report.
1345 $signoff++;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001346 if (!($line =~ /^\s*Signed-off-by:/)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001347 WARN("Signed-off-by: is the preferred form\n" .
1348 $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001349 }
1350 if ($line =~ /^\s*signed-off-by:\S/i) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001351 WARN("space required after Signed-off-by:\n" .
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001352 $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001353 }
1354 }
1355
Andy Whitcroft00df3442007-06-08 13:47:06 -07001356# Check for wrappage within a valid hunk of the file
Andy Whitcroft8905a672007-11-28 16:21:06 -08001357 if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001358 ERROR("patch seems to be corrupt (line wrapped?)\n" .
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001359 $herecurr) if (!$emitted_corrupt++);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001360 }
1361
Andy Whitcroft6ecd9672008-10-15 22:02:21 -07001362# Check for absolute kernel paths.
1363 if ($tree) {
1364 while ($line =~ m{(?:^|\s)(/\S*)}g) {
1365 my $file = $1;
1366
1367 if ($file =~ m{^(.*?)(?::\d+)+:?$} &&
1368 check_absolute_file($1, $herecurr)) {
1369 #
1370 } else {
1371 check_absolute_file($file, $herecurr);
1372 }
1373 }
1374 }
1375
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001376# UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
1377 if (($realfile =~ /^$/ || $line =~ /^\+/) &&
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001378 $rawline !~ m/^$UTF8*$/) {
1379 my ($utf8_prefix) = ($rawline =~ /^($UTF8*)/);
1380
1381 my $blank = copy_spacing($rawline);
1382 my $ptr = substr($blank, 0, length($utf8_prefix)) . "^";
1383 my $hereptr = "$hereline$ptr\n";
1384
1385 ERROR("Invalid UTF-8, patch and commit message should be encoded in UTF-8\n" . $hereptr);
Andy Whitcroft00df3442007-06-08 13:47:06 -07001386 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001387
Andy Whitcroft306708542008-10-15 22:02:28 -07001388# ignore non-hunk lines and lines being removed
1389 next if (!$hunk_line || $line =~ /^-/);
Andy Whitcroft00df3442007-06-08 13:47:06 -07001390
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001391#trailing whitespace
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001392 if ($line =~ /^\+.*\015/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001393 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001394 ERROR("DOS line endings\n" . $herevet);
1395
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001396 } elsif ($rawline =~ /^\+.*\S\s+$/ || $rawline =~ /^\+\s+$/) {
1397 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001398 ERROR("trailing whitespace\n" . $herevet);
Andy Whitcroftd2c0a232010-10-26 14:23:12 -07001399 $rpt_cleaners = 1;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001400 }
Andy Whitcroft5368df22008-10-15 22:02:27 -07001401
Andi Kleen33549572010-05-24 14:33:29 -07001402# check for Kconfig help text having a real description
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07001403# Only applies when adding the entry originally, after that we do not have
1404# sufficient context to determine whether it is indeed long enough.
Andi Kleen33549572010-05-24 14:33:29 -07001405 if ($realfile =~ /Kconfig/ &&
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07001406 $line =~ /\+\s*(?:---)?help(?:---)?$/) {
Andi Kleen33549572010-05-24 14:33:29 -07001407 my $length = 0;
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07001408 my $cnt = $realcnt;
1409 my $ln = $linenr + 1;
1410 my $f;
1411 my $is_end = 0;
1412 while ($cnt > 0 && defined $lines[$ln - 1]) {
1413 $f = $lines[$ln - 1];
1414 $cnt-- if ($lines[$ln - 1] !~ /^-/);
1415 $is_end = $lines[$ln - 1] =~ /^\+/;
1416 $ln++;
1417
1418 next if ($f =~ /^-/);
1419 $f =~ s/^.//;
Andi Kleen33549572010-05-24 14:33:29 -07001420 $f =~ s/#.*//;
1421 $f =~ s/^\s+//;
1422 next if ($f =~ /^$/);
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07001423 if ($f =~ /^\s*config\s/) {
1424 $is_end = 1;
1425 last;
1426 }
Andi Kleen33549572010-05-24 14:33:29 -07001427 $length++;
1428 }
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07001429 WARN("please write a paragraph that describes the config symbol fully\n" . $herecurr) if ($is_end && $length < 4);
1430 #print "is_end<$is_end> length<$length>\n";
Andi Kleen33549572010-05-24 14:33:29 -07001431 }
1432
Andy Whitcroft5368df22008-10-15 22:02:27 -07001433# check we are in a valid source file if not then ignore this hunk
1434 next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/);
1435
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001436#80 column limit
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001437 if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ &&
Andy Whitcroftf4c014c2008-07-23 21:29:01 -07001438 $rawline !~ /^.\s*\*\s*\@$Ident\s/ &&
Joe Perches8bbea962010-08-09 17:21:01 -07001439 !($line =~ /^\+\s*$logFunctions\s*\(\s*(?:(KERN_\S+\s*|[^"]*))?"[X\t]*"\s*(?:,|\)\s*;)\s*$/ ||
1440 $line =~ /^\+\s*"[^"]*"\s*(?:\s*|,|\)\s*;)\s*$/) &&
Andy Whitcroftf4c014c2008-07-23 21:29:01 -07001441 $length > 80)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001442 {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001443 WARN("line over 80 characters\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001444 }
1445
Joe Perches5e79d962010-03-05 13:43:55 -08001446# check for spaces before a quoted newline
1447 if ($rawline =~ /^.*\".*\s\\n/) {
1448 WARN("unnecessary whitespace before a quoted newline\n" . $herecurr);
1449 }
1450
Andy Whitcroft8905a672007-11-28 16:21:06 -08001451# check for adding lines without a newline.
1452 if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
1453 WARN("adding a line without newline at end of file\n" . $herecurr);
1454 }
1455
Mike Frysinger42e41c52009-09-21 17:04:40 -07001456# Blackfin: use hi/lo macros
1457 if ($realfile =~ m@arch/blackfin/.*\.S$@) {
1458 if ($line =~ /\.[lL][[:space:]]*=.*&[[:space:]]*0x[fF][fF][fF][fF]/) {
1459 my $herevet = "$here\n" . cat_vet($line) . "\n";
1460 ERROR("use the LO() macro, not (... & 0xFFFF)\n" . $herevet);
1461 }
1462 if ($line =~ /\.[hH][[:space:]]*=.*>>[[:space:]]*16/) {
1463 my $herevet = "$here\n" . cat_vet($line) . "\n";
1464 ERROR("use the HI() macro, not (... >> 16)\n" . $herevet);
1465 }
1466 }
1467
Andy Whitcroftb9ea10d2008-10-15 22:02:24 -07001468# check we are in a valid source file C or perl if not then ignore this hunk
1469 next if ($realfile !~ /\.(h|c|pl)$/);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001470
1471# at the beginning of a line any tabs must come first and anything
1472# more than 8 must use tabs.
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001473 if ($rawline =~ /^\+\s* \t\s*\S/ ||
1474 $rawline =~ /^\+\s* \s*/) {
1475 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001476 ERROR("code indent should use tabs where possible\n" . $herevet);
Andy Whitcroftd2c0a232010-10-26 14:23:12 -07001477 $rpt_cleaners = 1;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001478 }
1479
Alberto Panizzo08e44362010-03-05 13:43:54 -08001480# check for space before tabs.
1481 if ($rawline =~ /^\+/ && $rawline =~ / \t/) {
1482 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
1483 WARN("please, no space before tabs\n" . $herevet);
1484 }
1485
Raffaele Recalcati5f7ddae2010-08-09 17:20:59 -07001486# check for spaces at the beginning of a line.
Andy Whitcroft6b4c5be2010-10-26 14:23:11 -07001487# Exceptions:
1488# 1) within comments
1489# 2) indented preprocessor commands
1490# 3) hanging labels
1491 if ($rawline =~ /^\+ / && $line !~ /\+ *(?:$;|#|$Ident:)/) {
Raffaele Recalcati5f7ddae2010-08-09 17:20:59 -07001492 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Andy Whitcroft6b4c5be2010-10-26 14:23:11 -07001493 WARN("please, no spaces at the start of a line\n" . $herevet);
Raffaele Recalcati5f7ddae2010-08-09 17:20:59 -07001494 }
1495
Andy Whitcroftb9ea10d2008-10-15 22:02:24 -07001496# check we are in a valid C source file if not then ignore this hunk
1497 next if ($realfile !~ /\.(h|c)$/);
1498
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001499# check for RCS/CVS revision markers
Andy Whitcroftcf655042008-03-04 14:28:20 -08001500 if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001501 WARN("CVS style keyword markers, these will _not_ be updated\n". $herecurr);
1502 }
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001503
Mike Frysinger42e41c52009-09-21 17:04:40 -07001504# Blackfin: don't use __builtin_bfin_[cs]sync
1505 if ($line =~ /__builtin_bfin_csync/) {
1506 my $herevet = "$here\n" . cat_vet($line) . "\n";
1507 ERROR("use the CSYNC() macro in asm/blackfin.h\n" . $herevet);
1508 }
1509 if ($line =~ /__builtin_bfin_ssync/) {
1510 my $herevet = "$here\n" . cat_vet($line) . "\n";
1511 ERROR("use the SSYNC() macro in asm/blackfin.h\n" . $herevet);
1512 }
1513
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001514# Check for potential 'bare' types
Andy Whitcroft2b474a12009-10-26 16:50:16 -07001515 my ($stat, $cond, $line_nr_next, $remain_next, $off_next,
1516 $realline_next);
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07001517 if ($realcnt && $line =~ /.\s*\S/) {
Andy Whitcroft170d3a22008-10-15 22:02:30 -07001518 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
Andy Whitcroftf5fe35d2008-07-23 21:29:03 -07001519 ctx_statement_block($linenr, $realcnt, 0);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001520 $stat =~ s/\n./\n /g;
1521 $cond =~ s/\n./\n /g;
1522
Andy Whitcroft2b474a12009-10-26 16:50:16 -07001523 # Find the real next line.
1524 $realline_next = $line_nr_next;
1525 if (defined $realline_next &&
1526 (!defined $lines[$realline_next - 1] ||
1527 substr($lines[$realline_next - 1], $off_next) =~ /^\s*$/)) {
1528 $realline_next++;
1529 }
1530
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001531 my $s = $stat;
1532 $s =~ s/{.*$//s;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001533
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001534 # Ignore goto labels.
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001535 if ($s =~ /$Ident:\*$/s) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001536
1537 # Ignore functions being called
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001538 } elsif ($s =~ /^.\s*$Ident\s*\(/s) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001539
Andy Whitcroft463f2862009-09-21 17:04:34 -07001540 } elsif ($s =~ /^.\s*else\b/s) {
1541
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001542 # declarations always start with types
Andy Whitcroftd2506582008-07-23 21:29:09 -07001543 } 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 -07001544 my $type = $1;
1545 $type =~ s/\s+/ /g;
1546 possible($type, "A:" . $s);
1547
Andy Whitcroft8905a672007-11-28 16:21:06 -08001548 # definitions in global scope can only start with types
Andy Whitcrofta6a84062008-10-15 22:02:30 -07001549 } elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b\s*(?!:)/s) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001550 possible($1, "B:" . $s);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001551 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001552
1553 # any (foo ... *) is a pointer cast, and foo is a type
Andy Whitcroft65863862009-01-06 14:41:21 -08001554 while ($s =~ /\(($Ident)(?:\s+$Sparse)*[\s\*]+\s*\)/sg) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001555 possible($1, "C:" . $s);
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001556 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001557
1558 # Check for any sort of function declaration.
1559 # int foo(something bar, other baz);
1560 # void (*store_gdt)(x86_descr_ptr *);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001561 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 -08001562 my ($name_len) = length($1);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001563
Andy Whitcroftcf655042008-03-04 14:28:20 -08001564 my $ctx = $s;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001565 substr($ctx, 0, $name_len + 1, '');
Andy Whitcroft8905a672007-11-28 16:21:06 -08001566 $ctx =~ s/\)[^\)]*$//;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001567
Andy Whitcroft8905a672007-11-28 16:21:06 -08001568 for my $arg (split(/\s*,\s*/, $ctx)) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001569 if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$/s) {
Andy Whitcroft8905a672007-11-28 16:21:06 -08001570
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001571 possible($1, "D:" . $s);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001572 }
1573 }
1574 }
1575
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001576 }
1577
Andy Whitcroft653d4872007-06-23 17:16:34 -07001578#
1579# Checks which may be anchored in the context.
1580#
1581
1582# Check for switch () and associated case and default
1583# statements should be at the same indent.
Andy Whitcroft00df3442007-06-08 13:47:06 -07001584 if ($line=~/\bswitch\s*\(.*\)/) {
1585 my $err = '';
1586 my $sep = '';
1587 my @ctx = ctx_block_outer($linenr, $realcnt);
1588 shift(@ctx);
1589 for my $ctx (@ctx) {
1590 my ($clen, $cindent) = line_stats($ctx);
1591 if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
1592 $indent != $cindent) {
1593 $err .= "$sep$ctx\n";
1594 $sep = '';
1595 } else {
1596 $sep = "[...]\n";
1597 }
1598 }
1599 if ($err ne '') {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001600 ERROR("switch and case should be at the same indent\n$hereline$err");
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001601 }
1602 }
1603
1604# if/while/etc brace do not go on next line, unless defining a do while loop,
1605# or if that brace on the next line is for something else
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001606 if ($line =~ /(.*)\b((?:if|while|for|switch)\s*\(|do\b|else\b)/ && $line !~ /^.\s*\#/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001607 my $pre_ctx = "$1$2";
1608
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001609 my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001610 my $ctx_cnt = $realcnt - $#ctx - 1;
1611 my $ctx = join("\n", @ctx);
1612
Andy Whitcroft548596d2008-07-23 21:29:01 -07001613 my $ctx_ln = $linenr;
1614 my $ctx_skip = $realcnt;
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001615
Andy Whitcroft548596d2008-07-23 21:29:01 -07001616 while ($ctx_skip > $ctx_cnt || ($ctx_skip == $ctx_cnt &&
1617 defined $lines[$ctx_ln - 1] &&
1618 $lines[$ctx_ln - 1] =~ /^-/)) {
1619 ##print "SKIP<$ctx_skip> CNT<$ctx_cnt>\n";
1620 $ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/);
Andy Whitcroft773647a2008-03-28 14:15:58 -07001621 $ctx_ln++;
1622 }
Andy Whitcroft548596d2008-07-23 21:29:01 -07001623
Andy Whitcroft53210162008-07-23 21:29:03 -07001624 #print "realcnt<$realcnt> ctx_cnt<$ctx_cnt>\n";
1625 #print "pre<$pre_ctx>\nline<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>\n";
Andy Whitcroft773647a2008-03-28 14:15:58 -07001626
1627 if ($ctx !~ /{\s*/ && defined($lines[$ctx_ln -1]) && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
1628 ERROR("that open brace { should be on the previous line\n" .
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001629 "$here\n$ctx\n$lines[$ctx_ln - 1]\n");
Andy Whitcroft00df3442007-06-08 13:47:06 -07001630 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001631 if ($level == 0 && $pre_ctx !~ /}\s*while\s*\($/ &&
1632 $ctx =~ /\)\s*\;\s*$/ &&
1633 defined $lines[$ctx_ln - 1])
1634 {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001635 my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
1636 if ($nindent > $indent) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001637 WARN("trailing semicolon indicates no statements, indent implies otherwise\n" .
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001638 "$here\n$ctx\n$lines[$ctx_ln - 1]\n");
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001639 }
1640 }
Andy Whitcroft00df3442007-06-08 13:47:06 -07001641 }
1642
Andy Whitcroft4d001e42008-10-15 22:02:21 -07001643# Check relative indent for conditionals and blocks.
1644 if ($line =~ /\b(?:(?:if|while|for)\s*\(|do\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) {
1645 my ($s, $c) = ($stat, $cond);
1646
1647 substr($s, 0, length($c), '');
1648
1649 # Make sure we remove the line prefixes as we have
1650 # none on the first line, and are going to readd them
1651 # where necessary.
1652 $s =~ s/\n./\n/gs;
1653
1654 # Find out how long the conditional actually is.
Andy Whitcroft6f779c12008-10-15 22:02:27 -07001655 my @newlines = ($c =~ /\n/gs);
1656 my $cond_lines = 1 + $#newlines;
Andy Whitcroft4d001e42008-10-15 22:02:21 -07001657
1658 # We want to check the first line inside the block
1659 # starting at the end of the conditional, so remove:
1660 # 1) any blank line termination
1661 # 2) any opening brace { on end of the line
1662 # 3) any do (...) {
1663 my $continuation = 0;
1664 my $check = 0;
1665 $s =~ s/^.*\bdo\b//;
1666 $s =~ s/^\s*{//;
1667 if ($s =~ s/^\s*\\//) {
1668 $continuation = 1;
1669 }
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07001670 if ($s =~ s/^\s*?\n//) {
Andy Whitcroft4d001e42008-10-15 22:02:21 -07001671 $check = 1;
1672 $cond_lines++;
1673 }
1674
1675 # Also ignore a loop construct at the end of a
1676 # preprocessor statement.
1677 if (($prevline =~ /^.\s*#\s*define\s/ ||
1678 $prevline =~ /\\\s*$/) && $continuation == 0) {
1679 $check = 0;
1680 }
1681
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07001682 my $cond_ptr = -1;
Andy Whitcroft740504c2008-10-15 22:02:35 -07001683 $continuation = 0;
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07001684 while ($cond_ptr != $cond_lines) {
1685 $cond_ptr = $cond_lines;
Andy Whitcroft4d001e42008-10-15 22:02:21 -07001686
Andy Whitcroftf16fa282008-10-15 22:02:32 -07001687 # If we see an #else/#elif then the code
1688 # is not linear.
1689 if ($s =~ /^\s*\#\s*(?:else|elif)/) {
1690 $check = 0;
1691 }
1692
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07001693 # Ignore:
1694 # 1) blank lines, they should be at 0,
1695 # 2) preprocessor lines, and
1696 # 3) labels.
Andy Whitcroft740504c2008-10-15 22:02:35 -07001697 if ($continuation ||
1698 $s =~ /^\s*?\n/ ||
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07001699 $s =~ /^\s*#\s*?/ ||
1700 $s =~ /^\s*$Ident\s*:/) {
Andy Whitcroft740504c2008-10-15 22:02:35 -07001701 $continuation = ($s =~ /^.*?\\\n/) ? 1 : 0;
Andy Whitcroft30dad6e2009-09-21 17:04:36 -07001702 if ($s =~ s/^.*?\n//) {
1703 $cond_lines++;
1704 }
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07001705 }
Andy Whitcroft4d001e42008-10-15 22:02:21 -07001706 }
1707
1708 my (undef, $sindent) = line_stats("+" . $s);
1709 my $stat_real = raw_line($linenr, $cond_lines);
1710
1711 # Check if either of these lines are modified, else
1712 # this is not this patch's fault.
1713 if (!defined($stat_real) ||
1714 $stat !~ /^\+/ && $stat_real !~ /^\+/) {
1715 $check = 0;
1716 }
1717 if (defined($stat_real) && $cond_lines > 1) {
1718 $stat_real = "[...]\n$stat_real";
1719 }
1720
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07001721 #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 -07001722
1723 if ($check && (($sindent % 8) != 0 ||
1724 ($sindent <= $indent && $s ne ''))) {
1725 WARN("suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n");
1726 }
1727 }
1728
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001729 # Track the 'values' across context and added lines.
1730 my $opline = $line; $opline =~ s/^./ /;
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001731 my ($curr_values, $curr_vars) =
1732 annotate_values($opline . "\n", $prev_values);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001733 $curr_values = $prev_values . $curr_values;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001734 if ($dbg_values) {
1735 my $outline = $opline; $outline =~ s/\t/ /g;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001736 print "$linenr > .$outline\n";
1737 print "$linenr > $curr_values\n";
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001738 print "$linenr > $curr_vars\n";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001739 }
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001740 $prev_values = substr($curr_values, -1);
1741
Andy Whitcroft00df3442007-06-08 13:47:06 -07001742#ignore lines not being added
1743 if ($line=~/^[^\+]/) {next;}
1744
Andy Whitcroft653d4872007-06-23 17:16:34 -07001745# TEST: allow direct testing of the type matcher.
Andy Whitcroft7429c692008-07-23 21:29:06 -07001746 if ($dbg_type) {
1747 if ($line =~ /^.\s*$Declare\s*$/) {
1748 ERROR("TEST: is type\n" . $herecurr);
1749 } elsif ($dbg_type > 1 && $line =~ /^.+($Declare)/) {
1750 ERROR("TEST: is not type ($1 is)\n". $herecurr);
1751 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001752 next;
1753 }
Andy Whitcrofta1ef2772008-10-15 22:02:17 -07001754# TEST: allow direct testing of the attribute matcher.
1755 if ($dbg_attr) {
Andy Whitcroft9360b0e2009-02-27 14:03:08 -08001756 if ($line =~ /^.\s*$Modifier\s*$/) {
Andy Whitcrofta1ef2772008-10-15 22:02:17 -07001757 ERROR("TEST: is attr\n" . $herecurr);
Andy Whitcroft9360b0e2009-02-27 14:03:08 -08001758 } elsif ($dbg_attr > 1 && $line =~ /^.+($Modifier)/) {
Andy Whitcrofta1ef2772008-10-15 22:02:17 -07001759 ERROR("TEST: is not attr ($1 is)\n". $herecurr);
1760 }
1761 next;
1762 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001763
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001764# check for initialisation to aggregates open brace on the next line
Andy Whitcroft99423c22009-10-26 16:50:15 -07001765 if ($line =~ /^.\s*{/ &&
1766 $prevline =~ /(?:^|[^=])=\s*$/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001767 ERROR("that open brace { should be on the previous line\n" . $hereprev);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001768 }
1769
Andy Whitcroft653d4872007-06-23 17:16:34 -07001770#
1771# Checks which are anchored on the added line.
1772#
1773
1774# check for malformed paths in #include statements (uses RAW line)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001775 if ($rawline =~ m{^.\s*\#\s*include\s+[<"](.*)[">]}) {
Andy Whitcroft653d4872007-06-23 17:16:34 -07001776 my $path = $1;
1777 if ($path =~ m{//}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001778 ERROR("malformed #include filename\n" .
1779 $herecurr);
Andy Whitcroft653d4872007-06-23 17:16:34 -07001780 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001781 }
Andy Whitcroft00df3442007-06-08 13:47:06 -07001782
1783# no C99 // comments
1784 if ($line =~ m{//}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001785 ERROR("do not use C99 // comments\n" . $herecurr);
Andy Whitcroft00df3442007-06-08 13:47:06 -07001786 }
1787 # Remove C99 comments.
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001788 $line =~ s@//.*@@;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001789 $opline =~ s@//.*@@;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001790
Andy Whitcroft2b474a12009-10-26 16:50:16 -07001791# EXPORT_SYMBOL should immediately follow the thing it is exporting, consider
1792# the whole statement.
1793#print "APW <$lines[$realline_next - 1]>\n";
1794 if (defined $realline_next &&
1795 exists $lines[$realline_next - 1] &&
1796 !defined $suppress_export{$realline_next} &&
1797 ($lines[$realline_next - 1] =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
1798 $lines[$realline_next - 1] =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
Andy Whitcroft653d4872007-06-23 17:16:34 -07001799 my $name = $1;
Andy Whitcroft2b474a12009-10-26 16:50:16 -07001800 if ($stat !~ /(?:
1801 \n.}\s*$|
Andy Whitcroft48012052008-10-15 22:02:34 -07001802 ^.DEFINE_$Ident\(\Q$name\E\)|
1803 ^.DECLARE_$Ident\(\Q$name\E\)|
1804 ^.LIST_HEAD\(\Q$name\E\)|
Andy Whitcroft2b474a12009-10-26 16:50:16 -07001805 ^.(?:$Storage\s+)?$Type\s*\(\s*\*\s*\Q$name\E\s*\)\s*\(|
1806 \b\Q$name\E(?:\s+$Attribute)*\s*(?:;|=|\[|\()
Andy Whitcroft48012052008-10-15 22:02:34 -07001807 )/x) {
Andy Whitcroft2b474a12009-10-26 16:50:16 -07001808#print "FOO A<$lines[$realline_next - 1]> stat<$stat> name<$name>\n";
1809 $suppress_export{$realline_next} = 2;
1810 } else {
1811 $suppress_export{$realline_next} = 1;
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001812 }
1813 }
Andy Whitcroft2b474a12009-10-26 16:50:16 -07001814 if (!defined $suppress_export{$linenr} &&
1815 $prevline =~ /^.\s*$/ &&
1816 ($line =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
1817 $line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
1818#print "FOO B <$lines[$linenr - 1]>\n";
1819 $suppress_export{$linenr} = 2;
1820 }
1821 if (defined $suppress_export{$linenr} &&
1822 $suppress_export{$linenr} == 2) {
1823 WARN("EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
1824 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001825
Joe Eloff5150bda2010-08-09 17:21:00 -07001826# check for global initialisers.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001827 if ($line =~ /^.$Type\s*$Ident\s*(?:\s+$Modifier)*\s*=\s*(0|NULL|false)\s*;/) {
Joe Eloff5150bda2010-08-09 17:21:00 -07001828 ERROR("do not initialise globals to 0 or NULL\n" .
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001829 $herecurr);
1830 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001831# check for static initialisers.
Andy Whitcroft2d1bafd2009-01-06 14:41:28 -08001832 if ($line =~ /\bstatic\s.*=\s*(0|NULL|false)\s*;/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001833 ERROR("do not initialise statics to 0 or NULL\n" .
1834 $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001835 }
1836
Andy Whitcroft653d4872007-06-23 17:16:34 -07001837# check for new typedefs, only function parameters and sparse annotations
1838# make sense.
1839 if ($line =~ /\btypedef\s/ &&
Andy Whitcroft80545762009-01-06 14:41:26 -08001840 $line !~ /\btypedef\s+$Type\s*\(\s*\*?$Ident\s*\)\s*\(/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001841 $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ &&
Andy Whitcroft8ed22ca2008-10-15 22:02:32 -07001842 $line !~ /\b$typeTypedefs\b/ &&
Andy Whitcroft653d4872007-06-23 17:16:34 -07001843 $line !~ /\b__bitwise(?:__|)\b/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001844 WARN("do not add new typedefs\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001845 }
1846
1847# * goes on variable not on type
Andy Whitcroft65863862009-01-06 14:41:21 -08001848 # (char*[ const])
Andy Whitcroft00ef4ec2009-02-27 14:03:07 -08001849 if ($line =~ m{\($NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)\)}) {
Andy Whitcroft65863862009-01-06 14:41:21 -08001850 my ($from, $to) = ($1, $1);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001851
Andy Whitcroft65863862009-01-06 14:41:21 -08001852 # Should start with a space.
1853 $to =~ s/^(\S)/ $1/;
1854 # Should not end with a space.
1855 $to =~ s/\s+$//;
1856 # '*'s should not have spaces between.
Andy Whitcroftf9a0b3d2009-01-15 13:51:05 -08001857 while ($to =~ s/\*\s+\*/\*\*/) {
Andy Whitcroft65863862009-01-06 14:41:21 -08001858 }
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001859
Andy Whitcroft65863862009-01-06 14:41:21 -08001860 #print "from<$from> to<$to>\n";
1861 if ($from ne $to) {
1862 ERROR("\"(foo$from)\" should be \"(foo$to)\"\n" . $herecurr);
1863 }
Andy Whitcroft00ef4ec2009-02-27 14:03:07 -08001864 } elsif ($line =~ m{\b$NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)($Ident)}) {
Andy Whitcroft65863862009-01-06 14:41:21 -08001865 my ($from, $to, $ident) = ($1, $1, $2);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001866
Andy Whitcroft65863862009-01-06 14:41:21 -08001867 # Should start with a space.
1868 $to =~ s/^(\S)/ $1/;
1869 # Should not end with a space.
1870 $to =~ s/\s+$//;
1871 # '*'s should not have spaces between.
Andy Whitcroftf9a0b3d2009-01-15 13:51:05 -08001872 while ($to =~ s/\*\s+\*/\*\*/) {
Andy Whitcroft65863862009-01-06 14:41:21 -08001873 }
1874 # Modifiers should have spaces.
1875 $to =~ s/(\b$Modifier$)/$1 /;
1876
Andy Whitcroft667026e2009-02-27 14:03:08 -08001877 #print "from<$from> to<$to> ident<$ident>\n";
1878 if ($from ne $to && $ident !~ /^$Modifier$/) {
Andy Whitcroft65863862009-01-06 14:41:21 -08001879 ERROR("\"foo${from}bar\" should be \"foo${to}bar\"\n" . $herecurr);
1880 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001881 }
1882
1883# # no BUG() or BUG_ON()
1884# if ($line =~ /\b(BUG|BUG_ON)\b/) {
1885# print "Try to use WARN_ON & Recovery code rather than BUG() or BUG_ON()\n";
1886# print "$herecurr";
1887# $clean = 0;
1888# }
1889
Andy Whitcroft8905a672007-11-28 16:21:06 -08001890 if ($line =~ /\bLINUX_VERSION_CODE\b/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001891 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 -08001892 }
1893
Andy Whitcroft00df3442007-06-08 13:47:06 -07001894# printk should use KERN_* levels. Note that follow on printk's on the
1895# same line do not need a level, so we use the current block context
1896# to try and find and validate the current printk. In summary the current
1897# printk includes all preceeding printk's which have no newline on the end.
1898# we assume the first bad printk is the one to report.
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001899 if ($line =~ /\bprintk\((?!KERN_)\s*"/) {
Andy Whitcroft00df3442007-06-08 13:47:06 -07001900 my $ok = 0;
1901 for (my $ln = $linenr - 1; $ln >= $first_line; $ln--) {
1902 #print "CHECK<$lines[$ln - 1]\n";
1903 # we have a preceeding printk if it ends
1904 # with "\n" ignore it, else it is to blame
1905 if ($lines[$ln - 1] =~ m{\bprintk\(}) {
1906 if ($rawlines[$ln - 1] !~ m{\\n"}) {
1907 $ok = 1;
1908 }
1909 last;
1910 }
1911 }
1912 if ($ok == 0) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001913 WARN("printk() should include KERN_ facility level\n" . $herecurr);
Andy Whitcroft00df3442007-06-08 13:47:06 -07001914 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001915 }
1916
Andy Whitcroft653d4872007-06-23 17:16:34 -07001917# function brace can't be on same line, except for #defines of do while,
1918# or if closed on same line
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001919 if (($line=~/$Type\s*$Ident\(.*\).*\s{/) and
1920 !($line=~/\#\s*define.*do\s{/) and !($line=~/}/)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001921 ERROR("open brace '{' following function declarations go on the next line\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001922 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001923
Andy Whitcroft8905a672007-11-28 16:21:06 -08001924# open braces for enum, union and struct go on the same line.
1925 if ($line =~ /^.\s*{/ &&
1926 $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
1927 ERROR("open brace '{' following $1 go on the same line\n" . $hereprev);
1928 }
1929
Andy Whitcroft0c73b4e2010-10-26 14:23:15 -07001930# missing space after union, struct or enum definition
1931 if ($line =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?(?:\s+$Ident)?[=\{]/) {
1932 WARN("missing space after $1 definition\n" . $herecurr);
1933 }
1934
Andy Whitcroft8d31cfc2008-07-23 21:29:02 -07001935# check for spacing round square brackets; allowed:
1936# 1. with a type on the left -- int [] a;
Andy Whitcroftfe2a7db2008-10-15 22:02:15 -07001937# 2. at the beginning of a line for slice initialisers -- [0...10] = 5,
1938# 3. inside a curly brace -- = { [0...10] = 5 }
Andy Whitcroft8d31cfc2008-07-23 21:29:02 -07001939 while ($line =~ /(.*?\s)\[/g) {
1940 my ($where, $prefix) = ($-[1], $1);
1941 if ($prefix !~ /$Type\s+$/ &&
Andy Whitcroftfe2a7db2008-10-15 22:02:15 -07001942 ($where != 0 || $prefix !~ /^.\s+$/) &&
1943 $prefix !~ /{\s+$/) {
Andy Whitcroft8d31cfc2008-07-23 21:29:02 -07001944 ERROR("space prohibited before open square bracket '['\n" . $herecurr);
1945 }
1946 }
1947
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001948# check for spaces between functions and their parentheses.
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001949 while ($line =~ /($Ident)\s+\(/g) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001950 my $name = $1;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001951 my $ctx_before = substr($line, 0, $-[1]);
1952 my $ctx = "$ctx_before$name";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001953
1954 # Ignore those directives where spaces _are_ permitted.
Andy Whitcroft773647a2008-03-28 14:15:58 -07001955 if ($name =~ /^(?:
1956 if|for|while|switch|return|case|
1957 volatile|__volatile__|
1958 __attribute__|format|__extension__|
1959 asm|__asm__)$/x)
1960 {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001961
1962 # cpp #define statements have non-optional spaces, ie
1963 # if there is a space between the name and the open
1964 # parenthesis it is simply not a parameter group.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001965 } elsif ($ctx_before =~ /^.\s*\#\s*define\s*$/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001966
1967 # cpp #elif statement condition may start with a (
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001968 } elsif ($ctx =~ /^.\s*\#\s*elif\s*$/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001969
1970 # If this whole things ends with a type its most
1971 # likely a typedef for a function.
Andy Whitcroft773647a2008-03-28 14:15:58 -07001972 } elsif ($ctx =~ /$Type$/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001973
1974 } else {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001975 WARN("space prohibited between function name and open parenthesis '('\n" . $herecurr);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001976 }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001977 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001978# Check operator spacing.
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001979 if (!($line=~/\#\s*include/)) {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001980 my $ops = qr{
1981 <<=|>>=|<=|>=|==|!=|
1982 \+=|-=|\*=|\/=|%=|\^=|\|=|&=|
1983 =>|->|<<|>>|<|>|=|!|~|
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001984 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%|
1985 \?|:
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001986 }x;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001987 my @elements = split(/($ops|;)/, $opline);
Andy Whitcroft00df3442007-06-08 13:47:06 -07001988 my $off = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001989
1990 my $blank = copy_spacing($opline);
1991
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001992 for (my $n = 0; $n < $#elements; $n += 2) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001993 $off += length($elements[$n]);
1994
Andy Whitcroft773647a2008-03-28 14:15:58 -07001995 # Pick up the preceeding and succeeding characters.
1996 my $ca = substr($opline, 0, $off);
1997 my $cc = '';
1998 if (length($opline) >= ($off + length($elements[$n + 1]))) {
1999 $cc = substr($opline, $off + length($elements[$n + 1]));
2000 }
2001 my $cb = "$ca$;$cc";
2002
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002003 my $a = '';
2004 $a = 'V' if ($elements[$n] ne '');
2005 $a = 'W' if ($elements[$n] =~ /\s$/);
Andy Whitcroftcf655042008-03-04 14:28:20 -08002006 $a = 'C' if ($elements[$n] =~ /$;$/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002007 $a = 'B' if ($elements[$n] =~ /(\[|\()$/);
2008 $a = 'O' if ($elements[$n] eq '');
Andy Whitcroft773647a2008-03-28 14:15:58 -07002009 $a = 'E' if ($ca =~ /^\s*$/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002010
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002011 my $op = $elements[$n + 1];
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002012
2013 my $c = '';
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002014 if (defined $elements[$n + 2]) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002015 $c = 'V' if ($elements[$n + 2] ne '');
2016 $c = 'W' if ($elements[$n + 2] =~ /^\s/);
Andy Whitcroftcf655042008-03-04 14:28:20 -08002017 $c = 'C' if ($elements[$n + 2] =~ /^$;/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002018 $c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
2019 $c = 'O' if ($elements[$n + 2] eq '');
Andy Whitcroft8b1b3372009-01-06 14:41:27 -08002020 $c = 'E' if ($elements[$n + 2] =~ /^\s*\\$/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002021 } else {
2022 $c = 'E';
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002023 }
2024
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002025 my $ctx = "${a}x${c}";
2026
2027 my $at = "(ctx:$ctx)";
2028
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002029 my $ptr = substr($blank, 0, $off) . "^";
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002030 my $hereptr = "$hereline$ptr\n";
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002031
Andy Whitcroft74048ed2008-07-23 21:29:10 -07002032 # Pull out the value of this operator.
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002033 my $op_type = substr($curr_values, $off + 1, 1);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002034
Andy Whitcroft1f65f942008-07-23 21:29:10 -07002035 # Get the full operator variant.
2036 my $opv = $op . substr($curr_vars, $off, 1);
2037
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002038 # Ignore operators passed as parameters.
2039 if ($op_type ne 'V' &&
2040 $ca =~ /\s$/ && $cc =~ /^\s*,/) {
2041
Andy Whitcroftcf655042008-03-04 14:28:20 -08002042# # Ignore comments
2043# } elsif ($op =~ /^$;+$/) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002044
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002045 # ; should have either the end of line or a space or \ after it
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002046 } elsif ($op eq ';') {
Andy Whitcroftcf655042008-03-04 14:28:20 -08002047 if ($ctx !~ /.x[WEBC]/ &&
2048 $cc !~ /^\\/ && $cc !~ /^;/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002049 ERROR("space required after that '$op' $at\n" . $hereptr);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002050 }
2051
2052 # // is a comment
2053 } elsif ($op eq '//') {
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002054
Andy Whitcroft1f65f942008-07-23 21:29:10 -07002055 # No spaces for:
2056 # ->
2057 # : when part of a bitfield
2058 } elsif ($op eq '->' || $opv eq ':B') {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002059 if ($ctx =~ /Wx.|.xW/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002060 ERROR("spaces prohibited around that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002061 }
2062
2063 # , must have a space on the right.
2064 } elsif ($op eq ',') {
Andy Whitcroftcf655042008-03-04 14:28:20 -08002065 if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002066 ERROR("space required after that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002067 }
2068
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002069 # '*' as part of a type definition -- reported already.
Andy Whitcroft74048ed2008-07-23 21:29:10 -07002070 } elsif ($opv eq '*_') {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002071 #warn "'*' is part of type\n";
2072
2073 # unary operators should have a space before and
2074 # none after. May be left adjacent to another
2075 # unary operator, or a cast
2076 } elsif ($op eq '!' || $op eq '~' ||
Andy Whitcroft74048ed2008-07-23 21:29:10 -07002077 $opv eq '*U' || $opv eq '-U' ||
Andy Whitcroft0d413862008-10-15 22:02:16 -07002078 $opv eq '&U' || $opv eq '&&U') {
Andy Whitcroftcf655042008-03-04 14:28:20 -08002079 if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002080 ERROR("space required before that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002081 }
Andy Whitcrofta3340b32009-02-27 14:03:07 -08002082 if ($op eq '*' && $cc =~/\s*$Modifier\b/) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002083 # A unary '*' may be const
2084
2085 } elsif ($ctx =~ /.xW/) {
Andy Whitcroftfb9e9092009-09-21 17:04:38 -07002086 ERROR("space prohibited after that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002087 }
2088
2089 # unary ++ and unary -- are allowed no space on one side.
2090 } elsif ($op eq '++' or $op eq '--') {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002091 if ($ctx !~ /[WEOBC]x[^W]/ && $ctx !~ /[^W]x[WOBEC]/) {
2092 ERROR("space required one side of that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002093 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002094 if ($ctx =~ /Wx[BE]/ ||
2095 ($ctx =~ /Wx./ && $cc =~ /^;/)) {
2096 ERROR("space prohibited before that '$op' $at\n" . $hereptr);
Andy Whitcroft653d4872007-06-23 17:16:34 -07002097 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002098 if ($ctx =~ /ExW/) {
2099 ERROR("space prohibited after that '$op' $at\n" . $hereptr);
2100 }
2101
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002102
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002103 # << and >> may either have or not have spaces both sides
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002104 } elsif ($op eq '<<' or $op eq '>>' or
2105 $op eq '&' or $op eq '^' or $op eq '|' or
2106 $op eq '+' or $op eq '-' or
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002107 $op eq '*' or $op eq '/' or
2108 $op eq '%')
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002109 {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002110 if ($ctx =~ /Wx[^WCE]|[^WCE]xW/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002111 ERROR("need consistent spacing around '$op' $at\n" .
2112 $hereptr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002113 }
2114
Andy Whitcroft1f65f942008-07-23 21:29:10 -07002115 # A colon needs no spaces before when it is
2116 # terminating a case value or a label.
2117 } elsif ($opv eq ':C' || $opv eq ':L') {
2118 if ($ctx =~ /Wx./) {
2119 ERROR("space prohibited before that '$op' $at\n" . $hereptr);
2120 }
2121
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002122 # All the others need spaces both sides.
Andy Whitcroftcf655042008-03-04 14:28:20 -08002123 } elsif ($ctx !~ /[EWC]x[CWE]/) {
Andy Whitcroft1f65f942008-07-23 21:29:10 -07002124 my $ok = 0;
2125
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002126 # Ignore email addresses <foo@bar>
Andy Whitcroft1f65f942008-07-23 21:29:10 -07002127 if (($op eq '<' &&
2128 $cc =~ /^\S+\@\S+>/) ||
2129 ($op eq '>' &&
2130 $ca =~ /<\S+\@\S+$/))
2131 {
2132 $ok = 1;
2133 }
2134
2135 # Ignore ?:
2136 if (($opv eq ':O' && $ca =~ /\?$/) ||
2137 ($op eq '?' && $cc =~ /^:/)) {
2138 $ok = 1;
2139 }
2140
2141 if ($ok == 0) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002142 ERROR("spaces required around that '$op' $at\n" . $hereptr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002143 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002144 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002145 $off += length($elements[$n + 1]);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002146 }
2147 }
2148
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002149# check for multiple assignments
2150 if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002151 CHK("multiple assignments should be avoided\n" . $herecurr);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002152 }
2153
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002154## # check for multiple declarations, allowing for a function declaration
2155## # continuation.
2156## if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
2157## $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
2158##
2159## # Remove any bracketed sections to ensure we do not
2160## # falsly report the parameters of functions.
2161## my $ln = $line;
2162## while ($ln =~ s/\([^\(\)]*\)//g) {
2163## }
2164## if ($ln =~ /,/) {
2165## WARN("declaring multiple variables together should be avoided\n" . $herecurr);
2166## }
2167## }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002168
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002169#need space before brace following if, while, etc
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002170 if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) ||
2171 $line =~ /do{/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002172 ERROR("space required before the open brace '{'\n" . $herecurr);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002173 }
2174
2175# closing brace should have a space following it when it has anything
2176# on the line
2177 if ($line =~ /}(?!(?:,|;|\)))\S/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002178 ERROR("space required after that close brace '}'\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002179 }
2180
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002181# check spacing on square brackets
2182 if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002183 ERROR("space prohibited after that open square bracket '['\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002184 }
2185 if ($line =~ /\s\]/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002186 ERROR("space prohibited before that close square bracket ']'\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002187 }
2188
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002189# check spacing on parentheses
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002190 if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
2191 $line !~ /for\s*\(\s+;/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002192 ERROR("space prohibited after that open parenthesis '('\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002193 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002194 if ($line =~ /(\s+)\)/ && $line !~ /^.\s*\)/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002195 $line !~ /for\s*\(.*;\s+\)/ &&
2196 $line !~ /:\s+\)/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002197 ERROR("space prohibited before that close parenthesis ')'\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002198 }
2199
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002200#goto labels aren't indented, allow a single space however
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002201 if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002202 !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002203 WARN("labels should not be indented\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002204 }
2205
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002206# Return is not a function.
2207 if (defined($stat) && $stat =~ /^.\s*return(\s*)(\(.*);/s) {
2208 my $spacing = $1;
2209 my $value = $2;
2210
Andy Whitcroft86f9d052009-01-06 14:41:24 -08002211 # Flatten any parentheses
Andy Whitcroftfb2d2c12010-10-26 14:23:12 -07002212 $value =~ s/\(/ \(/g;
2213 $value =~ s/\)/\) /g;
Andy Whitcroft63f17f82009-01-15 13:51:06 -08002214 while ($value =~ s/\[[^\{\}]*\]/1/ ||
2215 $value !~ /(?:$Ident|-?$Constant)\s*
2216 $Compare\s*
2217 (?:$Ident|-?$Constant)/x &&
2218 $value =~ s/\([^\(\)]*\)/1/) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002219 }
Andy Whitcroftfb2d2c12010-10-26 14:23:12 -07002220#print "value<$value>\n";
2221 if ($value =~ /^\s*(?:$Ident|-?$Constant)\s*$/) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002222 ERROR("return is not a function, parentheses are not required\n" . $herecurr);
2223
2224 } elsif ($spacing !~ /\s+/) {
2225 ERROR("space required before the open parenthesis '('\n" . $herecurr);
2226 }
2227 }
Andy Whitcroft53a3c442010-10-26 14:23:14 -07002228# Return of what appears to be an errno should normally be -'ve
2229 if ($line =~ /^.\s*return\s*(E[A-Z]*)\s*;/) {
2230 my $name = $1;
2231 if ($name ne 'EOF' && $name ne 'ERROR') {
2232 WARN("return of an errno should typically be -ve (return -$1)\n" . $herecurr);
2233 }
2234 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002235
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002236# Need a space before open parenthesis after if, while etc
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002237 if ($line=~/\b(if|while|for|switch)\(/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002238 ERROR("space required before the open parenthesis '('\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002239 }
2240
Andy Whitcroftf5fe35d2008-07-23 21:29:03 -07002241# Check for illegal assignment in if conditional -- and check for trailing
2242# statements after the conditional.
Andy Whitcroft170d3a22008-10-15 22:02:30 -07002243 if ($line =~ /do\s*(?!{)/) {
2244 my ($stat_next) = ctx_statement_block($line_nr_next,
2245 $remain_next, $off_next);
2246 $stat_next =~ s/\n./\n /g;
2247 ##print "stat<$stat> stat_next<$stat_next>\n";
2248
2249 if ($stat_next =~ /^\s*while\b/) {
2250 # If the statement carries leading newlines,
2251 # then count those as offsets.
2252 my ($whitespace) =
2253 ($stat_next =~ /^((?:\s*\n[+-])*\s*)/s);
2254 my $offset =
2255 statement_rawlines($whitespace) - 1;
2256
2257 $suppress_whiletrailers{$line_nr_next +
2258 $offset} = 1;
2259 }
2260 }
2261 if (!defined $suppress_whiletrailers{$linenr} &&
2262 $line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002263 my ($s, $c) = ($stat, $cond);
Andy Whitcroft8905a672007-11-28 16:21:06 -08002264
Andy Whitcroftb53c8e12009-01-06 14:41:29 -08002265 if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/s) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002266 ERROR("do not use assignment in if condition\n" . $herecurr);
Andy Whitcroft8905a672007-11-28 16:21:06 -08002267 }
2268
2269 # Find out what is on the end of the line after the
2270 # conditional.
Andy Whitcroft773647a2008-03-28 14:15:58 -07002271 substr($s, 0, length($c), '');
Andy Whitcroft8905a672007-11-28 16:21:06 -08002272 $s =~ s/\n.*//g;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002273 $s =~ s/$;//g; # Remove any comments
Andy Whitcroft53210162008-07-23 21:29:03 -07002274 if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ &&
2275 $c !~ /}\s*while\s*/)
Andy Whitcroft773647a2008-03-28 14:15:58 -07002276 {
Andy Whitcroftbb44ad32008-10-15 22:02:34 -07002277 # Find out how long the conditional actually is.
2278 my @newlines = ($c =~ /\n/gs);
2279 my $cond_lines = 1 + $#newlines;
Hidetoshi Seto42bdf742010-03-05 13:43:50 -08002280 my $stat_real = '';
Andy Whitcroftbb44ad32008-10-15 22:02:34 -07002281
Hidetoshi Seto42bdf742010-03-05 13:43:50 -08002282 $stat_real = raw_line($linenr, $cond_lines)
2283 . "\n" if ($cond_lines);
Andy Whitcroftbb44ad32008-10-15 22:02:34 -07002284 if (defined($stat_real) && $cond_lines > 1) {
2285 $stat_real = "[...]\n$stat_real";
2286 }
2287
2288 ERROR("trailing statements should be on next line\n" . $herecurr . $stat_real);
Andy Whitcroft8905a672007-11-28 16:21:06 -08002289 }
2290 }
2291
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002292# Check for bitwise tests written as boolean
2293 if ($line =~ /
2294 (?:
2295 (?:\[|\(|\&\&|\|\|)
2296 \s*0[xX][0-9]+\s*
2297 (?:\&\&|\|\|)
2298 |
2299 (?:\&\&|\|\|)
2300 \s*0[xX][0-9]+\s*
2301 (?:\&\&|\|\||\)|\])
2302 )/x)
2303 {
2304 WARN("boolean test with hexadecimal, perhaps just 1 \& or \|?\n" . $herecurr);
2305 }
2306
Andy Whitcroft8905a672007-11-28 16:21:06 -08002307# if and else should not have general statements after it
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002308 if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/) {
2309 my $s = $1;
2310 $s =~ s/$;//g; # Remove any comments
2311 if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) {
2312 ERROR("trailing statements should be on next line\n" . $herecurr);
2313 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002314 }
Andy Whitcroft39667782009-01-15 13:51:06 -08002315# if should not continue a brace
2316 if ($line =~ /}\s*if\b/) {
2317 ERROR("trailing statements should be on next line\n" .
2318 $herecurr);
2319 }
Andy Whitcrofta1080bf2008-10-15 22:02:25 -07002320# case and default should not have general statements after them
2321 if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
2322 $line !~ /\G(?:
Andy Whitcroft3fef12d2008-10-15 22:02:36 -07002323 (?:\s*$;*)(?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$|
Andy Whitcrofta1080bf2008-10-15 22:02:25 -07002324 \s*return\s+
2325 )/xg)
2326 {
2327 ERROR("trailing statements should be on next line\n" . $herecurr);
2328 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002329
2330 # Check for }<nl>else {, these must be at the same
2331 # indent level to be relevant to each other.
2332 if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ and
2333 $previndent == $indent) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002334 ERROR("else should follow close brace '}'\n" . $hereprev);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002335 }
2336
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002337 if ($prevline=~/}\s*$/ and $line=~/^.\s*while\s*/ and
2338 $previndent == $indent) {
2339 my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0);
2340
2341 # Find out what is on the end of the line after the
2342 # conditional.
Andy Whitcroft773647a2008-03-28 14:15:58 -07002343 substr($s, 0, length($c), '');
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002344 $s =~ s/\n.*//g;
2345
2346 if ($s =~ /^\s*;/) {
2347 ERROR("while should follow close brace '}'\n" . $hereprev);
2348 }
2349 }
2350
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002351#studly caps, commented out until figure out how to distinguish between use of existing and adding new
2352# if (($line=~/[\w_][a-z\d]+[A-Z]/) and !($line=~/print/)) {
2353# print "No studly caps, use _\n";
2354# print "$herecurr";
2355# $clean = 0;
2356# }
2357
2358#no spaces allowed after \ in define
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002359 if ($line=~/\#\s*define.*\\\s$/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002360 WARN("Whitepspace after \\ makes next lines useless\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002361 }
2362
Andy Whitcroft653d4872007-06-23 17:16:34 -07002363#warn if <asm/foo.h> is #included and <linux/foo.h> is available (uses RAW line)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002364 if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) {
Andy Whitcrofte09dec42008-10-15 22:02:20 -07002365 my $file = "$1.h";
2366 my $checkfile = "include/linux/$file";
2367 if (-f "$root/$checkfile" &&
2368 $realfile ne $checkfile &&
Wolfram Sang7840a942010-08-09 17:20:57 -07002369 $1 !~ /$allowed_asm_includes/)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002370 {
Andy Whitcrofte09dec42008-10-15 22:02:20 -07002371 if ($realfile =~ m{^arch/}) {
2372 CHK("Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
2373 } else {
2374 WARN("Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
2375 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002376 }
2377 }
2378
Andy Whitcroft653d4872007-06-23 17:16:34 -07002379# multi-statement macros should be enclosed in a do while loop, grab the
2380# first statement and ensure its the whole macro if its not enclosed
Andy Whitcroftcf655042008-03-04 14:28:20 -08002381# in a known good container
Andy Whitcroftb8f96a32008-07-23 21:29:07 -07002382 if ($realfile !~ m@/vmlinux.lds.h$@ &&
2383 $line =~ /^.\s*\#\s*define\s*$Ident(\()?/) {
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002384 my $ln = $linenr;
2385 my $cnt = $realcnt;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002386 my ($off, $dstat, $dcond, $rest);
2387 my $ctx = '';
Andy Whitcroft653d4872007-06-23 17:16:34 -07002388
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002389 my $args = defined($1);
2390
2391 # Find the end of the macro and limit our statement
2392 # search to that.
2393 while ($cnt > 0 && defined $lines[$ln - 1] &&
2394 $lines[$ln - 1] =~ /^(?:-|..*\\$)/)
2395 {
2396 $ctx .= $rawlines[$ln - 1] . "\n";
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -07002397 $cnt-- if ($lines[$ln - 1] !~ /^-/);
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002398 $ln++;
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002399 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002400 $ctx .= $rawlines[$ln - 1];
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002401
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002402 ($dstat, $dcond, $ln, $cnt, $off) =
2403 ctx_statement_block($linenr, $ln - $linenr + 1, 0);
2404 #print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n";
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -07002405 #print "LINE<$lines[$ln-1]> len<" . length($lines[$ln-1]) . "\n";
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002406
2407 # Extract the remainder of the define (if any) and
2408 # rip off surrounding spaces, and trailing \'s.
2409 $rest = '';
Andy Whitcroft636d1402008-10-15 22:02:18 -07002410 while ($off != 0 || ($cnt > 0 && $rest =~ /\\\s*$/)) {
2411 #print "ADDING cnt<$cnt> $off <" . substr($lines[$ln - 1], $off) . "> rest<$rest>\n";
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -07002412 if ($off != 0 || $lines[$ln - 1] !~ /^-/) {
2413 $rest .= substr($lines[$ln - 1], $off) . "\n";
2414 $cnt--;
2415 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002416 $ln++;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002417 $off = 0;
2418 }
2419 $rest =~ s/\\\n.//g;
2420 $rest =~ s/^\s*//s;
2421 $rest =~ s/\s*$//s;
2422
2423 # Clean up the original statement.
2424 if ($args) {
2425 substr($dstat, 0, length($dcond), '');
2426 } else {
2427 $dstat =~ s/^.\s*\#\s*define\s+$Ident\s*//;
2428 }
Andy Whitcroft292f1a92008-07-23 21:29:11 -07002429 $dstat =~ s/$;//g;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002430 $dstat =~ s/\\\n.//g;
2431 $dstat =~ s/^\s*//s;
2432 $dstat =~ s/\s*$//s;
2433
2434 # Flatten any parentheses and braces
Andy Whitcroftbf30d6e2008-10-15 22:02:33 -07002435 while ($dstat =~ s/\([^\(\)]*\)/1/ ||
2436 $dstat =~ s/\{[^\{\}]*\}/1/ ||
2437 $dstat =~ s/\[[^\{\}]*\]/1/)
2438 {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002439 }
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002440
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002441 my $exceptions = qr{
2442 $Declare|
2443 module_param_named|
2444 MODULE_PARAM_DESC|
2445 DECLARE_PER_CPU|
2446 DEFINE_PER_CPU|
Andy Whitcroft383099f2009-01-06 14:41:18 -08002447 __typeof__\(|
Stefani Seibold22fd2d32010-03-05 13:43:52 -08002448 union|
2449 struct|
Andy Whitcroftea71a0a2009-09-21 17:04:38 -07002450 \.$Ident\s*=\s*|
2451 ^\"|\"$
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002452 }x;
Andy Whitcroft383099f2009-01-06 14:41:18 -08002453 #print "REST<$rest> dstat<$dstat>\n";
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002454 if ($rest ne '') {
2455 if ($rest !~ /while\s*\(/ &&
2456 $dstat !~ /$exceptions/)
2457 {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002458 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 -07002459 }
2460
2461 } elsif ($ctx !~ /;/) {
2462 if ($dstat ne '' &&
2463 $dstat !~ /^(?:$Ident|-?$Constant)$/ &&
2464 $dstat !~ /$exceptions/ &&
Andy Whitcroftb132e5d2008-10-15 22:02:31 -07002465 $dstat !~ /^\.$Ident\s*=/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002466 $dstat =~ /$Operators/)
2467 {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002468 ERROR("Macros with complex values should be enclosed in parenthesis\n" . "$here\n$ctx\n");
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002469 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07002470 }
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002471 }
2472
Mike Frysinger080ba922009-01-06 14:41:25 -08002473# make sure symbols are always wrapped with VMLINUX_SYMBOL() ...
2474# all assignments may have only one of the following with an assignment:
2475# .
2476# ALIGN(...)
2477# VMLINUX_SYMBOL(...)
2478 if ($realfile eq 'vmlinux.lds.h' && $line =~ /(?:(?:^|\s)$Ident\s*=|=\s*$Ident(?:\s|$))/) {
2479 WARN("vmlinux.lds.h needs VMLINUX_SYMBOL() around C-visible symbols\n" . $herecurr);
2480 }
2481
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002482# check for redundant bracing round if etc
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002483 if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) {
2484 my ($level, $endln, @chunks) =
Andy Whitcroftcf655042008-03-04 14:28:20 -08002485 ctx_statement_full($linenr, $realcnt, 1);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002486 #print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08002487 #print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n";
2488 if ($#chunks > 0 && $level == 0) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002489 my $allowed = 0;
2490 my $seen = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07002491 my $herectx = $here . "\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08002492 my $ln = $linenr - 1;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002493 for my $chunk (@chunks) {
2494 my ($cond, $block) = @{$chunk};
2495
Andy Whitcroft773647a2008-03-28 14:15:58 -07002496 # If the condition carries leading newlines, then count those as offsets.
2497 my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s);
2498 my $offset = statement_rawlines($whitespace) - 1;
2499
2500 #print "COND<$cond> whitespace<$whitespace> offset<$offset>\n";
2501
2502 # We have looked at and allowed this specific line.
2503 $suppress_ifbraces{$ln + $offset} = 1;
2504
2505 $herectx .= "$rawlines[$ln + $offset]\n[...]\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08002506 $ln += statement_rawlines($block) - 1;
2507
Andy Whitcroft773647a2008-03-28 14:15:58 -07002508 substr($block, 0, length($cond), '');
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002509
2510 $seen++ if ($block =~ /^\s*{/);
2511
Andy Whitcroftcf655042008-03-04 14:28:20 -08002512 #print "cond<$cond> block<$block> allowed<$allowed>\n";
2513 if (statement_lines($cond) > 1) {
2514 #print "APW: ALLOWED: cond<$cond>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002515 $allowed = 1;
2516 }
2517 if ($block =~/\b(?:if|for|while)\b/) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08002518 #print "APW: ALLOWED: block<$block>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002519 $allowed = 1;
2520 }
Andy Whitcroftcf655042008-03-04 14:28:20 -08002521 if (statement_block_size($block) > 1) {
2522 #print "APW: ALLOWED: lines block<$block>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002523 $allowed = 1;
2524 }
2525 }
2526 if ($seen && !$allowed) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08002527 WARN("braces {} are not necessary for any arm of this statement\n" . $herectx);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002528 }
2529 }
2530 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002531 if (!defined $suppress_ifbraces{$linenr - 1} &&
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002532 $line =~ /\b(if|while|for|else)\b/) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08002533 my $allowed = 0;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002534
Andy Whitcroftcf655042008-03-04 14:28:20 -08002535 # Check the pre-context.
2536 if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) {
2537 #print "APW: ALLOWED: pre<$1>\n";
2538 $allowed = 1;
2539 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002540
2541 my ($level, $endln, @chunks) =
2542 ctx_statement_full($linenr, $realcnt, $-[0]);
2543
Andy Whitcroftcf655042008-03-04 14:28:20 -08002544 # Check the condition.
2545 my ($cond, $block) = @{$chunks[0]};
Andy Whitcroft773647a2008-03-28 14:15:58 -07002546 #print "CHECKING<$linenr> cond<$cond> block<$block>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08002547 if (defined $cond) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002548 substr($block, 0, length($cond), '');
Andy Whitcroftcf655042008-03-04 14:28:20 -08002549 }
2550 if (statement_lines($cond) > 1) {
2551 #print "APW: ALLOWED: cond<$cond>\n";
2552 $allowed = 1;
2553 }
2554 if ($block =~/\b(?:if|for|while)\b/) {
2555 #print "APW: ALLOWED: block<$block>\n";
2556 $allowed = 1;
2557 }
2558 if (statement_block_size($block) > 1) {
2559 #print "APW: ALLOWED: lines block<$block>\n";
2560 $allowed = 1;
2561 }
2562 # Check the post-context.
2563 if (defined $chunks[1]) {
2564 my ($cond, $block) = @{$chunks[1]};
2565 if (defined $cond) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002566 substr($block, 0, length($cond), '');
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002567 }
Andy Whitcroftcf655042008-03-04 14:28:20 -08002568 if ($block =~ /^\s*\{/) {
2569 #print "APW: ALLOWED: chunk-1 block<$block>\n";
2570 $allowed = 1;
2571 }
2572 }
2573 if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
2574 my $herectx = $here . "\n";;
Andy Whitcroftf0556632008-10-15 22:02:23 -07002575 my $cnt = statement_rawlines($block);
Andy Whitcroftcf655042008-03-04 14:28:20 -08002576
Andy Whitcroftf0556632008-10-15 22:02:23 -07002577 for (my $n = 0; $n < $cnt; $n++) {
2578 $herectx .= raw_line($linenr, $n) . "\n";;
Andy Whitcroftcf655042008-03-04 14:28:20 -08002579 }
2580
2581 WARN("braces {} are not necessary for single statement blocks\n" . $herectx);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002582 }
2583 }
2584
Andy Whitcroft653d4872007-06-23 17:16:34 -07002585# don't include deprecated include files (uses RAW line)
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002586 for my $inc (@dep_includes) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002587 if ($rawline =~ m@^.\s*\#\s*include\s*\<$inc>@) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002588 ERROR("Don't use <$inc>: see Documentation/feature-removal-schedule.txt\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002589 }
2590 }
2591
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002592# don't use deprecated functions
2593 for my $func (@dep_functions) {
Andy Whitcroft00df3442007-06-08 13:47:06 -07002594 if ($line =~ /\b$func\b/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002595 ERROR("Don't use $func(): see Documentation/feature-removal-schedule.txt\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002596 }
2597 }
2598
2599# no volatiles please
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002600 my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
2601 if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002602 WARN("Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002603 }
2604
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002605# SPIN_LOCK_UNLOCKED & RW_LOCK_UNLOCKED are deprecated
2606 if ($line =~ /\b(SPIN_LOCK_UNLOCKED|RW_LOCK_UNLOCKED)/) {
2607 ERROR("Use of $1 is deprecated: see Documentation/spinlocks.txt\n" . $herecurr);
2608 }
2609
Andy Whitcroft00df3442007-06-08 13:47:06 -07002610# warn about #if 0
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002611 if ($line =~ /^.\s*\#\s*if\s+0\b/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002612 CHK("if this code is redundant consider removing it\n" .
2613 $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002614 }
2615
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002616# check for needless kfree() checks
2617 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
2618 my $expr = $1;
2619 if ($line =~ /\bkfree\(\Q$expr\E\);/) {
Wolfram Sang3c232142008-07-23 21:29:05 -07002620 WARN("kfree(NULL) is safe this check is probably not required\n" . $hereprev);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002621 }
2622 }
Greg Kroah-Hartman4c432a82008-07-23 21:29:04 -07002623# check for needless usb_free_urb() checks
2624 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
2625 my $expr = $1;
2626 if ($line =~ /\busb_free_urb\(\Q$expr\E\);/) {
2627 WARN("usb_free_urb(NULL) is safe this check is probably not required\n" . $hereprev);
2628 }
2629 }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002630
Patrick Pannuto1a15a252010-08-09 17:21:01 -07002631# prefer usleep_range over udelay
2632 if ($line =~ /\budelay\s*\(\s*(\w+)\s*\)/) {
2633 # ignore udelay's < 10, however
2634 if (! (($1 =~ /(\d+)/) && ($1 < 10)) ) {
2635 CHK("usleep_range is preferred over udelay; see Documentation/timers/timers-howto.txt\n" . $line);
2636 }
2637 }
2638
Patrick Pannuto09ef8722010-08-09 17:21:02 -07002639# warn about unexpectedly long msleep's
2640 if ($line =~ /\bmsleep\s*\((\d+)\);/) {
2641 if ($1 < 20) {
2642 WARN("msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt\n" . $line);
2643 }
2644 }
2645
Andy Whitcroft00df3442007-06-08 13:47:06 -07002646# warn about #ifdefs in C files
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002647# if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
Andy Whitcroft00df3442007-06-08 13:47:06 -07002648# print "#ifdef in C files should be avoided\n";
2649# print "$herecurr";
2650# $clean = 0;
2651# }
2652
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002653# warn about spacing in #ifdefs
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002654 if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) {
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002655 ERROR("exactly one space required after that #$1\n" . $herecurr);
2656 }
2657
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002658# check for spinlock_t definitions without a comment.
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002659 if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ ||
2660 $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002661 my $which = $1;
2662 if (!ctx_has_comment($first_line, $linenr)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002663 CHK("$1 definition without comment\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002664 }
2665 }
2666# check for memory barriers without a comment.
2667 if ($line =~ /\b(mb|rmb|wmb|read_barrier_depends|smp_mb|smp_rmb|smp_wmb|smp_read_barrier_depends)\(/) {
2668 if (!ctx_has_comment($first_line, $linenr)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002669 CHK("memory barrier without comment\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002670 }
2671 }
2672# check of hardware specific defines
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002673 if ($line =~ m@^.\s*\#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002674 CHK("architecture specific defines should be avoided\n" . $herecurr);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002675 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07002676
Tobias Klauserd4977c72010-05-24 14:33:30 -07002677# Check that the storage class is at the beginning of a declaration
2678 if ($line =~ /\b$Storage\b/ && $line !~ /^.\s*$Storage\b/) {
2679 WARN("storage class should be at the beginning of the declaration\n" . $herecurr)
2680 }
2681
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002682# check the location of the inline attribute, that it is between
2683# storage class and type.
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002684 if ($line =~ /\b$Type\s+$Inline\b/ ||
2685 $line =~ /\b$Inline\s+$Storage\b/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002686 ERROR("inline keyword should sit between storage class and type\n" . $herecurr);
2687 }
2688
Andy Whitcroft8905a672007-11-28 16:21:06 -08002689# Check for __inline__ and __inline, prefer inline
2690 if ($line =~ /\b(__inline__|__inline)\b/) {
2691 WARN("plain inline is preferred over $1\n" . $herecurr);
2692 }
2693
Joe Perches8f53a9b2010-03-05 13:43:48 -08002694# check for sizeof(&)
2695 if ($line =~ /\bsizeof\s*\(\s*\&/) {
2696 WARN("sizeof(& should be avoided\n" . $herecurr);
2697 }
2698
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002699# check for new externs in .c files.
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002700 if ($realfile =~ /\.c$/ && defined $stat &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002701 $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s)
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002702 {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002703 my $function_name = $1;
2704 my $paren_space = $2;
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002705
2706 my $s = $stat;
2707 if (defined $cond) {
2708 substr($s, 0, length($cond), '');
2709 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002710 if ($s =~ /^\s*;/ &&
2711 $function_name ne 'uninitialized_var')
2712 {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002713 WARN("externs should be avoided in .c files\n" . $herecurr);
2714 }
2715
2716 if ($paren_space =~ /\n/) {
2717 WARN("arguments for function declarations should follow identifier\n" . $herecurr);
2718 }
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07002719
2720 } elsif ($realfile =~ /\.c$/ && defined $stat &&
2721 $stat =~ /^.\s*extern\s+/)
2722 {
2723 WARN("externs should be avoided in .c files\n" . $herecurr);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002724 }
2725
2726# checks for new __setup's
2727 if ($rawline =~ /\b__setup\("([^"]*)"/) {
2728 my $name = $1;
2729
2730 if (!grep(/$name/, @setup_docs)) {
2731 CHK("__setup appears un-documented -- check Documentation/kernel-parameters.txt\n" . $herecurr);
2732 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07002733 }
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002734
2735# check for pointless casting of kmalloc return
2736 if ($line =~ /\*\s*\)\s*k[czm]alloc\b/) {
2737 WARN("unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
2738 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002739
2740# check for gcc specific __FUNCTION__
2741 if ($line =~ /__FUNCTION__/) {
2742 WARN("__func__ should be used instead of gcc specific __FUNCTION__\n" . $herecurr);
2743 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002744
2745# check for semaphores used as mutexes
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002746 if ($line =~ /^.\s*(DECLARE_MUTEX|init_MUTEX)\s*\(/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002747 WARN("mutexes are preferred for single holder semaphores\n" . $herecurr);
2748 }
2749# check for semaphores used as mutexes
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002750 if ($line =~ /^.\s*init_MUTEX_LOCKED\s*\(/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002751 WARN("consider using a completion\n" . $herecurr);
Peter Zijlstra1704f472010-03-19 01:37:42 +01002752
Andy Whitcroft773647a2008-03-28 14:15:58 -07002753 }
2754# recommend strict_strto* over simple_strto*
2755 if ($line =~ /\bsimple_(strto.*?)\s*\(/) {
2756 WARN("consider using strict_$1 in preference to simple_$1\n" . $herecurr);
2757 }
Michael Ellermanf3db6632008-07-23 21:28:57 -07002758# check for __initcall(), use device_initcall() explicitly please
2759 if ($line =~ /^.\s*__initcall\s*\(/) {
2760 WARN("please use device_initcall() instead of __initcall()\n" . $herecurr);
2761 }
Emese Revfy79404842010-03-05 13:43:53 -08002762# check for various ops structs, ensure they are const.
2763 my $struct_ops = qr{acpi_dock_ops|
2764 address_space_operations|
2765 backlight_ops|
2766 block_device_operations|
2767 dentry_operations|
2768 dev_pm_ops|
2769 dma_map_ops|
2770 extent_io_ops|
2771 file_lock_operations|
2772 file_operations|
2773 hv_ops|
2774 ide_dma_ops|
2775 intel_dvo_dev_ops|
2776 item_operations|
2777 iwl_ops|
2778 kgdb_arch|
2779 kgdb_io|
2780 kset_uevent_ops|
2781 lock_manager_operations|
2782 microcode_ops|
2783 mtrr_ops|
2784 neigh_ops|
2785 nlmsvc_binding|
2786 pci_raw_ops|
2787 pipe_buf_operations|
2788 platform_hibernation_ops|
2789 platform_suspend_ops|
2790 proto_ops|
2791 rpc_pipe_ops|
2792 seq_operations|
2793 snd_ac97_build_ops|
2794 soc_pcmcia_socket_ops|
2795 stacktrace_ops|
2796 sysfs_ops|
2797 tty_operations|
2798 usb_mon_operations|
2799 wd_ops}x;
Andy Whitcroft6903ffb2009-01-15 13:51:07 -08002800 if ($line !~ /\bconst\b/ &&
Emese Revfy79404842010-03-05 13:43:53 -08002801 $line =~ /\bstruct\s+($struct_ops)\b/) {
Andy Whitcroft6903ffb2009-01-15 13:51:07 -08002802 WARN("struct $1 should normally be const\n" .
2803 $herecurr);
Andy Whitcroft2b6db5c2009-01-06 14:41:29 -08002804 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002805
2806# use of NR_CPUS is usually wrong
2807# ignore definitions of NR_CPUS and usage to define arrays as likely right
2808 if ($line =~ /\bNR_CPUS\b/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002809 $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ &&
2810 $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ &&
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002811 $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ &&
2812 $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ &&
2813 $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/)
Andy Whitcroft773647a2008-03-28 14:15:58 -07002814 {
2815 WARN("usage of NR_CPUS is often wrong - consider using cpu_possible(), num_possible_cpus(), for_each_possible_cpu(), etc\n" . $herecurr);
2816 }
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07002817
2818# check for %L{u,d,i} in strings
2819 my $string;
2820 while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) {
2821 $string = substr($rawline, $-[1], $+[1] - $-[1]);
Andy Whitcroft2a1bc5d2008-10-15 22:02:23 -07002822 $string =~ s/%%/__/g;
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07002823 if ($string =~ /(?<!%)%L[udi]/) {
2824 WARN("\%Ld/%Lu are not-standard C, use %lld/%llu\n" . $herecurr);
2825 last;
2826 }
2827 }
Andy Whitcroft691d77b2009-01-06 14:41:16 -08002828
2829# whine mightly about in_atomic
2830 if ($line =~ /\bin_atomic\s*\(/) {
2831 if ($realfile =~ m@^drivers/@) {
2832 ERROR("do not use in_atomic in drivers\n" . $herecurr);
Andy Whitcroftf4a87732009-02-27 14:03:05 -08002833 } elsif ($realfile !~ m@^kernel/@) {
Andy Whitcroft691d77b2009-01-06 14:41:16 -08002834 WARN("use of in_atomic() is incorrect outside core kernel code\n" . $herecurr);
2835 }
2836 }
Peter Zijlstra1704f472010-03-19 01:37:42 +01002837
2838# check for lockdep_set_novalidate_class
2839 if ($line =~ /^.\s*lockdep_set_novalidate_class\s*\(/ ||
2840 $line =~ /__lockdep_no_validate__\s*\)/ ) {
2841 if ($realfile !~ m@^kernel/lockdep@ &&
2842 $realfile !~ m@^include/linux/lockdep@ &&
2843 $realfile !~ m@^drivers/base/core@) {
2844 ERROR("lockdep_no_validate class is reserved for device->mutex.\n" . $herecurr);
2845 }
2846 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002847 }
2848
2849 # If we have no input at all, then there is nothing to report on
2850 # so just keep quiet.
2851 if ($#rawlines == -1) {
2852 exit(0);
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002853 }
2854
Andy Whitcroft8905a672007-11-28 16:21:06 -08002855 # In mailback mode only produce a report in the negative, for
2856 # things that appear to be patches.
2857 if ($mailback && ($clean == 1 || !$is_patch)) {
2858 exit(0);
2859 }
2860
2861 # This is not a patch, and we are are in 'no-patch' mode so
2862 # just keep quiet.
2863 if (!$chk_patch && !$is_patch) {
2864 exit(0);
2865 }
2866
2867 if (!$is_patch) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002868 ERROR("Does not appear to be a unified-diff format patch\n");
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002869 }
2870 if ($is_patch && $chk_signoff && $signoff == 0) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002871 ERROR("Missing Signed-off-by: line(s)\n");
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002872 }
2873
Andy Whitcroft8905a672007-11-28 16:21:06 -08002874 print report_dump();
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002875 if ($summary && !($clean == 1 && $quiet == 1)) {
2876 print "$filename " if ($summary_file);
Andy Whitcroft8905a672007-11-28 16:21:06 -08002877 print "total: $cnt_error errors, $cnt_warn warnings, " .
2878 (($check)? "$cnt_chk checks, " : "") .
2879 "$cnt_lines lines checked\n";
2880 print "\n" if ($quiet == 0);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002881 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08002882
Andy Whitcroftd2c0a232010-10-26 14:23:12 -07002883 if ($quiet == 0) {
2884 # If there were whitespace errors which cleanpatch can fix
2885 # then suggest that.
2886 if ($rpt_cleaners) {
2887 print "NOTE: whitespace errors detected, you may wish to use scripts/cleanpatch or\n";
2888 print " scripts/cleanfile\n\n";
2889 }
2890 }
2891
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002892 if ($clean == 1 && $quiet == 0) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002893 print "$vname has no obvious style problems and is ready for submission.\n"
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002894 }
2895 if ($clean == 0 && $quiet == 0) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002896 print "$vname has style problems, please review. If any of these errors\n";
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002897 print "are false positives report them to the maintainer, see\n";
2898 print "CHECKPATCH in MAINTAINERS.\n";
2899 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002900
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002901 return $clean;
2902}