blob: cbb42580a81d964a69efe153749d05b4d2ac2f27 [file] [log] [blame]
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001#!/usr/bin/perl -w
2# (c) 2001, Dave Jones. <davej@codemonkey.org.uk> (the file handling bit)
Andy Whitcroft00df344f2007-06-08 13:47:06 -07003# (c) 2005, Joel Schopp <jschopp@austin.ibm.com> (the ugly bit)
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004# (c) 2007, Andy Whitcroft <apw@uk.ibm.com> (new conditions, test suite, etc)
5# Licensed under the terms of the GNU GPL License version 2
6
7use strict;
8
9my $P = $0;
Andy Whitcroft00df344f2007-06-08 13:47:06 -070010$P =~ s@.*/@@g;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070011
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070012my $V = '0.11';
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070013
14use Getopt::Long qw(:config no_auto_abbrev);
15
16my $quiet = 0;
17my $tree = 1;
18my $chk_signoff = 1;
19my $chk_patch = 1;
Andy Whitcroft653d4872007-06-23 17:16:34 -070020my $tst_type = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070021my $emacs = 0;
22my $file = 0;
23my $check = 0;
24my $root;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070025GetOptions(
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070026 'q|quiet+' => \$quiet,
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070027 'tree!' => \$tree,
28 'signoff!' => \$chk_signoff,
29 'patch!' => \$chk_patch,
Andy Whitcroft653d4872007-06-23 17:16:34 -070030 'test-type!' => \$tst_type,
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070031 'emacs!' => \$emacs,
32 'file!' => \$file,
33 'subjective!' => \$check,
34 'strict!' => \$check,
35 'root=s' => \$root,
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070036) or exit;
37
38my $exit = 0;
39
40if ($#ARGV < 0) {
Andy Whitcroft00df344f2007-06-08 13:47:06 -070041 print "usage: $P [options] patchfile\n";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070042 print "version: $V\n";
43 print "options: -q => quiet\n";
44 print " --no-tree => run without a kernel tree\n";
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070045 print " --emacs => emacs compile window format\n";
46 print " --file => check a source file\n";
47 print " --strict => enable more subjective tests\n";
48 print " --root => path to the kernel tree root\n";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070049 exit(1);
50}
51
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070052if ($tree) {
53 if (defined $root) {
54 if (!top_of_kernel_tree($root)) {
55 die "$P: $root: --root does not point at a valid tree\n";
56 }
57 } else {
58 if (top_of_kernel_tree('.')) {
59 $root = '.';
60 } elsif ($0 =~ m@(.*)/scripts/[^/]*$@ &&
61 top_of_kernel_tree($1)) {
62 $root = $1;
63 }
64 }
65
66 if (!defined $root) {
67 print "Must be run from the top-level dir. of a kernel tree\n";
68 exit(2);
69 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070070}
71
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070072my $emitted_corrupt = 0;
73
74our $Ident = qr{[A-Za-z_][A-Za-z\d_]*};
75our $Storage = qr{extern|static|asmlinkage};
76our $Sparse = qr{
77 __user|
78 __kernel|
79 __force|
80 __iomem|
81 __must_check|
82 __init_refok|
83 __kprobes|
84 fastcall
85 }x;
86our $Attribute = qr{
87 const|
88 __read_mostly|
89 __kprobes|
90 __(?:mem|cpu|dev|)(?:initdata|init)
91 }x;
92our $Inline = qr{inline|__always_inline|noinline};
93our $NonptrType = qr{
94 \b
95 (?:const\s+)?
96 (?:unsigned\s+)?
97 (?:
98 void|
99 char|
100 short|
101 int|
102 long|
103 unsigned|
104 float|
105 double|
106 bool|
107 long\s+int|
108 long\s+long|
109 long\s+long\s+int|
110 (?:__)?(?:u|s|be|le)(?:8|16|32|64)|
111 struct\s+$Ident|
112 union\s+$Ident|
113 enum\s+$Ident|
114 ${Ident}_t|
115 ${Ident}_handler|
116 ${Ident}_handler_fn
117 )
118 (?:\s+$Sparse)*
119 \b
120 }x;
121
122our $Type = qr{
123 \b$NonptrType\b
124 (?:\s*\*+\s*const|\s*\*+|(?:\s*\[\s*\])+)?
125 (?:\s+$Sparse|\s+$Attribute)*
126 }x;
127our $Declare = qr{(?:$Storage\s+)?$Type};
128our $Member = qr{->$Ident|\.$Ident|\[[^]]*\]};
129our $Lval = qr{$Ident(?:$Member)*};
130
131our $Constant = qr{(?:[0-9]+|0x[0-9a-fA-F]+)[UL]*};
132our $Assignment = qr{(?:\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=)};
133our $Operators = qr{
134 <=|>=|==|!=|
135 =>|->|<<|>>|<|>|!|~|
136 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/
137 }x;
138
139our $Bare = '';
140
141$chk_signoff = 0 if ($file);
142
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700143my @dep_includes = ();
144my @dep_functions = ();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700145my $removal = "Documentation/feature-removal-schedule.txt";
146if ($tree && -f "$root/$removal") {
147 open(REMOVE, "<$root/$removal") ||
148 die "$P: $removal: open failed - $!\n";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700149 while (<REMOVE>) {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700150 if (/^Check:\s+(.*\S)/) {
151 for my $entry (split(/[, ]+/, $1)) {
152 if ($entry =~ m@include/(.*)@) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700153 push(@dep_includes, $1);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700154
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700155 } elsif ($entry !~ m@/@) {
156 push(@dep_functions, $entry);
157 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700158 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700159 }
160 }
161}
162
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700163my @rawlines = ();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700164for my $filename (@ARGV) {
165 if ($file) {
166 open(FILE, "diff -u /dev/null $filename|") ||
167 die "$P: $filename: diff failed - $!\n";
168 } else {
169 open(FILE, "<$filename") ||
170 die "$P: $filename: open failed - $!\n";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700171 }
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700172 while (<FILE>) {
173 chomp;
174 push(@rawlines, $_);
175 }
176 close(FILE);
177 if (!process($filename, @rawlines)) {
178 $exit = 1;
179 }
180 @rawlines = ();
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700181}
182
183exit($exit);
184
185sub top_of_kernel_tree {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700186 my ($root) = @_;
187
188 my @tree_check = (
189 "COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
190 "README", "Documentation", "arch", "include", "drivers",
191 "fs", "init", "ipc", "kernel", "lib", "scripts",
192 );
193
194 foreach my $check (@tree_check) {
195 if (! -e $root . '/' . $check) {
196 return 0;
197 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700198 }
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700199 return 1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700200}
201
202sub expand_tabs {
203 my ($str) = @_;
204
205 my $res = '';
206 my $n = 0;
207 for my $c (split(//, $str)) {
208 if ($c eq "\t") {
209 $res .= ' ';
210 $n++;
211 for (; ($n % 8) != 0; $n++) {
212 $res .= ' ';
213 }
214 next;
215 }
216 $res .= $c;
217 $n++;
218 }
219
220 return $res;
221}
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700222sub copy_spacing {
223 my ($str) = @_;
224
225 my $res = '';
226 for my $c (split(//, $str)) {
227 if ($c eq "\t") {
228 $res .= $c;
229 } else {
230 $res .= ' ';
231 }
232 }
233
234 return $res;
235}
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700236
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700237sub line_stats {
238 my ($line) = @_;
239
240 # Drop the diff line leader and expand tabs
241 $line =~ s/^.//;
242 $line = expand_tabs($line);
243
244 # Pick the indent from the front of the line.
245 my ($white) = ($line =~ /^(\s*)/);
246
247 return (length($line), length($white));
248}
249
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700250sub sanitise_line {
251 my ($line) = @_;
252
253 my $res = '';
254 my $l = '';
255
256 my $quote = '';
257
258 foreach my $c (split(//, $line)) {
259 if ($l ne "\\" && ($c eq "'" || $c eq '"')) {
260 if ($quote eq '') {
261 $quote = $c;
262 $res .= $c;
263 $l = $c;
264 next;
265 } elsif ($quote eq $c) {
266 $quote = '';
267 }
268 }
269 if ($quote && $c ne "\t") {
270 $res .= "X";
271 } else {
272 $res .= $c;
273 }
274
275 $l = $c;
276 }
277
278 return $res;
279}
280
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700281sub ctx_block_get {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700282 my ($linenr, $remain, $outer, $open, $close, $off) = @_;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700283 my $line;
284 my $start = $linenr - 1;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700285 my $blk = '';
286 my @o;
287 my @c;
288 my @res = ();
289
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700290 my $level = 0;
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700291 for ($line = $start; $remain > 0; $line++) {
292 next if ($rawlines[$line] =~ /^-/);
293 $remain--;
294
295 $blk .= $rawlines[$line];
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700296 foreach my $c (split(//, $rawlines[$line])) {
297 ##print "C<$c>L<$level><$open$close>O<$off>\n";
298 if ($off > 0) {
299 $off--;
300 next;
301 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700302
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700303 if ($c eq $close && $level > 0) {
304 $level--;
305 last if ($level == 0);
306 } elsif ($c eq $open) {
307 $level++;
308 }
309 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700310
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700311 if (!$outer || $level <= 1) {
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700312 push(@res, $rawlines[$line]);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700313 }
314
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700315 last if ($level == 0);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700316 }
317
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700318 return ($level, @res);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700319}
320sub ctx_block_outer {
321 my ($linenr, $remain) = @_;
322
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700323 my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0);
324 return @r;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700325}
326sub ctx_block {
327 my ($linenr, $remain) = @_;
328
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700329 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0);
330 return @r;
Andy Whitcroft653d4872007-06-23 17:16:34 -0700331}
332sub ctx_statement {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700333 my ($linenr, $remain, $off) = @_;
334
335 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
336 return @r;
337}
338sub ctx_block_level {
Andy Whitcroft653d4872007-06-23 17:16:34 -0700339 my ($linenr, $remain) = @_;
340
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700341 return ctx_block_get($linenr, $remain, 0, '{', '}', 0);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700342}
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700343sub ctx_statement_level {
344 my ($linenr, $remain, $off) = @_;
345
346 return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
347}
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700348
349sub ctx_locate_comment {
350 my ($first_line, $end_line) = @_;
351
352 # Catch a comment on the end of the line itself.
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700353 my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*$@);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700354 return $current_comment if (defined $current_comment);
355
356 # Look through the context and try and figure out if there is a
357 # comment.
358 my $in_comment = 0;
359 $current_comment = '';
360 for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700361 my $line = $rawlines[$linenr - 1];
362 #warn " $line\n";
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700363 if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
364 $in_comment = 1;
365 }
366 if ($line =~ m@/\*@) {
367 $in_comment = 1;
368 }
369 if (!$in_comment && $current_comment ne '') {
370 $current_comment = '';
371 }
372 $current_comment .= $line . "\n" if ($in_comment);
373 if ($line =~ m@\*/@) {
374 $in_comment = 0;
375 }
376 }
377
378 chomp($current_comment);
379 return($current_comment);
380}
381sub ctx_has_comment {
382 my ($first_line, $end_line) = @_;
383 my $cmt = ctx_locate_comment($first_line, $end_line);
384
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700385 ##print "LINE: $rawlines[$end_line - 1 ]\n";
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700386 ##print "CMMT: $cmt\n";
387
388 return ($cmt ne '');
389}
390
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700391sub cat_vet {
392 my ($vet) = @_;
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700393 my ($res, $coded);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700394
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700395 $res = '';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700396 while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
397 $res .= $1;
398 if ($2 ne '') {
399 $coded = sprintf("^%c", unpack('C', $2) + 64);
400 $res .= $coded;
401 }
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700402 }
403 $res =~ s/$/\$/;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700404
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700405 return $res;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700406}
407
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700408sub annotate_values {
409 my ($stream, $type) = @_;
410
411 my $res;
412 my $cur = $stream;
413
414 my $debug = 0;
415
416 print "$stream\n" if ($debug);
417
418 ##my $type = 'N';
419 my $pos = 0;
420 my $preprocessor = 0;
421 my $paren = 0;
422 my @paren_type;
423
424 # Include any user defined types we may have found as we went.
425 my $type_match = "(?:$Type$Bare)";
426
427 while (length($cur)) {
428 print " <$type> " if ($debug);
429 if ($cur =~ /^(\s+)/o) {
430 print "WS($1)\n" if ($debug);
431 if ($1 =~ /\n/ && $preprocessor) {
432 $preprocessor = 0;
433 $type = 'N';
434 }
435
436 } elsif ($cur =~ /^($type_match)/) {
437 print "DECLARE($1)\n" if ($debug);
438 $type = 'T';
439
440 } elsif ($cur =~ /^(#\s*define\s*$Ident)(\(?)/o) {
441 print "DEFINE($1)\n" if ($debug);
442 $preprocessor = 1;
443 $paren_type[$paren] = 'N';
444
445 } elsif ($cur =~ /^(#\s*(?:ifdef|ifndef|if|else|endif))/o) {
446 print "PRE($1)\n" if ($debug);
447 $preprocessor = 1;
448 $type = 'N';
449
450 } elsif ($cur =~ /^(\\\n)/o) {
451 print "PRECONT($1)\n" if ($debug);
452
453 } elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
454 print "SIZEOF($1)\n" if ($debug);
455 if (defined $2) {
456 $paren_type[$paren] = 'V';
457 }
458 $type = 'N';
459
460 } elsif ($cur =~ /^(if|while|typeof)\b/o) {
461 print "COND($1)\n" if ($debug);
462 $paren_type[$paren] = 'N';
463 $type = 'N';
464
465 } elsif ($cur =~/^(return|case|else)/o) {
466 print "KEYWORD($1)\n" if ($debug);
467 $type = 'N';
468
469 } elsif ($cur =~ /^(\()/o) {
470 print "PAREN('$1')\n" if ($debug);
471 $paren++;
472 $type = 'N';
473
474 } elsif ($cur =~ /^(\))/o) {
475 $paren-- if ($paren > 0);
476 if (defined $paren_type[$paren]) {
477 $type = $paren_type[$paren];
478 undef $paren_type[$paren];
479 print "PAREN('$1') -> $type\n" if ($debug);
480 } else {
481 print "PAREN('$1')\n" if ($debug);
482 }
483
484 } elsif ($cur =~ /^($Ident)\(/o) {
485 print "FUNC($1)\n" if ($debug);
486 $paren_type[$paren] = 'V';
487
488 } elsif ($cur =~ /^($Ident|$Constant)/o) {
489 print "IDENT($1)\n" if ($debug);
490 $type = 'V';
491
492 } elsif ($cur =~ /^($Assignment)/o) {
493 print "ASSIGN($1)\n" if ($debug);
494 $type = 'N';
495
496 } elsif ($cur =~ /^(;|{|}|\?|:|\[)/o) {
497 print "END($1)\n" if ($debug);
498 $type = 'N';
499
500 } elsif ($cur =~ /^($Operators)/o) {
501 print "OP($1)\n" if ($debug);
502 if ($1 ne '++' && $1 ne '--') {
503 $type = 'N';
504 }
505
506 } elsif ($cur =~ /(^.)/o) {
507 print "C($1)\n" if ($debug);
508 }
509 if (defined $1) {
510 $cur = substr($cur, length($1));
511 $res .= $type x length($1);
512 }
513 }
514
515 return $res;
516}
517
518my $prefix = '';
519
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700520my @report = ();
521sub report {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700522 push(@report, $prefix . $_[0]);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700523}
524sub report_dump {
525 @report;
526}
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700527sub ERROR {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700528 report("ERROR: $_[0]\n");
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700529 our $clean = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700530 our $cnt_error++;
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700531}
532sub WARN {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700533 report("WARNING: $_[0]\n");
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700534 our $clean = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700535 our $cnt_warn++;
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700536}
537sub CHK {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700538 if ($check) {
539 report("CHECK: $_[0]\n");
540 our $clean = 0;
541 our $cnt_chk++;
542 }
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700543}
544
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700545sub process {
546 my $filename = shift;
547 my @lines = @_;
548
549 my $linenr=0;
550 my $prevline="";
551 my $stashline="";
552
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700553 my $length;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700554 my $indent;
555 my $previndent=0;
556 my $stashindent=0;
557
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700558 our $clean = 1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700559 my $signoff = 0;
560 my $is_patch = 0;
561
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700562 our $cnt_lines = 0;
563 our $cnt_error = 0;
564 our $cnt_warn = 0;
565 our $cnt_chk = 0;
566
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700567 # Trace the real file/line as we go.
568 my $realfile = '';
569 my $realline = 0;
570 my $realcnt = 0;
571 my $here = '';
572 my $in_comment = 0;
573 my $first_line = 0;
574
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700575 my $prev_values = 'N';
Andy Whitcroft653d4872007-06-23 17:16:34 -0700576
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700577 # Possible bare types.
578 my @bare = ();
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700579
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700580 # Pre-scan the patch looking for any __setup documentation.
581 my @setup_docs = ();
582 my $setup_docs = 0;
583 foreach my $line (@lines) {
584 if ($line=~/^\+\+\+\s+(\S+)/) {
585 $setup_docs = 0;
586 if ($1 =~ m@Documentation/kernel-parameters.txt$@) {
587 $setup_docs = 1;
588 }
589 next;
590 }
591
592 if ($setup_docs && $line =~ /^\+/) {
593 push(@setup_docs, $line);
594 }
595 }
596
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700597 $prefix = '';
598
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700599 foreach my $line (@lines) {
600 $linenr++;
601
Andy Whitcroft653d4872007-06-23 17:16:34 -0700602 my $rawline = $line;
603
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700604
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700605#extract the filename as it passes
606 if ($line=~/^\+\+\+\s+(\S+)/) {
607 $realfile=$1;
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700608 $realfile =~ s@^[^/]*/@@;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700609 $in_comment = 0;
610 next;
611 }
612#extract the line range in the file after the patch is applied
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700613 if ($line=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700614 $is_patch = 1;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700615 $first_line = $linenr + 1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700616 $in_comment = 0;
617 $realline=$1-1;
618 if (defined $2) {
619 $realcnt=$3+1;
620 } else {
621 $realcnt=1+1;
622 }
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700623 $prev_values = 'N';
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700624 next;
625 }
626
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700627# track the line number as we move through the hunk, note that
628# new versions of GNU diff omit the leading space on completely
629# blank context lines so we need to count that too.
630 if ($line =~ /^( |\+|$)/) {
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700631 $realline++;
Andy Whitcroftd8aaf122007-06-23 17:16:44 -0700632 $realcnt-- if ($realcnt != 0);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700633
634 # track any sort of multi-line comment. Obviously if
635 # the added text or context do not include the whole
636 # comment we will not see it. Such is life.
637 #
638 # Guestimate if this is a continuing comment. If this
639 # is the start of a diff block and this line starts
640 # ' *' then it is very likely a comment.
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700641 if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700642 $in_comment = 1;
643 }
644 if ($line =~ m@/\*@) {
645 $in_comment = 1;
646 }
647 if ($line =~ m@\*/@) {
648 $in_comment = 0;
649 }
650
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700651 # Measure the line length and indent.
652 ($length, $indent) = line_stats($line);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700653
654 # Track the previous line.
655 ($prevline, $stashline) = ($stashline, $line);
656 ($previndent, $stashindent) = ($stashindent, $indent);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700657
Andy Whitcroftd8aaf122007-06-23 17:16:44 -0700658 } elsif ($realcnt == 1) {
659 $realcnt--;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700660 }
661
662#make up the handle for any error we report on this line
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700663 $here = "#$linenr: " if (!$file);
664 $here = "#$realline: " if ($file);
Randy Dunlap389834b2007-06-08 13:47:03 -0700665 $here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700666
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700667 my $hereline = "$here\n$line\n";
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700668 my $herecurr = "$here\n$line\n";
669 my $hereprev = "$here\n$prevline\n$line\n";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700670
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700671 $prefix = "$filename:$realline: " if ($emacs && $file);
672 $prefix = "$filename:$linenr: " if ($emacs && !$file);
673 $cnt_lines++ if ($realcnt != 0);
674
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700675#check the patch for a signoff:
Andy Whitcroftd8aaf122007-06-23 17:16:44 -0700676 if ($line =~ /^\s*signed-off-by:/i) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700677 # This is a signoff, if ugly, so do not double report.
678 $signoff++;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700679 if (!($line =~ /^\s*Signed-off-by:/)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700680 WARN("Signed-off-by: is the preferred form\n" .
681 $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700682 }
683 if ($line =~ /^\s*signed-off-by:\S/i) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700684 WARN("need space after Signed-off-by:\n" .
685 $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700686 }
687 }
688
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700689# Check for wrappage within a valid hunk of the file
690 if ($realcnt != 0 && $line !~ m{^(?:\+|-| |$)}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700691 ERROR("patch seems to be corrupt (line wrapped?)\n" .
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700692 $herecurr) if (!$emitted_corrupt++);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700693 }
694
695# UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
696 if (($realfile =~ /^$/ || $line =~ /^\+/) &&
697 !($line =~ m/^(
698 [\x09\x0A\x0D\x20-\x7E] # ASCII
699 | [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
700 | \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
701 | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
702 | \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
703 | \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
704 | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
705 | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
706 )*$/x )) {
707 ERROR("Invalid UTF-8\n" . $herecurr);
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700708 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700709
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700710#ignore lines being removed
711 if ($line=~/^-/) {next;}
712
713# check we are in a valid source file if not then ignore this hunk
714 next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700715
716#trailing whitespace
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700717 if ($line =~ /^\+.*\015/) {
718 my $herevet = "$here\n" . cat_vet($line) . "\n";
719 ERROR("DOS line endings\n" . $herevet);
720
721 } elsif ($line =~ /^\+.*\S\s+$/ || $line =~ /^\+\s+$/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700722 my $herevet = "$here\n" . cat_vet($line) . "\n";
723 ERROR("trailing whitespace\n" . $herevet);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700724 }
725#80 column limit
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700726 if ($line =~ /^\+/ && !($prevline=~/\/\*\*/) && $length > 80) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700727 WARN("line over 80 characters\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700728 }
729
730# check we are in a valid source file *.[hc] if not then ignore this hunk
731 next if ($realfile !~ /\.[hc]$/);
732
733# at the beginning of a line any tabs must come first and anything
734# more than 8 must use tabs.
735 if ($line=~/^\+\s* \t\s*\S/ or $line=~/^\+\s* \s*/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700736 my $herevet = "$here\n" . cat_vet($line) . "\n";
737 ERROR("use tabs not spaces\n" . $herevet);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700738 }
739
Andy Whitcroft653d4872007-06-23 17:16:34 -0700740# Remove comments from the line before processing.
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -0700741 my $comment_edge = ($line =~ s@/\*.*\*/@@g) +
742 ($line =~ s@/\*.*@@) +
743 ($line =~ s@^(.).*\*/@$1@);
744
745# The rest of our checks refer specifically to C style
746# only apply those _outside_ comments. Only skip
747# lines in the middle of comments.
748 next if (!$comment_edge && $in_comment);
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700749
Andy Whitcroft653d4872007-06-23 17:16:34 -0700750# Standardise the strings and chars within the input to simplify matching.
751 $line = sanitise_line($line);
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700752
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700753# Check for potential 'bare' types
754 if ($realcnt &&
755 $line !~ /^.\s*(?:$Storage\s+)?(?:$Inline\s+)?$Type\b/ &&
756 $line !~ /$Ident:\s*$/ &&
757 $line !~ /^.\s*$Ident\s*\(/ &&
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700758 # definitions in global scope can only start with types
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700759 ($line =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?($Ident)\b/ ||
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700760 # declarations always start with types
761 $line =~ /^.\s*(?:$Storage\s+)?($Ident)\b\s*\**\s*$Ident\s*(?:;|=)/) ||
762 # any (foo ... *) is a pointer cast, and foo is a type
763 $line =~ /\(($Ident)(?:\s+$Sparse)*\s*\*+\s*\)/) {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700764 my $possible = $1;
765 if ($possible !~ /^(?:$Storage|$Type|DEFINE_\S+)$/ &&
766 $possible ne 'goto' && $possible ne 'return' &&
767 $possible ne 'struct' && $possible ne 'enum' &&
768 $possible ne 'case' && $possible ne 'else' &&
769 $possible ne 'typedef') {
770 #print "POSSIBLE<$possible>\n";
771 push(@bare, $possible);
772 my $bare = join("|", @bare);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700773 $Bare = '|' . qr{
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700774 \b(?:$bare)\b
775 (?:\s*\*+\s*const|\s*\*+|(?:\s*\[\s*\])+)?
776 (?:\s+$Sparse)*
777 }x;
778 }
779 }
780
Andy Whitcroft653d4872007-06-23 17:16:34 -0700781#
782# Checks which may be anchored in the context.
783#
784
785# Check for switch () and associated case and default
786# statements should be at the same indent.
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700787 if ($line=~/\bswitch\s*\(.*\)/) {
788 my $err = '';
789 my $sep = '';
790 my @ctx = ctx_block_outer($linenr, $realcnt);
791 shift(@ctx);
792 for my $ctx (@ctx) {
793 my ($clen, $cindent) = line_stats($ctx);
794 if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
795 $indent != $cindent) {
796 $err .= "$sep$ctx\n";
797 $sep = '';
798 } else {
799 $sep = "[...]\n";
800 }
801 }
802 if ($err ne '') {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700803 ERROR("switch and case should be at the same indent\n$hereline$err");
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700804 }
805 }
806
807# if/while/etc brace do not go on next line, unless defining a do while loop,
808# or if that brace on the next line is for something else
809 if ($line =~ /\b(?:(if|while|for|switch)\s*\(|do\b|else\b)/ && $line !~ /^.#/) {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700810 my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700811 my $ctx_ln = $linenr + $#ctx + 1;
812 my $ctx_cnt = $realcnt - $#ctx - 1;
813 my $ctx = join("\n", @ctx);
814
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700815 # Skip over any removed lines in the context following statement.
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700816 while ($ctx_cnt > 0 && $lines[$ctx_ln - 1] =~ /^-/) {
817 $ctx_ln++;
818 $ctx_cnt--;
819 }
820 ##warn "line<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>";
821
822 if ($ctx !~ /{\s*/ && $ctx_cnt > 0 && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700823 ERROR("That open brace { should be on the previous line\n" .
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700824 "$here\n$ctx\n$lines[$ctx_ln - 1]");
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700825 }
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700826 if ($level == 0 && $ctx =~ /\)\s*\;\s*$/ && defined $lines[$ctx_ln - 1]) {
827 my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
828 if ($nindent > $indent) {
829 WARN("Trailing semicolon indicates no statements, indent implies otherwise\n" .
830 "$here\n$ctx\n$lines[$ctx_ln - 1]");
831 }
832 }
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700833 }
834
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700835 # Track the 'values' across context and added lines.
836 my $opline = $line; $opline =~ s/^./ /;
837 my $curr_values = annotate_values($opline . "\n", $prev_values);
838 $curr_values = $prev_values . $curr_values;
839 #warn "--> $opline\n";
840 #warn "--> $curr_values ($prev_values)\n";
841 $prev_values = substr($curr_values, -1);
842
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700843#ignore lines not being added
844 if ($line=~/^[^\+]/) {next;}
845
Andy Whitcroft653d4872007-06-23 17:16:34 -0700846# TEST: allow direct testing of the type matcher.
847 if ($tst_type && $line =~ /^.$Declare$/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700848 ERROR("TEST: is type $Declare\n" . $herecurr);
Andy Whitcroft653d4872007-06-23 17:16:34 -0700849 next;
850 }
851
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700852# check for initialisation to aggregates open brace on the next line
853 if ($prevline =~ /$Declare\s*$Ident\s*=\s*$/ &&
854 $line =~ /^.\s*{/) {
855 ERROR("That open brace { should be on the previous line\n" . $hereprev);
856 }
857
Andy Whitcroft653d4872007-06-23 17:16:34 -0700858#
859# Checks which are anchored on the added line.
860#
861
862# check for malformed paths in #include statements (uses RAW line)
863 if ($rawline =~ m{^.#\s*include\s+[<"](.*)[">]}) {
864 my $path = $1;
865 if ($path =~ m{//}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700866 ERROR("malformed #include filename\n" .
867 $herecurr);
Andy Whitcroft653d4872007-06-23 17:16:34 -0700868 }
869 # Sanitise this special form of string.
870 $path = 'X' x length($path);
871 $line =~ s{\<.*\>}{<$path>};
872 }
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700873
874# no C99 // comments
875 if ($line =~ m{//}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700876 ERROR("do not use C99 // comments\n" . $herecurr);
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700877 }
878 # Remove C99 comments.
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700879 $line =~ s@//.*@@;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700880 $opline =~ s@//.*@@;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700881
882#EXPORT_SYMBOL should immediately follow its function closing }.
Andy Whitcroft653d4872007-06-23 17:16:34 -0700883 if (($line =~ /EXPORT_SYMBOL.*\((.*)\)/) ||
884 ($line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
885 my $name = $1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700886 if (($prevline !~ /^}/) &&
887 ($prevline !~ /^\+}/) &&
Andy Whitcroft653d4872007-06-23 17:16:34 -0700888 ($prevline !~ /^ }/) &&
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -0700889 ($prevline !~ /\b\Q$name\E(?:\s+$Attribute)?\s*(?:;|=)/)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700890 WARN("EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700891 }
892 }
893
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700894# check for external initialisers.
895 if ($line =~ /^.$Type\s*$Ident\s*=\s*(0|NULL);/) {
896 ERROR("do not initialise externals to 0 or NULL\n" .
897 $herecurr);
898 }
Andy Whitcroft653d4872007-06-23 17:16:34 -0700899# check for static initialisers.
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700900 if ($line =~ /\s*static\s.*=\s*(0|NULL);/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700901 ERROR("do not initialise statics to 0 or NULL\n" .
902 $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700903 }
904
Andy Whitcroft653d4872007-06-23 17:16:34 -0700905# check for new typedefs, only function parameters and sparse annotations
906# make sense.
907 if ($line =~ /\btypedef\s/ &&
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700908 $line !~ /\btypedef\s+$Type\s+\(\s*\*?$Ident\s*\)\s*\(/ &&
Andy Whitcroft653d4872007-06-23 17:16:34 -0700909 $line !~ /\b__bitwise(?:__|)\b/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700910 WARN("do not add new typedefs\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700911 }
912
913# * goes on variable not on type
Andy Whitcroftd8aaf122007-06-23 17:16:44 -0700914 if ($line =~ m{\($NonptrType(\*+)(?:\s+const)?\)}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700915 ERROR("\"(foo$1)\" should be \"(foo $1)\"\n" .
916 $herecurr);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -0700917
918 } elsif ($line =~ m{\($NonptrType\s+(\*+)(?!\s+const)\s+\)}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700919 ERROR("\"(foo $1 )\" should be \"(foo $1)\"\n" .
920 $herecurr);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -0700921
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700922 } elsif ($line =~ m{$NonptrType(\*+)(?:\s+(?:$Attribute|$Sparse))?\s+[A-Za-z\d_]+}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700923 ERROR("\"foo$1 bar\" should be \"foo $1bar\"\n" .
924 $herecurr);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -0700925
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700926 } elsif ($line =~ m{$NonptrType\s+(\*+)(?!\s+(?:$Attribute|$Sparse))\s+[A-Za-z\d_]+}) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700927 ERROR("\"foo $1 bar\" should be \"foo $1bar\"\n" .
928 $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700929 }
930
931# # no BUG() or BUG_ON()
932# if ($line =~ /\b(BUG|BUG_ON)\b/) {
933# print "Try to use WARN_ON & Recovery code rather than BUG() or BUG_ON()\n";
934# print "$herecurr";
935# $clean = 0;
936# }
937
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700938# printk should use KERN_* levels. Note that follow on printk's on the
939# same line do not need a level, so we use the current block context
940# to try and find and validate the current printk. In summary the current
941# printk includes all preceeding printk's which have no newline on the end.
942# we assume the first bad printk is the one to report.
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700943 if ($line =~ /\bprintk\((?!KERN_)\s*"/) {
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700944 my $ok = 0;
945 for (my $ln = $linenr - 1; $ln >= $first_line; $ln--) {
946 #print "CHECK<$lines[$ln - 1]\n";
947 # we have a preceeding printk if it ends
948 # with "\n" ignore it, else it is to blame
949 if ($lines[$ln - 1] =~ m{\bprintk\(}) {
950 if ($rawlines[$ln - 1] !~ m{\\n"}) {
951 $ok = 1;
952 }
953 last;
954 }
955 }
956 if ($ok == 0) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700957 WARN("printk() should include KERN_ facility level\n" . $herecurr);
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700958 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700959 }
960
Andy Whitcroft653d4872007-06-23 17:16:34 -0700961# function brace can't be on same line, except for #defines of do while,
962# or if closed on same line
Andy Whitcroftd8aaf122007-06-23 17:16:44 -0700963 if (($line=~/$Type\s*[A-Za-z\d_]+\(.*\).* {/) and
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700964 !($line=~/\#define.*do\s{/) and !($line=~/}/)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -0700965 ERROR("open brace '{' following function declarations go on the next line\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700966 }
Andy Whitcroft653d4872007-06-23 17:16:34 -0700967
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700968# check for spaces between functions and their parentheses.
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700969 while ($line =~ /($Ident)\s+\(/g) {
970 if ($1 !~ /^(?:if|for|while|switch|return|volatile|__volatile__|__attribute__|format|__extension__|Copyright|case)$/ &&
971 $line !~ /$Type\s+\(/ && $line !~ /^.\#\s*define\b/) {
972 WARN("no space between function name and open parenthesis '('\n" . $herecurr);
973 }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -0700974 }
Andy Whitcroft653d4872007-06-23 17:16:34 -0700975# Check operator spacing.
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700976 if (!($line=~/\#\s*include/)) {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -0700977 my $ops = qr{
978 <<=|>>=|<=|>=|==|!=|
979 \+=|-=|\*=|\/=|%=|\^=|\|=|&=|
980 =>|->|<<|>>|<|>|=|!|~|
981 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/
982 }x;
983 my @elements = split(/($ops|;)/, $opline);
Andy Whitcroft00df344f2007-06-08 13:47:06 -0700984 my $off = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700985
986 my $blank = copy_spacing($opline);
987
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700988 for (my $n = 0; $n < $#elements; $n += 2) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700989 $off += length($elements[$n]);
990
991 my $a = '';
992 $a = 'V' if ($elements[$n] ne '');
993 $a = 'W' if ($elements[$n] =~ /\s$/);
994 $a = 'B' if ($elements[$n] =~ /(\[|\()$/);
995 $a = 'O' if ($elements[$n] eq '');
996 $a = 'E' if ($elements[$n] eq '' && $n == 0);
997
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700998 my $op = $elements[$n + 1];
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -0700999
1000 my $c = '';
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001001 if (defined $elements[$n + 2]) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001002 $c = 'V' if ($elements[$n + 2] ne '');
1003 $c = 'W' if ($elements[$n + 2] =~ /^\s/);
1004 $c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
1005 $c = 'O' if ($elements[$n + 2] eq '');
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001006 $c = 'E' if ($elements[$n + 2] =~ /\s*\\$/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001007 } else {
1008 $c = 'E';
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001009 }
1010
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001011 # Pick up the preceeding and succeeding characters.
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001012 my $ca = substr($opline, 0, $off);
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001013 my $cc = '';
Andy Whitcroft653d4872007-06-23 17:16:34 -07001014 if (length($opline) >= ($off + length($elements[$n + 1]))) {
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001015 $cc = substr($opline, $off + length($elements[$n + 1]));
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001016 }
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001017 my $cb = "$ca$;$cc";
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001018
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001019 my $ctx = "${a}x${c}";
1020
1021 my $at = "(ctx:$ctx)";
1022
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001023 my $ptr = substr($blank, 0, $off) . "^";
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001024 my $hereptr = "$hereline$ptr\n";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001025
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001026 # Classify operators into binary, unary, or
1027 # definitions (* only) where they have more
1028 # than one mode.
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001029 my $op_type = substr($curr_values, $off + 1, 1);
1030 my $op_left = substr($curr_values, $off, 1);
1031 my $is_unary;
1032 if ($op_type eq 'T') {
1033 $is_unary = 2;
1034 } elsif ($op_left eq 'V') {
1035 $is_unary = 0;
1036 } else {
1037 $is_unary = 1;
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001038 }
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001039 #if ($op eq '-' || $op eq '&' || $op eq '*') {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001040 # print "UNARY: <$op_left$op_type $is_unary $a:$op:$c> <$ca:$op:$cc> <$unary_ctx>\n";
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001041 #}
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001042
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001043 # ; should have either the end of line or a space or \ after it
1044 if ($op eq ';') {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001045 if ($ctx !~ /.x[WEB]/ && $cc !~ /^\\/ &&
1046 $cc !~ /^;/) {
1047 ERROR("need space after that '$op' $at\n" . $hereptr);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001048 }
1049
1050 # // is a comment
1051 } elsif ($op eq '//') {
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001052
1053 # -> should have no spaces
1054 } elsif ($op eq '->') {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001055 if ($ctx =~ /Wx.|.xW/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001056 ERROR("no spaces around that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001057 }
1058
1059 # , must have a space on the right.
1060 } elsif ($op eq ',') {
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001061 if ($ctx !~ /.xW|.xE/ && $cc !~ /^}/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001062 ERROR("need space after that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001063 }
1064
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001065 # '*' as part of a type definition -- reported already.
1066 } elsif ($op eq '*' && $is_unary == 2) {
1067 #warn "'*' is part of type\n";
1068
1069 # unary operators should have a space before and
1070 # none after. May be left adjacent to another
1071 # unary operator, or a cast
1072 } elsif ($op eq '!' || $op eq '~' ||
1073 ($is_unary && ($op eq '*' || $op eq '-' || $op eq '&'))) {
1074 if ($ctx !~ /[WEB]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001075 ERROR("need space before that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001076 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001077 if ($ctx =~ /.xW/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001078 ERROR("no space after that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001079 }
1080
1081 # unary ++ and unary -- are allowed no space on one side.
1082 } elsif ($op eq '++' or $op eq '--') {
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001083 if ($ctx !~ /[WOB]x[^W]/ && $ctx !~ /[^W]x[WOBE]/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001084 ERROR("need space one side of that '$op' $at\n" . $hereptr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001085 }
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001086 if ($ctx =~ /Wx./ && $cc =~ /^;/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001087 ERROR("no space before that '$op' $at\n" . $hereptr);
Andy Whitcroft653d4872007-06-23 17:16:34 -07001088 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001089
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001090 # << and >> may either have or not have spaces both sides
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001091 } elsif ($op eq '<<' or $op eq '>>' or
1092 $op eq '&' or $op eq '^' or $op eq '|' or
1093 $op eq '+' or $op eq '-' or
1094 $op eq '*' or $op eq '/')
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001095 {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001096 if ($ctx !~ /VxV|WxW|VxE|WxE|VxO/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001097 ERROR("need consistent spacing around '$op' $at\n" .
1098 $hereptr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001099 }
1100
1101 # All the others need spaces both sides.
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001102 } elsif ($ctx !~ /[EW]x[WE]/) {
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001103 # Ignore email addresses <foo@bar>
1104 if (!($op eq '<' && $cb =~ /$;\S+\@\S+>/) &&
1105 !($op eq '>' && $cb =~ /<\S+\@\S+$;/)) {
1106 ERROR("need spaces around that '$op' $at\n" . $hereptr);
1107 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001108 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001109 $off += length($elements[$n + 1]);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001110 }
1111 }
1112
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001113# check for multiple assignments
1114 if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001115 CHK("multiple assignments should be avoided\n" . $herecurr);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001116 }
1117
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001118## # check for multiple declarations, allowing for a function declaration
1119## # continuation.
1120## if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
1121## $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
1122##
1123## # Remove any bracketed sections to ensure we do not
1124## # falsly report the parameters of functions.
1125## my $ln = $line;
1126## while ($ln =~ s/\([^\(\)]*\)//g) {
1127## }
1128## if ($ln =~ /,/) {
1129## WARN("declaring multiple variables together should be avoided\n" . $herecurr);
1130## }
1131## }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001132
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001133#need space before brace following if, while, etc
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001134 if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) ||
1135 $line =~ /do{/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001136 ERROR("need a space before the open brace '{'\n" . $herecurr);
1137 }
1138
1139# closing brace should have a space following it when it has anything
1140# on the line
1141 if ($line =~ /}(?!(?:,|;|\)))\S/) {
1142 ERROR("need a space after that close brace '}'\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001143 }
1144
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001145# check spacing on square brackets
1146 if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
1147 ERROR("no space after that open square bracket '['\n" . $herecurr);
1148 }
1149 if ($line =~ /\s\]/) {
1150 ERROR("no space before that close square bracket ']'\n" . $herecurr);
1151 }
1152
1153# check spacing on paretheses
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001154 if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
1155 $line !~ /for\s*\(\s+;/) {
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001156 ERROR("no space after that open parenthesis '('\n" . $herecurr);
1157 }
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001158 if ($line =~ /\s\)/ && $line !~ /^.\s*\)/ &&
1159 $line !~ /for\s*\(.*;\s+\)/) {
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001160 ERROR("no space before that close parenthesis ')'\n" . $herecurr);
1161 }
1162
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001163#goto labels aren't indented, allow a single space however
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001164 if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001165 !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001166 WARN("labels should not be indented\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001167 }
1168
1169# Need a space before open parenthesis after if, while etc
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001170 if ($line=~/\b(if|while|for|switch)\(/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001171 ERROR("need a space before the open parenthesis '('\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001172 }
1173
1174# Check for illegal assignment in if conditional.
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001175 if ($line=~/\bif\s*\(.*[^<>!=]=[^=]/) {
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001176 #next if ($line=~/\".*\Q$op\E.*\"/ or $line=~/\'\Q$op\E\'/);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001177 ERROR("do not use assignment in if condition\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001178 }
1179
1180 # Check for }<nl>else {, these must be at the same
1181 # indent level to be relevant to each other.
1182 if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ and
1183 $previndent == $indent) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001184 ERROR("else should follow close brace '}'\n" . $hereprev);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001185 }
1186
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001187#studly caps, commented out until figure out how to distinguish between use of existing and adding new
1188# if (($line=~/[\w_][a-z\d]+[A-Z]/) and !($line=~/print/)) {
1189# print "No studly caps, use _\n";
1190# print "$herecurr";
1191# $clean = 0;
1192# }
1193
1194#no spaces allowed after \ in define
1195 if ($line=~/\#define.*\\\s$/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001196 WARN("Whitepspace after \\ makes next lines useless\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001197 }
1198
Andy Whitcroft653d4872007-06-23 17:16:34 -07001199#warn if <asm/foo.h> is #included and <linux/foo.h> is available (uses RAW line)
1200 if ($tree && $rawline =~ m{^.\#\s*include\s*\<asm\/(.*)\.h\>}) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001201 my $checkfile = "$root/include/linux/$1.h";
1202 if (-f $checkfile && $1 ne 'irq.h') {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001203 CHK("Use #include <linux/$1.h> instead of <asm/$1.h>\n" .
1204 $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001205 }
1206 }
1207
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001208# if and else should not have general statements after it
1209 if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/ &&
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001210 $1 !~ /^\s*(?:\sif|{|\\|$)/) {
1211 ERROR("trailing statements should be on next line\n" . $herecurr);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001212 }
1213
Andy Whitcroft653d4872007-06-23 17:16:34 -07001214# multi-statement macros should be enclosed in a do while loop, grab the
1215# first statement and ensure its the whole macro if its not enclosed
1216# in a known goot container
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001217 if ($prevline =~ /\#define.*\\/ &&
1218 $prevline !~/(?:do\s+{|\(\{|\{)/ &&
1219 $line !~ /(?:do\s+{|\(\{|\{)/ &&
1220 $line !~ /^.\s*$Declare\s/) {
Andy Whitcroft653d4872007-06-23 17:16:34 -07001221 # Grab the first statement, if that is the entire macro
1222 # its ok. This may start either on the #define line
1223 # or the one below.
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001224 my $ln = $linenr;
1225 my $cnt = $realcnt;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001226 my $off = 0;
Andy Whitcroft653d4872007-06-23 17:16:34 -07001227
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001228 # If the macro starts on the define line start
1229 # grabbing the statement after the identifier
1230 $prevline =~ m{^(.#\s*define\s*$Ident(?:\([^\)]*\))?\s*)(.*)\\\s*$};
1231 ##print "1<$1> 2<$2>\n";
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001232 if (defined $2 && $2 ne '') {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001233 $off = length($1);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001234 $ln--;
1235 $cnt++;
1236 }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001237 my @ctx = ctx_statement($ln, $cnt, $off);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001238 my $ctx_ln = $ln + $#ctx + 1;
1239 my $ctx = join("\n", @ctx);
1240
1241 # Pull in any empty extension lines.
1242 while ($ctx =~ /\\$/ &&
1243 $lines[$ctx_ln - 1] =~ /^.\s*(?:\\)?$/) {
1244 $ctx .= $lines[$ctx_ln - 1];
1245 $ctx_ln++;
1246 }
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001247
1248 if ($ctx =~ /\\$/) {
1249 if ($ctx =~ /;/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001250 ERROR("Macros with multiple statements should be enclosed in a do - while loop\n" . "$here\n$ctx\n");
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001251 } else {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001252 ERROR("Macros with complex values should be enclosed in parenthesis\n" . "$here\n$ctx\n");
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07001253 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001254 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001255 }
1256
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001257# check for redundant bracing round if etc
1258 if ($line =~ /\b(if|while|for|else)\b/) {
1259 # Locate the end of the opening statement.
1260 my @control = ctx_statement($linenr, $realcnt, 0);
1261 my $nr = $linenr + (scalar(@control) - 1);
1262 my $cnt = $realcnt - (scalar(@control) - 1);
1263
1264 my $off = $realcnt - $cnt;
1265 #print "$off: line<$line>end<" . $lines[$nr - 1] . ">\n";
1266
1267 # If this is is a braced statement group check it
1268 if ($lines[$nr - 1] =~ /{\s*$/) {
1269 my ($lvl, @block) = ctx_block_level($nr, $cnt);
1270
1271 my $stmt = join(' ', @block);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001272 $stmt =~ s/(^[^{]*){//;
1273 my $before = $1;
1274 $stmt =~ s/}([^}]*$)//;
1275 my $after = $1;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001276
1277 #print "block<" . join(' ', @block) . "><" . scalar(@block) . ">\n";
1278 #print "stmt<$stmt>\n\n";
1279
1280 # Count the ;'s if there is fewer than two
1281 # then there can only be one statement,
1282 # if there is a brace inside we cannot
1283 # trivially detect if its one statement.
1284 # Also nested if's often require braces to
1285 # disambiguate the else binding so shhh there.
1286 my @semi = ($stmt =~ /;/g);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001287 push(@semi, "/**/") if ($stmt =~ m@/\*@);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001288 ##print "semi<" . scalar(@semi) . ">\n";
1289 if ($lvl == 0 && scalar(@semi) < 2 &&
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001290 $stmt !~ /{/ && $stmt !~ /\bif\b/ &&
1291 $before !~ /}/ && $after !~ /{/) {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001292 my $herectx = "$here\n" . join("\n", @control, @block[1 .. $#block]) . "\n";
1293 shift(@block);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001294 WARN("braces {} are not necessary for single statement blocks\n" . $herectx);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001295 }
1296 }
1297 }
1298
Andy Whitcroft653d4872007-06-23 17:16:34 -07001299# don't include deprecated include files (uses RAW line)
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001300 for my $inc (@dep_includes) {
Andy Whitcroft653d4872007-06-23 17:16:34 -07001301 if ($rawline =~ m@\#\s*include\s*\<$inc>@) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001302 ERROR("Don't use <$inc>: see Documentation/feature-removal-schedule.txt\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001303 }
1304 }
1305
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001306# don't use deprecated functions
1307 for my $func (@dep_functions) {
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001308 if ($line =~ /\b$func\b/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001309 ERROR("Don't use $func(): see Documentation/feature-removal-schedule.txt\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001310 }
1311 }
1312
1313# no volatiles please
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001314 my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
1315 if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001316 WARN("Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001317 }
1318
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001319# SPIN_LOCK_UNLOCKED & RW_LOCK_UNLOCKED are deprecated
1320 if ($line =~ /\b(SPIN_LOCK_UNLOCKED|RW_LOCK_UNLOCKED)/) {
1321 ERROR("Use of $1 is deprecated: see Documentation/spinlocks.txt\n" . $herecurr);
1322 }
1323
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001324# warn about #if 0
1325 if ($line =~ /^.#\s*if\s+0\b/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001326 CHK("if this code is redundant consider removing it\n" .
1327 $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001328 }
1329
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001330# check for needless kfree() checks
1331 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
1332 my $expr = $1;
1333 if ($line =~ /\bkfree\(\Q$expr\E\);/) {
1334 WARN("kfree(NULL) is safe this check is probabally not required\n" . $hereprev);
1335 }
1336 }
1337
Andy Whitcroft00df344f2007-06-08 13:47:06 -07001338# warn about #ifdefs in C files
1339# if ($line =~ /^.#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
1340# print "#ifdef in C files should be avoided\n";
1341# print "$herecurr";
1342# $clean = 0;
1343# }
1344
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001345# warn about spacing in #ifdefs
1346 if ($line =~ /^.#\s*(ifdef|ifndef|elif)\s\s+/) {
1347 ERROR("exactly one space required after that #$1\n" . $herecurr);
1348 }
1349
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001350# check for spinlock_t definitions without a comment.
1351 if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/) {
1352 my $which = $1;
1353 if (!ctx_has_comment($first_line, $linenr)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001354 CHK("$1 definition without comment\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001355 }
1356 }
1357# check for memory barriers without a comment.
1358 if ($line =~ /\b(mb|rmb|wmb|read_barrier_depends|smp_mb|smp_rmb|smp_wmb|smp_read_barrier_depends)\(/) {
1359 if (!ctx_has_comment($first_line, $linenr)) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001360 CHK("memory barrier without comment\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001361 }
1362 }
1363# check of hardware specific defines
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07001364 if ($line =~ m@^.#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001365 CHK("architecture specific defines should be avoided\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001366 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001367
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001368# check the location of the inline attribute, that it is between
1369# storage class and type.
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001370 if ($line =~ /\b$Type\s+$Inline\b/ ||
1371 $line =~ /\b$Inline\s+$Storage\b/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001372 ERROR("inline keyword should sit between storage class and type\n" . $herecurr);
1373 }
1374
1375# check for new externs in .c files.
1376 if ($line =~ /^.\s*extern\s/ && ($realfile =~ /\.c$/)) {
1377 WARN("externs should be avoided in .c files\n" . $herecurr);
1378 }
1379
1380# checks for new __setup's
1381 if ($rawline =~ /\b__setup\("([^"]*)"/) {
1382 my $name = $1;
1383
1384 if (!grep(/$name/, @setup_docs)) {
1385 CHK("__setup appears un-documented -- check Documentation/kernel-parameters.txt\n" . $herecurr);
1386 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07001387 }
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001388
1389# check for pointless casting of kmalloc return
1390 if ($line =~ /\*\s*\)\s*k[czm]alloc\b/) {
1391 WARN("unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
1392 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001393 }
1394
1395 if ($chk_patch && !$is_patch) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001396 ERROR("Does not appear to be a unified-diff format patch\n");
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001397 }
1398 if ($is_patch && $chk_signoff && $signoff == 0) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07001399 ERROR("Missing Signed-off-by: line(s)\n");
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001400 }
1401
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001402 if ($clean == 0 && ($chk_patch || $is_patch)) {
1403 print report_dump();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001404 if ($quiet < 2) {
1405 print "total: $cnt_error errors, $cnt_warn warnings, " .
1406 (($check)? "$cnt_chk checks, " : "") .
1407 "$cnt_lines lines checked\n";
1408 }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001409 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001410 if ($clean == 1 && $quiet == 0) {
1411 print "Your patch has no obvious style problems and is ready for submission.\n"
1412 }
1413 if ($clean == 0 && $quiet == 0) {
1414 print "Your patch has style problems, please review. If any of these errors\n";
1415 print "are false positives report them to the maintainer, see\n";
1416 print "CHECKPATCH in MAINTAINERS.\n";
1417 }
1418 return $clean;
1419}