blob: 3cf05505e833ed94eaecfbf2477b7a1bee534230 [file] [log] [blame]
Kamil Rytarowskicb77f0d2017-05-07 23:25:26 +02001#!/usr/bin/env perl
Dave Jonesdbf004d2010-01-12 16:59:52 -05002# (c) 2001, Dave Jones. (the file handling bit)
Andy Whitcroft00df3442007-06-08 13:47:06 -07003# (c) 2005, Joel Schopp <jschopp@austin.ibm.com> (the ugly bit)
Andy Whitcroft2a5a2c22009-01-06 14:41:23 -08004# (c) 2007,2008, Andy Whitcroft <apw@uk.ibm.com> (new conditions, test suite)
Andy 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;
Kamil Rytarowskicb77f0d2017-05-07 23:25:26 +02009use warnings;
Joe Perchesc707a812013-07-08 16:00:43 -070010use POSIX;
Joe Perches36061e32014-12-10 15:51:43 -080011use File::Basename;
12use Cwd 'abs_path';
Joe Perches57230292015-06-25 15:03:03 -070013use Term::ANSIColor qw(:constants);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070014
15my $P = $0;
Joe Perches36061e32014-12-10 15:51:43 -080016my $D = dirname(abs_path($P));
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070017
Joe Perches000d1cc12011-07-25 17:13:25 -070018my $V = '0.32';
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070019
20use Getopt::Long qw(:config no_auto_abbrev);
21
22my $quiet = 0;
23my $tree = 1;
24my $chk_signoff = 1;
25my $chk_patch = 1;
Andy Whitcroft773647a2008-03-28 14:15:58 -070026my $tst_only;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070027my $emacs = 0;
Andy Whitcroft8905a672007-11-28 16:21:06 -080028my $terse = 0;
Joe Perches34d88152015-06-25 15:03:05 -070029my $showfile = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070030my $file = 0;
Du, Changbin4a593c32016-05-20 17:04:16 -070031my $git = 0;
Joe Perches0dea9f1e2016-05-20 17:04:19 -070032my %git_commits = ();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070033my $check = 0;
Joe Perches2ac73b42014-06-04 16:12:05 -070034my $check_orig = 0;
Andy Whitcroft8905a672007-11-28 16:21:06 -080035my $summary = 1;
36my $mailback = 0;
Andy Whitcroft13214ad2008-02-08 04:22:03 -080037my $summary_file = 0;
Joe Perches000d1cc12011-07-25 17:13:25 -070038my $show_types = 0;
Joe Perches3beb42e2016-05-20 17:04:14 -070039my $list_types = 0;
Joe Perches3705ce52013-07-03 15:05:31 -070040my $fix = 0;
Joe Perches9624b8d2014-01-23 15:54:44 -080041my $fix_inplace = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070042my $root;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -080043my %debug;
Joe Perches34456862013-07-03 15:05:34 -070044my %camelcase = ();
Joe Perches91bfe482013-09-11 14:23:59 -070045my %use_type = ();
46my @use = ();
47my %ignore_type = ();
Joe Perches000d1cc12011-07-25 17:13:25 -070048my @ignore = ();
Hannes Eder77f5b102009-09-21 17:04:37 -070049my $help = 0;
Joe Perches000d1cc12011-07-25 17:13:25 -070050my $configuration_file = ".checkpatch.conf";
Joe Perches6cd7f382012-12-17 16:01:54 -080051my $max_line_length = 80;
Dave Hansend62a2012013-09-11 14:23:56 -070052my $ignore_perl_version = 0;
53my $minimum_perl_version = 5.10.0;
Vadim Bendebury56193272014-10-13 15:51:48 -070054my $min_conf_desc_length = 4;
Kees Cook66b47b42014-10-13 15:51:57 -070055my $spelling_file = "$D/spelling.txt";
Joe Perchesebfd7d62015-04-16 12:44:14 -070056my $codespell = 0;
Maxim Uvarovf1a63672015-06-25 15:03:08 -070057my $codespellfile = "/usr/share/codespell/dictionary.txt";
Joe Perchesbf1fa1d2016-10-11 13:51:56 -070058my $conststructsfile = "$D/const_structs.checkpatch";
Jerome Forissier75ad8c52017-05-08 15:56:00 -070059my $typedefsfile = "";
Joe Perches57230292015-06-25 15:03:03 -070060my $color = 1;
Joe Perchesdadf6802016-08-02 14:04:33 -070061my $allow_c99_comments = 1;
Hannes Eder77f5b102009-09-21 17:04:37 -070062
63sub help {
64 my ($exitcode) = @_;
65
66 print << "EOM";
67Usage: $P [OPTION]... [FILE]...
68Version: $V
69
70Options:
71 -q, --quiet quiet
72 --no-tree run without a kernel tree
73 --no-signoff do not check for 'Signed-off-by' line
74 --patch treat FILE as patchfile (default)
75 --emacs emacs compile window format
76 --terse one line per report
Joe Perches34d88152015-06-25 15:03:05 -070077 --showfile emit diffed file position, not input file position
Du, Changbin4a593c32016-05-20 17:04:16 -070078 -g, --git treat FILE as a single commit or git revision range
79 single git commit with:
80 <rev>
81 <rev>^
82 <rev>~n
83 multiple git commits with:
84 <rev1>..<rev2>
85 <rev1>...<rev2>
86 <rev>-<count>
87 git merges are ignored
Hannes Eder77f5b102009-09-21 17:04:37 -070088 -f, --file treat FILE as regular source file
89 --subjective, --strict enable more subjective tests
Joe Perches3beb42e2016-05-20 17:04:14 -070090 --list-types list the possible message types
Joe Perches91bfe482013-09-11 14:23:59 -070091 --types TYPE(,TYPE2...) show only these comma separated message types
Joe Perches000d1cc12011-07-25 17:13:25 -070092 --ignore TYPE(,TYPE2...) ignore various comma separated message types
Joe Perches3beb42e2016-05-20 17:04:14 -070093 --show-types show the specific message type in the output
Joe Perches6cd7f382012-12-17 16:01:54 -080094 --max-line-length=n set the maximum line length, if exceeded, warn
Vadim Bendebury56193272014-10-13 15:51:48 -070095 --min-conf-desc-length=n set the min description length, if shorter, warn
Hannes Eder77f5b102009-09-21 17:04:37 -070096 --root=PATH PATH to the kernel tree root
97 --no-summary suppress the per-file summary
98 --mailback only produce a report in case of warnings/errors
99 --summary-file include the filename in summary
100 --debug KEY=[0|1] turn on/off debugging of KEY, where KEY is one of
101 'values', 'possible', 'type', and 'attr' (default
102 is all off)
103 --test-only=WORD report only warnings/errors containing WORD
104 literally
Joe Perches3705ce52013-07-03 15:05:31 -0700105 --fix EXPERIMENTAL - may create horrible results
106 If correctable single-line errors exist, create
107 "<inputfile>.EXPERIMENTAL-checkpatch-fixes"
108 with potential errors corrected to the preferred
109 checkpatch style
Joe Perches9624b8d2014-01-23 15:54:44 -0800110 --fix-inplace EXPERIMENTAL - may create horrible results
111 Is the same as --fix, but overwrites the input
112 file. It's your fault if there's no backup or git
Dave Hansend62a2012013-09-11 14:23:56 -0700113 --ignore-perl-version override checking of perl version. expect
114 runtime errors.
Joe Perchesebfd7d62015-04-16 12:44:14 -0700115 --codespell Use the codespell dictionary for spelling/typos
Maxim Uvarovf1a63672015-06-25 15:03:08 -0700116 (default:/usr/share/codespell/dictionary.txt)
Joe Perchesebfd7d62015-04-16 12:44:14 -0700117 --codespellfile Use this codespell dictionary
Jerome Forissier75ad8c52017-05-08 15:56:00 -0700118 --typedefsfile Read additional types from this file
Joe Perches57230292015-06-25 15:03:03 -0700119 --color Use colors when output is STDOUT (default: on)
Hannes Eder77f5b102009-09-21 17:04:37 -0700120 -h, --help, --version display this help and exit
121
122When FILE is - read standard input.
123EOM
124
125 exit($exitcode);
126}
127
Joe Perches3beb42e2016-05-20 17:04:14 -0700128sub uniq {
129 my %seen;
130 return grep { !$seen{$_}++ } @_;
131}
132
133sub list_types {
134 my ($exitcode) = @_;
135
136 my $count = 0;
137
138 local $/ = undef;
139
140 open(my $script, '<', abs_path($P)) or
141 die "$P: Can't read '$P' $!\n";
142
143 my $text = <$script>;
144 close($script);
145
146 my @types = ();
147 for ($text =~ /\b(?:(?:CHK|WARN|ERROR)\s*\(\s*"([^"]+)")/g) {
148 push (@types, $_);
149 }
150 @types = sort(uniq(@types));
151 print("#\tMessage type\n\n");
152 foreach my $type (@types) {
153 print(++$count . "\t" . $type . "\n");
154 }
155
156 exit($exitcode);
157}
158
Joe Perches000d1cc12011-07-25 17:13:25 -0700159my $conf = which_conf($configuration_file);
160if (-f $conf) {
161 my @conf_args;
162 open(my $conffile, '<', "$conf")
163 or warn "$P: Can't find a readable $configuration_file file $!\n";
164
165 while (<$conffile>) {
166 my $line = $_;
167
168 $line =~ s/\s*\n?$//g;
169 $line =~ s/^\s*//g;
170 $line =~ s/\s+/ /g;
171
172 next if ($line =~ m/^\s*#/);
173 next if ($line =~ m/^\s*$/);
174
175 my @words = split(" ", $line);
176 foreach my $word (@words) {
177 last if ($word =~ m/^#/);
178 push (@conf_args, $word);
179 }
180 }
181 close($conffile);
182 unshift(@ARGV, @conf_args) if @conf_args;
183}
184
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700185GetOptions(
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700186 'q|quiet+' => \$quiet,
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700187 'tree!' => \$tree,
188 'signoff!' => \$chk_signoff,
189 'patch!' => \$chk_patch,
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700190 'emacs!' => \$emacs,
Andy Whitcroft8905a672007-11-28 16:21:06 -0800191 'terse!' => \$terse,
Joe Perches34d88152015-06-25 15:03:05 -0700192 'showfile!' => \$showfile,
Hannes Eder77f5b102009-09-21 17:04:37 -0700193 'f|file!' => \$file,
Du, Changbin4a593c32016-05-20 17:04:16 -0700194 'g|git!' => \$git,
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700195 'subjective!' => \$check,
196 'strict!' => \$check,
Joe Perches000d1cc12011-07-25 17:13:25 -0700197 'ignore=s' => \@ignore,
Joe Perches91bfe482013-09-11 14:23:59 -0700198 'types=s' => \@use,
Joe Perches000d1cc12011-07-25 17:13:25 -0700199 'show-types!' => \$show_types,
Joe Perches3beb42e2016-05-20 17:04:14 -0700200 'list-types!' => \$list_types,
Joe Perches6cd7f382012-12-17 16:01:54 -0800201 'max-line-length=i' => \$max_line_length,
Vadim Bendebury56193272014-10-13 15:51:48 -0700202 'min-conf-desc-length=i' => \$min_conf_desc_length,
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700203 'root=s' => \$root,
Andy Whitcroft8905a672007-11-28 16:21:06 -0800204 'summary!' => \$summary,
205 'mailback!' => \$mailback,
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800206 'summary-file!' => \$summary_file,
Joe Perches3705ce52013-07-03 15:05:31 -0700207 'fix!' => \$fix,
Joe Perches9624b8d2014-01-23 15:54:44 -0800208 'fix-inplace!' => \$fix_inplace,
Dave Hansend62a2012013-09-11 14:23:56 -0700209 'ignore-perl-version!' => \$ignore_perl_version,
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800210 'debug=s' => \%debug,
Andy Whitcroft773647a2008-03-28 14:15:58 -0700211 'test-only=s' => \$tst_only,
Joe Perchesebfd7d62015-04-16 12:44:14 -0700212 'codespell!' => \$codespell,
213 'codespellfile=s' => \$codespellfile,
Jerome Forissier75ad8c52017-05-08 15:56:00 -0700214 'typedefsfile=s' => \$typedefsfile,
Joe Perches57230292015-06-25 15:03:03 -0700215 'color!' => \$color,
Hannes Eder77f5b102009-09-21 17:04:37 -0700216 'h|help' => \$help,
217 'version' => \$help
218) or help(1);
219
220help(0) if ($help);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700221
Joe Perches3beb42e2016-05-20 17:04:14 -0700222list_types(0) if ($list_types);
223
Joe Perches9624b8d2014-01-23 15:54:44 -0800224$fix = 1 if ($fix_inplace);
Joe Perches2ac73b42014-06-04 16:12:05 -0700225$check_orig = $check;
Joe Perches9624b8d2014-01-23 15:54:44 -0800226
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700227my $exit = 0;
228
Dave Hansend62a2012013-09-11 14:23:56 -0700229if ($^V && $^V lt $minimum_perl_version) {
230 printf "$P: requires at least perl version %vd\n", $minimum_perl_version;
231 if (!$ignore_perl_version) {
232 exit(1);
233 }
234}
235
Allen Hubbe45107ff2016-08-02 14:04:47 -0700236#if no filenames are given, push '-' to read patch from stdin
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700237if ($#ARGV < 0) {
Allen Hubbe45107ff2016-08-02 14:04:47 -0700238 push(@ARGV, '-');
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700239}
240
Joe Perches91bfe482013-09-11 14:23:59 -0700241sub hash_save_array_words {
242 my ($hashRef, $arrayRef) = @_;
Joe Perches000d1cc12011-07-25 17:13:25 -0700243
Joe Perches91bfe482013-09-11 14:23:59 -0700244 my @array = split(/,/, join(',', @$arrayRef));
245 foreach my $word (@array) {
246 $word =~ s/\s*\n?$//g;
247 $word =~ s/^\s*//g;
248 $word =~ s/\s+/ /g;
249 $word =~ tr/[a-z]/[A-Z]/;
Joe Perches000d1cc12011-07-25 17:13:25 -0700250
Joe Perches91bfe482013-09-11 14:23:59 -0700251 next if ($word =~ m/^\s*#/);
252 next if ($word =~ m/^\s*$/);
253
254 $hashRef->{$word}++;
255 }
Joe Perches000d1cc12011-07-25 17:13:25 -0700256}
257
Joe Perches91bfe482013-09-11 14:23:59 -0700258sub hash_show_words {
259 my ($hashRef, $prefix) = @_;
260
Joe Perches3c816e42015-06-25 15:03:29 -0700261 if (keys %$hashRef) {
Joe Perchesd8469f12015-06-25 15:03:00 -0700262 print "\nNOTE: $prefix message types:";
Joe Perches58cb3cf2013-09-11 14:24:04 -0700263 foreach my $word (sort keys %$hashRef) {
Joe Perches91bfe482013-09-11 14:23:59 -0700264 print " $word";
265 }
Joe Perchesd8469f12015-06-25 15:03:00 -0700266 print "\n";
Joe Perches91bfe482013-09-11 14:23:59 -0700267 }
268}
269
270hash_save_array_words(\%ignore_type, \@ignore);
271hash_save_array_words(\%use_type, \@use);
272
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800273my $dbg_values = 0;
274my $dbg_possible = 0;
Andy Whitcroft7429c692008-07-23 21:29:06 -0700275my $dbg_type = 0;
Andy Whitcrofta1ef2772008-10-15 22:02:17 -0700276my $dbg_attr = 0;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800277for my $key (keys %debug) {
Andy Whitcroft21caa132009-01-06 14:41:30 -0800278 ## no critic
279 eval "\${dbg_$key} = '$debug{$key}';";
280 die "$@" if ($@);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800281}
282
Andy Whitcroftd2c0a232010-10-26 14:23:12 -0700283my $rpt_cleaners = 0;
284
Andy Whitcroft8905a672007-11-28 16:21:06 -0800285if ($terse) {
286 $emacs = 1;
287 $quiet++;
288}
289
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700290if ($tree) {
291 if (defined $root) {
292 if (!top_of_kernel_tree($root)) {
293 die "$P: $root: --root does not point at a valid tree\n";
294 }
295 } else {
296 if (top_of_kernel_tree('.')) {
297 $root = '.';
298 } elsif ($0 =~ m@(.*)/scripts/[^/]*$@ &&
299 top_of_kernel_tree($1)) {
300 $root = $1;
301 }
302 }
303
304 if (!defined $root) {
305 print "Must be run from the top-level dir. of a kernel tree\n";
306 exit(2);
307 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700308}
309
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700310my $emitted_corrupt = 0;
311
Andy Whitcroft2ceb5322009-10-26 16:50:14 -0700312our $Ident = qr{
313 [A-Za-z_][A-Za-z\d_]*
314 (?:\s*\#\#\s*[A-Za-z_][A-Za-z\d_]*)*
315 }x;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700316our $Storage = qr{extern|static|asmlinkage};
317our $Sparse = qr{
318 __user|
319 __kernel|
320 __force|
321 __iomem|
322 __must_check|
323 __init_refok|
Andy Whitcroft417495e2009-02-27 14:03:08 -0800324 __kprobes|
Sven Eckelmann165e72a2011-07-25 17:13:23 -0700325 __ref|
Boqun Fengad315452015-12-29 12:18:46 +0800326 __rcu|
327 __private
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700328 }x;
Joe Perchese970b8842013-11-12 15:10:10 -0800329our $InitAttributePrefix = qr{__(?:mem|cpu|dev|net_|)};
330our $InitAttributeData = qr{$InitAttributePrefix(?:initdata\b)};
331our $InitAttributeConst = qr{$InitAttributePrefix(?:initconst\b)};
332our $InitAttributeInit = qr{$InitAttributePrefix(?:init\b)};
333our $InitAttribute = qr{$InitAttributeData|$InitAttributeConst|$InitAttributeInit};
Joe Perches8716de32013-09-11 14:24:05 -0700334
Wolfram Sang52131292010-03-05 13:43:51 -0800335# Notes to $Attribute:
336# We need \b after 'init' otherwise 'initconst' will cause a false positive in a check
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700337our $Attribute = qr{
338 const|
Joe Perches03f1df72010-10-26 14:23:16 -0700339 __percpu|
340 __nocast|
341 __safe|
Michael S. Tsirkin46d832f2016-12-11 06:29:58 +0200342 __bitwise|
Joe Perches03f1df72010-10-26 14:23:16 -0700343 __packed__|
344 __packed2__|
345 __naked|
346 __maybe_unused|
347 __always_unused|
348 __noreturn|
349 __used|
350 __cold|
Joe Perchese23ef1f2015-02-13 14:38:24 -0800351 __pure|
Joe Perches03f1df72010-10-26 14:23:16 -0700352 __noclone|
353 __deprecated|
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700354 __read_mostly|
355 __kprobes|
Joe Perches8716de32013-09-11 14:24:05 -0700356 $InitAttribute|
Andy Whitcroft24e1d812008-10-15 22:02:18 -0700357 ____cacheline_aligned|
358 ____cacheline_aligned_in_smp|
Andy Whitcroft5fe3af12009-01-06 14:41:18 -0800359 ____cacheline_internodealigned_in_smp|
360 __weak
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700361 }x;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700362our $Modifier;
Joe Perches91cb5192014-04-03 14:49:32 -0700363our $Inline = qr{inline|__always_inline|noinline|__inline|__inline__};
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700364our $Member = qr{->$Ident|\.$Ident|\[[^]]*\]};
365our $Lval = qr{$Ident(?:$Member)*};
366
Joe Perches95e2c602013-07-03 15:05:20 -0700367our $Int_type = qr{(?i)llu|ull|ll|lu|ul|l|u};
368our $Binary = qr{(?i)0b[01]+$Int_type?};
369our $Hex = qr{(?i)0x[0-9a-f]+$Int_type?};
370our $Int = qr{[0-9]+$Int_type?};
Joe Perches24358802014-04-03 14:49:13 -0700371our $Octal = qr{0[0-7]+$Int_type?};
Joe Perchesc0a5c892015-02-13 14:38:21 -0800372our $String = qr{"[X\t]*"};
Joe Perches326b1ff2013-02-04 14:28:51 -0800373our $Float_hex = qr{(?i)0x[0-9a-f]+p-?[0-9]+[fl]?};
374our $Float_dec = qr{(?i)(?:[0-9]+\.[0-9]*|[0-9]*\.[0-9]+)(?:e-?[0-9]+)?[fl]?};
375our $Float_int = qr{(?i)[0-9]+e-?[0-9]+[fl]?};
Joe Perches74349bc2012-12-17 16:02:05 -0800376our $Float = qr{$Float_hex|$Float_dec|$Float_int};
Joe Perches24358802014-04-03 14:49:13 -0700377our $Constant = qr{$Float|$Binary|$Octal|$Hex|$Int};
Joe Perches326b1ff2013-02-04 14:28:51 -0800378our $Assignment = qr{\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=};
Joe Perches447432f2014-04-03 14:49:17 -0700379our $Compare = qr{<=|>=|==|!=|<|(?<!-)>};
Joe Perches23f780c2013-07-03 15:05:31 -0700380our $Arithmetic = qr{\+|-|\*|\/|%};
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700381our $Operators = qr{
382 <=|>=|==|!=|
383 =>|->|<<|>>|<|>|!|~|
Joe Perches23f780c2013-07-03 15:05:31 -0700384 &&|\|\||,|\^|\+\+|--|&|\||$Arithmetic
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700385 }x;
386
Joe Perches91cb5192014-04-03 14:49:32 -0700387our $c90_Keywords = qr{do|for|while|if|else|return|goto|continue|switch|default|case|break}x;
388
Joe Perchesab7e23f2015-04-16 12:44:22 -0700389our $BasicType;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800390our $NonptrType;
Joe Perches18130872014-08-06 16:11:22 -0700391our $NonptrTypeMisordered;
Joe Perches8716de32013-09-11 14:24:05 -0700392our $NonptrTypeWithAttr;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800393our $Type;
Joe Perches18130872014-08-06 16:11:22 -0700394our $TypeMisordered;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800395our $Declare;
Joe Perches18130872014-08-06 16:11:22 -0700396our $DeclareMisordered;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800397
Joe Perches15662b32011-10-31 17:13:12 -0700398our $NON_ASCII_UTF8 = qr{
399 [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700400 | \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
401 | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
402 | \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
403 | \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
404 | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
405 | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
406}x;
407
Joe Perches15662b32011-10-31 17:13:12 -0700408our $UTF8 = qr{
409 [\x09\x0A\x0D\x20-\x7E] # ASCII
410 | $NON_ASCII_UTF8
411}x;
412
Joe Perchese6176fa2015-06-25 15:02:49 -0700413our $typeC99Typedefs = qr{(?:__)?(?:[us]_?)?int_?(?:8|16|32|64)_t};
Joe Perches021158b2015-02-13 14:38:43 -0800414our $typeOtherOSTypedefs = qr{(?x:
415 u_(?:char|short|int|long) | # bsd
416 u(?:nchar|short|int|long) # sysv
417)};
Joe Perchese6176fa2015-06-25 15:02:49 -0700418our $typeKernelTypedefs = qr{(?x:
Andy Whitcroftfb9e9092009-09-21 17:04:38 -0700419 (?:__)?(?:u|s|be|le)(?:8|16|32|64)|
Andy Whitcroft8ed22ca2008-10-15 22:02:32 -0700420 atomic_t
421)};
Joe Perchese6176fa2015-06-25 15:02:49 -0700422our $typeTypedefs = qr{(?x:
423 $typeC99Typedefs\b|
424 $typeOtherOSTypedefs\b|
425 $typeKernelTypedefs\b
426)};
Andy Whitcroft8ed22ca2008-10-15 22:02:32 -0700427
Joe Perches6d32f7a2015-11-06 16:31:37 -0800428our $zero_initializer = qr{(?:(?:0[xX])?0+$Int_type?|NULL|false)\b};
429
Joe Perches691e6692010-03-05 13:43:51 -0800430our $logFunctions = qr{(?x:
Miles Chen758d7aa2017-02-24 15:01:34 -0800431 printk(?:_ratelimited|_once|_deferred_once|_deferred|)|
Jacob Keller7d0b6592013-07-03 15:05:35 -0700432 (?:[a-z0-9]+_){1,2}(?:printk|emerg|alert|crit|err|warning|warn|notice|info|debug|dbg|vdbg|devel|cont|WARN)(?:_ratelimited|_once|)|
Joe Perches6e60c022011-07-25 17:13:27 -0700433 WARN(?:_RATELIMIT|_ONCE|)|
Joe Perchesb0531722011-05-24 17:13:40 -0700434 panic|
Joe Perches06668722013-11-12 15:10:07 -0800435 MODULE_[A-Z_]+|
436 seq_vprintf|seq_printf|seq_puts
Joe Perches691e6692010-03-05 13:43:51 -0800437)};
438
Joe Perches20112472011-07-25 17:13:23 -0700439our $signature_tags = qr{(?xi:
440 Signed-off-by:|
441 Acked-by:|
442 Tested-by:|
443 Reviewed-by:|
444 Reported-by:|
Mugunthan V N8543ae12013-04-29 16:18:17 -0700445 Suggested-by:|
Joe Perches20112472011-07-25 17:13:23 -0700446 To:|
447 Cc:
448)};
449
Joe Perches18130872014-08-06 16:11:22 -0700450our @typeListMisordered = (
451 qr{char\s+(?:un)?signed},
452 qr{int\s+(?:(?:un)?signed\s+)?short\s},
453 qr{int\s+short(?:\s+(?:un)?signed)},
454 qr{short\s+int(?:\s+(?:un)?signed)},
455 qr{(?:un)?signed\s+int\s+short},
456 qr{short\s+(?:un)?signed},
457 qr{long\s+int\s+(?:un)?signed},
458 qr{int\s+long\s+(?:un)?signed},
459 qr{long\s+(?:un)?signed\s+int},
460 qr{int\s+(?:un)?signed\s+long},
461 qr{int\s+(?:un)?signed},
462 qr{int\s+long\s+long\s+(?:un)?signed},
463 qr{long\s+long\s+int\s+(?:un)?signed},
464 qr{long\s+long\s+(?:un)?signed\s+int},
465 qr{long\s+long\s+(?:un)?signed},
466 qr{long\s+(?:un)?signed},
467);
468
Andy Whitcroft8905a672007-11-28 16:21:06 -0800469our @typeList = (
470 qr{void},
Joe Perches0c773d92014-08-06 16:11:20 -0700471 qr{(?:(?:un)?signed\s+)?char},
472 qr{(?:(?:un)?signed\s+)?short\s+int},
473 qr{(?:(?:un)?signed\s+)?short},
474 qr{(?:(?:un)?signed\s+)?int},
475 qr{(?:(?:un)?signed\s+)?long\s+int},
476 qr{(?:(?:un)?signed\s+)?long\s+long\s+int},
477 qr{(?:(?:un)?signed\s+)?long\s+long},
478 qr{(?:(?:un)?signed\s+)?long},
479 qr{(?:un)?signed},
Andy Whitcroft8905a672007-11-28 16:21:06 -0800480 qr{float},
481 qr{double},
482 qr{bool},
Andy Whitcroft8905a672007-11-28 16:21:06 -0800483 qr{struct\s+$Ident},
484 qr{union\s+$Ident},
485 qr{enum\s+$Ident},
486 qr{${Ident}_t},
487 qr{${Ident}_handler},
488 qr{${Ident}_handler_fn},
Joe Perches18130872014-08-06 16:11:22 -0700489 @typeListMisordered,
Andy Whitcroft8905a672007-11-28 16:21:06 -0800490);
Joe Perches938224b2016-01-20 14:59:15 -0800491
492our $C90_int_types = qr{(?x:
493 long\s+long\s+int\s+(?:un)?signed|
494 long\s+long\s+(?:un)?signed\s+int|
495 long\s+long\s+(?:un)?signed|
496 (?:(?:un)?signed\s+)?long\s+long\s+int|
497 (?:(?:un)?signed\s+)?long\s+long|
498 int\s+long\s+long\s+(?:un)?signed|
499 int\s+(?:(?:un)?signed\s+)?long\s+long|
500
501 long\s+int\s+(?:un)?signed|
502 long\s+(?:un)?signed\s+int|
503 long\s+(?:un)?signed|
504 (?:(?:un)?signed\s+)?long\s+int|
505 (?:(?:un)?signed\s+)?long|
506 int\s+long\s+(?:un)?signed|
507 int\s+(?:(?:un)?signed\s+)?long|
508
509 int\s+(?:un)?signed|
510 (?:(?:un)?signed\s+)?int
511)};
512
Alex Dowad485ff232015-06-25 15:02:52 -0700513our @typeListFile = ();
Joe Perches8716de32013-09-11 14:24:05 -0700514our @typeListWithAttr = (
515 @typeList,
516 qr{struct\s+$InitAttribute\s+$Ident},
517 qr{union\s+$InitAttribute\s+$Ident},
518);
519
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700520our @modifierList = (
521 qr{fastcall},
522);
Alex Dowad485ff232015-06-25 15:02:52 -0700523our @modifierListFile = ();
Andy Whitcroft8905a672007-11-28 16:21:06 -0800524
Joe Perches24358802014-04-03 14:49:13 -0700525our @mode_permission_funcs = (
526 ["module_param", 3],
527 ["module_param_(?:array|named|string)", 4],
528 ["module_param_array_named", 5],
529 ["debugfs_create_(?:file|u8|u16|u32|u64|x8|x16|x32|x64|size_t|atomic_t|bool|blob|regset32|u32_array)", 2],
530 ["proc_create(?:_data|)", 2],
Joe Perches459cf0a2016-10-11 13:52:19 -0700531 ["(?:CLASS|DEVICE|SENSOR|SENSOR_DEVICE|IIO_DEVICE)_ATTR", 2],
532 ["IIO_DEV_ATTR_[A-Z_]+", 1],
533 ["SENSOR_(?:DEVICE_|)ATTR_2", 2],
534 ["SENSOR_TEMPLATE(?:_2|)", 3],
535 ["__ATTR", 2],
Joe Perches24358802014-04-03 14:49:13 -0700536);
537
Joe Perches515a2352014-04-03 14:49:24 -0700538#Create a search pattern for all these functions to speed up a loop below
539our $mode_perms_search = "";
540foreach my $entry (@mode_permission_funcs) {
541 $mode_perms_search .= '|' if ($mode_perms_search ne "");
542 $mode_perms_search .= $entry->[0];
543}
544
Joe Perchesb392c642015-04-16 12:44:16 -0700545our $mode_perms_world_writable = qr{
546 S_IWUGO |
547 S_IWOTH |
548 S_IRWXUGO |
549 S_IALLUGO |
550 0[0-7][0-7][2367]
551}x;
552
Joe Perchesf90774e2016-10-11 13:51:47 -0700553our %mode_permission_string_types = (
554 "S_IRWXU" => 0700,
555 "S_IRUSR" => 0400,
556 "S_IWUSR" => 0200,
557 "S_IXUSR" => 0100,
558 "S_IRWXG" => 0070,
559 "S_IRGRP" => 0040,
560 "S_IWGRP" => 0020,
561 "S_IXGRP" => 0010,
562 "S_IRWXO" => 0007,
563 "S_IROTH" => 0004,
564 "S_IWOTH" => 0002,
565 "S_IXOTH" => 0001,
566 "S_IRWXUGO" => 0777,
567 "S_IRUGO" => 0444,
568 "S_IWUGO" => 0222,
569 "S_IXUGO" => 0111,
570);
571
572#Create a search pattern for all these strings to speed up a loop below
573our $mode_perms_string_search = "";
574foreach my $entry (keys %mode_permission_string_types) {
575 $mode_perms_string_search .= '|' if ($mode_perms_string_search ne "");
576 $mode_perms_string_search .= $entry;
577}
578
Wolfram Sang7840a942010-08-09 17:20:57 -0700579our $allowed_asm_includes = qr{(?x:
580 irq|
Sergey Ryazanovcdcee682014-10-13 15:51:44 -0700581 memory|
582 time|
583 reboot
Wolfram Sang7840a942010-08-09 17:20:57 -0700584)};
585# memory.h: ARM has a custom one
586
Kees Cook66b47b42014-10-13 15:51:57 -0700587# Load common spelling mistakes and build regular expression list.
588my $misspellings;
Kees Cook66b47b42014-10-13 15:51:57 -0700589my %spelling_fix;
Kees Cook66b47b42014-10-13 15:51:57 -0700590
Joe Perches36061e32014-12-10 15:51:43 -0800591if (open(my $spelling, '<', $spelling_file)) {
Joe Perches36061e32014-12-10 15:51:43 -0800592 while (<$spelling>) {
593 my $line = $_;
Kees Cook66b47b42014-10-13 15:51:57 -0700594
Joe Perches36061e32014-12-10 15:51:43 -0800595 $line =~ s/\s*\n?$//g;
596 $line =~ s/^\s*//g;
Kees Cook66b47b42014-10-13 15:51:57 -0700597
Joe Perches36061e32014-12-10 15:51:43 -0800598 next if ($line =~ m/^\s*#/);
599 next if ($line =~ m/^\s*$/);
Kees Cook66b47b42014-10-13 15:51:57 -0700600
Joe Perches36061e32014-12-10 15:51:43 -0800601 my ($suspect, $fix) = split(/\|\|/, $line);
602
Joe Perches36061e32014-12-10 15:51:43 -0800603 $spelling_fix{$suspect} = $fix;
604 }
605 close($spelling);
Joe Perches36061e32014-12-10 15:51:43 -0800606} else {
607 warn "No typos will be found - file '$spelling_file': $!\n";
Kees Cook66b47b42014-10-13 15:51:57 -0700608}
Kees Cook66b47b42014-10-13 15:51:57 -0700609
Joe Perchesebfd7d62015-04-16 12:44:14 -0700610if ($codespell) {
611 if (open(my $spelling, '<', $codespellfile)) {
612 while (<$spelling>) {
613 my $line = $_;
614
615 $line =~ s/\s*\n?$//g;
616 $line =~ s/^\s*//g;
617
618 next if ($line =~ m/^\s*#/);
619 next if ($line =~ m/^\s*$/);
620 next if ($line =~ m/, disabled/i);
621
622 $line =~ s/,.*$//;
623
624 my ($suspect, $fix) = split(/->/, $line);
625
626 $spelling_fix{$suspect} = $fix;
627 }
628 close($spelling);
629 } else {
630 warn "No codespell typos will be found - file '$codespellfile': $!\n";
631 }
632}
633
634$misspellings = join("|", sort keys %spelling_fix) if keys %spelling_fix;
635
Jerome Forissier75ad8c52017-05-08 15:56:00 -0700636sub read_words {
637 my ($wordsRef, $file) = @_;
Joe Perchesbf1fa1d2016-10-11 13:51:56 -0700638
Jerome Forissier75ad8c52017-05-08 15:56:00 -0700639 if (open(my $words, '<', $file)) {
640 while (<$words>) {
641 my $line = $_;
Joe Perchesbf1fa1d2016-10-11 13:51:56 -0700642
Jerome Forissier75ad8c52017-05-08 15:56:00 -0700643 $line =~ s/\s*\n?$//g;
644 $line =~ s/^\s*//g;
645
646 next if ($line =~ m/^\s*#/);
647 next if ($line =~ m/^\s*$/);
648 if ($line =~ /\s/) {
649 print("$file: '$line' invalid - ignored\n");
650 next;
651 }
652
653 $$wordsRef .= '|' if ($$wordsRef ne "");
654 $$wordsRef .= $line;
Joe Perchesbf1fa1d2016-10-11 13:51:56 -0700655 }
Jerome Forissier75ad8c52017-05-08 15:56:00 -0700656 close($file);
657 return 1;
Joe Perchesbf1fa1d2016-10-11 13:51:56 -0700658 }
Jerome Forissier75ad8c52017-05-08 15:56:00 -0700659
660 return 0;
Joe Perchesbf1fa1d2016-10-11 13:51:56 -0700661}
662
Jerome Forissier75ad8c52017-05-08 15:56:00 -0700663my $const_structs = "";
664read_words(\$const_structs, $conststructsfile)
665 or warn "No structs that should be const will be found - file '$conststructsfile': $!\n";
666
667my $typeOtherTypedefs = "";
668if (length($typedefsfile)) {
669 read_words(\$typeOtherTypedefs, $typedefsfile)
670 or warn "No additional types will be considered - file '$typedefsfile': $!\n";
671}
672$typeTypedefs .= '|' . $typeOtherTypedefs if ($typeOtherTypedefs ne "");
673
Andy Whitcroft8905a672007-11-28 16:21:06 -0800674sub build_types {
Alex Dowad485ff232015-06-25 15:02:52 -0700675 my $mods = "(?x: \n" . join("|\n ", (@modifierList, @modifierListFile)) . "\n)";
676 my $all = "(?x: \n" . join("|\n ", (@typeList, @typeListFile)) . "\n)";
Joe Perches18130872014-08-06 16:11:22 -0700677 my $Misordered = "(?x: \n" . join("|\n ", @typeListMisordered) . "\n)";
Joe Perches8716de32013-09-11 14:24:05 -0700678 my $allWithAttr = "(?x: \n" . join("|\n ", @typeListWithAttr) . "\n)";
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700679 $Modifier = qr{(?:$Attribute|$Sparse|$mods)};
Joe Perchesab7e23f2015-04-16 12:44:22 -0700680 $BasicType = qr{
Joe Perchesab7e23f2015-04-16 12:44:22 -0700681 (?:$typeTypedefs\b)|
682 (?:${all}\b)
683 }x;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800684 $NonptrType = qr{
Andy Whitcroftd2172eb2008-07-23 21:29:07 -0700685 (?:$Modifier\s+|const\s+)*
Andy Whitcroftcf655042008-03-04 14:28:20 -0800686 (?:
Andy Whitcroft6b48db22012-01-10 15:10:13 -0800687 (?:typeof|__typeof__)\s*\([^\)]*\)|
Andy Whitcroft8ed22ca2008-10-15 22:02:32 -0700688 (?:$typeTypedefs\b)|
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700689 (?:${all}\b)
Andy Whitcroftcf655042008-03-04 14:28:20 -0800690 )
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700691 (?:\s+$Modifier|\s+const)*
Andy Whitcroft8905a672007-11-28 16:21:06 -0800692 }x;
Joe Perches18130872014-08-06 16:11:22 -0700693 $NonptrTypeMisordered = qr{
694 (?:$Modifier\s+|const\s+)*
695 (?:
696 (?:${Misordered}\b)
697 )
698 (?:\s+$Modifier|\s+const)*
699 }x;
Joe Perches8716de32013-09-11 14:24:05 -0700700 $NonptrTypeWithAttr = qr{
701 (?:$Modifier\s+|const\s+)*
702 (?:
703 (?:typeof|__typeof__)\s*\([^\)]*\)|
704 (?:$typeTypedefs\b)|
705 (?:${allWithAttr}\b)
706 )
707 (?:\s+$Modifier|\s+const)*
708 }x;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800709 $Type = qr{
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700710 $NonptrType
Joe Perches1574a292014-08-06 16:10:50 -0700711 (?:(?:\s|\*|\[\])+\s*const|(?:\s|\*\s*(?:const\s*)?|\[\])+|(?:\s*\[\s*\])+)?
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700712 (?:\s+$Inline|\s+$Modifier)*
Andy Whitcroft8905a672007-11-28 16:21:06 -0800713 }x;
Joe Perches18130872014-08-06 16:11:22 -0700714 $TypeMisordered = qr{
715 $NonptrTypeMisordered
716 (?:(?:\s|\*|\[\])+\s*const|(?:\s|\*\s*(?:const\s*)?|\[\])+|(?:\s*\[\s*\])+)?
717 (?:\s+$Inline|\s+$Modifier)*
718 }x;
Joe Perches91cb5192014-04-03 14:49:32 -0700719 $Declare = qr{(?:$Storage\s+(?:$Inline\s+)?)?$Type};
Joe Perches18130872014-08-06 16:11:22 -0700720 $DeclareMisordered = qr{(?:$Storage\s+(?:$Inline\s+)?)?$TypeMisordered};
Andy Whitcroft8905a672007-11-28 16:21:06 -0800721}
722build_types();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700723
Joe Perches7d2367a2011-07-25 17:13:22 -0700724our $Typecast = qr{\s*(\(\s*$NonptrType\s*\)){0,1}\s*};
Joe Perchesd1fe9c02012-03-23 15:02:16 -0700725
726# Using $balanced_parens, $LvalOrFunc, or $FuncArg
727# requires at least perl version v5.10.0
728# Any use must be runtime checked with $^V
729
730our $balanced_parens = qr/(\((?:[^\(\)]++|(?-1))*\))/;
Joe Perches24358802014-04-03 14:49:13 -0700731our $LvalOrFunc = qr{((?:[\&\*]\s*)?$Lval)\s*($balanced_parens{0,1})\s*};
Joe Perchesc0a5c892015-02-13 14:38:21 -0800732our $FuncArg = qr{$Typecast{0,1}($LvalOrFunc|$Constant|$String)};
Joe Perches7d2367a2011-07-25 17:13:22 -0700733
Joe Perchesf8422302014-08-06 16:11:31 -0700734our $declaration_macros = qr{(?x:
Joe Perches3e838b62015-09-09 15:37:33 -0700735 (?:$Storage\s+)?(?:[A-Z_][A-Z0-9]*_){0,2}(?:DEFINE|DECLARE)(?:_[A-Z0-9]+){1,6}\s*\(|
Joe Perchesf8422302014-08-06 16:11:31 -0700736 (?:$Storage\s+)?LIST_HEAD\s*\(|
737 (?:$Storage\s+)?${Type}\s+uninitialized_var\s*\(
738)};
739
Joe Perches7d2367a2011-07-25 17:13:22 -0700740sub deparenthesize {
741 my ($string) = @_;
742 return "" if (!defined($string));
Joe Perches5b9553a2014-04-03 14:49:21 -0700743
744 while ($string =~ /^\s*\(.*\)\s*$/) {
745 $string =~ s@^\s*\(\s*@@;
746 $string =~ s@\s*\)\s*$@@;
747 }
748
Joe Perches7d2367a2011-07-25 17:13:22 -0700749 $string =~ s@\s+@ @g;
Joe Perches5b9553a2014-04-03 14:49:21 -0700750
Joe Perches7d2367a2011-07-25 17:13:22 -0700751 return $string;
752}
753
Joe Perches34456862013-07-03 15:05:34 -0700754sub seed_camelcase_file {
755 my ($file) = @_;
756
757 return if (!(-f $file));
758
759 local $/;
760
761 open(my $include_file, '<', "$file")
762 or warn "$P: Can't read '$file' $!\n";
763 my $text = <$include_file>;
764 close($include_file);
765
766 my @lines = split('\n', $text);
767
768 foreach my $line (@lines) {
769 next if ($line !~ /(?:[A-Z][a-z]|[a-z][A-Z])/);
770 if ($line =~ /^[ \t]*(?:#[ \t]*define|typedef\s+$Type)\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)/) {
771 $camelcase{$1} = 1;
Joe Perches11ea5162013-11-12 15:10:08 -0800772 } elsif ($line =~ /^\s*$Declare\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)\s*[\(\[,;]/) {
773 $camelcase{$1} = 1;
774 } elsif ($line =~ /^\s*(?:union|struct|enum)\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)\s*[;\{]/) {
Joe Perches34456862013-07-03 15:05:34 -0700775 $camelcase{$1} = 1;
776 }
777 }
778}
779
Joe Perches85b0ee12016-10-11 13:51:44 -0700780sub is_maintained_obsolete {
781 my ($filename) = @_;
782
Jerome Forissierf2c19c22016-12-12 16:46:23 -0800783 return 0 if (!$tree || !(-e "$root/scripts/get_maintainer.pl"));
Joe Perches85b0ee12016-10-11 13:51:44 -0700784
Joe Perches0616efa2016-10-11 13:52:02 -0700785 my $status = `perl $root/scripts/get_maintainer.pl --status --nom --nol --nogit --nogit-fallback -f $filename 2>&1`;
Joe Perches85b0ee12016-10-11 13:51:44 -0700786
787 return $status =~ /obsolete/i;
788}
789
Joe Perches34456862013-07-03 15:05:34 -0700790my $camelcase_seeded = 0;
791sub seed_camelcase_includes {
792 return if ($camelcase_seeded);
793
794 my $files;
Joe Perchesc707a812013-07-08 16:00:43 -0700795 my $camelcase_cache = "";
796 my @include_files = ();
797
798 $camelcase_seeded = 1;
Joe Perches351b2a12013-07-03 15:05:36 -0700799
Richard Genoud3645e322014-02-10 14:25:32 -0800800 if (-e ".git") {
Joe Perches351b2a12013-07-03 15:05:36 -0700801 my $git_last_include_commit = `git log --no-merges --pretty=format:"%h%n" -1 -- include`;
802 chomp $git_last_include_commit;
Joe Perchesc707a812013-07-08 16:00:43 -0700803 $camelcase_cache = ".checkpatch-camelcase.git.$git_last_include_commit";
Joe Perches34456862013-07-03 15:05:34 -0700804 } else {
Joe Perchesc707a812013-07-08 16:00:43 -0700805 my $last_mod_date = 0;
Joe Perches34456862013-07-03 15:05:34 -0700806 $files = `find $root/include -name "*.h"`;
Joe Perchesc707a812013-07-08 16:00:43 -0700807 @include_files = split('\n', $files);
808 foreach my $file (@include_files) {
809 my $date = POSIX::strftime("%Y%m%d%H%M",
810 localtime((stat $file)[9]));
811 $last_mod_date = $date if ($last_mod_date < $date);
812 }
813 $camelcase_cache = ".checkpatch-camelcase.date.$last_mod_date";
Joe Perches34456862013-07-03 15:05:34 -0700814 }
Joe Perchesc707a812013-07-08 16:00:43 -0700815
816 if ($camelcase_cache ne "" && -f $camelcase_cache) {
817 open(my $camelcase_file, '<', "$camelcase_cache")
818 or warn "$P: Can't read '$camelcase_cache' $!\n";
819 while (<$camelcase_file>) {
820 chomp;
821 $camelcase{$_} = 1;
822 }
823 close($camelcase_file);
824
825 return;
826 }
827
Richard Genoud3645e322014-02-10 14:25:32 -0800828 if (-e ".git") {
Joe Perchesc707a812013-07-08 16:00:43 -0700829 $files = `git ls-files "include/*.h"`;
830 @include_files = split('\n', $files);
831 }
832
Joe Perches34456862013-07-03 15:05:34 -0700833 foreach my $file (@include_files) {
834 seed_camelcase_file($file);
835 }
Joe Perches351b2a12013-07-03 15:05:36 -0700836
Joe Perchesc707a812013-07-08 16:00:43 -0700837 if ($camelcase_cache ne "") {
Joe Perches351b2a12013-07-03 15:05:36 -0700838 unlink glob ".checkpatch-camelcase.*";
Joe Perchesc707a812013-07-08 16:00:43 -0700839 open(my $camelcase_file, '>', "$camelcase_cache")
840 or warn "$P: Can't write '$camelcase_cache' $!\n";
Joe Perches351b2a12013-07-03 15:05:36 -0700841 foreach (sort { lc($a) cmp lc($b) } keys(%camelcase)) {
842 print $camelcase_file ("$_\n");
843 }
844 close($camelcase_file);
845 }
Joe Perches34456862013-07-03 15:05:34 -0700846}
847
Joe Perchesd311cd42014-08-06 16:10:57 -0700848sub git_commit_info {
849 my ($commit, $id, $desc) = @_;
850
851 return ($id, $desc) if ((which("git") eq "") || !(-e ".git"));
852
853 my $output = `git log --no-color --format='%H %s' -1 $commit 2>&1`;
854 $output =~ s/^\s*//gm;
855 my @lines = split("\n", $output);
856
Joe Perches0d7835f2015-02-13 14:38:35 -0800857 return ($id, $desc) if ($#lines < 0);
858
Joe Perchesd311cd42014-08-06 16:10:57 -0700859 if ($lines[0] =~ /^error: short SHA1 $commit is ambiguous\./) {
860# Maybe one day convert this block of bash into something that returns
861# all matching commit ids, but it's very slow...
862#
863# echo "checking commits $1..."
864# git rev-list --remotes | grep -i "^$1" |
865# while read line ; do
866# git log --format='%H %s' -1 $line |
867# echo "commit $(cut -c 1-12,41-)"
868# done
869 } elsif ($lines[0] =~ /^fatal: ambiguous argument '$commit': unknown revision or path not in the working tree\./) {
870 } else {
871 $id = substr($lines[0], 0, 12);
872 $desc = substr($lines[0], 41);
873 }
874
875 return ($id, $desc);
876}
877
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700878$chk_signoff = 0 if ($file);
879
Andy Whitcroft00df3442007-06-08 13:47:06 -0700880my @rawlines = ();
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800881my @lines = ();
Joe Perches3705ce52013-07-03 15:05:31 -0700882my @fixed = ();
Joe Perchesd752fcc2014-08-06 16:11:05 -0700883my @fixed_inserted = ();
884my @fixed_deleted = ();
Joe Perches194f66f2014-08-06 16:11:03 -0700885my $fixlinenr = -1;
886
Du, Changbin4a593c32016-05-20 17:04:16 -0700887# If input is git commits, extract all commits from the commit expressions.
888# For example, HEAD-3 means we need check 'HEAD, HEAD~1, HEAD~2'.
889die "$P: No git repository found\n" if ($git && !-e ".git");
890
891if ($git) {
892 my @commits = ();
Joe Perches0dea9f1e2016-05-20 17:04:19 -0700893 foreach my $commit_expr (@ARGV) {
Du, Changbin4a593c32016-05-20 17:04:16 -0700894 my $git_range;
Joe Perches28898fd2016-05-20 17:04:22 -0700895 if ($commit_expr =~ m/^(.*)-(\d+)$/) {
896 $git_range = "-$2 $1";
Du, Changbin4a593c32016-05-20 17:04:16 -0700897 } elsif ($commit_expr =~ m/\.\./) {
898 $git_range = "$commit_expr";
Du, Changbin4a593c32016-05-20 17:04:16 -0700899 } else {
Joe Perches0dea9f1e2016-05-20 17:04:19 -0700900 $git_range = "-1 $commit_expr";
901 }
902 my $lines = `git log --no-color --no-merges --pretty=format:'%H %s' $git_range`;
903 foreach my $line (split(/\n/, $lines)) {
Joe Perches28898fd2016-05-20 17:04:22 -0700904 $line =~ /^([0-9a-fA-F]{40,40}) (.*)$/;
905 next if (!defined($1) || !defined($2));
Joe Perches0dea9f1e2016-05-20 17:04:19 -0700906 my $sha1 = $1;
907 my $subject = $2;
908 unshift(@commits, $sha1);
909 $git_commits{$sha1} = $subject;
Du, Changbin4a593c32016-05-20 17:04:16 -0700910 }
911 }
912 die "$P: no git commits after extraction!\n" if (@commits == 0);
913 @ARGV = @commits;
914}
915
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800916my $vname;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700917for my $filename (@ARGV) {
Andy Whitcroft21caa132009-01-06 14:41:30 -0800918 my $FILE;
Du, Changbin4a593c32016-05-20 17:04:16 -0700919 if ($git) {
920 open($FILE, '-|', "git format-patch -M --stdout -1 $filename") ||
921 die "$P: $filename: git format-patch failed - $!\n";
922 } elsif ($file) {
Andy Whitcroft21caa132009-01-06 14:41:30 -0800923 open($FILE, '-|', "diff -u /dev/null $filename") ||
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700924 die "$P: $filename: diff failed - $!\n";
Andy Whitcroft21caa132009-01-06 14:41:30 -0800925 } elsif ($filename eq '-') {
926 open($FILE, '<&STDIN');
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700927 } else {
Andy Whitcroft21caa132009-01-06 14:41:30 -0800928 open($FILE, '<', "$filename") ||
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700929 die "$P: $filename: open failed - $!\n";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700930 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800931 if ($filename eq '-') {
932 $vname = 'Your patch';
Du, Changbin4a593c32016-05-20 17:04:16 -0700933 } elsif ($git) {
Joe Perches0dea9f1e2016-05-20 17:04:19 -0700934 $vname = "Commit " . substr($filename, 0, 12) . ' ("' . $git_commits{$filename} . '")';
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800935 } else {
936 $vname = $filename;
937 }
Andy Whitcroft21caa132009-01-06 14:41:30 -0800938 while (<$FILE>) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700939 chomp;
940 push(@rawlines, $_);
941 }
Andy Whitcroft21caa132009-01-06 14:41:30 -0800942 close($FILE);
Joe Perchesd8469f12015-06-25 15:03:00 -0700943
944 if ($#ARGV > 0 && $quiet == 0) {
945 print '-' x length($vname) . "\n";
946 print "$vname\n";
947 print '-' x length($vname) . "\n";
948 }
949
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800950 if (!process($filename)) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700951 $exit = 1;
952 }
953 @rawlines = ();
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800954 @lines = ();
Joe Perches3705ce52013-07-03 15:05:31 -0700955 @fixed = ();
Joe Perchesd752fcc2014-08-06 16:11:05 -0700956 @fixed_inserted = ();
957 @fixed_deleted = ();
Joe Perches194f66f2014-08-06 16:11:03 -0700958 $fixlinenr = -1;
Alex Dowad485ff232015-06-25 15:02:52 -0700959 @modifierListFile = ();
960 @typeListFile = ();
961 build_types();
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700962}
963
Joe Perchesd8469f12015-06-25 15:03:00 -0700964if (!$quiet) {
Joe Perches3c816e42015-06-25 15:03:29 -0700965 hash_show_words(\%use_type, "Used");
966 hash_show_words(\%ignore_type, "Ignored");
967
Joe Perchesd8469f12015-06-25 15:03:00 -0700968 if ($^V lt 5.10.0) {
969 print << "EOM"
970
971NOTE: perl $^V is not modern enough to detect all possible issues.
972 An upgrade to at least perl v5.10.0 is suggested.
973EOM
974 }
975 if ($exit) {
976 print << "EOM"
977
978NOTE: If any of the errors are false positives, please report
979 them to the maintainer, see CHECKPATCH in MAINTAINERS.
980EOM
981 }
982}
983
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700984exit($exit);
985
986sub top_of_kernel_tree {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700987 my ($root) = @_;
988
989 my @tree_check = (
990 "COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
991 "README", "Documentation", "arch", "include", "drivers",
992 "fs", "init", "ipc", "kernel", "lib", "scripts",
993 );
994
995 foreach my $check (@tree_check) {
996 if (! -e $root . '/' . $check) {
997 return 0;
998 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700999 }
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001000 return 1;
Joe Perches8f26b832012-10-04 17:13:32 -07001001}
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001002
Joe Perches20112472011-07-25 17:13:23 -07001003sub parse_email {
1004 my ($formatted_email) = @_;
1005
1006 my $name = "";
1007 my $address = "";
1008 my $comment = "";
1009
1010 if ($formatted_email =~ /^(.*)<(\S+\@\S+)>(.*)$/) {
1011 $name = $1;
1012 $address = $2;
1013 $comment = $3 if defined $3;
1014 } elsif ($formatted_email =~ /^\s*<(\S+\@\S+)>(.*)$/) {
1015 $address = $1;
1016 $comment = $2 if defined $2;
1017 } elsif ($formatted_email =~ /(\S+\@\S+)(.*)$/) {
1018 $address = $1;
1019 $comment = $2 if defined $2;
1020 $formatted_email =~ s/$address.*$//;
1021 $name = $formatted_email;
Joe Perches3705ce52013-07-03 15:05:31 -07001022 $name = trim($name);
Joe Perches20112472011-07-25 17:13:23 -07001023 $name =~ s/^\"|\"$//g;
1024 # If there's a name left after stripping spaces and
1025 # leading quotes, and the address doesn't have both
1026 # leading and trailing angle brackets, the address
1027 # is invalid. ie:
1028 # "joe smith joe@smith.com" bad
1029 # "joe smith <joe@smith.com" bad
1030 if ($name ne "" && $address !~ /^<[^>]+>$/) {
1031 $name = "";
1032 $address = "";
1033 $comment = "";
1034 }
1035 }
1036
Joe Perches3705ce52013-07-03 15:05:31 -07001037 $name = trim($name);
Joe Perches20112472011-07-25 17:13:23 -07001038 $name =~ s/^\"|\"$//g;
Joe Perches3705ce52013-07-03 15:05:31 -07001039 $address = trim($address);
Joe Perches20112472011-07-25 17:13:23 -07001040 $address =~ s/^\<|\>$//g;
1041
1042 if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
1043 $name =~ s/(?<!\\)"/\\"/g; ##escape quotes
1044 $name = "\"$name\"";
1045 }
1046
1047 return ($name, $address, $comment);
1048}
1049
1050sub format_email {
1051 my ($name, $address) = @_;
1052
1053 my $formatted_email;
1054
Joe Perches3705ce52013-07-03 15:05:31 -07001055 $name = trim($name);
Joe Perches20112472011-07-25 17:13:23 -07001056 $name =~ s/^\"|\"$//g;
Joe Perches3705ce52013-07-03 15:05:31 -07001057 $address = trim($address);
Joe Perches20112472011-07-25 17:13:23 -07001058
1059 if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
1060 $name =~ s/(?<!\\)"/\\"/g; ##escape quotes
1061 $name = "\"$name\"";
1062 }
1063
1064 if ("$name" eq "") {
1065 $formatted_email = "$address";
1066 } else {
1067 $formatted_email = "$name <$address>";
1068 }
1069
1070 return $formatted_email;
1071}
1072
Joe Perchesd311cd42014-08-06 16:10:57 -07001073sub which {
Joe Perchesbd474ca2014-08-06 16:11:10 -07001074 my ($bin) = @_;
Joe Perchesd311cd42014-08-06 16:10:57 -07001075
Joe Perchesbd474ca2014-08-06 16:11:10 -07001076 foreach my $path (split(/:/, $ENV{PATH})) {
1077 if (-e "$path/$bin") {
1078 return "$path/$bin";
1079 }
Joe Perchesd311cd42014-08-06 16:10:57 -07001080 }
Joe Perchesd311cd42014-08-06 16:10:57 -07001081
Joe Perchesbd474ca2014-08-06 16:11:10 -07001082 return "";
Joe Perchesd311cd42014-08-06 16:10:57 -07001083}
1084
Joe Perches000d1cc12011-07-25 17:13:25 -07001085sub which_conf {
1086 my ($conf) = @_;
1087
1088 foreach my $path (split(/:/, ".:$ENV{HOME}:.scripts")) {
1089 if (-e "$path/$conf") {
1090 return "$path/$conf";
1091 }
1092 }
1093
1094 return "";
1095}
1096
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001097sub expand_tabs {
1098 my ($str) = @_;
1099
1100 my $res = '';
1101 my $n = 0;
1102 for my $c (split(//, $str)) {
1103 if ($c eq "\t") {
1104 $res .= ' ';
1105 $n++;
1106 for (; ($n % 8) != 0; $n++) {
1107 $res .= ' ';
1108 }
1109 next;
1110 }
1111 $res .= $c;
1112 $n++;
1113 }
1114
1115 return $res;
1116}
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001117sub copy_spacing {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001118 (my $res = shift) =~ tr/\t/ /c;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001119 return $res;
1120}
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001121
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001122sub line_stats {
1123 my ($line) = @_;
1124
1125 # Drop the diff line leader and expand tabs
1126 $line =~ s/^.//;
1127 $line = expand_tabs($line);
1128
1129 # Pick the indent from the front of the line.
1130 my ($white) = ($line =~ /^(\s*)/);
1131
1132 return (length($line), length($white));
1133}
1134
Andy Whitcroft773647a2008-03-28 14:15:58 -07001135my $sanitise_quote = '';
1136
1137sub sanitise_line_reset {
1138 my ($in_comment) = @_;
1139
1140 if ($in_comment) {
1141 $sanitise_quote = '*/';
1142 } else {
1143 $sanitise_quote = '';
1144 }
1145}
Andy Whitcroft00df3442007-06-08 13:47:06 -07001146sub sanitise_line {
1147 my ($line) = @_;
1148
1149 my $res = '';
1150 my $l = '';
1151
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001152 my $qlen = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001153 my $off = 0;
1154 my $c;
Andy Whitcroft00df3442007-06-08 13:47:06 -07001155
Andy Whitcroft773647a2008-03-28 14:15:58 -07001156 # Always copy over the diff marker.
1157 $res = substr($line, 0, 1);
1158
1159 for ($off = 1; $off < length($line); $off++) {
1160 $c = substr($line, $off, 1);
1161
1162 # Comments we are wacking completly including the begin
1163 # and end, all to $;.
1164 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
1165 $sanitise_quote = '*/';
1166
1167 substr($res, $off, 2, "$;$;");
1168 $off++;
1169 next;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001170 }
Andy Whitcroft81bc0e02008-10-15 22:02:26 -07001171 if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001172 $sanitise_quote = '';
1173 substr($res, $off, 2, "$;$;");
1174 $off++;
1175 next;
1176 }
Daniel Walker113f04a2009-09-21 17:04:35 -07001177 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '//') {
1178 $sanitise_quote = '//';
1179
1180 substr($res, $off, 2, $sanitise_quote);
1181 $off++;
1182 next;
1183 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001184
1185 # A \ in a string means ignore the next character.
1186 if (($sanitise_quote eq "'" || $sanitise_quote eq '"') &&
1187 $c eq "\\") {
1188 substr($res, $off, 2, 'XX');
1189 $off++;
1190 next;
1191 }
1192 # Regular quotes.
1193 if ($c eq "'" || $c eq '"') {
1194 if ($sanitise_quote eq '') {
1195 $sanitise_quote = $c;
1196
1197 substr($res, $off, 1, $c);
Andy Whitcroft00df3442007-06-08 13:47:06 -07001198 next;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001199 } elsif ($sanitise_quote eq $c) {
1200 $sanitise_quote = '';
Andy Whitcroft00df3442007-06-08 13:47:06 -07001201 }
1202 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001203
Andy Whitcroftfae17da2009-01-06 14:41:20 -08001204 #print "c<$c> SQ<$sanitise_quote>\n";
Andy Whitcroft773647a2008-03-28 14:15:58 -07001205 if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") {
1206 substr($res, $off, 1, $;);
Daniel Walker113f04a2009-09-21 17:04:35 -07001207 } elsif ($off != 0 && $sanitise_quote eq '//' && $c ne "\t") {
1208 substr($res, $off, 1, $;);
Andy Whitcroft773647a2008-03-28 14:15:58 -07001209 } elsif ($off != 0 && $sanitise_quote && $c ne "\t") {
1210 substr($res, $off, 1, 'X');
Andy Whitcroft00df3442007-06-08 13:47:06 -07001211 } else {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001212 substr($res, $off, 1, $c);
Andy Whitcroft00df3442007-06-08 13:47:06 -07001213 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001214 }
1215
Daniel Walker113f04a2009-09-21 17:04:35 -07001216 if ($sanitise_quote eq '//') {
1217 $sanitise_quote = '';
1218 }
1219
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001220 # The pathname on a #include may be surrounded by '<' and '>'.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001221 if ($res =~ /^.\s*\#\s*include\s+\<(.*)\>/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001222 my $clean = 'X' x length($1);
1223 $res =~ s@\<.*\>@<$clean>@;
1224
1225 # The whole of a #error is a string.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001226 } elsif ($res =~ /^.\s*\#\s*(?:error|warning)\s+(.*)\b/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001227 my $clean = 'X' x length($1);
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001228 $res =~ s@(\#\s*(?:error|warning)\s+).*@$1$clean@;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001229 }
1230
Joe Perchesdadf6802016-08-02 14:04:33 -07001231 if ($allow_c99_comments && $res =~ m@(//.*$)@) {
1232 my $match = $1;
1233 $res =~ s/\Q$match\E/"$;" x length($match)/e;
1234 }
1235
Andy Whitcroft00df3442007-06-08 13:47:06 -07001236 return $res;
1237}
1238
Joe Perchesa6962d72013-04-29 16:18:13 -07001239sub get_quoted_string {
1240 my ($line, $rawline) = @_;
1241
Joe Perches33acb542015-06-25 15:02:54 -07001242 return "" if ($line !~ m/($String)/g);
Joe Perchesa6962d72013-04-29 16:18:13 -07001243 return substr($rawline, $-[0], $+[0] - $-[0]);
1244}
1245
Andy Whitcroft8905a672007-11-28 16:21:06 -08001246sub ctx_statement_block {
1247 my ($linenr, $remain, $off) = @_;
1248 my $line = $linenr - 1;
1249 my $blk = '';
1250 my $soff = $off;
1251 my $coff = $off - 1;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001252 my $coff_set = 0;
Andy Whitcroft8905a672007-11-28 16:21:06 -08001253
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001254 my $loff = 0;
1255
Andy Whitcroft8905a672007-11-28 16:21:06 -08001256 my $type = '';
1257 my $level = 0;
Andy Whitcrofta2750642009-01-15 13:51:04 -08001258 my @stack = ();
Andy Whitcroftcf655042008-03-04 14:28:20 -08001259 my $p;
Andy Whitcroft8905a672007-11-28 16:21:06 -08001260 my $c;
1261 my $len = 0;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001262
1263 my $remainder;
Andy Whitcroft8905a672007-11-28 16:21:06 -08001264 while (1) {
Andy Whitcrofta2750642009-01-15 13:51:04 -08001265 @stack = (['', 0]) if ($#stack == -1);
1266
Andy Whitcroft773647a2008-03-28 14:15:58 -07001267 #warn "CSB: blk<$blk> remain<$remain>\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -08001268 # If we are about to drop off the end, pull in more
1269 # context.
1270 if ($off >= $len) {
1271 for (; $remain > 0; $line++) {
Andy Whitcroftdea33492008-10-15 22:02:25 -07001272 last if (!defined $lines[$line]);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001273 next if ($lines[$line] =~ /^-/);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001274 $remain--;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001275 $loff = $len;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001276 $blk .= $lines[$line] . "\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -08001277 $len = length($blk);
1278 $line++;
1279 last;
1280 }
1281 # Bail if there is no further context.
1282 #warn "CSB: blk<$blk> off<$off> len<$len>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001283 if ($off >= $len) {
Andy Whitcroft8905a672007-11-28 16:21:06 -08001284 last;
1285 }
Andy Whitcroftf74bd192012-01-10 15:09:54 -08001286 if ($level == 0 && substr($blk, $off) =~ /^.\s*#\s*define/) {
1287 $level++;
1288 $type = '#';
1289 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001290 }
Andy Whitcroftcf655042008-03-04 14:28:20 -08001291 $p = $c;
Andy Whitcroft8905a672007-11-28 16:21:06 -08001292 $c = substr($blk, $off, 1);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001293 $remainder = substr($blk, $off);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001294
Andy Whitcroft773647a2008-03-28 14:15:58 -07001295 #warn "CSB: c<$c> type<$type> level<$level> remainder<$remainder> coff_set<$coff_set>\n";
Andy Whitcroft4635f4f2009-01-06 14:41:27 -08001296
1297 # Handle nested #if/#else.
1298 if ($remainder =~ /^#\s*(?:ifndef|ifdef|if)\s/) {
1299 push(@stack, [ $type, $level ]);
1300 } elsif ($remainder =~ /^#\s*(?:else|elif)\b/) {
1301 ($type, $level) = @{$stack[$#stack - 1]};
1302 } elsif ($remainder =~ /^#\s*endif\b/) {
1303 ($type, $level) = @{pop(@stack)};
1304 }
1305
Andy Whitcroft8905a672007-11-28 16:21:06 -08001306 # Statement ends at the ';' or a close '}' at the
1307 # outermost level.
1308 if ($level == 0 && $c eq ';') {
1309 last;
1310 }
1311
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001312 # An else is really a conditional as long as its not else if
Andy Whitcroft773647a2008-03-28 14:15:58 -07001313 if ($level == 0 && $coff_set == 0 &&
1314 (!defined($p) || $p =~ /(?:\s|\}|\+)/) &&
1315 $remainder =~ /^(else)(?:\s|{)/ &&
1316 $remainder !~ /^else\s+if\b/) {
1317 $coff = $off + length($1) - 1;
1318 $coff_set = 1;
1319 #warn "CSB: mark coff<$coff> soff<$soff> 1<$1>\n";
1320 #warn "[" . substr($blk, $soff, $coff - $soff + 1) . "]\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001321 }
1322
Andy Whitcroft8905a672007-11-28 16:21:06 -08001323 if (($type eq '' || $type eq '(') && $c eq '(') {
1324 $level++;
1325 $type = '(';
1326 }
1327 if ($type eq '(' && $c eq ')') {
1328 $level--;
1329 $type = ($level != 0)? '(' : '';
1330
1331 if ($level == 0 && $coff < $soff) {
1332 $coff = $off;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001333 $coff_set = 1;
1334 #warn "CSB: mark coff<$coff>\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -08001335 }
1336 }
1337 if (($type eq '' || $type eq '{') && $c eq '{') {
1338 $level++;
1339 $type = '{';
1340 }
1341 if ($type eq '{' && $c eq '}') {
1342 $level--;
1343 $type = ($level != 0)? '{' : '';
1344
1345 if ($level == 0) {
Patrick Pannutob998e002010-08-09 17:21:03 -07001346 if (substr($blk, $off + 1, 1) eq ';') {
1347 $off++;
1348 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001349 last;
1350 }
1351 }
Andy Whitcroftf74bd192012-01-10 15:09:54 -08001352 # Preprocessor commands end at the newline unless escaped.
1353 if ($type eq '#' && $c eq "\n" && $p ne "\\") {
1354 $level--;
1355 $type = '';
1356 $off++;
1357 last;
1358 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001359 $off++;
1360 }
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -07001361 # We are truly at the end, so shuffle to the next line.
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001362 if ($off == $len) {
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -07001363 $loff = $len + 1;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001364 $line++;
1365 $remain--;
1366 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001367
1368 my $statement = substr($blk, $soff, $off - $soff + 1);
1369 my $condition = substr($blk, $soff, $coff - $soff + 1);
1370
1371 #warn "STATEMENT<$statement>\n";
1372 #warn "CONDITION<$condition>\n";
1373
Andy Whitcroft773647a2008-03-28 14:15:58 -07001374 #print "coff<$coff> soff<$off> loff<$loff>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001375
1376 return ($statement, $condition,
1377 $line, $remain + 1, $off - $loff + 1, $level);
1378}
1379
Andy Whitcroftcf655042008-03-04 14:28:20 -08001380sub statement_lines {
1381 my ($stmt) = @_;
1382
1383 # Strip the diff line prefixes and rip blank lines at start and end.
1384 $stmt =~ s/(^|\n)./$1/g;
1385 $stmt =~ s/^\s*//;
1386 $stmt =~ s/\s*$//;
1387
1388 my @stmt_lines = ($stmt =~ /\n/g);
1389
1390 return $#stmt_lines + 2;
1391}
1392
1393sub statement_rawlines {
1394 my ($stmt) = @_;
1395
1396 my @stmt_lines = ($stmt =~ /\n/g);
1397
1398 return $#stmt_lines + 2;
1399}
1400
1401sub statement_block_size {
1402 my ($stmt) = @_;
1403
1404 $stmt =~ s/(^|\n)./$1/g;
1405 $stmt =~ s/^\s*{//;
1406 $stmt =~ s/}\s*$//;
1407 $stmt =~ s/^\s*//;
1408 $stmt =~ s/\s*$//;
1409
1410 my @stmt_lines = ($stmt =~ /\n/g);
1411 my @stmt_statements = ($stmt =~ /;/g);
1412
1413 my $stmt_lines = $#stmt_lines + 2;
1414 my $stmt_statements = $#stmt_statements + 1;
1415
1416 if ($stmt_lines > $stmt_statements) {
1417 return $stmt_lines;
1418 } else {
1419 return $stmt_statements;
1420 }
1421}
1422
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001423sub ctx_statement_full {
1424 my ($linenr, $remain, $off) = @_;
1425 my ($statement, $condition, $level);
1426
1427 my (@chunks);
1428
Andy Whitcroftcf655042008-03-04 14:28:20 -08001429 # Grab the first conditional/block pair.
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001430 ($statement, $condition, $linenr, $remain, $off, $level) =
1431 ctx_statement_block($linenr, $remain, $off);
Andy Whitcroft773647a2008-03-28 14:15:58 -07001432 #print "F: c<$condition> s<$statement> remain<$remain>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08001433 push(@chunks, [ $condition, $statement ]);
1434 if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
1435 return ($level, $linenr, @chunks);
1436 }
1437
1438 # Pull in the following conditional/block pairs and see if they
1439 # could continue the statement.
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001440 for (;;) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001441 ($statement, $condition, $linenr, $remain, $off, $level) =
1442 ctx_statement_block($linenr, $remain, $off);
Andy Whitcroftcf655042008-03-04 14:28:20 -08001443 #print "C: c<$condition> s<$statement> remain<$remain>\n";
Andy Whitcroft773647a2008-03-28 14:15:58 -07001444 last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
Andy Whitcroftcf655042008-03-04 14:28:20 -08001445 #print "C: push\n";
1446 push(@chunks, [ $condition, $statement ]);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001447 }
1448
1449 return ($level, $linenr, @chunks);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001450}
1451
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001452sub ctx_block_get {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001453 my ($linenr, $remain, $outer, $open, $close, $off) = @_;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001454 my $line;
1455 my $start = $linenr - 1;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001456 my $blk = '';
1457 my @o;
1458 my @c;
1459 my @res = ();
1460
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001461 my $level = 0;
Andy Whitcroft4635f4f2009-01-06 14:41:27 -08001462 my @stack = ($level);
Andy Whitcroft00df3442007-06-08 13:47:06 -07001463 for ($line = $start; $remain > 0; $line++) {
1464 next if ($rawlines[$line] =~ /^-/);
1465 $remain--;
1466
1467 $blk .= $rawlines[$line];
Andy Whitcroft4635f4f2009-01-06 14:41:27 -08001468
1469 # Handle nested #if/#else.
Andy Whitcroft01464f32010-10-26 14:23:19 -07001470 if ($lines[$line] =~ /^.\s*#\s*(?:ifndef|ifdef|if)\s/) {
Andy Whitcroft4635f4f2009-01-06 14:41:27 -08001471 push(@stack, $level);
Andy Whitcroft01464f32010-10-26 14:23:19 -07001472 } elsif ($lines[$line] =~ /^.\s*#\s*(?:else|elif)\b/) {
Andy Whitcroft4635f4f2009-01-06 14:41:27 -08001473 $level = $stack[$#stack - 1];
Andy Whitcroft01464f32010-10-26 14:23:19 -07001474 } elsif ($lines[$line] =~ /^.\s*#\s*endif\b/) {
Andy Whitcroft4635f4f2009-01-06 14:41:27 -08001475 $level = pop(@stack);
1476 }
1477
Andy Whitcroft01464f32010-10-26 14:23:19 -07001478 foreach my $c (split(//, $lines[$line])) {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001479 ##print "C<$c>L<$level><$open$close>O<$off>\n";
1480 if ($off > 0) {
1481 $off--;
1482 next;
1483 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001484
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001485 if ($c eq $close && $level > 0) {
1486 $level--;
1487 last if ($level == 0);
1488 } elsif ($c eq $open) {
1489 $level++;
1490 }
1491 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001492
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001493 if (!$outer || $level <= 1) {
Andy Whitcroft00df3442007-06-08 13:47:06 -07001494 push(@res, $rawlines[$line]);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001495 }
1496
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001497 last if ($level == 0);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001498 }
1499
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001500 return ($level, @res);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001501}
1502sub ctx_block_outer {
1503 my ($linenr, $remain) = @_;
1504
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001505 my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0);
1506 return @r;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001507}
1508sub ctx_block {
1509 my ($linenr, $remain) = @_;
1510
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001511 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0);
1512 return @r;
Andy Whitcroft653d4872007-06-23 17:16:34 -07001513}
1514sub ctx_statement {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001515 my ($linenr, $remain, $off) = @_;
1516
1517 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
1518 return @r;
1519}
1520sub ctx_block_level {
Andy Whitcroft653d4872007-06-23 17:16:34 -07001521 my ($linenr, $remain) = @_;
1522
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001523 return ctx_block_get($linenr, $remain, 0, '{', '}', 0);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001524}
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001525sub ctx_statement_level {
1526 my ($linenr, $remain, $off) = @_;
1527
1528 return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
1529}
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001530
1531sub ctx_locate_comment {
1532 my ($first_line, $end_line) = @_;
1533
1534 # Catch a comment on the end of the line itself.
Andy Whitcroftbeae6332008-07-23 21:28:59 -07001535 my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001536 return $current_comment if (defined $current_comment);
1537
1538 # Look through the context and try and figure out if there is a
1539 # comment.
1540 my $in_comment = 0;
1541 $current_comment = '';
1542 for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
Andy Whitcroft00df3442007-06-08 13:47:06 -07001543 my $line = $rawlines[$linenr - 1];
1544 #warn " $line\n";
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001545 if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
1546 $in_comment = 1;
1547 }
1548 if ($line =~ m@/\*@) {
1549 $in_comment = 1;
1550 }
1551 if (!$in_comment && $current_comment ne '') {
1552 $current_comment = '';
1553 }
1554 $current_comment .= $line . "\n" if ($in_comment);
1555 if ($line =~ m@\*/@) {
1556 $in_comment = 0;
1557 }
1558 }
1559
1560 chomp($current_comment);
1561 return($current_comment);
1562}
1563sub ctx_has_comment {
1564 my ($first_line, $end_line) = @_;
1565 my $cmt = ctx_locate_comment($first_line, $end_line);
1566
Andy Whitcroft00df3442007-06-08 13:47:06 -07001567 ##print "LINE: $rawlines[$end_line - 1 ]\n";
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001568 ##print "CMMT: $cmt\n";
1569
1570 return ($cmt ne '');
1571}
1572
Andy Whitcroft4d001e42008-10-15 22:02:21 -07001573sub raw_line {
1574 my ($linenr, $cnt) = @_;
1575
1576 my $offset = $linenr - 1;
1577 $cnt++;
1578
1579 my $line;
1580 while ($cnt) {
1581 $line = $rawlines[$offset++];
1582 next if (defined($line) && $line =~ /^-/);
1583 $cnt--;
1584 }
1585
1586 return $line;
1587}
1588
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001589sub cat_vet {
1590 my ($vet) = @_;
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001591 my ($res, $coded);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001592
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001593 $res = '';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001594 while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
1595 $res .= $1;
1596 if ($2 ne '') {
1597 $coded = sprintf("^%c", unpack('C', $2) + 64);
1598 $res .= $coded;
1599 }
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001600 }
1601 $res =~ s/$/\$/;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001602
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001603 return $res;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001604}
1605
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001606my $av_preprocessor = 0;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001607my $av_pending;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001608my @av_paren_type;
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001609my $av_pend_colon;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001610
1611sub annotate_reset {
1612 $av_preprocessor = 0;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001613 $av_pending = '_';
1614 @av_paren_type = ('E');
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001615 $av_pend_colon = 'O';
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001616}
1617
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001618sub annotate_values {
1619 my ($stream, $type) = @_;
1620
1621 my $res;
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001622 my $var = '_' x length($stream);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001623 my $cur = $stream;
1624
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001625 print "$stream\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001626
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001627 while (length($cur)) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001628 @av_paren_type = ('E') if ($#av_paren_type < 0);
Andy Whitcroftcf655042008-03-04 14:28:20 -08001629 print " <" . join('', @av_paren_type) .
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001630 "> <$type> <$av_pending>" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001631 if ($cur =~ /^(\s+)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001632 print "WS($1)\n" if ($dbg_values > 1);
1633 if ($1 =~ /\n/ && $av_preprocessor) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001634 $type = pop(@av_paren_type);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001635 $av_preprocessor = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001636 }
1637
Florian Micklerc023e4732011-01-12 16:59:58 -08001638 } elsif ($cur =~ /^(\(\s*$Type\s*)\)/ && $av_pending eq '_') {
Andy Whitcroft9446ef52010-10-26 14:23:13 -07001639 print "CAST($1)\n" if ($dbg_values > 1);
1640 push(@av_paren_type, $type);
Andy Whitcroftaddcdce2012-01-10 15:10:11 -08001641 $type = 'c';
Andy Whitcroft9446ef52010-10-26 14:23:13 -07001642
Andy Whitcrofte91b6e22010-10-26 14:23:11 -07001643 } elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\(|\s*$)/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001644 print "DECLARE($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001645 $type = 'T';
1646
Andy Whitcroft389a2fe2008-07-23 21:29:05 -07001647 } elsif ($cur =~ /^($Modifier)\s*/) {
1648 print "MODIFIER($1)\n" if ($dbg_values > 1);
1649 $type = 'T';
1650
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001651 } elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001652 print "DEFINE($1,$2)\n" if ($dbg_values > 1);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001653 $av_preprocessor = 1;
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001654 push(@av_paren_type, $type);
1655 if ($2 ne '') {
1656 $av_pending = 'N';
1657 }
1658 $type = 'E';
1659
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001660 } elsif ($cur =~ /^(\#\s*(?:undef\s*$Ident|include\b))/o) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001661 print "UNDEF($1)\n" if ($dbg_values > 1);
1662 $av_preprocessor = 1;
1663 push(@av_paren_type, $type);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001664
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001665 } elsif ($cur =~ /^(\#\s*(?:ifdef|ifndef|if))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001666 print "PRE_START($1)\n" if ($dbg_values > 1);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001667 $av_preprocessor = 1;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001668
1669 push(@av_paren_type, $type);
1670 push(@av_paren_type, $type);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001671 $type = 'E';
Andy Whitcroftcf655042008-03-04 14:28:20 -08001672
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001673 } elsif ($cur =~ /^(\#\s*(?:else|elif))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001674 print "PRE_RESTART($1)\n" if ($dbg_values > 1);
1675 $av_preprocessor = 1;
1676
1677 push(@av_paren_type, $av_paren_type[$#av_paren_type]);
1678
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001679 $type = 'E';
Andy Whitcroftcf655042008-03-04 14:28:20 -08001680
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001681 } elsif ($cur =~ /^(\#\s*(?:endif))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001682 print "PRE_END($1)\n" if ($dbg_values > 1);
1683
1684 $av_preprocessor = 1;
1685
1686 # Assume all arms of the conditional end as this
1687 # one does, and continue as if the #endif was not here.
1688 pop(@av_paren_type);
1689 push(@av_paren_type, $type);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001690 $type = 'E';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001691
1692 } elsif ($cur =~ /^(\\\n)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001693 print "PRECONT($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001694
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001695 } elsif ($cur =~ /^(__attribute__)\s*\(?/o) {
1696 print "ATTR($1)\n" if ($dbg_values > 1);
1697 $av_pending = $type;
1698 $type = 'N';
1699
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001700 } elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001701 print "SIZEOF($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001702 if (defined $2) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001703 $av_pending = 'V';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001704 }
1705 $type = 'N';
1706
Andy Whitcroft14b111c2008-10-15 22:02:16 -07001707 } elsif ($cur =~ /^(if|while|for)\b/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001708 print "COND($1)\n" if ($dbg_values > 1);
Andy Whitcroft14b111c2008-10-15 22:02:16 -07001709 $av_pending = 'E';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001710 $type = 'N';
1711
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001712 } elsif ($cur =~/^(case)/o) {
1713 print "CASE($1)\n" if ($dbg_values > 1);
1714 $av_pend_colon = 'C';
1715 $type = 'N';
1716
Andy Whitcroft14b111c2008-10-15 22:02:16 -07001717 } elsif ($cur =~/^(return|else|goto|typeof|__typeof__)\b/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001718 print "KEYWORD($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001719 $type = 'N';
1720
1721 } elsif ($cur =~ /^(\()/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001722 print "PAREN('$1')\n" if ($dbg_values > 1);
Andy Whitcroftcf655042008-03-04 14:28:20 -08001723 push(@av_paren_type, $av_pending);
1724 $av_pending = '_';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001725 $type = 'N';
1726
1727 } elsif ($cur =~ /^(\))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001728 my $new_type = pop(@av_paren_type);
1729 if ($new_type ne '_') {
1730 $type = $new_type;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001731 print "PAREN('$1') -> $type\n"
1732 if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001733 } else {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001734 print "PAREN('$1')\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001735 }
1736
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -07001737 } elsif ($cur =~ /^($Ident)\s*\(/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001738 print "FUNC($1)\n" if ($dbg_values > 1);
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -07001739 $type = 'V';
Andy Whitcroftcf655042008-03-04 14:28:20 -08001740 $av_pending = 'V';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001741
Andy Whitcroft8e761b02009-01-06 14:41:19 -08001742 } elsif ($cur =~ /^($Ident\s*):(?:\s*\d+\s*(,|=|;))?/) {
1743 if (defined $2 && $type eq 'C' || $type eq 'T') {
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001744 $av_pend_colon = 'B';
Andy Whitcroft8e761b02009-01-06 14:41:19 -08001745 } elsif ($type eq 'E') {
1746 $av_pend_colon = 'L';
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001747 }
1748 print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1);
1749 $type = 'V';
1750
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001751 } elsif ($cur =~ /^($Ident|$Constant)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001752 print "IDENT($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001753 $type = 'V';
1754
1755 } elsif ($cur =~ /^($Assignment)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001756 print "ASSIGN($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001757 $type = 'N';
1758
Andy Whitcroftcf655042008-03-04 14:28:20 -08001759 } elsif ($cur =~/^(;|{|})/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001760 print "END($1)\n" if ($dbg_values > 1);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001761 $type = 'E';
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001762 $av_pend_colon = 'O';
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001763
Andy Whitcroft8e761b02009-01-06 14:41:19 -08001764 } elsif ($cur =~/^(,)/) {
1765 print "COMMA($1)\n" if ($dbg_values > 1);
1766 $type = 'C';
1767
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001768 } elsif ($cur =~ /^(\?)/o) {
1769 print "QUESTION($1)\n" if ($dbg_values > 1);
1770 $type = 'N';
1771
1772 } elsif ($cur =~ /^(:)/o) {
1773 print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1);
1774
1775 substr($var, length($res), 1, $av_pend_colon);
1776 if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') {
1777 $type = 'E';
1778 } else {
1779 $type = 'N';
1780 }
1781 $av_pend_colon = 'O';
1782
Andy Whitcroft8e761b02009-01-06 14:41:19 -08001783 } elsif ($cur =~ /^(\[)/o) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001784 print "CLOSE($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001785 $type = 'N';
1786
Andy Whitcroft0d413862008-10-15 22:02:16 -07001787 } elsif ($cur =~ /^(-(?![->])|\+(?!\+)|\*|\&\&|\&)/o) {
Andy Whitcroft74048ed2008-07-23 21:29:10 -07001788 my $variant;
1789
1790 print "OPV($1)\n" if ($dbg_values > 1);
1791 if ($type eq 'V') {
1792 $variant = 'B';
1793 } else {
1794 $variant = 'U';
1795 }
1796
1797 substr($var, length($res), 1, $variant);
1798 $type = 'N';
1799
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001800 } elsif ($cur =~ /^($Operators)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001801 print "OP($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001802 if ($1 ne '++' && $1 ne '--') {
1803 $type = 'N';
1804 }
1805
1806 } elsif ($cur =~ /(^.)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001807 print "C($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001808 }
1809 if (defined $1) {
1810 $cur = substr($cur, length($1));
1811 $res .= $type x length($1);
1812 }
1813 }
1814
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001815 return ($res, $var);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001816}
1817
Andy Whitcroft8905a672007-11-28 16:21:06 -08001818sub possible {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001819 my ($possible, $line) = @_;
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001820 my $notPermitted = qr{(?:
Andy Whitcroft0776e592008-10-15 22:02:29 -07001821 ^(?:
1822 $Modifier|
1823 $Storage|
1824 $Type|
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001825 DEFINE_\S+
1826 )$|
1827 ^(?:
Andy Whitcroft0776e592008-10-15 22:02:29 -07001828 goto|
1829 return|
1830 case|
1831 else|
1832 asm|__asm__|
Andy Whitcroft89a88352012-01-10 15:10:00 -08001833 do|
1834 \#|
1835 \#\#|
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001836 )(?:\s|$)|
Andy Whitcroft0776e592008-10-15 22:02:29 -07001837 ^(?:typedef|struct|enum)\b
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001838 )}x;
1839 warn "CHECK<$possible> ($line)\n" if ($dbg_possible > 2);
1840 if ($possible !~ $notPermitted) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001841 # Check for modifiers.
1842 $possible =~ s/\s*$Storage\s*//g;
1843 $possible =~ s/\s*$Sparse\s*//g;
1844 if ($possible =~ /^\s*$/) {
1845
1846 } elsif ($possible =~ /\s/) {
1847 $possible =~ s/\s*$Type\s*//g;
Andy Whitcroftd2506582008-07-23 21:29:09 -07001848 for my $modifier (split(' ', $possible)) {
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001849 if ($modifier !~ $notPermitted) {
1850 warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
Alex Dowad485ff232015-06-25 15:02:52 -07001851 push(@modifierListFile, $modifier);
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001852 }
Andy Whitcroftd2506582008-07-23 21:29:09 -07001853 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001854
1855 } else {
1856 warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
Alex Dowad485ff232015-06-25 15:02:52 -07001857 push(@typeListFile, $possible);
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001858 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001859 build_types();
Andy Whitcroft0776e592008-10-15 22:02:29 -07001860 } else {
1861 warn "NOTPOSS: $possible ($line)\n" if ($dbg_possible > 1);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001862 }
1863}
1864
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001865my $prefix = '';
1866
Joe Perches000d1cc12011-07-25 17:13:25 -07001867sub show_type {
Joe Perchescbec18a2014-04-03 14:49:19 -07001868 my ($type) = @_;
Joe Perches91bfe482013-09-11 14:23:59 -07001869
Alexey Dobriyan522b8372017-02-27 14:30:05 -08001870 $type =~ tr/[a-z]/[A-Z]/;
1871
Joe Perchescbec18a2014-04-03 14:49:19 -07001872 return defined $use_type{$type} if (scalar keys %use_type > 0);
1873
1874 return !defined $ignore_type{$type};
Joe Perches000d1cc12011-07-25 17:13:25 -07001875}
1876
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001877sub report {
Joe Perchescbec18a2014-04-03 14:49:19 -07001878 my ($level, $type, $msg) = @_;
1879
1880 if (!show_type($type) ||
1881 (defined $tst_only && $msg !~ /\Q$tst_only\E/)) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001882 return 0;
1883 }
Joe Perches57230292015-06-25 15:03:03 -07001884 my $output = '';
1885 if (-t STDOUT && $color) {
1886 if ($level eq 'ERROR') {
1887 $output .= RED;
1888 } elsif ($level eq 'WARNING') {
1889 $output .= YELLOW;
1890 } else {
1891 $output .= GREEN;
1892 }
Joe Perches000d1cc12011-07-25 17:13:25 -07001893 }
Joe Perches57230292015-06-25 15:03:03 -07001894 $output .= $prefix . $level . ':';
1895 if ($show_types) {
1896 $output .= BLUE if (-t STDOUT && $color);
1897 $output .= "$type:";
1898 }
1899 $output .= RESET if (-t STDOUT && $color);
1900 $output .= ' ' . $msg . "\n";
Joe Perches34d88152015-06-25 15:03:05 -07001901
1902 if ($showfile) {
1903 my @lines = split("\n", $output, -1);
1904 splice(@lines, 1, 1);
1905 $output = join("\n", @lines);
1906 }
Joe Perches57230292015-06-25 15:03:03 -07001907 $output = (split('\n', $output))[0] . "\n" if ($terse);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001908
Joe Perches57230292015-06-25 15:03:03 -07001909 push(our @report, $output);
Andy Whitcroft773647a2008-03-28 14:15:58 -07001910
1911 return 1;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001912}
Joe Perchescbec18a2014-04-03 14:49:19 -07001913
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001914sub report_dump {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001915 our @report;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001916}
Joe Perches000d1cc12011-07-25 17:13:25 -07001917
Joe Perchesd752fcc2014-08-06 16:11:05 -07001918sub fixup_current_range {
1919 my ($lineRef, $offset, $length) = @_;
1920
1921 if ($$lineRef =~ /^\@\@ -\d+,\d+ \+(\d+),(\d+) \@\@/) {
1922 my $o = $1;
1923 my $l = $2;
1924 my $no = $o + $offset;
1925 my $nl = $l + $length;
1926 $$lineRef =~ s/\+$o,$l \@\@/\+$no,$nl \@\@/;
1927 }
1928}
1929
1930sub fix_inserted_deleted_lines {
1931 my ($linesRef, $insertedRef, $deletedRef) = @_;
1932
1933 my $range_last_linenr = 0;
1934 my $delta_offset = 0;
1935
1936 my $old_linenr = 0;
1937 my $new_linenr = 0;
1938
1939 my $next_insert = 0;
1940 my $next_delete = 0;
1941
1942 my @lines = ();
1943
1944 my $inserted = @{$insertedRef}[$next_insert++];
1945 my $deleted = @{$deletedRef}[$next_delete++];
1946
1947 foreach my $old_line (@{$linesRef}) {
1948 my $save_line = 1;
1949 my $line = $old_line; #don't modify the array
Joe Perches323b2672015-04-16 12:44:50 -07001950 if ($line =~ /^(?:\+\+\+|\-\-\-)\s+\S+/) { #new filename
Joe Perchesd752fcc2014-08-06 16:11:05 -07001951 $delta_offset = 0;
1952 } elsif ($line =~ /^\@\@ -\d+,\d+ \+\d+,\d+ \@\@/) { #new hunk
1953 $range_last_linenr = $new_linenr;
1954 fixup_current_range(\$line, $delta_offset, 0);
1955 }
1956
1957 while (defined($deleted) && ${$deleted}{'LINENR'} == $old_linenr) {
1958 $deleted = @{$deletedRef}[$next_delete++];
1959 $save_line = 0;
1960 fixup_current_range(\$lines[$range_last_linenr], $delta_offset--, -1);
1961 }
1962
1963 while (defined($inserted) && ${$inserted}{'LINENR'} == $old_linenr) {
1964 push(@lines, ${$inserted}{'LINE'});
1965 $inserted = @{$insertedRef}[$next_insert++];
1966 $new_linenr++;
1967 fixup_current_range(\$lines[$range_last_linenr], $delta_offset++, 1);
1968 }
1969
1970 if ($save_line) {
1971 push(@lines, $line);
1972 $new_linenr++;
1973 }
1974
1975 $old_linenr++;
1976 }
1977
1978 return @lines;
1979}
1980
Joe Perchesf2d7e4d2014-08-06 16:11:07 -07001981sub fix_insert_line {
1982 my ($linenr, $line) = @_;
1983
1984 my $inserted = {
1985 LINENR => $linenr,
1986 LINE => $line,
1987 };
1988 push(@fixed_inserted, $inserted);
1989}
1990
1991sub fix_delete_line {
1992 my ($linenr, $line) = @_;
1993
1994 my $deleted = {
1995 LINENR => $linenr,
1996 LINE => $line,
1997 };
1998
1999 push(@fixed_deleted, $deleted);
2000}
2001
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002002sub ERROR {
Joe Perchescbec18a2014-04-03 14:49:19 -07002003 my ($type, $msg) = @_;
2004
2005 if (report("ERROR", $type, $msg)) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002006 our $clean = 0;
2007 our $cnt_error++;
Joe Perches3705ce52013-07-03 15:05:31 -07002008 return 1;
Andy Whitcroft773647a2008-03-28 14:15:58 -07002009 }
Joe Perches3705ce52013-07-03 15:05:31 -07002010 return 0;
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002011}
2012sub WARN {
Joe Perchescbec18a2014-04-03 14:49:19 -07002013 my ($type, $msg) = @_;
2014
2015 if (report("WARNING", $type, $msg)) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002016 our $clean = 0;
2017 our $cnt_warn++;
Joe Perches3705ce52013-07-03 15:05:31 -07002018 return 1;
Andy Whitcroft773647a2008-03-28 14:15:58 -07002019 }
Joe Perches3705ce52013-07-03 15:05:31 -07002020 return 0;
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002021}
2022sub CHK {
Joe Perchescbec18a2014-04-03 14:49:19 -07002023 my ($type, $msg) = @_;
2024
2025 if ($check && report("CHECK", $type, $msg)) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002026 our $clean = 0;
2027 our $cnt_chk++;
Joe Perches3705ce52013-07-03 15:05:31 -07002028 return 1;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002029 }
Joe Perches3705ce52013-07-03 15:05:31 -07002030 return 0;
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002031}
2032
Andy Whitcroft6ecd9672008-10-15 22:02:21 -07002033sub check_absolute_file {
2034 my ($absolute, $herecurr) = @_;
2035 my $file = $absolute;
2036
2037 ##print "absolute<$absolute>\n";
2038
2039 # See if any suffix of this path is a path within the tree.
2040 while ($file =~ s@^[^/]*/@@) {
2041 if (-f "$root/$file") {
2042 ##print "file<$file>\n";
2043 last;
2044 }
2045 }
2046 if (! -f _) {
2047 return 0;
2048 }
2049
2050 # It is, so see if the prefix is acceptable.
2051 my $prefix = $absolute;
2052 substr($prefix, -length($file)) = '';
2053
2054 ##print "prefix<$prefix>\n";
2055 if ($prefix ne ".../") {
Joe Perches000d1cc12011-07-25 17:13:25 -07002056 WARN("USE_RELATIVE_PATH",
2057 "use relative pathname instead of absolute in changelog text\n" . $herecurr);
Andy Whitcroft6ecd9672008-10-15 22:02:21 -07002058 }
2059}
2060
Joe Perches3705ce52013-07-03 15:05:31 -07002061sub trim {
2062 my ($string) = @_;
2063
Joe Perchesb34c6482013-09-11 14:24:01 -07002064 $string =~ s/^\s+|\s+$//g;
2065
2066 return $string;
2067}
2068
2069sub ltrim {
2070 my ($string) = @_;
2071
2072 $string =~ s/^\s+//;
2073
2074 return $string;
2075}
2076
2077sub rtrim {
2078 my ($string) = @_;
2079
2080 $string =~ s/\s+$//;
Joe Perches3705ce52013-07-03 15:05:31 -07002081
2082 return $string;
2083}
2084
Joe Perches52ea8502013-11-12 15:10:09 -08002085sub string_find_replace {
2086 my ($string, $find, $replace) = @_;
2087
2088 $string =~ s/$find/$replace/g;
2089
2090 return $string;
2091}
2092
Joe Perches3705ce52013-07-03 15:05:31 -07002093sub tabify {
2094 my ($leading) = @_;
2095
2096 my $source_indent = 8;
2097 my $max_spaces_before_tab = $source_indent - 1;
2098 my $spaces_to_tab = " " x $source_indent;
2099
2100 #convert leading spaces to tabs
2101 1 while $leading =~ s@^([\t]*)$spaces_to_tab@$1\t@g;
2102 #Remove spaces before a tab
2103 1 while $leading =~ s@^([\t]*)( {1,$max_spaces_before_tab})\t@$1\t@g;
2104
2105 return "$leading";
2106}
2107
Joe Perchesd1fe9c02012-03-23 15:02:16 -07002108sub pos_last_openparen {
2109 my ($line) = @_;
2110
2111 my $pos = 0;
2112
2113 my $opens = $line =~ tr/\(/\(/;
2114 my $closes = $line =~ tr/\)/\)/;
2115
2116 my $last_openparen = 0;
2117
2118 if (($opens == 0) || ($closes >= $opens)) {
2119 return -1;
2120 }
2121
2122 my $len = length($line);
2123
2124 for ($pos = 0; $pos < $len; $pos++) {
2125 my $string = substr($line, $pos);
2126 if ($string =~ /^($FuncArg|$balanced_parens)/) {
2127 $pos += length($1) - 1;
2128 } elsif (substr($line, $pos, 1) eq '(') {
2129 $last_openparen = $pos;
2130 } elsif (index($string, '(') == -1) {
2131 last;
2132 }
2133 }
2134
Joe Perches91cb5192014-04-03 14:49:32 -07002135 return length(expand_tabs(substr($line, 0, $last_openparen))) + 1;
Joe Perchesd1fe9c02012-03-23 15:02:16 -07002136}
2137
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002138sub process {
2139 my $filename = shift;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002140
2141 my $linenr=0;
2142 my $prevline="";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002143 my $prevrawline="";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002144 my $stashline="";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002145 my $stashrawline="";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002146
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002147 my $length;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002148 my $indent;
2149 my $previndent=0;
2150 my $stashindent=0;
2151
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002152 our $clean = 1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002153 my $signoff = 0;
2154 my $is_patch = 0;
Joe Perches29ee1b02014-08-06 16:10:35 -07002155 my $in_header_lines = $file ? 0 : 1;
Joe Perches15662b32011-10-31 17:13:12 -07002156 my $in_commit_log = 0; #Scanning lines before patch
Allen Hubbeed43c4e2016-08-02 14:04:45 -07002157 my $has_commit_log = 0; #Encountered lines before patch
Joe Perches77cb8542017-02-24 15:01:28 -08002158 my $commit_log_possible_stack_dump = 0;
Joe Perches2a076f42015-04-16 12:44:28 -07002159 my $commit_log_long_line = 0;
Joe Perchese518e9a2015-06-25 15:03:27 -07002160 my $commit_log_has_diff = 0;
Joe Perches13f19372014-08-06 16:10:59 -07002161 my $reported_maintainer_file = 0;
Pasi Savanainenfa64205d2012-10-04 17:13:29 -07002162 my $non_utf8_charset = 0;
2163
Joe Perches365dd4e2014-08-06 16:10:42 -07002164 my $last_blank_line = 0;
Joe Perches5e4f6ba2014-12-10 15:52:05 -08002165 my $last_coalesced_string_linenr = -1;
Joe Perches365dd4e2014-08-06 16:10:42 -07002166
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002167 our @report = ();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002168 our $cnt_lines = 0;
2169 our $cnt_error = 0;
2170 our $cnt_warn = 0;
2171 our $cnt_chk = 0;
2172
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002173 # Trace the real file/line as we go.
2174 my $realfile = '';
2175 my $realline = 0;
2176 my $realcnt = 0;
2177 my $here = '';
Joe Perches77cb8542017-02-24 15:01:28 -08002178 my $context_function; #undef'd unless there's a known function
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002179 my $in_comment = 0;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002180 my $comment_edge = 0;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002181 my $first_line = 0;
Wolfram Sang1e855722009-01-06 14:41:24 -08002182 my $p1_prefix = '';
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002183
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002184 my $prev_values = 'E';
2185
2186 # suppression flags
Andy Whitcroft773647a2008-03-28 14:15:58 -07002187 my %suppress_ifbraces;
Andy Whitcroft170d3a22008-10-15 22:02:30 -07002188 my %suppress_whiletrailers;
Andy Whitcroft2b474a12009-10-26 16:50:16 -07002189 my %suppress_export;
Andy Whitcroft3e469cd2012-01-10 15:10:01 -08002190 my $suppress_statement = 0;
Andy Whitcroft653d4872007-06-23 17:16:34 -07002191
Joe Perches7e51f192013-09-11 14:23:57 -07002192 my %signatures = ();
Joe Perches323c1262012-12-17 16:02:07 -08002193
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002194 # Pre-scan the patch sanitizing the lines.
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002195 # Pre-scan the patch looking for any __setup documentation.
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002196 #
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002197 my @setup_docs = ();
2198 my $setup_docs = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07002199
Joe Perchesd8b07712013-11-12 15:10:06 -08002200 my $camelcase_file_seeded = 0;
2201
Andy Whitcroft773647a2008-03-28 14:15:58 -07002202 sanitise_line_reset();
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002203 my $line;
2204 foreach my $rawline (@rawlines) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002205 $linenr++;
2206 $line = $rawline;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002207
Joe Perches3705ce52013-07-03 15:05:31 -07002208 push(@fixed, $rawline) if ($fix);
2209
Andy Whitcroft773647a2008-03-28 14:15:58 -07002210 if ($rawline=~/^\+\+\+\s+(\S+)/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002211 $setup_docs = 0;
Mauro Carvalho Chehab8c27ceff32016-10-18 10:12:27 -02002212 if ($1 =~ m@Documentation/admin-guide/kernel-parameters.rst$@) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002213 $setup_docs = 1;
2214 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002215 #next;
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002216 }
Joe Perches74fd4f32017-05-08 15:56:02 -07002217 if ($rawline =~ /^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002218 $realline=$1-1;
2219 if (defined $2) {
2220 $realcnt=$3+1;
2221 } else {
2222 $realcnt=1+1;
2223 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002224 $in_comment = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07002225
2226 # Guestimate if this is a continuing comment. Run
2227 # the context looking for a comment "edge". If this
2228 # edge is a close comment then we must be in a comment
2229 # at context start.
2230 my $edge;
Andy Whitcroft01fa9142008-10-15 22:02:19 -07002231 my $cnt = $realcnt;
2232 for (my $ln = $linenr + 1; $cnt > 0; $ln++) {
2233 next if (defined $rawlines[$ln - 1] &&
2234 $rawlines[$ln - 1] =~ /^-/);
2235 $cnt--;
2236 #print "RAW<$rawlines[$ln - 1]>\n";
Andy Whitcroft721c1cb2009-01-06 14:41:16 -08002237 last if (!defined $rawlines[$ln - 1]);
Andy Whitcroftfae17da2009-01-06 14:41:20 -08002238 if ($rawlines[$ln - 1] =~ m@(/\*|\*/)@ &&
2239 $rawlines[$ln - 1] !~ m@"[^"]*(?:/\*|\*/)[^"]*"@) {
2240 ($edge) = $1;
2241 last;
2242 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002243 }
2244 if (defined $edge && $edge eq '*/') {
2245 $in_comment = 1;
2246 }
2247
2248 # Guestimate if this is a continuing comment. If this
2249 # is the start of a diff block and this line starts
2250 # ' *' then it is very likely a comment.
2251 if (!defined $edge &&
Andy Whitcroft83242e02009-01-06 14:41:17 -08002252 $rawlines[$linenr] =~ m@^.\s*(?:\*\*+| \*)(?:\s|$)@)
Andy Whitcroft773647a2008-03-28 14:15:58 -07002253 {
2254 $in_comment = 1;
2255 }
2256
2257 ##print "COMMENT:$in_comment edge<$edge> $rawline\n";
2258 sanitise_line_reset($in_comment);
2259
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002260 } elsif ($realcnt && $rawline =~ /^(?:\+| |$)/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002261 # Standardise the strings and chars within the input to
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002262 # simplify matching -- only bother with positive lines.
Andy Whitcroft773647a2008-03-28 14:15:58 -07002263 $line = sanitise_line($rawline);
2264 }
2265 push(@lines, $line);
2266
2267 if ($realcnt > 1) {
2268 $realcnt-- if ($line =~ /^(?:\+| |$)/);
2269 } else {
2270 $realcnt = 0;
2271 }
2272
2273 #print "==>$rawline\n";
2274 #print "-->$line\n";
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002275
2276 if ($setup_docs && $line =~ /^\+/) {
2277 push(@setup_docs, $line);
2278 }
2279 }
2280
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002281 $prefix = '';
2282
Andy Whitcroft773647a2008-03-28 14:15:58 -07002283 $realcnt = 0;
2284 $linenr = 0;
Joe Perches194f66f2014-08-06 16:11:03 -07002285 $fixlinenr = -1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002286 foreach my $line (@lines) {
2287 $linenr++;
Joe Perches194f66f2014-08-06 16:11:03 -07002288 $fixlinenr++;
Joe Perches1b5539b2013-09-11 14:24:03 -07002289 my $sline = $line; #copy of $line
2290 $sline =~ s/$;/ /g; #with comments as spaces
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002291
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002292 my $rawline = $rawlines[$linenr - 1];
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002293
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002294#extract the line range in the file after the patch is applied
Joe Perchese518e9a2015-06-25 15:03:27 -07002295 if (!$in_commit_log &&
Joe Perches74fd4f32017-05-08 15:56:02 -07002296 $line =~ /^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@(.*)/) {
2297 my $context = $4;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002298 $is_patch = 1;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002299 $first_line = $linenr + 1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002300 $realline=$1-1;
2301 if (defined $2) {
2302 $realcnt=$3+1;
2303 } else {
2304 $realcnt=1+1;
2305 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002306 annotate_reset();
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002307 $prev_values = 'E';
2308
Andy Whitcroft773647a2008-03-28 14:15:58 -07002309 %suppress_ifbraces = ();
Andy Whitcroft170d3a22008-10-15 22:02:30 -07002310 %suppress_whiletrailers = ();
Andy Whitcroft2b474a12009-10-26 16:50:16 -07002311 %suppress_export = ();
Andy Whitcroft3e469cd2012-01-10 15:10:01 -08002312 $suppress_statement = 0;
Joe Perches74fd4f32017-05-08 15:56:02 -07002313 if ($context =~ /\b(\w+)\s*\(/) {
2314 $context_function = $1;
2315 } else {
2316 undef $context_function;
2317 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002318 next;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002319
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002320# track the line number as we move through the hunk, note that
2321# new versions of GNU diff omit the leading space on completely
2322# blank context lines so we need to count that too.
Andy Whitcroft773647a2008-03-28 14:15:58 -07002323 } elsif ($line =~ /^( |\+|$)/) {
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002324 $realline++;
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002325 $realcnt-- if ($realcnt != 0);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002326
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002327 # Measure the line length and indent.
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002328 ($length, $indent) = line_stats($rawline);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002329
2330 # Track the previous line.
2331 ($prevline, $stashline) = ($stashline, $line);
2332 ($previndent, $stashindent) = ($stashindent, $indent);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002333 ($prevrawline, $stashrawline) = ($stashrawline, $rawline);
2334
Andy Whitcroft773647a2008-03-28 14:15:58 -07002335 #warn "line<$line>\n";
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002336
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002337 } elsif ($realcnt == 1) {
2338 $realcnt--;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002339 }
2340
Andy Whitcroftcc77cdc2009-10-26 16:50:13 -07002341 my $hunk_line = ($realcnt != 0);
2342
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002343 $here = "#$linenr: " if (!$file);
2344 $here = "#$realline: " if ($file);
Andy Whitcroft773647a2008-03-28 14:15:58 -07002345
Joe Perches2ac73b42014-06-04 16:12:05 -07002346 my $found_file = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07002347 # extract the filename as it passes
Rabin Vincent3bf9a002010-10-26 14:23:16 -07002348 if ($line =~ /^diff --git.*?(\S+)$/) {
2349 $realfile = $1;
Joe Perches2b7ab452013-11-12 15:10:14 -08002350 $realfile =~ s@^([^/]*)/@@ if (!$file);
Joe Perches270c49a2012-01-10 15:09:50 -08002351 $in_commit_log = 0;
Joe Perches2ac73b42014-06-04 16:12:05 -07002352 $found_file = 1;
Rabin Vincent3bf9a002010-10-26 14:23:16 -07002353 } elsif ($line =~ /^\+\+\+\s+(\S+)/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002354 $realfile = $1;
Joe Perches2b7ab452013-11-12 15:10:14 -08002355 $realfile =~ s@^([^/]*)/@@ if (!$file);
Joe Perches270c49a2012-01-10 15:09:50 -08002356 $in_commit_log = 0;
Wolfram Sang1e855722009-01-06 14:41:24 -08002357
2358 $p1_prefix = $1;
Andy Whitcrofte2f7aa42009-02-27 14:03:06 -08002359 if (!$file && $tree && $p1_prefix ne '' &&
2360 -e "$root/$p1_prefix") {
Joe Perches000d1cc12011-07-25 17:13:25 -07002361 WARN("PATCH_PREFIX",
2362 "patch prefix '$p1_prefix' exists, appears to be a -p0 patch\n");
Wolfram Sang1e855722009-01-06 14:41:24 -08002363 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002364
Andy Whitcroftc1ab3322008-10-15 22:02:20 -07002365 if ($realfile =~ m@^include/asm/@) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002366 ERROR("MODIFIED_INCLUDE_ASM",
2367 "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 -07002368 }
Joe Perches2ac73b42014-06-04 16:12:05 -07002369 $found_file = 1;
2370 }
2371
Joe Perches34d88152015-06-25 15:03:05 -07002372#make up the handle for any error we report on this line
2373 if ($showfile) {
2374 $prefix = "$realfile:$realline: "
2375 } elsif ($emacs) {
Joe Perches7d3a9f62015-09-09 15:37:39 -07002376 if ($file) {
2377 $prefix = "$filename:$realline: ";
2378 } else {
2379 $prefix = "$filename:$linenr: ";
2380 }
Joe Perches34d88152015-06-25 15:03:05 -07002381 }
2382
Joe Perches2ac73b42014-06-04 16:12:05 -07002383 if ($found_file) {
Joe Perches85b0ee12016-10-11 13:51:44 -07002384 if (is_maintained_obsolete($realfile)) {
2385 WARN("OBSOLETE",
2386 "$realfile is marked as 'obsolete' in the MAINTAINERS hierarchy. No unnecessary modifications please.\n");
2387 }
Joe Perches7bd7e482015-09-09 15:37:44 -07002388 if ($realfile =~ m@^(?:drivers/net/|net/|drivers/staging/)@) {
Joe Perches2ac73b42014-06-04 16:12:05 -07002389 $check = 1;
2390 } else {
2391 $check = $check_orig;
2392 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002393 next;
2394 }
2395
Randy Dunlap389834b2007-06-08 13:47:03 -07002396 $here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002397
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002398 my $hereline = "$here\n$rawline\n";
2399 my $herecurr = "$here\n$rawline\n";
2400 my $hereprev = "$here\n$prevrawline\n$rawline\n";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002401
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002402 $cnt_lines++ if ($realcnt != 0);
2403
Joe Perchese518e9a2015-06-25 15:03:27 -07002404# Check if the commit log has what seems like a diff which can confuse patch
2405 if ($in_commit_log && !$commit_log_has_diff &&
2406 (($line =~ m@^\s+diff\b.*a/[\w/]+@ &&
2407 $line =~ m@^\s+diff\b.*a/([\w/]+)\s+b/$1\b@) ||
2408 $line =~ m@^\s*(?:\-\-\-\s+a/|\+\+\+\s+b/)@ ||
2409 $line =~ m/^\s*\@\@ \-\d+,\d+ \+\d+,\d+ \@\@/)) {
2410 ERROR("DIFF_IN_COMMIT_MSG",
2411 "Avoid using diff content in the commit message - patch(1) might not work\n" . $herecurr);
2412 $commit_log_has_diff = 1;
2413 }
2414
Rabin Vincent3bf9a002010-10-26 14:23:16 -07002415# Check for incorrect file permissions
2416 if ($line =~ /^new (file )?mode.*[7531]\d{0,2}$/) {
2417 my $permhere = $here . "FILE: $realfile\n";
Joe Perches04db4d22013-04-29 16:18:14 -07002418 if ($realfile !~ m@scripts/@ &&
2419 $realfile !~ /\.(py|pl|awk|sh)$/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002420 ERROR("EXECUTE_PERMISSIONS",
2421 "do not set execute permissions for source files\n" . $permhere);
Rabin Vincent3bf9a002010-10-26 14:23:16 -07002422 }
2423 }
2424
Joe Perches20112472011-07-25 17:13:23 -07002425# Check the patch for a signoff:
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002426 if ($line =~ /^\s*signed-off-by:/i) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002427 $signoff++;
Joe Perches15662b32011-10-31 17:13:12 -07002428 $in_commit_log = 0;
Joe Perches20112472011-07-25 17:13:23 -07002429 }
2430
Joe Perchese0d975b2014-12-10 15:51:49 -08002431# Check if MAINTAINERS is being updated. If so, there's probably no need to
2432# emit the "does MAINTAINERS need updating?" message on file add/move/delete
2433 if ($line =~ /^\s*MAINTAINERS\s*\|/) {
2434 $reported_maintainer_file = 1;
2435 }
2436
Joe Perches20112472011-07-25 17:13:23 -07002437# Check signature styles
Joe Perches270c49a2012-01-10 15:09:50 -08002438 if (!$in_header_lines &&
Joe Perchesce0338df3c2012-07-30 14:41:18 -07002439 $line =~ /^(\s*)([a-z0-9_-]+by:|$signature_tags)(\s*)(.*)/i) {
Joe Perches20112472011-07-25 17:13:23 -07002440 my $space_before = $1;
2441 my $sign_off = $2;
2442 my $space_after = $3;
2443 my $email = $4;
2444 my $ucfirst_sign_off = ucfirst(lc($sign_off));
2445
Joe Perchesce0338df3c2012-07-30 14:41:18 -07002446 if ($sign_off !~ /$signature_tags/) {
2447 WARN("BAD_SIGN_OFF",
2448 "Non-standard signature: $sign_off\n" . $herecurr);
2449 }
Joe Perches20112472011-07-25 17:13:23 -07002450 if (defined $space_before && $space_before ne "") {
Joe Perches3705ce52013-07-03 15:05:31 -07002451 if (WARN("BAD_SIGN_OFF",
2452 "Do not use whitespace before $ucfirst_sign_off\n" . $herecurr) &&
2453 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07002454 $fixed[$fixlinenr] =
Joe Perches3705ce52013-07-03 15:05:31 -07002455 "$ucfirst_sign_off $email";
2456 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002457 }
Joe Perches20112472011-07-25 17:13:23 -07002458 if ($sign_off =~ /-by:$/i && $sign_off ne $ucfirst_sign_off) {
Joe Perches3705ce52013-07-03 15:05:31 -07002459 if (WARN("BAD_SIGN_OFF",
2460 "'$ucfirst_sign_off' is the preferred signature form\n" . $herecurr) &&
2461 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07002462 $fixed[$fixlinenr] =
Joe Perches3705ce52013-07-03 15:05:31 -07002463 "$ucfirst_sign_off $email";
2464 }
2465
Joe Perches20112472011-07-25 17:13:23 -07002466 }
2467 if (!defined $space_after || $space_after ne " ") {
Joe Perches3705ce52013-07-03 15:05:31 -07002468 if (WARN("BAD_SIGN_OFF",
2469 "Use a single space after $ucfirst_sign_off\n" . $herecurr) &&
2470 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07002471 $fixed[$fixlinenr] =
Joe Perches3705ce52013-07-03 15:05:31 -07002472 "$ucfirst_sign_off $email";
2473 }
Joe Perches20112472011-07-25 17:13:23 -07002474 }
2475
2476 my ($email_name, $email_address, $comment) = parse_email($email);
2477 my $suggested_email = format_email(($email_name, $email_address));
2478 if ($suggested_email eq "") {
Joe Perches000d1cc12011-07-25 17:13:25 -07002479 ERROR("BAD_SIGN_OFF",
2480 "Unrecognized email address: '$email'\n" . $herecurr);
Joe Perches20112472011-07-25 17:13:23 -07002481 } else {
2482 my $dequoted = $suggested_email;
2483 $dequoted =~ s/^"//;
2484 $dequoted =~ s/" </ </;
2485 # Don't force email to have quotes
2486 # Allow just an angle bracketed address
2487 if ("$dequoted$comment" ne $email &&
2488 "<$email_address>$comment" ne $email &&
2489 "$suggested_email$comment" ne $email) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002490 WARN("BAD_SIGN_OFF",
2491 "email address '$email' might be better as '$suggested_email$comment'\n" . $herecurr);
Joe Perches20112472011-07-25 17:13:23 -07002492 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002493 }
Joe Perches7e51f192013-09-11 14:23:57 -07002494
2495# Check for duplicate signatures
2496 my $sig_nospace = $line;
2497 $sig_nospace =~ s/\s//g;
2498 $sig_nospace = lc($sig_nospace);
2499 if (defined $signatures{$sig_nospace}) {
2500 WARN("BAD_SIGN_OFF",
2501 "Duplicate signature\n" . $herecurr);
2502 } else {
2503 $signatures{$sig_nospace} = 1;
2504 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002505 }
2506
Joe Perchesa2fe16b2015-02-13 14:39:02 -08002507# Check email subject for common tools that don't need to be mentioned
2508 if ($in_header_lines &&
2509 $line =~ /^Subject:.*\b(?:checkpatch|sparse|smatch)\b[^:]/i) {
2510 WARN("EMAIL_SUBJECT",
2511 "A patch subject line should describe the change not the tool that found it\n" . $herecurr);
2512 }
2513
Joe Perches9b3189e2014-06-04 16:12:10 -07002514# Check for old stable address
2515 if ($line =~ /^\s*cc:\s*.*<?\bstable\@kernel\.org\b>?.*$/i) {
2516 ERROR("STABLE_ADDRESS",
2517 "The 'stable' address should be 'stable\@vger.kernel.org'\n" . $herecurr);
2518 }
2519
Christopher Covington7ebd05e2014-04-03 14:49:31 -07002520# Check for unwanted Gerrit info
2521 if ($in_commit_log && $line =~ /^\s*change-id:/i) {
2522 ERROR("GERRIT_CHANGE_ID",
2523 "Remove Gerrit Change-Id's before submitting upstream.\n" . $herecurr);
2524 }
2525
Joe Perches369c8dd2015-11-06 16:31:34 -08002526# Check if the commit log is in a possible stack dump
2527 if ($in_commit_log && !$commit_log_possible_stack_dump &&
2528 ($line =~ /^\s*(?:WARNING:|BUG:)/ ||
2529 $line =~ /^\s*\[\s*\d+\.\d{6,6}\s*\]/ ||
2530 # timestamp
2531 $line =~ /^\s*\[\<[0-9a-fA-F]{8,}\>\]/)) {
2532 # stack dump address
2533 $commit_log_possible_stack_dump = 1;
2534 }
2535
Joe Perches2a076f42015-04-16 12:44:28 -07002536# Check for line lengths > 75 in commit log, warn once
2537 if ($in_commit_log && !$commit_log_long_line &&
Joe Perches369c8dd2015-11-06 16:31:34 -08002538 length($line) > 75 &&
2539 !($line =~ /^\s*[a-zA-Z0-9_\/\.]+\s+\|\s+\d+/ ||
2540 # file delta changes
2541 $line =~ /^\s*(?:[\w\.\-]+\/)++[\w\.\-]+:/ ||
2542 # filename then :
2543 $line =~ /^\s*(?:Fixes:|Link:)/i ||
2544 # A Fixes: or Link: line
2545 $commit_log_possible_stack_dump)) {
Joe Perches2a076f42015-04-16 12:44:28 -07002546 WARN("COMMIT_LOG_LONG_LINE",
2547 "Possible unwrapped commit description (prefer a maximum 75 chars per line)\n" . $herecurr);
2548 $commit_log_long_line = 1;
2549 }
2550
Joe Perchesbf4daf12015-09-09 15:37:50 -07002551# Reset possible stack dump if a blank line is found
Joe Perches369c8dd2015-11-06 16:31:34 -08002552 if ($in_commit_log && $commit_log_possible_stack_dump &&
2553 $line =~ /^\s*$/) {
2554 $commit_log_possible_stack_dump = 0;
2555 }
Joe Perchesbf4daf12015-09-09 15:37:50 -07002556
Joe Perches0d7835f2015-02-13 14:38:35 -08002557# Check for git id commit length and improperly formed commit descriptions
Joe Perches369c8dd2015-11-06 16:31:34 -08002558 if ($in_commit_log && !$commit_log_possible_stack_dump &&
Joe Perchesaab38f52016-08-02 14:04:36 -07002559 $line !~ /^\s*(?:Link|Patchwork|http|https|BugLink):/i &&
Wei Wange882dbf2017-05-08 15:55:54 -07002560 $line !~ /^This reverts commit [0-9a-f]{7,40}/ &&
Joe Perchesfe043ea2015-09-09 15:37:25 -07002561 ($line =~ /\bcommit\s+[0-9a-f]{5,}\b/i ||
Joe Perchesaab38f52016-08-02 14:04:36 -07002562 ($line =~ /(?:\s|^)[0-9a-f]{12,40}(?:[\s"'\(\[]|$)/i &&
Joe Perches369c8dd2015-11-06 16:31:34 -08002563 $line !~ /[\<\[][0-9a-f]{12,40}[\>\]]/i &&
2564 $line !~ /\bfixes:\s*[0-9a-f]{12,40}/i))) {
Joe Perchesfe043ea2015-09-09 15:37:25 -07002565 my $init_char = "c";
2566 my $orig_commit = "";
Joe Perches0d7835f2015-02-13 14:38:35 -08002567 my $short = 1;
2568 my $long = 0;
2569 my $case = 1;
2570 my $space = 1;
2571 my $hasdesc = 0;
Joe Perches19c146a2015-02-13 14:39:00 -08002572 my $hasparens = 0;
Joe Perches0d7835f2015-02-13 14:38:35 -08002573 my $id = '0123456789ab';
2574 my $orig_desc = "commit description";
2575 my $description = "";
2576
Joe Perchesfe043ea2015-09-09 15:37:25 -07002577 if ($line =~ /\b(c)ommit\s+([0-9a-f]{5,})\b/i) {
2578 $init_char = $1;
2579 $orig_commit = lc($2);
2580 } elsif ($line =~ /\b([0-9a-f]{12,40})\b/i) {
2581 $orig_commit = lc($1);
2582 }
2583
Joe Perches0d7835f2015-02-13 14:38:35 -08002584 $short = 0 if ($line =~ /\bcommit\s+[0-9a-f]{12,40}/i);
2585 $long = 1 if ($line =~ /\bcommit\s+[0-9a-f]{41,}/i);
2586 $space = 0 if ($line =~ /\bcommit [0-9a-f]/i);
2587 $case = 0 if ($line =~ /\b[Cc]ommit\s+[0-9a-f]{5,40}[^A-F]/);
2588 if ($line =~ /\bcommit\s+[0-9a-f]{5,}\s+\("([^"]+)"\)/i) {
2589 $orig_desc = $1;
Joe Perches19c146a2015-02-13 14:39:00 -08002590 $hasparens = 1;
Joe Perches0d7835f2015-02-13 14:38:35 -08002591 } elsif ($line =~ /\bcommit\s+[0-9a-f]{5,}\s*$/i &&
2592 defined $rawlines[$linenr] &&
2593 $rawlines[$linenr] =~ /^\s*\("([^"]+)"\)/) {
2594 $orig_desc = $1;
Joe Perches19c146a2015-02-13 14:39:00 -08002595 $hasparens = 1;
Joe Perchesb671fde2015-02-13 14:38:41 -08002596 } elsif ($line =~ /\bcommit\s+[0-9a-f]{5,}\s+\("[^"]+$/i &&
2597 defined $rawlines[$linenr] &&
2598 $rawlines[$linenr] =~ /^\s*[^"]+"\)/) {
2599 $line =~ /\bcommit\s+[0-9a-f]{5,}\s+\("([^"]+)$/i;
2600 $orig_desc = $1;
2601 $rawlines[$linenr] =~ /^\s*([^"]+)"\)/;
2602 $orig_desc .= " " . $1;
Joe Perches19c146a2015-02-13 14:39:00 -08002603 $hasparens = 1;
Joe Perches0d7835f2015-02-13 14:38:35 -08002604 }
2605
2606 ($id, $description) = git_commit_info($orig_commit,
2607 $id, $orig_desc);
2608
Joe Perches19c146a2015-02-13 14:39:00 -08002609 if ($short || $long || $space || $case || ($orig_desc ne $description) || !$hasparens) {
Joe Perches0d7835f2015-02-13 14:38:35 -08002610 ERROR("GIT_COMMIT_ID",
2611 "Please use git commit description style 'commit <12+ chars of sha1> (\"<title line>\")' - ie: '${init_char}ommit $id (\"$description\")'\n" . $herecurr);
2612 }
Joe Perchesd311cd42014-08-06 16:10:57 -07002613 }
2614
Joe Perches13f19372014-08-06 16:10:59 -07002615# Check for added, moved or deleted files
2616 if (!$reported_maintainer_file && !$in_commit_log &&
2617 ($line =~ /^(?:new|deleted) file mode\s*\d+\s*$/ ||
2618 $line =~ /^rename (?:from|to) [\w\/\.\-]+\s*$/ ||
2619 ($line =~ /\{\s*([\w\/\.\-]*)\s*\=\>\s*([\w\/\.\-]*)\s*\}/ &&
2620 (defined($1) || defined($2))))) {
Andrew Jefferya82603a2016-12-12 16:46:37 -08002621 $is_patch = 1;
Joe Perches13f19372014-08-06 16:10:59 -07002622 $reported_maintainer_file = 1;
2623 WARN("FILE_PATH_CHANGES",
2624 "added, moved or deleted file(s), does MAINTAINERS need updating?\n" . $herecurr);
2625 }
2626
Andy Whitcroft00df3442007-06-08 13:47:06 -07002627# Check for wrappage within a valid hunk of the file
Andy Whitcroft8905a672007-11-28 16:21:06 -08002628 if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002629 ERROR("CORRUPTED_PATCH",
2630 "patch seems to be corrupt (line wrapped?)\n" .
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002631 $herecurr) if (!$emitted_corrupt++);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002632 }
2633
2634# UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
2635 if (($realfile =~ /^$/ || $line =~ /^\+/) &&
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002636 $rawline !~ m/^$UTF8*$/) {
2637 my ($utf8_prefix) = ($rawline =~ /^($UTF8*)/);
2638
2639 my $blank = copy_spacing($rawline);
2640 my $ptr = substr($blank, 0, length($utf8_prefix)) . "^";
2641 my $hereptr = "$hereline$ptr\n";
2642
Joe Perches34d99212011-07-25 17:13:26 -07002643 CHK("INVALID_UTF8",
2644 "Invalid UTF-8, patch and commit message should be encoded in UTF-8\n" . $hereptr);
Andy Whitcroft00df3442007-06-08 13:47:06 -07002645 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002646
Joe Perches15662b32011-10-31 17:13:12 -07002647# Check if it's the start of a commit log
2648# (not a header line and we haven't seen the patch filename)
2649 if ($in_header_lines && $realfile =~ /^$/ &&
Joe Percheseb3a58d2017-05-08 15:55:42 -07002650 !($rawline =~ /^\s+(?:\S|$)/ ||
2651 $rawline =~ /^(?:commit\b|from\b|[\w-]+:)/i)) {
Joe Perches15662b32011-10-31 17:13:12 -07002652 $in_header_lines = 0;
2653 $in_commit_log = 1;
Allen Hubbeed43c4e2016-08-02 14:04:45 -07002654 $has_commit_log = 1;
Joe Perches15662b32011-10-31 17:13:12 -07002655 }
2656
Pasi Savanainenfa64205d2012-10-04 17:13:29 -07002657# Check if there is UTF-8 in a commit log when a mail header has explicitly
2658# declined it, i.e defined some charset where it is missing.
2659 if ($in_header_lines &&
2660 $rawline =~ /^Content-Type:.+charset="(.+)".*$/ &&
2661 $1 !~ /utf-8/i) {
2662 $non_utf8_charset = 1;
2663 }
2664
2665 if ($in_commit_log && $non_utf8_charset && $realfile =~ /^$/ &&
Joe Perches15662b32011-10-31 17:13:12 -07002666 $rawline =~ /$NON_ASCII_UTF8/) {
Pasi Savanainenfa64205d2012-10-04 17:13:29 -07002667 WARN("UTF8_BEFORE_PATCH",
Joe Perches15662b32011-10-31 17:13:12 -07002668 "8-bit UTF-8 used in possible commit log\n" . $herecurr);
2669 }
2670
Joe Perchesd6430f72016-12-12 16:46:28 -08002671# Check for absolute kernel paths in commit message
2672 if ($tree && $in_commit_log) {
2673 while ($line =~ m{(?:^|\s)(/\S*)}g) {
2674 my $file = $1;
2675
2676 if ($file =~ m{^(.*?)(?::\d+)+:?$} &&
2677 check_absolute_file($1, $herecurr)) {
2678 #
2679 } else {
2680 check_absolute_file($file, $herecurr);
2681 }
2682 }
2683 }
2684
Kees Cook66b47b42014-10-13 15:51:57 -07002685# Check for various typo / spelling mistakes
Joe Perches66d7a382015-04-16 12:44:08 -07002686 if (defined($misspellings) &&
2687 ($in_commit_log || $line =~ /^(?:\+|Subject:)/i)) {
Joe Perchesebfd7d62015-04-16 12:44:14 -07002688 while ($rawline =~ /(?:^|[^a-z@])($misspellings)(?:\b|$|[^a-z@])/gi) {
Kees Cook66b47b42014-10-13 15:51:57 -07002689 my $typo = $1;
2690 my $typo_fix = $spelling_fix{lc($typo)};
2691 $typo_fix = ucfirst($typo_fix) if ($typo =~ /^[A-Z]/);
2692 $typo_fix = uc($typo_fix) if ($typo =~ /^[A-Z]+$/);
2693 my $msg_type = \&WARN;
2694 $msg_type = \&CHK if ($file);
2695 if (&{$msg_type}("TYPO_SPELLING",
2696 "'$typo' may be misspelled - perhaps '$typo_fix'?\n" . $herecurr) &&
2697 $fix) {
2698 $fixed[$fixlinenr] =~ s/(^|[^A-Za-z@])($typo)($|[^A-Za-z@])/$1$typo_fix$3/;
2699 }
2700 }
2701 }
2702
Andy Whitcroft306708542008-10-15 22:02:28 -07002703# ignore non-hunk lines and lines being removed
2704 next if (!$hunk_line || $line =~ /^-/);
Andy Whitcroft00df3442007-06-08 13:47:06 -07002705
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002706#trailing whitespace
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002707 if ($line =~ /^\+.*\015/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002708 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Joe Perchesd5e616f2013-09-11 14:23:54 -07002709 if (ERROR("DOS_LINE_ENDINGS",
2710 "DOS line endings\n" . $herevet) &&
2711 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07002712 $fixed[$fixlinenr] =~ s/[\s\015]+$//;
Joe Perchesd5e616f2013-09-11 14:23:54 -07002713 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002714 } elsif ($rawline =~ /^\+.*\S\s+$/ || $rawline =~ /^\+\s+$/) {
2715 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Joe Perches3705ce52013-07-03 15:05:31 -07002716 if (ERROR("TRAILING_WHITESPACE",
2717 "trailing whitespace\n" . $herevet) &&
2718 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07002719 $fixed[$fixlinenr] =~ s/\s+$//;
Joe Perches3705ce52013-07-03 15:05:31 -07002720 }
2721
Andy Whitcroftd2c0a232010-10-26 14:23:12 -07002722 $rpt_cleaners = 1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002723 }
Andy Whitcroft5368df202008-10-15 22:02:27 -07002724
Josh Triplett4783f892013-11-12 15:10:12 -08002725# Check for FSF mailing addresses.
Alexander Duyck109d8cb2014-01-23 15:54:50 -08002726 if ($rawline =~ /\bwrite to the Free/i ||
Matthew Wilcox1bde5612017-02-24 15:01:38 -08002727 $rawline =~ /\b675\s+Mass\s+Ave/i ||
Joe Perches3e2232f2014-01-23 15:54:48 -08002728 $rawline =~ /\b59\s+Temple\s+Pl/i ||
2729 $rawline =~ /\b51\s+Franklin\s+St/i) {
Josh Triplett4783f892013-11-12 15:10:12 -08002730 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
2731 my $msg_type = \&ERROR;
2732 $msg_type = \&CHK if ($file);
2733 &{$msg_type}("FSF_MAILING_ADDRESS",
Joe Perches3e2232f2014-01-23 15:54:48 -08002734 "Do not include the paragraph about writing to the Free Software Foundation's mailing address from the sample GPL notice. The FSF has changed addresses in the past, and may do so again. Linux already includes a copy of the GPL.\n" . $herevet)
Josh Triplett4783f892013-11-12 15:10:12 -08002735 }
2736
Andi Kleen33549572010-05-24 14:33:29 -07002737# check for Kconfig help text having a real description
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07002738# Only applies when adding the entry originally, after that we do not have
2739# sufficient context to determine whether it is indeed long enough.
Andi Kleen33549572010-05-24 14:33:29 -07002740 if ($realfile =~ /Kconfig/ &&
Joe Perches8d73e0e2014-08-06 16:10:46 -07002741 $line =~ /^\+\s*config\s+/) {
Andi Kleen33549572010-05-24 14:33:29 -07002742 my $length = 0;
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07002743 my $cnt = $realcnt;
2744 my $ln = $linenr + 1;
2745 my $f;
Andy Whitcrofta1385802012-01-10 15:10:03 -08002746 my $is_start = 0;
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07002747 my $is_end = 0;
Andy Whitcrofta1385802012-01-10 15:10:03 -08002748 for (; $cnt > 0 && defined $lines[$ln - 1]; $ln++) {
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07002749 $f = $lines[$ln - 1];
2750 $cnt-- if ($lines[$ln - 1] !~ /^-/);
2751 $is_end = $lines[$ln - 1] =~ /^\+/;
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07002752
2753 next if ($f =~ /^-/);
Joe Perches8d73e0e2014-08-06 16:10:46 -07002754 last if (!$file && $f =~ /^\@\@/);
Andy Whitcrofta1385802012-01-10 15:10:03 -08002755
Joe Perches8d73e0e2014-08-06 16:10:46 -07002756 if ($lines[$ln - 1] =~ /^\+\s*(?:bool|tristate)\s*\"/) {
Andy Whitcrofta1385802012-01-10 15:10:03 -08002757 $is_start = 1;
Joe Perches8d73e0e2014-08-06 16:10:46 -07002758 } elsif ($lines[$ln - 1] =~ /^\+\s*(?:---)?help(?:---)?$/) {
Andy Whitcrofta1385802012-01-10 15:10:03 -08002759 $length = -1;
2760 }
2761
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07002762 $f =~ s/^.//;
Andi Kleen33549572010-05-24 14:33:29 -07002763 $f =~ s/#.*//;
2764 $f =~ s/^\s+//;
2765 next if ($f =~ /^$/);
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07002766 if ($f =~ /^\s*config\s/) {
2767 $is_end = 1;
2768 last;
2769 }
Andi Kleen33549572010-05-24 14:33:29 -07002770 $length++;
2771 }
Vadim Bendebury56193272014-10-13 15:51:48 -07002772 if ($is_start && $is_end && $length < $min_conf_desc_length) {
2773 WARN("CONFIG_DESCRIPTION",
2774 "please write a paragraph that describes the config symbol fully\n" . $herecurr);
2775 }
Andy Whitcrofta1385802012-01-10 15:10:03 -08002776 #print "is_start<$is_start> is_end<$is_end> length<$length>\n";
Andi Kleen33549572010-05-24 14:33:29 -07002777 }
2778
Joe Perches628f91a2017-07-10 15:52:07 -07002779# check for MAINTAINERS entries that don't have the right form
2780 if ($realfile =~ /^MAINTAINERS$/ &&
2781 $rawline =~ /^\+[A-Z]:/ &&
2782 $rawline !~ /^\+[A-Z]:\t\S/) {
2783 if (WARN("MAINTAINERS_STYLE",
2784 "MAINTAINERS entries use one tab after TYPE:\n" . $herecurr) &&
2785 $fix) {
2786 $fixed[$fixlinenr] =~ s/^(\+[A-Z]):\s*/$1:\t/;
2787 }
2788 }
2789
Christoph Jaeger327953e2015-02-13 14:38:29 -08002790# discourage the use of boolean for type definition attributes of Kconfig options
2791 if ($realfile =~ /Kconfig/ &&
2792 $line =~ /^\+\s*\bboolean\b/) {
2793 WARN("CONFIG_TYPE_BOOLEAN",
2794 "Use of boolean is deprecated, please use bool instead.\n" . $herecurr);
2795 }
2796
Arnaud Lacombec68e5872011-08-15 01:07:14 -04002797 if (($realfile =~ /Makefile.*/ || $realfile =~ /Kbuild.*/) &&
2798 ($line =~ /\+(EXTRA_[A-Z]+FLAGS).*/)) {
2799 my $flag = $1;
2800 my $replacement = {
2801 'EXTRA_AFLAGS' => 'asflags-y',
2802 'EXTRA_CFLAGS' => 'ccflags-y',
2803 'EXTRA_CPPFLAGS' => 'cppflags-y',
2804 'EXTRA_LDFLAGS' => 'ldflags-y',
2805 };
2806
2807 WARN("DEPRECATED_VARIABLE",
2808 "Use of $flag is deprecated, please use \`$replacement->{$flag} instead.\n" . $herecurr) if ($replacement->{$flag});
2809 }
2810
Rob Herringbff5da42014-01-23 15:54:51 -08002811# check for DT compatible documentation
Florian Vaussard7dd05b32014-04-03 14:49:26 -07002812 if (defined $root &&
2813 (($realfile =~ /\.dtsi?$/ && $line =~ /^\+\s*compatible\s*=\s*\"/) ||
2814 ($realfile =~ /\.[ch]$/ && $line =~ /^\+.*\.compatible\s*=\s*\"/))) {
2815
Rob Herringbff5da42014-01-23 15:54:51 -08002816 my @compats = $rawline =~ /\"([a-zA-Z0-9\-\,\.\+_]+)\"/g;
2817
Florian Vaussardcc933192014-04-03 14:49:27 -07002818 my $dt_path = $root . "/Documentation/devicetree/bindings/";
2819 my $vp_file = $dt_path . "vendor-prefixes.txt";
2820
Rob Herringbff5da42014-01-23 15:54:51 -08002821 foreach my $compat (@compats) {
2822 my $compat2 = $compat;
Rob Herring185d5662014-06-04 16:12:03 -07002823 $compat2 =~ s/\,[a-zA-Z0-9]*\-/\,<\.\*>\-/;
2824 my $compat3 = $compat;
2825 $compat3 =~ s/\,([a-z]*)[0-9]*\-/\,$1<\.\*>\-/;
2826 `grep -Erq "$compat|$compat2|$compat3" $dt_path`;
Rob Herringbff5da42014-01-23 15:54:51 -08002827 if ( $? >> 8 ) {
2828 WARN("UNDOCUMENTED_DT_STRING",
2829 "DT compatible string \"$compat\" appears un-documented -- check $dt_path\n" . $herecurr);
2830 }
2831
Florian Vaussard4fbf32a2014-04-03 14:49:25 -07002832 next if $compat !~ /^([a-zA-Z0-9\-]+)\,/;
2833 my $vendor = $1;
Florian Vaussardcc933192014-04-03 14:49:27 -07002834 `grep -Eq "^$vendor\\b" $vp_file`;
Rob Herringbff5da42014-01-23 15:54:51 -08002835 if ( $? >> 8 ) {
2836 WARN("UNDOCUMENTED_DT_STRING",
Florian Vaussardcc933192014-04-03 14:49:27 -07002837 "DT compatible string vendor \"$vendor\" appears un-documented -- check $vp_file\n" . $herecurr);
Rob Herringbff5da42014-01-23 15:54:51 -08002838 }
2839 }
2840 }
2841
Andy Whitcroft5368df202008-10-15 22:02:27 -07002842# check we are in a valid source file if not then ignore this hunk
Joe Perchesd6430f72016-12-12 16:46:28 -08002843 next if ($realfile !~ /\.(h|c|s|S|sh|dtsi|dts)$/);
Andy Whitcroft5368df202008-10-15 22:02:27 -07002844
Joe Perches47e0c882015-06-25 15:02:57 -07002845# line length limit (with some exclusions)
2846#
2847# There are a few types of lines that may extend beyond $max_line_length:
2848# logging functions like pr_info that end in a string
2849# lines with a single string
2850# #defines that are a single string
2851#
2852# There are 3 different line length message types:
2853# LONG_LINE_COMMENT a comment starts before but extends beyond $max_linelength
2854# LONG_LINE_STRING a string starts before but extends beyond $max_line_length
2855# LONG_LINE all other lines longer than $max_line_length
2856#
2857# if LONG_LINE is ignored, the other 2 types are also ignored
2858#
2859
Joe Perchesb4749e92015-07-17 16:24:01 -07002860 if ($line =~ /^\+/ && $length > $max_line_length) {
Joe Perches47e0c882015-06-25 15:02:57 -07002861 my $msg_type = "LONG_LINE";
2862
2863 # Check the allowed long line types first
2864
2865 # logging functions that end in a string that starts
2866 # before $max_line_length
2867 if ($line =~ /^\+\s*$logFunctions\s*\(\s*(?:(?:KERN_\S+\s*|[^"]*))?($String\s*(?:|,|\)\s*;)\s*)$/ &&
2868 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
2869 $msg_type = "";
2870
2871 # lines with only strings (w/ possible termination)
2872 # #defines with only strings
2873 } elsif ($line =~ /^\+\s*$String\s*(?:\s*|,|\)\s*;)\s*$/ ||
2874 $line =~ /^\+\s*#\s*define\s+\w+\s+$String$/) {
2875 $msg_type = "";
2876
Joe Perchesd560a5f2016-08-02 14:04:31 -07002877 # EFI_GUID is another special case
2878 } elsif ($line =~ /^\+.*\bEFI_GUID\s*\(/) {
2879 $msg_type = "";
2880
Joe Perches47e0c882015-06-25 15:02:57 -07002881 # Otherwise set the alternate message types
2882
2883 # a comment starts before $max_line_length
2884 } elsif ($line =~ /($;[\s$;]*)$/ &&
2885 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
2886 $msg_type = "LONG_LINE_COMMENT"
2887
2888 # a quoted string starts before $max_line_length
2889 } elsif ($sline =~ /\s*($String(?:\s*(?:\\|,\s*|\)\s*;\s*))?)$/ &&
2890 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
2891 $msg_type = "LONG_LINE_STRING"
2892 }
2893
2894 if ($msg_type ne "" &&
2895 (show_type("LONG_LINE") || show_type($msg_type))) {
2896 WARN($msg_type,
2897 "line over $max_line_length characters\n" . $herecurr);
2898 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002899 }
2900
Andy Whitcroft8905a672007-11-28 16:21:06 -08002901# check for adding lines without a newline.
2902 if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002903 WARN("MISSING_EOF_NEWLINE",
2904 "adding a line without newline at end of file\n" . $herecurr);
Andy Whitcroft8905a672007-11-28 16:21:06 -08002905 }
2906
Mike Frysinger42e41c52009-09-21 17:04:40 -07002907# Blackfin: use hi/lo macros
2908 if ($realfile =~ m@arch/blackfin/.*\.S$@) {
2909 if ($line =~ /\.[lL][[:space:]]*=.*&[[:space:]]*0x[fF][fF][fF][fF]/) {
2910 my $herevet = "$here\n" . cat_vet($line) . "\n";
Joe Perches000d1cc12011-07-25 17:13:25 -07002911 ERROR("LO_MACRO",
2912 "use the LO() macro, not (... & 0xFFFF)\n" . $herevet);
Mike Frysinger42e41c52009-09-21 17:04:40 -07002913 }
2914 if ($line =~ /\.[hH][[:space:]]*=.*>>[[:space:]]*16/) {
2915 my $herevet = "$here\n" . cat_vet($line) . "\n";
Joe Perches000d1cc12011-07-25 17:13:25 -07002916 ERROR("HI_MACRO",
2917 "use the HI() macro, not (... >> 16)\n" . $herevet);
Mike Frysinger42e41c52009-09-21 17:04:40 -07002918 }
2919 }
2920
Andy Whitcroftb9ea10d2008-10-15 22:02:24 -07002921# check we are in a valid source file C or perl if not then ignore this hunk
Geert Uytterhoevende4c9242014-10-13 15:51:46 -07002922 next if ($realfile !~ /\.(h|c|pl|dtsi|dts)$/);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002923
2924# at the beginning of a line any tabs must come first and anything
2925# more than 8 must use tabs.
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002926 if ($rawline =~ /^\+\s* \t\s*\S/ ||
2927 $rawline =~ /^\+\s* \s*/) {
2928 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Andy Whitcroftd2c0a232010-10-26 14:23:12 -07002929 $rpt_cleaners = 1;
Joe Perches3705ce52013-07-03 15:05:31 -07002930 if (ERROR("CODE_INDENT",
2931 "code indent should use tabs where possible\n" . $herevet) &&
2932 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07002933 $fixed[$fixlinenr] =~ s/^\+([ \t]+)/"\+" . tabify($1)/e;
Joe Perches3705ce52013-07-03 15:05:31 -07002934 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002935 }
2936
Alberto Panizzo08e44362010-03-05 13:43:54 -08002937# check for space before tabs.
2938 if ($rawline =~ /^\+/ && $rawline =~ / \t/) {
2939 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Joe Perches3705ce52013-07-03 15:05:31 -07002940 if (WARN("SPACE_BEFORE_TAB",
2941 "please, no space before tabs\n" . $herevet) &&
2942 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07002943 while ($fixed[$fixlinenr] =~
Joe Perchesd2207cc2014-10-13 15:51:53 -07002944 s/(^\+.*) {8,8}\t/$1\t\t/) {}
Joe Perches194f66f2014-08-06 16:11:03 -07002945 while ($fixed[$fixlinenr] =~
Joe Perchesc76f4cb2014-01-23 15:54:46 -08002946 s/(^\+.*) +\t/$1\t/) {}
Joe Perches3705ce52013-07-03 15:05:31 -07002947 }
Alberto Panizzo08e44362010-03-05 13:43:54 -08002948 }
2949
Joe Perchesd1fe9c02012-03-23 15:02:16 -07002950# check for && or || at the start of a line
2951 if ($rawline =~ /^\+\s*(&&|\|\|)/) {
2952 CHK("LOGICAL_CONTINUATIONS",
2953 "Logical continuations should be on the previous line\n" . $hereprev);
2954 }
2955
Joe Perchesa91e8992016-05-20 17:04:05 -07002956# check indentation starts on a tab stop
2957 if ($^V && $^V ge 5.10.0 &&
2958 $sline =~ /^\+\t+( +)(?:$c90_Keywords\b|\{\s*$|\}\s*(?:else\b|while\b|\s*$))/) {
2959 my $indent = length($1);
2960 if ($indent % 8) {
2961 if (WARN("TABSTOP",
2962 "Statements should start on a tabstop\n" . $herecurr) &&
2963 $fix) {
2964 $fixed[$fixlinenr] =~ s@(^\+\t+) +@$1 . "\t" x ($indent/8)@e;
2965 }
2966 }
2967 }
2968
Joe Perchesd1fe9c02012-03-23 15:02:16 -07002969# check multi-line statement indentation matches previous line
2970 if ($^V && $^V ge 5.10.0 &&
Joe Perches91cb5192014-04-03 14:49:32 -07002971 $prevline =~ /^\+([ \t]*)((?:$c90_Keywords(?:\s+if)\s*)|(?:$Declare\s*)?(?:$Ident|\(\s*\*\s*$Ident\s*\))\s*|$Ident\s*=\s*$Ident\s*)\(.*(\&\&|\|\||,)\s*$/) {
Joe Perchesd1fe9c02012-03-23 15:02:16 -07002972 $prevline =~ /^\+(\t*)(.*)$/;
2973 my $oldindent = $1;
2974 my $rest = $2;
2975
2976 my $pos = pos_last_openparen($rest);
2977 if ($pos >= 0) {
Joe Perchesb34a26f2012-07-30 14:41:16 -07002978 $line =~ /^(\+| )([ \t]*)/;
2979 my $newindent = $2;
Joe Perchesd1fe9c02012-03-23 15:02:16 -07002980
2981 my $goodtabindent = $oldindent .
2982 "\t" x ($pos / 8) .
2983 " " x ($pos % 8);
2984 my $goodspaceindent = $oldindent . " " x $pos;
2985
2986 if ($newindent ne $goodtabindent &&
2987 $newindent ne $goodspaceindent) {
Joe Perches3705ce52013-07-03 15:05:31 -07002988
2989 if (CHK("PARENTHESIS_ALIGNMENT",
2990 "Alignment should match open parenthesis\n" . $hereprev) &&
2991 $fix && $line =~ /^\+/) {
Joe Perches194f66f2014-08-06 16:11:03 -07002992 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07002993 s/^\+[ \t]*/\+$goodtabindent/;
2994 }
Joe Perchesd1fe9c02012-03-23 15:02:16 -07002995 }
2996 }
2997 }
2998
Joe Perches6ab3a972015-04-16 12:44:05 -07002999# check for space after cast like "(int) foo" or "(struct foo) bar"
3000# avoid checking a few false positives:
3001# "sizeof(<type>)" or "__alignof__(<type>)"
3002# function pointer declarations like "(*foo)(int) = bar;"
3003# structure definitions like "(struct foo) { 0 };"
3004# multiline macros that define functions
3005# known attributes or the __attribute__ keyword
3006 if ($line =~ /^\+(.*)\(\s*$Type\s*\)([ \t]++)((?![={]|\\$|$Attribute|__attribute__))/ &&
3007 (!defined($1) || $1 !~ /\b(?:sizeof|__alignof__)\s*$/)) {
Joe Perches3705ce52013-07-03 15:05:31 -07003008 if (CHK("SPACING",
Joe Perchesf27c95d2014-08-06 16:10:52 -07003009 "No space is necessary after a cast\n" . $herecurr) &&
Joe Perches3705ce52013-07-03 15:05:31 -07003010 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07003011 $fixed[$fixlinenr] =~
Joe Perchesf27c95d2014-08-06 16:10:52 -07003012 s/(\(\s*$Type\s*\))[ \t]+/$1/;
Joe Perches3705ce52013-07-03 15:05:31 -07003013 }
Joe Perchesaad4f612012-03-23 15:02:19 -07003014 }
3015
Joe Perches86406b12015-09-09 15:37:41 -07003016# Block comment styles
3017# Networking with an initial /*
Joe Perches05880602012-10-04 17:13:35 -07003018 if ($realfile =~ m@^(drivers/net/|net/)@ &&
Joe Perchesfdb4bcd2013-07-03 15:05:23 -07003019 $prevrawline =~ /^\+[ \t]*\/\*[ \t]*$/ &&
Joe Perches85ad9782014-04-03 14:49:20 -07003020 $rawline =~ /^\+[ \t]*\*/ &&
3021 $realline > 2) {
Joe Perches05880602012-10-04 17:13:35 -07003022 WARN("NETWORKING_BLOCK_COMMENT_STYLE",
3023 "networking block comments don't use an empty /* line, use /* Comment...\n" . $hereprev);
3024 }
3025
Joe Perches86406b12015-09-09 15:37:41 -07003026# Block comments use * on subsequent lines
3027 if ($prevline =~ /$;[ \t]*$/ && #ends in comment
3028 $prevrawline =~ /^\+.*?\/\*/ && #starting /*
Joe Perchesa605e322013-07-03 15:05:24 -07003029 $prevrawline !~ /\*\/[ \t]*$/ && #no trailing */
Joe Perches61135e92013-09-11 14:23:59 -07003030 $rawline =~ /^\+/ && #line is new
Joe Perchesa605e322013-07-03 15:05:24 -07003031 $rawline !~ /^\+[ \t]*\*/) { #no leading *
Joe Perches86406b12015-09-09 15:37:41 -07003032 WARN("BLOCK_COMMENT_STYLE",
3033 "Block comments use * on subsequent lines\n" . $hereprev);
Joe Perchesa605e322013-07-03 15:05:24 -07003034 }
3035
Joe Perches86406b12015-09-09 15:37:41 -07003036# Block comments use */ on trailing lines
3037 if ($rawline !~ m@^\+[ \t]*\*/[ \t]*$@ && #trailing */
Joe Perchesc24f9f12012-11-08 15:53:29 -08003038 $rawline !~ m@^\+.*/\*.*\*/[ \t]*$@ && #inline /*...*/
3039 $rawline !~ m@^\+.*\*{2,}/[ \t]*$@ && #trailing **/
3040 $rawline =~ m@^\+[ \t]*.+\*\/[ \t]*$@) { #non blank */
Joe Perches86406b12015-09-09 15:37:41 -07003041 WARN("BLOCK_COMMENT_STYLE",
3042 "Block comments use a trailing */ on a separate line\n" . $herecurr);
Joe Perches05880602012-10-04 17:13:35 -07003043 }
3044
Joe Perches08eb9b82016-10-11 13:51:50 -07003045# Block comment * alignment
3046 if ($prevline =~ /$;[ \t]*$/ && #ends in comment
Joe Perchesaf207522016-10-11 13:52:05 -07003047 $line =~ /^\+[ \t]*$;/ && #leading comment
3048 $rawline =~ /^\+[ \t]*\*/ && #leading *
3049 (($prevrawline =~ /^\+.*?\/\*/ && #leading /*
Joe Perches08eb9b82016-10-11 13:51:50 -07003050 $prevrawline !~ /\*\/[ \t]*$/) || #no trailing */
Joe Perchesaf207522016-10-11 13:52:05 -07003051 $prevrawline =~ /^\+[ \t]*\*/)) { #leading *
3052 my $oldindent;
Joe Perches08eb9b82016-10-11 13:51:50 -07003053 $prevrawline =~ m@^\+([ \t]*/?)\*@;
Joe Perchesaf207522016-10-11 13:52:05 -07003054 if (defined($1)) {
3055 $oldindent = expand_tabs($1);
3056 } else {
3057 $prevrawline =~ m@^\+(.*/?)\*@;
3058 $oldindent = expand_tabs($1);
3059 }
Joe Perches08eb9b82016-10-11 13:51:50 -07003060 $rawline =~ m@^\+([ \t]*)\*@;
3061 my $newindent = $1;
Joe Perches08eb9b82016-10-11 13:51:50 -07003062 $newindent = expand_tabs($newindent);
Joe Perchesaf207522016-10-11 13:52:05 -07003063 if (length($oldindent) ne length($newindent)) {
Joe Perches08eb9b82016-10-11 13:51:50 -07003064 WARN("BLOCK_COMMENT_STYLE",
3065 "Block comments should align the * on each line\n" . $hereprev);
3066 }
3067 }
3068
Joe Perches7f619192014-08-06 16:10:39 -07003069# check for missing blank lines after struct/union declarations
3070# with exceptions for various attributes and macros
3071 if ($prevline =~ /^[\+ ]};?\s*$/ &&
3072 $line =~ /^\+/ &&
3073 !($line =~ /^\+\s*$/ ||
3074 $line =~ /^\+\s*EXPORT_SYMBOL/ ||
3075 $line =~ /^\+\s*MODULE_/i ||
3076 $line =~ /^\+\s*\#\s*(?:end|elif|else)/ ||
3077 $line =~ /^\+[a-z_]*init/ ||
3078 $line =~ /^\+\s*(?:static\s+)?[A-Z_]*ATTR/ ||
3079 $line =~ /^\+\s*DECLARE/ ||
3080 $line =~ /^\+\s*__setup/)) {
Joe Perchesd752fcc2014-08-06 16:11:05 -07003081 if (CHK("LINE_SPACING",
3082 "Please use a blank line after function/struct/union/enum declarations\n" . $hereprev) &&
3083 $fix) {
Joe Perchesf2d7e4d2014-08-06 16:11:07 -07003084 fix_insert_line($fixlinenr, "\+");
Joe Perchesd752fcc2014-08-06 16:11:05 -07003085 }
Joe Perches7f619192014-08-06 16:10:39 -07003086 }
3087
Joe Perches365dd4e2014-08-06 16:10:42 -07003088# check for multiple consecutive blank lines
3089 if ($prevline =~ /^[\+ ]\s*$/ &&
3090 $line =~ /^\+\s*$/ &&
3091 $last_blank_line != ($linenr - 1)) {
Joe Perchesd752fcc2014-08-06 16:11:05 -07003092 if (CHK("LINE_SPACING",
3093 "Please don't use multiple blank lines\n" . $hereprev) &&
3094 $fix) {
Joe Perchesf2d7e4d2014-08-06 16:11:07 -07003095 fix_delete_line($fixlinenr, $rawline);
Joe Perchesd752fcc2014-08-06 16:11:05 -07003096 }
3097
Joe Perches365dd4e2014-08-06 16:10:42 -07003098 $last_blank_line = $linenr;
3099 }
3100
Joe Perches3b617e32014-04-03 14:49:28 -07003101# check for missing blank lines after declarations
Joe Perches3f7bac02014-06-04 16:12:04 -07003102 if ($sline =~ /^\+\s+\S/ && #Not at char 1
3103 # actual declarations
3104 ($prevline =~ /^\+\s+$Declare\s*$Ident\s*[=,;:\[]/ ||
Joe Perches5a4e1fd2014-08-06 16:10:33 -07003105 # function pointer declarations
3106 $prevline =~ /^\+\s+$Declare\s*\(\s*\*\s*$Ident\s*\)\s*[=,;:\[\(]/ ||
Joe Perches3f7bac02014-06-04 16:12:04 -07003107 # foo bar; where foo is some local typedef or #define
3108 $prevline =~ /^\+\s+$Ident(?:\s+|\s*\*\s*)$Ident\s*[=,;\[]/ ||
3109 # known declaration macros
3110 $prevline =~ /^\+\s+$declaration_macros/) &&
3111 # for "else if" which can look like "$Ident $Ident"
3112 !($prevline =~ /^\+\s+$c90_Keywords\b/ ||
3113 # other possible extensions of declaration lines
3114 $prevline =~ /(?:$Compare|$Assignment|$Operators)\s*$/ ||
3115 # not starting a section or a macro "\" extended line
3116 $prevline =~ /(?:\{\s*|\\)$/) &&
3117 # looks like a declaration
3118 !($sline =~ /^\+\s+$Declare\s*$Ident\s*[=,;:\[]/ ||
Joe Perches5a4e1fd2014-08-06 16:10:33 -07003119 # function pointer declarations
3120 $sline =~ /^\+\s+$Declare\s*\(\s*\*\s*$Ident\s*\)\s*[=,;:\[\(]/ ||
Joe Perches3f7bac02014-06-04 16:12:04 -07003121 # foo bar; where foo is some local typedef or #define
3122 $sline =~ /^\+\s+$Ident(?:\s+|\s*\*\s*)$Ident\s*[=,;\[]/ ||
3123 # known declaration macros
3124 $sline =~ /^\+\s+$declaration_macros/ ||
3125 # start of struct or union or enum
Joe Perches3b617e32014-04-03 14:49:28 -07003126 $sline =~ /^\+\s+(?:union|struct|enum|typedef)\b/ ||
Joe Perches3f7bac02014-06-04 16:12:04 -07003127 # start or end of block or continuation of declaration
3128 $sline =~ /^\+\s+(?:$|[\{\}\.\#\"\?\:\(\[])/ ||
3129 # bitfield continuation
3130 $sline =~ /^\+\s+$Ident\s*:\s*\d+\s*[,;]/ ||
3131 # other possible extensions of declaration lines
3132 $sline =~ /^\+\s+\(?\s*(?:$Compare|$Assignment|$Operators)/) &&
3133 # indentation of previous and current line are the same
3134 (($prevline =~ /\+(\s+)\S/) && $sline =~ /^\+$1\S/)) {
Joe Perchesd752fcc2014-08-06 16:11:05 -07003135 if (WARN("LINE_SPACING",
3136 "Missing a blank line after declarations\n" . $hereprev) &&
3137 $fix) {
Joe Perchesf2d7e4d2014-08-06 16:11:07 -07003138 fix_insert_line($fixlinenr, "\+");
Joe Perchesd752fcc2014-08-06 16:11:05 -07003139 }
Joe Perches3b617e32014-04-03 14:49:28 -07003140 }
3141
Raffaele Recalcati5f7ddae2010-08-09 17:20:59 -07003142# check for spaces at the beginning of a line.
Andy Whitcroft6b4c5be2010-10-26 14:23:11 -07003143# Exceptions:
3144# 1) within comments
3145# 2) indented preprocessor commands
3146# 3) hanging labels
Joe Perches3705ce52013-07-03 15:05:31 -07003147 if ($rawline =~ /^\+ / && $line !~ /^\+ *(?:$;|#|$Ident:)/) {
Raffaele Recalcati5f7ddae2010-08-09 17:20:59 -07003148 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Joe Perches3705ce52013-07-03 15:05:31 -07003149 if (WARN("LEADING_SPACE",
3150 "please, no spaces at the start of a line\n" . $herevet) &&
3151 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07003152 $fixed[$fixlinenr] =~ s/^\+([ \t]+)/"\+" . tabify($1)/e;
Joe Perches3705ce52013-07-03 15:05:31 -07003153 }
Raffaele Recalcati5f7ddae2010-08-09 17:20:59 -07003154 }
3155
Andy Whitcroftb9ea10d2008-10-15 22:02:24 -07003156# check we are in a valid C source file if not then ignore this hunk
3157 next if ($realfile !~ /\.(h|c)$/);
3158
Joe Perches4dbed762017-05-08 15:55:39 -07003159# check if this appears to be the start function declaration, save the name
3160 if ($sline =~ /^\+\{\s*$/ &&
3161 $prevline =~ /^\+(?:(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*)?($Ident)\(/) {
3162 $context_function = $1;
3163 }
3164
3165# check if this appears to be the end of function declaration
3166 if ($sline =~ /^\+\}\s*$/) {
3167 undef $context_function;
3168 }
3169
Joe Perches032a4c02014-08-06 16:10:29 -07003170# check indentation of any line with a bare else
Joe Perches840080a2014-10-13 15:51:59 -07003171# (but not if it is a multiple line "if (foo) return bar; else return baz;")
Joe Perches032a4c02014-08-06 16:10:29 -07003172# if the previous line is a break or return and is indented 1 tab more...
3173 if ($sline =~ /^\+([\t]+)(?:}[ \t]*)?else(?:[ \t]*{)?\s*$/) {
3174 my $tabs = length($1) + 1;
Joe Perches840080a2014-10-13 15:51:59 -07003175 if ($prevline =~ /^\+\t{$tabs,$tabs}break\b/ ||
3176 ($prevline =~ /^\+\t{$tabs,$tabs}return\b/ &&
3177 defined $lines[$linenr] &&
3178 $lines[$linenr] !~ /^[ \+]\t{$tabs,$tabs}return/)) {
Joe Perches032a4c02014-08-06 16:10:29 -07003179 WARN("UNNECESSARY_ELSE",
3180 "else is not generally useful after a break or return\n" . $hereprev);
3181 }
3182 }
3183
Joe Perchesc00df192014-08-06 16:11:01 -07003184# check indentation of a line with a break;
3185# if the previous line is a goto or return and is indented the same # of tabs
3186 if ($sline =~ /^\+([\t]+)break\s*;\s*$/) {
3187 my $tabs = $1;
3188 if ($prevline =~ /^\+$tabs(?:goto|return)\b/) {
3189 WARN("UNNECESSARY_BREAK",
3190 "break is not useful after a goto or return\n" . $hereprev);
3191 }
3192 }
3193
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08003194# check for RCS/CVS revision markers
Andy Whitcroftcf655042008-03-04 14:28:20 -08003195 if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003196 WARN("CVS_KEYWORD",
3197 "CVS style keyword markers, these will _not_ be updated\n". $herecurr);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08003198 }
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07003199
Mike Frysinger42e41c52009-09-21 17:04:40 -07003200# Blackfin: don't use __builtin_bfin_[cs]sync
3201 if ($line =~ /__builtin_bfin_csync/) {
3202 my $herevet = "$here\n" . cat_vet($line) . "\n";
Joe Perches000d1cc12011-07-25 17:13:25 -07003203 ERROR("CSYNC",
3204 "use the CSYNC() macro in asm/blackfin.h\n" . $herevet);
Mike Frysinger42e41c52009-09-21 17:04:40 -07003205 }
3206 if ($line =~ /__builtin_bfin_ssync/) {
3207 my $herevet = "$here\n" . cat_vet($line) . "\n";
Joe Perches000d1cc12011-07-25 17:13:25 -07003208 ERROR("SSYNC",
3209 "use the SSYNC() macro in asm/blackfin.h\n" . $herevet);
Mike Frysinger42e41c52009-09-21 17:04:40 -07003210 }
3211
Joe Perches56e77d72013-02-21 16:44:14 -08003212# check for old HOTPLUG __dev<foo> section markings
3213 if ($line =~ /\b(__dev(init|exit)(data|const|))\b/) {
3214 WARN("HOTPLUG_SECTION",
3215 "Using $1 is unnecessary\n" . $herecurr);
3216 }
3217
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07003218# Check for potential 'bare' types
Andy Whitcroft2b474a12009-10-26 16:50:16 -07003219 my ($stat, $cond, $line_nr_next, $remain_next, $off_next,
3220 $realline_next);
Andy Whitcroft3e469cd2012-01-10 15:10:01 -08003221#print "LINE<$line>\n";
3222 if ($linenr >= $suppress_statement &&
Joe Perches1b5539b2013-09-11 14:24:03 -07003223 $realcnt && $sline =~ /.\s*\S/) {
Andy Whitcroft170d3a22008-10-15 22:02:30 -07003224 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
Andy Whitcroftf5fe35d2008-07-23 21:29:03 -07003225 ctx_statement_block($linenr, $realcnt, 0);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07003226 $stat =~ s/\n./\n /g;
3227 $cond =~ s/\n./\n /g;
3228
Andy Whitcroft3e469cd2012-01-10 15:10:01 -08003229#print "linenr<$linenr> <$stat>\n";
3230 # If this statement has no statement boundaries within
3231 # it there is no point in retrying a statement scan
3232 # until we hit end of it.
3233 my $frag = $stat; $frag =~ s/;+\s*$//;
3234 if ($frag !~ /(?:{|;)/) {
3235#print "skip<$line_nr_next>\n";
3236 $suppress_statement = $line_nr_next;
3237 }
Andy Whitcroftf74bd192012-01-10 15:09:54 -08003238
Andy Whitcroft2b474a12009-10-26 16:50:16 -07003239 # Find the real next line.
3240 $realline_next = $line_nr_next;
3241 if (defined $realline_next &&
3242 (!defined $lines[$realline_next - 1] ||
3243 substr($lines[$realline_next - 1], $off_next) =~ /^\s*$/)) {
3244 $realline_next++;
3245 }
3246
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07003247 my $s = $stat;
3248 $s =~ s/{.*$//s;
Andy Whitcroftcf655042008-03-04 14:28:20 -08003249
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08003250 # Ignore goto labels.
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07003251 if ($s =~ /$Ident:\*$/s) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08003252
3253 # Ignore functions being called
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07003254 } elsif ($s =~ /^.\s*$Ident\s*\(/s) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08003255
Andy Whitcroft463f2862009-09-21 17:04:34 -07003256 } elsif ($s =~ /^.\s*else\b/s) {
3257
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07003258 # declarations always start with types
Andy Whitcroftd2506582008-07-23 21:29:09 -07003259 } 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 -07003260 my $type = $1;
3261 $type =~ s/\s+/ /g;
3262 possible($type, "A:" . $s);
3263
Andy Whitcroft8905a672007-11-28 16:21:06 -08003264 # definitions in global scope can only start with types
Andy Whitcrofta6a840622008-10-15 22:02:30 -07003265 } elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b\s*(?!:)/s) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07003266 possible($1, "B:" . $s);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08003267 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08003268
3269 # any (foo ... *) is a pointer cast, and foo is a type
Andy Whitcroft65863862009-01-06 14:41:21 -08003270 while ($s =~ /\(($Ident)(?:\s+$Sparse)*[\s\*]+\s*\)/sg) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07003271 possible($1, "C:" . $s);
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07003272 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08003273
3274 # Check for any sort of function declaration.
3275 # int foo(something bar, other baz);
3276 # void (*store_gdt)(x86_descr_ptr *);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07003277 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 -08003278 my ($name_len) = length($1);
Andy Whitcroft8905a672007-11-28 16:21:06 -08003279
Andy Whitcroftcf655042008-03-04 14:28:20 -08003280 my $ctx = $s;
Andy Whitcroft773647a2008-03-28 14:15:58 -07003281 substr($ctx, 0, $name_len + 1, '');
Andy Whitcroft8905a672007-11-28 16:21:06 -08003282 $ctx =~ s/\)[^\)]*$//;
Andy Whitcroftcf655042008-03-04 14:28:20 -08003283
Andy Whitcroft8905a672007-11-28 16:21:06 -08003284 for my $arg (split(/\s*,\s*/, $ctx)) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07003285 if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$/s) {
Andy Whitcroft8905a672007-11-28 16:21:06 -08003286
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07003287 possible($1, "D:" . $s);
Andy Whitcroft8905a672007-11-28 16:21:06 -08003288 }
3289 }
3290 }
3291
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07003292 }
3293
Andy Whitcroft653d4872007-06-23 17:16:34 -07003294#
3295# Checks which may be anchored in the context.
3296#
3297
3298# Check for switch () and associated case and default
3299# statements should be at the same indent.
Andy Whitcroft00df3442007-06-08 13:47:06 -07003300 if ($line=~/\bswitch\s*\(.*\)/) {
3301 my $err = '';
3302 my $sep = '';
3303 my @ctx = ctx_block_outer($linenr, $realcnt);
3304 shift(@ctx);
3305 for my $ctx (@ctx) {
3306 my ($clen, $cindent) = line_stats($ctx);
3307 if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
3308 $indent != $cindent) {
3309 $err .= "$sep$ctx\n";
3310 $sep = '';
3311 } else {
3312 $sep = "[...]\n";
3313 }
3314 }
3315 if ($err ne '') {
Joe Perches000d1cc12011-07-25 17:13:25 -07003316 ERROR("SWITCH_CASE_INDENT_LEVEL",
3317 "switch and case should be at the same indent\n$hereline$err");
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07003318 }
3319 }
3320
3321# if/while/etc brace do not go on next line, unless defining a do while loop,
3322# or if that brace on the next line is for something else
Joe Perches0fe3dc22014-08-06 16:11:16 -07003323 if ($line =~ /(.*)\b((?:if|while|for|switch|(?:[a-z_]+|)for_each[a-z_]+)\s*\(|do\b|else\b)/ && $line !~ /^.\s*\#/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07003324 my $pre_ctx = "$1$2";
3325
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07003326 my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0);
Joe Perches8eef05d2012-02-03 15:20:39 -08003327
3328 if ($line =~ /^\+\t{6,}/) {
3329 WARN("DEEP_INDENTATION",
3330 "Too many leading tabs - consider code refactoring\n" . $herecurr);
3331 }
3332
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07003333 my $ctx_cnt = $realcnt - $#ctx - 1;
3334 my $ctx = join("\n", @ctx);
3335
Andy Whitcroft548596d2008-07-23 21:29:01 -07003336 my $ctx_ln = $linenr;
3337 my $ctx_skip = $realcnt;
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07003338
Andy Whitcroft548596d2008-07-23 21:29:01 -07003339 while ($ctx_skip > $ctx_cnt || ($ctx_skip == $ctx_cnt &&
3340 defined $lines[$ctx_ln - 1] &&
3341 $lines[$ctx_ln - 1] =~ /^-/)) {
3342 ##print "SKIP<$ctx_skip> CNT<$ctx_cnt>\n";
3343 $ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/);
Andy Whitcroft773647a2008-03-28 14:15:58 -07003344 $ctx_ln++;
3345 }
Andy Whitcroft548596d2008-07-23 21:29:01 -07003346
Andy Whitcroft53210162008-07-23 21:29:03 -07003347 #print "realcnt<$realcnt> ctx_cnt<$ctx_cnt>\n";
3348 #print "pre<$pre_ctx>\nline<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>\n";
Andy Whitcroft773647a2008-03-28 14:15:58 -07003349
Joe Perchesd752fcc2014-08-06 16:11:05 -07003350 if ($ctx !~ /{\s*/ && defined($lines[$ctx_ln - 1]) && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003351 ERROR("OPEN_BRACE",
3352 "that open brace { should be on the previous line\n" .
Andy Whitcroft01464f32010-10-26 14:23:19 -07003353 "$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
Andy Whitcroft00df3442007-06-08 13:47:06 -07003354 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07003355 if ($level == 0 && $pre_ctx !~ /}\s*while\s*\($/ &&
3356 $ctx =~ /\)\s*\;\s*$/ &&
3357 defined $lines[$ctx_ln - 1])
3358 {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07003359 my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
3360 if ($nindent > $indent) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003361 WARN("TRAILING_SEMICOLON",
3362 "trailing semicolon indicates no statements, indent implies otherwise\n" .
Andy Whitcroft01464f32010-10-26 14:23:19 -07003363 "$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07003364 }
3365 }
Andy Whitcroft00df3442007-06-08 13:47:06 -07003366 }
3367
Andy Whitcroft4d001e42008-10-15 22:02:21 -07003368# Check relative indent for conditionals and blocks.
Joe Perchesf6950a72017-05-08 15:56:05 -07003369 if ($line =~ /\b(?:(?:if|while|for|(?:[a-z_]+|)for_each[a-z_]+)\s*\(|(?:do|else)\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) {
Andy Whitcroft3e469cd2012-01-10 15:10:01 -08003370 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
3371 ctx_statement_block($linenr, $realcnt, 0)
3372 if (!defined $stat);
Andy Whitcroft4d001e42008-10-15 22:02:21 -07003373 my ($s, $c) = ($stat, $cond);
3374
3375 substr($s, 0, length($c), '');
3376
Joe Perches9f5af482015-09-09 15:37:30 -07003377 # remove inline comments
3378 $s =~ s/$;/ /g;
3379 $c =~ s/$;/ /g;
Andy Whitcroft4d001e42008-10-15 22:02:21 -07003380
3381 # Find out how long the conditional actually is.
Andy Whitcroft6f779c12008-10-15 22:02:27 -07003382 my @newlines = ($c =~ /\n/gs);
3383 my $cond_lines = 1 + $#newlines;
Andy Whitcroft4d001e42008-10-15 22:02:21 -07003384
Joe Perches9f5af482015-09-09 15:37:30 -07003385 # Make sure we remove the line prefixes as we have
3386 # none on the first line, and are going to readd them
3387 # where necessary.
3388 $s =~ s/\n./\n/gs;
3389 while ($s =~ /\n\s+\\\n/) {
3390 $cond_lines += $s =~ s/\n\s+\\\n/\n/g;
3391 }
3392
Andy Whitcroft4d001e42008-10-15 22:02:21 -07003393 # We want to check the first line inside the block
3394 # starting at the end of the conditional, so remove:
3395 # 1) any blank line termination
3396 # 2) any opening brace { on end of the line
3397 # 3) any do (...) {
3398 my $continuation = 0;
3399 my $check = 0;
3400 $s =~ s/^.*\bdo\b//;
3401 $s =~ s/^\s*{//;
3402 if ($s =~ s/^\s*\\//) {
3403 $continuation = 1;
3404 }
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07003405 if ($s =~ s/^\s*?\n//) {
Andy Whitcroft4d001e42008-10-15 22:02:21 -07003406 $check = 1;
3407 $cond_lines++;
3408 }
3409
3410 # Also ignore a loop construct at the end of a
3411 # preprocessor statement.
3412 if (($prevline =~ /^.\s*#\s*define\s/ ||
3413 $prevline =~ /\\\s*$/) && $continuation == 0) {
3414 $check = 0;
3415 }
3416
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07003417 my $cond_ptr = -1;
Andy Whitcroft740504c2008-10-15 22:02:35 -07003418 $continuation = 0;
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07003419 while ($cond_ptr != $cond_lines) {
3420 $cond_ptr = $cond_lines;
Andy Whitcroft4d001e42008-10-15 22:02:21 -07003421
Andy Whitcroftf16fa282008-10-15 22:02:32 -07003422 # If we see an #else/#elif then the code
3423 # is not linear.
3424 if ($s =~ /^\s*\#\s*(?:else|elif)/) {
3425 $check = 0;
3426 }
3427
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07003428 # Ignore:
3429 # 1) blank lines, they should be at 0,
3430 # 2) preprocessor lines, and
3431 # 3) labels.
Andy Whitcroft740504c2008-10-15 22:02:35 -07003432 if ($continuation ||
3433 $s =~ /^\s*?\n/ ||
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07003434 $s =~ /^\s*#\s*?/ ||
3435 $s =~ /^\s*$Ident\s*:/) {
Andy Whitcroft740504c2008-10-15 22:02:35 -07003436 $continuation = ($s =~ /^.*?\\\n/) ? 1 : 0;
Andy Whitcroft30dad6e2009-09-21 17:04:36 -07003437 if ($s =~ s/^.*?\n//) {
3438 $cond_lines++;
3439 }
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07003440 }
Andy Whitcroft4d001e42008-10-15 22:02:21 -07003441 }
3442
3443 my (undef, $sindent) = line_stats("+" . $s);
3444 my $stat_real = raw_line($linenr, $cond_lines);
3445
3446 # Check if either of these lines are modified, else
3447 # this is not this patch's fault.
3448 if (!defined($stat_real) ||
3449 $stat !~ /^\+/ && $stat_real !~ /^\+/) {
3450 $check = 0;
3451 }
3452 if (defined($stat_real) && $cond_lines > 1) {
3453 $stat_real = "[...]\n$stat_real";
3454 }
3455
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07003456 #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 -07003457
Joe Perches9f5af482015-09-09 15:37:30 -07003458 if ($check && $s ne '' &&
3459 (($sindent % 8) != 0 ||
3460 ($sindent < $indent) ||
Joe Perchesf6950a72017-05-08 15:56:05 -07003461 ($sindent == $indent &&
3462 ($s !~ /^\s*(?:\}|\{|else\b)/)) ||
Joe Perches9f5af482015-09-09 15:37:30 -07003463 ($sindent > $indent + 8))) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003464 WARN("SUSPECT_CODE_INDENT",
3465 "suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n");
Andy Whitcroft4d001e42008-10-15 22:02:21 -07003466 }
3467 }
3468
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07003469 # Track the 'values' across context and added lines.
3470 my $opline = $line; $opline =~ s/^./ /;
Andy Whitcroft1f65f942008-07-23 21:29:10 -07003471 my ($curr_values, $curr_vars) =
3472 annotate_values($opline . "\n", $prev_values);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07003473 $curr_values = $prev_values . $curr_values;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08003474 if ($dbg_values) {
3475 my $outline = $opline; $outline =~ s/\t/ /g;
Andy Whitcroftcf655042008-03-04 14:28:20 -08003476 print "$linenr > .$outline\n";
3477 print "$linenr > $curr_values\n";
Andy Whitcroft1f65f942008-07-23 21:29:10 -07003478 print "$linenr > $curr_vars\n";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08003479 }
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07003480 $prev_values = substr($curr_values, -1);
3481
Andy Whitcroft00df3442007-06-08 13:47:06 -07003482#ignore lines not being added
Joe Perches3705ce52013-07-03 15:05:31 -07003483 next if ($line =~ /^[^\+]/);
Andy Whitcroft00df3442007-06-08 13:47:06 -07003484
Joe Perches11ca40a2016-12-12 16:46:31 -08003485# check for dereferences that span multiple lines
3486 if ($prevline =~ /^\+.*$Lval\s*(?:\.|->)\s*$/ &&
3487 $line =~ /^\+\s*(?!\#\s*(?!define\s+|if))\s*$Lval/) {
3488 $prevline =~ /($Lval\s*(?:\.|->))\s*$/;
3489 my $ref = $1;
3490 $line =~ /^.\s*($Lval)/;
3491 $ref .= $1;
3492 $ref =~ s/\s//g;
3493 WARN("MULTILINE_DEREFERENCE",
3494 "Avoid multiple line dereference - prefer '$ref'\n" . $hereprev);
3495 }
3496
Joe Perchesa1ce18e2016-03-15 14:58:03 -07003497# check for declarations of signed or unsigned without int
Joe Perchesc8447112016-08-02 14:04:42 -07003498 while ($line =~ m{\b($Declare)\s*(?!char\b|short\b|int\b|long\b)\s*($Ident)?\s*[=,;\[\)\(]}g) {
Joe Perchesa1ce18e2016-03-15 14:58:03 -07003499 my $type = $1;
3500 my $var = $2;
Joe Perches207a8e82016-03-15 14:58:06 -07003501 $var = "" if (!defined $var);
3502 if ($type =~ /^(?:(?:$Storage|$Inline|$Attribute)\s+)*((?:un)?signed)((?:\s*\*)*)\s*$/) {
Joe Perchesa1ce18e2016-03-15 14:58:03 -07003503 my $sign = $1;
3504 my $pointer = $2;
3505
3506 $pointer = "" if (!defined $pointer);
3507
3508 if (WARN("UNSPECIFIED_INT",
3509 "Prefer '" . trim($sign) . " int" . rtrim($pointer) . "' to bare use of '$sign" . rtrim($pointer) . "'\n" . $herecurr) &&
3510 $fix) {
3511 my $decl = trim($sign) . " int ";
Joe Perches207a8e82016-03-15 14:58:06 -07003512 my $comp_pointer = $pointer;
3513 $comp_pointer =~ s/\s//g;
3514 $decl .= $comp_pointer;
3515 $decl = rtrim($decl) if ($var eq "");
3516 $fixed[$fixlinenr] =~ s@\b$sign\s*\Q$pointer\E\s*$var\b@$decl$var@;
Joe Perchesa1ce18e2016-03-15 14:58:03 -07003517 }
3518 }
3519 }
3520
Andy Whitcroft653d4872007-06-23 17:16:34 -07003521# TEST: allow direct testing of the type matcher.
Andy Whitcroft7429c692008-07-23 21:29:06 -07003522 if ($dbg_type) {
3523 if ($line =~ /^.\s*$Declare\s*$/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003524 ERROR("TEST_TYPE",
3525 "TEST: is type\n" . $herecurr);
Andy Whitcroft7429c692008-07-23 21:29:06 -07003526 } elsif ($dbg_type > 1 && $line =~ /^.+($Declare)/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003527 ERROR("TEST_NOT_TYPE",
3528 "TEST: is not type ($1 is)\n". $herecurr);
Andy Whitcroft7429c692008-07-23 21:29:06 -07003529 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07003530 next;
3531 }
Andy Whitcrofta1ef2772008-10-15 22:02:17 -07003532# TEST: allow direct testing of the attribute matcher.
3533 if ($dbg_attr) {
Andy Whitcroft9360b0e2009-02-27 14:03:08 -08003534 if ($line =~ /^.\s*$Modifier\s*$/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003535 ERROR("TEST_ATTR",
3536 "TEST: is attr\n" . $herecurr);
Andy Whitcroft9360b0e2009-02-27 14:03:08 -08003537 } elsif ($dbg_attr > 1 && $line =~ /^.+($Modifier)/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003538 ERROR("TEST_NOT_ATTR",
3539 "TEST: is not attr ($1 is)\n". $herecurr);
Andy Whitcrofta1ef2772008-10-15 22:02:17 -07003540 }
3541 next;
3542 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07003543
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07003544# check for initialisation to aggregates open brace on the next line
Andy Whitcroft99423c22009-10-26 16:50:15 -07003545 if ($line =~ /^.\s*{/ &&
3546 $prevline =~ /(?:^|[^=])=\s*$/) {
Joe Perchesd752fcc2014-08-06 16:11:05 -07003547 if (ERROR("OPEN_BRACE",
3548 "that open brace { should be on the previous line\n" . $hereprev) &&
Joe Perchesf2d7e4d2014-08-06 16:11:07 -07003549 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
3550 fix_delete_line($fixlinenr - 1, $prevrawline);
3551 fix_delete_line($fixlinenr, $rawline);
Joe Perchesd752fcc2014-08-06 16:11:05 -07003552 my $fixedline = $prevrawline;
3553 $fixedline =~ s/\s*=\s*$/ = {/;
Joe Perchesf2d7e4d2014-08-06 16:11:07 -07003554 fix_insert_line($fixlinenr, $fixedline);
Joe Perchesd752fcc2014-08-06 16:11:05 -07003555 $fixedline = $line;
3556 $fixedline =~ s/^(.\s*){\s*/$1/;
Joe Perchesf2d7e4d2014-08-06 16:11:07 -07003557 fix_insert_line($fixlinenr, $fixedline);
Joe Perchesd752fcc2014-08-06 16:11:05 -07003558 }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07003559 }
3560
Andy Whitcroft653d4872007-06-23 17:16:34 -07003561#
3562# Checks which are anchored on the added line.
3563#
3564
3565# check for malformed paths in #include statements (uses RAW line)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07003566 if ($rawline =~ m{^.\s*\#\s*include\s+[<"](.*)[">]}) {
Andy Whitcroft653d4872007-06-23 17:16:34 -07003567 my $path = $1;
3568 if ($path =~ m{//}) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003569 ERROR("MALFORMED_INCLUDE",
Joe Perches495e9d82012-12-20 15:05:37 -08003570 "malformed #include filename\n" . $herecurr);
3571 }
3572 if ($path =~ "^uapi/" && $realfile =~ m@\binclude/uapi/@) {
3573 ERROR("UAPI_INCLUDE",
3574 "No #include in ...include/uapi/... should use a uapi/ path prefix\n" . $herecurr);
Andy Whitcroft653d4872007-06-23 17:16:34 -07003575 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07003576 }
Andy Whitcroft00df3442007-06-08 13:47:06 -07003577
3578# no C99 // comments
3579 if ($line =~ m{//}) {
Joe Perches3705ce52013-07-03 15:05:31 -07003580 if (ERROR("C99_COMMENTS",
3581 "do not use C99 // comments\n" . $herecurr) &&
3582 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07003583 my $line = $fixed[$fixlinenr];
Joe Perches3705ce52013-07-03 15:05:31 -07003584 if ($line =~ /\/\/(.*)$/) {
3585 my $comment = trim($1);
Joe Perches194f66f2014-08-06 16:11:03 -07003586 $fixed[$fixlinenr] =~ s@\/\/(.*)$@/\* $comment \*/@;
Joe Perches3705ce52013-07-03 15:05:31 -07003587 }
3588 }
Andy Whitcroft00df3442007-06-08 13:47:06 -07003589 }
3590 # Remove C99 comments.
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003591 $line =~ s@//.*@@;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07003592 $opline =~ s@//.*@@;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003593
Andy Whitcroft2b474a12009-10-26 16:50:16 -07003594# EXPORT_SYMBOL should immediately follow the thing it is exporting, consider
3595# the whole statement.
3596#print "APW <$lines[$realline_next - 1]>\n";
3597 if (defined $realline_next &&
3598 exists $lines[$realline_next - 1] &&
3599 !defined $suppress_export{$realline_next} &&
3600 ($lines[$realline_next - 1] =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
3601 $lines[$realline_next - 1] =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
Andy Whitcroft3cbf62d2010-10-26 14:23:18 -07003602 # Handle definitions which produce identifiers with
3603 # a prefix:
3604 # XXX(foo);
3605 # EXPORT_SYMBOL(something_foo);
Andy Whitcroft653d4872007-06-23 17:16:34 -07003606 my $name = $1;
Andy Whitcroft87a53872012-01-10 15:10:04 -08003607 if ($stat =~ /^(?:.\s*}\s*\n)?.([A-Z_]+)\s*\(\s*($Ident)/ &&
Andy Whitcroft3cbf62d2010-10-26 14:23:18 -07003608 $name =~ /^${Ident}_$2/) {
3609#print "FOO C name<$name>\n";
3610 $suppress_export{$realline_next} = 1;
3611
3612 } elsif ($stat !~ /(?:
Andy Whitcroft2b474a12009-10-26 16:50:16 -07003613 \n.}\s*$|
Andy Whitcroft48012052008-10-15 22:02:34 -07003614 ^.DEFINE_$Ident\(\Q$name\E\)|
3615 ^.DECLARE_$Ident\(\Q$name\E\)|
3616 ^.LIST_HEAD\(\Q$name\E\)|
Andy Whitcroft2b474a12009-10-26 16:50:16 -07003617 ^.(?:$Storage\s+)?$Type\s*\(\s*\*\s*\Q$name\E\s*\)\s*\(|
3618 \b\Q$name\E(?:\s+$Attribute)*\s*(?:;|=|\[|\()
Andy Whitcroft48012052008-10-15 22:02:34 -07003619 )/x) {
Andy Whitcroft2b474a12009-10-26 16:50:16 -07003620#print "FOO A<$lines[$realline_next - 1]> stat<$stat> name<$name>\n";
3621 $suppress_export{$realline_next} = 2;
3622 } else {
3623 $suppress_export{$realline_next} = 1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003624 }
3625 }
Andy Whitcroft2b474a12009-10-26 16:50:16 -07003626 if (!defined $suppress_export{$linenr} &&
3627 $prevline =~ /^.\s*$/ &&
3628 ($line =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
3629 $line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
3630#print "FOO B <$lines[$linenr - 1]>\n";
3631 $suppress_export{$linenr} = 2;
3632 }
3633 if (defined $suppress_export{$linenr} &&
3634 $suppress_export{$linenr} == 2) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003635 WARN("EXPORT_SYMBOL",
3636 "EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
Andy Whitcroft2b474a12009-10-26 16:50:16 -07003637 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003638
Joe Eloff5150bda2010-08-09 17:21:00 -07003639# check for global initialisers.
Joe Perches6d32f7a2015-11-06 16:31:37 -08003640 if ($line =~ /^\+$Type\s*$Ident(?:\s+$Modifier)*\s*=\s*($zero_initializer)\s*;/) {
Joe Perchesd5e616f2013-09-11 14:23:54 -07003641 if (ERROR("GLOBAL_INITIALISERS",
Joe Perches6d32f7a2015-11-06 16:31:37 -08003642 "do not initialise globals to $1\n" . $herecurr) &&
Joe Perchesd5e616f2013-09-11 14:23:54 -07003643 $fix) {
Joe Perches6d32f7a2015-11-06 16:31:37 -08003644 $fixed[$fixlinenr] =~ s/(^.$Type\s*$Ident(?:\s+$Modifier)*)\s*=\s*$zero_initializer\s*;/$1;/;
Joe Perchesd5e616f2013-09-11 14:23:54 -07003645 }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07003646 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07003647# check for static initialisers.
Joe Perches6d32f7a2015-11-06 16:31:37 -08003648 if ($line =~ /^\+.*\bstatic\s.*=\s*($zero_initializer)\s*;/) {
Joe Perchesd5e616f2013-09-11 14:23:54 -07003649 if (ERROR("INITIALISED_STATIC",
Joe Perches6d32f7a2015-11-06 16:31:37 -08003650 "do not initialise statics to $1\n" .
Joe Perchesd5e616f2013-09-11 14:23:54 -07003651 $herecurr) &&
3652 $fix) {
Joe Perches6d32f7a2015-11-06 16:31:37 -08003653 $fixed[$fixlinenr] =~ s/(\bstatic\s.*?)\s*=\s*$zero_initializer\s*;/$1;/;
Joe Perchesd5e616f2013-09-11 14:23:54 -07003654 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003655 }
3656
Joe Perches18130872014-08-06 16:11:22 -07003657# check for misordered declarations of char/short/int/long with signed/unsigned
3658 while ($sline =~ m{(\b$TypeMisordered\b)}g) {
3659 my $tmp = trim($1);
3660 WARN("MISORDERED_TYPE",
3661 "type '$tmp' should be specified in [[un]signed] [short|int|long|long long] order\n" . $herecurr);
3662 }
3663
Joe Perchescb710ec2010-10-26 14:23:20 -07003664# check for static const char * arrays.
3665 if ($line =~ /\bstatic\s+const\s+char\s*\*\s*(\w+)\s*\[\s*\]\s*=\s*/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003666 WARN("STATIC_CONST_CHAR_ARRAY",
3667 "static const char * array should probably be static const char * const\n" .
Joe Perchescb710ec2010-10-26 14:23:20 -07003668 $herecurr);
3669 }
3670
3671# check for static char foo[] = "bar" declarations.
3672 if ($line =~ /\bstatic\s+char\s+(\w+)\s*\[\s*\]\s*=\s*"/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003673 WARN("STATIC_CONST_CHAR_ARRAY",
3674 "static char array declaration should probably be static const char\n" .
Joe Perchescb710ec2010-10-26 14:23:20 -07003675 $herecurr);
3676 }
3677
Joe Perchesab7e23f2015-04-16 12:44:22 -07003678# check for const <foo> const where <foo> is not a pointer or array type
3679 if ($sline =~ /\bconst\s+($BasicType)\s+const\b/) {
3680 my $found = $1;
3681 if ($sline =~ /\bconst\s+\Q$found\E\s+const\b\s*\*/) {
3682 WARN("CONST_CONST",
3683 "'const $found const *' should probably be 'const $found * const'\n" . $herecurr);
3684 } elsif ($sline !~ /\bconst\s+\Q$found\E\s+const\s+\w+\s*\[/) {
3685 WARN("CONST_CONST",
3686 "'const $found const' should probably be 'const $found'\n" . $herecurr);
3687 }
3688 }
3689
Joe Perches9b0fa602014-04-03 14:49:18 -07003690# check for non-global char *foo[] = {"bar", ...} declarations.
3691 if ($line =~ /^.\s+(?:static\s+|const\s+)?char\s+\*\s*\w+\s*\[\s*\]\s*=\s*\{/) {
3692 WARN("STATIC_CONST_CHAR_ARRAY",
3693 "char * array declaration might be better as static const\n" .
3694 $herecurr);
3695 }
3696
Joe Perchesb598b672015-04-16 12:44:36 -07003697# check for sizeof(foo)/sizeof(foo[0]) that could be ARRAY_SIZE(foo)
3698 if ($line =~ m@\bsizeof\s*\(\s*($Lval)\s*\)@) {
3699 my $array = $1;
3700 if ($line =~ m@\b(sizeof\s*\(\s*\Q$array\E\s*\)\s*/\s*sizeof\s*\(\s*\Q$array\E\s*\[\s*0\s*\]\s*\))@) {
3701 my $array_div = $1;
3702 if (WARN("ARRAY_SIZE",
3703 "Prefer ARRAY_SIZE($array)\n" . $herecurr) &&
3704 $fix) {
3705 $fixed[$fixlinenr] =~ s/\Q$array_div\E/ARRAY_SIZE($array)/;
3706 }
3707 }
3708 }
3709
Joe Perchesb36190c2014-01-27 17:07:18 -08003710# check for function declarations without arguments like "int foo()"
3711 if ($line =~ /(\b$Type\s+$Ident)\s*\(\s*\)/) {
3712 if (ERROR("FUNCTION_WITHOUT_ARGS",
3713 "Bad function definition - $1() should probably be $1(void)\n" . $herecurr) &&
3714 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07003715 $fixed[$fixlinenr] =~ s/(\b($Type)\s+($Ident))\s*\(\s*\)/$2 $3(void)/;
Joe Perchesb36190c2014-01-27 17:07:18 -08003716 }
3717 }
3718
Andy Whitcroft653d4872007-06-23 17:16:34 -07003719# check for new typedefs, only function parameters and sparse annotations
3720# make sense.
3721 if ($line =~ /\btypedef\s/ &&
Andy Whitcroft80545762009-01-06 14:41:26 -08003722 $line !~ /\btypedef\s+$Type\s*\(\s*\*?$Ident\s*\)\s*\(/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07003723 $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ &&
Andy Whitcroft8ed22ca2008-10-15 22:02:32 -07003724 $line !~ /\b$typeTypedefs\b/ &&
Michael S. Tsirkin46d832f2016-12-11 06:29:58 +02003725 $line !~ /\b__bitwise\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003726 WARN("NEW_TYPEDEFS",
3727 "do not add new typedefs\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003728 }
3729
3730# * goes on variable not on type
Andy Whitcroft65863862009-01-06 14:41:21 -08003731 # (char*[ const])
Andy Whitcroftbfcb2cc2012-01-10 15:10:15 -08003732 while ($line =~ m{(\($NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)\))}g) {
3733 #print "AA<$1>\n";
Joe Perches3705ce52013-07-03 15:05:31 -07003734 my ($ident, $from, $to) = ($1, $2, $2);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07003735
Andy Whitcroft65863862009-01-06 14:41:21 -08003736 # Should start with a space.
3737 $to =~ s/^(\S)/ $1/;
3738 # Should not end with a space.
3739 $to =~ s/\s+$//;
3740 # '*'s should not have spaces between.
Andy Whitcroftf9a0b3d2009-01-15 13:51:05 -08003741 while ($to =~ s/\*\s+\*/\*\*/) {
Andy Whitcroft65863862009-01-06 14:41:21 -08003742 }
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07003743
Joe Perches3705ce52013-07-03 15:05:31 -07003744## print "1: from<$from> to<$to> ident<$ident>\n";
Andy Whitcroft65863862009-01-06 14:41:21 -08003745 if ($from ne $to) {
Joe Perches3705ce52013-07-03 15:05:31 -07003746 if (ERROR("POINTER_LOCATION",
3747 "\"(foo$from)\" should be \"(foo$to)\"\n" . $herecurr) &&
3748 $fix) {
3749 my $sub_from = $ident;
3750 my $sub_to = $ident;
3751 $sub_to =~ s/\Q$from\E/$to/;
Joe Perches194f66f2014-08-06 16:11:03 -07003752 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07003753 s@\Q$sub_from\E@$sub_to@;
3754 }
Andy Whitcroft65863862009-01-06 14:41:21 -08003755 }
Andy Whitcroftbfcb2cc2012-01-10 15:10:15 -08003756 }
3757 while ($line =~ m{(\b$NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)($Ident))}g) {
3758 #print "BB<$1>\n";
Joe Perches3705ce52013-07-03 15:05:31 -07003759 my ($match, $from, $to, $ident) = ($1, $2, $2, $3);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07003760
Andy Whitcroft65863862009-01-06 14:41:21 -08003761 # Should start with a space.
3762 $to =~ s/^(\S)/ $1/;
3763 # Should not end with a space.
3764 $to =~ s/\s+$//;
3765 # '*'s should not have spaces between.
Andy Whitcroftf9a0b3d2009-01-15 13:51:05 -08003766 while ($to =~ s/\*\s+\*/\*\*/) {
Andy Whitcroft65863862009-01-06 14:41:21 -08003767 }
3768 # Modifiers should have spaces.
3769 $to =~ s/(\b$Modifier$)/$1 /;
3770
Joe Perches3705ce52013-07-03 15:05:31 -07003771## print "2: from<$from> to<$to> ident<$ident>\n";
Andy Whitcroft667026e2009-02-27 14:03:08 -08003772 if ($from ne $to && $ident !~ /^$Modifier$/) {
Joe Perches3705ce52013-07-03 15:05:31 -07003773 if (ERROR("POINTER_LOCATION",
3774 "\"foo${from}bar\" should be \"foo${to}bar\"\n" . $herecurr) &&
3775 $fix) {
3776
3777 my $sub_from = $match;
3778 my $sub_to = $match;
3779 $sub_to =~ s/\Q$from\E/$to/;
Joe Perches194f66f2014-08-06 16:11:03 -07003780 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07003781 s@\Q$sub_from\E@$sub_to@;
3782 }
Andy Whitcroft65863862009-01-06 14:41:21 -08003783 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003784 }
3785
Joe Perches9d3e3c72015-09-09 15:37:27 -07003786# avoid BUG() or BUG_ON()
3787 if ($line =~ /\b(?:BUG|BUG_ON)\b/) {
3788 my $msg_type = \&WARN;
3789 $msg_type = \&CHK if ($file);
3790 &{$msg_type}("AVOID_BUG",
3791 "Avoid crashing the kernel - try using WARN_ON & recovery code rather than BUG() or BUG_ON()\n" . $herecurr);
3792 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003793
Joe Perches9d3e3c72015-09-09 15:37:27 -07003794# avoid LINUX_VERSION_CODE
Andy Whitcroft8905a672007-11-28 16:21:06 -08003795 if ($line =~ /\bLINUX_VERSION_CODE\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003796 WARN("LINUX_VERSION_CODE",
3797 "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 -08003798 }
3799
Joe Perches17441222011-06-15 15:08:17 -07003800# check for uses of printk_ratelimit
3801 if ($line =~ /\bprintk_ratelimit\s*\(/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003802 WARN("PRINTK_RATELIMITED",
Joe Perches101ee682015-02-13 14:38:54 -08003803 "Prefer printk_ratelimited or pr_<level>_ratelimited to printk_ratelimit\n" . $herecurr);
Joe Perches17441222011-06-15 15:08:17 -07003804 }
3805
Andy Whitcroft00df3442007-06-08 13:47:06 -07003806# printk should use KERN_* levels. Note that follow on printk's on the
3807# same line do not need a level, so we use the current block context
3808# to try and find and validate the current printk. In summary the current
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003809# printk includes all preceding printk's which have no newline on the end.
Andy Whitcroft00df3442007-06-08 13:47:06 -07003810# we assume the first bad printk is the one to report.
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07003811 if ($line =~ /\bprintk\((?!KERN_)\s*"/) {
Andy Whitcroft00df3442007-06-08 13:47:06 -07003812 my $ok = 0;
3813 for (my $ln = $linenr - 1; $ln >= $first_line; $ln--) {
3814 #print "CHECK<$lines[$ln - 1]\n";
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003815 # we have a preceding printk if it ends
Andy Whitcroft00df3442007-06-08 13:47:06 -07003816 # with "\n" ignore it, else it is to blame
3817 if ($lines[$ln - 1] =~ m{\bprintk\(}) {
3818 if ($rawlines[$ln - 1] !~ m{\\n"}) {
3819 $ok = 1;
3820 }
3821 last;
3822 }
3823 }
3824 if ($ok == 0) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003825 WARN("PRINTK_WITHOUT_KERN_LEVEL",
3826 "printk() should include KERN_ facility level\n" . $herecurr);
Andy Whitcroft00df3442007-06-08 13:47:06 -07003827 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003828 }
3829
Joe Perches243f3802012-05-31 16:26:09 -07003830 if ($line =~ /\bprintk\s*\(\s*KERN_([A-Z]+)/) {
3831 my $orig = $1;
3832 my $level = lc($orig);
3833 $level = "warn" if ($level eq "warning");
Joe Perches8f26b832012-10-04 17:13:32 -07003834 my $level2 = $level;
3835 $level2 = "dbg" if ($level eq "debug");
Joe Perches243f3802012-05-31 16:26:09 -07003836 WARN("PREFER_PR_LEVEL",
Yogesh Chaudharidaa8b052014-04-03 14:49:23 -07003837 "Prefer [subsystem eg: netdev]_$level2([subsystem]dev, ... then dev_$level2(dev, ... then pr_$level(... to printk(KERN_$orig ...\n" . $herecurr);
Joe Perches243f3802012-05-31 16:26:09 -07003838 }
3839
3840 if ($line =~ /\bpr_warning\s*\(/) {
Joe Perchesd5e616f2013-09-11 14:23:54 -07003841 if (WARN("PREFER_PR_LEVEL",
3842 "Prefer pr_warn(... to pr_warning(...\n" . $herecurr) &&
3843 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07003844 $fixed[$fixlinenr] =~
Joe Perchesd5e616f2013-09-11 14:23:54 -07003845 s/\bpr_warning\b/pr_warn/;
3846 }
Joe Perches243f3802012-05-31 16:26:09 -07003847 }
3848
Joe Perchesdc139312013-02-21 16:44:13 -08003849 if ($line =~ /\bdev_printk\s*\(\s*KERN_([A-Z]+)/) {
3850 my $orig = $1;
3851 my $level = lc($orig);
3852 $level = "warn" if ($level eq "warning");
3853 $level = "dbg" if ($level eq "debug");
3854 WARN("PREFER_DEV_LEVEL",
3855 "Prefer dev_$level(... to dev_printk(KERN_$orig, ...\n" . $herecurr);
3856 }
3857
Andy Lutomirski91c9afa2015-04-16 12:44:44 -07003858# ENOSYS means "bad syscall nr" and nothing else. This will have a small
3859# number of false positives, but assembly files are not checked, so at
3860# least the arch entry code will not trigger this warning.
3861 if ($line =~ /\bENOSYS\b/) {
3862 WARN("ENOSYS",
3863 "ENOSYS means 'invalid syscall nr' and nothing else\n" . $herecurr);
3864 }
3865
Andy Whitcroft653d4872007-06-23 17:16:34 -07003866# function brace can't be on same line, except for #defines of do while,
3867# or if closed on same line
Joe Perches8d182472014-08-06 16:11:12 -07003868 if (($line=~/$Type\s*$Ident\(.*\).*\s*{/) and
Eddie Kovsky4e5d56b2015-09-09 15:37:52 -07003869 !($line=~/\#\s*define.*do\s\{/) and !($line=~/}/)) {
Joe Perches8d182472014-08-06 16:11:12 -07003870 if (ERROR("OPEN_BRACE",
3871 "open brace '{' following function declarations go on the next line\n" . $herecurr) &&
3872 $fix) {
3873 fix_delete_line($fixlinenr, $rawline);
3874 my $fixed_line = $rawline;
3875 $fixed_line =~ /(^..*$Type\s*$Ident\(.*\)\s*){(.*)$/;
3876 my $line1 = $1;
3877 my $line2 = $2;
3878 fix_insert_line($fixlinenr, ltrim($line1));
3879 fix_insert_line($fixlinenr, "\+{");
3880 if ($line2 !~ /^\s*$/) {
3881 fix_insert_line($fixlinenr, "\+\t" . trim($line2));
3882 }
3883 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003884 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07003885
Andy Whitcroft8905a672007-11-28 16:21:06 -08003886# open braces for enum, union and struct go on the same line.
3887 if ($line =~ /^.\s*{/ &&
3888 $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
Joe Perches8d182472014-08-06 16:11:12 -07003889 if (ERROR("OPEN_BRACE",
3890 "open brace '{' following $1 go on the same line\n" . $hereprev) &&
3891 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
3892 fix_delete_line($fixlinenr - 1, $prevrawline);
3893 fix_delete_line($fixlinenr, $rawline);
3894 my $fixedline = rtrim($prevrawline) . " {";
3895 fix_insert_line($fixlinenr, $fixedline);
3896 $fixedline = $rawline;
3897 $fixedline =~ s/^(.\s*){\s*/$1\t/;
3898 if ($fixedline !~ /^\+\s*$/) {
3899 fix_insert_line($fixlinenr, $fixedline);
3900 }
3901 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08003902 }
3903
Andy Whitcroft0c73b4e2010-10-26 14:23:15 -07003904# missing space after union, struct or enum definition
Joe Perches3705ce52013-07-03 15:05:31 -07003905 if ($line =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident){1,2}[=\{]/) {
3906 if (WARN("SPACING",
3907 "missing space after $1 definition\n" . $herecurr) &&
3908 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07003909 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07003910 s/^(.\s*(?:typedef\s+)?(?:enum|union|struct)(?:\s+$Ident){1,2})([=\{])/$1 $2/;
3911 }
Andy Whitcroft0c73b4e2010-10-26 14:23:15 -07003912 }
3913
Joe Perches31070b52014-01-23 15:54:49 -08003914# Function pointer declarations
3915# check spacing between type, funcptr, and args
3916# canonical declaration is "type (*funcptr)(args...)"
Joe Perches91f72e92014-04-03 14:49:12 -07003917 if ($line =~ /^.\s*($Declare)\((\s*)\*(\s*)($Ident)(\s*)\)(\s*)\(/) {
Joe Perches31070b52014-01-23 15:54:49 -08003918 my $declare = $1;
3919 my $pre_pointer_space = $2;
3920 my $post_pointer_space = $3;
3921 my $funcname = $4;
3922 my $post_funcname_space = $5;
3923 my $pre_args_space = $6;
3924
Joe Perches91f72e92014-04-03 14:49:12 -07003925# the $Declare variable will capture all spaces after the type
3926# so check it for a missing trailing missing space but pointer return types
3927# don't need a space so don't warn for those.
3928 my $post_declare_space = "";
3929 if ($declare =~ /(\s+)$/) {
3930 $post_declare_space = $1;
3931 $declare = rtrim($declare);
3932 }
3933 if ($declare !~ /\*$/ && $post_declare_space =~ /^$/) {
Joe Perches31070b52014-01-23 15:54:49 -08003934 WARN("SPACING",
3935 "missing space after return type\n" . $herecurr);
Joe Perches91f72e92014-04-03 14:49:12 -07003936 $post_declare_space = " ";
Joe Perches31070b52014-01-23 15:54:49 -08003937 }
3938
3939# unnecessary space "type (*funcptr)(args...)"
Joe Perches91f72e92014-04-03 14:49:12 -07003940# This test is not currently implemented because these declarations are
3941# equivalent to
3942# int foo(int bar, ...)
3943# and this is form shouldn't/doesn't generate a checkpatch warning.
3944#
3945# elsif ($declare =~ /\s{2,}$/) {
3946# WARN("SPACING",
3947# "Multiple spaces after return type\n" . $herecurr);
3948# }
Joe Perches31070b52014-01-23 15:54:49 -08003949
3950# unnecessary space "type ( *funcptr)(args...)"
3951 if (defined $pre_pointer_space &&
3952 $pre_pointer_space =~ /^\s/) {
3953 WARN("SPACING",
3954 "Unnecessary space after function pointer open parenthesis\n" . $herecurr);
3955 }
3956
3957# unnecessary space "type (* funcptr)(args...)"
3958 if (defined $post_pointer_space &&
3959 $post_pointer_space =~ /^\s/) {
3960 WARN("SPACING",
3961 "Unnecessary space before function pointer name\n" . $herecurr);
3962 }
3963
3964# unnecessary space "type (*funcptr )(args...)"
3965 if (defined $post_funcname_space &&
3966 $post_funcname_space =~ /^\s/) {
3967 WARN("SPACING",
3968 "Unnecessary space after function pointer name\n" . $herecurr);
3969 }
3970
3971# unnecessary space "type (*funcptr) (args...)"
3972 if (defined $pre_args_space &&
3973 $pre_args_space =~ /^\s/) {
3974 WARN("SPACING",
3975 "Unnecessary space before function pointer arguments\n" . $herecurr);
3976 }
3977
3978 if (show_type("SPACING") && $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07003979 $fixed[$fixlinenr] =~
Joe Perches91f72e92014-04-03 14:49:12 -07003980 s/^(.\s*)$Declare\s*\(\s*\*\s*$Ident\s*\)\s*\(/$1 . $declare . $post_declare_space . '(*' . $funcname . ')('/ex;
Joe Perches31070b52014-01-23 15:54:49 -08003981 }
3982 }
3983
Andy Whitcroft8d31cfc2008-07-23 21:29:02 -07003984# check for spacing round square brackets; allowed:
3985# 1. with a type on the left -- int [] a;
Andy Whitcroftfe2a7db2008-10-15 22:02:15 -07003986# 2. at the beginning of a line for slice initialisers -- [0...10] = 5,
3987# 3. inside a curly brace -- = { [0...10] = 5 }
Andy Whitcroft8d31cfc2008-07-23 21:29:02 -07003988 while ($line =~ /(.*?\s)\[/g) {
3989 my ($where, $prefix) = ($-[1], $1);
3990 if ($prefix !~ /$Type\s+$/ &&
Andy Whitcroftfe2a7db2008-10-15 22:02:15 -07003991 ($where != 0 || $prefix !~ /^.\s+$/) &&
Andy Whitcroftdaebc532012-03-23 15:02:17 -07003992 $prefix !~ /[{,]\s+$/) {
Joe Perches3705ce52013-07-03 15:05:31 -07003993 if (ERROR("BRACKET_SPACE",
3994 "space prohibited before open square bracket '['\n" . $herecurr) &&
3995 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07003996 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07003997 s/^(\+.*?)\s+\[/$1\[/;
3998 }
Andy Whitcroft8d31cfc2008-07-23 21:29:02 -07003999 }
4000 }
4001
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07004002# check for spaces between functions and their parentheses.
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07004003 while ($line =~ /($Ident)\s+\(/g) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08004004 my $name = $1;
Andy Whitcroft773647a2008-03-28 14:15:58 -07004005 my $ctx_before = substr($line, 0, $-[1]);
4006 my $ctx = "$ctx_before$name";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08004007
4008 # Ignore those directives where spaces _are_ permitted.
Andy Whitcroft773647a2008-03-28 14:15:58 -07004009 if ($name =~ /^(?:
4010 if|for|while|switch|return|case|
4011 volatile|__volatile__|
4012 __attribute__|format|__extension__|
4013 asm|__asm__)$/x)
4014 {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08004015 # cpp #define statements have non-optional spaces, ie
4016 # if there is a space between the name and the open
4017 # parenthesis it is simply not a parameter group.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004018 } elsif ($ctx_before =~ /^.\s*\#\s*define\s*$/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07004019
4020 # cpp #elif statement condition may start with a (
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004021 } elsif ($ctx =~ /^.\s*\#\s*elif\s*$/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08004022
4023 # If this whole things ends with a type its most
4024 # likely a typedef for a function.
Andy Whitcroft773647a2008-03-28 14:15:58 -07004025 } elsif ($ctx =~ /$Type$/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08004026
4027 } else {
Joe Perches3705ce52013-07-03 15:05:31 -07004028 if (WARN("SPACING",
4029 "space prohibited between function name and open parenthesis '('\n" . $herecurr) &&
4030 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004031 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07004032 s/\b$name\s+\(/$name\(/;
4033 }
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07004034 }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07004035 }
Eric Nelson9a4cad42012-05-31 16:26:09 -07004036
Andy Whitcroft653d4872007-06-23 17:16:34 -07004037# Check operator spacing.
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004038 if (!($line=~/\#\s*include/)) {
Joe Perches3705ce52013-07-03 15:05:31 -07004039 my $fixed_line = "";
4040 my $line_fixed = 0;
4041
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07004042 my $ops = qr{
4043 <<=|>>=|<=|>=|==|!=|
4044 \+=|-=|\*=|\/=|%=|\^=|\|=|&=|
4045 =>|->|<<|>>|<|>|=|!|~|
Andy Whitcroft1f65f942008-07-23 21:29:10 -07004046 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%|
Joe Perches84731622013-11-12 15:10:05 -08004047 \?:|\?|:
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07004048 }x;
Andy Whitcroftcf655042008-03-04 14:28:20 -08004049 my @elements = split(/($ops|;)/, $opline);
Joe Perches3705ce52013-07-03 15:05:31 -07004050
4051## print("element count: <" . $#elements . ">\n");
4052## foreach my $el (@elements) {
4053## print("el: <$el>\n");
4054## }
4055
4056 my @fix_elements = ();
Andy Whitcroft00df3442007-06-08 13:47:06 -07004057 my $off = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07004058
Joe Perches3705ce52013-07-03 15:05:31 -07004059 foreach my $el (@elements) {
4060 push(@fix_elements, substr($rawline, $off, length($el)));
4061 $off += length($el);
4062 }
4063
4064 $off = 0;
4065
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07004066 my $blank = copy_spacing($opline);
Joe Perchesb34c6482013-09-11 14:24:01 -07004067 my $last_after = -1;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07004068
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004069 for (my $n = 0; $n < $#elements; $n += 2) {
Joe Perches3705ce52013-07-03 15:05:31 -07004070
4071 my $good = $fix_elements[$n] . $fix_elements[$n + 1];
4072
4073## print("n: <$n> good: <$good>\n");
4074
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004075 $off += length($elements[$n]);
4076
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004077 # Pick up the preceding and succeeding characters.
Andy Whitcroft773647a2008-03-28 14:15:58 -07004078 my $ca = substr($opline, 0, $off);
4079 my $cc = '';
4080 if (length($opline) >= ($off + length($elements[$n + 1]))) {
4081 $cc = substr($opline, $off + length($elements[$n + 1]));
4082 }
4083 my $cb = "$ca$;$cc";
4084
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004085 my $a = '';
4086 $a = 'V' if ($elements[$n] ne '');
4087 $a = 'W' if ($elements[$n] =~ /\s$/);
Andy Whitcroftcf655042008-03-04 14:28:20 -08004088 $a = 'C' if ($elements[$n] =~ /$;$/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004089 $a = 'B' if ($elements[$n] =~ /(\[|\()$/);
4090 $a = 'O' if ($elements[$n] eq '');
Andy Whitcroft773647a2008-03-28 14:15:58 -07004091 $a = 'E' if ($ca =~ /^\s*$/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004092
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004093 my $op = $elements[$n + 1];
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004094
4095 my $c = '';
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004096 if (defined $elements[$n + 2]) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004097 $c = 'V' if ($elements[$n + 2] ne '');
4098 $c = 'W' if ($elements[$n + 2] =~ /^\s/);
Andy Whitcroftcf655042008-03-04 14:28:20 -08004099 $c = 'C' if ($elements[$n + 2] =~ /^$;/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004100 $c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
4101 $c = 'O' if ($elements[$n + 2] eq '');
Andy Whitcroft8b1b3372009-01-06 14:41:27 -08004102 $c = 'E' if ($elements[$n + 2] =~ /^\s*\\$/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004103 } else {
4104 $c = 'E';
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004105 }
4106
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004107 my $ctx = "${a}x${c}";
4108
4109 my $at = "(ctx:$ctx)";
4110
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07004111 my $ptr = substr($blank, 0, $off) . "^";
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07004112 my $hereptr = "$hereline$ptr\n";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004113
Andy Whitcroft74048ed2008-07-23 21:29:10 -07004114 # Pull out the value of this operator.
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07004115 my $op_type = substr($curr_values, $off + 1, 1);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004116
Andy Whitcroft1f65f942008-07-23 21:29:10 -07004117 # Get the full operator variant.
4118 my $opv = $op . substr($curr_vars, $off, 1);
4119
Andy Whitcroft13214ad2008-02-08 04:22:03 -08004120 # Ignore operators passed as parameters.
4121 if ($op_type ne 'V' &&
Sam Bobroffd7fe8062015-04-16 12:44:39 -07004122 $ca =~ /\s$/ && $cc =~ /^\s*[,\)]/) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08004123
Andy Whitcroftcf655042008-03-04 14:28:20 -08004124# # Ignore comments
4125# } elsif ($op =~ /^$;+$/) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08004126
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07004127 # ; should have either the end of line or a space or \ after it
Andy Whitcroft13214ad2008-02-08 04:22:03 -08004128 } elsif ($op eq ';') {
Andy Whitcroftcf655042008-03-04 14:28:20 -08004129 if ($ctx !~ /.x[WEBC]/ &&
4130 $cc !~ /^\\/ && $cc !~ /^;/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004131 if (ERROR("SPACING",
4132 "space required after that '$op' $at\n" . $hereptr)) {
Joe Perchesb34c6482013-09-11 14:24:01 -07004133 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]) . " ";
Joe Perches3705ce52013-07-03 15:05:31 -07004134 $line_fixed = 1;
4135 }
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07004136 }
4137
4138 # // is a comment
4139 } elsif ($op eq '//') {
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004140
Joe Perchesb00e4812014-04-03 14:49:33 -07004141 # : when part of a bitfield
4142 } elsif ($opv eq ':B') {
4143 # skip the bitfield test for now
4144
Andy Whitcroft1f65f942008-07-23 21:29:10 -07004145 # No spaces for:
4146 # ->
Joe Perchesb00e4812014-04-03 14:49:33 -07004147 } elsif ($op eq '->') {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004148 if ($ctx =~ /Wx.|.xW/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004149 if (ERROR("SPACING",
4150 "spaces prohibited around that '$op' $at\n" . $hereptr)) {
Joe Perchesb34c6482013-09-11 14:24:01 -07004151 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
Joe Perches3705ce52013-07-03 15:05:31 -07004152 if (defined $fix_elements[$n + 2]) {
4153 $fix_elements[$n + 2] =~ s/^\s+//;
4154 }
Joe Perchesb34c6482013-09-11 14:24:01 -07004155 $line_fixed = 1;
Joe Perches3705ce52013-07-03 15:05:31 -07004156 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004157 }
4158
Joe Perches23810972014-12-10 15:51:32 -08004159 # , must not have a space before and must have a space on the right.
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004160 } elsif ($op eq ',') {
Joe Perches23810972014-12-10 15:51:32 -08004161 my $rtrim_before = 0;
4162 my $space_after = 0;
4163 if ($ctx =~ /Wx./) {
4164 if (ERROR("SPACING",
4165 "space prohibited before that '$op' $at\n" . $hereptr)) {
4166 $line_fixed = 1;
4167 $rtrim_before = 1;
4168 }
4169 }
Andy Whitcroftcf655042008-03-04 14:28:20 -08004170 if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004171 if (ERROR("SPACING",
4172 "space required after that '$op' $at\n" . $hereptr)) {
Joe Perches3705ce52013-07-03 15:05:31 -07004173 $line_fixed = 1;
Joe Perchesb34c6482013-09-11 14:24:01 -07004174 $last_after = $n;
Joe Perches23810972014-12-10 15:51:32 -08004175 $space_after = 1;
4176 }
4177 }
4178 if ($rtrim_before || $space_after) {
4179 if ($rtrim_before) {
4180 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
4181 } else {
4182 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]);
4183 }
4184 if ($space_after) {
4185 $good .= " ";
Joe Perches3705ce52013-07-03 15:05:31 -07004186 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004187 }
4188
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07004189 # '*' as part of a type definition -- reported already.
Andy Whitcroft74048ed2008-07-23 21:29:10 -07004190 } elsif ($opv eq '*_') {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07004191 #warn "'*' is part of type\n";
4192
4193 # unary operators should have a space before and
4194 # none after. May be left adjacent to another
4195 # unary operator, or a cast
4196 } elsif ($op eq '!' || $op eq '~' ||
Andy Whitcroft74048ed2008-07-23 21:29:10 -07004197 $opv eq '*U' || $opv eq '-U' ||
Andy Whitcroft0d413862008-10-15 22:02:16 -07004198 $opv eq '&U' || $opv eq '&&U') {
Andy Whitcroftcf655042008-03-04 14:28:20 -08004199 if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004200 if (ERROR("SPACING",
4201 "space required before that '$op' $at\n" . $hereptr)) {
Joe Perchesb34c6482013-09-11 14:24:01 -07004202 if ($n != $last_after + 2) {
4203 $good = $fix_elements[$n] . " " . ltrim($fix_elements[$n + 1]);
4204 $line_fixed = 1;
4205 }
Joe Perches3705ce52013-07-03 15:05:31 -07004206 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004207 }
Andy Whitcrofta3340b32009-02-27 14:03:07 -08004208 if ($op eq '*' && $cc =~/\s*$Modifier\b/) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07004209 # A unary '*' may be const
4210
4211 } elsif ($ctx =~ /.xW/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004212 if (ERROR("SPACING",
4213 "space prohibited after that '$op' $at\n" . $hereptr)) {
Joe Perchesb34c6482013-09-11 14:24:01 -07004214 $good = $fix_elements[$n] . rtrim($fix_elements[$n + 1]);
Joe Perches3705ce52013-07-03 15:05:31 -07004215 if (defined $fix_elements[$n + 2]) {
4216 $fix_elements[$n + 2] =~ s/^\s+//;
4217 }
Joe Perchesb34c6482013-09-11 14:24:01 -07004218 $line_fixed = 1;
Joe Perches3705ce52013-07-03 15:05:31 -07004219 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004220 }
4221
4222 # unary ++ and unary -- are allowed no space on one side.
4223 } elsif ($op eq '++' or $op eq '--') {
Andy Whitcroft773647a2008-03-28 14:15:58 -07004224 if ($ctx !~ /[WEOBC]x[^W]/ && $ctx !~ /[^W]x[WOBEC]/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004225 if (ERROR("SPACING",
4226 "space required one side of that '$op' $at\n" . $hereptr)) {
Joe Perchesb34c6482013-09-11 14:24:01 -07004227 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]) . " ";
Joe Perches3705ce52013-07-03 15:05:31 -07004228 $line_fixed = 1;
4229 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004230 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07004231 if ($ctx =~ /Wx[BE]/ ||
4232 ($ctx =~ /Wx./ && $cc =~ /^;/)) {
Joe Perches3705ce52013-07-03 15:05:31 -07004233 if (ERROR("SPACING",
4234 "space prohibited before that '$op' $at\n" . $hereptr)) {
Joe Perchesb34c6482013-09-11 14:24:01 -07004235 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
Joe Perches3705ce52013-07-03 15:05:31 -07004236 $line_fixed = 1;
4237 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07004238 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07004239 if ($ctx =~ /ExW/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004240 if (ERROR("SPACING",
4241 "space prohibited after that '$op' $at\n" . $hereptr)) {
Joe Perchesb34c6482013-09-11 14:24:01 -07004242 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]);
Joe Perches3705ce52013-07-03 15:05:31 -07004243 if (defined $fix_elements[$n + 2]) {
4244 $fix_elements[$n + 2] =~ s/^\s+//;
4245 }
Joe Perchesb34c6482013-09-11 14:24:01 -07004246 $line_fixed = 1;
Joe Perches3705ce52013-07-03 15:05:31 -07004247 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07004248 }
4249
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004250 # << and >> may either have or not have spaces both sides
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07004251 } elsif ($op eq '<<' or $op eq '>>' or
4252 $op eq '&' or $op eq '^' or $op eq '|' or
4253 $op eq '+' or $op eq '-' or
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08004254 $op eq '*' or $op eq '/' or
4255 $op eq '%')
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004256 {
Joe Perchesd2e025f2015-02-13 14:38:57 -08004257 if ($check) {
4258 if (defined $fix_elements[$n + 2] && $ctx !~ /[EW]x[EW]/) {
4259 if (CHK("SPACING",
4260 "spaces preferred around that '$op' $at\n" . $hereptr)) {
4261 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
4262 $fix_elements[$n + 2] =~ s/^\s+//;
4263 $line_fixed = 1;
4264 }
4265 } elsif (!defined $fix_elements[$n + 2] && $ctx !~ /Wx[OE]/) {
4266 if (CHK("SPACING",
4267 "space preferred before that '$op' $at\n" . $hereptr)) {
4268 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]);
4269 $line_fixed = 1;
4270 }
4271 }
4272 } elsif ($ctx =~ /Wx[^WCE]|[^WCE]xW/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004273 if (ERROR("SPACING",
4274 "need consistent spacing around '$op' $at\n" . $hereptr)) {
Joe Perchesb34c6482013-09-11 14:24:01 -07004275 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
4276 if (defined $fix_elements[$n + 2]) {
4277 $fix_elements[$n + 2] =~ s/^\s+//;
4278 }
Joe Perches3705ce52013-07-03 15:05:31 -07004279 $line_fixed = 1;
4280 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004281 }
4282
Andy Whitcroft1f65f942008-07-23 21:29:10 -07004283 # A colon needs no spaces before when it is
4284 # terminating a case value or a label.
4285 } elsif ($opv eq ':C' || $opv eq ':L') {
4286 if ($ctx =~ /Wx./) {
Joe Perches3705ce52013-07-03 15:05:31 -07004287 if (ERROR("SPACING",
4288 "space prohibited before that '$op' $at\n" . $hereptr)) {
Joe Perchesb34c6482013-09-11 14:24:01 -07004289 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
Joe Perches3705ce52013-07-03 15:05:31 -07004290 $line_fixed = 1;
4291 }
Andy Whitcroft1f65f942008-07-23 21:29:10 -07004292 }
4293
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004294 # All the others need spaces both sides.
Andy Whitcroftcf655042008-03-04 14:28:20 -08004295 } elsif ($ctx !~ /[EWC]x[CWE]/) {
Andy Whitcroft1f65f942008-07-23 21:29:10 -07004296 my $ok = 0;
4297
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07004298 # Ignore email addresses <foo@bar>
Andy Whitcroft1f65f942008-07-23 21:29:10 -07004299 if (($op eq '<' &&
4300 $cc =~ /^\S+\@\S+>/) ||
4301 ($op eq '>' &&
4302 $ca =~ /<\S+\@\S+$/))
4303 {
4304 $ok = 1;
4305 }
4306
Joe Perchese0df7e12015-04-16 12:44:53 -07004307 # for asm volatile statements
4308 # ignore a colon with another
4309 # colon immediately before or after
4310 if (($op eq ':') &&
4311 ($ca =~ /:$/ || $cc =~ /^:/)) {
4312 $ok = 1;
4313 }
4314
Joe Perches84731622013-11-12 15:10:05 -08004315 # messages are ERROR, but ?: are CHK
Andy Whitcroft1f65f942008-07-23 21:29:10 -07004316 if ($ok == 0) {
Joe Perches84731622013-11-12 15:10:05 -08004317 my $msg_type = \&ERROR;
4318 $msg_type = \&CHK if (($op eq '?:' || $op eq '?' || $op eq ':') && $ctx =~ /VxV/);
4319
4320 if (&{$msg_type}("SPACING",
4321 "spaces required around that '$op' $at\n" . $hereptr)) {
Joe Perchesb34c6482013-09-11 14:24:01 -07004322 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
4323 if (defined $fix_elements[$n + 2]) {
4324 $fix_elements[$n + 2] =~ s/^\s+//;
4325 }
Joe Perches3705ce52013-07-03 15:05:31 -07004326 $line_fixed = 1;
4327 }
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07004328 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004329 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004330 $off += length($elements[$n + 1]);
Joe Perches3705ce52013-07-03 15:05:31 -07004331
4332## print("n: <$n> GOOD: <$good>\n");
4333
4334 $fixed_line = $fixed_line . $good;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004335 }
Joe Perches3705ce52013-07-03 15:05:31 -07004336
4337 if (($#elements % 2) == 0) {
4338 $fixed_line = $fixed_line . $fix_elements[$#elements];
4339 }
4340
Joe Perches194f66f2014-08-06 16:11:03 -07004341 if ($fix && $line_fixed && $fixed_line ne $fixed[$fixlinenr]) {
4342 $fixed[$fixlinenr] = $fixed_line;
Joe Perches3705ce52013-07-03 15:05:31 -07004343 }
4344
4345
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004346 }
4347
Joe Perches786b6322013-07-03 15:05:32 -07004348# check for whitespace before a non-naked semicolon
Joe Perchesd2e248e2014-01-23 15:54:41 -08004349 if ($line =~ /^\+.*\S\s+;\s*$/) {
Joe Perches786b6322013-07-03 15:05:32 -07004350 if (WARN("SPACING",
4351 "space prohibited before semicolon\n" . $herecurr) &&
4352 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004353 1 while $fixed[$fixlinenr] =~
Joe Perches786b6322013-07-03 15:05:32 -07004354 s/^(\+.*\S)\s+;/$1;/;
4355 }
4356 }
4357
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07004358# check for multiple assignments
4359 if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07004360 CHK("MULTIPLE_ASSIGNMENTS",
4361 "multiple assignments should be avoided\n" . $herecurr);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07004362 }
4363
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07004364## # check for multiple declarations, allowing for a function declaration
4365## # continuation.
4366## if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
4367## $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
4368##
4369## # Remove any bracketed sections to ensure we do not
4370## # falsly report the parameters of functions.
4371## my $ln = $line;
4372## while ($ln =~ s/\([^\(\)]*\)//g) {
4373## }
4374## if ($ln =~ /,/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07004375## WARN("MULTIPLE_DECLARATION",
4376## "declaring multiple variables together should be avoided\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07004377## }
4378## }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07004379
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004380#need space before brace following if, while, etc
Geyslan G. Bem6b8c69e2016-03-15 14:58:09 -07004381 if (($line =~ /\(.*\)\{/ && $line !~ /\($Type\)\{/) ||
Eddie Kovsky4e5d56b2015-09-09 15:37:52 -07004382 $line =~ /do\{/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004383 if (ERROR("SPACING",
4384 "space required before the open brace '{'\n" . $herecurr) &&
4385 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004386 $fixed[$fixlinenr] =~ s/^(\+.*(?:do|\))){/$1 {/;
Joe Perches3705ce52013-07-03 15:05:31 -07004387 }
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07004388 }
4389
Joe Perchesc4a62ef2013-07-03 15:05:28 -07004390## # check for blank lines before declarations
4391## if ($line =~ /^.\t+$Type\s+$Ident(?:\s*=.*)?;/ &&
4392## $prevrawline =~ /^.\s*$/) {
4393## WARN("SPACING",
4394## "No blank lines before declarations\n" . $hereprev);
4395## }
4396##
4397
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07004398# closing brace should have a space following it when it has anything
4399# on the line
4400 if ($line =~ /}(?!(?:,|;|\)))\S/) {
Joe Perchesd5e616f2013-09-11 14:23:54 -07004401 if (ERROR("SPACING",
4402 "space required after that close brace '}'\n" . $herecurr) &&
4403 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004404 $fixed[$fixlinenr] =~
Joe Perchesd5e616f2013-09-11 14:23:54 -07004405 s/}((?!(?:,|;|\)))\S)/} $1/;
4406 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004407 }
4408
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07004409# check spacing on square brackets
4410 if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004411 if (ERROR("SPACING",
4412 "space prohibited after that open square bracket '['\n" . $herecurr) &&
4413 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004414 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07004415 s/\[\s+/\[/;
4416 }
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07004417 }
4418 if ($line =~ /\s\]/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004419 if (ERROR("SPACING",
4420 "space prohibited before that close square bracket ']'\n" . $herecurr) &&
4421 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004422 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07004423 s/\s+\]/\]/;
4424 }
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07004425 }
4426
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004427# check spacing on parentheses
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07004428 if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
4429 $line !~ /for\s*\(\s+;/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004430 if (ERROR("SPACING",
4431 "space prohibited after that open parenthesis '('\n" . $herecurr) &&
4432 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004433 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07004434 s/\(\s+/\(/;
4435 }
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07004436 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08004437 if ($line =~ /(\s+)\)/ && $line !~ /^.\s*\)/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004438 $line !~ /for\s*\(.*;\s+\)/ &&
4439 $line !~ /:\s+\)/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004440 if (ERROR("SPACING",
4441 "space prohibited before that close parenthesis ')'\n" . $herecurr) &&
4442 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004443 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07004444 s/\s+\)/\)/;
4445 }
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07004446 }
4447
Joe Perchese2826fd2014-08-06 16:10:48 -07004448# check unnecessary parentheses around addressof/dereference single $Lvals
4449# ie: &(foo->bar) should be &foo->bar and *(foo->bar) should be *foo->bar
4450
4451 while ($line =~ /(?:[^&]&\s*|\*)\(\s*($Ident\s*(?:$Member\s*)+)\s*\)/g) {
Joe Perchesea4acbb2014-12-10 15:51:51 -08004452 my $var = $1;
4453 if (CHK("UNNECESSARY_PARENTHESES",
4454 "Unnecessary parentheses around $var\n" . $herecurr) &&
4455 $fix) {
4456 $fixed[$fixlinenr] =~ s/\(\s*\Q$var\E\s*\)/$var/;
4457 }
4458 }
4459
4460# check for unnecessary parentheses around function pointer uses
4461# ie: (foo->bar)(); should be foo->bar();
4462# but not "if (foo->bar) (" to avoid some false positives
4463 if ($line =~ /(\bif\s*|)(\(\s*$Ident\s*(?:$Member\s*)+\))[ \t]*\(/ && $1 !~ /^if/) {
4464 my $var = $2;
4465 if (CHK("UNNECESSARY_PARENTHESES",
4466 "Unnecessary parentheses around function pointer $var\n" . $herecurr) &&
4467 $fix) {
4468 my $var2 = deparenthesize($var);
4469 $var2 =~ s/\s//g;
4470 $fixed[$fixlinenr] =~ s/\Q$var\E/$var2/;
4471 }
4472 }
Joe Perchese2826fd2014-08-06 16:10:48 -07004473
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004474#goto labels aren't indented, allow a single space however
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004475 if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004476 !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
Joe Perches3705ce52013-07-03 15:05:31 -07004477 if (WARN("INDENTED_LABEL",
4478 "labels should not be indented\n" . $herecurr) &&
4479 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004480 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07004481 s/^(.)\s+/$1/;
4482 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004483 }
4484
Joe Perches5b9553a2014-04-03 14:49:21 -07004485# return is not a function
Joe Perches507e5142013-11-12 15:10:13 -08004486 if (defined($stat) && $stat =~ /^.\s*return(\s*)\(/s) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004487 my $spacing = $1;
Joe Perches507e5142013-11-12 15:10:13 -08004488 if ($^V && $^V ge 5.10.0 &&
Joe Perches5b9553a2014-04-03 14:49:21 -07004489 $stat =~ /^.\s*return\s*($balanced_parens)\s*;\s*$/) {
4490 my $value = $1;
4491 $value = deparenthesize($value);
4492 if ($value =~ m/^\s*$FuncArg\s*(?:\?|$)/) {
4493 ERROR("RETURN_PARENTHESES",
4494 "return is not a function, parentheses are not required\n" . $herecurr);
4495 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004496 } elsif ($spacing !~ /\s+/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07004497 ERROR("SPACING",
4498 "space required before the open parenthesis '('\n" . $herecurr);
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004499 }
4500 }
Joe Perches507e5142013-11-12 15:10:13 -08004501
Joe Perchesb43ae212014-06-23 13:22:07 -07004502# unnecessary return in a void function
4503# at end-of-function, with the previous line a single leading tab, then return;
4504# and the line before that not a goto label target like "out:"
4505 if ($sline =~ /^[ \+]}\s*$/ &&
4506 $prevline =~ /^\+\treturn\s*;\s*$/ &&
4507 $linenr >= 3 &&
4508 $lines[$linenr - 3] =~ /^[ +]/ &&
4509 $lines[$linenr - 3] !~ /^[ +]\s*$Ident\s*:/) {
Joe Perches9819cf22014-06-04 16:12:09 -07004510 WARN("RETURN_VOID",
Joe Perchesb43ae212014-06-23 13:22:07 -07004511 "void function return statements are not generally useful\n" . $hereprev);
4512 }
Joe Perches9819cf22014-06-04 16:12:09 -07004513
Joe Perches189248d2014-01-23 15:54:47 -08004514# if statements using unnecessary parentheses - ie: if ((foo == bar))
4515 if ($^V && $^V ge 5.10.0 &&
4516 $line =~ /\bif\s*((?:\(\s*){2,})/) {
4517 my $openparens = $1;
4518 my $count = $openparens =~ tr@\(@\(@;
4519 my $msg = "";
4520 if ($line =~ /\bif\s*(?:\(\s*){$count,$count}$LvalOrFunc\s*($Compare)\s*$LvalOrFunc(?:\s*\)){$count,$count}/) {
4521 my $comp = $4; #Not $1 because of $LvalOrFunc
4522 $msg = " - maybe == should be = ?" if ($comp eq "==");
4523 WARN("UNNECESSARY_PARENTHESES",
4524 "Unnecessary parentheses$msg\n" . $herecurr);
4525 }
4526 }
4527
Joe Perchesc5595fa2015-09-09 15:37:58 -07004528# comparisons with a constant or upper case identifier on the left
4529# avoid cases like "foo + BAR < baz"
4530# only fix matches surrounded by parentheses to avoid incorrect
4531# conversions like "FOO < baz() + 5" being "misfixed" to "baz() > FOO + 5"
4532 if ($^V && $^V ge 5.10.0 &&
4533 $line =~ /^\+(.*)\b($Constant|[A-Z_][A-Z0-9_]*)\s*($Compare)\s*($LvalOrFunc)/) {
4534 my $lead = $1;
4535 my $const = $2;
4536 my $comp = $3;
4537 my $to = $4;
4538 my $newcomp = $comp;
Joe Perchesf39e1762016-05-20 17:04:02 -07004539 if ($lead !~ /(?:$Operators|\.)\s*$/ &&
Joe Perchesc5595fa2015-09-09 15:37:58 -07004540 $to !~ /^(?:Constant|[A-Z_][A-Z0-9_]*)$/ &&
4541 WARN("CONSTANT_COMPARISON",
4542 "Comparisons should place the constant on the right side of the test\n" . $herecurr) &&
4543 $fix) {
4544 if ($comp eq "<") {
4545 $newcomp = ">";
4546 } elsif ($comp eq "<=") {
4547 $newcomp = ">=";
4548 } elsif ($comp eq ">") {
4549 $newcomp = "<";
4550 } elsif ($comp eq ">=") {
4551 $newcomp = "<=";
4552 }
4553 $fixed[$fixlinenr] =~ s/\(\s*\Q$const\E\s*$Compare\s*\Q$to\E\s*\)/($to $newcomp $const)/;
4554 }
4555 }
4556
Joe Perchesf34e4a42015-04-16 12:44:19 -07004557# Return of what appears to be an errno should normally be negative
4558 if ($sline =~ /\breturn(?:\s*\(+\s*|\s+)(E[A-Z]+)(?:\s*\)+\s*|\s*)[;:,]/) {
Andy Whitcroft53a3c442010-10-26 14:23:14 -07004559 my $name = $1;
4560 if ($name ne 'EOF' && $name ne 'ERROR') {
Joe Perches000d1cc12011-07-25 17:13:25 -07004561 WARN("USE_NEGATIVE_ERRNO",
Joe Perchesf34e4a42015-04-16 12:44:19 -07004562 "return of an errno should typically be negative (ie: return -$1)\n" . $herecurr);
Andy Whitcroft53a3c442010-10-26 14:23:14 -07004563 }
4564 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004565
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004566# Need a space before open parenthesis after if, while etc
Joe Perches3705ce52013-07-03 15:05:31 -07004567 if ($line =~ /\b(if|while|for|switch)\(/) {
4568 if (ERROR("SPACING",
4569 "space required before the open parenthesis '('\n" . $herecurr) &&
4570 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004571 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07004572 s/\b(if|while|for|switch)\(/$1 \(/;
4573 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004574 }
4575
Andy Whitcroftf5fe35d2008-07-23 21:29:03 -07004576# Check for illegal assignment in if conditional -- and check for trailing
4577# statements after the conditional.
Andy Whitcroft170d3a22008-10-15 22:02:30 -07004578 if ($line =~ /do\s*(?!{)/) {
Andy Whitcroft3e469cd2012-01-10 15:10:01 -08004579 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
4580 ctx_statement_block($linenr, $realcnt, 0)
4581 if (!defined $stat);
Andy Whitcroft170d3a22008-10-15 22:02:30 -07004582 my ($stat_next) = ctx_statement_block($line_nr_next,
4583 $remain_next, $off_next);
4584 $stat_next =~ s/\n./\n /g;
4585 ##print "stat<$stat> stat_next<$stat_next>\n";
4586
4587 if ($stat_next =~ /^\s*while\b/) {
4588 # If the statement carries leading newlines,
4589 # then count those as offsets.
4590 my ($whitespace) =
4591 ($stat_next =~ /^((?:\s*\n[+-])*\s*)/s);
4592 my $offset =
4593 statement_rawlines($whitespace) - 1;
4594
4595 $suppress_whiletrailers{$line_nr_next +
4596 $offset} = 1;
4597 }
4598 }
4599 if (!defined $suppress_whiletrailers{$linenr} &&
Joe Perchesc11230f2013-11-21 14:31:57 -08004600 defined($stat) && defined($cond) &&
Andy Whitcroft170d3a22008-10-15 22:02:30 -07004601 $line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07004602 my ($s, $c) = ($stat, $cond);
Andy Whitcroft8905a672007-11-28 16:21:06 -08004603
Andy Whitcroftb53c8e12009-01-06 14:41:29 -08004604 if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/s) {
Joe Perches000d1cc12011-07-25 17:13:25 -07004605 ERROR("ASSIGN_IN_IF",
4606 "do not use assignment in if condition\n" . $herecurr);
Andy Whitcroft8905a672007-11-28 16:21:06 -08004607 }
4608
4609 # Find out what is on the end of the line after the
4610 # conditional.
Andy Whitcroft773647a2008-03-28 14:15:58 -07004611 substr($s, 0, length($c), '');
Andy Whitcroft8905a672007-11-28 16:21:06 -08004612 $s =~ s/\n.*//g;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08004613 $s =~ s/$;//g; # Remove any comments
Andy Whitcroft53210162008-07-23 21:29:03 -07004614 if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ &&
4615 $c !~ /}\s*while\s*/)
Andy Whitcroft773647a2008-03-28 14:15:58 -07004616 {
Andy Whitcroftbb44ad32008-10-15 22:02:34 -07004617 # Find out how long the conditional actually is.
4618 my @newlines = ($c =~ /\n/gs);
4619 my $cond_lines = 1 + $#newlines;
Hidetoshi Seto42bdf742010-03-05 13:43:50 -08004620 my $stat_real = '';
Andy Whitcroftbb44ad32008-10-15 22:02:34 -07004621
Hidetoshi Seto42bdf742010-03-05 13:43:50 -08004622 $stat_real = raw_line($linenr, $cond_lines)
4623 . "\n" if ($cond_lines);
Andy Whitcroftbb44ad32008-10-15 22:02:34 -07004624 if (defined($stat_real) && $cond_lines > 1) {
4625 $stat_real = "[...]\n$stat_real";
4626 }
4627
Joe Perches000d1cc12011-07-25 17:13:25 -07004628 ERROR("TRAILING_STATEMENTS",
4629 "trailing statements should be on next line\n" . $herecurr . $stat_real);
Andy Whitcroft8905a672007-11-28 16:21:06 -08004630 }
4631 }
4632
Andy Whitcroft13214ad2008-02-08 04:22:03 -08004633# Check for bitwise tests written as boolean
4634 if ($line =~ /
4635 (?:
4636 (?:\[|\(|\&\&|\|\|)
4637 \s*0[xX][0-9]+\s*
4638 (?:\&\&|\|\|)
4639 |
4640 (?:\&\&|\|\|)
4641 \s*0[xX][0-9]+\s*
4642 (?:\&\&|\|\||\)|\])
4643 )/x)
4644 {
Joe Perches000d1cc12011-07-25 17:13:25 -07004645 WARN("HEXADECIMAL_BOOLEAN_TEST",
4646 "boolean test with hexadecimal, perhaps just 1 \& or \|?\n" . $herecurr);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08004647 }
4648
Andy Whitcroft8905a672007-11-28 16:21:06 -08004649# if and else should not have general statements after it
Andy Whitcroft13214ad2008-02-08 04:22:03 -08004650 if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/) {
4651 my $s = $1;
4652 $s =~ s/$;//g; # Remove any comments
4653 if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07004654 ERROR("TRAILING_STATEMENTS",
4655 "trailing statements should be on next line\n" . $herecurr);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08004656 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004657 }
Andy Whitcroft39667782009-01-15 13:51:06 -08004658# if should not continue a brace
4659 if ($line =~ /}\s*if\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07004660 ERROR("TRAILING_STATEMENTS",
Rasmus Villemoes048b1232014-08-06 16:10:37 -07004661 "trailing statements should be on next line (or did you mean 'else if'?)\n" .
Andy Whitcroft39667782009-01-15 13:51:06 -08004662 $herecurr);
4663 }
Andy Whitcrofta1080bf2008-10-15 22:02:25 -07004664# case and default should not have general statements after them
4665 if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
4666 $line !~ /\G(?:
Andy Whitcroft3fef12d2008-10-15 22:02:36 -07004667 (?:\s*$;*)(?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$|
Andy Whitcrofta1080bf2008-10-15 22:02:25 -07004668 \s*return\s+
4669 )/xg)
4670 {
Joe Perches000d1cc12011-07-25 17:13:25 -07004671 ERROR("TRAILING_STATEMENTS",
4672 "trailing statements should be on next line\n" . $herecurr);
Andy Whitcrofta1080bf2008-10-15 22:02:25 -07004673 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004674
4675 # Check for }<nl>else {, these must be at the same
4676 # indent level to be relevant to each other.
Joe Perches8b8856f2014-08-06 16:11:14 -07004677 if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ &&
4678 $previndent == $indent) {
4679 if (ERROR("ELSE_AFTER_BRACE",
4680 "else should follow close brace '}'\n" . $hereprev) &&
4681 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
4682 fix_delete_line($fixlinenr - 1, $prevrawline);
4683 fix_delete_line($fixlinenr, $rawline);
4684 my $fixedline = $prevrawline;
4685 $fixedline =~ s/}\s*$//;
4686 if ($fixedline !~ /^\+\s*$/) {
4687 fix_insert_line($fixlinenr, $fixedline);
4688 }
4689 $fixedline = $rawline;
4690 $fixedline =~ s/^(.\s*)else/$1} else/;
4691 fix_insert_line($fixlinenr, $fixedline);
4692 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004693 }
4694
Joe Perches8b8856f2014-08-06 16:11:14 -07004695 if ($prevline=~/}\s*$/ and $line=~/^.\s*while\s*/ &&
4696 $previndent == $indent) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08004697 my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0);
4698
4699 # Find out what is on the end of the line after the
4700 # conditional.
Andy Whitcroft773647a2008-03-28 14:15:58 -07004701 substr($s, 0, length($c), '');
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08004702 $s =~ s/\n.*//g;
4703
4704 if ($s =~ /^\s*;/) {
Joe Perches8b8856f2014-08-06 16:11:14 -07004705 if (ERROR("WHILE_AFTER_BRACE",
4706 "while should follow close brace '}'\n" . $hereprev) &&
4707 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
4708 fix_delete_line($fixlinenr - 1, $prevrawline);
4709 fix_delete_line($fixlinenr, $rawline);
4710 my $fixedline = $prevrawline;
4711 my $trailing = $rawline;
4712 $trailing =~ s/^\+//;
4713 $trailing = trim($trailing);
4714 $fixedline =~ s/}\s*$/} $trailing/;
4715 fix_insert_line($fixlinenr, $fixedline);
4716 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08004717 }
4718 }
4719
Joe Perches95e2c602013-07-03 15:05:20 -07004720#Specific variable tests
Joe Perches323c1262012-12-17 16:02:07 -08004721 while ($line =~ m{($Constant|$Lval)}g) {
4722 my $var = $1;
Joe Perches95e2c602013-07-03 15:05:20 -07004723
4724#gcc binary extension
4725 if ($var =~ /^$Binary$/) {
Joe Perchesd5e616f2013-09-11 14:23:54 -07004726 if (WARN("GCC_BINARY_CONSTANT",
4727 "Avoid gcc v4.3+ binary constant extension: <$var>\n" . $herecurr) &&
4728 $fix) {
4729 my $hexval = sprintf("0x%x", oct($var));
Joe Perches194f66f2014-08-06 16:11:03 -07004730 $fixed[$fixlinenr] =~
Joe Perchesd5e616f2013-09-11 14:23:54 -07004731 s/\b$var\b/$hexval/;
4732 }
Joe Perches95e2c602013-07-03 15:05:20 -07004733 }
4734
4735#CamelCase
Joe Perches807bd262013-07-03 15:05:22 -07004736 if ($var !~ /^$Constant$/ &&
Joe Perchesbe797942013-07-03 15:05:20 -07004737 $var =~ /[A-Z][a-z]|[a-z][A-Z]/ &&
Joe Perches22735ce2013-07-03 15:05:33 -07004738#Ignore Page<foo> variants
Joe Perches807bd262013-07-03 15:05:22 -07004739 $var !~ /^(?:Clear|Set|TestClear|TestSet|)Page[A-Z]/ &&
Joe Perches22735ce2013-07-03 15:05:33 -07004740#Ignore SI style variants like nS, mV and dB (ie: max_uV, regulator_min_uA_show)
Julius Wernerf5123572014-12-10 15:51:54 -08004741 $var !~ /^(?:[a-z_]*?)_?[a-z][A-Z](?:_[a-z_]+)?$/ &&
4742#Ignore some three character SI units explicitly, like MiB and KHz
4743 $var !~ /^(?:[a-z_]*?)_?(?:[KMGT]iB|[KMGT]?Hz)(?:_[a-z_]+)?$/) {
Joe Perches7e781f62013-09-11 14:23:55 -07004744 while ($var =~ m{($Ident)}g) {
4745 my $word = $1;
4746 next if ($word !~ /[A-Z][a-z]|[a-z][A-Z]/);
Joe Perchesd8b07712013-11-12 15:10:06 -08004747 if ($check) {
4748 seed_camelcase_includes();
4749 if (!$file && !$camelcase_file_seeded) {
4750 seed_camelcase_file($realfile);
4751 $camelcase_file_seeded = 1;
4752 }
4753 }
Joe Perches7e781f62013-09-11 14:23:55 -07004754 if (!defined $camelcase{$word}) {
4755 $camelcase{$word} = 1;
4756 CHK("CAMELCASE",
4757 "Avoid CamelCase: <$word>\n" . $herecurr);
4758 }
Joe Perches34456862013-07-03 15:05:34 -07004759 }
Joe Perches323c1262012-12-17 16:02:07 -08004760 }
4761 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004762
4763#no spaces allowed after \ in define
Joe Perchesd5e616f2013-09-11 14:23:54 -07004764 if ($line =~ /\#\s*define.*\\\s+$/) {
4765 if (WARN("WHITESPACE_AFTER_LINE_CONTINUATION",
4766 "Whitespace after \\ makes next lines useless\n" . $herecurr) &&
4767 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004768 $fixed[$fixlinenr] =~ s/\s+$//;
Joe Perchesd5e616f2013-09-11 14:23:54 -07004769 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004770 }
4771
Fabian Frederick0e212e02015-04-16 12:44:25 -07004772# warn if <asm/foo.h> is #included and <linux/foo.h> is available and includes
4773# itself <asm/foo.h> (uses RAW line)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004774 if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) {
Andy Whitcrofte09dec42008-10-15 22:02:20 -07004775 my $file = "$1.h";
4776 my $checkfile = "include/linux/$file";
4777 if (-f "$root/$checkfile" &&
4778 $realfile ne $checkfile &&
Wolfram Sang7840a942010-08-09 17:20:57 -07004779 $1 !~ /$allowed_asm_includes/)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004780 {
Fabian Frederick0e212e02015-04-16 12:44:25 -07004781 my $asminclude = `grep -Ec "#include\\s+<asm/$file>" $root/$checkfile`;
4782 if ($asminclude > 0) {
4783 if ($realfile =~ m{^arch/}) {
4784 CHK("ARCH_INCLUDE_LINUX",
4785 "Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
4786 } else {
4787 WARN("INCLUDE_LINUX",
4788 "Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
4789 }
Andy Whitcrofte09dec42008-10-15 22:02:20 -07004790 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004791 }
4792 }
4793
Andy Whitcroft653d4872007-06-23 17:16:34 -07004794# multi-statement macros should be enclosed in a do while loop, grab the
4795# first statement and ensure its the whole macro if its not enclosed
Andy Whitcroftcf655042008-03-04 14:28:20 -08004796# in a known good container
Andy Whitcroftb8f96a32008-07-23 21:29:07 -07004797 if ($realfile !~ m@/vmlinux.lds.h$@ &&
4798 $line =~ /^.\s*\#\s*define\s*$Ident(\()?/) {
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07004799 my $ln = $linenr;
4800 my $cnt = $realcnt;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004801 my ($off, $dstat, $dcond, $rest);
4802 my $ctx = '';
Joe Perches08a28432014-10-13 15:51:55 -07004803 my $has_flow_statement = 0;
4804 my $has_arg_concat = 0;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004805 ($dstat, $dcond, $ln, $cnt, $off) =
Andy Whitcroftf74bd192012-01-10 15:09:54 -08004806 ctx_statement_block($linenr, $realcnt, 0);
4807 $ctx = $dstat;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004808 #print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n";
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -07004809 #print "LINE<$lines[$ln-1]> len<" . length($lines[$ln-1]) . "\n";
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004810
Joe Perches08a28432014-10-13 15:51:55 -07004811 $has_flow_statement = 1 if ($ctx =~ /\b(goto|return)\b/);
Joe Perches62e15a62016-01-20 14:59:18 -08004812 $has_arg_concat = 1 if ($ctx =~ /\#\#/ && $ctx !~ /\#\#\s*(?:__VA_ARGS__|args)\b/);
Joe Perches08a28432014-10-13 15:51:55 -07004813
Joe Perchesf59b64b2016-10-11 13:52:08 -07004814 $dstat =~ s/^.\s*\#\s*define\s+$Ident(\([^\)]*\))?\s*//;
4815 my $define_args = $1;
4816 my $define_stmt = $dstat;
4817 my @def_args = ();
4818
4819 if (defined $define_args && $define_args ne "") {
4820 $define_args = substr($define_args, 1, length($define_args) - 2);
4821 $define_args =~ s/\s*//g;
4822 @def_args = split(",", $define_args);
4823 }
4824
Andy Whitcroft292f1a92008-07-23 21:29:11 -07004825 $dstat =~ s/$;//g;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004826 $dstat =~ s/\\\n.//g;
4827 $dstat =~ s/^\s*//s;
4828 $dstat =~ s/\s*$//s;
4829
4830 # Flatten any parentheses and braces
Andy Whitcroftbf30d6e2008-10-15 22:02:33 -07004831 while ($dstat =~ s/\([^\(\)]*\)/1/ ||
4832 $dstat =~ s/\{[^\{\}]*\}/1/ ||
Vladimir Zapolskiy6b10df42016-01-20 14:59:21 -08004833 $dstat =~ s/.\[[^\[\]]*\]/1/)
Andy Whitcroftbf30d6e2008-10-15 22:02:33 -07004834 {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07004835 }
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07004836
Andy Whitcrofte45bab82012-03-23 15:02:18 -07004837 # Flatten any obvious string concatentation.
Joe Perches33acb542015-06-25 15:02:54 -07004838 while ($dstat =~ s/($String)\s*$Ident/$1/ ||
4839 $dstat =~ s/$Ident\s*($String)/$1/)
Andy Whitcrofte45bab82012-03-23 15:02:18 -07004840 {
4841 }
4842
Joe Perches42e15292016-03-15 14:58:01 -07004843 # Make asm volatile uses seem like a generic function
4844 $dstat =~ s/\b_*asm_*\s+_*volatile_*\b/asm_volatile/g;
4845
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004846 my $exceptions = qr{
4847 $Declare|
4848 module_param_named|
Kees Cooka0a0a7a2012-10-04 17:13:38 -07004849 MODULE_PARM_DESC|
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004850 DECLARE_PER_CPU|
4851 DEFINE_PER_CPU|
Andy Whitcroft383099f2009-01-06 14:41:18 -08004852 __typeof__\(|
Stefani Seibold22fd2d32010-03-05 13:43:52 -08004853 union|
4854 struct|
Andy Whitcroftea71a0a2009-09-21 17:04:38 -07004855 \.$Ident\s*=\s*|
Vladimir Zapolskiy6b10df42016-01-20 14:59:21 -08004856 ^\"|\"$|
4857 ^\[
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004858 }x;
Andy Whitcroft5eaa20b2010-10-26 14:23:18 -07004859 #print "REST<$rest> dstat<$dstat> ctx<$ctx>\n";
Joe Perchesf59b64b2016-10-11 13:52:08 -07004860
4861 $ctx =~ s/\n*$//;
4862 my $herectx = $here . "\n";
4863 my $stmt_cnt = statement_rawlines($ctx);
4864
4865 for (my $n = 0; $n < $stmt_cnt; $n++) {
4866 $herectx .= raw_line($linenr, $n) . "\n";
4867 }
4868
Andy Whitcroftf74bd192012-01-10 15:09:54 -08004869 if ($dstat ne '' &&
4870 $dstat !~ /^(?:$Ident|-?$Constant),$/ && # 10, // foo(),
4871 $dstat !~ /^(?:$Ident|-?$Constant);$/ && # foo();
Joe Perches3cc4b1c2013-07-03 15:05:27 -07004872 $dstat !~ /^[!~-]?(?:$Lval|$Constant)$/ && # 10 // foo() // !foo // ~foo // -foo // foo->bar // foo.bar->baz
Joe Perches356fd392014-08-06 16:10:31 -07004873 $dstat !~ /^'X'$/ && $dstat !~ /^'XX'$/ && # character constants
Andy Whitcroftf74bd192012-01-10 15:09:54 -08004874 $dstat !~ /$exceptions/ &&
4875 $dstat !~ /^\.$Ident\s*=/ && # .foo =
Joe Perchese942e2c2013-04-17 15:58:26 -07004876 $dstat !~ /^(?:\#\s*$Ident|\#\s*$Constant)\s*$/ && # stringification #foo
Andy Whitcroft72f115f2012-01-10 15:10:06 -08004877 $dstat !~ /^do\s*$Constant\s*while\s*$Constant;?$/ && # do {...} while (...); // do {...} while (...)
Andy Whitcroftf74bd192012-01-10 15:09:54 -08004878 $dstat !~ /^for\s*$Constant$/ && # for (...)
4879 $dstat !~ /^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ && # for (...) bar()
4880 $dstat !~ /^do\s*{/ && # do {...
Eddie Kovsky4e5d56b2015-09-09 15:37:52 -07004881 $dstat !~ /^\(\{/ && # ({...
Joe Perchesf95a7e62013-09-11 14:24:00 -07004882 $ctx !~ /^.\s*#\s*define\s+TRACE_(?:SYSTEM|INCLUDE_FILE|INCLUDE_PATH)\b/)
Andy Whitcroftf74bd192012-01-10 15:09:54 -08004883 {
Joe Perchese7955562017-05-08 15:55:48 -07004884 if ($dstat =~ /^\s*if\b/) {
4885 ERROR("MULTISTATEMENT_MACRO_USE_DO_WHILE",
4886 "Macros starting with if should be enclosed by a do - while loop to avoid possible if/else logic defects\n" . "$herectx");
4887 } elsif ($dstat =~ /;/) {
Andy Whitcroftf74bd192012-01-10 15:09:54 -08004888 ERROR("MULTISTATEMENT_MACRO_USE_DO_WHILE",
4889 "Macros with multiple statements should be enclosed in a do - while loop\n" . "$herectx");
4890 } else {
Joe Perches000d1cc12011-07-25 17:13:25 -07004891 ERROR("COMPLEX_MACRO",
Andrew Morton388982b2014-10-13 15:51:40 -07004892 "Macros with complex values should be enclosed in parentheses\n" . "$herectx");
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07004893 }
Joe Perchesf59b64b2016-10-11 13:52:08 -07004894
4895 }
Joe Perches52076492016-10-11 13:52:14 -07004896
4897 # Make $define_stmt single line, comment-free, etc
4898 my @stmt_array = split('\n', $define_stmt);
4899 my $first = 1;
4900 $define_stmt = "";
4901 foreach my $l (@stmt_array) {
4902 $l =~ s/\\$//;
4903 if ($first) {
4904 $define_stmt = $l;
4905 $first = 0;
4906 } elsif ($l =~ /^[\+ ]/) {
4907 $define_stmt .= substr($l, 1);
4908 }
4909 }
4910 $define_stmt =~ s/$;//g;
4911 $define_stmt =~ s/\s+/ /g;
4912 $define_stmt = trim($define_stmt);
4913
Joe Perchesf59b64b2016-10-11 13:52:08 -07004914# check if any macro arguments are reused (ignore '...' and 'type')
4915 foreach my $arg (@def_args) {
4916 next if ($arg =~ /\.\.\./);
Joe Perches9192d412016-10-11 13:52:11 -07004917 next if ($arg =~ /^type$/i);
Joe Perchesf59b64b2016-10-11 13:52:08 -07004918 my $tmp = $define_stmt;
4919 $tmp =~ s/\b(typeof|__typeof__|__builtin\w+|typecheck\s*\(\s*$Type\s*,|\#+)\s*\(*\s*$arg\s*\)*\b//g;
Joe Perches52076492016-10-11 13:52:14 -07004920 $tmp =~ s/\#+\s*$arg\b//g;
Joe Perchesf59b64b2016-10-11 13:52:08 -07004921 $tmp =~ s/\b$arg\s*\#\#//g;
4922 my $use_cnt = $tmp =~ s/\b$arg\b//g;
4923 if ($use_cnt > 1) {
4924 CHK("MACRO_ARG_REUSE",
4925 "Macro argument reuse '$arg' - possible side-effects?\n" . "$herectx");
Joe Perches9192d412016-10-11 13:52:11 -07004926 }
4927# check if any macro arguments may have other precedence issues
4928 if ($define_stmt =~ m/($Operators)?\s*\b$arg\b\s*($Operators)?/m &&
4929 ((defined($1) && $1 ne ',') ||
4930 (defined($2) && $2 ne ','))) {
4931 CHK("MACRO_ARG_PRECEDENCE",
4932 "Macro argument '$arg' may be better as '($arg)' to avoid precedence issues\n" . "$herectx");
Joe Perchesf59b64b2016-10-11 13:52:08 -07004933 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07004934 }
Joe Perches5023d342012-12-17 16:01:47 -08004935
Joe Perches08a28432014-10-13 15:51:55 -07004936# check for macros with flow control, but without ## concatenation
4937# ## concatenation is commonly a macro that defines a function so ignore those
4938 if ($has_flow_statement && !$has_arg_concat) {
4939 my $herectx = $here . "\n";
4940 my $cnt = statement_rawlines($ctx);
4941
4942 for (my $n = 0; $n < $cnt; $n++) {
4943 $herectx .= raw_line($linenr, $n) . "\n";
4944 }
4945 WARN("MACRO_WITH_FLOW_CONTROL",
4946 "Macros with flow control statements should be avoided\n" . "$herectx");
4947 }
4948
Joe Perches481eb482012-12-17 16:01:56 -08004949# check for line continuations outside of #defines, preprocessor #, and asm
Joe Perches5023d342012-12-17 16:01:47 -08004950
4951 } else {
4952 if ($prevline !~ /^..*\\$/ &&
Joe Perches481eb482012-12-17 16:01:56 -08004953 $line !~ /^\+\s*\#.*\\$/ && # preprocessor
4954 $line !~ /^\+.*\b(__asm__|asm)\b.*\\$/ && # asm
Joe Perches5023d342012-12-17 16:01:47 -08004955 $line =~ /^\+.*\\$/) {
4956 WARN("LINE_CONTINUATIONS",
4957 "Avoid unnecessary line continuations\n" . $herecurr);
4958 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004959 }
4960
Joe Perchesb13edf72012-07-30 14:41:24 -07004961# do {} while (0) macro tests:
4962# single-statement macros do not need to be enclosed in do while (0) loop,
4963# macro should not end with a semicolon
4964 if ($^V && $^V ge 5.10.0 &&
4965 $realfile !~ m@/vmlinux.lds.h$@ &&
4966 $line =~ /^.\s*\#\s*define\s+$Ident(\()?/) {
4967 my $ln = $linenr;
4968 my $cnt = $realcnt;
4969 my ($off, $dstat, $dcond, $rest);
4970 my $ctx = '';
4971 ($dstat, $dcond, $ln, $cnt, $off) =
4972 ctx_statement_block($linenr, $realcnt, 0);
4973 $ctx = $dstat;
4974
4975 $dstat =~ s/\\\n.//g;
Joe Perches1b36b202015-02-13 14:38:32 -08004976 $dstat =~ s/$;/ /g;
Joe Perchesb13edf72012-07-30 14:41:24 -07004977
4978 if ($dstat =~ /^\+\s*#\s*define\s+$Ident\s*${balanced_parens}\s*do\s*{(.*)\s*}\s*while\s*\(\s*0\s*\)\s*([;\s]*)\s*$/) {
4979 my $stmts = $2;
4980 my $semis = $3;
4981
4982 $ctx =~ s/\n*$//;
4983 my $cnt = statement_rawlines($ctx);
4984 my $herectx = $here . "\n";
4985
4986 for (my $n = 0; $n < $cnt; $n++) {
4987 $herectx .= raw_line($linenr, $n) . "\n";
4988 }
4989
Joe Perchesac8e97f2012-08-21 16:15:53 -07004990 if (($stmts =~ tr/;/;/) == 1 &&
4991 $stmts !~ /^\s*(if|while|for|switch)\b/) {
Joe Perchesb13edf72012-07-30 14:41:24 -07004992 WARN("SINGLE_STATEMENT_DO_WHILE_MACRO",
4993 "Single statement macros should not use a do {} while (0) loop\n" . "$herectx");
4994 }
4995 if (defined $semis && $semis ne "") {
4996 WARN("DO_WHILE_MACRO_WITH_TRAILING_SEMICOLON",
4997 "do {} while (0) macros should not be semicolon terminated\n" . "$herectx");
4998 }
Joe Perchesf5ef95b2014-06-04 16:12:06 -07004999 } elsif ($dstat =~ /^\+\s*#\s*define\s+$Ident.*;\s*$/) {
5000 $ctx =~ s/\n*$//;
5001 my $cnt = statement_rawlines($ctx);
5002 my $herectx = $here . "\n";
5003
5004 for (my $n = 0; $n < $cnt; $n++) {
5005 $herectx .= raw_line($linenr, $n) . "\n";
5006 }
5007
5008 WARN("TRAILING_SEMICOLON",
5009 "macros should not use a trailing semicolon\n" . "$herectx");
Joe Perchesb13edf72012-07-30 14:41:24 -07005010 }
5011 }
5012
Mike Frysinger080ba922009-01-06 14:41:25 -08005013# make sure symbols are always wrapped with VMLINUX_SYMBOL() ...
5014# all assignments may have only one of the following with an assignment:
5015# .
5016# ALIGN(...)
5017# VMLINUX_SYMBOL(...)
5018 if ($realfile eq 'vmlinux.lds.h' && $line =~ /(?:(?:^|\s)$Ident\s*=|=\s*$Ident(?:\s|$))/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005019 WARN("MISSING_VMLINUX_SYMBOL",
5020 "vmlinux.lds.h needs VMLINUX_SYMBOL() around C-visible symbols\n" . $herecurr);
Mike Frysinger080ba922009-01-06 14:41:25 -08005021 }
5022
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07005023# check for redundant bracing round if etc
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005024 if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) {
5025 my ($level, $endln, @chunks) =
Andy Whitcroftcf655042008-03-04 14:28:20 -08005026 ctx_statement_full($linenr, $realcnt, 1);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005027 #print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08005028 #print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n";
5029 if ($#chunks > 0 && $level == 0) {
Joe Perchesaad4f612012-03-23 15:02:19 -07005030 my @allowed = ();
5031 my $allow = 0;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005032 my $seen = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07005033 my $herectx = $here . "\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08005034 my $ln = $linenr - 1;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005035 for my $chunk (@chunks) {
5036 my ($cond, $block) = @{$chunk};
5037
Andy Whitcroft773647a2008-03-28 14:15:58 -07005038 # If the condition carries leading newlines, then count those as offsets.
5039 my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s);
5040 my $offset = statement_rawlines($whitespace) - 1;
5041
Joe Perchesaad4f612012-03-23 15:02:19 -07005042 $allowed[$allow] = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07005043 #print "COND<$cond> whitespace<$whitespace> offset<$offset>\n";
5044
5045 # We have looked at and allowed this specific line.
5046 $suppress_ifbraces{$ln + $offset} = 1;
5047
5048 $herectx .= "$rawlines[$ln + $offset]\n[...]\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08005049 $ln += statement_rawlines($block) - 1;
5050
Andy Whitcroft773647a2008-03-28 14:15:58 -07005051 substr($block, 0, length($cond), '');
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005052
5053 $seen++ if ($block =~ /^\s*{/);
5054
Joe Perchesaad4f612012-03-23 15:02:19 -07005055 #print "cond<$cond> block<$block> allowed<$allowed[$allow]>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08005056 if (statement_lines($cond) > 1) {
5057 #print "APW: ALLOWED: cond<$cond>\n";
Joe Perchesaad4f612012-03-23 15:02:19 -07005058 $allowed[$allow] = 1;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005059 }
5060 if ($block =~/\b(?:if|for|while)\b/) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08005061 #print "APW: ALLOWED: block<$block>\n";
Joe Perchesaad4f612012-03-23 15:02:19 -07005062 $allowed[$allow] = 1;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005063 }
Andy Whitcroftcf655042008-03-04 14:28:20 -08005064 if (statement_block_size($block) > 1) {
5065 #print "APW: ALLOWED: lines block<$block>\n";
Joe Perchesaad4f612012-03-23 15:02:19 -07005066 $allowed[$allow] = 1;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005067 }
Joe Perchesaad4f612012-03-23 15:02:19 -07005068 $allow++;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005069 }
Joe Perchesaad4f612012-03-23 15:02:19 -07005070 if ($seen) {
5071 my $sum_allowed = 0;
5072 foreach (@allowed) {
5073 $sum_allowed += $_;
5074 }
5075 if ($sum_allowed == 0) {
5076 WARN("BRACES",
5077 "braces {} are not necessary for any arm of this statement\n" . $herectx);
5078 } elsif ($sum_allowed != $allow &&
5079 $seen != $allow) {
5080 CHK("BRACES",
5081 "braces {} should be used on all arms of this statement\n" . $herectx);
5082 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005083 }
5084 }
5085 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07005086 if (!defined $suppress_ifbraces{$linenr - 1} &&
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005087 $line =~ /\b(if|while|for|else)\b/) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08005088 my $allowed = 0;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07005089
Andy Whitcroftcf655042008-03-04 14:28:20 -08005090 # Check the pre-context.
5091 if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) {
5092 #print "APW: ALLOWED: pre<$1>\n";
5093 $allowed = 1;
5094 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07005095
5096 my ($level, $endln, @chunks) =
5097 ctx_statement_full($linenr, $realcnt, $-[0]);
5098
Andy Whitcroftcf655042008-03-04 14:28:20 -08005099 # Check the condition.
5100 my ($cond, $block) = @{$chunks[0]};
Andy Whitcroft773647a2008-03-28 14:15:58 -07005101 #print "CHECKING<$linenr> cond<$cond> block<$block>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08005102 if (defined $cond) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07005103 substr($block, 0, length($cond), '');
Andy Whitcroftcf655042008-03-04 14:28:20 -08005104 }
5105 if (statement_lines($cond) > 1) {
5106 #print "APW: ALLOWED: cond<$cond>\n";
5107 $allowed = 1;
5108 }
5109 if ($block =~/\b(?:if|for|while)\b/) {
5110 #print "APW: ALLOWED: block<$block>\n";
5111 $allowed = 1;
5112 }
5113 if (statement_block_size($block) > 1) {
5114 #print "APW: ALLOWED: lines block<$block>\n";
5115 $allowed = 1;
5116 }
5117 # Check the post-context.
5118 if (defined $chunks[1]) {
5119 my ($cond, $block) = @{$chunks[1]};
5120 if (defined $cond) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07005121 substr($block, 0, length($cond), '');
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07005122 }
Andy Whitcroftcf655042008-03-04 14:28:20 -08005123 if ($block =~ /^\s*\{/) {
5124 #print "APW: ALLOWED: chunk-1 block<$block>\n";
5125 $allowed = 1;
5126 }
5127 }
5128 if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
Justin P. Mattock69932482011-07-26 23:06:29 -07005129 my $herectx = $here . "\n";
Andy Whitcroftf0556632008-10-15 22:02:23 -07005130 my $cnt = statement_rawlines($block);
Andy Whitcroftcf655042008-03-04 14:28:20 -08005131
Andy Whitcroftf0556632008-10-15 22:02:23 -07005132 for (my $n = 0; $n < $cnt; $n++) {
Justin P. Mattock69932482011-07-26 23:06:29 -07005133 $herectx .= raw_line($linenr, $n) . "\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08005134 }
5135
Joe Perches000d1cc12011-07-25 17:13:25 -07005136 WARN("BRACES",
5137 "braces {} are not necessary for single statement blocks\n" . $herectx);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07005138 }
5139 }
5140
Joe Perchese4c5bab2017-02-24 15:01:41 -08005141# check for single line unbalanced braces
Sven Eckelmann95330472017-02-24 15:01:43 -08005142 if ($sline =~ /^.\s*\}\s*else\s*$/ ||
5143 $sline =~ /^.\s*else\s*\{\s*$/) {
Joe Perchese4c5bab2017-02-24 15:01:41 -08005144 CHK("BRACES", "Unbalanced braces around else statement\n" . $herecurr);
5145 }
5146
Joe Perches0979ae62012-12-17 16:01:59 -08005147# check for unnecessary blank lines around braces
Joe Perches77b9a532013-07-03 15:05:29 -07005148 if (($line =~ /^.\s*}\s*$/ && $prevrawline =~ /^.\s*$/)) {
Joe Perchesf8e58212015-02-13 14:38:46 -08005149 if (CHK("BRACES",
5150 "Blank lines aren't necessary before a close brace '}'\n" . $hereprev) &&
5151 $fix && $prevrawline =~ /^\+/) {
5152 fix_delete_line($fixlinenr - 1, $prevrawline);
5153 }
Joe Perches0979ae62012-12-17 16:01:59 -08005154 }
Joe Perches77b9a532013-07-03 15:05:29 -07005155 if (($rawline =~ /^.\s*$/ && $prevline =~ /^..*{\s*$/)) {
Joe Perchesf8e58212015-02-13 14:38:46 -08005156 if (CHK("BRACES",
5157 "Blank lines aren't necessary after an open brace '{'\n" . $hereprev) &&
5158 $fix) {
5159 fix_delete_line($fixlinenr, $rawline);
5160 }
Joe Perches0979ae62012-12-17 16:01:59 -08005161 }
5162
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07005163# no volatiles please
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07005164 my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
5165 if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005166 WARN("VOLATILE",
Mauro Carvalho Chehab8c27ceff32016-10-18 10:12:27 -02005167 "Use of volatile is usually wrong: see Documentation/process/volatile-considered-harmful.rst\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07005168 }
5169
Joe Perches5e4f6ba2014-12-10 15:52:05 -08005170# Check for user-visible strings broken across lines, which breaks the ability
5171# to grep for the string. Make exceptions when the previous string ends in a
5172# newline (multiple lines in one string constant) or '\t', '\r', ';', or '{'
5173# (common in inline assembly) or is a octal \123 or hexadecimal \xaf value
Joe Perches33acb542015-06-25 15:02:54 -07005174 if ($line =~ /^\+\s*$String/ &&
Joe Perches5e4f6ba2014-12-10 15:52:05 -08005175 $prevline =~ /"\s*$/ &&
5176 $prevrawline !~ /(?:\\(?:[ntr]|[0-7]{1,3}|x[0-9a-fA-F]{1,2})|;\s*|\{\s*)"\s*$/) {
5177 if (WARN("SPLIT_STRING",
5178 "quoted string split across lines\n" . $hereprev) &&
5179 $fix &&
5180 $prevrawline =~ /^\+.*"\s*$/ &&
5181 $last_coalesced_string_linenr != $linenr - 1) {
5182 my $extracted_string = get_quoted_string($line, $rawline);
5183 my $comma_close = "";
5184 if ($rawline =~ /\Q$extracted_string\E(\s*\)\s*;\s*$|\s*,\s*)/) {
5185 $comma_close = $1;
5186 }
5187
5188 fix_delete_line($fixlinenr - 1, $prevrawline);
5189 fix_delete_line($fixlinenr, $rawline);
5190 my $fixedline = $prevrawline;
5191 $fixedline =~ s/"\s*$//;
5192 $fixedline .= substr($extracted_string, 1) . trim($comma_close);
5193 fix_insert_line($fixlinenr - 1, $fixedline);
5194 $fixedline = $rawline;
5195 $fixedline =~ s/\Q$extracted_string\E\Q$comma_close\E//;
5196 if ($fixedline !~ /\+\s*$/) {
5197 fix_insert_line($fixlinenr, $fixedline);
5198 }
5199 $last_coalesced_string_linenr = $linenr;
5200 }
5201 }
5202
5203# check for missing a space in a string concatenation
5204 if ($prevrawline =~ /[^\\]\w"$/ && $rawline =~ /^\+[\t ]+"\w/) {
5205 WARN('MISSING_SPACE',
5206 "break quoted strings at a space character\n" . $hereprev);
5207 }
5208
Joe Perchese4b7d302017-05-08 15:55:51 -07005209# check for an embedded function name in a string when the function is known
5210# This does not work very well for -f --file checking as it depends on patch
5211# context providing the function name or a single line form for in-file
5212# function declarations
Joe Perches77cb8542017-02-24 15:01:28 -08005213 if ($line =~ /^\+.*$String/ &&
5214 defined($context_function) &&
Joe Perchese4b7d302017-05-08 15:55:51 -07005215 get_quoted_string($line, $rawline) =~ /\b$context_function\b/ &&
5216 length(get_quoted_string($line, $rawline)) != (length($context_function) + 2)) {
Joe Perches77cb8542017-02-24 15:01:28 -08005217 WARN("EMBEDDED_FUNCTION_NAME",
Joe Perchese4b7d302017-05-08 15:55:51 -07005218 "Prefer using '\"%s...\", __func__' to using '$context_function', this function's name, in a string\n" . $herecurr);
Joe Perches77cb8542017-02-24 15:01:28 -08005219 }
5220
Joe Perches5e4f6ba2014-12-10 15:52:05 -08005221# check for spaces before a quoted newline
5222 if ($rawline =~ /^.*\".*\s\\n/) {
5223 if (WARN("QUOTED_WHITESPACE_BEFORE_NEWLINE",
5224 "unnecessary whitespace before a quoted newline\n" . $herecurr) &&
5225 $fix) {
5226 $fixed[$fixlinenr] =~ s/^(\+.*\".*)\s+\\n/$1\\n/;
5227 }
5228
5229 }
5230
Joe Perchesf17dba42014-10-13 15:51:51 -07005231# concatenated string without spaces between elements
Joe Perches33acb542015-06-25 15:02:54 -07005232 if ($line =~ /$String[A-Z_]/ || $line =~ /[A-Za-z0-9_]$String/) {
Joe Perchesf17dba42014-10-13 15:51:51 -07005233 CHK("CONCATENATED_STRING",
5234 "Concatenated strings should use spaces between elements\n" . $herecurr);
5235 }
5236
Joe Perches90ad30e2014-12-10 15:51:59 -08005237# uncoalesced string fragments
Joe Perches33acb542015-06-25 15:02:54 -07005238 if ($line =~ /$String\s*"/) {
Joe Perches90ad30e2014-12-10 15:51:59 -08005239 WARN("STRING_FRAGMENTS",
5240 "Consecutive strings are generally better as a single string\n" . $herecurr);
5241 }
5242
Alexey Dobriyan522b8372017-02-27 14:30:05 -08005243# check for non-standard and hex prefixed decimal printf formats
5244 my $show_L = 1; #don't show the same defect twice
5245 my $show_Z = 1;
Joe Perches5e4f6ba2014-12-10 15:52:05 -08005246 while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) {
Alexey Dobriyan522b8372017-02-27 14:30:05 -08005247 my $string = substr($rawline, $-[1], $+[1] - $-[1]);
Joe Perches5e4f6ba2014-12-10 15:52:05 -08005248 $string =~ s/%%/__/g;
Alexey Dobriyan522b8372017-02-27 14:30:05 -08005249 # check for %L
5250 if ($show_L && $string =~ /%[\*\d\.\$]*L([diouxX])/) {
Joe Perches5e4f6ba2014-12-10 15:52:05 -08005251 WARN("PRINTF_L",
Alexey Dobriyan522b8372017-02-27 14:30:05 -08005252 "\%L$1 is non-standard C, use %ll$1\n" . $herecurr);
5253 $show_L = 0;
Joe Perches5e4f6ba2014-12-10 15:52:05 -08005254 }
Alexey Dobriyan522b8372017-02-27 14:30:05 -08005255 # check for %Z
5256 if ($show_Z && $string =~ /%[\*\d\.\$]*Z([diouxX])/) {
5257 WARN("PRINTF_Z",
5258 "%Z$1 is non-standard C, use %z$1\n" . $herecurr);
5259 $show_Z = 0;
5260 }
5261 # check for 0x<decimal>
5262 if ($string =~ /0x%[\*\d\.\$\Llzth]*[diou]/) {
5263 ERROR("PRINTF_0XDECIMAL",
Joe Perches6e300752015-09-09 15:37:47 -07005264 "Prefixing 0x with decimal output is defective\n" . $herecurr);
5265 }
Joe Perches5e4f6ba2014-12-10 15:52:05 -08005266 }
5267
5268# check for line continuations in quoted strings with odd counts of "
5269 if ($rawline =~ /\\$/ && $rawline =~ tr/"/"/ % 2) {
5270 WARN("LINE_CONTINUATIONS",
5271 "Avoid line continuations in quoted strings\n" . $herecurr);
5272 }
5273
Andy Whitcroft00df3442007-06-08 13:47:06 -07005274# warn about #if 0
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07005275 if ($line =~ /^.\s*\#\s*if\s+0\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005276 CHK("REDUNDANT_CODE",
5277 "if this code is redundant consider removing it\n" .
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07005278 $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07005279 }
5280
Andy Whitcroft03df4b52012-12-17 16:01:52 -08005281# check for needless "if (<foo>) fn(<foo>)" uses
5282 if ($prevline =~ /\bif\s*\(\s*($Lval)\s*\)/) {
Joe Perches100425d2015-09-09 15:37:36 -07005283 my $tested = quotemeta($1);
5284 my $expr = '\s*\(\s*' . $tested . '\s*\)\s*;';
5285 if ($line =~ /\b(kfree|usb_free_urb|debugfs_remove(?:_recursive)?|(?:kmem_cache|mempool|dma_pool)_destroy)$expr/) {
5286 my $func = $1;
5287 if (WARN('NEEDLESS_IF',
5288 "$func(NULL) is safe and this check is probably not required\n" . $hereprev) &&
5289 $fix) {
5290 my $do_fix = 1;
5291 my $leading_tabs = "";
5292 my $new_leading_tabs = "";
5293 if ($lines[$linenr - 2] =~ /^\+(\t*)if\s*\(\s*$tested\s*\)\s*$/) {
5294 $leading_tabs = $1;
5295 } else {
5296 $do_fix = 0;
5297 }
5298 if ($lines[$linenr - 1] =~ /^\+(\t+)$func\s*\(\s*$tested\s*\)\s*;\s*$/) {
5299 $new_leading_tabs = $1;
5300 if (length($leading_tabs) + 1 ne length($new_leading_tabs)) {
5301 $do_fix = 0;
5302 }
5303 } else {
5304 $do_fix = 0;
5305 }
5306 if ($do_fix) {
5307 fix_delete_line($fixlinenr - 1, $prevrawline);
5308 $fixed[$fixlinenr] =~ s/^\+$new_leading_tabs/\+$leading_tabs/;
5309 }
5310 }
Greg Kroah-Hartman4c432a82008-07-23 21:29:04 -07005311 }
5312 }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07005313
Joe Perchesebfdc402014-08-06 16:10:27 -07005314# check for unnecessary "Out of Memory" messages
5315 if ($line =~ /^\+.*\b$logFunctions\s*\(/ &&
5316 $prevline =~ /^[ \+]\s*if\s*\(\s*(\!\s*|NULL\s*==\s*)?($Lval)(\s*==\s*NULL\s*)?\s*\)/ &&
5317 (defined $1 || defined $3) &&
5318 $linenr > 3) {
5319 my $testval = $2;
5320 my $testline = $lines[$linenr - 3];
5321
5322 my ($s, $c) = ctx_statement_block($linenr - 3, $realcnt, 0);
5323# print("line: <$line>\nprevline: <$prevline>\ns: <$s>\nc: <$c>\n\n\n");
5324
Joe Perchesfb0d0e02017-07-10 15:52:04 -07005325 if ($s =~ /(?:^|\n)[ \+]\s*(?:$Type\s*)?\Q$testval\E\s*=\s*(?:\([^\)]*\)\s*)?\s*(?:devm_)?(?:[kv][czm]alloc(?:_node|_array)?\b|kstrdup|kmemdup|(?:dev_)?alloc_skb)/) {
Joe Perchesebfdc402014-08-06 16:10:27 -07005326 WARN("OOM_MESSAGE",
5327 "Possible unnecessary 'out of memory' message\n" . $hereprev);
5328 }
5329 }
5330
Joe Perchesf78d98f2014-10-13 15:52:01 -07005331# check for logging functions with KERN_<LEVEL>
Paolo Bonzinidcaf1122015-02-13 14:38:26 -08005332 if ($line !~ /printk(?:_ratelimited|_once)?\s*\(/ &&
Joe Perchesf78d98f2014-10-13 15:52:01 -07005333 $line =~ /\b$logFunctions\s*\(.*\b(KERN_[A-Z]+)\b/) {
5334 my $level = $1;
5335 if (WARN("UNNECESSARY_KERN_LEVEL",
5336 "Possible unnecessary $level\n" . $herecurr) &&
5337 $fix) {
5338 $fixed[$fixlinenr] =~ s/\s*$level\s*//;
5339 }
5340 }
5341
Joe Perches45c55e92017-02-24 15:01:31 -08005342# check for logging continuations
5343 if ($line =~ /\bprintk\s*\(\s*KERN_CONT\b|\bpr_cont\s*\(/) {
5344 WARN("LOGGING_CONTINUATION",
5345 "Avoid logging continuation uses where feasible\n" . $herecurr);
5346 }
5347
Joe Perchesabb08a52014-12-10 15:51:46 -08005348# check for mask then right shift without a parentheses
5349 if ($^V && $^V ge 5.10.0 &&
5350 $line =~ /$LvalOrFunc\s*\&\s*($LvalOrFunc)\s*>>/ &&
5351 $4 !~ /^\&/) { # $LvalOrFunc may be &foo, ignore if so
5352 WARN("MASK_THEN_SHIFT",
5353 "Possible precedence defect with mask then right shift - may need parentheses\n" . $herecurr);
5354 }
5355
Joe Perchesb75ac612014-12-10 15:52:02 -08005356# check for pointer comparisons to NULL
5357 if ($^V && $^V ge 5.10.0) {
5358 while ($line =~ /\b$LvalOrFunc\s*(==|\!=)\s*NULL\b/g) {
5359 my $val = $1;
5360 my $equal = "!";
5361 $equal = "" if ($4 eq "!=");
5362 if (CHK("COMPARISON_TO_NULL",
5363 "Comparison to NULL could be written \"${equal}${val}\"\n" . $herecurr) &&
5364 $fix) {
5365 $fixed[$fixlinenr] =~ s/\b\Q$val\E\s*(?:==|\!=)\s*NULL\b/$equal$val/;
5366 }
5367 }
5368 }
5369
Joe Perches8716de32013-09-11 14:24:05 -07005370# check for bad placement of section $InitAttribute (e.g.: __initdata)
5371 if ($line =~ /(\b$InitAttribute\b)/) {
5372 my $attr = $1;
5373 if ($line =~ /^\+\s*static\s+(?:const\s+)?(?:$attr\s+)?($NonptrTypeWithAttr)\s+(?:$attr\s+)?($Ident(?:\[[^]]*\])?)\s*[=;]/) {
5374 my $ptr = $1;
5375 my $var = $2;
5376 if ((($ptr =~ /\b(union|struct)\s+$attr\b/ &&
5377 ERROR("MISPLACED_INIT",
5378 "$attr should be placed after $var\n" . $herecurr)) ||
5379 ($ptr !~ /\b(union|struct)\s+$attr\b/ &&
5380 WARN("MISPLACED_INIT",
5381 "$attr should be placed after $var\n" . $herecurr))) &&
5382 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005383 $fixed[$fixlinenr] =~ s/(\bstatic\s+(?:const\s+)?)(?:$attr\s+)?($NonptrTypeWithAttr)\s+(?:$attr\s+)?($Ident(?:\[[^]]*\])?)\s*([=;])\s*/"$1" . trim(string_find_replace($2, "\\s*$attr\\s*", " ")) . " " . trim(string_find_replace($3, "\\s*$attr\\s*", "")) . " $attr" . ("$4" eq ";" ? ";" : " = ")/e;
Joe Perches8716de32013-09-11 14:24:05 -07005384 }
5385 }
5386 }
5387
Joe Perchese970b8842013-11-12 15:10:10 -08005388# check for $InitAttributeData (ie: __initdata) with const
5389 if ($line =~ /\bconst\b/ && $line =~ /($InitAttributeData)/) {
5390 my $attr = $1;
5391 $attr =~ /($InitAttributePrefix)(.*)/;
5392 my $attr_prefix = $1;
5393 my $attr_type = $2;
5394 if (ERROR("INIT_ATTRIBUTE",
5395 "Use of const init definition must use ${attr_prefix}initconst\n" . $herecurr) &&
5396 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005397 $fixed[$fixlinenr] =~
Joe Perchese970b8842013-11-12 15:10:10 -08005398 s/$InitAttributeData/${attr_prefix}initconst/;
5399 }
5400 }
5401
5402# check for $InitAttributeConst (ie: __initconst) without const
5403 if ($line !~ /\bconst\b/ && $line =~ /($InitAttributeConst)/) {
5404 my $attr = $1;
5405 if (ERROR("INIT_ATTRIBUTE",
5406 "Use of $attr requires a separate use of const\n" . $herecurr) &&
5407 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005408 my $lead = $fixed[$fixlinenr] =~
Joe Perchese970b8842013-11-12 15:10:10 -08005409 /(^\+\s*(?:static\s+))/;
5410 $lead = rtrim($1);
5411 $lead = "$lead " if ($lead !~ /^\+$/);
5412 $lead = "${lead}const ";
Joe Perches194f66f2014-08-06 16:11:03 -07005413 $fixed[$fixlinenr] =~ s/(^\+\s*(?:static\s+))/$lead/;
Joe Perchese970b8842013-11-12 15:10:10 -08005414 }
5415 }
5416
Joe Perchesc17893c2015-04-16 12:44:42 -07005417# check for __read_mostly with const non-pointer (should just be const)
5418 if ($line =~ /\b__read_mostly\b/ &&
5419 $line =~ /($Type)\s*$Ident/ && $1 !~ /\*\s*$/ && $1 =~ /\bconst\b/) {
5420 if (ERROR("CONST_READ_MOSTLY",
5421 "Invalid use of __read_mostly with const type\n" . $herecurr) &&
5422 $fix) {
5423 $fixed[$fixlinenr] =~ s/\s+__read_mostly\b//;
5424 }
5425 }
5426
Joe Perchesfbdb8132014-04-03 14:49:14 -07005427# don't use __constant_<foo> functions outside of include/uapi/
5428 if ($realfile !~ m@^include/uapi/@ &&
5429 $line =~ /(__constant_(?:htons|ntohs|[bl]e(?:16|32|64)_to_cpu|cpu_to_[bl]e(?:16|32|64)))\s*\(/) {
5430 my $constant_func = $1;
5431 my $func = $constant_func;
5432 $func =~ s/^__constant_//;
5433 if (WARN("CONSTANT_CONVERSION",
5434 "$constant_func should be $func\n" . $herecurr) &&
5435 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005436 $fixed[$fixlinenr] =~ s/\b$constant_func\b/$func/g;
Joe Perchesfbdb8132014-04-03 14:49:14 -07005437 }
5438 }
5439
Patrick Pannuto1a15a252010-08-09 17:21:01 -07005440# prefer usleep_range over udelay
Bruce Allan37581c22013-02-21 16:44:19 -08005441 if ($line =~ /\budelay\s*\(\s*(\d+)\s*\)/) {
Joe Perches43c1d772014-04-03 14:49:11 -07005442 my $delay = $1;
Patrick Pannuto1a15a252010-08-09 17:21:01 -07005443 # ignore udelay's < 10, however
Joe Perches43c1d772014-04-03 14:49:11 -07005444 if (! ($delay < 10) ) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005445 CHK("USLEEP_RANGE",
Joe Perches43c1d772014-04-03 14:49:11 -07005446 "usleep_range is preferred over udelay; see Documentation/timers/timers-howto.txt\n" . $herecurr);
5447 }
5448 if ($delay > 2000) {
5449 WARN("LONG_UDELAY",
5450 "long udelay - prefer mdelay; see arch/arm/include/asm/delay.h\n" . $herecurr);
Patrick Pannuto1a15a252010-08-09 17:21:01 -07005451 }
5452 }
5453
Patrick Pannuto09ef8722010-08-09 17:21:02 -07005454# warn about unexpectedly long msleep's
5455 if ($line =~ /\bmsleep\s*\((\d+)\);/) {
5456 if ($1 < 20) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005457 WARN("MSLEEP",
Joe Perches43c1d772014-04-03 14:49:11 -07005458 "msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt\n" . $herecurr);
Patrick Pannuto09ef8722010-08-09 17:21:02 -07005459 }
5460 }
5461
Joe Perches36ec1932013-07-03 15:05:25 -07005462# check for comparisons of jiffies
5463 if ($line =~ /\bjiffies\s*$Compare|$Compare\s*jiffies\b/) {
5464 WARN("JIFFIES_COMPARISON",
5465 "Comparing jiffies is almost always wrong; prefer time_after, time_before and friends\n" . $herecurr);
5466 }
5467
Joe Perches9d7a34a2013-07-03 15:05:26 -07005468# check for comparisons of get_jiffies_64()
5469 if ($line =~ /\bget_jiffies_64\s*\(\s*\)\s*$Compare|$Compare\s*get_jiffies_64\s*\(\s*\)/) {
5470 WARN("JIFFIES_COMPARISON",
5471 "Comparing get_jiffies_64() is almost always wrong; prefer time_after64, time_before64 and friends\n" . $herecurr);
5472 }
5473
Andy Whitcroft00df3442007-06-08 13:47:06 -07005474# warn about #ifdefs in C files
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07005475# if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
Andy Whitcroft00df3442007-06-08 13:47:06 -07005476# print "#ifdef in C files should be avoided\n";
5477# print "$herecurr";
5478# $clean = 0;
5479# }
5480
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07005481# warn about spacing in #ifdefs
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07005482 if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) {
Joe Perches3705ce52013-07-03 15:05:31 -07005483 if (ERROR("SPACING",
5484 "exactly one space required after that #$1\n" . $herecurr) &&
5485 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005486 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07005487 s/^(.\s*\#\s*(ifdef|ifndef|elif))\s{2,}/$1 /;
5488 }
5489
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07005490 }
5491
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07005492# check for spinlock_t definitions without a comment.
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07005493 if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ ||
5494 $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07005495 my $which = $1;
5496 if (!ctx_has_comment($first_line, $linenr)) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005497 CHK("UNCOMMENTED_DEFINITION",
5498 "$1 definition without comment\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07005499 }
5500 }
5501# check for memory barriers without a comment.
Michael S. Tsirkin402c2552016-01-04 09:39:01 +02005502
5503 my $barriers = qr{
5504 mb|
5505 rmb|
5506 wmb|
5507 read_barrier_depends
5508 }x;
5509 my $barrier_stems = qr{
5510 mb__before_atomic|
5511 mb__after_atomic|
5512 store_release|
5513 load_acquire|
5514 store_mb|
5515 (?:$barriers)
5516 }x;
5517 my $all_barriers = qr{
5518 (?:$barriers)|
Michael S. Tsirkin43e361f2016-01-04 10:00:10 +02005519 smp_(?:$barrier_stems)|
5520 virt_(?:$barrier_stems)
Michael S. Tsirkin402c2552016-01-04 09:39:01 +02005521 }x;
5522
5523 if ($line =~ /\b(?:$all_barriers)\s*\(/) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07005524 if (!ctx_has_comment($first_line, $linenr)) {
Joe Perchesc1fd7bb2013-11-12 15:10:11 -08005525 WARN("MEMORY_BARRIER",
5526 "memory barrier without comment\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07005527 }
5528 }
Paul E. McKenney3ad81772015-07-02 11:55:40 -07005529
Michael S. Tsirkinf4073b02016-01-04 09:54:51 +02005530 my $underscore_smp_barriers = qr{__smp_(?:$barrier_stems)}x;
5531
5532 if ($realfile !~ m@^include/asm-generic/@ &&
5533 $realfile !~ m@/barrier\.h$@ &&
5534 $line =~ m/\b(?:$underscore_smp_barriers)\s*\(/ &&
5535 $line !~ m/^.\s*\#\s*define\s+(?:$underscore_smp_barriers)\s*\(/) {
5536 WARN("MEMORY_BARRIER",
5537 "__smp memory barriers shouldn't be used outside barrier.h and asm-generic\n" . $herecurr);
5538 }
5539
Joe Perchescb426e92015-06-25 15:02:46 -07005540# check for waitqueue_active without a comment.
5541 if ($line =~ /\bwaitqueue_active\s*\(/) {
5542 if (!ctx_has_comment($first_line, $linenr)) {
5543 WARN("WAITQUEUE_ACTIVE",
5544 "waitqueue_active without comment\n" . $herecurr);
5545 }
5546 }
Paul E. McKenney3ad81772015-07-02 11:55:40 -07005547
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07005548# check of hardware specific defines
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07005549 if ($line =~ m@^.\s*\#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005550 CHK("ARCH_DEFINES",
5551 "architecture specific defines should be avoided\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07005552 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07005553
Tobias Klauserd4977c72010-05-24 14:33:30 -07005554# Check that the storage class is at the beginning of a declaration
5555 if ($line =~ /\b$Storage\b/ && $line !~ /^.\s*$Storage\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005556 WARN("STORAGE_CLASS",
5557 "storage class should be at the beginning of the declaration\n" . $herecurr)
Tobias Klauserd4977c72010-05-24 14:33:30 -07005558 }
5559
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07005560# check the location of the inline attribute, that it is between
5561# storage class and type.
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07005562 if ($line =~ /\b$Type\s+$Inline\b/ ||
5563 $line =~ /\b$Inline\s+$Storage\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005564 ERROR("INLINE_LOCATION",
5565 "inline keyword should sit between storage class and type\n" . $herecurr);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07005566 }
5567
Andy Whitcroft8905a672007-11-28 16:21:06 -08005568# Check for __inline__ and __inline, prefer inline
Joe Perches2b7ab452013-11-12 15:10:14 -08005569 if ($realfile !~ m@\binclude/uapi/@ &&
5570 $line =~ /\b(__inline__|__inline)\b/) {
Joe Perchesd5e616f2013-09-11 14:23:54 -07005571 if (WARN("INLINE",
5572 "plain inline is preferred over $1\n" . $herecurr) &&
5573 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005574 $fixed[$fixlinenr] =~ s/\b(__inline__|__inline)\b/inline/;
Joe Perchesd5e616f2013-09-11 14:23:54 -07005575
5576 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08005577 }
5578
Joe Perches3d130fd2011-01-12 17:00:00 -08005579# Check for __attribute__ packed, prefer __packed
Joe Perches2b7ab452013-11-12 15:10:14 -08005580 if ($realfile !~ m@\binclude/uapi/@ &&
5581 $line =~ /\b__attribute__\s*\(\s*\(.*\bpacked\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005582 WARN("PREFER_PACKED",
5583 "__packed is preferred over __attribute__((packed))\n" . $herecurr);
Joe Perches3d130fd2011-01-12 17:00:00 -08005584 }
5585
Joe Perches39b7e282011-07-25 17:13:24 -07005586# Check for __attribute__ aligned, prefer __aligned
Joe Perches2b7ab452013-11-12 15:10:14 -08005587 if ($realfile !~ m@\binclude/uapi/@ &&
5588 $line =~ /\b__attribute__\s*\(\s*\(.*aligned/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005589 WARN("PREFER_ALIGNED",
5590 "__aligned(size) is preferred over __attribute__((aligned(size)))\n" . $herecurr);
Joe Perches39b7e282011-07-25 17:13:24 -07005591 }
5592
Joe Perches5f14d3b2012-01-10 15:09:52 -08005593# Check for __attribute__ format(printf, prefer __printf
Joe Perches2b7ab452013-11-12 15:10:14 -08005594 if ($realfile !~ m@\binclude/uapi/@ &&
5595 $line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf/) {
Joe Perchesd5e616f2013-09-11 14:23:54 -07005596 if (WARN("PREFER_PRINTF",
5597 "__printf(string-index, first-to-check) is preferred over __attribute__((format(printf, string-index, first-to-check)))\n" . $herecurr) &&
5598 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005599 $fixed[$fixlinenr] =~ s/\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf\s*,\s*(.*)\)\s*\)\s*\)/"__printf(" . trim($1) . ")"/ex;
Joe Perchesd5e616f2013-09-11 14:23:54 -07005600
5601 }
Joe Perches5f14d3b2012-01-10 15:09:52 -08005602 }
5603
Joe Perches6061d942012-03-23 15:02:16 -07005604# Check for __attribute__ format(scanf, prefer __scanf
Joe Perches2b7ab452013-11-12 15:10:14 -08005605 if ($realfile !~ m@\binclude/uapi/@ &&
5606 $line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*scanf\b/) {
Joe Perchesd5e616f2013-09-11 14:23:54 -07005607 if (WARN("PREFER_SCANF",
5608 "__scanf(string-index, first-to-check) is preferred over __attribute__((format(scanf, string-index, first-to-check)))\n" . $herecurr) &&
5609 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005610 $fixed[$fixlinenr] =~ s/\b__attribute__\s*\(\s*\(\s*format\s*\(\s*scanf\s*,\s*(.*)\)\s*\)\s*\)/"__scanf(" . trim($1) . ")"/ex;
Joe Perchesd5e616f2013-09-11 14:23:54 -07005611 }
Joe Perches6061d942012-03-23 15:02:16 -07005612 }
5613
Joe Perches619a9082014-12-10 15:51:35 -08005614# Check for __attribute__ weak, or __weak declarations (may have link issues)
5615 if ($^V && $^V ge 5.10.0 &&
5616 $line =~ /(?:$Declare|$DeclareMisordered)\s*$Ident\s*$balanced_parens\s*(?:$Attribute)?\s*;/ &&
5617 ($line =~ /\b__attribute__\s*\(\s*\(.*\bweak\b/ ||
5618 $line =~ /\b__weak\b/)) {
5619 ERROR("WEAK_DECLARATION",
5620 "Using weak declarations can have unintended link defects\n" . $herecurr);
5621 }
5622
Tomas Winklerfd39f902016-12-12 16:46:34 -08005623# check for c99 types like uint8_t used outside of uapi/ and tools/
Joe Perchese6176fa2015-06-25 15:02:49 -07005624 if ($realfile !~ m@\binclude/uapi/@ &&
Tomas Winklerfd39f902016-12-12 16:46:34 -08005625 $realfile !~ m@\btools/@ &&
Joe Perchese6176fa2015-06-25 15:02:49 -07005626 $line =~ /\b($Declare)\s*$Ident\s*[=;,\[]/) {
5627 my $type = $1;
5628 if ($type =~ /\b($typeC99Typedefs)\b/) {
5629 $type = $1;
5630 my $kernel_type = 'u';
5631 $kernel_type = 's' if ($type =~ /^_*[si]/);
5632 $type =~ /(\d+)/;
5633 $kernel_type .= $1;
5634 if (CHK("PREFER_KERNEL_TYPES",
5635 "Prefer kernel type '$kernel_type' over '$type'\n" . $herecurr) &&
5636 $fix) {
5637 $fixed[$fixlinenr] =~ s/\b$type\b/$kernel_type/;
5638 }
5639 }
5640 }
5641
Joe Perches938224b2016-01-20 14:59:15 -08005642# check for cast of C90 native int or longer types constants
5643 if ($line =~ /(\(\s*$C90_int_types\s*\)\s*)($Constant)\b/) {
5644 my $cast = $1;
5645 my $const = $2;
5646 if (WARN("TYPECAST_INT_CONSTANT",
5647 "Unnecessary typecast of c90 int constant\n" . $herecurr) &&
5648 $fix) {
5649 my $suffix = "";
5650 my $newconst = $const;
5651 $newconst =~ s/${Int_type}$//;
5652 $suffix .= 'U' if ($cast =~ /\bunsigned\b/);
5653 if ($cast =~ /\blong\s+long\b/) {
5654 $suffix .= 'LL';
5655 } elsif ($cast =~ /\blong\b/) {
5656 $suffix .= 'L';
5657 }
5658 $fixed[$fixlinenr] =~ s/\Q$cast\E$const\b/$newconst$suffix/;
5659 }
5660 }
5661
Joe Perches8f53a9b2010-03-05 13:43:48 -08005662# check for sizeof(&)
5663 if ($line =~ /\bsizeof\s*\(\s*\&/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005664 WARN("SIZEOF_ADDRESS",
5665 "sizeof(& should be avoided\n" . $herecurr);
Joe Perches8f53a9b2010-03-05 13:43:48 -08005666 }
5667
Joe Perches66c80b62012-07-30 14:41:22 -07005668# check for sizeof without parenthesis
5669 if ($line =~ /\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/) {
Joe Perchesd5e616f2013-09-11 14:23:54 -07005670 if (WARN("SIZEOF_PARENTHESIS",
5671 "sizeof $1 should be sizeof($1)\n" . $herecurr) &&
5672 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005673 $fixed[$fixlinenr] =~ s/\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/"sizeof(" . trim($1) . ")"/ex;
Joe Perchesd5e616f2013-09-11 14:23:54 -07005674 }
Joe Perches66c80b62012-07-30 14:41:22 -07005675 }
5676
Joe Perches88982fe2012-12-17 16:02:00 -08005677# check for struct spinlock declarations
5678 if ($line =~ /^.\s*\bstruct\s+spinlock\s+\w+\s*;/) {
5679 WARN("USE_SPINLOCK_T",
5680 "struct spinlock should be spinlock_t\n" . $herecurr);
5681 }
5682
Joe Perchesa6962d72013-04-29 16:18:13 -07005683# check for seq_printf uses that could be seq_puts
Joe Perches06668722013-11-12 15:10:07 -08005684 if ($sline =~ /\bseq_printf\s*\(.*"\s*\)\s*;\s*$/) {
Joe Perchesa6962d72013-04-29 16:18:13 -07005685 my $fmt = get_quoted_string($line, $rawline);
Heba Aamercaac1d52015-02-13 14:38:49 -08005686 $fmt =~ s/%%//g;
5687 if ($fmt !~ /%/) {
Joe Perchesd5e616f2013-09-11 14:23:54 -07005688 if (WARN("PREFER_SEQ_PUTS",
5689 "Prefer seq_puts to seq_printf\n" . $herecurr) &&
5690 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005691 $fixed[$fixlinenr] =~ s/\bseq_printf\b/seq_puts/;
Joe Perchesd5e616f2013-09-11 14:23:54 -07005692 }
Joe Perchesa6962d72013-04-29 16:18:13 -07005693 }
5694 }
5695
Joe Perches0b523762017-05-08 15:55:36 -07005696 # check for vsprintf extension %p<foo> misuses
5697 if ($^V && $^V ge 5.10.0 &&
5698 defined $stat &&
5699 $stat =~ /^\+(?![^\{]*\{\s*).*\b(\w+)\s*\(.*$String\s*,/s &&
5700 $1 !~ /^_*volatile_*$/) {
5701 my $bad_extension = "";
5702 my $lc = $stat =~ tr@\n@@;
5703 $lc = $lc + $linenr;
5704 for (my $count = $linenr; $count <= $lc; $count++) {
5705 my $fmt = get_quoted_string($lines[$count - 1], raw_line($count, 0));
5706 $fmt =~ s/%%//g;
Pantelis Antoniouce4fecf2015-01-21 19:06:14 +02005707 if ($fmt =~ /(\%[\*\d\.]*p(?![\WFfSsBKRraEhMmIiUDdgVCbGNO]).)/) {
Joe Perches0b523762017-05-08 15:55:36 -07005708 $bad_extension = $1;
5709 last;
5710 }
5711 }
5712 if ($bad_extension ne "") {
5713 my $stat_real = raw_line($linenr, 0);
5714 for (my $count = $linenr + 1; $count <= $lc; $count++) {
5715 $stat_real = $stat_real . "\n" . raw_line($count, 0);
5716 }
5717 WARN("VSPRINTF_POINTER_EXTENSION",
5718 "Invalid vsprintf pointer extension '$bad_extension'\n" . "$here\n$stat_real\n");
5719 }
5720 }
5721
Andy Whitcroft554e1652012-01-10 15:09:57 -08005722# Check for misused memsets
Joe Perchesd1fe9c02012-03-23 15:02:16 -07005723 if ($^V && $^V ge 5.10.0 &&
5724 defined $stat &&
Mateusz Kulikowski9e20a852015-06-25 15:03:16 -07005725 $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*$FuncArg\s*\)/) {
Andy Whitcroft554e1652012-01-10 15:09:57 -08005726
Joe Perchesd7c76ba2012-01-10 15:09:58 -08005727 my $ms_addr = $2;
Joe Perchesd1fe9c02012-03-23 15:02:16 -07005728 my $ms_val = $7;
5729 my $ms_size = $12;
Joe Perchesd7c76ba2012-01-10 15:09:58 -08005730
Andy Whitcroft554e1652012-01-10 15:09:57 -08005731 if ($ms_size =~ /^(0x|)0$/i) {
5732 ERROR("MEMSET",
Joe Perchesd7c76ba2012-01-10 15:09:58 -08005733 "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 -08005734 } elsif ($ms_size =~ /^(0x|)1$/i) {
5735 WARN("MEMSET",
Joe Perchesd7c76ba2012-01-10 15:09:58 -08005736 "single byte memset is suspicious. Swapped 2nd/3rd argument?\n" . "$here\n$stat\n");
5737 }
5738 }
5739
Joe Perches98a9bba2014-01-23 15:54:52 -08005740# Check for memcpy(foo, bar, ETH_ALEN) that could be ether_addr_copy(foo, bar)
Joe Perchesf333195d2016-10-11 13:51:53 -07005741# if ($^V && $^V ge 5.10.0 &&
5742# defined $stat &&
5743# $stat =~ /^\+(?:.*?)\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
5744# if (WARN("PREFER_ETHER_ADDR_COPY",
5745# "Prefer ether_addr_copy() over memcpy() if the Ethernet addresses are __aligned(2)\n" . "$here\n$stat\n") &&
5746# $fix) {
5747# $fixed[$fixlinenr] =~ s/\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/ether_addr_copy($2, $7)/;
5748# }
5749# }
Joe Perches98a9bba2014-01-23 15:54:52 -08005750
Mateusz Kulikowskib6117d12015-06-25 15:03:13 -07005751# Check for memcmp(foo, bar, ETH_ALEN) that could be ether_addr_equal*(foo, bar)
Joe Perchesf333195d2016-10-11 13:51:53 -07005752# if ($^V && $^V ge 5.10.0 &&
5753# defined $stat &&
5754# $stat =~ /^\+(?:.*?)\bmemcmp\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
5755# WARN("PREFER_ETHER_ADDR_EQUAL",
5756# "Prefer ether_addr_equal() or ether_addr_equal_unaligned() over memcmp()\n" . "$here\n$stat\n")
5757# }
Mateusz Kulikowskib6117d12015-06-25 15:03:13 -07005758
Mateusz Kulikowski8617cd02015-06-25 15:03:19 -07005759# check for memset(foo, 0x0, ETH_ALEN) that could be eth_zero_addr
5760# check for memset(foo, 0xFF, ETH_ALEN) that could be eth_broadcast_addr
Joe Perchesf333195d2016-10-11 13:51:53 -07005761# if ($^V && $^V ge 5.10.0 &&
5762# defined $stat &&
5763# $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
5764#
5765# my $ms_val = $7;
5766#
5767# if ($ms_val =~ /^(?:0x|)0+$/i) {
5768# if (WARN("PREFER_ETH_ZERO_ADDR",
5769# "Prefer eth_zero_addr over memset()\n" . "$here\n$stat\n") &&
5770# $fix) {
5771# $fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_zero_addr($2)/;
5772# }
5773# } elsif ($ms_val =~ /^(?:0xff|255)$/i) {
5774# if (WARN("PREFER_ETH_BROADCAST_ADDR",
5775# "Prefer eth_broadcast_addr() over memset()\n" . "$here\n$stat\n") &&
5776# $fix) {
5777# $fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_broadcast_addr($2)/;
5778# }
5779# }
5780# }
Mateusz Kulikowski8617cd02015-06-25 15:03:19 -07005781
Joe Perchesd7c76ba2012-01-10 15:09:58 -08005782# typecasts on min/max could be min_t/max_t
Joe Perchesd1fe9c02012-03-23 15:02:16 -07005783 if ($^V && $^V ge 5.10.0 &&
5784 defined $stat &&
Joe Perchesd7c76ba2012-01-10 15:09:58 -08005785 $stat =~ /^\+(?:.*?)\b(min|max)\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\)/) {
Joe Perchesd1fe9c02012-03-23 15:02:16 -07005786 if (defined $2 || defined $7) {
Joe Perchesd7c76ba2012-01-10 15:09:58 -08005787 my $call = $1;
5788 my $cast1 = deparenthesize($2);
5789 my $arg1 = $3;
Joe Perchesd1fe9c02012-03-23 15:02:16 -07005790 my $cast2 = deparenthesize($7);
5791 my $arg2 = $8;
Joe Perchesd7c76ba2012-01-10 15:09:58 -08005792 my $cast;
5793
Joe Perchesd1fe9c02012-03-23 15:02:16 -07005794 if ($cast1 ne "" && $cast2 ne "" && $cast1 ne $cast2) {
Joe Perchesd7c76ba2012-01-10 15:09:58 -08005795 $cast = "$cast1 or $cast2";
5796 } elsif ($cast1 ne "") {
5797 $cast = $cast1;
5798 } else {
5799 $cast = $cast2;
5800 }
5801 WARN("MINMAX",
5802 "$call() should probably be ${call}_t($cast, $arg1, $arg2)\n" . "$here\n$stat\n");
Andy Whitcroft554e1652012-01-10 15:09:57 -08005803 }
5804 }
5805
Joe Perches4a273192012-07-30 14:41:20 -07005806# check usleep_range arguments
5807 if ($^V && $^V ge 5.10.0 &&
5808 defined $stat &&
5809 $stat =~ /^\+(?:.*?)\busleep_range\s*\(\s*($FuncArg)\s*,\s*($FuncArg)\s*\)/) {
5810 my $min = $1;
5811 my $max = $7;
5812 if ($min eq $max) {
5813 WARN("USLEEP_RANGE",
5814 "usleep_range should not use min == max args; see Documentation/timers/timers-howto.txt\n" . "$here\n$stat\n");
5815 } elsif ($min =~ /^\d+$/ && $max =~ /^\d+$/ &&
5816 $min > $max) {
5817 WARN("USLEEP_RANGE",
5818 "usleep_range args reversed, use min then max; see Documentation/timers/timers-howto.txt\n" . "$here\n$stat\n");
5819 }
5820 }
5821
Joe Perches823b7942013-11-12 15:10:15 -08005822# check for naked sscanf
5823 if ($^V && $^V ge 5.10.0 &&
5824 defined $stat &&
Joe Perches6c8bd702014-04-03 14:49:16 -07005825 $line =~ /\bsscanf\b/ &&
Joe Perches823b7942013-11-12 15:10:15 -08005826 ($stat !~ /$Ident\s*=\s*sscanf\s*$balanced_parens/ &&
5827 $stat !~ /\bsscanf\s*$balanced_parens\s*(?:$Compare)/ &&
5828 $stat !~ /(?:$Compare)\s*\bsscanf\s*$balanced_parens/)) {
5829 my $lc = $stat =~ tr@\n@@;
5830 $lc = $lc + $linenr;
5831 my $stat_real = raw_line($linenr, 0);
5832 for (my $count = $linenr + 1; $count <= $lc; $count++) {
5833 $stat_real = $stat_real . "\n" . raw_line($count, 0);
5834 }
5835 WARN("NAKED_SSCANF",
5836 "unchecked sscanf return value\n" . "$here\n$stat_real\n");
5837 }
5838
Joe Perchesafc819a2014-06-04 16:12:08 -07005839# check for simple sscanf that should be kstrto<foo>
5840 if ($^V && $^V ge 5.10.0 &&
5841 defined $stat &&
5842 $line =~ /\bsscanf\b/) {
5843 my $lc = $stat =~ tr@\n@@;
5844 $lc = $lc + $linenr;
5845 my $stat_real = raw_line($linenr, 0);
5846 for (my $count = $linenr + 1; $count <= $lc; $count++) {
5847 $stat_real = $stat_real . "\n" . raw_line($count, 0);
5848 }
5849 if ($stat_real =~ /\bsscanf\b\s*\(\s*$FuncArg\s*,\s*("[^"]+")/) {
5850 my $format = $6;
5851 my $count = $format =~ tr@%@%@;
5852 if ($count == 1 &&
5853 $format =~ /^"\%(?i:ll[udxi]|[udxi]ll|ll|[hl]h?[udxi]|[udxi][hl]h?|[hl]h?|[udxi])"$/) {
5854 WARN("SSCANF_TO_KSTRTO",
5855 "Prefer kstrto<type> to single variable sscanf\n" . "$here\n$stat_real\n");
5856 }
5857 }
5858 }
5859
Joe Perches70dc8a42013-09-11 14:23:58 -07005860# check for new externs in .h files.
5861 if ($realfile =~ /\.h$/ &&
5862 $line =~ /^\+\s*(extern\s+)$Type\s*$Ident\s*\(/s) {
Joe Perchesd1d85782013-09-24 15:27:46 -07005863 if (CHK("AVOID_EXTERNS",
5864 "extern prototypes should be avoided in .h files\n" . $herecurr) &&
Joe Perches70dc8a42013-09-11 14:23:58 -07005865 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005866 $fixed[$fixlinenr] =~ s/(.*)\bextern\b\s*(.*)/$1$2/;
Joe Perches70dc8a42013-09-11 14:23:58 -07005867 }
5868 }
5869
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07005870# check for new externs in .c files.
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07005871 if ($realfile =~ /\.c$/ && defined $stat &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07005872 $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s)
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07005873 {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07005874 my $function_name = $1;
5875 my $paren_space = $2;
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07005876
5877 my $s = $stat;
5878 if (defined $cond) {
5879 substr($s, 0, length($cond), '');
5880 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07005881 if ($s =~ /^\s*;/ &&
5882 $function_name ne 'uninitialized_var')
5883 {
Joe Perches000d1cc12011-07-25 17:13:25 -07005884 WARN("AVOID_EXTERNS",
5885 "externs should be avoided in .c files\n" . $herecurr);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07005886 }
5887
5888 if ($paren_space =~ /\n/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005889 WARN("FUNCTION_ARGUMENTS",
5890 "arguments for function declarations should follow identifier\n" . $herecurr);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07005891 }
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07005892
5893 } elsif ($realfile =~ /\.c$/ && defined $stat &&
5894 $stat =~ /^.\s*extern\s+/)
5895 {
Joe Perches000d1cc12011-07-25 17:13:25 -07005896 WARN("AVOID_EXTERNS",
5897 "externs should be avoided in .c files\n" . $herecurr);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07005898 }
5899
Joe Perchesca0d8922016-10-11 13:52:16 -07005900 if ($realfile =~ /\.[ch]$/ && defined $stat &&
5901 $stat =~ /^.\s*(?:extern\s+)?$Type\s*$Ident\s*\(\s*([^{]+)\s*\)\s*;/s &&
5902 $1 ne "void") {
5903 my $args = trim($1);
5904 while ($args =~ m/\s*($Type\s*(?:$Ident|\(\s*\*\s*$Ident?\s*\)\s*$balanced_parens)?)/g) {
5905 my $arg = trim($1);
5906 if ($arg =~ /^$Type$/ && $arg !~ /enum\s+$Ident$/) {
5907 WARN("FUNCTION_ARGUMENTS",
5908 "function definition argument '$arg' should also have an identifier name\n" . $herecurr);
5909 }
5910 }
5911 }
5912
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07005913# checks for new __setup's
5914 if ($rawline =~ /\b__setup\("([^"]*)"/) {
5915 my $name = $1;
5916
5917 if (!grep(/$name/, @setup_docs)) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005918 CHK("UNDOCUMENTED_SETUP",
Mauro Carvalho Chehab8c27ceff32016-10-18 10:12:27 -02005919 "__setup appears un-documented -- check Documentation/admin-guide/kernel-parameters.rst\n" . $herecurr);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07005920 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07005921 }
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07005922
5923# check for pointless casting of kmalloc return
Joe Perchescaf2a542011-01-12 16:59:56 -08005924 if ($line =~ /\*\s*\)\s*[kv][czm]alloc(_node){0,1}\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005925 WARN("UNNECESSARY_CASTS",
5926 "unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07005927 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005928
Joe Perchesa640d252013-07-03 15:05:21 -07005929# alloc style
5930# p = alloc(sizeof(struct foo), ...) should be p = alloc(sizeof(*p), ...)
5931 if ($^V && $^V ge 5.10.0 &&
5932 $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*([kv][mz]alloc(?:_node)?)\s*\(\s*(sizeof\s*\(\s*struct\s+$Lval\s*\))/) {
5933 CHK("ALLOC_SIZEOF_STRUCT",
5934 "Prefer $3(sizeof(*$1)...) over $3($4...)\n" . $herecurr);
5935 }
5936
Joe Perches60a55362014-06-04 16:12:07 -07005937# check for k[mz]alloc with multiplies that could be kmalloc_array/kcalloc
5938 if ($^V && $^V ge 5.10.0 &&
Joe Perches1b4a2ed2017-05-08 15:55:57 -07005939 defined $stat &&
5940 $stat =~ /^\+\s*($Lval)\s*\=\s*(?:$balanced_parens)?\s*(k[mz]alloc)\s*\(\s*($FuncArg)\s*\*\s*($FuncArg)\s*,/) {
Joe Perches60a55362014-06-04 16:12:07 -07005941 my $oldfunc = $3;
5942 my $a1 = $4;
5943 my $a2 = $10;
5944 my $newfunc = "kmalloc_array";
5945 $newfunc = "kcalloc" if ($oldfunc eq "kzalloc");
Joe Perchese3674552014-08-06 16:10:55 -07005946 my $r1 = $a1;
5947 my $r2 = $a2;
5948 if ($a1 =~ /^sizeof\s*\S/) {
5949 $r1 = $a2;
5950 $r2 = $a1;
5951 }
5952 if ($r1 !~ /^sizeof\b/ && $r2 =~ /^sizeof\s*\S/ &&
5953 !($r1 =~ /^$Constant$/ || $r1 =~ /^[A-Z_][A-Z0-9_]*$/)) {
Joe Perches1b4a2ed2017-05-08 15:55:57 -07005954 my $ctx = '';
5955 my $herectx = $here . "\n";
5956 my $cnt = statement_rawlines($stat);
5957 for (my $n = 0; $n < $cnt; $n++) {
5958 $herectx .= raw_line($linenr, $n) . "\n";
5959 }
Joe Perches60a55362014-06-04 16:12:07 -07005960 if (WARN("ALLOC_WITH_MULTIPLY",
Joe Perches1b4a2ed2017-05-08 15:55:57 -07005961 "Prefer $newfunc over $oldfunc with multiply\n" . $herectx) &&
5962 $cnt == 1 &&
Joe Perches60a55362014-06-04 16:12:07 -07005963 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005964 $fixed[$fixlinenr] =~ s/\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*(k[mz]alloc)\s*\(\s*($FuncArg)\s*\*\s*($FuncArg)/$1 . ' = ' . "$newfunc(" . trim($r1) . ', ' . trim($r2)/e;
Joe Perches60a55362014-06-04 16:12:07 -07005965 }
5966 }
5967 }
5968
Joe Perches972fdea2013-04-29 16:18:12 -07005969# check for krealloc arg reuse
5970 if ($^V && $^V ge 5.10.0 &&
5971 $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*krealloc\s*\(\s*\1\s*,/) {
5972 WARN("KREALLOC_ARG_REUSE",
5973 "Reusing the krealloc arg is almost always a bug\n" . $herecurr);
5974 }
5975
Joe Perches5ce59ae2013-02-21 16:44:18 -08005976# check for alloc argument mismatch
5977 if ($line =~ /\b(kcalloc|kmalloc_array)\s*\(\s*sizeof\b/) {
5978 WARN("ALLOC_ARRAY_ARGS",
5979 "$1 uses number as first arg, sizeof is generally wrong\n" . $herecurr);
5980 }
5981
Joe Perchescaf2a542011-01-12 16:59:56 -08005982# check for multiple semicolons
5983 if ($line =~ /;\s*;\s*$/) {
Joe Perchesd5e616f2013-09-11 14:23:54 -07005984 if (WARN("ONE_SEMICOLON",
5985 "Statements terminations use 1 semicolon\n" . $herecurr) &&
5986 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005987 $fixed[$fixlinenr] =~ s/(\s*;\s*){2,}$/;/g;
Joe Perchesd5e616f2013-09-11 14:23:54 -07005988 }
Joe Perchesd1e2ad02012-12-17 16:02:01 -08005989 }
5990
Tomas Winklercec3aaa2016-08-02 14:04:39 -07005991# check for #defines like: 1 << <digit> that could be BIT(digit), it is not exported to uapi
5992 if ($realfile !~ m@^include/uapi/@ &&
5993 $line =~ /#\s*define\s+\w+\s+\(?\s*1\s*([ulUL]*)\s*\<\<\s*(?:\d+|$Ident)\s*\)?/) {
Joe Perches0ab90192014-12-10 15:51:57 -08005994 my $ull = "";
5995 $ull = "_ULL" if (defined($1) && $1 =~ /ll/i);
5996 if (CHK("BIT_MACRO",
5997 "Prefer using the BIT$ull macro\n" . $herecurr) &&
5998 $fix) {
5999 $fixed[$fixlinenr] =~ s/\(?\s*1\s*[ulUL]*\s*<<\s*(\d+|$Ident)\s*\)?/BIT${ull}($1)/;
6000 }
6001 }
6002
Joe Perches2d632742016-05-20 17:04:00 -07006003# check for #if defined CONFIG_<FOO> || defined CONFIG_<FOO>_MODULE
6004 if ($line =~ /^\+\s*#\s*if\s+defined(?:\s*\(?\s*|\s+)(CONFIG_[A-Z_]+)\s*\)?\s*\|\|\s*defined(?:\s*\(?\s*|\s+)\1_MODULE\s*\)?\s*$/) {
6005 my $config = $1;
6006 if (WARN("PREFER_IS_ENABLED",
6007 "Prefer IS_ENABLED(<FOO>) to CONFIG_<FOO> || CONFIG_<FOO>_MODULE\n" . $herecurr) &&
6008 $fix) {
6009 $fixed[$fixlinenr] = "\+#if IS_ENABLED($config)";
6010 }
6011 }
6012
Joe Perchese81f2392014-08-06 16:11:25 -07006013# check for case / default statements not preceded by break/fallthrough/switch
Joe Perchesc34c09a2014-01-23 15:54:43 -08006014 if ($line =~ /^.\s*(?:case\s+(?:$Ident|$Constant)\s*|default):/) {
6015 my $has_break = 0;
6016 my $has_statement = 0;
6017 my $count = 0;
6018 my $prevline = $linenr;
Joe Perchese81f2392014-08-06 16:11:25 -07006019 while ($prevline > 1 && ($file || $count < 3) && !$has_break) {
Joe Perchesc34c09a2014-01-23 15:54:43 -08006020 $prevline--;
6021 my $rline = $rawlines[$prevline - 1];
6022 my $fline = $lines[$prevline - 1];
6023 last if ($fline =~ /^\@\@/);
6024 next if ($fline =~ /^\-/);
6025 next if ($fline =~ /^.(?:\s*(?:case\s+(?:$Ident|$Constant)[\s$;]*|default):[\s$;]*)*$/);
6026 $has_break = 1 if ($rline =~ /fall[\s_-]*(through|thru)/i);
6027 next if ($fline =~ /^.[\s$;]*$/);
6028 $has_statement = 1;
6029 $count++;
6030 $has_break = 1 if ($fline =~ /\bswitch\b|\b(?:break\s*;[\s$;]*$|return\b|goto\b|continue\b)/);
6031 }
6032 if (!$has_break && $has_statement) {
6033 WARN("MISSING_BREAK",
Andrew Morton224236d2016-12-12 16:46:26 -08006034 "Possible switch case/default not preceded by break or fallthrough comment\n" . $herecurr);
Joe Perchesc34c09a2014-01-23 15:54:43 -08006035 }
6036 }
6037
Joe Perchesd1e2ad02012-12-17 16:02:01 -08006038# check for switch/default statements without a break;
6039 if ($^V && $^V ge 5.10.0 &&
6040 defined $stat &&
6041 $stat =~ /^\+[$;\s]*(?:case[$;\s]+\w+[$;\s]*:[$;\s]*|)*[$;\s]*\bdefault[$;\s]*:[$;\s]*;/g) {
6042 my $ctx = '';
6043 my $herectx = $here . "\n";
6044 my $cnt = statement_rawlines($stat);
6045 for (my $n = 0; $n < $cnt; $n++) {
6046 $herectx .= raw_line($linenr, $n) . "\n";
6047 }
6048 WARN("DEFAULT_NO_BREAK",
6049 "switch default: should use break\n" . $herectx);
Joe Perchescaf2a542011-01-12 16:59:56 -08006050 }
6051
Andy Whitcroft13214ad2008-02-08 04:22:03 -08006052# check for gcc specific __FUNCTION__
Joe Perchesd5e616f2013-09-11 14:23:54 -07006053 if ($line =~ /\b__FUNCTION__\b/) {
6054 if (WARN("USE_FUNC",
6055 "__func__ should be used instead of gcc specific __FUNCTION__\n" . $herecurr) &&
6056 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07006057 $fixed[$fixlinenr] =~ s/\b__FUNCTION__\b/__func__/g;
Joe Perchesd5e616f2013-09-11 14:23:54 -07006058 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08006059 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07006060
Joe Perches62ec8182015-02-13 14:38:18 -08006061# check for uses of __DATE__, __TIME__, __TIMESTAMP__
6062 while ($line =~ /\b(__(?:DATE|TIME|TIMESTAMP)__)\b/g) {
6063 ERROR("DATE_TIME",
6064 "Use of the '$1' macro makes the build non-deterministic\n" . $herecurr);
6065 }
6066
Joe Perches2c924882012-03-23 15:02:20 -07006067# check for use of yield()
6068 if ($line =~ /\byield\s*\(\s*\)/) {
6069 WARN("YIELD",
6070 "Using yield() is generally wrong. See yield() kernel-doc (sched/core.c)\n" . $herecurr);
6071 }
6072
Joe Perches179f8f42013-07-03 15:05:30 -07006073# check for comparisons against true and false
6074 if ($line =~ /\+\s*(.*?)\b(true|false|$Lval)\s*(==|\!=)\s*(true|false|$Lval)\b(.*)$/i) {
6075 my $lead = $1;
6076 my $arg = $2;
6077 my $test = $3;
6078 my $otype = $4;
6079 my $trail = $5;
6080 my $op = "!";
6081
6082 ($arg, $otype) = ($otype, $arg) if ($arg =~ /^(?:true|false)$/i);
6083
6084 my $type = lc($otype);
6085 if ($type =~ /^(?:true|false)$/) {
6086 if (("$test" eq "==" && "$type" eq "true") ||
6087 ("$test" eq "!=" && "$type" eq "false")) {
6088 $op = "";
6089 }
6090
6091 CHK("BOOL_COMPARISON",
6092 "Using comparison to $otype is error prone\n" . $herecurr);
6093
6094## maybe suggesting a correct construct would better
6095## "Using comparison to $otype is error prone. Perhaps use '${lead}${op}${arg}${trail}'\n" . $herecurr);
6096
6097 }
6098 }
6099
Thomas Gleixner4882720b2010-09-07 14:34:01 +00006100# check for semaphores initialized locked
6101 if ($line =~ /^.\s*sema_init.+,\W?0\W?\)/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006102 WARN("CONSIDER_COMPLETION",
6103 "consider using a completion\n" . $herecurr);
Andy Whitcroft773647a2008-03-28 14:15:58 -07006104 }
Joe Perches6712d852012-03-23 15:02:20 -07006105
Joe Perches67d0a072011-10-31 17:13:10 -07006106# recommend kstrto* over simple_strto* and strict_strto*
6107 if ($line =~ /\b((simple|strict)_(strto(l|ll|ul|ull)))\s*\(/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006108 WARN("CONSIDER_KSTRTO",
Joe Perches67d0a072011-10-31 17:13:10 -07006109 "$1 is obsolete, use k$3 instead\n" . $herecurr);
Andy Whitcroft773647a2008-03-28 14:15:58 -07006110 }
Joe Perches6712d852012-03-23 15:02:20 -07006111
Fabian Frederickae3ccc42014-06-04 16:12:10 -07006112# check for __initcall(), use device_initcall() explicitly or more appropriate function please
Michael Ellermanf3db6632008-07-23 21:28:57 -07006113 if ($line =~ /^.\s*__initcall\s*\(/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006114 WARN("USE_DEVICE_INITCALL",
Fabian Frederickae3ccc42014-06-04 16:12:10 -07006115 "please use device_initcall() or more appropriate function instead of __initcall() (see include/linux/init.h)\n" . $herecurr);
Michael Ellermanf3db6632008-07-23 21:28:57 -07006116 }
Joe Perches6712d852012-03-23 15:02:20 -07006117
Joe Perches0f3c5aa2015-02-13 14:39:05 -08006118# check for various structs that are normally const (ops, kgdb, device_tree)
Joe Perchesd9190e42017-05-08 15:55:45 -07006119# and avoid what seem like struct definitions 'struct foo {'
Andy Whitcroft6903ffb2009-01-15 13:51:07 -08006120 if ($line !~ /\bconst\b/ &&
Joe Perchesd9190e42017-05-08 15:55:45 -07006121 $line =~ /\bstruct\s+($const_structs)\b(?!\s*\{)/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006122 WARN("CONST_STRUCT",
Joe Perchesd9190e42017-05-08 15:55:45 -07006123 "struct $1 should normally be const\n" . $herecurr);
Andy Whitcroft2b6db5c2009-01-06 14:41:29 -08006124 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07006125
6126# use of NR_CPUS is usually wrong
6127# ignore definitions of NR_CPUS and usage to define arrays as likely right
6128 if ($line =~ /\bNR_CPUS\b/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07006129 $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ &&
6130 $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ &&
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07006131 $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ &&
6132 $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ &&
6133 $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/)
Andy Whitcroft773647a2008-03-28 14:15:58 -07006134 {
Joe Perches000d1cc12011-07-25 17:13:25 -07006135 WARN("NR_CPUS",
6136 "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 -07006137 }
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07006138
Joe Perches52ea8502013-11-12 15:10:09 -08006139# Use of __ARCH_HAS_<FOO> or ARCH_HAVE_<BAR> is wrong.
6140 if ($line =~ /\+\s*#\s*define\s+((?:__)?ARCH_(?:HAS|HAVE)\w*)\b/) {
6141 ERROR("DEFINE_ARCH_HAS",
6142 "#define of '$1' is wrong - use Kconfig variables or standard guards instead\n" . $herecurr);
6143 }
6144
Joe Perchesacd93622015-02-13 14:38:38 -08006145# likely/unlikely comparisons similar to "(likely(foo) > 0)"
6146 if ($^V && $^V ge 5.10.0 &&
6147 $line =~ /\b((?:un)?likely)\s*\(\s*$FuncArg\s*\)\s*$Compare/) {
6148 WARN("LIKELY_MISUSE",
6149 "Using $1 should generally have parentheses around the comparison\n" . $herecurr);
6150 }
6151
Andy Whitcroft691d77b2009-01-06 14:41:16 -08006152# whine mightly about in_atomic
6153 if ($line =~ /\bin_atomic\s*\(/) {
6154 if ($realfile =~ m@^drivers/@) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006155 ERROR("IN_ATOMIC",
6156 "do not use in_atomic in drivers\n" . $herecurr);
Andy Whitcroftf4a87732009-02-27 14:03:05 -08006157 } elsif ($realfile !~ m@^kernel/@) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006158 WARN("IN_ATOMIC",
6159 "use of in_atomic() is incorrect outside core kernel code\n" . $herecurr);
Andy Whitcroft691d77b2009-01-06 14:41:16 -08006160 }
6161 }
Peter Zijlstra1704f472010-03-19 01:37:42 +01006162
Joe Perches481aea52016-05-20 17:04:08 -07006163# whine about ACCESS_ONCE
6164 if ($^V && $^V ge 5.10.0 &&
6165 $line =~ /\bACCESS_ONCE\s*$balanced_parens\s*(=(?!=))?\s*($FuncArg)?/) {
6166 my $par = $1;
6167 my $eq = $2;
6168 my $fun = $3;
6169 $par =~ s/^\(\s*(.*)\s*\)$/$1/;
6170 if (defined($eq)) {
6171 if (WARN("PREFER_WRITE_ONCE",
6172 "Prefer WRITE_ONCE(<FOO>, <BAR>) over ACCESS_ONCE(<FOO>) = <BAR>\n" . $herecurr) &&
6173 $fix) {
6174 $fixed[$fixlinenr] =~ s/\bACCESS_ONCE\s*\(\s*\Q$par\E\s*\)\s*$eq\s*\Q$fun\E/WRITE_ONCE($par, $fun)/;
6175 }
6176 } else {
6177 if (WARN("PREFER_READ_ONCE",
6178 "Prefer READ_ONCE(<FOO>) over ACCESS_ONCE(<FOO>)\n" . $herecurr) &&
6179 $fix) {
6180 $fixed[$fixlinenr] =~ s/\bACCESS_ONCE\s*\(\s*\Q$par\E\s*\)/READ_ONCE($par)/;
6181 }
6182 }
6183 }
6184
Peter Zijlstra0f5225b2016-10-07 17:43:51 +02006185# check for mutex_trylock_recursive usage
6186 if ($line =~ /mutex_trylock_recursive/) {
6187 ERROR("LOCKING",
6188 "recursive locking is bad, do not use this ever.\n" . $herecurr);
6189 }
6190
Peter Zijlstra1704f472010-03-19 01:37:42 +01006191# check for lockdep_set_novalidate_class
6192 if ($line =~ /^.\s*lockdep_set_novalidate_class\s*\(/ ||
6193 $line =~ /__lockdep_no_validate__\s*\)/ ) {
6194 if ($realfile !~ m@^kernel/lockdep@ &&
6195 $realfile !~ m@^include/linux/lockdep@ &&
6196 $realfile !~ m@^drivers/base/core@) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006197 ERROR("LOCKDEP",
6198 "lockdep_no_validate class is reserved for device->mutex.\n" . $herecurr);
Peter Zijlstra1704f472010-03-19 01:37:42 +01006199 }
6200 }
Dave Jones88f88312011-01-12 16:59:59 -08006201
Joe Perchesb392c642015-04-16 12:44:16 -07006202 if ($line =~ /debugfs_create_\w+.*\b$mode_perms_world_writable\b/ ||
6203 $line =~ /DEVICE_ATTR.*\b$mode_perms_world_writable\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006204 WARN("EXPORTED_WORLD_WRITABLE",
6205 "Exporting world writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr);
Dave Jones88f88312011-01-12 16:59:59 -08006206 }
Joe Perches24358802014-04-03 14:49:13 -07006207
Joe Perches515a2352014-04-03 14:49:24 -07006208# Mode permission misuses where it seems decimal should be octal
6209# This uses a shortcut match to avoid unnecessary uses of a slow foreach loop
6210 if ($^V && $^V ge 5.10.0 &&
Joe Perches459cf0a2016-10-11 13:52:19 -07006211 defined $stat &&
Joe Perches515a2352014-04-03 14:49:24 -07006212 $line =~ /$mode_perms_search/) {
6213 foreach my $entry (@mode_permission_funcs) {
6214 my $func = $entry->[0];
6215 my $arg_pos = $entry->[1];
Joe Perches24358802014-04-03 14:49:13 -07006216
Joe Perches459cf0a2016-10-11 13:52:19 -07006217 my $lc = $stat =~ tr@\n@@;
6218 $lc = $lc + $linenr;
6219 my $stat_real = raw_line($linenr, 0);
6220 for (my $count = $linenr + 1; $count <= $lc; $count++) {
6221 $stat_real = $stat_real . "\n" . raw_line($count, 0);
6222 }
6223
Joe Perches515a2352014-04-03 14:49:24 -07006224 my $skip_args = "";
6225 if ($arg_pos > 1) {
6226 $arg_pos--;
6227 $skip_args = "(?:\\s*$FuncArg\\s*,\\s*){$arg_pos,$arg_pos}";
6228 }
Joe Perchesf90774e2016-10-11 13:51:47 -07006229 my $test = "\\b$func\\s*\\(${skip_args}($FuncArg(?:\\|\\s*$FuncArg)*)\\s*[,\\)]";
Joe Perches459cf0a2016-10-11 13:52:19 -07006230 if ($stat =~ /$test/) {
Joe Perches515a2352014-04-03 14:49:24 -07006231 my $val = $1;
6232 $val = $6 if ($skip_args ne "");
Joe Perchesf90774e2016-10-11 13:51:47 -07006233 if (($val =~ /^$Int$/ && $val !~ /^$Octal$/) ||
6234 ($val =~ /^$Octal$/ && length($val) ne 4)) {
Joe Perches515a2352014-04-03 14:49:24 -07006235 ERROR("NON_OCTAL_PERMISSIONS",
Joe Perches459cf0a2016-10-11 13:52:19 -07006236 "Use 4 digit octal (0777) not decimal permissions\n" . "$here\n" . $stat_real);
Joe Perchesf90774e2016-10-11 13:51:47 -07006237 }
6238 if ($val =~ /^$Octal$/ && (oct($val) & 02)) {
Joe Perchesc0a5c892015-02-13 14:38:21 -08006239 ERROR("EXPORTED_WORLD_WRITABLE",
Joe Perches459cf0a2016-10-11 13:52:19 -07006240 "Exporting writable files is usually an error. Consider more restrictive permissions.\n" . "$here\n" . $stat_real);
Joe Perchesf90774e2016-10-11 13:51:47 -07006241 }
Joe Perches24358802014-04-03 14:49:13 -07006242 }
6243 }
6244 }
Bjorn Andersson5a6d20c2015-06-25 15:03:24 -07006245
Joe Perches459cf0a2016-10-11 13:52:19 -07006246# check for uses of S_<PERMS> that could be octal for readability
6247 if ($line =~ /\b$mode_perms_string_search\b/) {
6248 my $val = "";
6249 my $oval = "";
6250 my $to = 0;
6251 my $curpos = 0;
6252 my $lastpos = 0;
6253 while ($line =~ /\b(($mode_perms_string_search)\b(?:\s*\|\s*)?\s*)/g) {
6254 $curpos = pos($line);
6255 my $match = $2;
6256 my $omatch = $1;
6257 last if ($lastpos > 0 && ($curpos - length($omatch) != $lastpos));
6258 $lastpos = $curpos;
6259 $to |= $mode_permission_string_types{$match};
6260 $val .= '\s*\|\s*' if ($val ne "");
6261 $val .= $match;
6262 $oval .= $omatch;
6263 }
6264 $oval =~ s/^\s*\|\s*//;
6265 $oval =~ s/\s*\|\s*$//;
6266 my $octal = sprintf("%04o", $to);
6267 if (WARN("SYMBOLIC_PERMS",
6268 "Symbolic permissions '$oval' are not preferred. Consider using octal permissions '$octal'.\n" . $herecurr) &&
6269 $fix) {
6270 $fixed[$fixlinenr] =~ s/$val/$octal/;
6271 }
6272 }
6273
Bjorn Andersson5a6d20c2015-06-25 15:03:24 -07006274# validate content of MODULE_LICENSE against list from include/linux/module.h
6275 if ($line =~ /\bMODULE_LICENSE\s*\(\s*($String)\s*\)/) {
6276 my $extracted_string = get_quoted_string($line, $rawline);
6277 my $valid_licenses = qr{
6278 GPL|
6279 GPL\ v2|
6280 GPL\ and\ additional\ rights|
6281 Dual\ BSD/GPL|
6282 Dual\ MIT/GPL|
6283 Dual\ MPL/GPL|
6284 Proprietary
6285 }x;
6286 if ($extracted_string !~ /^"(?:$valid_licenses)"$/x) {
6287 WARN("MODULE_LICENSE",
6288 "unknown module license " . $extracted_string . "\n" . $herecurr);
6289 }
6290 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08006291 }
6292
6293 # If we have no input at all, then there is nothing to report on
6294 # so just keep quiet.
6295 if ($#rawlines == -1) {
6296 exit(0);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07006297 }
6298
Andy Whitcroft8905a672007-11-28 16:21:06 -08006299 # In mailback mode only produce a report in the negative, for
6300 # things that appear to be patches.
6301 if ($mailback && ($clean == 1 || !$is_patch)) {
6302 exit(0);
6303 }
6304
6305 # This is not a patch, and we are are in 'no-patch' mode so
6306 # just keep quiet.
6307 if (!$chk_patch && !$is_patch) {
6308 exit(0);
6309 }
6310
Joe Perches06330fc2015-06-25 15:03:11 -07006311 if (!$is_patch && $file !~ /cover-letter\.patch$/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006312 ERROR("NOT_UNIFIED_DIFF",
6313 "Does not appear to be a unified-diff format patch\n");
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07006314 }
Allen Hubbeed43c4e2016-08-02 14:04:45 -07006315 if ($is_patch && $has_commit_log && $chk_signoff && $signoff == 0) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006316 ERROR("MISSING_SIGN_OFF",
6317 "Missing Signed-off-by: line(s)\n");
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07006318 }
6319
Andy Whitcroft8905a672007-11-28 16:21:06 -08006320 print report_dump();
Andy Whitcroft13214ad2008-02-08 04:22:03 -08006321 if ($summary && !($clean == 1 && $quiet == 1)) {
6322 print "$filename " if ($summary_file);
Andy Whitcroft8905a672007-11-28 16:21:06 -08006323 print "total: $cnt_error errors, $cnt_warn warnings, " .
6324 (($check)? "$cnt_chk checks, " : "") .
6325 "$cnt_lines lines checked\n";
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07006326 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08006327
Andy Whitcroftd2c0a232010-10-26 14:23:12 -07006328 if ($quiet == 0) {
Joe Perchesef212192016-05-20 17:04:11 -07006329 # If there were any defects found and not already fixing them
6330 if (!$clean and !$fix) {
6331 print << "EOM"
6332
6333NOTE: For some of the reported defects, checkpatch may be able to
6334 mechanically convert to the typical style using --fix or --fix-inplace.
6335EOM
6336 }
Andy Whitcroftd2c0a232010-10-26 14:23:12 -07006337 # If there were whitespace errors which cleanpatch can fix
6338 # then suggest that.
6339 if ($rpt_cleaners) {
Mike Frysingerb0781212011-03-22 16:34:43 -07006340 $rpt_cleaners = 0;
Joe Perchesd8469f12015-06-25 15:03:00 -07006341 print << "EOM"
6342
6343NOTE: Whitespace errors detected.
6344 You may wish to use scripts/cleanpatch or scripts/cleanfile
6345EOM
Andy Whitcroftd2c0a232010-10-26 14:23:12 -07006346 }
6347 }
6348
Joe Perchesd752fcc2014-08-06 16:11:05 -07006349 if ($clean == 0 && $fix &&
6350 ("@rawlines" ne "@fixed" ||
6351 $#fixed_inserted >= 0 || $#fixed_deleted >= 0)) {
Joe Perches9624b8d2014-01-23 15:54:44 -08006352 my $newfile = $filename;
6353 $newfile .= ".EXPERIMENTAL-checkpatch-fixes" if (!$fix_inplace);
Joe Perches3705ce52013-07-03 15:05:31 -07006354 my $linecount = 0;
6355 my $f;
6356
Joe Perchesd752fcc2014-08-06 16:11:05 -07006357 @fixed = fix_inserted_deleted_lines(\@fixed, \@fixed_inserted, \@fixed_deleted);
6358
Joe Perches3705ce52013-07-03 15:05:31 -07006359 open($f, '>', $newfile)
6360 or die "$P: Can't open $newfile for write\n";
6361 foreach my $fixed_line (@fixed) {
6362 $linecount++;
6363 if ($file) {
6364 if ($linecount > 3) {
6365 $fixed_line =~ s/^\+//;
Joe Perchesd752fcc2014-08-06 16:11:05 -07006366 print $f $fixed_line . "\n";
Joe Perches3705ce52013-07-03 15:05:31 -07006367 }
6368 } else {
6369 print $f $fixed_line . "\n";
6370 }
6371 }
6372 close($f);
6373
6374 if (!$quiet) {
6375 print << "EOM";
Joe Perchesd8469f12015-06-25 15:03:00 -07006376
Joe Perches3705ce52013-07-03 15:05:31 -07006377Wrote EXPERIMENTAL --fix correction(s) to '$newfile'
6378
6379Do _NOT_ trust the results written to this file.
6380Do _NOT_ submit these changes without inspecting them for correctness.
6381
6382This EXPERIMENTAL file is simply a convenience to help rewrite patches.
6383No warranties, expressed or implied...
Joe Perches3705ce52013-07-03 15:05:31 -07006384EOM
6385 }
6386 }
6387
Joe Perchesd8469f12015-06-25 15:03:00 -07006388 if ($quiet == 0) {
6389 print "\n";
6390 if ($clean == 1) {
6391 print "$vname has no obvious style problems and is ready for submission.\n";
6392 } else {
6393 print "$vname has style problems, please review.\n";
6394 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07006395 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07006396 return $clean;
6397}