blob: 89d24b3ea4385f97aa90189581830988e8844286 [file] [log] [blame]
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001#!/usr/bin/perl -w
Dave Jonesdbf004d2010-01-12 16:59:52 -05002# (c) 2001, Dave Jones. (the file handling bit)
Andy Whitcroft00df344f2007-06-08 13:47:06 -07003# (c) 2005, Joel Schopp <jschopp@austin.ibm.com> (the ugly bit)
Andy Whitcroft2a5a2c22009-01-06 14:41:23 -08004# (c) 2007,2008, Andy Whitcroft <apw@uk.ibm.com> (new conditions, test suite)
Andy Whitcroft015830be2010-10-26 14:23:17 -07005# (c) 2008-2010 Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07006# Licensed under the terms of the GNU GPL License version 2
7
8use strict;
9
10my $P = $0;
Andy Whitcroft00df344f2007-06-08 13:47:06 -070011$P =~ s@.*/@@g;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070012
Joe Perches000d1cc12011-07-25 17:13:25 -070013my $V = '0.32';
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070014
15use Getopt::Long qw(:config no_auto_abbrev);
16
17my $quiet = 0;
18my $tree = 1;
19my $chk_signoff = 1;
20my $chk_patch = 1;
Andy Whitcroft773647a2008-03-28 14:15:58 -070021my $tst_only;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070022my $emacs = 0;
Andy Whitcroft8905a672007-11-28 16:21:06 -080023my $terse = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070024my $file = 0;
25my $check = 0;
Andy Whitcroft8905a672007-11-28 16:21:06 -080026my $summary = 1;
27my $mailback = 0;
Andy Whitcroft13214ad2008-02-08 04:22:03 -080028my $summary_file = 0;
Joe Perches000d1cc12011-07-25 17:13:25 -070029my $show_types = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070030my $root;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -080031my %debug;
Joe Perches000d1cc12011-07-25 17:13:25 -070032my %ignore_type = ();
33my @ignore = ();
Hannes Eder77f5b102009-09-21 17:04:37 -070034my $help = 0;
Joe Perches000d1cc12011-07-25 17:13:25 -070035my $configuration_file = ".checkpatch.conf";
Hannes Eder77f5b102009-09-21 17:04:37 -070036
37sub help {
38 my ($exitcode) = @_;
39
40 print << "EOM";
41Usage: $P [OPTION]... [FILE]...
42Version: $V
43
44Options:
45 -q, --quiet quiet
46 --no-tree run without a kernel tree
47 --no-signoff do not check for 'Signed-off-by' line
48 --patch treat FILE as patchfile (default)
49 --emacs emacs compile window format
50 --terse one line per report
51 -f, --file treat FILE as regular source file
52 --subjective, --strict enable more subjective tests
Joe Perches000d1cc12011-07-25 17:13:25 -070053 --ignore TYPE(,TYPE2...) ignore various comma separated message types
54 --show-types show the message "types" in the output
Hannes Eder77f5b102009-09-21 17:04:37 -070055 --root=PATH PATH to the kernel tree root
56 --no-summary suppress the per-file summary
57 --mailback only produce a report in case of warnings/errors
58 --summary-file include the filename in summary
59 --debug KEY=[0|1] turn on/off debugging of KEY, where KEY is one of
60 'values', 'possible', 'type', and 'attr' (default
61 is all off)
62 --test-only=WORD report only warnings/errors containing WORD
63 literally
64 -h, --help, --version display this help and exit
65
66When FILE is - read standard input.
67EOM
68
69 exit($exitcode);
70}
71
Joe Perches000d1cc12011-07-25 17:13:25 -070072my $conf = which_conf($configuration_file);
73if (-f $conf) {
74 my @conf_args;
75 open(my $conffile, '<', "$conf")
76 or warn "$P: Can't find a readable $configuration_file file $!\n";
77
78 while (<$conffile>) {
79 my $line = $_;
80
81 $line =~ s/\s*\n?$//g;
82 $line =~ s/^\s*//g;
83 $line =~ s/\s+/ /g;
84
85 next if ($line =~ m/^\s*#/);
86 next if ($line =~ m/^\s*$/);
87
88 my @words = split(" ", $line);
89 foreach my $word (@words) {
90 last if ($word =~ m/^#/);
91 push (@conf_args, $word);
92 }
93 }
94 close($conffile);
95 unshift(@ARGV, @conf_args) if @conf_args;
96}
97
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070098GetOptions(
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070099 'q|quiet+' => \$quiet,
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700100 'tree!' => \$tree,
101 'signoff!' => \$chk_signoff,
102 'patch!' => \$chk_patch,
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700103 'emacs!' => \$emacs,
Andy Whitcroft8905a672007-11-28 16:21:06 -0800104 'terse!' => \$terse,
Hannes Eder77f5b102009-09-21 17:04:37 -0700105 'f|file!' => \$file,
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700106 'subjective!' => \$check,
107 'strict!' => \$check,
Joe Perches000d1cc12011-07-25 17:13:25 -0700108 'ignore=s' => \@ignore,
109 'show-types!' => \$show_types,
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700110 'root=s' => \$root,
Andy Whitcroft8905a672007-11-28 16:21:06 -0800111 'summary!' => \$summary,
112 'mailback!' => \$mailback,
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800113 'summary-file!' => \$summary_file,
114
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800115 'debug=s' => \%debug,
Andy Whitcroft773647a2008-03-28 14:15:58 -0700116 'test-only=s' => \$tst_only,
Hannes Eder77f5b102009-09-21 17:04:37 -0700117 'h|help' => \$help,
118 'version' => \$help
119) or help(1);
120
121help(0) if ($help);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700122
123my $exit = 0;
124
125if ($#ARGV < 0) {
Hannes Eder77f5b102009-09-21 17:04:37 -0700126 print "$P: no input files\n";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700127 exit(1);
128}
129
Joe Perches000d1cc12011-07-25 17:13:25 -0700130@ignore = split(/,/, join(',',@ignore));
131foreach my $word (@ignore) {
132 $word =~ s/\s*\n?$//g;
133 $word =~ s/^\s*//g;
134 $word =~ s/\s+/ /g;
135 $word =~ tr/[a-z]/[A-Z]/;
136
137 next if ($word =~ m/^\s*#/);
138 next if ($word =~ m/^\s*$/);
139
140 $ignore_type{$word}++;
141}
142
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800143my $dbg_values = 0;
144my $dbg_possible = 0;
Andy Whitcroft7429c692008-07-23 21:29:06 -0700145my $dbg_type = 0;
Andy Whitcrofta1ef2772008-10-15 22:02:17 -0700146my $dbg_attr = 0;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800147for my $key (keys %debug) {
Andy Whitcroft21caa132009-01-06 14:41:30 -0800148 ## no critic
149 eval "\${dbg_$key} = '$debug{$key}';";
150 die "$@" if ($@);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800151}
152
Andy Whitcroftd2c0a232010-10-26 14:23:12 -0700153my $rpt_cleaners = 0;
154
Andy Whitcroft8905a672007-11-28 16:21:06 -0800155if ($terse) {
156 $emacs = 1;
157 $quiet++;
158}
159
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700160if ($tree) {
161 if (defined $root) {
162 if (!top_of_kernel_tree($root)) {
163 die "$P: $root: --root does not point at a valid tree\n";
164 }
165 } else {
166 if (top_of_kernel_tree('.')) {
167 $root = '.';
168 } elsif ($0 =~ m@(.*)/scripts/[^/]*$@ &&
169 top_of_kernel_tree($1)) {
170 $root = $1;
171 }
172 }
173
174 if (!defined $root) {
175 print "Must be run from the top-level dir. of a kernel tree\n";
176 exit(2);
177 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700178}
179
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700180my $emitted_corrupt = 0;
181
Andy Whitcroft2ceb5322009-10-26 16:50:14 -0700182our $Ident = qr{
183 [A-Za-z_][A-Za-z\d_]*
184 (?:\s*\#\#\s*[A-Za-z_][A-Za-z\d_]*)*
185 }x;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700186our $Storage = qr{extern|static|asmlinkage};
187our $Sparse = qr{
188 __user|
189 __kernel|
190 __force|
191 __iomem|
192 __must_check|
193 __init_refok|
Andy Whitcroft417495e2009-02-27 14:03:08 -0800194 __kprobes|
Sven Eckelmann165e72a2011-07-25 17:13:23 -0700195 __ref|
196 __rcu
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700197 }x;
Wolfram Sang52131292010-03-05 13:43:51 -0800198
199# Notes to $Attribute:
200# We need \b after 'init' otherwise 'initconst' will cause a false positive in a check
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700201our $Attribute = qr{
202 const|
Joe Perches03f1df72010-10-26 14:23:16 -0700203 __percpu|
204 __nocast|
205 __safe|
206 __bitwise__|
207 __packed__|
208 __packed2__|
209 __naked|
210 __maybe_unused|
211 __always_unused|
212 __noreturn|
213 __used|
214 __cold|
215 __noclone|
216 __deprecated|
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700217 __read_mostly|
218 __kprobes|
Wolfram Sang52131292010-03-05 13:43:51 -0800219 __(?:mem|cpu|dev|)(?:initdata|initconst|init\b)|
Andy Whitcroft24e1d812008-10-15 22:02:18 -0700220 ____cacheline_aligned|
221 ____cacheline_aligned_in_smp|
Andy Whitcroft5fe3af12009-01-06 14:41:18 -0800222 ____cacheline_internodealigned_in_smp|
223 __weak
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700224 }x;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700225our $Modifier;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700226our $Inline = qr{inline|__always_inline|noinline};
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700227our $Member = qr{->$Ident|\.$Ident|\[[^]]*\]};
228our $Lval = qr{$Ident(?:$Member)*};
229
Joe Perchesd7c76ba2012-01-10 15:09:58 -0800230our $Constant = qr{(?i:(?:[0-9]+|0x[0-9a-f]+)[ul]*)};
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700231our $Assignment = qr{(?:\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=)};
Andy Whitcroft86f9d052009-01-06 14:41:24 -0800232our $Compare = qr{<=|>=|==|!=|<|>};
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700233our $Operators = qr{
234 <=|>=|==|!=|
235 =>|->|<<|>>|<|>|!|~|
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800236 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700237 }x;
238
Andy Whitcroft8905a672007-11-28 16:21:06 -0800239our $NonptrType;
240our $Type;
241our $Declare;
242
Joe Perches15662b32011-10-31 17:13:12 -0700243our $NON_ASCII_UTF8 = qr{
244 [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700245 | \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
246 | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
247 | \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
248 | \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
249 | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
250 | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
251}x;
252
Joe Perches15662b32011-10-31 17:13:12 -0700253our $UTF8 = qr{
254 [\x09\x0A\x0D\x20-\x7E] # ASCII
255 | $NON_ASCII_UTF8
256}x;
257
Andy Whitcroft8ed22ca2008-10-15 22:02:32 -0700258our $typeTypedefs = qr{(?x:
Andy Whitcroftfb9e9092009-09-21 17:04:38 -0700259 (?:__)?(?:u|s|be|le)(?:8|16|32|64)|
Andy Whitcroft8ed22ca2008-10-15 22:02:32 -0700260 atomic_t
261)};
262
Joe Perches691e6692010-03-05 13:43:51 -0800263our $logFunctions = qr{(?x:
Joe Perches6e60c022011-07-25 17:13:27 -0700264 printk(?:_ratelimited|_once|)|
265 [a-z0-9]+_(?:printk|emerg|alert|crit|err|warning|warn|notice|info|debug|dbg|vdbg|devel|cont|WARN)(?:_ratelimited|_once|)|
266 WARN(?:_RATELIMIT|_ONCE|)|
Joe Perchesb0531722011-05-24 17:13:40 -0700267 panic|
268 MODULE_[A-Z_]+
Joe Perches691e6692010-03-05 13:43:51 -0800269)};
270
Joe Perches20112472011-07-25 17:13:23 -0700271our $signature_tags = qr{(?xi:
272 Signed-off-by:|
273 Acked-by:|
274 Tested-by:|
275 Reviewed-by:|
276 Reported-by:|
277 To:|
278 Cc:
279)};
280
Andy Whitcroft8905a672007-11-28 16:21:06 -0800281our @typeList = (
282 qr{void},
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700283 qr{(?:unsigned\s+)?char},
284 qr{(?:unsigned\s+)?short},
285 qr{(?:unsigned\s+)?int},
286 qr{(?:unsigned\s+)?long},
287 qr{(?:unsigned\s+)?long\s+int},
288 qr{(?:unsigned\s+)?long\s+long},
289 qr{(?:unsigned\s+)?long\s+long\s+int},
Andy Whitcroft8905a672007-11-28 16:21:06 -0800290 qr{unsigned},
291 qr{float},
292 qr{double},
293 qr{bool},
Andy Whitcroft8905a672007-11-28 16:21:06 -0800294 qr{struct\s+$Ident},
295 qr{union\s+$Ident},
296 qr{enum\s+$Ident},
297 qr{${Ident}_t},
298 qr{${Ident}_handler},
299 qr{${Ident}_handler_fn},
300);
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700301our @modifierList = (
302 qr{fastcall},
303);
Andy Whitcroft8905a672007-11-28 16:21:06 -0800304
Wolfram Sang7840a942010-08-09 17:20:57 -0700305our $allowed_asm_includes = qr{(?x:
306 irq|
307 memory
308)};
309# memory.h: ARM has a custom one
310
Andy Whitcroft8905a672007-11-28 16:21:06 -0800311sub build_types {
Andy Whitcroftd2172eb2008-07-23 21:29:07 -0700312 my $mods = "(?x: \n" . join("|\n ", @modifierList) . "\n)";
313 my $all = "(?x: \n" . join("|\n ", @typeList) . "\n)";
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700314 $Modifier = qr{(?:$Attribute|$Sparse|$mods)};
Andy Whitcroft8905a672007-11-28 16:21:06 -0800315 $NonptrType = qr{
Andy Whitcroftd2172eb2008-07-23 21:29:07 -0700316 (?:$Modifier\s+|const\s+)*
Andy Whitcroftcf655042008-03-04 14:28:20 -0800317 (?:
Andy Whitcroft6b48db22012-01-10 15:10:13 -0800318 (?:typeof|__typeof__)\s*\([^\)]*\)|
Andy Whitcroft8ed22ca2008-10-15 22:02:32 -0700319 (?:$typeTypedefs\b)|
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700320 (?:${all}\b)
Andy Whitcroftcf655042008-03-04 14:28:20 -0800321 )
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700322 (?:\s+$Modifier|\s+const)*
Andy Whitcroft8905a672007-11-28 16:21:06 -0800323 }x;
324 $Type = qr{
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700325 $NonptrType
Andy Whitcroft65863862009-01-06 14:41:21 -0800326 (?:[\s\*]+\s*const|[\s\*]+|(?:\s*\[\s*\])+)?
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700327 (?:\s+$Inline|\s+$Modifier)*
Andy Whitcroft8905a672007-11-28 16:21:06 -0800328 }x;
329 $Declare = qr{(?:$Storage\s+)?$Type};
330}
331build_types();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700332
Joe Perches7d2367a2011-07-25 17:13:22 -0700333our $match_balanced_parentheses = qr/(\((?:[^\(\)]+|(-1))*\))/;
334
335our $Typecast = qr{\s*(\(\s*$NonptrType\s*\)){0,1}\s*};
336our $LvalOrFunc = qr{($Lval)\s*($match_balanced_parentheses{0,1})\s*};
Joe Perchesd7c76ba2012-01-10 15:09:58 -0800337our $FuncArg = qr{$Typecast{0,1}($LvalOrFunc|$Constant)};
Joe Perches7d2367a2011-07-25 17:13:22 -0700338
339sub deparenthesize {
340 my ($string) = @_;
341 return "" if (!defined($string));
342 $string =~ s@^\s*\(\s*@@g;
343 $string =~ s@\s*\)\s*$@@g;
344 $string =~ s@\s+@ @g;
345 return $string;
346}
347
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700348$chk_signoff = 0 if ($file);
349
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700350my @dep_includes = ();
351my @dep_functions = ();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700352my $removal = "Documentation/feature-removal-schedule.txt";
353if ($tree && -f "$root/$removal") {
Andy Whitcroft21caa132009-01-06 14:41:30 -0800354 open(my $REMOVE, '<', "$root/$removal") ||
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700355 die "$P: $removal: open failed - $!\n";
Andy Whitcroft21caa132009-01-06 14:41:30 -0800356 while (<$REMOVE>) {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700357 if (/^Check:\s+(.*\S)/) {
358 for my $entry (split(/[, ]+/, $1)) {
359 if ($entry =~ m@include/(.*)@) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700360 push(@dep_includes, $1);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700361
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700362 } elsif ($entry !~ m@/@) {
363 push(@dep_functions, $entry);
364 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700365 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700366 }
367 }
Andy Whitcroft21caa132009-01-06 14:41:30 -0800368 close($REMOVE);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700369}
370
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700371my @rawlines = ();
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800372my @lines = ();
373my $vname;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700374for my $filename (@ARGV) {
Andy Whitcroft21caa132009-01-06 14:41:30 -0800375 my $FILE;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700376 if ($file) {
Andy Whitcroft21caa132009-01-06 14:41:30 -0800377 open($FILE, '-|', "diff -u /dev/null $filename") ||
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700378 die "$P: $filename: diff failed - $!\n";
Andy Whitcroft21caa132009-01-06 14:41:30 -0800379 } elsif ($filename eq '-') {
380 open($FILE, '<&STDIN');
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700381 } else {
Andy Whitcroft21caa132009-01-06 14:41:30 -0800382 open($FILE, '<', "$filename") ||
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700383 die "$P: $filename: open failed - $!\n";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700384 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800385 if ($filename eq '-') {
386 $vname = 'Your patch';
387 } else {
388 $vname = $filename;
389 }
Andy Whitcroft21caa132009-01-06 14:41:30 -0800390 while (<$FILE>) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700391 chomp;
392 push(@rawlines, $_);
393 }
Andy Whitcroft21caa132009-01-06 14:41:30 -0800394 close($FILE);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800395 if (!process($filename)) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700396 $exit = 1;
397 }
398 @rawlines = ();
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800399 @lines = ();
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700400}
401
402exit($exit);
403
404sub top_of_kernel_tree {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700405 my ($root) = @_;
406
407 my @tree_check = (
408 "COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
409 "README", "Documentation", "arch", "include", "drivers",
410 "fs", "init", "ipc", "kernel", "lib", "scripts",
411 );
412
413 foreach my $check (@tree_check) {
414 if (! -e $root . '/' . $check) {
415 return 0;
416 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700417 }
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700418 return 1;
Joe Perches000d1cc12011-07-25 17:13:25 -0700419 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700420
Joe Perches20112472011-07-25 17:13:23 -0700421sub parse_email {
422 my ($formatted_email) = @_;
423
424 my $name = "";
425 my $address = "";
426 my $comment = "";
427
428 if ($formatted_email =~ /^(.*)<(\S+\@\S+)>(.*)$/) {
429 $name = $1;
430 $address = $2;
431 $comment = $3 if defined $3;
432 } elsif ($formatted_email =~ /^\s*<(\S+\@\S+)>(.*)$/) {
433 $address = $1;
434 $comment = $2 if defined $2;
435 } elsif ($formatted_email =~ /(\S+\@\S+)(.*)$/) {
436 $address = $1;
437 $comment = $2 if defined $2;
438 $formatted_email =~ s/$address.*$//;
439 $name = $formatted_email;
440 $name =~ s/^\s+|\s+$//g;
441 $name =~ s/^\"|\"$//g;
442 # If there's a name left after stripping spaces and
443 # leading quotes, and the address doesn't have both
444 # leading and trailing angle brackets, the address
445 # is invalid. ie:
446 # "joe smith joe@smith.com" bad
447 # "joe smith <joe@smith.com" bad
448 if ($name ne "" && $address !~ /^<[^>]+>$/) {
449 $name = "";
450 $address = "";
451 $comment = "";
452 }
453 }
454
455 $name =~ s/^\s+|\s+$//g;
456 $name =~ s/^\"|\"$//g;
457 $address =~ s/^\s+|\s+$//g;
458 $address =~ s/^\<|\>$//g;
459
460 if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
461 $name =~ s/(?<!\\)"/\\"/g; ##escape quotes
462 $name = "\"$name\"";
463 }
464
465 return ($name, $address, $comment);
466}
467
468sub format_email {
469 my ($name, $address) = @_;
470
471 my $formatted_email;
472
473 $name =~ s/^\s+|\s+$//g;
474 $name =~ s/^\"|\"$//g;
475 $address =~ s/^\s+|\s+$//g;
476
477 if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
478 $name =~ s/(?<!\\)"/\\"/g; ##escape quotes
479 $name = "\"$name\"";
480 }
481
482 if ("$name" eq "") {
483 $formatted_email = "$address";
484 } else {
485 $formatted_email = "$name <$address>";
486 }
487
488 return $formatted_email;
489}
490
Joe Perches000d1cc12011-07-25 17:13:25 -0700491sub which_conf {
492 my ($conf) = @_;
493
494 foreach my $path (split(/:/, ".:$ENV{HOME}:.scripts")) {
495 if (-e "$path/$conf") {
496 return "$path/$conf";
497 }
498 }
499
500 return "";
501}
502
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700503sub expand_tabs {
504 my ($str) = @_;
505
506 my $res = '';
507 my $n = 0;
508 for my $c (split(//, $str)) {
509 if ($c eq "\t") {
510 $res .= ' ';
511 $n++;
512 for (; ($n % 8) != 0; $n++) {
513 $res .= ' ';
514 }
515 next;
516 }
517 $res .= $c;
518 $n++;
519 }
520
521 return $res;
522}
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700523sub copy_spacing {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700524 (my $res = shift) =~ tr/\t/ /c;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700525 return $res;
526}
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700527
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700528sub line_stats {
529 my ($line) = @_;
530
531 # Drop the diff line leader and expand tabs
532 $line =~ s/^.//;
533 $line = expand_tabs($line);
534
535 # Pick the indent from the front of the line.
536 my ($white) = ($line =~ /^(\s*)/);
537
538 return (length($line), length($white));
539}
540
Andy Whitcroft773647a2008-03-28 14:15:58 -0700541my $sanitise_quote = '';
542
543sub sanitise_line_reset {
544 my ($in_comment) = @_;
545
546 if ($in_comment) {
547 $sanitise_quote = '*/';
548 } else {
549 $sanitise_quote = '';
550 }
551}
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700552sub sanitise_line {
553 my ($line) = @_;
554
555 my $res = '';
556 my $l = '';
557
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800558 my $qlen = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -0700559 my $off = 0;
560 my $c;
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700561
Andy Whitcroft773647a2008-03-28 14:15:58 -0700562 # Always copy over the diff marker.
563 $res = substr($line, 0, 1);
564
565 for ($off = 1; $off < length($line); $off++) {
566 $c = substr($line, $off, 1);
567
568 # Comments we are wacking completly including the begin
569 # and end, all to $;.
570 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
571 $sanitise_quote = '*/';
572
573 substr($res, $off, 2, "$;$;");
574 $off++;
575 next;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800576 }
Andy Whitcroft81bc0e02008-10-15 22:02:26 -0700577 if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700578 $sanitise_quote = '';
579 substr($res, $off, 2, "$;$;");
580 $off++;
581 next;
582 }
Daniel Walker113f04a2009-09-21 17:04:35 -0700583 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '//') {
584 $sanitise_quote = '//';
585
586 substr($res, $off, 2, $sanitise_quote);
587 $off++;
588 next;
589 }
Andy Whitcroft773647a2008-03-28 14:15:58 -0700590
591 # A \ in a string means ignore the next character.
592 if (($sanitise_quote eq "'" || $sanitise_quote eq '"') &&
593 $c eq "\\") {
594 substr($res, $off, 2, 'XX');
595 $off++;
596 next;
597 }
598 # Regular quotes.
599 if ($c eq "'" || $c eq '"') {
600 if ($sanitise_quote eq '') {
601 $sanitise_quote = $c;
602
603 substr($res, $off, 1, $c);
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700604 next;
Andy Whitcroft773647a2008-03-28 14:15:58 -0700605 } elsif ($sanitise_quote eq $c) {
606 $sanitise_quote = '';
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700607 }
608 }
Andy Whitcroft773647a2008-03-28 14:15:58 -0700609
Andy Whitcroftfae17da2009-01-06 14:41:20 -0800610 #print "c<$c> SQ<$sanitise_quote>\n";
Andy Whitcroft773647a2008-03-28 14:15:58 -0700611 if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") {
612 substr($res, $off, 1, $;);
Daniel Walker113f04a2009-09-21 17:04:35 -0700613 } elsif ($off != 0 && $sanitise_quote eq '//' && $c ne "\t") {
614 substr($res, $off, 1, $;);
Andy Whitcroft773647a2008-03-28 14:15:58 -0700615 } elsif ($off != 0 && $sanitise_quote && $c ne "\t") {
616 substr($res, $off, 1, 'X');
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700617 } else {
Andy Whitcroft773647a2008-03-28 14:15:58 -0700618 substr($res, $off, 1, $c);
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700619 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800620 }
621
Daniel Walker113f04a2009-09-21 17:04:35 -0700622 if ($sanitise_quote eq '//') {
623 $sanitise_quote = '';
624 }
625
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800626 # The pathname on a #include may be surrounded by '<' and '>'.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700627 if ($res =~ /^.\s*\#\s*include\s+\<(.*)\>/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800628 my $clean = 'X' x length($1);
629 $res =~ s@\<.*\>@<$clean>@;
630
631 # The whole of a #error is a string.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700632 } elsif ($res =~ /^.\s*\#\s*(?:error|warning)\s+(.*)\b/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800633 my $clean = 'X' x length($1);
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700634 $res =~ s@(\#\s*(?:error|warning)\s+).*@$1$clean@;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800635 }
636
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700637 return $res;
638}
639
Andy Whitcroft8905a672007-11-28 16:21:06 -0800640sub ctx_statement_block {
641 my ($linenr, $remain, $off) = @_;
642 my $line = $linenr - 1;
643 my $blk = '';
644 my $soff = $off;
645 my $coff = $off - 1;
Andy Whitcroft773647a2008-03-28 14:15:58 -0700646 my $coff_set = 0;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800647
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800648 my $loff = 0;
649
Andy Whitcroft8905a672007-11-28 16:21:06 -0800650 my $type = '';
651 my $level = 0;
Andy Whitcrofta2750642009-01-15 13:51:04 -0800652 my @stack = ();
Andy Whitcroftcf655042008-03-04 14:28:20 -0800653 my $p;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800654 my $c;
655 my $len = 0;
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800656
657 my $remainder;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800658 while (1) {
Andy Whitcrofta2750642009-01-15 13:51:04 -0800659 @stack = (['', 0]) if ($#stack == -1);
660
Andy Whitcroft773647a2008-03-28 14:15:58 -0700661 #warn "CSB: blk<$blk> remain<$remain>\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -0800662 # If we are about to drop off the end, pull in more
663 # context.
664 if ($off >= $len) {
665 for (; $remain > 0; $line++) {
Andy Whitcroftdea33492008-10-15 22:02:25 -0700666 last if (!defined $lines[$line]);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800667 next if ($lines[$line] =~ /^-/);
Andy Whitcroft8905a672007-11-28 16:21:06 -0800668 $remain--;
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800669 $loff = $len;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800670 $blk .= $lines[$line] . "\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -0800671 $len = length($blk);
672 $line++;
673 last;
674 }
675 # Bail if there is no further context.
676 #warn "CSB: blk<$blk> off<$off> len<$len>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800677 if ($off >= $len) {
Andy Whitcroft8905a672007-11-28 16:21:06 -0800678 last;
679 }
Andy Whitcroftf74bd192012-01-10 15:09:54 -0800680 if ($level == 0 && substr($blk, $off) =~ /^.\s*#\s*define/) {
681 $level++;
682 $type = '#';
683 }
Andy Whitcroft8905a672007-11-28 16:21:06 -0800684 }
Andy Whitcroftcf655042008-03-04 14:28:20 -0800685 $p = $c;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800686 $c = substr($blk, $off, 1);
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800687 $remainder = substr($blk, $off);
Andy Whitcroft8905a672007-11-28 16:21:06 -0800688
Andy Whitcroft773647a2008-03-28 14:15:58 -0700689 #warn "CSB: c<$c> type<$type> level<$level> remainder<$remainder> coff_set<$coff_set>\n";
Andy Whitcroft4635f4f2009-01-06 14:41:27 -0800690
691 # Handle nested #if/#else.
692 if ($remainder =~ /^#\s*(?:ifndef|ifdef|if)\s/) {
693 push(@stack, [ $type, $level ]);
694 } elsif ($remainder =~ /^#\s*(?:else|elif)\b/) {
695 ($type, $level) = @{$stack[$#stack - 1]};
696 } elsif ($remainder =~ /^#\s*endif\b/) {
697 ($type, $level) = @{pop(@stack)};
698 }
699
Andy Whitcroft8905a672007-11-28 16:21:06 -0800700 # Statement ends at the ';' or a close '}' at the
701 # outermost level.
702 if ($level == 0 && $c eq ';') {
703 last;
704 }
705
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800706 # An else is really a conditional as long as its not else if
Andy Whitcroft773647a2008-03-28 14:15:58 -0700707 if ($level == 0 && $coff_set == 0 &&
708 (!defined($p) || $p =~ /(?:\s|\}|\+)/) &&
709 $remainder =~ /^(else)(?:\s|{)/ &&
710 $remainder !~ /^else\s+if\b/) {
711 $coff = $off + length($1) - 1;
712 $coff_set = 1;
713 #warn "CSB: mark coff<$coff> soff<$soff> 1<$1>\n";
714 #warn "[" . substr($blk, $soff, $coff - $soff + 1) . "]\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800715 }
716
Andy Whitcroft8905a672007-11-28 16:21:06 -0800717 if (($type eq '' || $type eq '(') && $c eq '(') {
718 $level++;
719 $type = '(';
720 }
721 if ($type eq '(' && $c eq ')') {
722 $level--;
723 $type = ($level != 0)? '(' : '';
724
725 if ($level == 0 && $coff < $soff) {
726 $coff = $off;
Andy Whitcroft773647a2008-03-28 14:15:58 -0700727 $coff_set = 1;
728 #warn "CSB: mark coff<$coff>\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -0800729 }
730 }
731 if (($type eq '' || $type eq '{') && $c eq '{') {
732 $level++;
733 $type = '{';
734 }
735 if ($type eq '{' && $c eq '}') {
736 $level--;
737 $type = ($level != 0)? '{' : '';
738
739 if ($level == 0) {
Patrick Pannutob998e002010-08-09 17:21:03 -0700740 if (substr($blk, $off + 1, 1) eq ';') {
741 $off++;
742 }
Andy Whitcroft8905a672007-11-28 16:21:06 -0800743 last;
744 }
745 }
Andy Whitcroftf74bd192012-01-10 15:09:54 -0800746 # Preprocessor commands end at the newline unless escaped.
747 if ($type eq '#' && $c eq "\n" && $p ne "\\") {
748 $level--;
749 $type = '';
750 $off++;
751 last;
752 }
Andy Whitcroft8905a672007-11-28 16:21:06 -0800753 $off++;
754 }
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -0700755 # We are truly at the end, so shuffle to the next line.
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800756 if ($off == $len) {
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -0700757 $loff = $len + 1;
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800758 $line++;
759 $remain--;
760 }
Andy Whitcroft8905a672007-11-28 16:21:06 -0800761
762 my $statement = substr($blk, $soff, $off - $soff + 1);
763 my $condition = substr($blk, $soff, $coff - $soff + 1);
764
765 #warn "STATEMENT<$statement>\n";
766 #warn "CONDITION<$condition>\n";
767
Andy Whitcroft773647a2008-03-28 14:15:58 -0700768 #print "coff<$coff> soff<$off> loff<$loff>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800769
770 return ($statement, $condition,
771 $line, $remain + 1, $off - $loff + 1, $level);
772}
773
Andy Whitcroftcf655042008-03-04 14:28:20 -0800774sub statement_lines {
775 my ($stmt) = @_;
776
777 # Strip the diff line prefixes and rip blank lines at start and end.
778 $stmt =~ s/(^|\n)./$1/g;
779 $stmt =~ s/^\s*//;
780 $stmt =~ s/\s*$//;
781
782 my @stmt_lines = ($stmt =~ /\n/g);
783
784 return $#stmt_lines + 2;
785}
786
787sub statement_rawlines {
788 my ($stmt) = @_;
789
790 my @stmt_lines = ($stmt =~ /\n/g);
791
792 return $#stmt_lines + 2;
793}
794
795sub statement_block_size {
796 my ($stmt) = @_;
797
798 $stmt =~ s/(^|\n)./$1/g;
799 $stmt =~ s/^\s*{//;
800 $stmt =~ s/}\s*$//;
801 $stmt =~ s/^\s*//;
802 $stmt =~ s/\s*$//;
803
804 my @stmt_lines = ($stmt =~ /\n/g);
805 my @stmt_statements = ($stmt =~ /;/g);
806
807 my $stmt_lines = $#stmt_lines + 2;
808 my $stmt_statements = $#stmt_statements + 1;
809
810 if ($stmt_lines > $stmt_statements) {
811 return $stmt_lines;
812 } else {
813 return $stmt_statements;
814 }
815}
816
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800817sub ctx_statement_full {
818 my ($linenr, $remain, $off) = @_;
819 my ($statement, $condition, $level);
820
821 my (@chunks);
822
Andy Whitcroftcf655042008-03-04 14:28:20 -0800823 # Grab the first conditional/block pair.
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800824 ($statement, $condition, $linenr, $remain, $off, $level) =
825 ctx_statement_block($linenr, $remain, $off);
Andy Whitcroft773647a2008-03-28 14:15:58 -0700826 #print "F: c<$condition> s<$statement> remain<$remain>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -0800827 push(@chunks, [ $condition, $statement ]);
828 if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
829 return ($level, $linenr, @chunks);
830 }
831
832 # Pull in the following conditional/block pairs and see if they
833 # could continue the statement.
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800834 for (;;) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800835 ($statement, $condition, $linenr, $remain, $off, $level) =
836 ctx_statement_block($linenr, $remain, $off);
Andy Whitcroftcf655042008-03-04 14:28:20 -0800837 #print "C: c<$condition> s<$statement> remain<$remain>\n";
Andy Whitcroft773647a2008-03-28 14:15:58 -0700838 last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
Andy Whitcroftcf655042008-03-04 14:28:20 -0800839 #print "C: push\n";
840 push(@chunks, [ $condition, $statement ]);
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800841 }
842
843 return ($level, $linenr, @chunks);
Andy Whitcroft8905a672007-11-28 16:21:06 -0800844}
845
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700846sub ctx_block_get {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700847 my ($linenr, $remain, $outer, $open, $close, $off) = @_;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700848 my $line;
849 my $start = $linenr - 1;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700850 my $blk = '';
851 my @o;
852 my @c;
853 my @res = ();
854
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700855 my $level = 0;
Andy Whitcroft4635f4f2009-01-06 14:41:27 -0800856 my @stack = ($level);
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700857 for ($line = $start; $remain > 0; $line++) {
858 next if ($rawlines[$line] =~ /^-/);
859 $remain--;
860
861 $blk .= $rawlines[$line];
Andy Whitcroft4635f4f2009-01-06 14:41:27 -0800862
863 # Handle nested #if/#else.
Andy Whitcroft01464f32010-10-26 14:23:19 -0700864 if ($lines[$line] =~ /^.\s*#\s*(?:ifndef|ifdef|if)\s/) {
Andy Whitcroft4635f4f2009-01-06 14:41:27 -0800865 push(@stack, $level);
Andy Whitcroft01464f32010-10-26 14:23:19 -0700866 } elsif ($lines[$line] =~ /^.\s*#\s*(?:else|elif)\b/) {
Andy Whitcroft4635f4f2009-01-06 14:41:27 -0800867 $level = $stack[$#stack - 1];
Andy Whitcroft01464f32010-10-26 14:23:19 -0700868 } elsif ($lines[$line] =~ /^.\s*#\s*endif\b/) {
Andy Whitcroft4635f4f2009-01-06 14:41:27 -0800869 $level = pop(@stack);
870 }
871
Andy Whitcroft01464f32010-10-26 14:23:19 -0700872 foreach my $c (split(//, $lines[$line])) {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700873 ##print "C<$c>L<$level><$open$close>O<$off>\n";
874 if ($off > 0) {
875 $off--;
876 next;
877 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700878
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700879 if ($c eq $close && $level > 0) {
880 $level--;
881 last if ($level == 0);
882 } elsif ($c eq $open) {
883 $level++;
884 }
885 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700886
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700887 if (!$outer || $level <= 1) {
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700888 push(@res, $rawlines[$line]);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700889 }
890
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700891 last if ($level == 0);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700892 }
893
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700894 return ($level, @res);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700895}
896sub ctx_block_outer {
897 my ($linenr, $remain) = @_;
898
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700899 my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0);
900 return @r;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700901}
902sub ctx_block {
903 my ($linenr, $remain) = @_;
904
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700905 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0);
906 return @r;
Andy Whitcroft653d4872007-06-23 17:16:34 -0700907}
908sub ctx_statement {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700909 my ($linenr, $remain, $off) = @_;
910
911 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
912 return @r;
913}
914sub ctx_block_level {
Andy Whitcroft653d4872007-06-23 17:16:34 -0700915 my ($linenr, $remain) = @_;
916
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700917 return ctx_block_get($linenr, $remain, 0, '{', '}', 0);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700918}
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700919sub ctx_statement_level {
920 my ($linenr, $remain, $off) = @_;
921
922 return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
923}
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700924
925sub ctx_locate_comment {
926 my ($first_line, $end_line) = @_;
927
928 # Catch a comment on the end of the line itself.
Andy Whitcroftbeae6332008-07-23 21:28:59 -0700929 my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700930 return $current_comment if (defined $current_comment);
931
932 # Look through the context and try and figure out if there is a
933 # comment.
934 my $in_comment = 0;
935 $current_comment = '';
936 for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700937 my $line = $rawlines[$linenr - 1];
938 #warn " $line\n";
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700939 if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
940 $in_comment = 1;
941 }
942 if ($line =~ m@/\*@) {
943 $in_comment = 1;
944 }
945 if (!$in_comment && $current_comment ne '') {
946 $current_comment = '';
947 }
948 $current_comment .= $line . "\n" if ($in_comment);
949 if ($line =~ m@\*/@) {
950 $in_comment = 0;
951 }
952 }
953
954 chomp($current_comment);
955 return($current_comment);
956}
957sub ctx_has_comment {
958 my ($first_line, $end_line) = @_;
959 my $cmt = ctx_locate_comment($first_line, $end_line);
960
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700961 ##print "LINE: $rawlines[$end_line - 1 ]\n";
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700962 ##print "CMMT: $cmt\n";
963
964 return ($cmt ne '');
965}
966
Andy Whitcroft4d001e42008-10-15 22:02:21 -0700967sub raw_line {
968 my ($linenr, $cnt) = @_;
969
970 my $offset = $linenr - 1;
971 $cnt++;
972
973 my $line;
974 while ($cnt) {
975 $line = $rawlines[$offset++];
976 next if (defined($line) && $line =~ /^-/);
977 $cnt--;
978 }
979
980 return $line;
981}
982
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700983sub cat_vet {
984 my ($vet) = @_;
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700985 my ($res, $coded);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700986
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700987 $res = '';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700988 while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
989 $res .= $1;
990 if ($2 ne '') {
991 $coded = sprintf("^%c", unpack('C', $2) + 64);
992 $res .= $coded;
993 }
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700994 }
995 $res =~ s/$/\$/;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700996
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700997 return $res;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700998}
999
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001000my $av_preprocessor = 0;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001001my $av_pending;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001002my @av_paren_type;
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001003my $av_pend_colon;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001004
1005sub annotate_reset {
1006 $av_preprocessor = 0;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001007 $av_pending = '_';
1008 @av_paren_type = ('E');
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001009 $av_pend_colon = 'O';
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001010}
1011
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001012sub annotate_values {
1013 my ($stream, $type) = @_;
1014
1015 my $res;
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001016 my $var = '_' x length($stream);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001017 my $cur = $stream;
1018
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001019 print "$stream\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001020
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001021 while (length($cur)) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001022 @av_paren_type = ('E') if ($#av_paren_type < 0);
Andy Whitcroftcf655042008-03-04 14:28:20 -08001023 print " <" . join('', @av_paren_type) .
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001024 "> <$type> <$av_pending>" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001025 if ($cur =~ /^(\s+)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001026 print "WS($1)\n" if ($dbg_values > 1);
1027 if ($1 =~ /\n/ && $av_preprocessor) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001028 $type = pop(@av_paren_type);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001029 $av_preprocessor = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001030 }
1031
Florian Micklerc023e4732011-01-12 16:59:58 -08001032 } elsif ($cur =~ /^(\(\s*$Type\s*)\)/ && $av_pending eq '_') {
Andy Whitcroft9446ef52010-10-26 14:23:13 -07001033 print "CAST($1)\n" if ($dbg_values > 1);
1034 push(@av_paren_type, $type);
Andy Whitcroftaddcdce2012-01-10 15:10:11 -08001035 $type = 'c';
Andy Whitcroft9446ef52010-10-26 14:23:13 -07001036
Andy Whitcrofte91b6e22010-10-26 14:23:11 -07001037 } elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\(|\s*$)/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001038 print "DECLARE($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001039 $type = 'T';
1040
Andy Whitcroft389a2fe2008-07-23 21:29:05 -07001041 } elsif ($cur =~ /^($Modifier)\s*/) {
1042 print "MODIFIER($1)\n" if ($dbg_values > 1);
1043 $type = 'T';
1044
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001045 } elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001046 print "DEFINE($1,$2)\n" if ($dbg_values > 1);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001047 $av_preprocessor = 1;
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001048 push(@av_paren_type, $type);
1049 if ($2 ne '') {
1050 $av_pending = 'N';
1051 }
1052 $type = 'E';
1053
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001054 } elsif ($cur =~ /^(\#\s*(?:undef\s*$Ident|include\b))/o) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001055 print "UNDEF($1)\n" if ($dbg_values > 1);
1056 $av_preprocessor = 1;
1057 push(@av_paren_type, $type);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001058
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001059 } elsif ($cur =~ /^(\#\s*(?:ifdef|ifndef|if))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001060 print "PRE_START($1)\n" if ($dbg_values > 1);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001061 $av_preprocessor = 1;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001062
1063 push(@av_paren_type, $type);
1064 push(@av_paren_type, $type);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001065 $type = 'E';
Andy Whitcroftcf655042008-03-04 14:28:20 -08001066
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001067 } elsif ($cur =~ /^(\#\s*(?:else|elif))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001068 print "PRE_RESTART($1)\n" if ($dbg_values > 1);
1069 $av_preprocessor = 1;
1070
1071 push(@av_paren_type, $av_paren_type[$#av_paren_type]);
1072
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001073 $type = 'E';
Andy Whitcroftcf655042008-03-04 14:28:20 -08001074
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001075 } elsif ($cur =~ /^(\#\s*(?:endif))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001076 print "PRE_END($1)\n" if ($dbg_values > 1);
1077
1078 $av_preprocessor = 1;
1079
1080 # Assume all arms of the conditional end as this
1081 # one does, and continue as if the #endif was not here.
1082 pop(@av_paren_type);
1083 push(@av_paren_type, $type);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001084 $type = 'E';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001085
1086 } elsif ($cur =~ /^(\\\n)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001087 print "PRECONT($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001088
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001089 } elsif ($cur =~ /^(__attribute__)\s*\(?/o) {
1090 print "ATTR($1)\n" if ($dbg_values > 1);
1091 $av_pending = $type;
1092 $type = 'N';
1093
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001094 } elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001095 print "SIZEOF($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001096 if (defined $2) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001097 $av_pending = 'V';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001098 }
1099 $type = 'N';
1100
Andy Whitcroft14b111c2008-10-15 22:02:16 -07001101 } elsif ($cur =~ /^(if|while|for)\b/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001102 print "COND($1)\n" if ($dbg_values > 1);
Andy Whitcroft14b111c2008-10-15 22:02:16 -07001103 $av_pending = 'E';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001104 $type = 'N';
1105
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001106 } elsif ($cur =~/^(case)/o) {
1107 print "CASE($1)\n" if ($dbg_values > 1);
1108 $av_pend_colon = 'C';
1109 $type = 'N';
1110
Andy Whitcroft14b111c2008-10-15 22:02:16 -07001111 } elsif ($cur =~/^(return|else|goto|typeof|__typeof__)\b/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001112 print "KEYWORD($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001113 $type = 'N';
1114
1115 } elsif ($cur =~ /^(\()/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001116 print "PAREN('$1')\n" if ($dbg_values > 1);
Andy Whitcroftcf655042008-03-04 14:28:20 -08001117 push(@av_paren_type, $av_pending);
1118 $av_pending = '_';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001119 $type = 'N';
1120
1121 } elsif ($cur =~ /^(\))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001122 my $new_type = pop(@av_paren_type);
1123 if ($new_type ne '_') {
1124 $type = $new_type;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001125 print "PAREN('$1') -> $type\n"
1126 if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001127 } else {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001128 print "PAREN('$1')\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001129 }
1130
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -07001131 } elsif ($cur =~ /^($Ident)\s*\(/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001132 print "FUNC($1)\n" if ($dbg_values > 1);
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -07001133 $type = 'V';
Andy Whitcroftcf655042008-03-04 14:28:20 -08001134 $av_pending = 'V';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001135
Andy Whitcroft8e761b02009-01-06 14:41:19 -08001136 } elsif ($cur =~ /^($Ident\s*):(?:\s*\d+\s*(,|=|;))?/) {
1137 if (defined $2 && $type eq 'C' || $type eq 'T') {
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001138 $av_pend_colon = 'B';
Andy Whitcroft8e761b02009-01-06 14:41:19 -08001139 } elsif ($type eq 'E') {
1140 $av_pend_colon = 'L';
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001141 }
1142 print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1);
1143 $type = 'V';
1144
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001145 } elsif ($cur =~ /^($Ident|$Constant)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001146 print "IDENT($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001147 $type = 'V';
1148
1149 } elsif ($cur =~ /^($Assignment)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001150 print "ASSIGN($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001151 $type = 'N';
1152
Andy Whitcroftcf655042008-03-04 14:28:20 -08001153 } elsif ($cur =~/^(;|{|})/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001154 print "END($1)\n" if ($dbg_values > 1);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001155 $type = 'E';
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001156 $av_pend_colon = 'O';
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001157
Andy Whitcroft8e761b02009-01-06 14:41:19 -08001158 } elsif ($cur =~/^(,)/) {
1159 print "COMMA($1)\n" if ($dbg_values > 1);
1160 $type = 'C';
1161
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001162 } elsif ($cur =~ /^(\?)/o) {
1163 print "QUESTION($1)\n" if ($dbg_values > 1);
1164 $type = 'N';
1165
1166 } elsif ($cur =~ /^(:)/o) {
1167 print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1);
1168
1169 substr($var, length($res), 1, $av_pend_colon);
1170 if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') {
1171 $type = 'E';
1172 } else {
1173 $type = 'N';
1174 }
1175 $av_pend_colon = 'O';
1176
Andy Whitcroft8e761b02009-01-06 14:41:19 -08001177 } elsif ($cur =~ /^(\[)/o) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001178 print "CLOSE($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001179 $type = 'N';
1180
Andy Whitcroft0d413862008-10-15 22:02:16 -07001181 } elsif ($cur =~ /^(-(?![->])|\+(?!\+)|\*|\&\&|\&)/o) {
Andy Whitcroft74048ed2008-07-23 21:29:10 -07001182 my $variant;
1183
1184 print "OPV($1)\n" if ($dbg_values > 1);
1185 if ($type eq 'V') {
1186 $variant = 'B';
1187 } else {
1188 $variant = 'U';
1189 }
1190
1191 substr($var, length($res), 1, $variant);
1192 $type = 'N';
1193
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001194 } elsif ($cur =~ /^($Operators)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001195 print "OP($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001196 if ($1 ne '++' && $1 ne '--') {
1197 $type = 'N';
1198 }
1199
1200 } elsif ($cur =~ /(^.)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001201 print "C($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001202 }
1203 if (defined $1) {
1204 $cur = substr($cur, length($1));
1205 $res .= $type x length($1);
1206 }
1207 }
1208
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001209 return ($res, $var);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001210}
1211
Andy Whitcroft8905a672007-11-28 16:21:06 -08001212sub possible {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001213 my ($possible, $line) = @_;
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001214 my $notPermitted = qr{(?:
Andy Whitcroft0776e592008-10-15 22:02:29 -07001215 ^(?:
1216 $Modifier|
1217 $Storage|
1218 $Type|
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001219 DEFINE_\S+
1220 )$|
1221 ^(?:
Andy Whitcroft0776e592008-10-15 22:02:29 -07001222 goto|
1223 return|
1224 case|
1225 else|
1226 asm|__asm__|
Andy Whitcroft89a88352012-01-10 15:10:00 -08001227 do|
1228 \#|
1229 \#\#|
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001230 )(?:\s|$)|
Andy Whitcroft0776e592008-10-15 22:02:29 -07001231 ^(?:typedef|struct|enum)\b
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001232 )}x;
1233 warn "CHECK<$possible> ($line)\n" if ($dbg_possible > 2);
1234 if ($possible !~ $notPermitted) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001235 # Check for modifiers.
1236 $possible =~ s/\s*$Storage\s*//g;
1237 $possible =~ s/\s*$Sparse\s*//g;
1238 if ($possible =~ /^\s*$/) {
1239
1240 } elsif ($possible =~ /\s/) {
1241 $possible =~ s/\s*$Type\s*//g;
Andy Whitcroftd2506582008-07-23 21:29:09 -07001242 for my $modifier (split(' ', $possible)) {
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001243 if ($modifier !~ $notPermitted) {
1244 warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
1245 push(@modifierList, $modifier);
1246 }
Andy Whitcroftd2506582008-07-23 21:29:09 -07001247 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001248
1249 } else {
1250 warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
1251 push(@typeList, $possible);
1252 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001253 build_types();
Andy Whitcroft0776e592008-10-15 22:02:29 -07001254 } else {
1255 warn "NOTPOSS: $possible ($line)\n" if ($dbg_possible > 1);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001256 }
1257}
1258
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001259my $prefix = '';
1260
Joe Perches000d1cc12011-07-25 17:13:25 -07001261sub show_type {
1262 return !defined $ignore_type{$_[0]};
1263}
1264
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001265sub report {
Joe Perches000d1cc12011-07-25 17:13:25 -07001266 if (!show_type($_[1]) ||
1267 (defined $tst_only && $_[2] !~ /\Q$tst_only\E/)) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001268 return 0;
1269 }
Joe Perches000d1cc12011-07-25 17:13:25 -07001270 my $line;
1271 if ($show_types) {
1272 $line = "$prefix$_[0]:$_[1]: $_[2]\n";
1273 } else {
1274 $line = "$prefix$_[0]: $_[2]\n";
1275 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001276 $line = (split('\n', $line))[0] . "\n" if ($terse);
1277
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001278 push(our @report, $line);
Andy Whitcroft773647a2008-03-28 14:15:58 -07001279
1280 return 1;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001281}
1282sub report_dump {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001283 our @report;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001284}
Joe Perches000d1cc12011-07-25 17:13:25 -07001285
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001286sub ERROR {
Joe Perches000d1cc12011-07-25 17:13:25 -07001287 if (report("ERROR", $_[0], $_[1])) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001288 our $clean = 0;
1289 our $cnt_error++;
1290 }
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001291}
1292sub WARN {
Joe Perches000d1cc12011-07-25 17:13:25 -07001293 if (report("WARNING", $_[0], $_[1])) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001294 our $clean = 0;
1295 our $cnt_warn++;
1296 }
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001297}
1298sub CHK {
Joe Perches000d1cc12011-07-25 17:13:25 -07001299 if ($check && report("CHECK", $_[0], $_[1])) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001300 our $clean = 0;
1301 our $cnt_chk++;
1302 }
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001303}
1304
Andy Whitcroft6ecd9672008-10-15 22:02:21 -07001305sub check_absolute_file {
1306 my ($absolute, $herecurr) = @_;
1307 my $file = $absolute;
1308
1309 ##print "absolute<$absolute>\n";
1310
1311 # See if any suffix of this path is a path within the tree.
1312 while ($file =~ s@^[^/]*/@@) {
1313 if (-f "$root/$file") {
1314 ##print "file<$file>\n";
1315 last;
1316 }
1317 }
1318 if (! -f _) {
1319 return 0;
1320 }
1321
1322 # It is, so see if the prefix is acceptable.
1323 my $prefix = $absolute;
1324 substr($prefix, -length($file)) = '';
1325
1326 ##print "prefix<$prefix>\n";
1327 if ($prefix ne ".../") {
Joe Perches000d1cc12011-07-25 17:13:25 -07001328 WARN("USE_RELATIVE_PATH",
1329 "use relative pathname instead of absolute in changelog text\n" . $herecurr);
Andy Whitcroft6ecd9672008-10-15 22:02:21 -07001330 }
1331}
1332
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001333sub process {
1334 my $filename = shift;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001335
1336 my $linenr=0;
1337 my $prevline="";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001338 my $prevrawline="";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001339 my $stashline="";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001340 my $stashrawline="";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001341
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001342 my $length;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001343 my $indent;
1344 my $previndent=0;
1345 my $stashindent=0;
1346
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001347 our $clean = 1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001348 my $signoff = 0;
1349 my $is_patch = 0;
1350
Joe Perches15662b32011-10-31 17:13:12 -07001351 my $in_header_lines = 1;
1352 my $in_commit_log = 0; #Scanning lines before patch
1353
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001354 our @report = ();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001355 our $cnt_lines = 0;
1356 our $cnt_error = 0;
1357 our $cnt_warn = 0;
1358 our $cnt_chk = 0;
1359
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001360 # Trace the real file/line as we go.
1361 my $realfile = '';
1362 my $realline = 0;
1363 my $realcnt = 0;
1364 my $here = '';
1365 my $in_comment = 0;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001366 my $comment_edge = 0;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001367 my $first_line = 0;
Wolfram Sang1e855722009-01-06 14:41:24 -08001368 my $p1_prefix = '';
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001369
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001370 my $prev_values = 'E';
1371
1372 # suppression flags
Andy Whitcroft773647a2008-03-28 14:15:58 -07001373 my %suppress_ifbraces;
Andy Whitcroft170d3a22008-10-15 22:02:30 -07001374 my %suppress_whiletrailers;
Andy Whitcroft2b474a12009-10-26 16:50:16 -07001375 my %suppress_export;
Andy Whitcroft3e469cd2012-01-10 15:10:01 -08001376 my $suppress_statement = 0;
Andy Whitcroft653d4872007-06-23 17:16:34 -07001377
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001378 # Pre-scan the patch sanitizing the lines.
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001379 # Pre-scan the patch looking for any __setup documentation.
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001380 #
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001381 my @setup_docs = ();
1382 my $setup_docs = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001383
1384 sanitise_line_reset();
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001385 my $line;
1386 foreach my $rawline (@rawlines) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001387 $linenr++;
1388 $line = $rawline;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001389
Andy Whitcroft773647a2008-03-28 14:15:58 -07001390 if ($rawline=~/^\+\+\+\s+(\S+)/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001391 $setup_docs = 0;
1392 if ($1 =~ m@Documentation/kernel-parameters.txt$@) {
1393 $setup_docs = 1;
1394 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001395 #next;
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001396 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001397 if ($rawline=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
1398 $realline=$1-1;
1399 if (defined $2) {
1400 $realcnt=$3+1;
1401 } else {
1402 $realcnt=1+1;
1403 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001404 $in_comment = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001405
1406 # Guestimate if this is a continuing comment. Run
1407 # the context looking for a comment "edge". If this
1408 # edge is a close comment then we must be in a comment
1409 # at context start.
1410 my $edge;
Andy Whitcroft01fa9142008-10-15 22:02:19 -07001411 my $cnt = $realcnt;
1412 for (my $ln = $linenr + 1; $cnt > 0; $ln++) {
1413 next if (defined $rawlines[$ln - 1] &&
1414 $rawlines[$ln - 1] =~ /^-/);
1415 $cnt--;
1416 #print "RAW<$rawlines[$ln - 1]>\n";
Andy Whitcroft721c1cb2009-01-06 14:41:16 -08001417 last if (!defined $rawlines[$ln - 1]);
Andy Whitcroftfae17da2009-01-06 14:41:20 -08001418 if ($rawlines[$ln - 1] =~ m@(/\*|\*/)@ &&
1419 $rawlines[$ln - 1] !~ m@"[^"]*(?:/\*|\*/)[^"]*"@) {
1420 ($edge) = $1;
1421 last;
1422 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001423 }
1424 if (defined $edge && $edge eq '*/') {
1425 $in_comment = 1;
1426 }
1427
1428 # Guestimate if this is a continuing comment. If this
1429 # is the start of a diff block and this line starts
1430 # ' *' then it is very likely a comment.
1431 if (!defined $edge &&
Andy Whitcroft83242e02009-01-06 14:41:17 -08001432 $rawlines[$linenr] =~ m@^.\s*(?:\*\*+| \*)(?:\s|$)@)
Andy Whitcroft773647a2008-03-28 14:15:58 -07001433 {
1434 $in_comment = 1;
1435 }
1436
1437 ##print "COMMENT:$in_comment edge<$edge> $rawline\n";
1438 sanitise_line_reset($in_comment);
1439
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001440 } elsif ($realcnt && $rawline =~ /^(?:\+| |$)/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001441 # Standardise the strings and chars within the input to
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001442 # simplify matching -- only bother with positive lines.
Andy Whitcroft773647a2008-03-28 14:15:58 -07001443 $line = sanitise_line($rawline);
1444 }
1445 push(@lines, $line);
1446
1447 if ($realcnt > 1) {
1448 $realcnt-- if ($line =~ /^(?:\+| |$)/);
1449 } else {
1450 $realcnt = 0;
1451 }
1452
1453 #print "==>$rawline\n";
1454 #print "-->$line\n";
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001455
1456 if ($setup_docs && $line =~ /^\+/) {
1457 push(@setup_docs, $line);
1458 }
1459 }
1460
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001461 $prefix = '';
1462
Andy Whitcroft773647a2008-03-28 14:15:58 -07001463 $realcnt = 0;
1464 $linenr = 0;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001465 foreach my $line (@lines) {
1466 $linenr++;
1467
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001468 my $rawline = $rawlines[$linenr - 1];
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001469
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001470#extract the line range in the file after the patch is applied
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001471 if ($line=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001472 $is_patch = 1;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001473 $first_line = $linenr + 1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001474 $realline=$1-1;
1475 if (defined $2) {
1476 $realcnt=$3+1;
1477 } else {
1478 $realcnt=1+1;
1479 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001480 annotate_reset();
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001481 $prev_values = 'E';
1482
Andy Whitcroft773647a2008-03-28 14:15:58 -07001483 %suppress_ifbraces = ();
Andy Whitcroft170d3a22008-10-15 22:02:30 -07001484 %suppress_whiletrailers = ();
Andy Whitcroft2b474a12009-10-26 16:50:16 -07001485 %suppress_export = ();
Andy Whitcroft3e469cd2012-01-10 15:10:01 -08001486 $suppress_statement = 0;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001487 next;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001488
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001489# track the line number as we move through the hunk, note that
1490# new versions of GNU diff omit the leading space on completely
1491# blank context lines so we need to count that too.
Andy Whitcroft773647a2008-03-28 14:15:58 -07001492 } elsif ($line =~ /^( |\+|$)/) {
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001493 $realline++;
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001494 $realcnt-- if ($realcnt != 0);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001495
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001496 # Measure the line length and indent.
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001497 ($length, $indent) = line_stats($rawline);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001498
1499 # Track the previous line.
1500 ($prevline, $stashline) = ($stashline, $line);
1501 ($previndent, $stashindent) = ($stashindent, $indent);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001502 ($prevrawline, $stashrawline) = ($stashrawline, $rawline);
1503
Andy Whitcroft773647a2008-03-28 14:15:58 -07001504 #warn "line<$line>\n";
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001505
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001506 } elsif ($realcnt == 1) {
1507 $realcnt--;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001508 }
1509
Andy Whitcroftcc77cdc2009-10-26 16:50:13 -07001510 my $hunk_line = ($realcnt != 0);
1511
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001512#make up the handle for any error we report on this line
Andy Whitcroft773647a2008-03-28 14:15:58 -07001513 $prefix = "$filename:$realline: " if ($emacs && $file);
1514 $prefix = "$filename:$linenr: " if ($emacs && !$file);
1515
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001516 $here = "#$linenr: " if (!$file);
1517 $here = "#$realline: " if ($file);
Andy Whitcroft773647a2008-03-28 14:15:58 -07001518
1519 # extract the filename as it passes
Rabin Vincent3bf9a002010-10-26 14:23:16 -07001520 if ($line =~ /^diff --git.*?(\S+)$/) {
1521 $realfile = $1;
1522 $realfile =~ s@^([^/]*)/@@;
Joe Perches270c49a2012-01-10 15:09:50 -08001523 $in_commit_log = 0;
Rabin Vincent3bf9a002010-10-26 14:23:16 -07001524 } elsif ($line =~ /^\+\+\+\s+(\S+)/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001525 $realfile = $1;
Wolfram Sang1e855722009-01-06 14:41:24 -08001526 $realfile =~ s@^([^/]*)/@@;
Joe Perches270c49a2012-01-10 15:09:50 -08001527 $in_commit_log = 0;
Wolfram Sang1e855722009-01-06 14:41:24 -08001528
1529 $p1_prefix = $1;
Andy Whitcrofte2f7aa42009-02-27 14:03:06 -08001530 if (!$file && $tree && $p1_prefix ne '' &&
1531 -e "$root/$p1_prefix") {
Joe Perches000d1cc12011-07-25 17:13:25 -07001532 WARN("PATCH_PREFIX",
1533 "patch prefix '$p1_prefix' exists, appears to be a -p0 patch\n");
Wolfram Sang1e855722009-01-06 14:41:24 -08001534 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001535
Andy Whitcroftc1ab3322008-10-15 22:02:20 -07001536 if ($realfile =~ m@^include/asm/@) {
Joe Perches000d1cc12011-07-25 17:13:25 -07001537 ERROR("MODIFIED_INCLUDE_ASM",
1538 "do not modify files in include/asm, change architecture specific files in include/asm-<architecture>\n" . "$here$rawline\n");
Andy Whitcroft773647a2008-03-28 14:15:58 -07001539 }
1540 next;
1541 }
1542
Randy Dunlap389834b2007-06-08 13:47:03 -07001543 $here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001544
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001545 my $hereline = "$here\n$rawline\n";
1546 my $herecurr = "$here\n$rawline\n";
1547 my $hereprev = "$here\n$prevrawline\n$rawline\n";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001548
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001549 $cnt_lines++ if ($realcnt != 0);
1550
Rabin Vincent3bf9a002010-10-26 14:23:16 -07001551# Check for incorrect file permissions
1552 if ($line =~ /^new (file )?mode.*[7531]\d{0,2}$/) {
1553 my $permhere = $here . "FILE: $realfile\n";
1554 if ($realfile =~ /(Makefile|Kconfig|\.c|\.h|\.S|\.tmpl)$/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07001555 ERROR("EXECUTE_PERMISSIONS",
1556 "do not set execute permissions for source files\n" . $permhere);
Rabin Vincent3bf9a002010-10-26 14:23:16 -07001557 }
1558 }
1559
Joe Perches20112472011-07-25 17:13:23 -07001560# Check the patch for a signoff:
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001561 if ($line =~ /^\s*signed-off-by:/i) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001562 $signoff++;
Joe Perches15662b32011-10-31 17:13:12 -07001563 $in_commit_log = 0;
Joe Perches20112472011-07-25 17:13:23 -07001564 }
1565
1566# Check signature styles
Joe Perches270c49a2012-01-10 15:09:50 -08001567 if (!$in_header_lines &&
1568 $line =~ /^(\s*)($signature_tags)(\s*)(.*)/) {
Joe Perches20112472011-07-25 17:13:23 -07001569 my $space_before = $1;
1570 my $sign_off = $2;
1571 my $space_after = $3;
1572 my $email = $4;
1573 my $ucfirst_sign_off = ucfirst(lc($sign_off));
1574
1575 if (defined $space_before && $space_before ne "") {
Joe Perches000d1cc12011-07-25 17:13:25 -07001576 WARN("BAD_SIGN_OFF",
1577 "Do not use whitespace before $ucfirst_sign_off\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001578 }
Joe Perches20112472011-07-25 17:13:23 -07001579 if ($sign_off =~ /-by:$/i && $sign_off ne $ucfirst_sign_off) {
Joe Perches000d1cc12011-07-25 17:13:25 -07001580 WARN("BAD_SIGN_OFF",
1581 "'$ucfirst_sign_off' is the preferred signature form\n" . $herecurr);
Joe Perches20112472011-07-25 17:13:23 -07001582 }
1583 if (!defined $space_after || $space_after ne " ") {
Joe Perches000d1cc12011-07-25 17:13:25 -07001584 WARN("BAD_SIGN_OFF",
1585 "Use a single space after $ucfirst_sign_off\n" . $herecurr);
Joe Perches20112472011-07-25 17:13:23 -07001586 }
1587
1588 my ($email_name, $email_address, $comment) = parse_email($email);
1589 my $suggested_email = format_email(($email_name, $email_address));
1590 if ($suggested_email eq "") {
Joe Perches000d1cc12011-07-25 17:13:25 -07001591 ERROR("BAD_SIGN_OFF",
1592 "Unrecognized email address: '$email'\n" . $herecurr);
Joe Perches20112472011-07-25 17:13:23 -07001593 } else {
1594 my $dequoted = $suggested_email;
1595 $dequoted =~ s/^"//;
1596 $dequoted =~ s/" </ </;
1597 # Don't force email to have quotes
1598 # Allow just an angle bracketed address
1599 if ("$dequoted$comment" ne $email &&
1600 "<$email_address>$comment" ne $email &&
1601 "$suggested_email$comment" ne $email) {
Joe Perches000d1cc12011-07-25 17:13:25 -07001602 WARN("BAD_SIGN_OFF",
1603 "email address '$email' might be better as '$suggested_email$comment'\n" . $herecurr);
Joe Perches20112472011-07-25 17:13:23 -07001604 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001605 }
1606 }
1607
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001608# Check for wrappage within a valid hunk of the file
Andy Whitcroft8905a672007-11-28 16:21:06 -08001609 if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) {
Joe Perches000d1cc12011-07-25 17:13:25 -07001610 ERROR("CORRUPTED_PATCH",
1611 "patch seems to be corrupt (line wrapped?)\n" .
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001612 $herecurr) if (!$emitted_corrupt++);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001613 }
1614
Andy Whitcroft6ecd9672008-10-15 22:02:21 -07001615# Check for absolute kernel paths.
1616 if ($tree) {
1617 while ($line =~ m{(?:^|\s)(/\S*)}g) {
1618 my $file = $1;
1619
1620 if ($file =~ m{^(.*?)(?::\d+)+:?$} &&
1621 check_absolute_file($1, $herecurr)) {
1622 #
1623 } else {
1624 check_absolute_file($file, $herecurr);
1625 }
1626 }
1627 }
1628
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001629# UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
1630 if (($realfile =~ /^$/ || $line =~ /^\+/) &&
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001631 $rawline !~ m/^$UTF8*$/) {
1632 my ($utf8_prefix) = ($rawline =~ /^($UTF8*)/);
1633
1634 my $blank = copy_spacing($rawline);
1635 my $ptr = substr($blank, 0, length($utf8_prefix)) . "^";
1636 my $hereptr = "$hereline$ptr\n";
1637
Joe Perches34d99212011-07-25 17:13:26 -07001638 CHK("INVALID_UTF8",
1639 "Invalid UTF-8, patch and commit message should be encoded in UTF-8\n" . $hereptr);
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001640 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001641
Joe Perches15662b32011-10-31 17:13:12 -07001642# Check if it's the start of a commit log
1643# (not a header line and we haven't seen the patch filename)
1644 if ($in_header_lines && $realfile =~ /^$/ &&
Joe Perches270c49a2012-01-10 15:09:50 -08001645 $rawline !~ /^(commit\b|from\b|[\w-]+:).+$/i) {
Joe Perches15662b32011-10-31 17:13:12 -07001646 $in_header_lines = 0;
1647 $in_commit_log = 1;
1648 }
1649
1650# Still not yet in a patch, check for any UTF-8
1651 if ($in_commit_log && $realfile =~ /^$/ &&
1652 $rawline =~ /$NON_ASCII_UTF8/) {
1653 CHK("UTF8_BEFORE_PATCH",
1654 "8-bit UTF-8 used in possible commit log\n" . $herecurr);
1655 }
1656
Andy Whitcroft306708542008-10-15 22:02:28 -07001657# ignore non-hunk lines and lines being removed
1658 next if (!$hunk_line || $line =~ /^-/);
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001659
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001660#trailing whitespace
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001661 if ($line =~ /^\+.*\015/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001662 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Joe Perches000d1cc12011-07-25 17:13:25 -07001663 ERROR("DOS_LINE_ENDINGS",
1664 "DOS line endings\n" . $herevet);
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001665
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001666 } elsif ($rawline =~ /^\+.*\S\s+$/ || $rawline =~ /^\+\s+$/) {
1667 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Joe Perches000d1cc12011-07-25 17:13:25 -07001668 ERROR("TRAILING_WHITESPACE",
1669 "trailing whitespace\n" . $herevet);
Andy Whitcroftd2c0a232010-10-26 14:23:12 -07001670 $rpt_cleaners = 1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001671 }
Andy Whitcroft5368df202008-10-15 22:02:27 -07001672
Andi Kleen33549572010-05-24 14:33:29 -07001673# check for Kconfig help text having a real description
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07001674# Only applies when adding the entry originally, after that we do not have
1675# sufficient context to determine whether it is indeed long enough.
Andi Kleen33549572010-05-24 14:33:29 -07001676 if ($realfile =~ /Kconfig/ &&
Andy Whitcrofta1385802012-01-10 15:10:03 -08001677 $line =~ /.\s*config\s+/) {
Andi Kleen33549572010-05-24 14:33:29 -07001678 my $length = 0;
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07001679 my $cnt = $realcnt;
1680 my $ln = $linenr + 1;
1681 my $f;
Andy Whitcrofta1385802012-01-10 15:10:03 -08001682 my $is_start = 0;
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07001683 my $is_end = 0;
Andy Whitcrofta1385802012-01-10 15:10:03 -08001684 for (; $cnt > 0 && defined $lines[$ln - 1]; $ln++) {
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07001685 $f = $lines[$ln - 1];
1686 $cnt-- if ($lines[$ln - 1] !~ /^-/);
1687 $is_end = $lines[$ln - 1] =~ /^\+/;
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07001688
1689 next if ($f =~ /^-/);
Andy Whitcrofta1385802012-01-10 15:10:03 -08001690
1691 if ($lines[$ln - 1] =~ /.\s*(?:bool|tristate)\s*\"/) {
1692 $is_start = 1;
1693 } elsif ($lines[$ln - 1] =~ /.\s*(?:---)?help(?:---)?$/) {
1694 $length = -1;
1695 }
1696
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07001697 $f =~ s/^.//;
Andi Kleen33549572010-05-24 14:33:29 -07001698 $f =~ s/#.*//;
1699 $f =~ s/^\s+//;
1700 next if ($f =~ /^$/);
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07001701 if ($f =~ /^\s*config\s/) {
1702 $is_end = 1;
1703 last;
1704 }
Andi Kleen33549572010-05-24 14:33:29 -07001705 $length++;
1706 }
Joe Perches000d1cc12011-07-25 17:13:25 -07001707 WARN("CONFIG_DESCRIPTION",
Andy Whitcrofta1385802012-01-10 15:10:03 -08001708 "please write a paragraph that describes the config symbol fully\n" . $herecurr) if ($is_start && $is_end && $length < 4);
1709 #print "is_start<$is_start> is_end<$is_end> length<$length>\n";
Andi Kleen33549572010-05-24 14:33:29 -07001710 }
1711
Arnaud Lacombec68e5872011-08-15 01:07:14 -04001712 if (($realfile =~ /Makefile.*/ || $realfile =~ /Kbuild.*/) &&
1713 ($line =~ /\+(EXTRA_[A-Z]+FLAGS).*/)) {
1714 my $flag = $1;
1715 my $replacement = {
1716 'EXTRA_AFLAGS' => 'asflags-y',
1717 'EXTRA_CFLAGS' => 'ccflags-y',
1718 'EXTRA_CPPFLAGS' => 'cppflags-y',
1719 'EXTRA_LDFLAGS' => 'ldflags-y',
1720 };
1721
1722 WARN("DEPRECATED_VARIABLE",
1723 "Use of $flag is deprecated, please use \`$replacement->{$flag} instead.\n" . $herecurr) if ($replacement->{$flag});
1724 }
1725
Andy Whitcroft5368df202008-10-15 22:02:27 -07001726# check we are in a valid source file if not then ignore this hunk
1727 next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/);
1728
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001729#80 column limit
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001730 if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ &&
Andy Whitcroftf4c014c2008-07-23 21:29:01 -07001731 $rawline !~ /^.\s*\*\s*\@$Ident\s/ &&
Joe Perches0fccc622011-05-24 17:13:41 -07001732 !($line =~ /^\+\s*$logFunctions\s*\(\s*(?:(KERN_\S+\s*|[^"]*))?"[X\t]*"\s*(?:|,|\)\s*;)\s*$/ ||
Joe Perches8bbea962010-08-09 17:21:01 -07001733 $line =~ /^\+\s*"[^"]*"\s*(?:\s*|,|\)\s*;)\s*$/) &&
Andy Whitcroftf4c014c2008-07-23 21:29:01 -07001734 $length > 80)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001735 {
Joe Perches000d1cc12011-07-25 17:13:25 -07001736 WARN("LONG_LINE",
1737 "line over 80 characters\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001738 }
1739
Joe Perches5e79d962010-03-05 13:43:55 -08001740# check for spaces before a quoted newline
1741 if ($rawline =~ /^.*\".*\s\\n/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07001742 WARN("QUOTED_WHITESPACE_BEFORE_NEWLINE",
1743 "unnecessary whitespace before a quoted newline\n" . $herecurr);
Joe Perches5e79d962010-03-05 13:43:55 -08001744 }
1745
Andy Whitcroft8905a672007-11-28 16:21:06 -08001746# check for adding lines without a newline.
1747 if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07001748 WARN("MISSING_EOF_NEWLINE",
1749 "adding a line without newline at end of file\n" . $herecurr);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001750 }
1751
Mike Frysinger42e41c52009-09-21 17:04:40 -07001752# Blackfin: use hi/lo macros
1753 if ($realfile =~ m@arch/blackfin/.*\.S$@) {
1754 if ($line =~ /\.[lL][[:space:]]*=.*&[[:space:]]*0x[fF][fF][fF][fF]/) {
1755 my $herevet = "$here\n" . cat_vet($line) . "\n";
Joe Perches000d1cc12011-07-25 17:13:25 -07001756 ERROR("LO_MACRO",
1757 "use the LO() macro, not (... & 0xFFFF)\n" . $herevet);
Mike Frysinger42e41c52009-09-21 17:04:40 -07001758 }
1759 if ($line =~ /\.[hH][[:space:]]*=.*>>[[:space:]]*16/) {
1760 my $herevet = "$here\n" . cat_vet($line) . "\n";
Joe Perches000d1cc12011-07-25 17:13:25 -07001761 ERROR("HI_MACRO",
1762 "use the HI() macro, not (... >> 16)\n" . $herevet);
Mike Frysinger42e41c52009-09-21 17:04:40 -07001763 }
1764 }
1765
Andy Whitcroftb9ea10d2008-10-15 22:02:24 -07001766# check we are in a valid source file C or perl if not then ignore this hunk
1767 next if ($realfile !~ /\.(h|c|pl)$/);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001768
1769# at the beginning of a line any tabs must come first and anything
1770# more than 8 must use tabs.
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001771 if ($rawline =~ /^\+\s* \t\s*\S/ ||
1772 $rawline =~ /^\+\s* \s*/) {
1773 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Joe Perches000d1cc12011-07-25 17:13:25 -07001774 ERROR("CODE_INDENT",
1775 "code indent should use tabs where possible\n" . $herevet);
Andy Whitcroftd2c0a232010-10-26 14:23:12 -07001776 $rpt_cleaners = 1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001777 }
1778
Alberto Panizzo08e44362010-03-05 13:43:54 -08001779# check for space before tabs.
1780 if ($rawline =~ /^\+/ && $rawline =~ / \t/) {
1781 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Joe Perches000d1cc12011-07-25 17:13:25 -07001782 WARN("SPACE_BEFORE_TAB",
1783 "please, no space before tabs\n" . $herevet);
Alberto Panizzo08e44362010-03-05 13:43:54 -08001784 }
1785
Raffaele Recalcati5f7ddae2010-08-09 17:20:59 -07001786# check for spaces at the beginning of a line.
Andy Whitcroft6b4c5be2010-10-26 14:23:11 -07001787# Exceptions:
1788# 1) within comments
1789# 2) indented preprocessor commands
1790# 3) hanging labels
1791 if ($rawline =~ /^\+ / && $line !~ /\+ *(?:$;|#|$Ident:)/) {
Raffaele Recalcati5f7ddae2010-08-09 17:20:59 -07001792 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Joe Perches000d1cc12011-07-25 17:13:25 -07001793 WARN("LEADING_SPACE",
1794 "please, no spaces at the start of a line\n" . $herevet);
Raffaele Recalcati5f7ddae2010-08-09 17:20:59 -07001795 }
1796
Andy Whitcroftb9ea10d2008-10-15 22:02:24 -07001797# check we are in a valid C source file if not then ignore this hunk
1798 next if ($realfile !~ /\.(h|c)$/);
1799
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001800# check for RCS/CVS revision markers
Andy Whitcroftcf655042008-03-04 14:28:20 -08001801 if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07001802 WARN("CVS_KEYWORD",
1803 "CVS style keyword markers, these will _not_ be updated\n". $herecurr);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001804 }
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001805
Mike Frysinger42e41c52009-09-21 17:04:40 -07001806# Blackfin: don't use __builtin_bfin_[cs]sync
1807 if ($line =~ /__builtin_bfin_csync/) {
1808 my $herevet = "$here\n" . cat_vet($line) . "\n";
Joe Perches000d1cc12011-07-25 17:13:25 -07001809 ERROR("CSYNC",
1810 "use the CSYNC() macro in asm/blackfin.h\n" . $herevet);
Mike Frysinger42e41c52009-09-21 17:04:40 -07001811 }
1812 if ($line =~ /__builtin_bfin_ssync/) {
1813 my $herevet = "$here\n" . cat_vet($line) . "\n";
Joe Perches000d1cc12011-07-25 17:13:25 -07001814 ERROR("SSYNC",
1815 "use the SSYNC() macro in asm/blackfin.h\n" . $herevet);
Mike Frysinger42e41c52009-09-21 17:04:40 -07001816 }
1817
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001818# Check for potential 'bare' types
Andy Whitcroft2b474a12009-10-26 16:50:16 -07001819 my ($stat, $cond, $line_nr_next, $remain_next, $off_next,
1820 $realline_next);
Andy Whitcroft3e469cd2012-01-10 15:10:01 -08001821#print "LINE<$line>\n";
1822 if ($linenr >= $suppress_statement &&
1823 $realcnt && $line =~ /.\s*\S/) {
Andy Whitcroft170d3a22008-10-15 22:02:30 -07001824 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
Andy Whitcroftf5fe35d2008-07-23 21:29:03 -07001825 ctx_statement_block($linenr, $realcnt, 0);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001826 $stat =~ s/\n./\n /g;
1827 $cond =~ s/\n./\n /g;
1828
Andy Whitcroft3e469cd2012-01-10 15:10:01 -08001829#print "linenr<$linenr> <$stat>\n";
1830 # If this statement has no statement boundaries within
1831 # it there is no point in retrying a statement scan
1832 # until we hit end of it.
1833 my $frag = $stat; $frag =~ s/;+\s*$//;
1834 if ($frag !~ /(?:{|;)/) {
1835#print "skip<$line_nr_next>\n";
1836 $suppress_statement = $line_nr_next;
1837 }
Andy Whitcroftf74bd192012-01-10 15:09:54 -08001838
Andy Whitcroft2b474a12009-10-26 16:50:16 -07001839 # Find the real next line.
1840 $realline_next = $line_nr_next;
1841 if (defined $realline_next &&
1842 (!defined $lines[$realline_next - 1] ||
1843 substr($lines[$realline_next - 1], $off_next) =~ /^\s*$/)) {
1844 $realline_next++;
1845 }
1846
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001847 my $s = $stat;
1848 $s =~ s/{.*$//s;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001849
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001850 # Ignore goto labels.
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001851 if ($s =~ /$Ident:\*$/s) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001852
1853 # Ignore functions being called
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001854 } elsif ($s =~ /^.\s*$Ident\s*\(/s) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001855
Andy Whitcroft463f2862009-09-21 17:04:34 -07001856 } elsif ($s =~ /^.\s*else\b/s) {
1857
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001858 # declarations always start with types
Andy Whitcroftd2506582008-07-23 21:29:09 -07001859 } 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 -07001860 my $type = $1;
1861 $type =~ s/\s+/ /g;
1862 possible($type, "A:" . $s);
1863
Andy Whitcroft8905a672007-11-28 16:21:06 -08001864 # definitions in global scope can only start with types
Andy Whitcrofta6a840622008-10-15 22:02:30 -07001865 } elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b\s*(?!:)/s) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001866 possible($1, "B:" . $s);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001867 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001868
1869 # any (foo ... *) is a pointer cast, and foo is a type
Andy Whitcroft65863862009-01-06 14:41:21 -08001870 while ($s =~ /\(($Ident)(?:\s+$Sparse)*[\s\*]+\s*\)/sg) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001871 possible($1, "C:" . $s);
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001872 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001873
1874 # Check for any sort of function declaration.
1875 # int foo(something bar, other baz);
1876 # void (*store_gdt)(x86_descr_ptr *);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001877 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 -08001878 my ($name_len) = length($1);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001879
Andy Whitcroftcf655042008-03-04 14:28:20 -08001880 my $ctx = $s;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001881 substr($ctx, 0, $name_len + 1, '');
Andy Whitcroft8905a672007-11-28 16:21:06 -08001882 $ctx =~ s/\)[^\)]*$//;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001883
Andy Whitcroft8905a672007-11-28 16:21:06 -08001884 for my $arg (split(/\s*,\s*/, $ctx)) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001885 if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$/s) {
Andy Whitcroft8905a672007-11-28 16:21:06 -08001886
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001887 possible($1, "D:" . $s);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001888 }
1889 }
1890 }
1891
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001892 }
1893
Andy Whitcroft653d4872007-06-23 17:16:34 -07001894#
1895# Checks which may be anchored in the context.
1896#
1897
1898# Check for switch () and associated case and default
1899# statements should be at the same indent.
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001900 if ($line=~/\bswitch\s*\(.*\)/) {
1901 my $err = '';
1902 my $sep = '';
1903 my @ctx = ctx_block_outer($linenr, $realcnt);
1904 shift(@ctx);
1905 for my $ctx (@ctx) {
1906 my ($clen, $cindent) = line_stats($ctx);
1907 if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
1908 $indent != $cindent) {
1909 $err .= "$sep$ctx\n";
1910 $sep = '';
1911 } else {
1912 $sep = "[...]\n";
1913 }
1914 }
1915 if ($err ne '') {
Joe Perches000d1cc12011-07-25 17:13:25 -07001916 ERROR("SWITCH_CASE_INDENT_LEVEL",
1917 "switch and case should be at the same indent\n$hereline$err");
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001918 }
1919 }
1920
1921# if/while/etc brace do not go on next line, unless defining a do while loop,
1922# or if that brace on the next line is for something else
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001923 if ($line =~ /(.*)\b((?:if|while|for|switch)\s*\(|do\b|else\b)/ && $line !~ /^.\s*\#/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001924 my $pre_ctx = "$1$2";
1925
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001926 my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0);
Joe Perches8eef05d2012-02-03 15:20:39 -08001927
1928 if ($line =~ /^\+\t{6,}/) {
1929 WARN("DEEP_INDENTATION",
1930 "Too many leading tabs - consider code refactoring\n" . $herecurr);
1931 }
1932
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001933 my $ctx_cnt = $realcnt - $#ctx - 1;
1934 my $ctx = join("\n", @ctx);
1935
Andy Whitcroft548596d2008-07-23 21:29:01 -07001936 my $ctx_ln = $linenr;
1937 my $ctx_skip = $realcnt;
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001938
Andy Whitcroft548596d2008-07-23 21:29:01 -07001939 while ($ctx_skip > $ctx_cnt || ($ctx_skip == $ctx_cnt &&
1940 defined $lines[$ctx_ln - 1] &&
1941 $lines[$ctx_ln - 1] =~ /^-/)) {
1942 ##print "SKIP<$ctx_skip> CNT<$ctx_cnt>\n";
1943 $ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/);
Andy Whitcroft773647a2008-03-28 14:15:58 -07001944 $ctx_ln++;
1945 }
Andy Whitcroft548596d2008-07-23 21:29:01 -07001946
Andy Whitcroft53210162008-07-23 21:29:03 -07001947 #print "realcnt<$realcnt> ctx_cnt<$ctx_cnt>\n";
1948 #print "pre<$pre_ctx>\nline<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>\n";
Andy Whitcroft773647a2008-03-28 14:15:58 -07001949
1950 if ($ctx !~ /{\s*/ && defined($lines[$ctx_ln -1]) && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07001951 ERROR("OPEN_BRACE",
1952 "that open brace { should be on the previous line\n" .
Andy Whitcroft01464f32010-10-26 14:23:19 -07001953 "$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001954 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001955 if ($level == 0 && $pre_ctx !~ /}\s*while\s*\($/ &&
1956 $ctx =~ /\)\s*\;\s*$/ &&
1957 defined $lines[$ctx_ln - 1])
1958 {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001959 my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
1960 if ($nindent > $indent) {
Joe Perches000d1cc12011-07-25 17:13:25 -07001961 WARN("TRAILING_SEMICOLON",
1962 "trailing semicolon indicates no statements, indent implies otherwise\n" .
Andy Whitcroft01464f32010-10-26 14:23:19 -07001963 "$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001964 }
1965 }
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001966 }
1967
Andy Whitcroft4d001e42008-10-15 22:02:21 -07001968# Check relative indent for conditionals and blocks.
1969 if ($line =~ /\b(?:(?:if|while|for)\s*\(|do\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) {
Andy Whitcroft3e469cd2012-01-10 15:10:01 -08001970 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
1971 ctx_statement_block($linenr, $realcnt, 0)
1972 if (!defined $stat);
Andy Whitcroft4d001e42008-10-15 22:02:21 -07001973 my ($s, $c) = ($stat, $cond);
1974
1975 substr($s, 0, length($c), '');
1976
1977 # Make sure we remove the line prefixes as we have
1978 # none on the first line, and are going to readd them
1979 # where necessary.
1980 $s =~ s/\n./\n/gs;
1981
1982 # Find out how long the conditional actually is.
Andy Whitcroft6f779c12008-10-15 22:02:27 -07001983 my @newlines = ($c =~ /\n/gs);
1984 my $cond_lines = 1 + $#newlines;
Andy Whitcroft4d001e42008-10-15 22:02:21 -07001985
1986 # We want to check the first line inside the block
1987 # starting at the end of the conditional, so remove:
1988 # 1) any blank line termination
1989 # 2) any opening brace { on end of the line
1990 # 3) any do (...) {
1991 my $continuation = 0;
1992 my $check = 0;
1993 $s =~ s/^.*\bdo\b//;
1994 $s =~ s/^\s*{//;
1995 if ($s =~ s/^\s*\\//) {
1996 $continuation = 1;
1997 }
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07001998 if ($s =~ s/^\s*?\n//) {
Andy Whitcroft4d001e42008-10-15 22:02:21 -07001999 $check = 1;
2000 $cond_lines++;
2001 }
2002
2003 # Also ignore a loop construct at the end of a
2004 # preprocessor statement.
2005 if (($prevline =~ /^.\s*#\s*define\s/ ||
2006 $prevline =~ /\\\s*$/) && $continuation == 0) {
2007 $check = 0;
2008 }
2009
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07002010 my $cond_ptr = -1;
Andy Whitcroft740504c2008-10-15 22:02:35 -07002011 $continuation = 0;
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07002012 while ($cond_ptr != $cond_lines) {
2013 $cond_ptr = $cond_lines;
Andy Whitcroft4d001e42008-10-15 22:02:21 -07002014
Andy Whitcroftf16fa282008-10-15 22:02:32 -07002015 # If we see an #else/#elif then the code
2016 # is not linear.
2017 if ($s =~ /^\s*\#\s*(?:else|elif)/) {
2018 $check = 0;
2019 }
2020
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07002021 # Ignore:
2022 # 1) blank lines, they should be at 0,
2023 # 2) preprocessor lines, and
2024 # 3) labels.
Andy Whitcroft740504c2008-10-15 22:02:35 -07002025 if ($continuation ||
2026 $s =~ /^\s*?\n/ ||
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07002027 $s =~ /^\s*#\s*?/ ||
2028 $s =~ /^\s*$Ident\s*:/) {
Andy Whitcroft740504c2008-10-15 22:02:35 -07002029 $continuation = ($s =~ /^.*?\\\n/) ? 1 : 0;
Andy Whitcroft30dad6e2009-09-21 17:04:36 -07002030 if ($s =~ s/^.*?\n//) {
2031 $cond_lines++;
2032 }
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07002033 }
Andy Whitcroft4d001e42008-10-15 22:02:21 -07002034 }
2035
2036 my (undef, $sindent) = line_stats("+" . $s);
2037 my $stat_real = raw_line($linenr, $cond_lines);
2038
2039 # Check if either of these lines are modified, else
2040 # this is not this patch's fault.
2041 if (!defined($stat_real) ||
2042 $stat !~ /^\+/ && $stat_real !~ /^\+/) {
2043 $check = 0;
2044 }
2045 if (defined($stat_real) && $cond_lines > 1) {
2046 $stat_real = "[...]\n$stat_real";
2047 }
2048
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07002049 #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 -07002050
2051 if ($check && (($sindent % 8) != 0 ||
2052 ($sindent <= $indent && $s ne ''))) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002053 WARN("SUSPECT_CODE_INDENT",
2054 "suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n");
Andy Whitcroft4d001e42008-10-15 22:02:21 -07002055 }
2056 }
2057
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002058 # Track the 'values' across context and added lines.
2059 my $opline = $line; $opline =~ s/^./ /;
Andy Whitcroft1f65f942008-07-23 21:29:10 -07002060 my ($curr_values, $curr_vars) =
2061 annotate_values($opline . "\n", $prev_values);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002062 $curr_values = $prev_values . $curr_values;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002063 if ($dbg_values) {
2064 my $outline = $opline; $outline =~ s/\t/ /g;
Andy Whitcroftcf655042008-03-04 14:28:20 -08002065 print "$linenr > .$outline\n";
2066 print "$linenr > $curr_values\n";
Andy Whitcroft1f65f942008-07-23 21:29:10 -07002067 print "$linenr > $curr_vars\n";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002068 }
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002069 $prev_values = substr($curr_values, -1);
2070
Andy Whitcroft00df344f2007-06-08 13:47:06 -07002071#ignore lines not being added
2072 if ($line=~/^[^\+]/) {next;}
2073
Andy Whitcroft653d4872007-06-23 17:16:34 -07002074# TEST: allow direct testing of the type matcher.
Andy Whitcroft7429c692008-07-23 21:29:06 -07002075 if ($dbg_type) {
2076 if ($line =~ /^.\s*$Declare\s*$/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002077 ERROR("TEST_TYPE",
2078 "TEST: is type\n" . $herecurr);
Andy Whitcroft7429c692008-07-23 21:29:06 -07002079 } elsif ($dbg_type > 1 && $line =~ /^.+($Declare)/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002080 ERROR("TEST_NOT_TYPE",
2081 "TEST: is not type ($1 is)\n". $herecurr);
Andy Whitcroft7429c692008-07-23 21:29:06 -07002082 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07002083 next;
2084 }
Andy Whitcrofta1ef2772008-10-15 22:02:17 -07002085# TEST: allow direct testing of the attribute matcher.
2086 if ($dbg_attr) {
Andy Whitcroft9360b0e2009-02-27 14:03:08 -08002087 if ($line =~ /^.\s*$Modifier\s*$/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002088 ERROR("TEST_ATTR",
2089 "TEST: is attr\n" . $herecurr);
Andy Whitcroft9360b0e2009-02-27 14:03:08 -08002090 } elsif ($dbg_attr > 1 && $line =~ /^.+($Modifier)/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002091 ERROR("TEST_NOT_ATTR",
2092 "TEST: is not attr ($1 is)\n". $herecurr);
Andy Whitcrofta1ef2772008-10-15 22:02:17 -07002093 }
2094 next;
2095 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07002096
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002097# check for initialisation to aggregates open brace on the next line
Andy Whitcroft99423c22009-10-26 16:50:15 -07002098 if ($line =~ /^.\s*{/ &&
2099 $prevline =~ /(?:^|[^=])=\s*$/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002100 ERROR("OPEN_BRACE",
2101 "that open brace { should be on the previous line\n" . $hereprev);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002102 }
2103
Andy Whitcroft653d4872007-06-23 17:16:34 -07002104#
2105# Checks which are anchored on the added line.
2106#
2107
2108# check for malformed paths in #include statements (uses RAW line)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002109 if ($rawline =~ m{^.\s*\#\s*include\s+[<"](.*)[">]}) {
Andy Whitcroft653d4872007-06-23 17:16:34 -07002110 my $path = $1;
2111 if ($path =~ m{//}) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002112 ERROR("MALFORMED_INCLUDE",
2113 "malformed #include filename\n" .
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002114 $herecurr);
Andy Whitcroft653d4872007-06-23 17:16:34 -07002115 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07002116 }
Andy Whitcroft00df344f2007-06-08 13:47:06 -07002117
2118# no C99 // comments
2119 if ($line =~ m{//}) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002120 ERROR("C99_COMMENTS",
2121 "do not use C99 // comments\n" . $herecurr);
Andy Whitcroft00df344f2007-06-08 13:47:06 -07002122 }
2123 # Remove C99 comments.
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002124 $line =~ s@//.*@@;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002125 $opline =~ s@//.*@@;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002126
Andy Whitcroft2b474a12009-10-26 16:50:16 -07002127# EXPORT_SYMBOL should immediately follow the thing it is exporting, consider
2128# the whole statement.
2129#print "APW <$lines[$realline_next - 1]>\n";
2130 if (defined $realline_next &&
2131 exists $lines[$realline_next - 1] &&
2132 !defined $suppress_export{$realline_next} &&
2133 ($lines[$realline_next - 1] =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
2134 $lines[$realline_next - 1] =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
Andy Whitcroft3cbf62d2010-10-26 14:23:18 -07002135 # Handle definitions which produce identifiers with
2136 # a prefix:
2137 # XXX(foo);
2138 # EXPORT_SYMBOL(something_foo);
Andy Whitcroft653d4872007-06-23 17:16:34 -07002139 my $name = $1;
Andy Whitcroft87a53872012-01-10 15:10:04 -08002140 if ($stat =~ /^(?:.\s*}\s*\n)?.([A-Z_]+)\s*\(\s*($Ident)/ &&
Andy Whitcroft3cbf62d2010-10-26 14:23:18 -07002141 $name =~ /^${Ident}_$2/) {
2142#print "FOO C name<$name>\n";
2143 $suppress_export{$realline_next} = 1;
2144
2145 } elsif ($stat !~ /(?:
Andy Whitcroft2b474a12009-10-26 16:50:16 -07002146 \n.}\s*$|
Andy Whitcroft48012052008-10-15 22:02:34 -07002147 ^.DEFINE_$Ident\(\Q$name\E\)|
2148 ^.DECLARE_$Ident\(\Q$name\E\)|
2149 ^.LIST_HEAD\(\Q$name\E\)|
Andy Whitcroft2b474a12009-10-26 16:50:16 -07002150 ^.(?:$Storage\s+)?$Type\s*\(\s*\*\s*\Q$name\E\s*\)\s*\(|
2151 \b\Q$name\E(?:\s+$Attribute)*\s*(?:;|=|\[|\()
Andy Whitcroft48012052008-10-15 22:02:34 -07002152 )/x) {
Andy Whitcroft2b474a12009-10-26 16:50:16 -07002153#print "FOO A<$lines[$realline_next - 1]> stat<$stat> name<$name>\n";
2154 $suppress_export{$realline_next} = 2;
2155 } else {
2156 $suppress_export{$realline_next} = 1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002157 }
2158 }
Andy Whitcroft2b474a12009-10-26 16:50:16 -07002159 if (!defined $suppress_export{$linenr} &&
2160 $prevline =~ /^.\s*$/ &&
2161 ($line =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
2162 $line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
2163#print "FOO B <$lines[$linenr - 1]>\n";
2164 $suppress_export{$linenr} = 2;
2165 }
2166 if (defined $suppress_export{$linenr} &&
2167 $suppress_export{$linenr} == 2) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002168 WARN("EXPORT_SYMBOL",
2169 "EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
Andy Whitcroft2b474a12009-10-26 16:50:16 -07002170 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002171
Joe Eloff5150bda2010-08-09 17:21:00 -07002172# check for global initialisers.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002173 if ($line =~ /^.$Type\s*$Ident\s*(?:\s+$Modifier)*\s*=\s*(0|NULL|false)\s*;/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002174 ERROR("GLOBAL_INITIALISERS",
2175 "do not initialise globals to 0 or NULL\n" .
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002176 $herecurr);
2177 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07002178# check for static initialisers.
Andy Whitcroft2d1bafd2009-01-06 14:41:28 -08002179 if ($line =~ /\bstatic\s.*=\s*(0|NULL|false)\s*;/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002180 ERROR("INITIALISED_STATIC",
2181 "do not initialise statics to 0 or NULL\n" .
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002182 $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002183 }
2184
Joe Perchescb710ec2010-10-26 14:23:20 -07002185# check for static const char * arrays.
2186 if ($line =~ /\bstatic\s+const\s+char\s*\*\s*(\w+)\s*\[\s*\]\s*=\s*/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002187 WARN("STATIC_CONST_CHAR_ARRAY",
2188 "static const char * array should probably be static const char * const\n" .
Joe Perchescb710ec2010-10-26 14:23:20 -07002189 $herecurr);
2190 }
2191
2192# check for static char foo[] = "bar" declarations.
2193 if ($line =~ /\bstatic\s+char\s+(\w+)\s*\[\s*\]\s*=\s*"/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002194 WARN("STATIC_CONST_CHAR_ARRAY",
2195 "static char array declaration should probably be static const char\n" .
Joe Perchescb710ec2010-10-26 14:23:20 -07002196 $herecurr);
2197 }
2198
Joe Perches93ed0e22010-10-26 14:23:21 -07002199# check for declarations of struct pci_device_id
2200 if ($line =~ /\bstruct\s+pci_device_id\s+\w+\s*\[\s*\]\s*\=\s*\{/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002201 WARN("DEFINE_PCI_DEVICE_TABLE",
2202 "Use DEFINE_PCI_DEVICE_TABLE for struct pci_device_id\n" . $herecurr);
Joe Perches93ed0e22010-10-26 14:23:21 -07002203 }
2204
Andy Whitcroft653d4872007-06-23 17:16:34 -07002205# check for new typedefs, only function parameters and sparse annotations
2206# make sense.
2207 if ($line =~ /\btypedef\s/ &&
Andy Whitcroft80545762009-01-06 14:41:26 -08002208 $line !~ /\btypedef\s+$Type\s*\(\s*\*?$Ident\s*\)\s*\(/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002209 $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ &&
Andy Whitcroft8ed22ca2008-10-15 22:02:32 -07002210 $line !~ /\b$typeTypedefs\b/ &&
Andy Whitcroft653d4872007-06-23 17:16:34 -07002211 $line !~ /\b__bitwise(?:__|)\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002212 WARN("NEW_TYPEDEFS",
2213 "do not add new typedefs\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002214 }
2215
2216# * goes on variable not on type
Andy Whitcroft65863862009-01-06 14:41:21 -08002217 # (char*[ const])
Andy Whitcroftbfcb2cc2012-01-10 15:10:15 -08002218 while ($line =~ m{(\($NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)\))}g) {
2219 #print "AA<$1>\n";
2220 my ($from, $to) = ($2, $2);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002221
Andy Whitcroft65863862009-01-06 14:41:21 -08002222 # Should start with a space.
2223 $to =~ s/^(\S)/ $1/;
2224 # Should not end with a space.
2225 $to =~ s/\s+$//;
2226 # '*'s should not have spaces between.
Andy Whitcroftf9a0b3d2009-01-15 13:51:05 -08002227 while ($to =~ s/\*\s+\*/\*\*/) {
Andy Whitcroft65863862009-01-06 14:41:21 -08002228 }
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002229
Andy Whitcroft65863862009-01-06 14:41:21 -08002230 #print "from<$from> to<$to>\n";
2231 if ($from ne $to) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002232 ERROR("POINTER_LOCATION",
2233 "\"(foo$from)\" should be \"(foo$to)\"\n" . $herecurr);
Andy Whitcroft65863862009-01-06 14:41:21 -08002234 }
Andy Whitcroftbfcb2cc2012-01-10 15:10:15 -08002235 }
2236 while ($line =~ m{(\b$NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)($Ident))}g) {
2237 #print "BB<$1>\n";
2238 my ($from, $to, $ident) = ($2, $2, $3);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002239
Andy Whitcroft65863862009-01-06 14:41:21 -08002240 # Should start with a space.
2241 $to =~ s/^(\S)/ $1/;
2242 # Should not end with a space.
2243 $to =~ s/\s+$//;
2244 # '*'s should not have spaces between.
Andy Whitcroftf9a0b3d2009-01-15 13:51:05 -08002245 while ($to =~ s/\*\s+\*/\*\*/) {
Andy Whitcroft65863862009-01-06 14:41:21 -08002246 }
2247 # Modifiers should have spaces.
2248 $to =~ s/(\b$Modifier$)/$1 /;
2249
Andy Whitcroft667026e2009-02-27 14:03:08 -08002250 #print "from<$from> to<$to> ident<$ident>\n";
2251 if ($from ne $to && $ident !~ /^$Modifier$/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002252 ERROR("POINTER_LOCATION",
2253 "\"foo${from}bar\" should be \"foo${to}bar\"\n" . $herecurr);
Andy Whitcroft65863862009-01-06 14:41:21 -08002254 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002255 }
2256
2257# # no BUG() or BUG_ON()
2258# if ($line =~ /\b(BUG|BUG_ON)\b/) {
2259# print "Try to use WARN_ON & Recovery code rather than BUG() or BUG_ON()\n";
2260# print "$herecurr";
2261# $clean = 0;
2262# }
2263
Andy Whitcroft8905a672007-11-28 16:21:06 -08002264 if ($line =~ /\bLINUX_VERSION_CODE\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002265 WARN("LINUX_VERSION_CODE",
2266 "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 -08002267 }
2268
Joe Perches17441222011-06-15 15:08:17 -07002269# check for uses of printk_ratelimit
2270 if ($line =~ /\bprintk_ratelimit\s*\(/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002271 WARN("PRINTK_RATELIMITED",
2272"Prefer printk_ratelimited or pr_<level>_ratelimited to printk_ratelimit\n" . $herecurr);
Joe Perches17441222011-06-15 15:08:17 -07002273 }
2274
Andy Whitcroft00df344f2007-06-08 13:47:06 -07002275# printk should use KERN_* levels. Note that follow on printk's on the
2276# same line do not need a level, so we use the current block context
2277# to try and find and validate the current printk. In summary the current
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002278# printk includes all preceding printk's which have no newline on the end.
Andy Whitcroft00df344f2007-06-08 13:47:06 -07002279# we assume the first bad printk is the one to report.
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002280 if ($line =~ /\bprintk\((?!KERN_)\s*"/) {
Andy Whitcroft00df344f2007-06-08 13:47:06 -07002281 my $ok = 0;
2282 for (my $ln = $linenr - 1; $ln >= $first_line; $ln--) {
2283 #print "CHECK<$lines[$ln - 1]\n";
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002284 # we have a preceding printk if it ends
Andy Whitcroft00df344f2007-06-08 13:47:06 -07002285 # with "\n" ignore it, else it is to blame
2286 if ($lines[$ln - 1] =~ m{\bprintk\(}) {
2287 if ($rawlines[$ln - 1] !~ m{\\n"}) {
2288 $ok = 1;
2289 }
2290 last;
2291 }
2292 }
2293 if ($ok == 0) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002294 WARN("PRINTK_WITHOUT_KERN_LEVEL",
2295 "printk() should include KERN_ facility level\n" . $herecurr);
Andy Whitcroft00df344f2007-06-08 13:47:06 -07002296 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002297 }
2298
Andy Whitcroft653d4872007-06-23 17:16:34 -07002299# function brace can't be on same line, except for #defines of do while,
2300# or if closed on same line
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002301 if (($line=~/$Type\s*$Ident\(.*\).*\s{/) and
2302 !($line=~/\#\s*define.*do\s{/) and !($line=~/}/)) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002303 ERROR("OPEN_BRACE",
2304 "open brace '{' following function declarations go on the next line\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002305 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07002306
Andy Whitcroft8905a672007-11-28 16:21:06 -08002307# open braces for enum, union and struct go on the same line.
2308 if ($line =~ /^.\s*{/ &&
2309 $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002310 ERROR("OPEN_BRACE",
2311 "open brace '{' following $1 go on the same line\n" . $hereprev);
Andy Whitcroft8905a672007-11-28 16:21:06 -08002312 }
2313
Andy Whitcroft0c73b4e2010-10-26 14:23:15 -07002314# missing space after union, struct or enum definition
2315 if ($line =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?(?:\s+$Ident)?[=\{]/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002316 WARN("SPACING",
2317 "missing space after $1 definition\n" . $herecurr);
Andy Whitcroft0c73b4e2010-10-26 14:23:15 -07002318 }
2319
Andy Whitcroft8d31cfc2008-07-23 21:29:02 -07002320# check for spacing round square brackets; allowed:
2321# 1. with a type on the left -- int [] a;
Andy Whitcroftfe2a7db2008-10-15 22:02:15 -07002322# 2. at the beginning of a line for slice initialisers -- [0...10] = 5,
2323# 3. inside a curly brace -- = { [0...10] = 5 }
Andy Whitcroft8d31cfc2008-07-23 21:29:02 -07002324 while ($line =~ /(.*?\s)\[/g) {
2325 my ($where, $prefix) = ($-[1], $1);
2326 if ($prefix !~ /$Type\s+$/ &&
Andy Whitcroftfe2a7db2008-10-15 22:02:15 -07002327 ($where != 0 || $prefix !~ /^.\s+$/) &&
2328 $prefix !~ /{\s+$/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002329 ERROR("BRACKET_SPACE",
2330 "space prohibited before open square bracket '['\n" . $herecurr);
Andy Whitcroft8d31cfc2008-07-23 21:29:02 -07002331 }
2332 }
2333
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002334# check for spaces between functions and their parentheses.
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002335 while ($line =~ /($Ident)\s+\(/g) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002336 my $name = $1;
Andy Whitcroft773647a2008-03-28 14:15:58 -07002337 my $ctx_before = substr($line, 0, $-[1]);
2338 my $ctx = "$ctx_before$name";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002339
2340 # Ignore those directives where spaces _are_ permitted.
Andy Whitcroft773647a2008-03-28 14:15:58 -07002341 if ($name =~ /^(?:
2342 if|for|while|switch|return|case|
2343 volatile|__volatile__|
2344 __attribute__|format|__extension__|
2345 asm|__asm__)$/x)
2346 {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002347
2348 # cpp #define statements have non-optional spaces, ie
2349 # if there is a space between the name and the open
2350 # parenthesis it is simply not a parameter group.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002351 } elsif ($ctx_before =~ /^.\s*\#\s*define\s*$/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002352
2353 # cpp #elif statement condition may start with a (
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002354 } elsif ($ctx =~ /^.\s*\#\s*elif\s*$/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002355
2356 # If this whole things ends with a type its most
2357 # likely a typedef for a function.
Andy Whitcroft773647a2008-03-28 14:15:58 -07002358 } elsif ($ctx =~ /$Type$/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002359
2360 } else {
Joe Perches000d1cc12011-07-25 17:13:25 -07002361 WARN("SPACING",
2362 "space prohibited between function name and open parenthesis '('\n" . $herecurr);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002363 }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002364 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07002365# Check operator spacing.
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002366 if (!($line=~/\#\s*include/)) {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002367 my $ops = qr{
2368 <<=|>>=|<=|>=|==|!=|
2369 \+=|-=|\*=|\/=|%=|\^=|\|=|&=|
2370 =>|->|<<|>>|<|>|=|!|~|
Andy Whitcroft1f65f942008-07-23 21:29:10 -07002371 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%|
2372 \?|:
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002373 }x;
Andy Whitcroftcf655042008-03-04 14:28:20 -08002374 my @elements = split(/($ops|;)/, $opline);
Andy Whitcroft00df344f2007-06-08 13:47:06 -07002375 my $off = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002376
2377 my $blank = copy_spacing($opline);
2378
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002379 for (my $n = 0; $n < $#elements; $n += 2) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002380 $off += length($elements[$n]);
2381
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002382 # Pick up the preceding and succeeding characters.
Andy Whitcroft773647a2008-03-28 14:15:58 -07002383 my $ca = substr($opline, 0, $off);
2384 my $cc = '';
2385 if (length($opline) >= ($off + length($elements[$n + 1]))) {
2386 $cc = substr($opline, $off + length($elements[$n + 1]));
2387 }
2388 my $cb = "$ca$;$cc";
2389
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002390 my $a = '';
2391 $a = 'V' if ($elements[$n] ne '');
2392 $a = 'W' if ($elements[$n] =~ /\s$/);
Andy Whitcroftcf655042008-03-04 14:28:20 -08002393 $a = 'C' if ($elements[$n] =~ /$;$/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002394 $a = 'B' if ($elements[$n] =~ /(\[|\()$/);
2395 $a = 'O' if ($elements[$n] eq '');
Andy Whitcroft773647a2008-03-28 14:15:58 -07002396 $a = 'E' if ($ca =~ /^\s*$/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002397
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002398 my $op = $elements[$n + 1];
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002399
2400 my $c = '';
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002401 if (defined $elements[$n + 2]) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002402 $c = 'V' if ($elements[$n + 2] ne '');
2403 $c = 'W' if ($elements[$n + 2] =~ /^\s/);
Andy Whitcroftcf655042008-03-04 14:28:20 -08002404 $c = 'C' if ($elements[$n + 2] =~ /^$;/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002405 $c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
2406 $c = 'O' if ($elements[$n + 2] eq '');
Andy Whitcroft8b1b3372009-01-06 14:41:27 -08002407 $c = 'E' if ($elements[$n + 2] =~ /^\s*\\$/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002408 } else {
2409 $c = 'E';
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002410 }
2411
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002412 my $ctx = "${a}x${c}";
2413
2414 my $at = "(ctx:$ctx)";
2415
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002416 my $ptr = substr($blank, 0, $off) . "^";
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002417 my $hereptr = "$hereline$ptr\n";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002418
Andy Whitcroft74048ed2008-07-23 21:29:10 -07002419 # Pull out the value of this operator.
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002420 my $op_type = substr($curr_values, $off + 1, 1);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002421
Andy Whitcroft1f65f942008-07-23 21:29:10 -07002422 # Get the full operator variant.
2423 my $opv = $op . substr($curr_vars, $off, 1);
2424
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002425 # Ignore operators passed as parameters.
2426 if ($op_type ne 'V' &&
2427 $ca =~ /\s$/ && $cc =~ /^\s*,/) {
2428
Andy Whitcroftcf655042008-03-04 14:28:20 -08002429# # Ignore comments
2430# } elsif ($op =~ /^$;+$/) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002431
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002432 # ; should have either the end of line or a space or \ after it
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002433 } elsif ($op eq ';') {
Andy Whitcroftcf655042008-03-04 14:28:20 -08002434 if ($ctx !~ /.x[WEBC]/ &&
2435 $cc !~ /^\\/ && $cc !~ /^;/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002436 ERROR("SPACING",
2437 "space required after that '$op' $at\n" . $hereptr);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002438 }
2439
2440 # // is a comment
2441 } elsif ($op eq '//') {
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002442
Andy Whitcroft1f65f942008-07-23 21:29:10 -07002443 # No spaces for:
2444 # ->
2445 # : when part of a bitfield
2446 } elsif ($op eq '->' || $opv eq ':B') {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002447 if ($ctx =~ /Wx.|.xW/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002448 ERROR("SPACING",
2449 "spaces prohibited around that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002450 }
2451
2452 # , must have a space on the right.
2453 } elsif ($op eq ',') {
Andy Whitcroftcf655042008-03-04 14:28:20 -08002454 if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002455 ERROR("SPACING",
2456 "space required after that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002457 }
2458
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002459 # '*' as part of a type definition -- reported already.
Andy Whitcroft74048ed2008-07-23 21:29:10 -07002460 } elsif ($opv eq '*_') {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002461 #warn "'*' is part of type\n";
2462
2463 # unary operators should have a space before and
2464 # none after. May be left adjacent to another
2465 # unary operator, or a cast
2466 } elsif ($op eq '!' || $op eq '~' ||
Andy Whitcroft74048ed2008-07-23 21:29:10 -07002467 $opv eq '*U' || $opv eq '-U' ||
Andy Whitcroft0d413862008-10-15 22:02:16 -07002468 $opv eq '&U' || $opv eq '&&U') {
Andy Whitcroftcf655042008-03-04 14:28:20 -08002469 if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002470 ERROR("SPACING",
2471 "space required before that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002472 }
Andy Whitcrofta3340b32009-02-27 14:03:07 -08002473 if ($op eq '*' && $cc =~/\s*$Modifier\b/) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002474 # A unary '*' may be const
2475
2476 } elsif ($ctx =~ /.xW/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002477 ERROR("SPACING",
2478 "space prohibited after that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002479 }
2480
2481 # unary ++ and unary -- are allowed no space on one side.
2482 } elsif ($op eq '++' or $op eq '--') {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002483 if ($ctx !~ /[WEOBC]x[^W]/ && $ctx !~ /[^W]x[WOBEC]/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002484 ERROR("SPACING",
2485 "space required one side of that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002486 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002487 if ($ctx =~ /Wx[BE]/ ||
2488 ($ctx =~ /Wx./ && $cc =~ /^;/)) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002489 ERROR("SPACING",
2490 "space prohibited before that '$op' $at\n" . $hereptr);
Andy Whitcroft653d4872007-06-23 17:16:34 -07002491 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002492 if ($ctx =~ /ExW/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002493 ERROR("SPACING",
2494 "space prohibited after that '$op' $at\n" . $hereptr);
Andy Whitcroft773647a2008-03-28 14:15:58 -07002495 }
2496
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002497
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002498 # << and >> may either have or not have spaces both sides
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002499 } elsif ($op eq '<<' or $op eq '>>' or
2500 $op eq '&' or $op eq '^' or $op eq '|' or
2501 $op eq '+' or $op eq '-' or
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002502 $op eq '*' or $op eq '/' or
2503 $op eq '%')
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002504 {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002505 if ($ctx =~ /Wx[^WCE]|[^WCE]xW/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002506 ERROR("SPACING",
2507 "need consistent spacing around '$op' $at\n" .
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002508 $hereptr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002509 }
2510
Andy Whitcroft1f65f942008-07-23 21:29:10 -07002511 # A colon needs no spaces before when it is
2512 # terminating a case value or a label.
2513 } elsif ($opv eq ':C' || $opv eq ':L') {
2514 if ($ctx =~ /Wx./) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002515 ERROR("SPACING",
2516 "space prohibited before that '$op' $at\n" . $hereptr);
Andy Whitcroft1f65f942008-07-23 21:29:10 -07002517 }
2518
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002519 # All the others need spaces both sides.
Andy Whitcroftcf655042008-03-04 14:28:20 -08002520 } elsif ($ctx !~ /[EWC]x[CWE]/) {
Andy Whitcroft1f65f942008-07-23 21:29:10 -07002521 my $ok = 0;
2522
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002523 # Ignore email addresses <foo@bar>
Andy Whitcroft1f65f942008-07-23 21:29:10 -07002524 if (($op eq '<' &&
2525 $cc =~ /^\S+\@\S+>/) ||
2526 ($op eq '>' &&
2527 $ca =~ /<\S+\@\S+$/))
2528 {
2529 $ok = 1;
2530 }
2531
2532 # Ignore ?:
2533 if (($opv eq ':O' && $ca =~ /\?$/) ||
2534 ($op eq '?' && $cc =~ /^:/)) {
2535 $ok = 1;
2536 }
2537
2538 if ($ok == 0) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002539 ERROR("SPACING",
2540 "spaces required around that '$op' $at\n" . $hereptr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002541 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002542 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002543 $off += length($elements[$n + 1]);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002544 }
2545 }
2546
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002547# check for multiple assignments
2548 if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002549 CHK("MULTIPLE_ASSIGNMENTS",
2550 "multiple assignments should be avoided\n" . $herecurr);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002551 }
2552
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002553## # check for multiple declarations, allowing for a function declaration
2554## # continuation.
2555## if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
2556## $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
2557##
2558## # Remove any bracketed sections to ensure we do not
2559## # falsly report the parameters of functions.
2560## my $ln = $line;
2561## while ($ln =~ s/\([^\(\)]*\)//g) {
2562## }
2563## if ($ln =~ /,/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002564## WARN("MULTIPLE_DECLARATION",
2565## "declaring multiple variables together should be avoided\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002566## }
2567## }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002568
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002569#need space before brace following if, while, etc
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002570 if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) ||
2571 $line =~ /do{/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002572 ERROR("SPACING",
2573 "space required before the open brace '{'\n" . $herecurr);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002574 }
2575
2576# closing brace should have a space following it when it has anything
2577# on the line
2578 if ($line =~ /}(?!(?:,|;|\)))\S/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002579 ERROR("SPACING",
2580 "space required after that close brace '}'\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002581 }
2582
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002583# check spacing on square brackets
2584 if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002585 ERROR("SPACING",
2586 "space prohibited after that open square bracket '['\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002587 }
2588 if ($line =~ /\s\]/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002589 ERROR("SPACING",
2590 "space prohibited before that close square bracket ']'\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002591 }
2592
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002593# check spacing on parentheses
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002594 if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
2595 $line !~ /for\s*\(\s+;/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002596 ERROR("SPACING",
2597 "space prohibited after that open parenthesis '('\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002598 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002599 if ($line =~ /(\s+)\)/ && $line !~ /^.\s*\)/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002600 $line !~ /for\s*\(.*;\s+\)/ &&
2601 $line !~ /:\s+\)/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002602 ERROR("SPACING",
2603 "space prohibited before that close parenthesis ')'\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07002604 }
2605
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002606#goto labels aren't indented, allow a single space however
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002607 if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002608 !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002609 WARN("INDENTED_LABEL",
2610 "labels should not be indented\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002611 }
2612
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002613# Return is not a function.
2614 if (defined($stat) && $stat =~ /^.\s*return(\s*)(\(.*);/s) {
2615 my $spacing = $1;
2616 my $value = $2;
2617
Andy Whitcroft86f9d052009-01-06 14:41:24 -08002618 # Flatten any parentheses
Andy Whitcroftfb2d2c12010-10-26 14:23:12 -07002619 $value =~ s/\(/ \(/g;
2620 $value =~ s/\)/\) /g;
Andy Whitcrofte01886a2012-01-10 15:10:08 -08002621 while ($value =~ s/\[[^\[\]]*\]/1/ ||
Andy Whitcroft63f17f82009-01-15 13:51:06 -08002622 $value !~ /(?:$Ident|-?$Constant)\s*
2623 $Compare\s*
2624 (?:$Ident|-?$Constant)/x &&
2625 $value =~ s/\([^\(\)]*\)/1/) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002626 }
Andy Whitcroftfb2d2c12010-10-26 14:23:12 -07002627#print "value<$value>\n";
2628 if ($value =~ /^\s*(?:$Ident|-?$Constant)\s*$/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002629 ERROR("RETURN_PARENTHESES",
2630 "return is not a function, parentheses are not required\n" . $herecurr);
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002631
2632 } elsif ($spacing !~ /\s+/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002633 ERROR("SPACING",
2634 "space required before the open parenthesis '('\n" . $herecurr);
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002635 }
2636 }
Andy Whitcroft53a3c442010-10-26 14:23:14 -07002637# Return of what appears to be an errno should normally be -'ve
2638 if ($line =~ /^.\s*return\s*(E[A-Z]*)\s*;/) {
2639 my $name = $1;
2640 if ($name ne 'EOF' && $name ne 'ERROR') {
Joe Perches000d1cc12011-07-25 17:13:25 -07002641 WARN("USE_NEGATIVE_ERRNO",
2642 "return of an errno should typically be -ve (return -$1)\n" . $herecurr);
Andy Whitcroft53a3c442010-10-26 14:23:14 -07002643 }
2644 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002645
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002646# Need a space before open parenthesis after if, while etc
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002647 if ($line=~/\b(if|while|for|switch)\(/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002648 ERROR("SPACING", "space required before the open parenthesis '('\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002649 }
2650
Andy Whitcroftf5fe35d2008-07-23 21:29:03 -07002651# Check for illegal assignment in if conditional -- and check for trailing
2652# statements after the conditional.
Andy Whitcroft170d3a22008-10-15 22:02:30 -07002653 if ($line =~ /do\s*(?!{)/) {
Andy Whitcroft3e469cd2012-01-10 15:10:01 -08002654 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
2655 ctx_statement_block($linenr, $realcnt, 0)
2656 if (!defined $stat);
Andy Whitcroft170d3a22008-10-15 22:02:30 -07002657 my ($stat_next) = ctx_statement_block($line_nr_next,
2658 $remain_next, $off_next);
2659 $stat_next =~ s/\n./\n /g;
2660 ##print "stat<$stat> stat_next<$stat_next>\n";
2661
2662 if ($stat_next =~ /^\s*while\b/) {
2663 # If the statement carries leading newlines,
2664 # then count those as offsets.
2665 my ($whitespace) =
2666 ($stat_next =~ /^((?:\s*\n[+-])*\s*)/s);
2667 my $offset =
2668 statement_rawlines($whitespace) - 1;
2669
2670 $suppress_whiletrailers{$line_nr_next +
2671 $offset} = 1;
2672 }
2673 }
2674 if (!defined $suppress_whiletrailers{$linenr} &&
2675 $line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002676 my ($s, $c) = ($stat, $cond);
Andy Whitcroft8905a672007-11-28 16:21:06 -08002677
Andy Whitcroftb53c8e12009-01-06 14:41:29 -08002678 if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/s) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002679 ERROR("ASSIGN_IN_IF",
2680 "do not use assignment in if condition\n" . $herecurr);
Andy Whitcroft8905a672007-11-28 16:21:06 -08002681 }
2682
2683 # Find out what is on the end of the line after the
2684 # conditional.
Andy Whitcroft773647a2008-03-28 14:15:58 -07002685 substr($s, 0, length($c), '');
Andy Whitcroft8905a672007-11-28 16:21:06 -08002686 $s =~ s/\n.*//g;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002687 $s =~ s/$;//g; # Remove any comments
Andy Whitcroft53210162008-07-23 21:29:03 -07002688 if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ &&
2689 $c !~ /}\s*while\s*/)
Andy Whitcroft773647a2008-03-28 14:15:58 -07002690 {
Andy Whitcroftbb44ad32008-10-15 22:02:34 -07002691 # Find out how long the conditional actually is.
2692 my @newlines = ($c =~ /\n/gs);
2693 my $cond_lines = 1 + $#newlines;
Hidetoshi Seto42bdf742010-03-05 13:43:50 -08002694 my $stat_real = '';
Andy Whitcroftbb44ad32008-10-15 22:02:34 -07002695
Hidetoshi Seto42bdf742010-03-05 13:43:50 -08002696 $stat_real = raw_line($linenr, $cond_lines)
2697 . "\n" if ($cond_lines);
Andy Whitcroftbb44ad32008-10-15 22:02:34 -07002698 if (defined($stat_real) && $cond_lines > 1) {
2699 $stat_real = "[...]\n$stat_real";
2700 }
2701
Joe Perches000d1cc12011-07-25 17:13:25 -07002702 ERROR("TRAILING_STATEMENTS",
2703 "trailing statements should be on next line\n" . $herecurr . $stat_real);
Andy Whitcroft8905a672007-11-28 16:21:06 -08002704 }
2705 }
2706
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002707# Check for bitwise tests written as boolean
2708 if ($line =~ /
2709 (?:
2710 (?:\[|\(|\&\&|\|\|)
2711 \s*0[xX][0-9]+\s*
2712 (?:\&\&|\|\|)
2713 |
2714 (?:\&\&|\|\|)
2715 \s*0[xX][0-9]+\s*
2716 (?:\&\&|\|\||\)|\])
2717 )/x)
2718 {
Joe Perches000d1cc12011-07-25 17:13:25 -07002719 WARN("HEXADECIMAL_BOOLEAN_TEST",
2720 "boolean test with hexadecimal, perhaps just 1 \& or \|?\n" . $herecurr);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002721 }
2722
Andy Whitcroft8905a672007-11-28 16:21:06 -08002723# if and else should not have general statements after it
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002724 if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/) {
2725 my $s = $1;
2726 $s =~ s/$;//g; # Remove any comments
2727 if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002728 ERROR("TRAILING_STATEMENTS",
2729 "trailing statements should be on next line\n" . $herecurr);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002730 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002731 }
Andy Whitcroft39667782009-01-15 13:51:06 -08002732# if should not continue a brace
2733 if ($line =~ /}\s*if\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002734 ERROR("TRAILING_STATEMENTS",
2735 "trailing statements should be on next line\n" .
Andy Whitcroft39667782009-01-15 13:51:06 -08002736 $herecurr);
2737 }
Andy Whitcrofta1080bf2008-10-15 22:02:25 -07002738# case and default should not have general statements after them
2739 if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
2740 $line !~ /\G(?:
Andy Whitcroft3fef12d2008-10-15 22:02:36 -07002741 (?:\s*$;*)(?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$|
Andy Whitcrofta1080bf2008-10-15 22:02:25 -07002742 \s*return\s+
2743 )/xg)
2744 {
Joe Perches000d1cc12011-07-25 17:13:25 -07002745 ERROR("TRAILING_STATEMENTS",
2746 "trailing statements should be on next line\n" . $herecurr);
Andy Whitcrofta1080bf2008-10-15 22:02:25 -07002747 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002748
2749 # Check for }<nl>else {, these must be at the same
2750 # indent level to be relevant to each other.
2751 if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ and
2752 $previndent == $indent) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002753 ERROR("ELSE_AFTER_BRACE",
2754 "else should follow close brace '}'\n" . $hereprev);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002755 }
2756
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002757 if ($prevline=~/}\s*$/ and $line=~/^.\s*while\s*/ and
2758 $previndent == $indent) {
2759 my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0);
2760
2761 # Find out what is on the end of the line after the
2762 # conditional.
Andy Whitcroft773647a2008-03-28 14:15:58 -07002763 substr($s, 0, length($c), '');
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002764 $s =~ s/\n.*//g;
2765
2766 if ($s =~ /^\s*;/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002767 ERROR("WHILE_AFTER_BRACE",
2768 "while should follow close brace '}'\n" . $hereprev);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002769 }
2770 }
2771
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002772#studly caps, commented out until figure out how to distinguish between use of existing and adding new
2773# if (($line=~/[\w_][a-z\d]+[A-Z]/) and !($line=~/print/)) {
2774# print "No studly caps, use _\n";
2775# print "$herecurr";
2776# $clean = 0;
2777# }
2778
2779#no spaces allowed after \ in define
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002780 if ($line=~/\#\s*define.*\\\s$/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002781 WARN("WHITESPACE_AFTER_LINE_CONTINUATION",
2782 "Whitepspace after \\ makes next lines useless\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002783 }
2784
Andy Whitcroft653d4872007-06-23 17:16:34 -07002785#warn if <asm/foo.h> is #included and <linux/foo.h> is available (uses RAW line)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002786 if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) {
Andy Whitcrofte09dec42008-10-15 22:02:20 -07002787 my $file = "$1.h";
2788 my $checkfile = "include/linux/$file";
2789 if (-f "$root/$checkfile" &&
2790 $realfile ne $checkfile &&
Wolfram Sang7840a942010-08-09 17:20:57 -07002791 $1 !~ /$allowed_asm_includes/)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002792 {
Andy Whitcrofte09dec42008-10-15 22:02:20 -07002793 if ($realfile =~ m{^arch/}) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002794 CHK("ARCH_INCLUDE_LINUX",
2795 "Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
Andy Whitcrofte09dec42008-10-15 22:02:20 -07002796 } else {
Joe Perches000d1cc12011-07-25 17:13:25 -07002797 WARN("INCLUDE_LINUX",
2798 "Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
Andy Whitcrofte09dec42008-10-15 22:02:20 -07002799 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002800 }
2801 }
2802
Andy Whitcroft653d4872007-06-23 17:16:34 -07002803# multi-statement macros should be enclosed in a do while loop, grab the
2804# first statement and ensure its the whole macro if its not enclosed
Andy Whitcroftcf655042008-03-04 14:28:20 -08002805# in a known good container
Andy Whitcroftb8f96a312008-07-23 21:29:07 -07002806 if ($realfile !~ m@/vmlinux.lds.h$@ &&
2807 $line =~ /^.\s*\#\s*define\s*$Ident(\()?/) {
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002808 my $ln = $linenr;
2809 my $cnt = $realcnt;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002810 my ($off, $dstat, $dcond, $rest);
2811 my $ctx = '';
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002812 ($dstat, $dcond, $ln, $cnt, $off) =
Andy Whitcroftf74bd192012-01-10 15:09:54 -08002813 ctx_statement_block($linenr, $realcnt, 0);
2814 $ctx = $dstat;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002815 #print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n";
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -07002816 #print "LINE<$lines[$ln-1]> len<" . length($lines[$ln-1]) . "\n";
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002817
Andy Whitcroftf74bd192012-01-10 15:09:54 -08002818 $dstat =~ s/^.\s*\#\s*define\s+$Ident(?:\([^\)]*\))?\s*//;
Andy Whitcroft292f1a92008-07-23 21:29:11 -07002819 $dstat =~ s/$;//g;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002820 $dstat =~ s/\\\n.//g;
2821 $dstat =~ s/^\s*//s;
2822 $dstat =~ s/\s*$//s;
2823
2824 # Flatten any parentheses and braces
Andy Whitcroftbf30d6e2008-10-15 22:02:33 -07002825 while ($dstat =~ s/\([^\(\)]*\)/1/ ||
2826 $dstat =~ s/\{[^\{\}]*\}/1/ ||
Andy Whitcroftc81769f2012-01-10 15:10:10 -08002827 $dstat =~ s/\[[^\[\]]*\]/1/)
Andy Whitcroftbf30d6e2008-10-15 22:02:33 -07002828 {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002829 }
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002830
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002831 my $exceptions = qr{
2832 $Declare|
2833 module_param_named|
2834 MODULE_PARAM_DESC|
2835 DECLARE_PER_CPU|
2836 DEFINE_PER_CPU|
Andy Whitcroft383099f2009-01-06 14:41:18 -08002837 __typeof__\(|
Stefani Seibold22fd2d32010-03-05 13:43:52 -08002838 union|
2839 struct|
Andy Whitcroftea71a0a2009-09-21 17:04:38 -07002840 \.$Ident\s*=\s*|
2841 ^\"|\"$
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002842 }x;
Andy Whitcroft5eaa20b2010-10-26 14:23:18 -07002843 #print "REST<$rest> dstat<$dstat> ctx<$ctx>\n";
Andy Whitcroftf74bd192012-01-10 15:09:54 -08002844 if ($dstat ne '' &&
2845 $dstat !~ /^(?:$Ident|-?$Constant),$/ && # 10, // foo(),
2846 $dstat !~ /^(?:$Ident|-?$Constant);$/ && # foo();
2847 $dstat !~ /^(?:$Ident|-?$Constant)$/ && # 10 // foo()
2848 $dstat !~ /$exceptions/ &&
2849 $dstat !~ /^\.$Ident\s*=/ && # .foo =
Andy Whitcroft72f115f2012-01-10 15:10:06 -08002850 $dstat !~ /^do\s*$Constant\s*while\s*$Constant;?$/ && # do {...} while (...); // do {...} while (...)
Andy Whitcroftf74bd192012-01-10 15:09:54 -08002851 $dstat !~ /^for\s*$Constant$/ && # for (...)
2852 $dstat !~ /^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ && # for (...) bar()
2853 $dstat !~ /^do\s*{/ && # do {...
2854 $dstat !~ /^\({/) # ({...
2855 {
2856 $ctx =~ s/\n*$//;
2857 my $herectx = $here . "\n";
2858 my $cnt = statement_rawlines($ctx);
2859
2860 for (my $n = 0; $n < $cnt; $n++) {
2861 $herectx .= raw_line($linenr, $n) . "\n";
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002862 }
2863
Andy Whitcroftf74bd192012-01-10 15:09:54 -08002864 if ($dstat =~ /;/) {
2865 ERROR("MULTISTATEMENT_MACRO_USE_DO_WHILE",
2866 "Macros with multiple statements should be enclosed in a do - while loop\n" . "$herectx");
2867 } else {
Joe Perches000d1cc12011-07-25 17:13:25 -07002868 ERROR("COMPLEX_MACRO",
Andy Whitcroftf74bd192012-01-10 15:09:54 -08002869 "Macros with complex values should be enclosed in parenthesis\n" . "$herectx");
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002870 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07002871 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002872 }
2873
Mike Frysinger080ba922009-01-06 14:41:25 -08002874# make sure symbols are always wrapped with VMLINUX_SYMBOL() ...
2875# all assignments may have only one of the following with an assignment:
2876# .
2877# ALIGN(...)
2878# VMLINUX_SYMBOL(...)
2879 if ($realfile eq 'vmlinux.lds.h' && $line =~ /(?:(?:^|\s)$Ident\s*=|=\s*$Ident(?:\s|$))/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002880 WARN("MISSING_VMLINUX_SYMBOL",
2881 "vmlinux.lds.h needs VMLINUX_SYMBOL() around C-visible symbols\n" . $herecurr);
Mike Frysinger080ba922009-01-06 14:41:25 -08002882 }
2883
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002884# check for redundant bracing round if etc
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002885 if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) {
2886 my ($level, $endln, @chunks) =
Andy Whitcroftcf655042008-03-04 14:28:20 -08002887 ctx_statement_full($linenr, $realcnt, 1);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002888 #print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08002889 #print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n";
2890 if ($#chunks > 0 && $level == 0) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002891 my $allowed = 0;
2892 my $seen = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07002893 my $herectx = $here . "\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08002894 my $ln = $linenr - 1;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002895 for my $chunk (@chunks) {
2896 my ($cond, $block) = @{$chunk};
2897
Andy Whitcroft773647a2008-03-28 14:15:58 -07002898 # If the condition carries leading newlines, then count those as offsets.
2899 my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s);
2900 my $offset = statement_rawlines($whitespace) - 1;
2901
2902 #print "COND<$cond> whitespace<$whitespace> offset<$offset>\n";
2903
2904 # We have looked at and allowed this specific line.
2905 $suppress_ifbraces{$ln + $offset} = 1;
2906
2907 $herectx .= "$rawlines[$ln + $offset]\n[...]\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08002908 $ln += statement_rawlines($block) - 1;
2909
Andy Whitcroft773647a2008-03-28 14:15:58 -07002910 substr($block, 0, length($cond), '');
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002911
2912 $seen++ if ($block =~ /^\s*{/);
2913
Andy Whitcroftcf655042008-03-04 14:28:20 -08002914 #print "cond<$cond> block<$block> allowed<$allowed>\n";
2915 if (statement_lines($cond) > 1) {
2916 #print "APW: ALLOWED: cond<$cond>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002917 $allowed = 1;
2918 }
2919 if ($block =~/\b(?:if|for|while)\b/) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08002920 #print "APW: ALLOWED: block<$block>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002921 $allowed = 1;
2922 }
Andy Whitcroftcf655042008-03-04 14:28:20 -08002923 if (statement_block_size($block) > 1) {
2924 #print "APW: ALLOWED: lines block<$block>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002925 $allowed = 1;
2926 }
2927 }
2928 if ($seen && !$allowed) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002929 WARN("BRACES",
2930 "braces {} are not necessary for any arm of this statement\n" . $herectx);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002931 }
2932 }
2933 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002934 if (!defined $suppress_ifbraces{$linenr - 1} &&
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002935 $line =~ /\b(if|while|for|else)\b/) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08002936 my $allowed = 0;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002937
Andy Whitcroftcf655042008-03-04 14:28:20 -08002938 # Check the pre-context.
2939 if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) {
2940 #print "APW: ALLOWED: pre<$1>\n";
2941 $allowed = 1;
2942 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002943
2944 my ($level, $endln, @chunks) =
2945 ctx_statement_full($linenr, $realcnt, $-[0]);
2946
Andy Whitcroftcf655042008-03-04 14:28:20 -08002947 # Check the condition.
2948 my ($cond, $block) = @{$chunks[0]};
Andy Whitcroft773647a2008-03-28 14:15:58 -07002949 #print "CHECKING<$linenr> cond<$cond> block<$block>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08002950 if (defined $cond) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002951 substr($block, 0, length($cond), '');
Andy Whitcroftcf655042008-03-04 14:28:20 -08002952 }
2953 if (statement_lines($cond) > 1) {
2954 #print "APW: ALLOWED: cond<$cond>\n";
2955 $allowed = 1;
2956 }
2957 if ($block =~/\b(?:if|for|while)\b/) {
2958 #print "APW: ALLOWED: block<$block>\n";
2959 $allowed = 1;
2960 }
2961 if (statement_block_size($block) > 1) {
2962 #print "APW: ALLOWED: lines block<$block>\n";
2963 $allowed = 1;
2964 }
2965 # Check the post-context.
2966 if (defined $chunks[1]) {
2967 my ($cond, $block) = @{$chunks[1]};
2968 if (defined $cond) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002969 substr($block, 0, length($cond), '');
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002970 }
Andy Whitcroftcf655042008-03-04 14:28:20 -08002971 if ($block =~ /^\s*\{/) {
2972 #print "APW: ALLOWED: chunk-1 block<$block>\n";
2973 $allowed = 1;
2974 }
2975 }
2976 if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
Justin P. Mattock69932482011-07-26 23:06:29 -07002977 my $herectx = $here . "\n";
Andy Whitcroftf0556632008-10-15 22:02:23 -07002978 my $cnt = statement_rawlines($block);
Andy Whitcroftcf655042008-03-04 14:28:20 -08002979
Andy Whitcroftf0556632008-10-15 22:02:23 -07002980 for (my $n = 0; $n < $cnt; $n++) {
Justin P. Mattock69932482011-07-26 23:06:29 -07002981 $herectx .= raw_line($linenr, $n) . "\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08002982 }
2983
Joe Perches000d1cc12011-07-25 17:13:25 -07002984 WARN("BRACES",
2985 "braces {} are not necessary for single statement blocks\n" . $herectx);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002986 }
2987 }
2988
Andy Whitcroft653d4872007-06-23 17:16:34 -07002989# don't include deprecated include files (uses RAW line)
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002990 for my $inc (@dep_includes) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002991 if ($rawline =~ m@^.\s*\#\s*include\s*\<$inc>@) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002992 ERROR("DEPRECATED_INCLUDE",
2993 "Don't use <$inc>: see Documentation/feature-removal-schedule.txt\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002994 }
2995 }
2996
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002997# don't use deprecated functions
2998 for my $func (@dep_functions) {
Andy Whitcroft00df344f2007-06-08 13:47:06 -07002999 if ($line =~ /\b$func\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003000 ERROR("DEPRECATED_FUNCTION",
3001 "Don't use $func(): see Documentation/feature-removal-schedule.txt\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07003002 }
3003 }
3004
3005# no volatiles please
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07003006 my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
3007 if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003008 WARN("VOLATILE",
3009 "Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07003010 }
3011
Andy Whitcroft00df344f2007-06-08 13:47:06 -07003012# warn about #if 0
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07003013 if ($line =~ /^.\s*\#\s*if\s+0\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003014 CHK("REDUNDANT_CODE",
3015 "if this code is redundant consider removing it\n" .
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07003016 $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07003017 }
3018
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07003019# check for needless kfree() checks
3020 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
3021 my $expr = $1;
3022 if ($line =~ /\bkfree\(\Q$expr\E\);/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003023 WARN("NEEDLESS_KFREE",
3024 "kfree(NULL) is safe this check is probably not required\n" . $hereprev);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07003025 }
3026 }
Greg Kroah-Hartman4c432a82008-07-23 21:29:04 -07003027# check for needless usb_free_urb() checks
3028 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
3029 my $expr = $1;
3030 if ($line =~ /\busb_free_urb\(\Q$expr\E\);/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003031 WARN("NEEDLESS_USB_FREE_URB",
3032 "usb_free_urb(NULL) is safe this check is probably not required\n" . $hereprev);
Greg Kroah-Hartman4c432a82008-07-23 21:29:04 -07003033 }
3034 }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07003035
Patrick Pannuto1a15a252010-08-09 17:21:01 -07003036# prefer usleep_range over udelay
3037 if ($line =~ /\budelay\s*\(\s*(\w+)\s*\)/) {
3038 # ignore udelay's < 10, however
3039 if (! (($1 =~ /(\d+)/) && ($1 < 10)) ) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003040 CHK("USLEEP_RANGE",
3041 "usleep_range is preferred over udelay; see Documentation/timers/timers-howto.txt\n" . $line);
Patrick Pannuto1a15a252010-08-09 17:21:01 -07003042 }
3043 }
3044
Patrick Pannuto09ef8722010-08-09 17:21:02 -07003045# warn about unexpectedly long msleep's
3046 if ($line =~ /\bmsleep\s*\((\d+)\);/) {
3047 if ($1 < 20) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003048 WARN("MSLEEP",
3049 "msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt\n" . $line);
Patrick Pannuto09ef8722010-08-09 17:21:02 -07003050 }
3051 }
3052
Andy Whitcroft00df344f2007-06-08 13:47:06 -07003053# warn about #ifdefs in C files
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07003054# if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
Andy Whitcroft00df344f2007-06-08 13:47:06 -07003055# print "#ifdef in C files should be avoided\n";
3056# print "$herecurr";
3057# $clean = 0;
3058# }
3059
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07003060# warn about spacing in #ifdefs
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07003061 if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003062 ERROR("SPACING",
3063 "exactly one space required after that #$1\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07003064 }
3065
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07003066# check for spinlock_t definitions without a comment.
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07003067 if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ ||
3068 $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07003069 my $which = $1;
3070 if (!ctx_has_comment($first_line, $linenr)) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003071 CHK("UNCOMMENTED_DEFINITION",
3072 "$1 definition without comment\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07003073 }
3074 }
3075# check for memory barriers without a comment.
3076 if ($line =~ /\b(mb|rmb|wmb|read_barrier_depends|smp_mb|smp_rmb|smp_wmb|smp_read_barrier_depends)\(/) {
3077 if (!ctx_has_comment($first_line, $linenr)) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003078 CHK("MEMORY_BARRIER",
3079 "memory barrier without comment\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07003080 }
3081 }
3082# check of hardware specific defines
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07003083 if ($line =~ m@^.\s*\#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003084 CHK("ARCH_DEFINES",
3085 "architecture specific defines should be avoided\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003086 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07003087
Tobias Klauserd4977c72010-05-24 14:33:30 -07003088# Check that the storage class is at the beginning of a declaration
3089 if ($line =~ /\b$Storage\b/ && $line !~ /^.\s*$Storage\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003090 WARN("STORAGE_CLASS",
3091 "storage class should be at the beginning of the declaration\n" . $herecurr)
Tobias Klauserd4977c72010-05-24 14:33:30 -07003092 }
3093
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07003094# check the location of the inline attribute, that it is between
3095# storage class and type.
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07003096 if ($line =~ /\b$Type\s+$Inline\b/ ||
3097 $line =~ /\b$Inline\s+$Storage\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003098 ERROR("INLINE_LOCATION",
3099 "inline keyword should sit between storage class and type\n" . $herecurr);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07003100 }
3101
Andy Whitcroft8905a672007-11-28 16:21:06 -08003102# Check for __inline__ and __inline, prefer inline
3103 if ($line =~ /\b(__inline__|__inline)\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003104 WARN("INLINE",
3105 "plain inline is preferred over $1\n" . $herecurr);
Andy Whitcroft8905a672007-11-28 16:21:06 -08003106 }
3107
Joe Perches3d130fd2011-01-12 17:00:00 -08003108# Check for __attribute__ packed, prefer __packed
3109 if ($line =~ /\b__attribute__\s*\(\s*\(.*\bpacked\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003110 WARN("PREFER_PACKED",
3111 "__packed is preferred over __attribute__((packed))\n" . $herecurr);
Joe Perches3d130fd2011-01-12 17:00:00 -08003112 }
3113
Joe Perches39b7e282011-07-25 17:13:24 -07003114# Check for __attribute__ aligned, prefer __aligned
3115 if ($line =~ /\b__attribute__\s*\(\s*\(.*aligned/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003116 WARN("PREFER_ALIGNED",
3117 "__aligned(size) is preferred over __attribute__((aligned(size)))\n" . $herecurr);
Joe Perches39b7e282011-07-25 17:13:24 -07003118 }
3119
Joe Perches5f14d3b2012-01-10 15:09:52 -08003120# Check for __attribute__ format(printf, prefer __printf
3121 if ($line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf/) {
3122 WARN("PREFER_PRINTF",
3123 "__printf(string-index, first-to-check) is preferred over __attribute__((format(printf, string-index, first-to-check)))\n" . $herecurr);
3124 }
3125
Joe Perches6061d942012-03-23 15:02:16 -07003126# Check for __attribute__ format(scanf, prefer __scanf
3127 if ($line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*scanf\b/) {
3128 WARN("PREFER_SCANF",
3129 "__scanf(string-index, first-to-check) is preferred over __attribute__((format(scanf, string-index, first-to-check)))\n" . $herecurr);
3130 }
3131
Joe Perches8f53a9b2010-03-05 13:43:48 -08003132# check for sizeof(&)
3133 if ($line =~ /\bsizeof\s*\(\s*\&/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003134 WARN("SIZEOF_ADDRESS",
3135 "sizeof(& should be avoided\n" . $herecurr);
Joe Perches8f53a9b2010-03-05 13:43:48 -08003136 }
3137
Joe Perches428e2fd2011-05-24 17:13:39 -07003138# check for line continuations in quoted strings with odd counts of "
3139 if ($rawline =~ /\\$/ && $rawline =~ tr/"/"/ % 2) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003140 WARN("LINE_CONTINUATIONS",
3141 "Avoid line continuations in quoted strings\n" . $herecurr);
Joe Perches428e2fd2011-05-24 17:13:39 -07003142 }
3143
Andy Whitcroft554e1652012-01-10 15:09:57 -08003144# Check for misused memsets
Joe Perchesd7c76ba2012-01-10 15:09:58 -08003145 if (defined $stat &&
3146 $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*$FuncArg\s*\)/s) {
Andy Whitcroft554e1652012-01-10 15:09:57 -08003147
Joe Perchesd7c76ba2012-01-10 15:09:58 -08003148 my $ms_addr = $2;
3149 my $ms_val = $8;
3150 my $ms_size = $14;
3151
Andy Whitcroft554e1652012-01-10 15:09:57 -08003152 if ($ms_size =~ /^(0x|)0$/i) {
3153 ERROR("MEMSET",
Joe Perchesd7c76ba2012-01-10 15:09:58 -08003154 "memset to 0's uses 0 as the 2nd argument, not the 3rd\n" . "$here\n$stat\n");
Andy Whitcroft554e1652012-01-10 15:09:57 -08003155 } elsif ($ms_size =~ /^(0x|)1$/i) {
3156 WARN("MEMSET",
Joe Perchesd7c76ba2012-01-10 15:09:58 -08003157 "single byte memset is suspicious. Swapped 2nd/3rd argument?\n" . "$here\n$stat\n");
3158 }
3159 }
3160
3161# typecasts on min/max could be min_t/max_t
3162 if (defined $stat &&
3163 $stat =~ /^\+(?:.*?)\b(min|max)\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\)/) {
3164 if (defined $2 || defined $8) {
3165 my $call = $1;
3166 my $cast1 = deparenthesize($2);
3167 my $arg1 = $3;
3168 my $cast2 = deparenthesize($8);
3169 my $arg2 = $9;
3170 my $cast;
3171
3172 if ($cast1 ne "" && $cast2 ne "") {
3173 $cast = "$cast1 or $cast2";
3174 } elsif ($cast1 ne "") {
3175 $cast = $cast1;
3176 } else {
3177 $cast = $cast2;
3178 }
3179 WARN("MINMAX",
3180 "$call() should probably be ${call}_t($cast, $arg1, $arg2)\n" . "$here\n$stat\n");
Andy Whitcroft554e1652012-01-10 15:09:57 -08003181 }
3182 }
3183
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07003184# check for new externs in .c files.
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07003185 if ($realfile =~ /\.c$/ && defined $stat &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07003186 $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s)
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07003187 {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07003188 my $function_name = $1;
3189 my $paren_space = $2;
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07003190
3191 my $s = $stat;
3192 if (defined $cond) {
3193 substr($s, 0, length($cond), '');
3194 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07003195 if ($s =~ /^\s*;/ &&
3196 $function_name ne 'uninitialized_var')
3197 {
Joe Perches000d1cc12011-07-25 17:13:25 -07003198 WARN("AVOID_EXTERNS",
3199 "externs should be avoided in .c files\n" . $herecurr);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07003200 }
3201
3202 if ($paren_space =~ /\n/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003203 WARN("FUNCTION_ARGUMENTS",
3204 "arguments for function declarations should follow identifier\n" . $herecurr);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07003205 }
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07003206
3207 } elsif ($realfile =~ /\.c$/ && defined $stat &&
3208 $stat =~ /^.\s*extern\s+/)
3209 {
Joe Perches000d1cc12011-07-25 17:13:25 -07003210 WARN("AVOID_EXTERNS",
3211 "externs should be avoided in .c files\n" . $herecurr);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07003212 }
3213
3214# checks for new __setup's
3215 if ($rawline =~ /\b__setup\("([^"]*)"/) {
3216 my $name = $1;
3217
3218 if (!grep(/$name/, @setup_docs)) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003219 CHK("UNDOCUMENTED_SETUP",
3220 "__setup appears un-documented -- check Documentation/kernel-parameters.txt\n" . $herecurr);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07003221 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07003222 }
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07003223
3224# check for pointless casting of kmalloc return
Joe Perchescaf2a542011-01-12 16:59:56 -08003225 if ($line =~ /\*\s*\)\s*[kv][czm]alloc(_node){0,1}\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003226 WARN("UNNECESSARY_CASTS",
3227 "unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07003228 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08003229
Joe Perchescaf2a542011-01-12 16:59:56 -08003230# check for multiple semicolons
3231 if ($line =~ /;\s*;\s*$/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003232 WARN("ONE_SEMICOLON",
3233 "Statements terminations use 1 semicolon\n" . $herecurr);
Joe Perchescaf2a542011-01-12 16:59:56 -08003234 }
3235
Andy Whitcroft13214ad2008-02-08 04:22:03 -08003236# check for gcc specific __FUNCTION__
3237 if ($line =~ /__FUNCTION__/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003238 WARN("USE_FUNC",
3239 "__func__ should be used instead of gcc specific __FUNCTION__\n" . $herecurr);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08003240 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07003241
Thomas Gleixner4882720b2010-09-07 14:34:01 +00003242# check for semaphores initialized locked
3243 if ($line =~ /^.\s*sema_init.+,\W?0\W?\)/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003244 WARN("CONSIDER_COMPLETION",
3245 "consider using a completion\n" . $herecurr);
Peter Zijlstra1704f472010-03-19 01:37:42 +01003246
Andy Whitcroft773647a2008-03-28 14:15:58 -07003247 }
Joe Perches67d0a072011-10-31 17:13:10 -07003248# recommend kstrto* over simple_strto* and strict_strto*
3249 if ($line =~ /\b((simple|strict)_(strto(l|ll|ul|ull)))\s*\(/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003250 WARN("CONSIDER_KSTRTO",
Joe Perches67d0a072011-10-31 17:13:10 -07003251 "$1 is obsolete, use k$3 instead\n" . $herecurr);
Andy Whitcroft773647a2008-03-28 14:15:58 -07003252 }
Michael Ellermanf3db6632008-07-23 21:28:57 -07003253# check for __initcall(), use device_initcall() explicitly please
3254 if ($line =~ /^.\s*__initcall\s*\(/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003255 WARN("USE_DEVICE_INITCALL",
3256 "please use device_initcall() instead of __initcall()\n" . $herecurr);
Michael Ellermanf3db6632008-07-23 21:28:57 -07003257 }
Emese Revfy79404842010-03-05 13:43:53 -08003258# check for various ops structs, ensure they are const.
3259 my $struct_ops = qr{acpi_dock_ops|
3260 address_space_operations|
3261 backlight_ops|
3262 block_device_operations|
3263 dentry_operations|
3264 dev_pm_ops|
3265 dma_map_ops|
3266 extent_io_ops|
3267 file_lock_operations|
3268 file_operations|
3269 hv_ops|
3270 ide_dma_ops|
3271 intel_dvo_dev_ops|
3272 item_operations|
3273 iwl_ops|
3274 kgdb_arch|
3275 kgdb_io|
3276 kset_uevent_ops|
3277 lock_manager_operations|
3278 microcode_ops|
3279 mtrr_ops|
3280 neigh_ops|
3281 nlmsvc_binding|
3282 pci_raw_ops|
3283 pipe_buf_operations|
3284 platform_hibernation_ops|
3285 platform_suspend_ops|
3286 proto_ops|
3287 rpc_pipe_ops|
3288 seq_operations|
3289 snd_ac97_build_ops|
3290 soc_pcmcia_socket_ops|
3291 stacktrace_ops|
3292 sysfs_ops|
3293 tty_operations|
3294 usb_mon_operations|
3295 wd_ops}x;
Andy Whitcroft6903ffb2009-01-15 13:51:07 -08003296 if ($line !~ /\bconst\b/ &&
Emese Revfy79404842010-03-05 13:43:53 -08003297 $line =~ /\bstruct\s+($struct_ops)\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003298 WARN("CONST_STRUCT",
3299 "struct $1 should normally be const\n" .
Andy Whitcroft6903ffb2009-01-15 13:51:07 -08003300 $herecurr);
Andy Whitcroft2b6db5c2009-01-06 14:41:29 -08003301 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07003302
3303# use of NR_CPUS is usually wrong
3304# ignore definitions of NR_CPUS and usage to define arrays as likely right
3305 if ($line =~ /\bNR_CPUS\b/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07003306 $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ &&
3307 $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ &&
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07003308 $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ &&
3309 $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ &&
3310 $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/)
Andy Whitcroft773647a2008-03-28 14:15:58 -07003311 {
Joe Perches000d1cc12011-07-25 17:13:25 -07003312 WARN("NR_CPUS",
3313 "usage of NR_CPUS is often wrong - consider using cpu_possible(), num_possible_cpus(), for_each_possible_cpu(), etc\n" . $herecurr);
Andy Whitcroft773647a2008-03-28 14:15:58 -07003314 }
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07003315
3316# check for %L{u,d,i} in strings
3317 my $string;
3318 while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) {
3319 $string = substr($rawline, $-[1], $+[1] - $-[1]);
Andy Whitcroft2a1bc5d2008-10-15 22:02:23 -07003320 $string =~ s/%%/__/g;
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07003321 if ($string =~ /(?<!%)%L[udi]/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003322 WARN("PRINTF_L",
3323 "\%Ld/%Lu are not-standard C, use %lld/%llu\n" . $herecurr);
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07003324 last;
3325 }
3326 }
Andy Whitcroft691d77b2009-01-06 14:41:16 -08003327
3328# whine mightly about in_atomic
3329 if ($line =~ /\bin_atomic\s*\(/) {
3330 if ($realfile =~ m@^drivers/@) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003331 ERROR("IN_ATOMIC",
3332 "do not use in_atomic in drivers\n" . $herecurr);
Andy Whitcroftf4a87732009-02-27 14:03:05 -08003333 } elsif ($realfile !~ m@^kernel/@) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003334 WARN("IN_ATOMIC",
3335 "use of in_atomic() is incorrect outside core kernel code\n" . $herecurr);
Andy Whitcroft691d77b2009-01-06 14:41:16 -08003336 }
3337 }
Peter Zijlstra1704f472010-03-19 01:37:42 +01003338
3339# check for lockdep_set_novalidate_class
3340 if ($line =~ /^.\s*lockdep_set_novalidate_class\s*\(/ ||
3341 $line =~ /__lockdep_no_validate__\s*\)/ ) {
3342 if ($realfile !~ m@^kernel/lockdep@ &&
3343 $realfile !~ m@^include/linux/lockdep@ &&
3344 $realfile !~ m@^drivers/base/core@) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003345 ERROR("LOCKDEP",
3346 "lockdep_no_validate class is reserved for device->mutex.\n" . $herecurr);
Peter Zijlstra1704f472010-03-19 01:37:42 +01003347 }
3348 }
Dave Jones88f88312011-01-12 16:59:59 -08003349
3350 if ($line =~ /debugfs_create_file.*S_IWUGO/ ||
3351 $line =~ /DEVICE_ATTR.*S_IWUGO/ ) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003352 WARN("EXPORTED_WORLD_WRITABLE",
3353 "Exporting world writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr);
Dave Jones88f88312011-01-12 16:59:59 -08003354 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08003355 }
3356
3357 # If we have no input at all, then there is nothing to report on
3358 # so just keep quiet.
3359 if ($#rawlines == -1) {
3360 exit(0);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003361 }
3362
Andy Whitcroft8905a672007-11-28 16:21:06 -08003363 # In mailback mode only produce a report in the negative, for
3364 # things that appear to be patches.
3365 if ($mailback && ($clean == 1 || !$is_patch)) {
3366 exit(0);
3367 }
3368
3369 # This is not a patch, and we are are in 'no-patch' mode so
3370 # just keep quiet.
3371 if (!$chk_patch && !$is_patch) {
3372 exit(0);
3373 }
3374
3375 if (!$is_patch) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003376 ERROR("NOT_UNIFIED_DIFF",
3377 "Does not appear to be a unified-diff format patch\n");
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003378 }
3379 if ($is_patch && $chk_signoff && $signoff == 0) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003380 ERROR("MISSING_SIGN_OFF",
3381 "Missing Signed-off-by: line(s)\n");
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003382 }
3383
Andy Whitcroft8905a672007-11-28 16:21:06 -08003384 print report_dump();
Andy Whitcroft13214ad2008-02-08 04:22:03 -08003385 if ($summary && !($clean == 1 && $quiet == 1)) {
3386 print "$filename " if ($summary_file);
Andy Whitcroft8905a672007-11-28 16:21:06 -08003387 print "total: $cnt_error errors, $cnt_warn warnings, " .
3388 (($check)? "$cnt_chk checks, " : "") .
3389 "$cnt_lines lines checked\n";
3390 print "\n" if ($quiet == 0);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07003391 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08003392
Andy Whitcroftd2c0a232010-10-26 14:23:12 -07003393 if ($quiet == 0) {
3394 # If there were whitespace errors which cleanpatch can fix
3395 # then suggest that.
3396 if ($rpt_cleaners) {
3397 print "NOTE: whitespace errors detected, you may wish to use scripts/cleanpatch or\n";
3398 print " scripts/cleanfile\n\n";
Mike Frysingerb0781212011-03-22 16:34:43 -07003399 $rpt_cleaners = 0;
Andy Whitcroftd2c0a232010-10-26 14:23:12 -07003400 }
3401 }
3402
Joe Perches000d1cc12011-07-25 17:13:25 -07003403 if (keys %ignore_type) {
3404 print "NOTE: Ignored message types:";
3405 foreach my $ignore (sort keys %ignore_type) {
3406 print " $ignore";
3407 }
3408 print "\n";
3409 print "\n" if ($quiet == 0);
3410 }
3411
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003412 if ($clean == 1 && $quiet == 0) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08003413 print "$vname has no obvious style problems and is ready for submission.\n"
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003414 }
3415 if ($clean == 0 && $quiet == 0) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003416 print << "EOM";
3417$vname has style problems, please review.
3418
3419If any of these errors are false positives, please report
3420them to the maintainer, see CHECKPATCH in MAINTAINERS.
3421EOM
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003422 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08003423
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003424 return $clean;
3425}