blob: f2e00dc0ae89dafb9b508963921bbc617b4ca63a [file] [log] [blame]
Kamil Rytarowskicb77f0d2017-05-07 23:25:26 +02001#!/usr/bin/env perl
Joe Perches882ea1d2018-06-07 17:04:33 -07002# SPDX-License-Identifier: GPL-2.0
3#
Dave Jonesdbf004d2010-01-12 16:59:52 -05004# (c) 2001, Dave Jones. (the file handling bit)
Andy Whitcroft00df3442007-06-08 13:47:06 -07005# (c) 2005, Joel Schopp <jschopp@austin.ibm.com> (the ugly bit)
Andy Whitcroft2a5a2c22009-01-06 14:41:23 -08006# (c) 2007,2008, Andy Whitcroft <apw@uk.ibm.com> (new conditions, test suite)
Andy Whitcroft015830be2010-10-26 14:23:17 -07007# (c) 2008-2010 Andy Whitcroft <apw@canonical.com>
Joe Perches882ea1d2018-06-07 17:04:33 -07008# (c) 2010-2018 Joe Perches <joe@perches.com>
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07009
10use strict;
Kamil Rytarowskicb77f0d2017-05-07 23:25:26 +020011use warnings;
Joe Perchesc707a812013-07-08 16:00:43 -070012use POSIX;
Joe Perches36061e32014-12-10 15:51:43 -080013use File::Basename;
14use Cwd 'abs_path';
Joe Perches57230292015-06-25 15:03:03 -070015use Term::ANSIColor qw(:constants);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070016
17my $P = $0;
Joe Perches36061e32014-12-10 15:51:43 -080018my $D = dirname(abs_path($P));
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070019
Joe Perches000d1cc12011-07-25 17:13:25 -070020my $V = '0.32';
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070021
22use Getopt::Long qw(:config no_auto_abbrev);
23
24my $quiet = 0;
25my $tree = 1;
26my $chk_signoff = 1;
27my $chk_patch = 1;
Andy Whitcroft773647a2008-03-28 14:15:58 -070028my $tst_only;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070029my $emacs = 0;
Andy Whitcroft8905a672007-11-28 16:21:06 -080030my $terse = 0;
Joe Perches34d88152015-06-25 15:03:05 -070031my $showfile = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070032my $file = 0;
Du, Changbin4a593c32016-05-20 17:04:16 -070033my $git = 0;
Joe Perches0dea9f1e2016-05-20 17:04:19 -070034my %git_commits = ();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070035my $check = 0;
Joe Perches2ac73b42014-06-04 16:12:05 -070036my $check_orig = 0;
Andy Whitcroft8905a672007-11-28 16:21:06 -080037my $summary = 1;
38my $mailback = 0;
Andy Whitcroft13214ad2008-02-08 04:22:03 -080039my $summary_file = 0;
Joe Perches000d1cc12011-07-25 17:13:25 -070040my $show_types = 0;
Joe Perches3beb42e2016-05-20 17:04:14 -070041my $list_types = 0;
Joe Perches3705ce52013-07-03 15:05:31 -070042my $fix = 0;
Joe Perches9624b8d2014-01-23 15:54:44 -080043my $fix_inplace = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -070044my $root;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -080045my %debug;
Joe Perches34456862013-07-03 15:05:34 -070046my %camelcase = ();
Joe Perches91bfe482013-09-11 14:23:59 -070047my %use_type = ();
48my @use = ();
49my %ignore_type = ();
Joe Perches000d1cc12011-07-25 17:13:25 -070050my @ignore = ();
Hannes Eder77f5b102009-09-21 17:04:37 -070051my $help = 0;
Joe Perches000d1cc12011-07-25 17:13:25 -070052my $configuration_file = ".checkpatch.conf";
Joe Perches6cd7f382012-12-17 16:01:54 -080053my $max_line_length = 80;
Dave Hansend62a2012013-09-11 14:23:56 -070054my $ignore_perl_version = 0;
55my $minimum_perl_version = 5.10.0;
Vadim Bendebury56193272014-10-13 15:51:48 -070056my $min_conf_desc_length = 4;
Kees Cook66b47b42014-10-13 15:51:57 -070057my $spelling_file = "$D/spelling.txt";
Joe Perchesebfd7d62015-04-16 12:44:14 -070058my $codespell = 0;
Maxim Uvarovf1a63672015-06-25 15:03:08 -070059my $codespellfile = "/usr/share/codespell/dictionary.txt";
Joe Perchesbf1fa1d2016-10-11 13:51:56 -070060my $conststructsfile = "$D/const_structs.checkpatch";
Jerome Forissier75ad8c52017-05-08 15:56:00 -070061my $typedefsfile = "";
John Brooks737c0762017-07-10 15:52:24 -070062my $color = "auto";
Joe Perchesdadf6802016-08-02 14:04:33 -070063my $allow_c99_comments = 1;
Hannes Eder77f5b102009-09-21 17:04:37 -070064
65sub help {
66 my ($exitcode) = @_;
67
68 print << "EOM";
69Usage: $P [OPTION]... [FILE]...
70Version: $V
71
72Options:
73 -q, --quiet quiet
74 --no-tree run without a kernel tree
75 --no-signoff do not check for 'Signed-off-by' line
76 --patch treat FILE as patchfile (default)
77 --emacs emacs compile window format
78 --terse one line per report
Joe Perches34d88152015-06-25 15:03:05 -070079 --showfile emit diffed file position, not input file position
Du, Changbin4a593c32016-05-20 17:04:16 -070080 -g, --git treat FILE as a single commit or git revision range
81 single git commit with:
82 <rev>
83 <rev>^
84 <rev>~n
85 multiple git commits with:
86 <rev1>..<rev2>
87 <rev1>...<rev2>
88 <rev>-<count>
89 git merges are ignored
Hannes Eder77f5b102009-09-21 17:04:37 -070090 -f, --file treat FILE as regular source file
91 --subjective, --strict enable more subjective tests
Joe Perches3beb42e2016-05-20 17:04:14 -070092 --list-types list the possible message types
Joe Perches91bfe482013-09-11 14:23:59 -070093 --types TYPE(,TYPE2...) show only these comma separated message types
Joe Perches000d1cc12011-07-25 17:13:25 -070094 --ignore TYPE(,TYPE2...) ignore various comma separated message types
Joe Perches3beb42e2016-05-20 17:04:14 -070095 --show-types show the specific message type in the output
Joe Perches6cd7f382012-12-17 16:01:54 -080096 --max-line-length=n set the maximum line length, if exceeded, warn
Vadim Bendebury56193272014-10-13 15:51:48 -070097 --min-conf-desc-length=n set the min description length, if shorter, warn
Hannes Eder77f5b102009-09-21 17:04:37 -070098 --root=PATH PATH to the kernel tree root
99 --no-summary suppress the per-file summary
100 --mailback only produce a report in case of warnings/errors
101 --summary-file include the filename in summary
102 --debug KEY=[0|1] turn on/off debugging of KEY, where KEY is one of
103 'values', 'possible', 'type', and 'attr' (default
104 is all off)
105 --test-only=WORD report only warnings/errors containing WORD
106 literally
Joe Perches3705ce52013-07-03 15:05:31 -0700107 --fix EXPERIMENTAL - may create horrible results
108 If correctable single-line errors exist, create
109 "<inputfile>.EXPERIMENTAL-checkpatch-fixes"
110 with potential errors corrected to the preferred
111 checkpatch style
Joe Perches9624b8d2014-01-23 15:54:44 -0800112 --fix-inplace EXPERIMENTAL - may create horrible results
113 Is the same as --fix, but overwrites the input
114 file. It's your fault if there's no backup or git
Dave Hansend62a2012013-09-11 14:23:56 -0700115 --ignore-perl-version override checking of perl version. expect
116 runtime errors.
Joe Perchesebfd7d62015-04-16 12:44:14 -0700117 --codespell Use the codespell dictionary for spelling/typos
Maxim Uvarovf1a63672015-06-25 15:03:08 -0700118 (default:/usr/share/codespell/dictionary.txt)
Joe Perchesebfd7d62015-04-16 12:44:14 -0700119 --codespellfile Use this codespell dictionary
Jerome Forissier75ad8c52017-05-08 15:56:00 -0700120 --typedefsfile Read additional types from this file
John Brooks737c0762017-07-10 15:52:24 -0700121 --color[=WHEN] Use colors 'always', 'never', or only when output
122 is a terminal ('auto'). Default is 'auto'.
Hannes Eder77f5b102009-09-21 17:04:37 -0700123 -h, --help, --version display this help and exit
124
125When FILE is - read standard input.
126EOM
127
128 exit($exitcode);
129}
130
Joe Perches3beb42e2016-05-20 17:04:14 -0700131sub uniq {
132 my %seen;
133 return grep { !$seen{$_}++ } @_;
134}
135
136sub list_types {
137 my ($exitcode) = @_;
138
139 my $count = 0;
140
141 local $/ = undef;
142
143 open(my $script, '<', abs_path($P)) or
144 die "$P: Can't read '$P' $!\n";
145
146 my $text = <$script>;
147 close($script);
148
149 my @types = ();
Jean Delvare0547fa52017-09-08 16:16:11 -0700150 # Also catch when type or level is passed through a variable
151 for ($text =~ /(?:(?:\bCHK|\bWARN|\bERROR|&\{\$msg_level})\s*\(|\$msg_type\s*=)\s*"([^"]+)"/g) {
Joe Perches3beb42e2016-05-20 17:04:14 -0700152 push (@types, $_);
153 }
154 @types = sort(uniq(@types));
155 print("#\tMessage type\n\n");
156 foreach my $type (@types) {
157 print(++$count . "\t" . $type . "\n");
158 }
159
160 exit($exitcode);
161}
162
Joe Perches000d1cc12011-07-25 17:13:25 -0700163my $conf = which_conf($configuration_file);
164if (-f $conf) {
165 my @conf_args;
166 open(my $conffile, '<', "$conf")
167 or warn "$P: Can't find a readable $configuration_file file $!\n";
168
169 while (<$conffile>) {
170 my $line = $_;
171
172 $line =~ s/\s*\n?$//g;
173 $line =~ s/^\s*//g;
174 $line =~ s/\s+/ /g;
175
176 next if ($line =~ m/^\s*#/);
177 next if ($line =~ m/^\s*$/);
178
179 my @words = split(" ", $line);
180 foreach my $word (@words) {
181 last if ($word =~ m/^#/);
182 push (@conf_args, $word);
183 }
184 }
185 close($conffile);
186 unshift(@ARGV, @conf_args) if @conf_args;
187}
188
John Brooks737c0762017-07-10 15:52:24 -0700189# Perl's Getopt::Long allows options to take optional arguments after a space.
190# Prevent --color by itself from consuming other arguments
191foreach (@ARGV) {
192 if ($_ eq "--color" || $_ eq "-color") {
193 $_ = "--color=$color";
194 }
195}
196
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700197GetOptions(
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700198 'q|quiet+' => \$quiet,
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700199 'tree!' => \$tree,
200 'signoff!' => \$chk_signoff,
201 'patch!' => \$chk_patch,
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700202 'emacs!' => \$emacs,
Andy Whitcroft8905a672007-11-28 16:21:06 -0800203 'terse!' => \$terse,
Joe Perches34d88152015-06-25 15:03:05 -0700204 'showfile!' => \$showfile,
Hannes Eder77f5b102009-09-21 17:04:37 -0700205 'f|file!' => \$file,
Du, Changbin4a593c32016-05-20 17:04:16 -0700206 'g|git!' => \$git,
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700207 'subjective!' => \$check,
208 'strict!' => \$check,
Joe Perches000d1cc12011-07-25 17:13:25 -0700209 'ignore=s' => \@ignore,
Joe Perches91bfe482013-09-11 14:23:59 -0700210 'types=s' => \@use,
Joe Perches000d1cc12011-07-25 17:13:25 -0700211 'show-types!' => \$show_types,
Joe Perches3beb42e2016-05-20 17:04:14 -0700212 'list-types!' => \$list_types,
Joe Perches6cd7f382012-12-17 16:01:54 -0800213 'max-line-length=i' => \$max_line_length,
Vadim Bendebury56193272014-10-13 15:51:48 -0700214 'min-conf-desc-length=i' => \$min_conf_desc_length,
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700215 'root=s' => \$root,
Andy Whitcroft8905a672007-11-28 16:21:06 -0800216 'summary!' => \$summary,
217 'mailback!' => \$mailback,
Andy Whitcroft13214ad2008-02-08 04:22:03 -0800218 'summary-file!' => \$summary_file,
Joe Perches3705ce52013-07-03 15:05:31 -0700219 'fix!' => \$fix,
Joe Perches9624b8d2014-01-23 15:54:44 -0800220 'fix-inplace!' => \$fix_inplace,
Dave Hansend62a2012013-09-11 14:23:56 -0700221 'ignore-perl-version!' => \$ignore_perl_version,
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800222 'debug=s' => \%debug,
Andy Whitcroft773647a2008-03-28 14:15:58 -0700223 'test-only=s' => \$tst_only,
Joe Perchesebfd7d62015-04-16 12:44:14 -0700224 'codespell!' => \$codespell,
225 'codespellfile=s' => \$codespellfile,
Jerome Forissier75ad8c52017-05-08 15:56:00 -0700226 'typedefsfile=s' => \$typedefsfile,
John Brooks737c0762017-07-10 15:52:24 -0700227 'color=s' => \$color,
228 'no-color' => \$color, #keep old behaviors of -nocolor
229 'nocolor' => \$color, #keep old behaviors of -nocolor
Hannes Eder77f5b102009-09-21 17:04:37 -0700230 'h|help' => \$help,
231 'version' => \$help
232) or help(1);
233
234help(0) if ($help);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700235
Joe Perches3beb42e2016-05-20 17:04:14 -0700236list_types(0) if ($list_types);
237
Joe Perches9624b8d2014-01-23 15:54:44 -0800238$fix = 1 if ($fix_inplace);
Joe Perches2ac73b42014-06-04 16:12:05 -0700239$check_orig = $check;
Joe Perches9624b8d2014-01-23 15:54:44 -0800240
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700241my $exit = 0;
242
Dave Hansend62a2012013-09-11 14:23:56 -0700243if ($^V && $^V lt $minimum_perl_version) {
244 printf "$P: requires at least perl version %vd\n", $minimum_perl_version;
245 if (!$ignore_perl_version) {
246 exit(1);
247 }
248}
249
Allen Hubbe45107ff2016-08-02 14:04:47 -0700250#if no filenames are given, push '-' to read patch from stdin
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700251if ($#ARGV < 0) {
Allen Hubbe45107ff2016-08-02 14:04:47 -0700252 push(@ARGV, '-');
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700253}
254
John Brooks737c0762017-07-10 15:52:24 -0700255if ($color =~ /^[01]$/) {
256 $color = !$color;
257} elsif ($color =~ /^always$/i) {
258 $color = 1;
259} elsif ($color =~ /^never$/i) {
260 $color = 0;
261} elsif ($color =~ /^auto$/i) {
262 $color = (-t STDOUT);
263} else {
264 die "Invalid color mode: $color\n";
265}
266
Joe Perches91bfe482013-09-11 14:23:59 -0700267sub hash_save_array_words {
268 my ($hashRef, $arrayRef) = @_;
Joe Perches000d1cc12011-07-25 17:13:25 -0700269
Joe Perches91bfe482013-09-11 14:23:59 -0700270 my @array = split(/,/, join(',', @$arrayRef));
271 foreach my $word (@array) {
272 $word =~ s/\s*\n?$//g;
273 $word =~ s/^\s*//g;
274 $word =~ s/\s+/ /g;
275 $word =~ tr/[a-z]/[A-Z]/;
Joe Perches000d1cc12011-07-25 17:13:25 -0700276
Joe Perches91bfe482013-09-11 14:23:59 -0700277 next if ($word =~ m/^\s*#/);
278 next if ($word =~ m/^\s*$/);
279
280 $hashRef->{$word}++;
281 }
Joe Perches000d1cc12011-07-25 17:13:25 -0700282}
283
Joe Perches91bfe482013-09-11 14:23:59 -0700284sub hash_show_words {
285 my ($hashRef, $prefix) = @_;
286
Joe Perches3c816e42015-06-25 15:03:29 -0700287 if (keys %$hashRef) {
Joe Perchesd8469f12015-06-25 15:03:00 -0700288 print "\nNOTE: $prefix message types:";
Joe Perches58cb3cf2013-09-11 14:24:04 -0700289 foreach my $word (sort keys %$hashRef) {
Joe Perches91bfe482013-09-11 14:23:59 -0700290 print " $word";
291 }
Joe Perchesd8469f12015-06-25 15:03:00 -0700292 print "\n";
Joe Perches91bfe482013-09-11 14:23:59 -0700293 }
294}
295
296hash_save_array_words(\%ignore_type, \@ignore);
297hash_save_array_words(\%use_type, \@use);
298
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800299my $dbg_values = 0;
300my $dbg_possible = 0;
Andy Whitcroft7429c692008-07-23 21:29:06 -0700301my $dbg_type = 0;
Andy Whitcrofta1ef2772008-10-15 22:02:17 -0700302my $dbg_attr = 0;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800303for my $key (keys %debug) {
Andy Whitcroft21caa132009-01-06 14:41:30 -0800304 ## no critic
305 eval "\${dbg_$key} = '$debug{$key}';";
306 die "$@" if ($@);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800307}
308
Andy Whitcroftd2c0a232010-10-26 14:23:12 -0700309my $rpt_cleaners = 0;
310
Andy Whitcroft8905a672007-11-28 16:21:06 -0800311if ($terse) {
312 $emacs = 1;
313 $quiet++;
314}
315
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700316if ($tree) {
317 if (defined $root) {
318 if (!top_of_kernel_tree($root)) {
319 die "$P: $root: --root does not point at a valid tree\n";
320 }
321 } else {
322 if (top_of_kernel_tree('.')) {
323 $root = '.';
324 } elsif ($0 =~ m@(.*)/scripts/[^/]*$@ &&
325 top_of_kernel_tree($1)) {
326 $root = $1;
327 }
328 }
329
330 if (!defined $root) {
331 print "Must be run from the top-level dir. of a kernel tree\n";
332 exit(2);
333 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700334}
335
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700336my $emitted_corrupt = 0;
337
Andy Whitcroft2ceb5322009-10-26 16:50:14 -0700338our $Ident = qr{
339 [A-Za-z_][A-Za-z\d_]*
340 (?:\s*\#\#\s*[A-Za-z_][A-Za-z\d_]*)*
341 }x;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700342our $Storage = qr{extern|static|asmlinkage};
343our $Sparse = qr{
344 __user|
345 __kernel|
346 __force|
347 __iomem|
348 __must_check|
349 __init_refok|
Andy Whitcroft417495e2009-02-27 14:03:08 -0800350 __kprobes|
Sven Eckelmann165e72a2011-07-25 17:13:23 -0700351 __ref|
Boqun Fengad315452015-12-29 12:18:46 +0800352 __rcu|
353 __private
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700354 }x;
Joe Perchese970b8842013-11-12 15:10:10 -0800355our $InitAttributePrefix = qr{__(?:mem|cpu|dev|net_|)};
356our $InitAttributeData = qr{$InitAttributePrefix(?:initdata\b)};
357our $InitAttributeConst = qr{$InitAttributePrefix(?:initconst\b)};
358our $InitAttributeInit = qr{$InitAttributePrefix(?:init\b)};
359our $InitAttribute = qr{$InitAttributeData|$InitAttributeConst|$InitAttributeInit};
Joe Perches8716de32013-09-11 14:24:05 -0700360
Wolfram Sang52131292010-03-05 13:43:51 -0800361# Notes to $Attribute:
362# We need \b after 'init' otherwise 'initconst' will cause a false positive in a check
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700363our $Attribute = qr{
364 const|
Joe Perches03f1df72010-10-26 14:23:16 -0700365 __percpu|
366 __nocast|
367 __safe|
Michael S. Tsirkin46d832f2016-12-11 06:29:58 +0200368 __bitwise|
Joe Perches03f1df72010-10-26 14:23:16 -0700369 __packed__|
370 __packed2__|
371 __naked|
372 __maybe_unused|
373 __always_unused|
374 __noreturn|
375 __used|
376 __cold|
Joe Perchese23ef1f2015-02-13 14:38:24 -0800377 __pure|
Joe Perches03f1df72010-10-26 14:23:16 -0700378 __noclone|
379 __deprecated|
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700380 __read_mostly|
381 __kprobes|
Joe Perches8716de32013-09-11 14:24:05 -0700382 $InitAttribute|
Andy Whitcroft24e1d812008-10-15 22:02:18 -0700383 ____cacheline_aligned|
384 ____cacheline_aligned_in_smp|
Andy Whitcroft5fe3af12009-01-06 14:41:18 -0800385 ____cacheline_internodealigned_in_smp|
386 __weak
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700387 }x;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700388our $Modifier;
Joe Perches91cb5192014-04-03 14:49:32 -0700389our $Inline = qr{inline|__always_inline|noinline|__inline|__inline__};
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700390our $Member = qr{->$Ident|\.$Ident|\[[^]]*\]};
391our $Lval = qr{$Ident(?:$Member)*};
392
Joe Perches95e2c602013-07-03 15:05:20 -0700393our $Int_type = qr{(?i)llu|ull|ll|lu|ul|l|u};
394our $Binary = qr{(?i)0b[01]+$Int_type?};
395our $Hex = qr{(?i)0x[0-9a-f]+$Int_type?};
396our $Int = qr{[0-9]+$Int_type?};
Joe Perches24358802014-04-03 14:49:13 -0700397our $Octal = qr{0[0-7]+$Int_type?};
Joe Perchesc0a5c892015-02-13 14:38:21 -0800398our $String = qr{"[X\t]*"};
Joe Perches326b1ff2013-02-04 14:28:51 -0800399our $Float_hex = qr{(?i)0x[0-9a-f]+p-?[0-9]+[fl]?};
400our $Float_dec = qr{(?i)(?:[0-9]+\.[0-9]*|[0-9]*\.[0-9]+)(?:e-?[0-9]+)?[fl]?};
401our $Float_int = qr{(?i)[0-9]+e-?[0-9]+[fl]?};
Joe Perches74349bc2012-12-17 16:02:05 -0800402our $Float = qr{$Float_hex|$Float_dec|$Float_int};
Joe Perches24358802014-04-03 14:49:13 -0700403our $Constant = qr{$Float|$Binary|$Octal|$Hex|$Int};
Joe Perches326b1ff2013-02-04 14:28:51 -0800404our $Assignment = qr{\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=};
Joe Perches447432f2014-04-03 14:49:17 -0700405our $Compare = qr{<=|>=|==|!=|<|(?<!-)>};
Joe Perches23f780c2013-07-03 15:05:31 -0700406our $Arithmetic = qr{\+|-|\*|\/|%};
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700407our $Operators = qr{
408 <=|>=|==|!=|
409 =>|->|<<|>>|<|>|!|~|
Joe Perches23f780c2013-07-03 15:05:31 -0700410 &&|\|\||,|\^|\+\+|--|&|\||$Arithmetic
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700411 }x;
412
Joe Perches91cb5192014-04-03 14:49:32 -0700413our $c90_Keywords = qr{do|for|while|if|else|return|goto|continue|switch|default|case|break}x;
414
Joe Perchesab7e23f2015-04-16 12:44:22 -0700415our $BasicType;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800416our $NonptrType;
Joe Perches18130872014-08-06 16:11:22 -0700417our $NonptrTypeMisordered;
Joe Perches8716de32013-09-11 14:24:05 -0700418our $NonptrTypeWithAttr;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800419our $Type;
Joe Perches18130872014-08-06 16:11:22 -0700420our $TypeMisordered;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800421our $Declare;
Joe Perches18130872014-08-06 16:11:22 -0700422our $DeclareMisordered;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800423
Joe Perches15662b32011-10-31 17:13:12 -0700424our $NON_ASCII_UTF8 = qr{
425 [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
Andy Whitcroft171ae1a2008-04-29 00:59:32 -0700426 | \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
427 | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
428 | \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
429 | \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
430 | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
431 | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
432}x;
433
Joe Perches15662b32011-10-31 17:13:12 -0700434our $UTF8 = qr{
435 [\x09\x0A\x0D\x20-\x7E] # ASCII
436 | $NON_ASCII_UTF8
437}x;
438
Joe Perchese6176fa2015-06-25 15:02:49 -0700439our $typeC99Typedefs = qr{(?:__)?(?:[us]_?)?int_?(?:8|16|32|64)_t};
Joe Perches021158b2015-02-13 14:38:43 -0800440our $typeOtherOSTypedefs = qr{(?x:
441 u_(?:char|short|int|long) | # bsd
442 u(?:nchar|short|int|long) # sysv
443)};
Joe Perchese6176fa2015-06-25 15:02:49 -0700444our $typeKernelTypedefs = qr{(?x:
Andy Whitcroftfb9e9092009-09-21 17:04:38 -0700445 (?:__)?(?:u|s|be|le)(?:8|16|32|64)|
Andy Whitcroft8ed22ca2008-10-15 22:02:32 -0700446 atomic_t
447)};
Joe Perchese6176fa2015-06-25 15:02:49 -0700448our $typeTypedefs = qr{(?x:
449 $typeC99Typedefs\b|
450 $typeOtherOSTypedefs\b|
451 $typeKernelTypedefs\b
452)};
Andy Whitcroft8ed22ca2008-10-15 22:02:32 -0700453
Joe Perches6d32f7a2015-11-06 16:31:37 -0800454our $zero_initializer = qr{(?:(?:0[xX])?0+$Int_type?|NULL|false)\b};
455
Joe Perches691e6692010-03-05 13:43:51 -0800456our $logFunctions = qr{(?x:
Miles Chen758d7aa2017-02-24 15:01:34 -0800457 printk(?:_ratelimited|_once|_deferred_once|_deferred|)|
Jacob Keller7d0b6592013-07-03 15:05:35 -0700458 (?:[a-z0-9]+_){1,2}(?:printk|emerg|alert|crit|err|warning|warn|notice|info|debug|dbg|vdbg|devel|cont|WARN)(?:_ratelimited|_once|)|
Joe Perches87bd4992017-11-17 15:28:48 -0800459 TP_printk|
Joe Perches6e60c022011-07-25 17:13:27 -0700460 WARN(?:_RATELIMIT|_ONCE|)|
Joe Perchesb0531722011-05-24 17:13:40 -0700461 panic|
Joe Perches06668722013-11-12 15:10:07 -0800462 MODULE_[A-Z_]+|
463 seq_vprintf|seq_printf|seq_puts
Joe Perches691e6692010-03-05 13:43:51 -0800464)};
465
Joe Perches20112472011-07-25 17:13:23 -0700466our $signature_tags = qr{(?xi:
467 Signed-off-by:|
468 Acked-by:|
469 Tested-by:|
470 Reviewed-by:|
471 Reported-by:|
Mugunthan V N8543ae12013-04-29 16:18:17 -0700472 Suggested-by:|
Joe Perches20112472011-07-25 17:13:23 -0700473 To:|
474 Cc:
475)};
476
Joe Perches18130872014-08-06 16:11:22 -0700477our @typeListMisordered = (
478 qr{char\s+(?:un)?signed},
479 qr{int\s+(?:(?:un)?signed\s+)?short\s},
480 qr{int\s+short(?:\s+(?:un)?signed)},
481 qr{short\s+int(?:\s+(?:un)?signed)},
482 qr{(?:un)?signed\s+int\s+short},
483 qr{short\s+(?:un)?signed},
484 qr{long\s+int\s+(?:un)?signed},
485 qr{int\s+long\s+(?:un)?signed},
486 qr{long\s+(?:un)?signed\s+int},
487 qr{int\s+(?:un)?signed\s+long},
488 qr{int\s+(?:un)?signed},
489 qr{int\s+long\s+long\s+(?:un)?signed},
490 qr{long\s+long\s+int\s+(?:un)?signed},
491 qr{long\s+long\s+(?:un)?signed\s+int},
492 qr{long\s+long\s+(?:un)?signed},
493 qr{long\s+(?:un)?signed},
494);
495
Andy Whitcroft8905a672007-11-28 16:21:06 -0800496our @typeList = (
497 qr{void},
Joe Perches0c773d92014-08-06 16:11:20 -0700498 qr{(?:(?:un)?signed\s+)?char},
499 qr{(?:(?:un)?signed\s+)?short\s+int},
500 qr{(?:(?:un)?signed\s+)?short},
501 qr{(?:(?:un)?signed\s+)?int},
502 qr{(?:(?:un)?signed\s+)?long\s+int},
503 qr{(?:(?:un)?signed\s+)?long\s+long\s+int},
504 qr{(?:(?:un)?signed\s+)?long\s+long},
505 qr{(?:(?:un)?signed\s+)?long},
506 qr{(?:un)?signed},
Andy Whitcroft8905a672007-11-28 16:21:06 -0800507 qr{float},
508 qr{double},
509 qr{bool},
Andy Whitcroft8905a672007-11-28 16:21:06 -0800510 qr{struct\s+$Ident},
511 qr{union\s+$Ident},
512 qr{enum\s+$Ident},
513 qr{${Ident}_t},
514 qr{${Ident}_handler},
515 qr{${Ident}_handler_fn},
Joe Perches18130872014-08-06 16:11:22 -0700516 @typeListMisordered,
Andy Whitcroft8905a672007-11-28 16:21:06 -0800517);
Joe Perches938224b2016-01-20 14:59:15 -0800518
519our $C90_int_types = qr{(?x:
520 long\s+long\s+int\s+(?:un)?signed|
521 long\s+long\s+(?:un)?signed\s+int|
522 long\s+long\s+(?:un)?signed|
523 (?:(?:un)?signed\s+)?long\s+long\s+int|
524 (?:(?:un)?signed\s+)?long\s+long|
525 int\s+long\s+long\s+(?:un)?signed|
526 int\s+(?:(?:un)?signed\s+)?long\s+long|
527
528 long\s+int\s+(?:un)?signed|
529 long\s+(?:un)?signed\s+int|
530 long\s+(?:un)?signed|
531 (?:(?:un)?signed\s+)?long\s+int|
532 (?:(?:un)?signed\s+)?long|
533 int\s+long\s+(?:un)?signed|
534 int\s+(?:(?:un)?signed\s+)?long|
535
536 int\s+(?:un)?signed|
537 (?:(?:un)?signed\s+)?int
538)};
539
Alex Dowad485ff232015-06-25 15:02:52 -0700540our @typeListFile = ();
Joe Perches8716de32013-09-11 14:24:05 -0700541our @typeListWithAttr = (
542 @typeList,
543 qr{struct\s+$InitAttribute\s+$Ident},
544 qr{union\s+$InitAttribute\s+$Ident},
545);
546
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700547our @modifierList = (
548 qr{fastcall},
549);
Alex Dowad485ff232015-06-25 15:02:52 -0700550our @modifierListFile = ();
Andy Whitcroft8905a672007-11-28 16:21:06 -0800551
Joe Perches24358802014-04-03 14:49:13 -0700552our @mode_permission_funcs = (
553 ["module_param", 3],
554 ["module_param_(?:array|named|string)", 4],
555 ["module_param_array_named", 5],
556 ["debugfs_create_(?:file|u8|u16|u32|u64|x8|x16|x32|x64|size_t|atomic_t|bool|blob|regset32|u32_array)", 2],
557 ["proc_create(?:_data|)", 2],
Joe Perches459cf0a2016-10-11 13:52:19 -0700558 ["(?:CLASS|DEVICE|SENSOR|SENSOR_DEVICE|IIO_DEVICE)_ATTR", 2],
559 ["IIO_DEV_ATTR_[A-Z_]+", 1],
560 ["SENSOR_(?:DEVICE_|)ATTR_2", 2],
561 ["SENSOR_TEMPLATE(?:_2|)", 3],
562 ["__ATTR", 2],
Joe Perches24358802014-04-03 14:49:13 -0700563);
564
Joe Perches515a2352014-04-03 14:49:24 -0700565#Create a search pattern for all these functions to speed up a loop below
566our $mode_perms_search = "";
567foreach my $entry (@mode_permission_funcs) {
568 $mode_perms_search .= '|' if ($mode_perms_search ne "");
569 $mode_perms_search .= $entry->[0];
570}
Joe Perches00180462018-02-06 15:38:55 -0800571$mode_perms_search = "(?:${mode_perms_search})";
Joe Perches515a2352014-04-03 14:49:24 -0700572
Joe Perchesb392c642015-04-16 12:44:16 -0700573our $mode_perms_world_writable = qr{
574 S_IWUGO |
575 S_IWOTH |
576 S_IRWXUGO |
577 S_IALLUGO |
578 0[0-7][0-7][2367]
579}x;
580
Joe Perchesf90774e2016-10-11 13:51:47 -0700581our %mode_permission_string_types = (
582 "S_IRWXU" => 0700,
583 "S_IRUSR" => 0400,
584 "S_IWUSR" => 0200,
585 "S_IXUSR" => 0100,
586 "S_IRWXG" => 0070,
587 "S_IRGRP" => 0040,
588 "S_IWGRP" => 0020,
589 "S_IXGRP" => 0010,
590 "S_IRWXO" => 0007,
591 "S_IROTH" => 0004,
592 "S_IWOTH" => 0002,
593 "S_IXOTH" => 0001,
594 "S_IRWXUGO" => 0777,
595 "S_IRUGO" => 0444,
596 "S_IWUGO" => 0222,
597 "S_IXUGO" => 0111,
598);
599
600#Create a search pattern for all these strings to speed up a loop below
601our $mode_perms_string_search = "";
602foreach my $entry (keys %mode_permission_string_types) {
603 $mode_perms_string_search .= '|' if ($mode_perms_string_search ne "");
604 $mode_perms_string_search .= $entry;
605}
Joe Perches00180462018-02-06 15:38:55 -0800606our $single_mode_perms_string_search = "(?:${mode_perms_string_search})";
607our $multi_mode_perms_string_search = qr{
608 ${single_mode_perms_string_search}
609 (?:\s*\|\s*${single_mode_perms_string_search})*
610}x;
611
612sub perms_to_octal {
613 my ($string) = @_;
614
615 return trim($string) if ($string =~ /^\s*0[0-7]{3,3}\s*$/);
616
617 my $val = "";
618 my $oval = "";
619 my $to = 0;
620 my $curpos = 0;
621 my $lastpos = 0;
622 while ($string =~ /\b(($single_mode_perms_string_search)\b(?:\s*\|\s*)?\s*)/g) {
623 $curpos = pos($string);
624 my $match = $2;
625 my $omatch = $1;
626 last if ($lastpos > 0 && ($curpos - length($omatch) != $lastpos));
627 $lastpos = $curpos;
628 $to |= $mode_permission_string_types{$match};
629 $val .= '\s*\|\s*' if ($val ne "");
630 $val .= $match;
631 $oval .= $omatch;
632 }
633 $oval =~ s/^\s*\|\s*//;
634 $oval =~ s/\s*\|\s*$//;
635 return sprintf("%04o", $to);
636}
Joe Perchesf90774e2016-10-11 13:51:47 -0700637
Wolfram Sang7840a942010-08-09 17:20:57 -0700638our $allowed_asm_includes = qr{(?x:
639 irq|
Sergey Ryazanovcdcee682014-10-13 15:51:44 -0700640 memory|
641 time|
642 reboot
Wolfram Sang7840a942010-08-09 17:20:57 -0700643)};
644# memory.h: ARM has a custom one
645
Kees Cook66b47b42014-10-13 15:51:57 -0700646# Load common spelling mistakes and build regular expression list.
647my $misspellings;
Kees Cook66b47b42014-10-13 15:51:57 -0700648my %spelling_fix;
Kees Cook66b47b42014-10-13 15:51:57 -0700649
Joe Perches36061e32014-12-10 15:51:43 -0800650if (open(my $spelling, '<', $spelling_file)) {
Joe Perches36061e32014-12-10 15:51:43 -0800651 while (<$spelling>) {
652 my $line = $_;
Kees Cook66b47b42014-10-13 15:51:57 -0700653
Joe Perches36061e32014-12-10 15:51:43 -0800654 $line =~ s/\s*\n?$//g;
655 $line =~ s/^\s*//g;
Kees Cook66b47b42014-10-13 15:51:57 -0700656
Joe Perches36061e32014-12-10 15:51:43 -0800657 next if ($line =~ m/^\s*#/);
658 next if ($line =~ m/^\s*$/);
Kees Cook66b47b42014-10-13 15:51:57 -0700659
Joe Perches36061e32014-12-10 15:51:43 -0800660 my ($suspect, $fix) = split(/\|\|/, $line);
661
Joe Perches36061e32014-12-10 15:51:43 -0800662 $spelling_fix{$suspect} = $fix;
663 }
664 close($spelling);
Joe Perches36061e32014-12-10 15:51:43 -0800665} else {
666 warn "No typos will be found - file '$spelling_file': $!\n";
Kees Cook66b47b42014-10-13 15:51:57 -0700667}
Kees Cook66b47b42014-10-13 15:51:57 -0700668
Joe Perchesebfd7d62015-04-16 12:44:14 -0700669if ($codespell) {
670 if (open(my $spelling, '<', $codespellfile)) {
671 while (<$spelling>) {
672 my $line = $_;
673
674 $line =~ s/\s*\n?$//g;
675 $line =~ s/^\s*//g;
676
677 next if ($line =~ m/^\s*#/);
678 next if ($line =~ m/^\s*$/);
679 next if ($line =~ m/, disabled/i);
680
681 $line =~ s/,.*$//;
682
683 my ($suspect, $fix) = split(/->/, $line);
684
685 $spelling_fix{$suspect} = $fix;
686 }
687 close($spelling);
688 } else {
689 warn "No codespell typos will be found - file '$codespellfile': $!\n";
690 }
691}
692
693$misspellings = join("|", sort keys %spelling_fix) if keys %spelling_fix;
694
Jerome Forissier75ad8c52017-05-08 15:56:00 -0700695sub read_words {
696 my ($wordsRef, $file) = @_;
Joe Perchesbf1fa1d2016-10-11 13:51:56 -0700697
Jerome Forissier75ad8c52017-05-08 15:56:00 -0700698 if (open(my $words, '<', $file)) {
699 while (<$words>) {
700 my $line = $_;
Joe Perchesbf1fa1d2016-10-11 13:51:56 -0700701
Jerome Forissier75ad8c52017-05-08 15:56:00 -0700702 $line =~ s/\s*\n?$//g;
703 $line =~ s/^\s*//g;
704
705 next if ($line =~ m/^\s*#/);
706 next if ($line =~ m/^\s*$/);
707 if ($line =~ /\s/) {
708 print("$file: '$line' invalid - ignored\n");
709 next;
710 }
711
712 $$wordsRef .= '|' if ($$wordsRef ne "");
713 $$wordsRef .= $line;
Joe Perchesbf1fa1d2016-10-11 13:51:56 -0700714 }
Jerome Forissier75ad8c52017-05-08 15:56:00 -0700715 close($file);
716 return 1;
Joe Perchesbf1fa1d2016-10-11 13:51:56 -0700717 }
Jerome Forissier75ad8c52017-05-08 15:56:00 -0700718
719 return 0;
Joe Perchesbf1fa1d2016-10-11 13:51:56 -0700720}
721
Jerome Forissier75ad8c52017-05-08 15:56:00 -0700722my $const_structs = "";
723read_words(\$const_structs, $conststructsfile)
724 or warn "No structs that should be const will be found - file '$conststructsfile': $!\n";
725
726my $typeOtherTypedefs = "";
727if (length($typedefsfile)) {
728 read_words(\$typeOtherTypedefs, $typedefsfile)
729 or warn "No additional types will be considered - file '$typedefsfile': $!\n";
730}
731$typeTypedefs .= '|' . $typeOtherTypedefs if ($typeOtherTypedefs ne "");
732
Andy Whitcroft8905a672007-11-28 16:21:06 -0800733sub build_types {
Alex Dowad485ff232015-06-25 15:02:52 -0700734 my $mods = "(?x: \n" . join("|\n ", (@modifierList, @modifierListFile)) . "\n)";
735 my $all = "(?x: \n" . join("|\n ", (@typeList, @typeListFile)) . "\n)";
Joe Perches18130872014-08-06 16:11:22 -0700736 my $Misordered = "(?x: \n" . join("|\n ", @typeListMisordered) . "\n)";
Joe Perches8716de32013-09-11 14:24:05 -0700737 my $allWithAttr = "(?x: \n" . join("|\n ", @typeListWithAttr) . "\n)";
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700738 $Modifier = qr{(?:$Attribute|$Sparse|$mods)};
Joe Perchesab7e23f2015-04-16 12:44:22 -0700739 $BasicType = qr{
Joe Perchesab7e23f2015-04-16 12:44:22 -0700740 (?:$typeTypedefs\b)|
741 (?:${all}\b)
742 }x;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800743 $NonptrType = qr{
Andy Whitcroftd2172eb2008-07-23 21:29:07 -0700744 (?:$Modifier\s+|const\s+)*
Andy Whitcroftcf655042008-03-04 14:28:20 -0800745 (?:
Andy Whitcroft6b48db22012-01-10 15:10:13 -0800746 (?:typeof|__typeof__)\s*\([^\)]*\)|
Andy Whitcroft8ed22ca2008-10-15 22:02:32 -0700747 (?:$typeTypedefs\b)|
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700748 (?:${all}\b)
Andy Whitcroftcf655042008-03-04 14:28:20 -0800749 )
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700750 (?:\s+$Modifier|\s+const)*
Andy Whitcroft8905a672007-11-28 16:21:06 -0800751 }x;
Joe Perches18130872014-08-06 16:11:22 -0700752 $NonptrTypeMisordered = qr{
753 (?:$Modifier\s+|const\s+)*
754 (?:
755 (?:${Misordered}\b)
756 )
757 (?:\s+$Modifier|\s+const)*
758 }x;
Joe Perches8716de32013-09-11 14:24:05 -0700759 $NonptrTypeWithAttr = qr{
760 (?:$Modifier\s+|const\s+)*
761 (?:
762 (?:typeof|__typeof__)\s*\([^\)]*\)|
763 (?:$typeTypedefs\b)|
764 (?:${allWithAttr}\b)
765 )
766 (?:\s+$Modifier|\s+const)*
767 }x;
Andy Whitcroft8905a672007-11-28 16:21:06 -0800768 $Type = qr{
Andy Whitcroftc45dcab2008-06-05 22:46:01 -0700769 $NonptrType
Joe Perches1574a292014-08-06 16:10:50 -0700770 (?:(?:\s|\*|\[\])+\s*const|(?:\s|\*\s*(?:const\s*)?|\[\])+|(?:\s*\[\s*\])+)?
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -0700771 (?:\s+$Inline|\s+$Modifier)*
Andy Whitcroft8905a672007-11-28 16:21:06 -0800772 }x;
Joe Perches18130872014-08-06 16:11:22 -0700773 $TypeMisordered = qr{
774 $NonptrTypeMisordered
775 (?:(?:\s|\*|\[\])+\s*const|(?:\s|\*\s*(?:const\s*)?|\[\])+|(?:\s*\[\s*\])+)?
776 (?:\s+$Inline|\s+$Modifier)*
777 }x;
Joe Perches91cb5192014-04-03 14:49:32 -0700778 $Declare = qr{(?:$Storage\s+(?:$Inline\s+)?)?$Type};
Joe Perches18130872014-08-06 16:11:22 -0700779 $DeclareMisordered = qr{(?:$Storage\s+(?:$Inline\s+)?)?$TypeMisordered};
Andy Whitcroft8905a672007-11-28 16:21:06 -0800780}
781build_types();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700782
Joe Perches7d2367a2011-07-25 17:13:22 -0700783our $Typecast = qr{\s*(\(\s*$NonptrType\s*\)){0,1}\s*};
Joe Perchesd1fe9c02012-03-23 15:02:16 -0700784
785# Using $balanced_parens, $LvalOrFunc, or $FuncArg
786# requires at least perl version v5.10.0
787# Any use must be runtime checked with $^V
788
789our $balanced_parens = qr/(\((?:[^\(\)]++|(?-1))*\))/;
Joe Perches24358802014-04-03 14:49:13 -0700790our $LvalOrFunc = qr{((?:[\&\*]\s*)?$Lval)\s*($balanced_parens{0,1})\s*};
Joe Perchesc0a5c892015-02-13 14:38:21 -0800791our $FuncArg = qr{$Typecast{0,1}($LvalOrFunc|$Constant|$String)};
Joe Perches7d2367a2011-07-25 17:13:22 -0700792
Joe Perchesf8422302014-08-06 16:11:31 -0700793our $declaration_macros = qr{(?x:
Joe Perches3e838b62015-09-09 15:37:33 -0700794 (?:$Storage\s+)?(?:[A-Z_][A-Z0-9]*_){0,2}(?:DEFINE|DECLARE)(?:_[A-Z0-9]+){1,6}\s*\(|
Steffen Maierfe658f92017-07-10 15:52:10 -0700795 (?:$Storage\s+)?[HLP]?LIST_HEAD\s*\(|
Gilad Ben-Yossef3d102fc2018-04-10 16:33:17 -0700796 (?:$Storage\s+)?${Type}\s+uninitialized_var\s*\(|
797 (?:SKCIPHER_REQUEST|SHASH_DESC|AHASH_REQUEST)_ON_STACK\s*\(
Joe Perchesf8422302014-08-06 16:11:31 -0700798)};
799
Joe Perches7d2367a2011-07-25 17:13:22 -0700800sub deparenthesize {
801 my ($string) = @_;
802 return "" if (!defined($string));
Joe Perches5b9553a2014-04-03 14:49:21 -0700803
804 while ($string =~ /^\s*\(.*\)\s*$/) {
805 $string =~ s@^\s*\(\s*@@;
806 $string =~ s@\s*\)\s*$@@;
807 }
808
Joe Perches7d2367a2011-07-25 17:13:22 -0700809 $string =~ s@\s+@ @g;
Joe Perches5b9553a2014-04-03 14:49:21 -0700810
Joe Perches7d2367a2011-07-25 17:13:22 -0700811 return $string;
812}
813
Joe Perches34456862013-07-03 15:05:34 -0700814sub seed_camelcase_file {
815 my ($file) = @_;
816
817 return if (!(-f $file));
818
819 local $/;
820
821 open(my $include_file, '<', "$file")
822 or warn "$P: Can't read '$file' $!\n";
823 my $text = <$include_file>;
824 close($include_file);
825
826 my @lines = split('\n', $text);
827
828 foreach my $line (@lines) {
829 next if ($line !~ /(?:[A-Z][a-z]|[a-z][A-Z])/);
830 if ($line =~ /^[ \t]*(?:#[ \t]*define|typedef\s+$Type)\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)/) {
831 $camelcase{$1} = 1;
Joe Perches11ea5162013-11-12 15:10:08 -0800832 } elsif ($line =~ /^\s*$Declare\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)\s*[\(\[,;]/) {
833 $camelcase{$1} = 1;
834 } 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 -0700835 $camelcase{$1} = 1;
836 }
837 }
838}
839
Joe Perches85b0ee12016-10-11 13:51:44 -0700840sub is_maintained_obsolete {
841 my ($filename) = @_;
842
Jerome Forissierf2c19c22016-12-12 16:46:23 -0800843 return 0 if (!$tree || !(-e "$root/scripts/get_maintainer.pl"));
Joe Perches85b0ee12016-10-11 13:51:44 -0700844
Joe Perches0616efa2016-10-11 13:52:02 -0700845 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 -0700846
847 return $status =~ /obsolete/i;
848}
849
Joe Perches34456862013-07-03 15:05:34 -0700850my $camelcase_seeded = 0;
851sub seed_camelcase_includes {
852 return if ($camelcase_seeded);
853
854 my $files;
Joe Perchesc707a812013-07-08 16:00:43 -0700855 my $camelcase_cache = "";
856 my @include_files = ();
857
858 $camelcase_seeded = 1;
Joe Perches351b2a12013-07-03 15:05:36 -0700859
Richard Genoud3645e322014-02-10 14:25:32 -0800860 if (-e ".git") {
Joe Perches351b2a12013-07-03 15:05:36 -0700861 my $git_last_include_commit = `git log --no-merges --pretty=format:"%h%n" -1 -- include`;
862 chomp $git_last_include_commit;
Joe Perchesc707a812013-07-08 16:00:43 -0700863 $camelcase_cache = ".checkpatch-camelcase.git.$git_last_include_commit";
Joe Perches34456862013-07-03 15:05:34 -0700864 } else {
Joe Perchesc707a812013-07-08 16:00:43 -0700865 my $last_mod_date = 0;
Joe Perches34456862013-07-03 15:05:34 -0700866 $files = `find $root/include -name "*.h"`;
Joe Perchesc707a812013-07-08 16:00:43 -0700867 @include_files = split('\n', $files);
868 foreach my $file (@include_files) {
869 my $date = POSIX::strftime("%Y%m%d%H%M",
870 localtime((stat $file)[9]));
871 $last_mod_date = $date if ($last_mod_date < $date);
872 }
873 $camelcase_cache = ".checkpatch-camelcase.date.$last_mod_date";
Joe Perches34456862013-07-03 15:05:34 -0700874 }
Joe Perchesc707a812013-07-08 16:00:43 -0700875
876 if ($camelcase_cache ne "" && -f $camelcase_cache) {
877 open(my $camelcase_file, '<', "$camelcase_cache")
878 or warn "$P: Can't read '$camelcase_cache' $!\n";
879 while (<$camelcase_file>) {
880 chomp;
881 $camelcase{$_} = 1;
882 }
883 close($camelcase_file);
884
885 return;
886 }
887
Richard Genoud3645e322014-02-10 14:25:32 -0800888 if (-e ".git") {
Joe Perchesc707a812013-07-08 16:00:43 -0700889 $files = `git ls-files "include/*.h"`;
890 @include_files = split('\n', $files);
891 }
892
Joe Perches34456862013-07-03 15:05:34 -0700893 foreach my $file (@include_files) {
894 seed_camelcase_file($file);
895 }
Joe Perches351b2a12013-07-03 15:05:36 -0700896
Joe Perchesc707a812013-07-08 16:00:43 -0700897 if ($camelcase_cache ne "") {
Joe Perches351b2a12013-07-03 15:05:36 -0700898 unlink glob ".checkpatch-camelcase.*";
Joe Perchesc707a812013-07-08 16:00:43 -0700899 open(my $camelcase_file, '>', "$camelcase_cache")
900 or warn "$P: Can't write '$camelcase_cache' $!\n";
Joe Perches351b2a12013-07-03 15:05:36 -0700901 foreach (sort { lc($a) cmp lc($b) } keys(%camelcase)) {
902 print $camelcase_file ("$_\n");
903 }
904 close($camelcase_file);
905 }
Joe Perches34456862013-07-03 15:05:34 -0700906}
907
Joe Perchesd311cd42014-08-06 16:10:57 -0700908sub git_commit_info {
909 my ($commit, $id, $desc) = @_;
910
911 return ($id, $desc) if ((which("git") eq "") || !(-e ".git"));
912
913 my $output = `git log --no-color --format='%H %s' -1 $commit 2>&1`;
914 $output =~ s/^\s*//gm;
915 my @lines = split("\n", $output);
916
Joe Perches0d7835f2015-02-13 14:38:35 -0800917 return ($id, $desc) if ($#lines < 0);
918
Joe Perchesd311cd42014-08-06 16:10:57 -0700919 if ($lines[0] =~ /^error: short SHA1 $commit is ambiguous\./) {
920# Maybe one day convert this block of bash into something that returns
921# all matching commit ids, but it's very slow...
922#
923# echo "checking commits $1..."
924# git rev-list --remotes | grep -i "^$1" |
925# while read line ; do
926# git log --format='%H %s' -1 $line |
927# echo "commit $(cut -c 1-12,41-)"
928# done
929 } elsif ($lines[0] =~ /^fatal: ambiguous argument '$commit': unknown revision or path not in the working tree\./) {
Heinrich Schuchardt948b1332017-07-10 15:52:16 -0700930 $id = undef;
Joe Perchesd311cd42014-08-06 16:10:57 -0700931 } else {
932 $id = substr($lines[0], 0, 12);
933 $desc = substr($lines[0], 41);
934 }
935
936 return ($id, $desc);
937}
938
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700939$chk_signoff = 0 if ($file);
940
Andy Whitcroft00df3442007-06-08 13:47:06 -0700941my @rawlines = ();
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800942my @lines = ();
Joe Perches3705ce52013-07-03 15:05:31 -0700943my @fixed = ();
Joe Perchesd752fcc2014-08-06 16:11:05 -0700944my @fixed_inserted = ();
945my @fixed_deleted = ();
Joe Perches194f66f2014-08-06 16:11:03 -0700946my $fixlinenr = -1;
947
Du, Changbin4a593c32016-05-20 17:04:16 -0700948# If input is git commits, extract all commits from the commit expressions.
949# For example, HEAD-3 means we need check 'HEAD, HEAD~1, HEAD~2'.
950die "$P: No git repository found\n" if ($git && !-e ".git");
951
952if ($git) {
953 my @commits = ();
Joe Perches0dea9f1e2016-05-20 17:04:19 -0700954 foreach my $commit_expr (@ARGV) {
Du, Changbin4a593c32016-05-20 17:04:16 -0700955 my $git_range;
Joe Perches28898fd2016-05-20 17:04:22 -0700956 if ($commit_expr =~ m/^(.*)-(\d+)$/) {
957 $git_range = "-$2 $1";
Du, Changbin4a593c32016-05-20 17:04:16 -0700958 } elsif ($commit_expr =~ m/\.\./) {
959 $git_range = "$commit_expr";
Du, Changbin4a593c32016-05-20 17:04:16 -0700960 } else {
Joe Perches0dea9f1e2016-05-20 17:04:19 -0700961 $git_range = "-1 $commit_expr";
962 }
963 my $lines = `git log --no-color --no-merges --pretty=format:'%H %s' $git_range`;
964 foreach my $line (split(/\n/, $lines)) {
Joe Perches28898fd2016-05-20 17:04:22 -0700965 $line =~ /^([0-9a-fA-F]{40,40}) (.*)$/;
966 next if (!defined($1) || !defined($2));
Joe Perches0dea9f1e2016-05-20 17:04:19 -0700967 my $sha1 = $1;
968 my $subject = $2;
969 unshift(@commits, $sha1);
970 $git_commits{$sha1} = $subject;
Du, Changbin4a593c32016-05-20 17:04:16 -0700971 }
972 }
973 die "$P: no git commits after extraction!\n" if (@commits == 0);
974 @ARGV = @commits;
975}
976
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800977my $vname;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700978for my $filename (@ARGV) {
Andy Whitcroft21caa132009-01-06 14:41:30 -0800979 my $FILE;
Du, Changbin4a593c32016-05-20 17:04:16 -0700980 if ($git) {
981 open($FILE, '-|', "git format-patch -M --stdout -1 $filename") ||
982 die "$P: $filename: git format-patch failed - $!\n";
983 } elsif ($file) {
Andy Whitcroft21caa132009-01-06 14:41:30 -0800984 open($FILE, '-|', "diff -u /dev/null $filename") ||
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700985 die "$P: $filename: diff failed - $!\n";
Andy Whitcroft21caa132009-01-06 14:41:30 -0800986 } elsif ($filename eq '-') {
987 open($FILE, '<&STDIN');
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700988 } else {
Andy Whitcroft21caa132009-01-06 14:41:30 -0800989 open($FILE, '<', "$filename") ||
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -0700990 die "$P: $filename: open failed - $!\n";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -0700991 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800992 if ($filename eq '-') {
993 $vname = 'Your patch';
Du, Changbin4a593c32016-05-20 17:04:16 -0700994 } elsif ($git) {
Joe Perches0dea9f1e2016-05-20 17:04:19 -0700995 $vname = "Commit " . substr($filename, 0, 12) . ' ("' . $git_commits{$filename} . '")';
Andy Whitcroftc2fdda02008-02-08 04:20:54 -0800996 } else {
997 $vname = $filename;
998 }
Andy Whitcroft21caa132009-01-06 14:41:30 -0800999 while (<$FILE>) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001000 chomp;
1001 push(@rawlines, $_);
1002 }
Andy Whitcroft21caa132009-01-06 14:41:30 -08001003 close($FILE);
Joe Perchesd8469f12015-06-25 15:03:00 -07001004
1005 if ($#ARGV > 0 && $quiet == 0) {
1006 print '-' x length($vname) . "\n";
1007 print "$vname\n";
1008 print '-' x length($vname) . "\n";
1009 }
1010
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001011 if (!process($filename)) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001012 $exit = 1;
1013 }
1014 @rawlines = ();
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001015 @lines = ();
Joe Perches3705ce52013-07-03 15:05:31 -07001016 @fixed = ();
Joe Perchesd752fcc2014-08-06 16:11:05 -07001017 @fixed_inserted = ();
1018 @fixed_deleted = ();
Joe Perches194f66f2014-08-06 16:11:03 -07001019 $fixlinenr = -1;
Alex Dowad485ff232015-06-25 15:02:52 -07001020 @modifierListFile = ();
1021 @typeListFile = ();
1022 build_types();
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001023}
1024
Joe Perchesd8469f12015-06-25 15:03:00 -07001025if (!$quiet) {
Joe Perches3c816e42015-06-25 15:03:29 -07001026 hash_show_words(\%use_type, "Used");
1027 hash_show_words(\%ignore_type, "Ignored");
1028
Joe Perchesd8469f12015-06-25 15:03:00 -07001029 if ($^V lt 5.10.0) {
1030 print << "EOM"
1031
1032NOTE: perl $^V is not modern enough to detect all possible issues.
1033 An upgrade to at least perl v5.10.0 is suggested.
1034EOM
1035 }
1036 if ($exit) {
1037 print << "EOM"
1038
1039NOTE: If any of the errors are false positives, please report
1040 them to the maintainer, see CHECKPATCH in MAINTAINERS.
1041EOM
1042 }
1043}
1044
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001045exit($exit);
1046
1047sub top_of_kernel_tree {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001048 my ($root) = @_;
1049
1050 my @tree_check = (
1051 "COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
1052 "README", "Documentation", "arch", "include", "drivers",
1053 "fs", "init", "ipc", "kernel", "lib", "scripts",
1054 );
1055
1056 foreach my $check (@tree_check) {
1057 if (! -e $root . '/' . $check) {
1058 return 0;
1059 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001060 }
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001061 return 1;
Joe Perches8f26b832012-10-04 17:13:32 -07001062}
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001063
Joe Perches20112472011-07-25 17:13:23 -07001064sub parse_email {
1065 my ($formatted_email) = @_;
1066
1067 my $name = "";
1068 my $address = "";
1069 my $comment = "";
1070
1071 if ($formatted_email =~ /^(.*)<(\S+\@\S+)>(.*)$/) {
1072 $name = $1;
1073 $address = $2;
1074 $comment = $3 if defined $3;
1075 } elsif ($formatted_email =~ /^\s*<(\S+\@\S+)>(.*)$/) {
1076 $address = $1;
1077 $comment = $2 if defined $2;
1078 } elsif ($formatted_email =~ /(\S+\@\S+)(.*)$/) {
1079 $address = $1;
1080 $comment = $2 if defined $2;
Joe Perches85e12062018-04-10 16:33:09 -07001081 $formatted_email =~ s/\Q$address\E.*$//;
Joe Perches20112472011-07-25 17:13:23 -07001082 $name = $formatted_email;
Joe Perches3705ce52013-07-03 15:05:31 -07001083 $name = trim($name);
Joe Perches20112472011-07-25 17:13:23 -07001084 $name =~ s/^\"|\"$//g;
1085 # If there's a name left after stripping spaces and
1086 # leading quotes, and the address doesn't have both
1087 # leading and trailing angle brackets, the address
1088 # is invalid. ie:
1089 # "joe smith joe@smith.com" bad
1090 # "joe smith <joe@smith.com" bad
1091 if ($name ne "" && $address !~ /^<[^>]+>$/) {
1092 $name = "";
1093 $address = "";
1094 $comment = "";
1095 }
1096 }
1097
Joe Perches3705ce52013-07-03 15:05:31 -07001098 $name = trim($name);
Joe Perches20112472011-07-25 17:13:23 -07001099 $name =~ s/^\"|\"$//g;
Joe Perches3705ce52013-07-03 15:05:31 -07001100 $address = trim($address);
Joe Perches20112472011-07-25 17:13:23 -07001101 $address =~ s/^\<|\>$//g;
1102
1103 if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
1104 $name =~ s/(?<!\\)"/\\"/g; ##escape quotes
1105 $name = "\"$name\"";
1106 }
1107
1108 return ($name, $address, $comment);
1109}
1110
1111sub format_email {
1112 my ($name, $address) = @_;
1113
1114 my $formatted_email;
1115
Joe Perches3705ce52013-07-03 15:05:31 -07001116 $name = trim($name);
Joe Perches20112472011-07-25 17:13:23 -07001117 $name =~ s/^\"|\"$//g;
Joe Perches3705ce52013-07-03 15:05:31 -07001118 $address = trim($address);
Joe Perches20112472011-07-25 17:13:23 -07001119
1120 if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
1121 $name =~ s/(?<!\\)"/\\"/g; ##escape quotes
1122 $name = "\"$name\"";
1123 }
1124
1125 if ("$name" eq "") {
1126 $formatted_email = "$address";
1127 } else {
1128 $formatted_email = "$name <$address>";
1129 }
1130
1131 return $formatted_email;
1132}
1133
Joe Perchesd311cd42014-08-06 16:10:57 -07001134sub which {
Joe Perchesbd474ca2014-08-06 16:11:10 -07001135 my ($bin) = @_;
Joe Perchesd311cd42014-08-06 16:10:57 -07001136
Joe Perchesbd474ca2014-08-06 16:11:10 -07001137 foreach my $path (split(/:/, $ENV{PATH})) {
1138 if (-e "$path/$bin") {
1139 return "$path/$bin";
1140 }
Joe Perchesd311cd42014-08-06 16:10:57 -07001141 }
Joe Perchesd311cd42014-08-06 16:10:57 -07001142
Joe Perchesbd474ca2014-08-06 16:11:10 -07001143 return "";
Joe Perchesd311cd42014-08-06 16:10:57 -07001144}
1145
Joe Perches000d1cc12011-07-25 17:13:25 -07001146sub which_conf {
1147 my ($conf) = @_;
1148
1149 foreach my $path (split(/:/, ".:$ENV{HOME}:.scripts")) {
1150 if (-e "$path/$conf") {
1151 return "$path/$conf";
1152 }
1153 }
1154
1155 return "";
1156}
1157
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001158sub expand_tabs {
1159 my ($str) = @_;
1160
1161 my $res = '';
1162 my $n = 0;
1163 for my $c (split(//, $str)) {
1164 if ($c eq "\t") {
1165 $res .= ' ';
1166 $n++;
1167 for (; ($n % 8) != 0; $n++) {
1168 $res .= ' ';
1169 }
1170 next;
1171 }
1172 $res .= $c;
1173 $n++;
1174 }
1175
1176 return $res;
1177}
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001178sub copy_spacing {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001179 (my $res = shift) =~ tr/\t/ /c;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001180 return $res;
1181}
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001182
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001183sub line_stats {
1184 my ($line) = @_;
1185
1186 # Drop the diff line leader and expand tabs
1187 $line =~ s/^.//;
1188 $line = expand_tabs($line);
1189
1190 # Pick the indent from the front of the line.
1191 my ($white) = ($line =~ /^(\s*)/);
1192
1193 return (length($line), length($white));
1194}
1195
Andy Whitcroft773647a2008-03-28 14:15:58 -07001196my $sanitise_quote = '';
1197
1198sub sanitise_line_reset {
1199 my ($in_comment) = @_;
1200
1201 if ($in_comment) {
1202 $sanitise_quote = '*/';
1203 } else {
1204 $sanitise_quote = '';
1205 }
1206}
Andy Whitcroft00df3442007-06-08 13:47:06 -07001207sub sanitise_line {
1208 my ($line) = @_;
1209
1210 my $res = '';
1211 my $l = '';
1212
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001213 my $qlen = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001214 my $off = 0;
1215 my $c;
Andy Whitcroft00df3442007-06-08 13:47:06 -07001216
Andy Whitcroft773647a2008-03-28 14:15:58 -07001217 # Always copy over the diff marker.
1218 $res = substr($line, 0, 1);
1219
1220 for ($off = 1; $off < length($line); $off++) {
1221 $c = substr($line, $off, 1);
1222
Claudio Fontana8d2e11b2018-04-10 16:33:42 -07001223 # Comments we are whacking completely including the begin
Andy Whitcroft773647a2008-03-28 14:15:58 -07001224 # and end, all to $;.
1225 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
1226 $sanitise_quote = '*/';
1227
1228 substr($res, $off, 2, "$;$;");
1229 $off++;
1230 next;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001231 }
Andy Whitcroft81bc0e02008-10-15 22:02:26 -07001232 if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001233 $sanitise_quote = '';
1234 substr($res, $off, 2, "$;$;");
1235 $off++;
1236 next;
1237 }
Daniel Walker113f04a2009-09-21 17:04:35 -07001238 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '//') {
1239 $sanitise_quote = '//';
1240
1241 substr($res, $off, 2, $sanitise_quote);
1242 $off++;
1243 next;
1244 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001245
1246 # A \ in a string means ignore the next character.
1247 if (($sanitise_quote eq "'" || $sanitise_quote eq '"') &&
1248 $c eq "\\") {
1249 substr($res, $off, 2, 'XX');
1250 $off++;
1251 next;
1252 }
1253 # Regular quotes.
1254 if ($c eq "'" || $c eq '"') {
1255 if ($sanitise_quote eq '') {
1256 $sanitise_quote = $c;
1257
1258 substr($res, $off, 1, $c);
Andy Whitcroft00df3442007-06-08 13:47:06 -07001259 next;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001260 } elsif ($sanitise_quote eq $c) {
1261 $sanitise_quote = '';
Andy Whitcroft00df3442007-06-08 13:47:06 -07001262 }
1263 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07001264
Andy Whitcroftfae17da2009-01-06 14:41:20 -08001265 #print "c<$c> SQ<$sanitise_quote>\n";
Andy Whitcroft773647a2008-03-28 14:15:58 -07001266 if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") {
1267 substr($res, $off, 1, $;);
Daniel Walker113f04a2009-09-21 17:04:35 -07001268 } elsif ($off != 0 && $sanitise_quote eq '//' && $c ne "\t") {
1269 substr($res, $off, 1, $;);
Andy Whitcroft773647a2008-03-28 14:15:58 -07001270 } elsif ($off != 0 && $sanitise_quote && $c ne "\t") {
1271 substr($res, $off, 1, 'X');
Andy Whitcroft00df3442007-06-08 13:47:06 -07001272 } else {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001273 substr($res, $off, 1, $c);
Andy Whitcroft00df3442007-06-08 13:47:06 -07001274 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001275 }
1276
Daniel Walker113f04a2009-09-21 17:04:35 -07001277 if ($sanitise_quote eq '//') {
1278 $sanitise_quote = '';
1279 }
1280
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001281 # The pathname on a #include may be surrounded by '<' and '>'.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001282 if ($res =~ /^.\s*\#\s*include\s+\<(.*)\>/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001283 my $clean = 'X' x length($1);
1284 $res =~ s@\<.*\>@<$clean>@;
1285
1286 # The whole of a #error is a string.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001287 } elsif ($res =~ /^.\s*\#\s*(?:error|warning)\s+(.*)\b/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001288 my $clean = 'X' x length($1);
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001289 $res =~ s@(\#\s*(?:error|warning)\s+).*@$1$clean@;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001290 }
1291
Joe Perchesdadf6802016-08-02 14:04:33 -07001292 if ($allow_c99_comments && $res =~ m@(//.*$)@) {
1293 my $match = $1;
1294 $res =~ s/\Q$match\E/"$;" x length($match)/e;
1295 }
1296
Andy Whitcroft00df3442007-06-08 13:47:06 -07001297 return $res;
1298}
1299
Joe Perchesa6962d72013-04-29 16:18:13 -07001300sub get_quoted_string {
1301 my ($line, $rawline) = @_;
1302
Joe Perches478b1792018-04-10 16:33:34 -07001303 return "" if (!defined($line) || !defined($rawline));
Joe Perches33acb542015-06-25 15:02:54 -07001304 return "" if ($line !~ m/($String)/g);
Joe Perchesa6962d72013-04-29 16:18:13 -07001305 return substr($rawline, $-[0], $+[0] - $-[0]);
1306}
1307
Andy Whitcroft8905a672007-11-28 16:21:06 -08001308sub ctx_statement_block {
1309 my ($linenr, $remain, $off) = @_;
1310 my $line = $linenr - 1;
1311 my $blk = '';
1312 my $soff = $off;
1313 my $coff = $off - 1;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001314 my $coff_set = 0;
Andy Whitcroft8905a672007-11-28 16:21:06 -08001315
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001316 my $loff = 0;
1317
Andy Whitcroft8905a672007-11-28 16:21:06 -08001318 my $type = '';
1319 my $level = 0;
Andy Whitcrofta2750642009-01-15 13:51:04 -08001320 my @stack = ();
Andy Whitcroftcf655042008-03-04 14:28:20 -08001321 my $p;
Andy Whitcroft8905a672007-11-28 16:21:06 -08001322 my $c;
1323 my $len = 0;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001324
1325 my $remainder;
Andy Whitcroft8905a672007-11-28 16:21:06 -08001326 while (1) {
Andy Whitcrofta2750642009-01-15 13:51:04 -08001327 @stack = (['', 0]) if ($#stack == -1);
1328
Andy Whitcroft773647a2008-03-28 14:15:58 -07001329 #warn "CSB: blk<$blk> remain<$remain>\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -08001330 # If we are about to drop off the end, pull in more
1331 # context.
1332 if ($off >= $len) {
1333 for (; $remain > 0; $line++) {
Andy Whitcroftdea33492008-10-15 22:02:25 -07001334 last if (!defined $lines[$line]);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001335 next if ($lines[$line] =~ /^-/);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001336 $remain--;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001337 $loff = $len;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001338 $blk .= $lines[$line] . "\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -08001339 $len = length($blk);
1340 $line++;
1341 last;
1342 }
1343 # Bail if there is no further context.
1344 #warn "CSB: blk<$blk> off<$off> len<$len>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001345 if ($off >= $len) {
Andy Whitcroft8905a672007-11-28 16:21:06 -08001346 last;
1347 }
Andy Whitcroftf74bd192012-01-10 15:09:54 -08001348 if ($level == 0 && substr($blk, $off) =~ /^.\s*#\s*define/) {
1349 $level++;
1350 $type = '#';
1351 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001352 }
Andy Whitcroftcf655042008-03-04 14:28:20 -08001353 $p = $c;
Andy Whitcroft8905a672007-11-28 16:21:06 -08001354 $c = substr($blk, $off, 1);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001355 $remainder = substr($blk, $off);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001356
Andy Whitcroft773647a2008-03-28 14:15:58 -07001357 #warn "CSB: c<$c> type<$type> level<$level> remainder<$remainder> coff_set<$coff_set>\n";
Andy Whitcroft4635f4f2009-01-06 14:41:27 -08001358
1359 # Handle nested #if/#else.
1360 if ($remainder =~ /^#\s*(?:ifndef|ifdef|if)\s/) {
1361 push(@stack, [ $type, $level ]);
1362 } elsif ($remainder =~ /^#\s*(?:else|elif)\b/) {
1363 ($type, $level) = @{$stack[$#stack - 1]};
1364 } elsif ($remainder =~ /^#\s*endif\b/) {
1365 ($type, $level) = @{pop(@stack)};
1366 }
1367
Andy Whitcroft8905a672007-11-28 16:21:06 -08001368 # Statement ends at the ';' or a close '}' at the
1369 # outermost level.
1370 if ($level == 0 && $c eq ';') {
1371 last;
1372 }
1373
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001374 # An else is really a conditional as long as its not else if
Andy Whitcroft773647a2008-03-28 14:15:58 -07001375 if ($level == 0 && $coff_set == 0 &&
1376 (!defined($p) || $p =~ /(?:\s|\}|\+)/) &&
1377 $remainder =~ /^(else)(?:\s|{)/ &&
1378 $remainder !~ /^else\s+if\b/) {
1379 $coff = $off + length($1) - 1;
1380 $coff_set = 1;
1381 #warn "CSB: mark coff<$coff> soff<$soff> 1<$1>\n";
1382 #warn "[" . substr($blk, $soff, $coff - $soff + 1) . "]\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001383 }
1384
Andy Whitcroft8905a672007-11-28 16:21:06 -08001385 if (($type eq '' || $type eq '(') && $c eq '(') {
1386 $level++;
1387 $type = '(';
1388 }
1389 if ($type eq '(' && $c eq ')') {
1390 $level--;
1391 $type = ($level != 0)? '(' : '';
1392
1393 if ($level == 0 && $coff < $soff) {
1394 $coff = $off;
Andy Whitcroft773647a2008-03-28 14:15:58 -07001395 $coff_set = 1;
1396 #warn "CSB: mark coff<$coff>\n";
Andy Whitcroft8905a672007-11-28 16:21:06 -08001397 }
1398 }
1399 if (($type eq '' || $type eq '{') && $c eq '{') {
1400 $level++;
1401 $type = '{';
1402 }
1403 if ($type eq '{' && $c eq '}') {
1404 $level--;
1405 $type = ($level != 0)? '{' : '';
1406
1407 if ($level == 0) {
Patrick Pannutob998e002010-08-09 17:21:03 -07001408 if (substr($blk, $off + 1, 1) eq ';') {
1409 $off++;
1410 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001411 last;
1412 }
1413 }
Andy Whitcroftf74bd192012-01-10 15:09:54 -08001414 # Preprocessor commands end at the newline unless escaped.
1415 if ($type eq '#' && $c eq "\n" && $p ne "\\") {
1416 $level--;
1417 $type = '';
1418 $off++;
1419 last;
1420 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001421 $off++;
1422 }
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -07001423 # We are truly at the end, so shuffle to the next line.
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001424 if ($off == $len) {
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -07001425 $loff = $len + 1;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001426 $line++;
1427 $remain--;
1428 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001429
1430 my $statement = substr($blk, $soff, $off - $soff + 1);
1431 my $condition = substr($blk, $soff, $coff - $soff + 1);
1432
1433 #warn "STATEMENT<$statement>\n";
1434 #warn "CONDITION<$condition>\n";
1435
Andy Whitcroft773647a2008-03-28 14:15:58 -07001436 #print "coff<$coff> soff<$off> loff<$loff>\n";
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001437
1438 return ($statement, $condition,
1439 $line, $remain + 1, $off - $loff + 1, $level);
1440}
1441
Andy Whitcroftcf655042008-03-04 14:28:20 -08001442sub statement_lines {
1443 my ($stmt) = @_;
1444
1445 # Strip the diff line prefixes and rip blank lines at start and end.
1446 $stmt =~ s/(^|\n)./$1/g;
1447 $stmt =~ s/^\s*//;
1448 $stmt =~ s/\s*$//;
1449
1450 my @stmt_lines = ($stmt =~ /\n/g);
1451
1452 return $#stmt_lines + 2;
1453}
1454
1455sub statement_rawlines {
1456 my ($stmt) = @_;
1457
1458 my @stmt_lines = ($stmt =~ /\n/g);
1459
1460 return $#stmt_lines + 2;
1461}
1462
1463sub statement_block_size {
1464 my ($stmt) = @_;
1465
1466 $stmt =~ s/(^|\n)./$1/g;
1467 $stmt =~ s/^\s*{//;
1468 $stmt =~ s/}\s*$//;
1469 $stmt =~ s/^\s*//;
1470 $stmt =~ s/\s*$//;
1471
1472 my @stmt_lines = ($stmt =~ /\n/g);
1473 my @stmt_statements = ($stmt =~ /;/g);
1474
1475 my $stmt_lines = $#stmt_lines + 2;
1476 my $stmt_statements = $#stmt_statements + 1;
1477
1478 if ($stmt_lines > $stmt_statements) {
1479 return $stmt_lines;
1480 } else {
1481 return $stmt_statements;
1482 }
1483}
1484
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001485sub ctx_statement_full {
1486 my ($linenr, $remain, $off) = @_;
1487 my ($statement, $condition, $level);
1488
1489 my (@chunks);
1490
Andy Whitcroftcf655042008-03-04 14:28:20 -08001491 # Grab the first conditional/block pair.
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001492 ($statement, $condition, $linenr, $remain, $off, $level) =
1493 ctx_statement_block($linenr, $remain, $off);
Andy Whitcroft773647a2008-03-28 14:15:58 -07001494 #print "F: c<$condition> s<$statement> remain<$remain>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08001495 push(@chunks, [ $condition, $statement ]);
1496 if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
1497 return ($level, $linenr, @chunks);
1498 }
1499
1500 # Pull in the following conditional/block pairs and see if they
1501 # could continue the statement.
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001502 for (;;) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001503 ($statement, $condition, $linenr, $remain, $off, $level) =
1504 ctx_statement_block($linenr, $remain, $off);
Andy Whitcroftcf655042008-03-04 14:28:20 -08001505 #print "C: c<$condition> s<$statement> remain<$remain>\n";
Andy Whitcroft773647a2008-03-28 14:15:58 -07001506 last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
Andy Whitcroftcf655042008-03-04 14:28:20 -08001507 #print "C: push\n";
1508 push(@chunks, [ $condition, $statement ]);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001509 }
1510
1511 return ($level, $linenr, @chunks);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001512}
1513
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001514sub ctx_block_get {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001515 my ($linenr, $remain, $outer, $open, $close, $off) = @_;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001516 my $line;
1517 my $start = $linenr - 1;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001518 my $blk = '';
1519 my @o;
1520 my @c;
1521 my @res = ();
1522
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001523 my $level = 0;
Andy Whitcroft4635f4f2009-01-06 14:41:27 -08001524 my @stack = ($level);
Andy Whitcroft00df3442007-06-08 13:47:06 -07001525 for ($line = $start; $remain > 0; $line++) {
1526 next if ($rawlines[$line] =~ /^-/);
1527 $remain--;
1528
1529 $blk .= $rawlines[$line];
Andy Whitcroft4635f4f2009-01-06 14:41:27 -08001530
1531 # Handle nested #if/#else.
Andy Whitcroft01464f32010-10-26 14:23:19 -07001532 if ($lines[$line] =~ /^.\s*#\s*(?:ifndef|ifdef|if)\s/) {
Andy Whitcroft4635f4f2009-01-06 14:41:27 -08001533 push(@stack, $level);
Andy Whitcroft01464f32010-10-26 14:23:19 -07001534 } elsif ($lines[$line] =~ /^.\s*#\s*(?:else|elif)\b/) {
Andy Whitcroft4635f4f2009-01-06 14:41:27 -08001535 $level = $stack[$#stack - 1];
Andy Whitcroft01464f32010-10-26 14:23:19 -07001536 } elsif ($lines[$line] =~ /^.\s*#\s*endif\b/) {
Andy Whitcroft4635f4f2009-01-06 14:41:27 -08001537 $level = pop(@stack);
1538 }
1539
Andy Whitcroft01464f32010-10-26 14:23:19 -07001540 foreach my $c (split(//, $lines[$line])) {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001541 ##print "C<$c>L<$level><$open$close>O<$off>\n";
1542 if ($off > 0) {
1543 $off--;
1544 next;
1545 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001546
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001547 if ($c eq $close && $level > 0) {
1548 $level--;
1549 last if ($level == 0);
1550 } elsif ($c eq $open) {
1551 $level++;
1552 }
1553 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001554
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001555 if (!$outer || $level <= 1) {
Andy Whitcroft00df3442007-06-08 13:47:06 -07001556 push(@res, $rawlines[$line]);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001557 }
1558
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001559 last if ($level == 0);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001560 }
1561
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001562 return ($level, @res);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001563}
1564sub ctx_block_outer {
1565 my ($linenr, $remain) = @_;
1566
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001567 my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0);
1568 return @r;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001569}
1570sub ctx_block {
1571 my ($linenr, $remain) = @_;
1572
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001573 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0);
1574 return @r;
Andy Whitcroft653d4872007-06-23 17:16:34 -07001575}
1576sub ctx_statement {
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001577 my ($linenr, $remain, $off) = @_;
1578
1579 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
1580 return @r;
1581}
1582sub ctx_block_level {
Andy Whitcroft653d4872007-06-23 17:16:34 -07001583 my ($linenr, $remain) = @_;
1584
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001585 return ctx_block_get($linenr, $remain, 0, '{', '}', 0);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001586}
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001587sub ctx_statement_level {
1588 my ($linenr, $remain, $off) = @_;
1589
1590 return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
1591}
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001592
1593sub ctx_locate_comment {
1594 my ($first_line, $end_line) = @_;
1595
1596 # Catch a comment on the end of the line itself.
Andy Whitcroftbeae6332008-07-23 21:28:59 -07001597 my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001598 return $current_comment if (defined $current_comment);
1599
1600 # Look through the context and try and figure out if there is a
1601 # comment.
1602 my $in_comment = 0;
1603 $current_comment = '';
1604 for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
Andy Whitcroft00df3442007-06-08 13:47:06 -07001605 my $line = $rawlines[$linenr - 1];
1606 #warn " $line\n";
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001607 if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
1608 $in_comment = 1;
1609 }
1610 if ($line =~ m@/\*@) {
1611 $in_comment = 1;
1612 }
1613 if (!$in_comment && $current_comment ne '') {
1614 $current_comment = '';
1615 }
1616 $current_comment .= $line . "\n" if ($in_comment);
1617 if ($line =~ m@\*/@) {
1618 $in_comment = 0;
1619 }
1620 }
1621
1622 chomp($current_comment);
1623 return($current_comment);
1624}
1625sub ctx_has_comment {
1626 my ($first_line, $end_line) = @_;
1627 my $cmt = ctx_locate_comment($first_line, $end_line);
1628
Andy Whitcroft00df3442007-06-08 13:47:06 -07001629 ##print "LINE: $rawlines[$end_line - 1 ]\n";
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07001630 ##print "CMMT: $cmt\n";
1631
1632 return ($cmt ne '');
1633}
1634
Andy Whitcroft4d001e42008-10-15 22:02:21 -07001635sub raw_line {
1636 my ($linenr, $cnt) = @_;
1637
1638 my $offset = $linenr - 1;
1639 $cnt++;
1640
1641 my $line;
1642 while ($cnt) {
1643 $line = $rawlines[$offset++];
1644 next if (defined($line) && $line =~ /^-/);
1645 $cnt--;
1646 }
1647
1648 return $line;
1649}
1650
Tobin C. Harding2a9f9d82018-04-10 16:33:20 -07001651sub get_stat_real {
1652 my ($linenr, $lc) = @_;
1653
1654 my $stat_real = raw_line($linenr, 0);
1655 for (my $count = $linenr + 1; $count <= $lc; $count++) {
1656 $stat_real = $stat_real . "\n" . raw_line($count, 0);
1657 }
1658
1659 return $stat_real;
1660}
1661
Tobin C. Hardinge3d95a22018-04-10 16:33:27 -07001662sub get_stat_here {
1663 my ($linenr, $cnt, $here) = @_;
1664
1665 my $herectx = $here . "\n";
1666 for (my $n = 0; $n < $cnt; $n++) {
1667 $herectx .= raw_line($linenr, $n) . "\n";
1668 }
1669
1670 return $herectx;
1671}
1672
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001673sub cat_vet {
1674 my ($vet) = @_;
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001675 my ($res, $coded);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001676
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001677 $res = '';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001678 while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
1679 $res .= $1;
1680 if ($2 ne '') {
1681 $coded = sprintf("^%c", unpack('C', $2) + 64);
1682 $res .= $coded;
1683 }
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001684 }
1685 $res =~ s/$/\$/;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001686
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07001687 return $res;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001688}
1689
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001690my $av_preprocessor = 0;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001691my $av_pending;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001692my @av_paren_type;
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001693my $av_pend_colon;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001694
1695sub annotate_reset {
1696 $av_preprocessor = 0;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001697 $av_pending = '_';
1698 @av_paren_type = ('E');
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001699 $av_pend_colon = 'O';
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001700}
1701
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001702sub annotate_values {
1703 my ($stream, $type) = @_;
1704
1705 my $res;
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001706 my $var = '_' x length($stream);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001707 my $cur = $stream;
1708
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001709 print "$stream\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001710
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001711 while (length($cur)) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001712 @av_paren_type = ('E') if ($#av_paren_type < 0);
Andy Whitcroftcf655042008-03-04 14:28:20 -08001713 print " <" . join('', @av_paren_type) .
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001714 "> <$type> <$av_pending>" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001715 if ($cur =~ /^(\s+)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001716 print "WS($1)\n" if ($dbg_values > 1);
1717 if ($1 =~ /\n/ && $av_preprocessor) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001718 $type = pop(@av_paren_type);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001719 $av_preprocessor = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001720 }
1721
Florian Micklerc023e4732011-01-12 16:59:58 -08001722 } elsif ($cur =~ /^(\(\s*$Type\s*)\)/ && $av_pending eq '_') {
Andy Whitcroft9446ef52010-10-26 14:23:13 -07001723 print "CAST($1)\n" if ($dbg_values > 1);
1724 push(@av_paren_type, $type);
Andy Whitcroftaddcdce2012-01-10 15:10:11 -08001725 $type = 'c';
Andy Whitcroft9446ef52010-10-26 14:23:13 -07001726
Andy Whitcrofte91b6e22010-10-26 14:23:11 -07001727 } elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\(|\s*$)/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001728 print "DECLARE($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001729 $type = 'T';
1730
Andy Whitcroft389a2fe2008-07-23 21:29:05 -07001731 } elsif ($cur =~ /^($Modifier)\s*/) {
1732 print "MODIFIER($1)\n" if ($dbg_values > 1);
1733 $type = 'T';
1734
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001735 } elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001736 print "DEFINE($1,$2)\n" if ($dbg_values > 1);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001737 $av_preprocessor = 1;
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001738 push(@av_paren_type, $type);
1739 if ($2 ne '') {
1740 $av_pending = 'N';
1741 }
1742 $type = 'E';
1743
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001744 } elsif ($cur =~ /^(\#\s*(?:undef\s*$Ident|include\b))/o) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001745 print "UNDEF($1)\n" if ($dbg_values > 1);
1746 $av_preprocessor = 1;
1747 push(@av_paren_type, $type);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001748
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001749 } elsif ($cur =~ /^(\#\s*(?:ifdef|ifndef|if))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001750 print "PRE_START($1)\n" if ($dbg_values > 1);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001751 $av_preprocessor = 1;
Andy Whitcroftcf655042008-03-04 14:28:20 -08001752
1753 push(@av_paren_type, $type);
1754 push(@av_paren_type, $type);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001755 $type = 'E';
Andy Whitcroftcf655042008-03-04 14:28:20 -08001756
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001757 } elsif ($cur =~ /^(\#\s*(?:else|elif))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001758 print "PRE_RESTART($1)\n" if ($dbg_values > 1);
1759 $av_preprocessor = 1;
1760
1761 push(@av_paren_type, $av_paren_type[$#av_paren_type]);
1762
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001763 $type = 'E';
Andy Whitcroftcf655042008-03-04 14:28:20 -08001764
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001765 } elsif ($cur =~ /^(\#\s*(?:endif))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001766 print "PRE_END($1)\n" if ($dbg_values > 1);
1767
1768 $av_preprocessor = 1;
1769
1770 # Assume all arms of the conditional end as this
1771 # one does, and continue as if the #endif was not here.
1772 pop(@av_paren_type);
1773 push(@av_paren_type, $type);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001774 $type = 'E';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001775
1776 } elsif ($cur =~ /^(\\\n)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001777 print "PRECONT($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001778
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07001779 } elsif ($cur =~ /^(__attribute__)\s*\(?/o) {
1780 print "ATTR($1)\n" if ($dbg_values > 1);
1781 $av_pending = $type;
1782 $type = 'N';
1783
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001784 } elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001785 print "SIZEOF($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001786 if (defined $2) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001787 $av_pending = 'V';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001788 }
1789 $type = 'N';
1790
Andy Whitcroft14b111c2008-10-15 22:02:16 -07001791 } elsif ($cur =~ /^(if|while|for)\b/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001792 print "COND($1)\n" if ($dbg_values > 1);
Andy Whitcroft14b111c2008-10-15 22:02:16 -07001793 $av_pending = 'E';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001794 $type = 'N';
1795
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001796 } elsif ($cur =~/^(case)/o) {
1797 print "CASE($1)\n" if ($dbg_values > 1);
1798 $av_pend_colon = 'C';
1799 $type = 'N';
1800
Andy Whitcroft14b111c2008-10-15 22:02:16 -07001801 } elsif ($cur =~/^(return|else|goto|typeof|__typeof__)\b/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001802 print "KEYWORD($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001803 $type = 'N';
1804
1805 } elsif ($cur =~ /^(\()/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001806 print "PAREN('$1')\n" if ($dbg_values > 1);
Andy Whitcroftcf655042008-03-04 14:28:20 -08001807 push(@av_paren_type, $av_pending);
1808 $av_pending = '_';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001809 $type = 'N';
1810
1811 } elsif ($cur =~ /^(\))/o) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08001812 my $new_type = pop(@av_paren_type);
1813 if ($new_type ne '_') {
1814 $type = $new_type;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001815 print "PAREN('$1') -> $type\n"
1816 if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001817 } else {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001818 print "PAREN('$1')\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001819 }
1820
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -07001821 } elsif ($cur =~ /^($Ident)\s*\(/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001822 print "FUNC($1)\n" if ($dbg_values > 1);
Andy Whitcroftc8cb2ca2008-07-23 21:28:57 -07001823 $type = 'V';
Andy Whitcroftcf655042008-03-04 14:28:20 -08001824 $av_pending = 'V';
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001825
Andy Whitcroft8e761b02009-01-06 14:41:19 -08001826 } elsif ($cur =~ /^($Ident\s*):(?:\s*\d+\s*(,|=|;))?/) {
1827 if (defined $2 && $type eq 'C' || $type eq 'T') {
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001828 $av_pend_colon = 'B';
Andy Whitcroft8e761b02009-01-06 14:41:19 -08001829 } elsif ($type eq 'E') {
1830 $av_pend_colon = 'L';
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001831 }
1832 print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1);
1833 $type = 'V';
1834
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001835 } elsif ($cur =~ /^($Ident|$Constant)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001836 print "IDENT($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001837 $type = 'V';
1838
1839 } elsif ($cur =~ /^($Assignment)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001840 print "ASSIGN($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001841 $type = 'N';
1842
Andy Whitcroftcf655042008-03-04 14:28:20 -08001843 } elsif ($cur =~/^(;|{|})/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001844 print "END($1)\n" if ($dbg_values > 1);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001845 $type = 'E';
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001846 $av_pend_colon = 'O';
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001847
Andy Whitcroft8e761b02009-01-06 14:41:19 -08001848 } elsif ($cur =~/^(,)/) {
1849 print "COMMA($1)\n" if ($dbg_values > 1);
1850 $type = 'C';
1851
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001852 } elsif ($cur =~ /^(\?)/o) {
1853 print "QUESTION($1)\n" if ($dbg_values > 1);
1854 $type = 'N';
1855
1856 } elsif ($cur =~ /^(:)/o) {
1857 print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1);
1858
1859 substr($var, length($res), 1, $av_pend_colon);
1860 if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') {
1861 $type = 'E';
1862 } else {
1863 $type = 'N';
1864 }
1865 $av_pend_colon = 'O';
1866
Andy Whitcroft8e761b02009-01-06 14:41:19 -08001867 } elsif ($cur =~ /^(\[)/o) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001868 print "CLOSE($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001869 $type = 'N';
1870
Andy Whitcroft0d413862008-10-15 22:02:16 -07001871 } elsif ($cur =~ /^(-(?![->])|\+(?!\+)|\*|\&\&|\&)/o) {
Andy Whitcroft74048ed2008-07-23 21:29:10 -07001872 my $variant;
1873
1874 print "OPV($1)\n" if ($dbg_values > 1);
1875 if ($type eq 'V') {
1876 $variant = 'B';
1877 } else {
1878 $variant = 'U';
1879 }
1880
1881 substr($var, length($res), 1, $variant);
1882 $type = 'N';
1883
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001884 } elsif ($cur =~ /^($Operators)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001885 print "OP($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001886 if ($1 ne '++' && $1 ne '--') {
1887 $type = 'N';
1888 }
1889
1890 } elsif ($cur =~ /(^.)/o) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08001891 print "C($1)\n" if ($dbg_values > 1);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001892 }
1893 if (defined $1) {
1894 $cur = substr($cur, length($1));
1895 $res .= $type x length($1);
1896 }
1897 }
1898
Andy Whitcroft1f65f942008-07-23 21:29:10 -07001899 return ($res, $var);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001900}
1901
Andy Whitcroft8905a672007-11-28 16:21:06 -08001902sub possible {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001903 my ($possible, $line) = @_;
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001904 my $notPermitted = qr{(?:
Andy Whitcroft0776e592008-10-15 22:02:29 -07001905 ^(?:
1906 $Modifier|
1907 $Storage|
1908 $Type|
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001909 DEFINE_\S+
1910 )$|
1911 ^(?:
Andy Whitcroft0776e592008-10-15 22:02:29 -07001912 goto|
1913 return|
1914 case|
1915 else|
1916 asm|__asm__|
Andy Whitcroft89a88352012-01-10 15:10:00 -08001917 do|
1918 \#|
1919 \#\#|
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001920 )(?:\s|$)|
Andy Whitcroft0776e592008-10-15 22:02:29 -07001921 ^(?:typedef|struct|enum)\b
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001922 )}x;
1923 warn "CHECK<$possible> ($line)\n" if ($dbg_possible > 2);
1924 if ($possible !~ $notPermitted) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001925 # Check for modifiers.
1926 $possible =~ s/\s*$Storage\s*//g;
1927 $possible =~ s/\s*$Sparse\s*//g;
1928 if ($possible =~ /^\s*$/) {
1929
1930 } elsif ($possible =~ /\s/) {
1931 $possible =~ s/\s*$Type\s*//g;
Andy Whitcroftd2506582008-07-23 21:29:09 -07001932 for my $modifier (split(' ', $possible)) {
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001933 if ($modifier !~ $notPermitted) {
1934 warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
Alex Dowad485ff232015-06-25 15:02:52 -07001935 push(@modifierListFile, $modifier);
Andy Whitcroft9a974fd2009-10-26 16:50:12 -07001936 }
Andy Whitcroftd2506582008-07-23 21:29:09 -07001937 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001938
1939 } else {
1940 warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
Alex Dowad485ff232015-06-25 15:02:52 -07001941 push(@typeListFile, $possible);
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07001942 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08001943 build_types();
Andy Whitcroft0776e592008-10-15 22:02:29 -07001944 } else {
1945 warn "NOTPOSS: $possible ($line)\n" if ($dbg_possible > 1);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001946 }
1947}
1948
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07001949my $prefix = '';
1950
Joe Perches000d1cc12011-07-25 17:13:25 -07001951sub show_type {
Joe Perchescbec18a2014-04-03 14:49:19 -07001952 my ($type) = @_;
Joe Perches91bfe482013-09-11 14:23:59 -07001953
Alexey Dobriyan522b8372017-02-27 14:30:05 -08001954 $type =~ tr/[a-z]/[A-Z]/;
1955
Joe Perchescbec18a2014-04-03 14:49:19 -07001956 return defined $use_type{$type} if (scalar keys %use_type > 0);
1957
1958 return !defined $ignore_type{$type};
Joe Perches000d1cc12011-07-25 17:13:25 -07001959}
1960
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001961sub report {
Joe Perchescbec18a2014-04-03 14:49:19 -07001962 my ($level, $type, $msg) = @_;
1963
1964 if (!show_type($type) ||
1965 (defined $tst_only && $msg !~ /\Q$tst_only\E/)) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07001966 return 0;
1967 }
Joe Perches57230292015-06-25 15:03:03 -07001968 my $output = '';
John Brooks737c0762017-07-10 15:52:24 -07001969 if ($color) {
Joe Perches57230292015-06-25 15:03:03 -07001970 if ($level eq 'ERROR') {
1971 $output .= RED;
1972 } elsif ($level eq 'WARNING') {
1973 $output .= YELLOW;
1974 } else {
1975 $output .= GREEN;
1976 }
Joe Perches000d1cc12011-07-25 17:13:25 -07001977 }
Joe Perches57230292015-06-25 15:03:03 -07001978 $output .= $prefix . $level . ':';
1979 if ($show_types) {
John Brooks737c0762017-07-10 15:52:24 -07001980 $output .= BLUE if ($color);
Joe Perches57230292015-06-25 15:03:03 -07001981 $output .= "$type:";
1982 }
John Brooks737c0762017-07-10 15:52:24 -07001983 $output .= RESET if ($color);
Joe Perches57230292015-06-25 15:03:03 -07001984 $output .= ' ' . $msg . "\n";
Joe Perches34d88152015-06-25 15:03:05 -07001985
1986 if ($showfile) {
1987 my @lines = split("\n", $output, -1);
1988 splice(@lines, 1, 1);
1989 $output = join("\n", @lines);
1990 }
Joe Perches57230292015-06-25 15:03:03 -07001991 $output = (split('\n', $output))[0] . "\n" if ($terse);
Andy Whitcroft8905a672007-11-28 16:21:06 -08001992
Joe Perches57230292015-06-25 15:03:03 -07001993 push(our @report, $output);
Andy Whitcroft773647a2008-03-28 14:15:58 -07001994
1995 return 1;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001996}
Joe Perchescbec18a2014-04-03 14:49:19 -07001997
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07001998sub report_dump {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08001999 our @report;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07002000}
Joe Perches000d1cc12011-07-25 17:13:25 -07002001
Joe Perchesd752fcc2014-08-06 16:11:05 -07002002sub fixup_current_range {
2003 my ($lineRef, $offset, $length) = @_;
2004
2005 if ($$lineRef =~ /^\@\@ -\d+,\d+ \+(\d+),(\d+) \@\@/) {
2006 my $o = $1;
2007 my $l = $2;
2008 my $no = $o + $offset;
2009 my $nl = $l + $length;
2010 $$lineRef =~ s/\+$o,$l \@\@/\+$no,$nl \@\@/;
2011 }
2012}
2013
2014sub fix_inserted_deleted_lines {
2015 my ($linesRef, $insertedRef, $deletedRef) = @_;
2016
2017 my $range_last_linenr = 0;
2018 my $delta_offset = 0;
2019
2020 my $old_linenr = 0;
2021 my $new_linenr = 0;
2022
2023 my $next_insert = 0;
2024 my $next_delete = 0;
2025
2026 my @lines = ();
2027
2028 my $inserted = @{$insertedRef}[$next_insert++];
2029 my $deleted = @{$deletedRef}[$next_delete++];
2030
2031 foreach my $old_line (@{$linesRef}) {
2032 my $save_line = 1;
2033 my $line = $old_line; #don't modify the array
Joe Perches323b2672015-04-16 12:44:50 -07002034 if ($line =~ /^(?:\+\+\+|\-\-\-)\s+\S+/) { #new filename
Joe Perchesd752fcc2014-08-06 16:11:05 -07002035 $delta_offset = 0;
2036 } elsif ($line =~ /^\@\@ -\d+,\d+ \+\d+,\d+ \@\@/) { #new hunk
2037 $range_last_linenr = $new_linenr;
2038 fixup_current_range(\$line, $delta_offset, 0);
2039 }
2040
2041 while (defined($deleted) && ${$deleted}{'LINENR'} == $old_linenr) {
2042 $deleted = @{$deletedRef}[$next_delete++];
2043 $save_line = 0;
2044 fixup_current_range(\$lines[$range_last_linenr], $delta_offset--, -1);
2045 }
2046
2047 while (defined($inserted) && ${$inserted}{'LINENR'} == $old_linenr) {
2048 push(@lines, ${$inserted}{'LINE'});
2049 $inserted = @{$insertedRef}[$next_insert++];
2050 $new_linenr++;
2051 fixup_current_range(\$lines[$range_last_linenr], $delta_offset++, 1);
2052 }
2053
2054 if ($save_line) {
2055 push(@lines, $line);
2056 $new_linenr++;
2057 }
2058
2059 $old_linenr++;
2060 }
2061
2062 return @lines;
2063}
2064
Joe Perchesf2d7e4d2014-08-06 16:11:07 -07002065sub fix_insert_line {
2066 my ($linenr, $line) = @_;
2067
2068 my $inserted = {
2069 LINENR => $linenr,
2070 LINE => $line,
2071 };
2072 push(@fixed_inserted, $inserted);
2073}
2074
2075sub fix_delete_line {
2076 my ($linenr, $line) = @_;
2077
2078 my $deleted = {
2079 LINENR => $linenr,
2080 LINE => $line,
2081 };
2082
2083 push(@fixed_deleted, $deleted);
2084}
2085
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002086sub ERROR {
Joe Perchescbec18a2014-04-03 14:49:19 -07002087 my ($type, $msg) = @_;
2088
2089 if (report("ERROR", $type, $msg)) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002090 our $clean = 0;
2091 our $cnt_error++;
Joe Perches3705ce52013-07-03 15:05:31 -07002092 return 1;
Andy Whitcroft773647a2008-03-28 14:15:58 -07002093 }
Joe Perches3705ce52013-07-03 15:05:31 -07002094 return 0;
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002095}
2096sub WARN {
Joe Perchescbec18a2014-04-03 14:49:19 -07002097 my ($type, $msg) = @_;
2098
2099 if (report("WARNING", $type, $msg)) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002100 our $clean = 0;
2101 our $cnt_warn++;
Joe Perches3705ce52013-07-03 15:05:31 -07002102 return 1;
Andy Whitcroft773647a2008-03-28 14:15:58 -07002103 }
Joe Perches3705ce52013-07-03 15:05:31 -07002104 return 0;
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002105}
2106sub CHK {
Joe Perchescbec18a2014-04-03 14:49:19 -07002107 my ($type, $msg) = @_;
2108
2109 if ($check && report("CHECK", $type, $msg)) {
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002110 our $clean = 0;
2111 our $cnt_chk++;
Joe Perches3705ce52013-07-03 15:05:31 -07002112 return 1;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002113 }
Joe Perches3705ce52013-07-03 15:05:31 -07002114 return 0;
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002115}
2116
Andy Whitcroft6ecd9672008-10-15 22:02:21 -07002117sub check_absolute_file {
2118 my ($absolute, $herecurr) = @_;
2119 my $file = $absolute;
2120
2121 ##print "absolute<$absolute>\n";
2122
2123 # See if any suffix of this path is a path within the tree.
2124 while ($file =~ s@^[^/]*/@@) {
2125 if (-f "$root/$file") {
2126 ##print "file<$file>\n";
2127 last;
2128 }
2129 }
2130 if (! -f _) {
2131 return 0;
2132 }
2133
2134 # It is, so see if the prefix is acceptable.
2135 my $prefix = $absolute;
2136 substr($prefix, -length($file)) = '';
2137
2138 ##print "prefix<$prefix>\n";
2139 if ($prefix ne ".../") {
Joe Perches000d1cc12011-07-25 17:13:25 -07002140 WARN("USE_RELATIVE_PATH",
2141 "use relative pathname instead of absolute in changelog text\n" . $herecurr);
Andy Whitcroft6ecd9672008-10-15 22:02:21 -07002142 }
2143}
2144
Joe Perches3705ce52013-07-03 15:05:31 -07002145sub trim {
2146 my ($string) = @_;
2147
Joe Perchesb34c6482013-09-11 14:24:01 -07002148 $string =~ s/^\s+|\s+$//g;
2149
2150 return $string;
2151}
2152
2153sub ltrim {
2154 my ($string) = @_;
2155
2156 $string =~ s/^\s+//;
2157
2158 return $string;
2159}
2160
2161sub rtrim {
2162 my ($string) = @_;
2163
2164 $string =~ s/\s+$//;
Joe Perches3705ce52013-07-03 15:05:31 -07002165
2166 return $string;
2167}
2168
Joe Perches52ea8502013-11-12 15:10:09 -08002169sub string_find_replace {
2170 my ($string, $find, $replace) = @_;
2171
2172 $string =~ s/$find/$replace/g;
2173
2174 return $string;
2175}
2176
Joe Perches3705ce52013-07-03 15:05:31 -07002177sub tabify {
2178 my ($leading) = @_;
2179
2180 my $source_indent = 8;
2181 my $max_spaces_before_tab = $source_indent - 1;
2182 my $spaces_to_tab = " " x $source_indent;
2183
2184 #convert leading spaces to tabs
2185 1 while $leading =~ s@^([\t]*)$spaces_to_tab@$1\t@g;
2186 #Remove spaces before a tab
2187 1 while $leading =~ s@^([\t]*)( {1,$max_spaces_before_tab})\t@$1\t@g;
2188
2189 return "$leading";
2190}
2191
Joe Perchesd1fe9c02012-03-23 15:02:16 -07002192sub pos_last_openparen {
2193 my ($line) = @_;
2194
2195 my $pos = 0;
2196
2197 my $opens = $line =~ tr/\(/\(/;
2198 my $closes = $line =~ tr/\)/\)/;
2199
2200 my $last_openparen = 0;
2201
2202 if (($opens == 0) || ($closes >= $opens)) {
2203 return -1;
2204 }
2205
2206 my $len = length($line);
2207
2208 for ($pos = 0; $pos < $len; $pos++) {
2209 my $string = substr($line, $pos);
2210 if ($string =~ /^($FuncArg|$balanced_parens)/) {
2211 $pos += length($1) - 1;
2212 } elsif (substr($line, $pos, 1) eq '(') {
2213 $last_openparen = $pos;
2214 } elsif (index($string, '(') == -1) {
2215 last;
2216 }
2217 }
2218
Joe Perches91cb5192014-04-03 14:49:32 -07002219 return length(expand_tabs(substr($line, 0, $last_openparen))) + 1;
Joe Perchesd1fe9c02012-03-23 15:02:16 -07002220}
2221
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002222sub process {
2223 my $filename = shift;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002224
2225 my $linenr=0;
2226 my $prevline="";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002227 my $prevrawline="";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002228 my $stashline="";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002229 my $stashrawline="";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002230
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002231 my $length;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002232 my $indent;
2233 my $previndent=0;
2234 my $stashindent=0;
2235
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002236 our $clean = 1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002237 my $signoff = 0;
2238 my $is_patch = 0;
Joe Perches29ee1b02014-08-06 16:10:35 -07002239 my $in_header_lines = $file ? 0 : 1;
Joe Perches15662b32011-10-31 17:13:12 -07002240 my $in_commit_log = 0; #Scanning lines before patch
Allen Hubbeed43c4e2016-08-02 14:04:45 -07002241 my $has_commit_log = 0; #Encountered lines before patch
Joe Perches77cb8542017-02-24 15:01:28 -08002242 my $commit_log_possible_stack_dump = 0;
Joe Perches2a076f42015-04-16 12:44:28 -07002243 my $commit_log_long_line = 0;
Joe Perchese518e9a2015-06-25 15:03:27 -07002244 my $commit_log_has_diff = 0;
Joe Perches13f19372014-08-06 16:10:59 -07002245 my $reported_maintainer_file = 0;
Pasi Savanainenfa64205d2012-10-04 17:13:29 -07002246 my $non_utf8_charset = 0;
2247
Joe Perches365dd4e2014-08-06 16:10:42 -07002248 my $last_blank_line = 0;
Joe Perches5e4f6ba2014-12-10 15:52:05 -08002249 my $last_coalesced_string_linenr = -1;
Joe Perches365dd4e2014-08-06 16:10:42 -07002250
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002251 our @report = ();
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002252 our $cnt_lines = 0;
2253 our $cnt_error = 0;
2254 our $cnt_warn = 0;
2255 our $cnt_chk = 0;
2256
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002257 # Trace the real file/line as we go.
2258 my $realfile = '';
2259 my $realline = 0;
2260 my $realcnt = 0;
2261 my $here = '';
Joe Perches77cb8542017-02-24 15:01:28 -08002262 my $context_function; #undef'd unless there's a known function
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002263 my $in_comment = 0;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002264 my $comment_edge = 0;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002265 my $first_line = 0;
Wolfram Sang1e855722009-01-06 14:41:24 -08002266 my $p1_prefix = '';
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002267
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002268 my $prev_values = 'E';
2269
2270 # suppression flags
Andy Whitcroft773647a2008-03-28 14:15:58 -07002271 my %suppress_ifbraces;
Andy Whitcroft170d3a22008-10-15 22:02:30 -07002272 my %suppress_whiletrailers;
Andy Whitcroft2b474a12009-10-26 16:50:16 -07002273 my %suppress_export;
Andy Whitcroft3e469cd2012-01-10 15:10:01 -08002274 my $suppress_statement = 0;
Andy Whitcroft653d4872007-06-23 17:16:34 -07002275
Joe Perches7e51f192013-09-11 14:23:57 -07002276 my %signatures = ();
Joe Perches323c1262012-12-17 16:02:07 -08002277
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002278 # Pre-scan the patch sanitizing the lines.
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002279 # Pre-scan the patch looking for any __setup documentation.
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002280 #
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002281 my @setup_docs = ();
2282 my $setup_docs = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07002283
Joe Perchesd8b07712013-11-12 15:10:06 -08002284 my $camelcase_file_seeded = 0;
2285
Rob Herring9f3a8992018-04-10 16:33:13 -07002286 my $checklicenseline = 1;
2287
Andy Whitcroft773647a2008-03-28 14:15:58 -07002288 sanitise_line_reset();
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002289 my $line;
2290 foreach my $rawline (@rawlines) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002291 $linenr++;
2292 $line = $rawline;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002293
Joe Perches3705ce52013-07-03 15:05:31 -07002294 push(@fixed, $rawline) if ($fix);
2295
Andy Whitcroft773647a2008-03-28 14:15:58 -07002296 if ($rawline=~/^\+\+\+\s+(\S+)/) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002297 $setup_docs = 0;
Mauro Carvalho Chehab8c27ceff32016-10-18 10:12:27 -02002298 if ($1 =~ m@Documentation/admin-guide/kernel-parameters.rst$@) {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002299 $setup_docs = 1;
2300 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002301 #next;
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002302 }
Joe Perches74fd4f32017-05-08 15:56:02 -07002303 if ($rawline =~ /^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002304 $realline=$1-1;
2305 if (defined $2) {
2306 $realcnt=$3+1;
2307 } else {
2308 $realcnt=1+1;
2309 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07002310 $in_comment = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07002311
2312 # Guestimate if this is a continuing comment. Run
2313 # the context looking for a comment "edge". If this
2314 # edge is a close comment then we must be in a comment
2315 # at context start.
2316 my $edge;
Andy Whitcroft01fa9142008-10-15 22:02:19 -07002317 my $cnt = $realcnt;
2318 for (my $ln = $linenr + 1; $cnt > 0; $ln++) {
2319 next if (defined $rawlines[$ln - 1] &&
2320 $rawlines[$ln - 1] =~ /^-/);
2321 $cnt--;
2322 #print "RAW<$rawlines[$ln - 1]>\n";
Andy Whitcroft721c1cb2009-01-06 14:41:16 -08002323 last if (!defined $rawlines[$ln - 1]);
Andy Whitcroftfae17da2009-01-06 14:41:20 -08002324 if ($rawlines[$ln - 1] =~ m@(/\*|\*/)@ &&
2325 $rawlines[$ln - 1] !~ m@"[^"]*(?:/\*|\*/)[^"]*"@) {
2326 ($edge) = $1;
2327 last;
2328 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002329 }
2330 if (defined $edge && $edge eq '*/') {
2331 $in_comment = 1;
2332 }
2333
2334 # Guestimate if this is a continuing comment. If this
2335 # is the start of a diff block and this line starts
2336 # ' *' then it is very likely a comment.
2337 if (!defined $edge &&
Andy Whitcroft83242e02009-01-06 14:41:17 -08002338 $rawlines[$linenr] =~ m@^.\s*(?:\*\*+| \*)(?:\s|$)@)
Andy Whitcroft773647a2008-03-28 14:15:58 -07002339 {
2340 $in_comment = 1;
2341 }
2342
2343 ##print "COMMENT:$in_comment edge<$edge> $rawline\n";
2344 sanitise_line_reset($in_comment);
2345
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002346 } elsif ($realcnt && $rawline =~ /^(?:\+| |$)/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002347 # Standardise the strings and chars within the input to
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002348 # simplify matching -- only bother with positive lines.
Andy Whitcroft773647a2008-03-28 14:15:58 -07002349 $line = sanitise_line($rawline);
2350 }
2351 push(@lines, $line);
2352
2353 if ($realcnt > 1) {
2354 $realcnt-- if ($line =~ /^(?:\+| |$)/);
2355 } else {
2356 $realcnt = 0;
2357 }
2358
2359 #print "==>$rawline\n";
2360 #print "-->$line\n";
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002361
2362 if ($setup_docs && $line =~ /^\+/) {
2363 push(@setup_docs, $line);
2364 }
2365 }
2366
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002367 $prefix = '';
2368
Andy Whitcroft773647a2008-03-28 14:15:58 -07002369 $realcnt = 0;
2370 $linenr = 0;
Joe Perches194f66f2014-08-06 16:11:03 -07002371 $fixlinenr = -1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002372 foreach my $line (@lines) {
2373 $linenr++;
Joe Perches194f66f2014-08-06 16:11:03 -07002374 $fixlinenr++;
Joe Perches1b5539b2013-09-11 14:24:03 -07002375 my $sline = $line; #copy of $line
2376 $sline =~ s/$;/ /g; #with comments as spaces
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002377
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002378 my $rawline = $rawlines[$linenr - 1];
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002379
Joe Perches12c253a2018-06-07 17:10:58 -07002380# check if it's a mode change, rename or start of a patch
2381 if (!$in_commit_log &&
2382 ($line =~ /^ mode change [0-7]+ => [0-7]+ \S+\s*$/ ||
2383 ($line =~ /^rename (?:from|to) \S+\s*$/ ||
2384 $line =~ /^diff --git a\/[\w\/\.\_\-]+ b\/\S+\s*$/))) {
2385 $is_patch = 1;
2386 }
2387
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002388#extract the line range in the file after the patch is applied
Joe Perchese518e9a2015-06-25 15:03:27 -07002389 if (!$in_commit_log &&
Joe Perches74fd4f32017-05-08 15:56:02 -07002390 $line =~ /^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@(.*)/) {
2391 my $context = $4;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002392 $is_patch = 1;
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002393 $first_line = $linenr + 1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002394 $realline=$1-1;
2395 if (defined $2) {
2396 $realcnt=$3+1;
2397 } else {
2398 $realcnt=1+1;
2399 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002400 annotate_reset();
Andy Whitcroft13214ad2008-02-08 04:22:03 -08002401 $prev_values = 'E';
2402
Andy Whitcroft773647a2008-03-28 14:15:58 -07002403 %suppress_ifbraces = ();
Andy Whitcroft170d3a22008-10-15 22:02:30 -07002404 %suppress_whiletrailers = ();
Andy Whitcroft2b474a12009-10-26 16:50:16 -07002405 %suppress_export = ();
Andy Whitcroft3e469cd2012-01-10 15:10:01 -08002406 $suppress_statement = 0;
Joe Perches74fd4f32017-05-08 15:56:02 -07002407 if ($context =~ /\b(\w+)\s*\(/) {
2408 $context_function = $1;
2409 } else {
2410 undef $context_function;
2411 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002412 next;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002413
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002414# track the line number as we move through the hunk, note that
2415# new versions of GNU diff omit the leading space on completely
2416# blank context lines so we need to count that too.
Andy Whitcroft773647a2008-03-28 14:15:58 -07002417 } elsif ($line =~ /^( |\+|$)/) {
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002418 $realline++;
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002419 $realcnt-- if ($realcnt != 0);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002420
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002421 # Measure the line length and indent.
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002422 ($length, $indent) = line_stats($rawline);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002423
2424 # Track the previous line.
2425 ($prevline, $stashline) = ($stashline, $line);
2426 ($previndent, $stashindent) = ($stashindent, $indent);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002427 ($prevrawline, $stashrawline) = ($stashrawline, $rawline);
2428
Andy Whitcroft773647a2008-03-28 14:15:58 -07002429 #warn "line<$line>\n";
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002430
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002431 } elsif ($realcnt == 1) {
2432 $realcnt--;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002433 }
2434
Andy Whitcroftcc77cdc2009-10-26 16:50:13 -07002435 my $hunk_line = ($realcnt != 0);
2436
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002437 $here = "#$linenr: " if (!$file);
2438 $here = "#$realline: " if ($file);
Andy Whitcroft773647a2008-03-28 14:15:58 -07002439
Joe Perches2ac73b42014-06-04 16:12:05 -07002440 my $found_file = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07002441 # extract the filename as it passes
Rabin Vincent3bf9a002010-10-26 14:23:16 -07002442 if ($line =~ /^diff --git.*?(\S+)$/) {
2443 $realfile = $1;
Joe Perches2b7ab452013-11-12 15:10:14 -08002444 $realfile =~ s@^([^/]*)/@@ if (!$file);
Joe Perches270c49a2012-01-10 15:09:50 -08002445 $in_commit_log = 0;
Joe Perches2ac73b42014-06-04 16:12:05 -07002446 $found_file = 1;
Rabin Vincent3bf9a002010-10-26 14:23:16 -07002447 } elsif ($line =~ /^\+\+\+\s+(\S+)/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07002448 $realfile = $1;
Joe Perches2b7ab452013-11-12 15:10:14 -08002449 $realfile =~ s@^([^/]*)/@@ if (!$file);
Joe Perches270c49a2012-01-10 15:09:50 -08002450 $in_commit_log = 0;
Wolfram Sang1e855722009-01-06 14:41:24 -08002451
2452 $p1_prefix = $1;
Andy Whitcrofte2f7aa42009-02-27 14:03:06 -08002453 if (!$file && $tree && $p1_prefix ne '' &&
2454 -e "$root/$p1_prefix") {
Joe Perches000d1cc12011-07-25 17:13:25 -07002455 WARN("PATCH_PREFIX",
2456 "patch prefix '$p1_prefix' exists, appears to be a -p0 patch\n");
Wolfram Sang1e855722009-01-06 14:41:24 -08002457 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07002458
Andy Whitcroftc1ab3322008-10-15 22:02:20 -07002459 if ($realfile =~ m@^include/asm/@) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002460 ERROR("MODIFIED_INCLUDE_ASM",
2461 "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 -07002462 }
Joe Perches2ac73b42014-06-04 16:12:05 -07002463 $found_file = 1;
2464 }
2465
Joe Perches34d88152015-06-25 15:03:05 -07002466#make up the handle for any error we report on this line
2467 if ($showfile) {
2468 $prefix = "$realfile:$realline: "
2469 } elsif ($emacs) {
Joe Perches7d3a9f62015-09-09 15:37:39 -07002470 if ($file) {
2471 $prefix = "$filename:$realline: ";
2472 } else {
2473 $prefix = "$filename:$linenr: ";
2474 }
Joe Perches34d88152015-06-25 15:03:05 -07002475 }
2476
Joe Perches2ac73b42014-06-04 16:12:05 -07002477 if ($found_file) {
Joe Perches85b0ee12016-10-11 13:51:44 -07002478 if (is_maintained_obsolete($realfile)) {
2479 WARN("OBSOLETE",
2480 "$realfile is marked as 'obsolete' in the MAINTAINERS hierarchy. No unnecessary modifications please.\n");
2481 }
Joe Perches7bd7e482015-09-09 15:37:44 -07002482 if ($realfile =~ m@^(?:drivers/net/|net/|drivers/staging/)@) {
Joe Perches2ac73b42014-06-04 16:12:05 -07002483 $check = 1;
2484 } else {
2485 $check = $check_orig;
2486 }
Rob Herring9f3a8992018-04-10 16:33:13 -07002487 $checklicenseline = 1;
Andy Whitcroft773647a2008-03-28 14:15:58 -07002488 next;
2489 }
2490
Randy Dunlap389834b2007-06-08 13:47:03 -07002491 $here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002492
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002493 my $hereline = "$here\n$rawline\n";
2494 my $herecurr = "$here\n$rawline\n";
2495 my $hereprev = "$here\n$prevrawline\n$rawline\n";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002496
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002497 $cnt_lines++ if ($realcnt != 0);
2498
Joe Perchese518e9a2015-06-25 15:03:27 -07002499# Check if the commit log has what seems like a diff which can confuse patch
2500 if ($in_commit_log && !$commit_log_has_diff &&
2501 (($line =~ m@^\s+diff\b.*a/[\w/]+@ &&
2502 $line =~ m@^\s+diff\b.*a/([\w/]+)\s+b/$1\b@) ||
2503 $line =~ m@^\s*(?:\-\-\-\s+a/|\+\+\+\s+b/)@ ||
2504 $line =~ m/^\s*\@\@ \-\d+,\d+ \+\d+,\d+ \@\@/)) {
2505 ERROR("DIFF_IN_COMMIT_MSG",
2506 "Avoid using diff content in the commit message - patch(1) might not work\n" . $herecurr);
2507 $commit_log_has_diff = 1;
2508 }
2509
Rabin Vincent3bf9a002010-10-26 14:23:16 -07002510# Check for incorrect file permissions
2511 if ($line =~ /^new (file )?mode.*[7531]\d{0,2}$/) {
2512 my $permhere = $here . "FILE: $realfile\n";
Joe Perches04db4d22013-04-29 16:18:14 -07002513 if ($realfile !~ m@scripts/@ &&
2514 $realfile !~ /\.(py|pl|awk|sh)$/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002515 ERROR("EXECUTE_PERMISSIONS",
2516 "do not set execute permissions for source files\n" . $permhere);
Rabin Vincent3bf9a002010-10-26 14:23:16 -07002517 }
2518 }
2519
Joe Perches20112472011-07-25 17:13:23 -07002520# Check the patch for a signoff:
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07002521 if ($line =~ /^\s*signed-off-by:/i) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07002522 $signoff++;
Joe Perches15662b32011-10-31 17:13:12 -07002523 $in_commit_log = 0;
Joe Perches20112472011-07-25 17:13:23 -07002524 }
2525
Joe Perchese0d975b2014-12-10 15:51:49 -08002526# Check if MAINTAINERS is being updated. If so, there's probably no need to
2527# emit the "does MAINTAINERS need updating?" message on file add/move/delete
2528 if ($line =~ /^\s*MAINTAINERS\s*\|/) {
2529 $reported_maintainer_file = 1;
2530 }
2531
Joe Perches20112472011-07-25 17:13:23 -07002532# Check signature styles
Joe Perches270c49a2012-01-10 15:09:50 -08002533 if (!$in_header_lines &&
Joe Perchesce0338df3c2012-07-30 14:41:18 -07002534 $line =~ /^(\s*)([a-z0-9_-]+by:|$signature_tags)(\s*)(.*)/i) {
Joe Perches20112472011-07-25 17:13:23 -07002535 my $space_before = $1;
2536 my $sign_off = $2;
2537 my $space_after = $3;
2538 my $email = $4;
2539 my $ucfirst_sign_off = ucfirst(lc($sign_off));
2540
Joe Perchesce0338df3c2012-07-30 14:41:18 -07002541 if ($sign_off !~ /$signature_tags/) {
2542 WARN("BAD_SIGN_OFF",
2543 "Non-standard signature: $sign_off\n" . $herecurr);
2544 }
Joe Perches20112472011-07-25 17:13:23 -07002545 if (defined $space_before && $space_before ne "") {
Joe Perches3705ce52013-07-03 15:05:31 -07002546 if (WARN("BAD_SIGN_OFF",
2547 "Do not use whitespace before $ucfirst_sign_off\n" . $herecurr) &&
2548 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07002549 $fixed[$fixlinenr] =
Joe Perches3705ce52013-07-03 15:05:31 -07002550 "$ucfirst_sign_off $email";
2551 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002552 }
Joe Perches20112472011-07-25 17:13:23 -07002553 if ($sign_off =~ /-by:$/i && $sign_off ne $ucfirst_sign_off) {
Joe Perches3705ce52013-07-03 15:05:31 -07002554 if (WARN("BAD_SIGN_OFF",
2555 "'$ucfirst_sign_off' is the preferred signature form\n" . $herecurr) &&
2556 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07002557 $fixed[$fixlinenr] =
Joe Perches3705ce52013-07-03 15:05:31 -07002558 "$ucfirst_sign_off $email";
2559 }
2560
Joe Perches20112472011-07-25 17:13:23 -07002561 }
2562 if (!defined $space_after || $space_after ne " ") {
Joe Perches3705ce52013-07-03 15:05:31 -07002563 if (WARN("BAD_SIGN_OFF",
2564 "Use a single space after $ucfirst_sign_off\n" . $herecurr) &&
2565 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07002566 $fixed[$fixlinenr] =
Joe Perches3705ce52013-07-03 15:05:31 -07002567 "$ucfirst_sign_off $email";
2568 }
Joe Perches20112472011-07-25 17:13:23 -07002569 }
2570
2571 my ($email_name, $email_address, $comment) = parse_email($email);
2572 my $suggested_email = format_email(($email_name, $email_address));
2573 if ($suggested_email eq "") {
Joe Perches000d1cc12011-07-25 17:13:25 -07002574 ERROR("BAD_SIGN_OFF",
2575 "Unrecognized email address: '$email'\n" . $herecurr);
Joe Perches20112472011-07-25 17:13:23 -07002576 } else {
2577 my $dequoted = $suggested_email;
2578 $dequoted =~ s/^"//;
2579 $dequoted =~ s/" </ </;
2580 # Don't force email to have quotes
2581 # Allow just an angle bracketed address
2582 if ("$dequoted$comment" ne $email &&
2583 "<$email_address>$comment" ne $email &&
2584 "$suggested_email$comment" ne $email) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002585 WARN("BAD_SIGN_OFF",
2586 "email address '$email' might be better as '$suggested_email$comment'\n" . $herecurr);
Joe Perches20112472011-07-25 17:13:23 -07002587 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002588 }
Joe Perches7e51f192013-09-11 14:23:57 -07002589
2590# Check for duplicate signatures
2591 my $sig_nospace = $line;
2592 $sig_nospace =~ s/\s//g;
2593 $sig_nospace = lc($sig_nospace);
2594 if (defined $signatures{$sig_nospace}) {
2595 WARN("BAD_SIGN_OFF",
2596 "Duplicate signature\n" . $herecurr);
2597 } else {
2598 $signatures{$sig_nospace} = 1;
2599 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002600 }
2601
Joe Perchesa2fe16b2015-02-13 14:39:02 -08002602# Check email subject for common tools that don't need to be mentioned
2603 if ($in_header_lines &&
2604 $line =~ /^Subject:.*\b(?:checkpatch|sparse|smatch)\b[^:]/i) {
2605 WARN("EMAIL_SUBJECT",
2606 "A patch subject line should describe the change not the tool that found it\n" . $herecurr);
2607 }
2608
Christopher Covington7ebd05e2014-04-03 14:49:31 -07002609# Check for unwanted Gerrit info
2610 if ($in_commit_log && $line =~ /^\s*change-id:/i) {
2611 ERROR("GERRIT_CHANGE_ID",
2612 "Remove Gerrit Change-Id's before submitting upstream.\n" . $herecurr);
2613 }
2614
Joe Perches369c8dd2015-11-06 16:31:34 -08002615# Check if the commit log is in a possible stack dump
2616 if ($in_commit_log && !$commit_log_possible_stack_dump &&
2617 ($line =~ /^\s*(?:WARNING:|BUG:)/ ||
2618 $line =~ /^\s*\[\s*\d+\.\d{6,6}\s*\]/ ||
2619 # timestamp
2620 $line =~ /^\s*\[\<[0-9a-fA-F]{8,}\>\]/)) {
2621 # stack dump address
2622 $commit_log_possible_stack_dump = 1;
2623 }
2624
Joe Perches2a076f42015-04-16 12:44:28 -07002625# Check for line lengths > 75 in commit log, warn once
2626 if ($in_commit_log && !$commit_log_long_line &&
Joe Perches369c8dd2015-11-06 16:31:34 -08002627 length($line) > 75 &&
2628 !($line =~ /^\s*[a-zA-Z0-9_\/\.]+\s+\|\s+\d+/ ||
2629 # file delta changes
2630 $line =~ /^\s*(?:[\w\.\-]+\/)++[\w\.\-]+:/ ||
2631 # filename then :
2632 $line =~ /^\s*(?:Fixes:|Link:)/i ||
2633 # A Fixes: or Link: line
2634 $commit_log_possible_stack_dump)) {
Joe Perches2a076f42015-04-16 12:44:28 -07002635 WARN("COMMIT_LOG_LONG_LINE",
2636 "Possible unwrapped commit description (prefer a maximum 75 chars per line)\n" . $herecurr);
2637 $commit_log_long_line = 1;
2638 }
2639
Joe Perchesbf4daf12015-09-09 15:37:50 -07002640# Reset possible stack dump if a blank line is found
Joe Perches369c8dd2015-11-06 16:31:34 -08002641 if ($in_commit_log && $commit_log_possible_stack_dump &&
2642 $line =~ /^\s*$/) {
2643 $commit_log_possible_stack_dump = 0;
2644 }
Joe Perchesbf4daf12015-09-09 15:37:50 -07002645
Joe Perches0d7835f2015-02-13 14:38:35 -08002646# Check for git id commit length and improperly formed commit descriptions
Joe Perches369c8dd2015-11-06 16:31:34 -08002647 if ($in_commit_log && !$commit_log_possible_stack_dump &&
Joe Perchesaab38f52016-08-02 14:04:36 -07002648 $line !~ /^\s*(?:Link|Patchwork|http|https|BugLink):/i &&
Wei Wange882dbf2017-05-08 15:55:54 -07002649 $line !~ /^This reverts commit [0-9a-f]{7,40}/ &&
Joe Perchesfe043ea2015-09-09 15:37:25 -07002650 ($line =~ /\bcommit\s+[0-9a-f]{5,}\b/i ||
Joe Perchesaab38f52016-08-02 14:04:36 -07002651 ($line =~ /(?:\s|^)[0-9a-f]{12,40}(?:[\s"'\(\[]|$)/i &&
Joe Perches369c8dd2015-11-06 16:31:34 -08002652 $line !~ /[\<\[][0-9a-f]{12,40}[\>\]]/i &&
2653 $line !~ /\bfixes:\s*[0-9a-f]{12,40}/i))) {
Joe Perchesfe043ea2015-09-09 15:37:25 -07002654 my $init_char = "c";
2655 my $orig_commit = "";
Joe Perches0d7835f2015-02-13 14:38:35 -08002656 my $short = 1;
2657 my $long = 0;
2658 my $case = 1;
2659 my $space = 1;
2660 my $hasdesc = 0;
Joe Perches19c146a2015-02-13 14:39:00 -08002661 my $hasparens = 0;
Joe Perches0d7835f2015-02-13 14:38:35 -08002662 my $id = '0123456789ab';
2663 my $orig_desc = "commit description";
2664 my $description = "";
2665
Joe Perchesfe043ea2015-09-09 15:37:25 -07002666 if ($line =~ /\b(c)ommit\s+([0-9a-f]{5,})\b/i) {
2667 $init_char = $1;
2668 $orig_commit = lc($2);
2669 } elsif ($line =~ /\b([0-9a-f]{12,40})\b/i) {
2670 $orig_commit = lc($1);
2671 }
2672
Joe Perches0d7835f2015-02-13 14:38:35 -08002673 $short = 0 if ($line =~ /\bcommit\s+[0-9a-f]{12,40}/i);
2674 $long = 1 if ($line =~ /\bcommit\s+[0-9a-f]{41,}/i);
2675 $space = 0 if ($line =~ /\bcommit [0-9a-f]/i);
2676 $case = 0 if ($line =~ /\b[Cc]ommit\s+[0-9a-f]{5,40}[^A-F]/);
2677 if ($line =~ /\bcommit\s+[0-9a-f]{5,}\s+\("([^"]+)"\)/i) {
2678 $orig_desc = $1;
Joe Perches19c146a2015-02-13 14:39:00 -08002679 $hasparens = 1;
Joe Perches0d7835f2015-02-13 14:38:35 -08002680 } elsif ($line =~ /\bcommit\s+[0-9a-f]{5,}\s*$/i &&
2681 defined $rawlines[$linenr] &&
2682 $rawlines[$linenr] =~ /^\s*\("([^"]+)"\)/) {
2683 $orig_desc = $1;
Joe Perches19c146a2015-02-13 14:39:00 -08002684 $hasparens = 1;
Joe Perchesb671fde2015-02-13 14:38:41 -08002685 } elsif ($line =~ /\bcommit\s+[0-9a-f]{5,}\s+\("[^"]+$/i &&
2686 defined $rawlines[$linenr] &&
2687 $rawlines[$linenr] =~ /^\s*[^"]+"\)/) {
2688 $line =~ /\bcommit\s+[0-9a-f]{5,}\s+\("([^"]+)$/i;
2689 $orig_desc = $1;
2690 $rawlines[$linenr] =~ /^\s*([^"]+)"\)/;
2691 $orig_desc .= " " . $1;
Joe Perches19c146a2015-02-13 14:39:00 -08002692 $hasparens = 1;
Joe Perches0d7835f2015-02-13 14:38:35 -08002693 }
2694
2695 ($id, $description) = git_commit_info($orig_commit,
2696 $id, $orig_desc);
2697
Heinrich Schuchardt948b1332017-07-10 15:52:16 -07002698 if (defined($id) &&
2699 ($short || $long || $space || $case || ($orig_desc ne $description) || !$hasparens)) {
Joe Perches0d7835f2015-02-13 14:38:35 -08002700 ERROR("GIT_COMMIT_ID",
2701 "Please use git commit description style 'commit <12+ chars of sha1> (\"<title line>\")' - ie: '${init_char}ommit $id (\"$description\")'\n" . $herecurr);
2702 }
Joe Perchesd311cd42014-08-06 16:10:57 -07002703 }
2704
Joe Perches13f19372014-08-06 16:10:59 -07002705# Check for added, moved or deleted files
2706 if (!$reported_maintainer_file && !$in_commit_log &&
2707 ($line =~ /^(?:new|deleted) file mode\s*\d+\s*$/ ||
2708 $line =~ /^rename (?:from|to) [\w\/\.\-]+\s*$/ ||
2709 ($line =~ /\{\s*([\w\/\.\-]*)\s*\=\>\s*([\w\/\.\-]*)\s*\}/ &&
2710 (defined($1) || defined($2))))) {
Andrew Jefferya82603a2016-12-12 16:46:37 -08002711 $is_patch = 1;
Joe Perches13f19372014-08-06 16:10:59 -07002712 $reported_maintainer_file = 1;
2713 WARN("FILE_PATH_CHANGES",
2714 "added, moved or deleted file(s), does MAINTAINERS need updating?\n" . $herecurr);
2715 }
2716
Andy Whitcroft00df3442007-06-08 13:47:06 -07002717# Check for wrappage within a valid hunk of the file
Andy Whitcroft8905a672007-11-28 16:21:06 -08002718 if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) {
Joe Perches000d1cc12011-07-25 17:13:25 -07002719 ERROR("CORRUPTED_PATCH",
2720 "patch seems to be corrupt (line wrapped?)\n" .
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07002721 $herecurr) if (!$emitted_corrupt++);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07002722 }
2723
2724# UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
2725 if (($realfile =~ /^$/ || $line =~ /^\+/) &&
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07002726 $rawline !~ m/^$UTF8*$/) {
2727 my ($utf8_prefix) = ($rawline =~ /^($UTF8*)/);
2728
2729 my $blank = copy_spacing($rawline);
2730 my $ptr = substr($blank, 0, length($utf8_prefix)) . "^";
2731 my $hereptr = "$hereline$ptr\n";
2732
Joe Perches34d99212011-07-25 17:13:26 -07002733 CHK("INVALID_UTF8",
2734 "Invalid UTF-8, patch and commit message should be encoded in UTF-8\n" . $hereptr);
Andy Whitcroft00df3442007-06-08 13:47:06 -07002735 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002736
Joe Perches15662b32011-10-31 17:13:12 -07002737# Check if it's the start of a commit log
2738# (not a header line and we haven't seen the patch filename)
2739 if ($in_header_lines && $realfile =~ /^$/ &&
Joe Percheseb3a58d2017-05-08 15:55:42 -07002740 !($rawline =~ /^\s+(?:\S|$)/ ||
2741 $rawline =~ /^(?:commit\b|from\b|[\w-]+:)/i)) {
Joe Perches15662b32011-10-31 17:13:12 -07002742 $in_header_lines = 0;
2743 $in_commit_log = 1;
Allen Hubbeed43c4e2016-08-02 14:04:45 -07002744 $has_commit_log = 1;
Joe Perches15662b32011-10-31 17:13:12 -07002745 }
2746
Pasi Savanainenfa64205d2012-10-04 17:13:29 -07002747# Check if there is UTF-8 in a commit log when a mail header has explicitly
2748# declined it, i.e defined some charset where it is missing.
2749 if ($in_header_lines &&
2750 $rawline =~ /^Content-Type:.+charset="(.+)".*$/ &&
2751 $1 !~ /utf-8/i) {
2752 $non_utf8_charset = 1;
2753 }
2754
2755 if ($in_commit_log && $non_utf8_charset && $realfile =~ /^$/ &&
Joe Perches15662b32011-10-31 17:13:12 -07002756 $rawline =~ /$NON_ASCII_UTF8/) {
Pasi Savanainenfa64205d2012-10-04 17:13:29 -07002757 WARN("UTF8_BEFORE_PATCH",
Joe Perches15662b32011-10-31 17:13:12 -07002758 "8-bit UTF-8 used in possible commit log\n" . $herecurr);
2759 }
2760
Joe Perchesd6430f72016-12-12 16:46:28 -08002761# Check for absolute kernel paths in commit message
2762 if ($tree && $in_commit_log) {
2763 while ($line =~ m{(?:^|\s)(/\S*)}g) {
2764 my $file = $1;
2765
2766 if ($file =~ m{^(.*?)(?::\d+)+:?$} &&
2767 check_absolute_file($1, $herecurr)) {
2768 #
2769 } else {
2770 check_absolute_file($file, $herecurr);
2771 }
2772 }
2773 }
2774
Kees Cook66b47b42014-10-13 15:51:57 -07002775# Check for various typo / spelling mistakes
Joe Perches66d7a382015-04-16 12:44:08 -07002776 if (defined($misspellings) &&
2777 ($in_commit_log || $line =~ /^(?:\+|Subject:)/i)) {
Joe Perchesebfd7d62015-04-16 12:44:14 -07002778 while ($rawline =~ /(?:^|[^a-z@])($misspellings)(?:\b|$|[^a-z@])/gi) {
Kees Cook66b47b42014-10-13 15:51:57 -07002779 my $typo = $1;
2780 my $typo_fix = $spelling_fix{lc($typo)};
2781 $typo_fix = ucfirst($typo_fix) if ($typo =~ /^[A-Z]/);
2782 $typo_fix = uc($typo_fix) if ($typo =~ /^[A-Z]+$/);
Jean Delvare0675a8f2017-09-08 16:16:07 -07002783 my $msg_level = \&WARN;
2784 $msg_level = \&CHK if ($file);
2785 if (&{$msg_level}("TYPO_SPELLING",
2786 "'$typo' may be misspelled - perhaps '$typo_fix'?\n" . $herecurr) &&
Kees Cook66b47b42014-10-13 15:51:57 -07002787 $fix) {
2788 $fixed[$fixlinenr] =~ s/(^|[^A-Za-z@])($typo)($|[^A-Za-z@])/$1$typo_fix$3/;
2789 }
2790 }
2791 }
2792
Andy Whitcroft306708542008-10-15 22:02:28 -07002793# ignore non-hunk lines and lines being removed
2794 next if (!$hunk_line || $line =~ /^-/);
Andy Whitcroft00df3442007-06-08 13:47:06 -07002795
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002796#trailing whitespace
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07002797 if ($line =~ /^\+.*\015/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002798 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Joe Perchesd5e616f2013-09-11 14:23:54 -07002799 if (ERROR("DOS_LINE_ENDINGS",
2800 "DOS line endings\n" . $herevet) &&
2801 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07002802 $fixed[$fixlinenr] =~ s/[\s\015]+$//;
Joe Perchesd5e616f2013-09-11 14:23:54 -07002803 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08002804 } elsif ($rawline =~ /^\+.*\S\s+$/ || $rawline =~ /^\+\s+$/) {
2805 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Joe Perches3705ce52013-07-03 15:05:31 -07002806 if (ERROR("TRAILING_WHITESPACE",
2807 "trailing whitespace\n" . $herevet) &&
2808 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07002809 $fixed[$fixlinenr] =~ s/\s+$//;
Joe Perches3705ce52013-07-03 15:05:31 -07002810 }
2811
Andy Whitcroftd2c0a232010-10-26 14:23:12 -07002812 $rpt_cleaners = 1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002813 }
Andy Whitcroft5368df22008-10-15 22:02:27 -07002814
Josh Triplett4783f892013-11-12 15:10:12 -08002815# Check for FSF mailing addresses.
Alexander Duyck109d8cb2014-01-23 15:54:50 -08002816 if ($rawline =~ /\bwrite to the Free/i ||
Matthew Wilcox1bde5612017-02-24 15:01:38 -08002817 $rawline =~ /\b675\s+Mass\s+Ave/i ||
Joe Perches3e2232f2014-01-23 15:54:48 -08002818 $rawline =~ /\b59\s+Temple\s+Pl/i ||
2819 $rawline =~ /\b51\s+Franklin\s+St/i) {
Josh Triplett4783f892013-11-12 15:10:12 -08002820 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Jean Delvare0675a8f2017-09-08 16:16:07 -07002821 my $msg_level = \&ERROR;
2822 $msg_level = \&CHK if ($file);
2823 &{$msg_level}("FSF_MAILING_ADDRESS",
2824 "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 -08002825 }
2826
Andi Kleen33549572010-05-24 14:33:29 -07002827# check for Kconfig help text having a real description
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07002828# Only applies when adding the entry originally, after that we do not have
2829# sufficient context to determine whether it is indeed long enough.
Andi Kleen33549572010-05-24 14:33:29 -07002830 if ($realfile =~ /Kconfig/ &&
Ulf Magnusson678ae162018-02-16 21:22:54 +01002831 # 'choice' is usually the last thing on the line (though
2832 # Kconfig supports named choices), so use a word boundary
2833 # (\b) rather than a whitespace character (\s)
2834 $line =~ /^\+\s*(?:config|menuconfig|choice)\b/) {
Andi Kleen33549572010-05-24 14:33:29 -07002835 my $length = 0;
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07002836 my $cnt = $realcnt;
2837 my $ln = $linenr + 1;
2838 my $f;
Andy Whitcrofta1385802012-01-10 15:10:03 -08002839 my $is_start = 0;
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07002840 my $is_end = 0;
Andy Whitcrofta1385802012-01-10 15:10:03 -08002841 for (; $cnt > 0 && defined $lines[$ln - 1]; $ln++) {
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07002842 $f = $lines[$ln - 1];
2843 $cnt-- if ($lines[$ln - 1] !~ /^-/);
2844 $is_end = $lines[$ln - 1] =~ /^\+/;
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07002845
2846 next if ($f =~ /^-/);
Joe Perches8d73e0e2014-08-06 16:10:46 -07002847 last if (!$file && $f =~ /^\@\@/);
Andy Whitcrofta1385802012-01-10 15:10:03 -08002848
Ulf Magnusson86adf1a2018-02-16 21:22:53 +01002849 if ($lines[$ln - 1] =~ /^\+\s*(?:bool|tristate|prompt)\s*["']/) {
Andy Whitcrofta1385802012-01-10 15:10:03 -08002850 $is_start = 1;
Ulf Magnusson84af7a62018-02-16 21:22:55 +01002851 } elsif ($lines[$ln - 1] =~ /^\+\s*(?:help|---help---)\s*$/) {
2852 if ($lines[$ln - 1] =~ "---help---") {
2853 WARN("CONFIG_DESCRIPTION",
2854 "prefer 'help' over '---help---' for new help texts\n" . $herecurr);
2855 }
Andy Whitcrofta1385802012-01-10 15:10:03 -08002856 $length = -1;
2857 }
2858
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07002859 $f =~ s/^.//;
Andi Kleen33549572010-05-24 14:33:29 -07002860 $f =~ s/#.*//;
2861 $f =~ s/^\s+//;
2862 next if ($f =~ /^$/);
Ulf Magnusson678ae162018-02-16 21:22:54 +01002863
2864 # This only checks context lines in the patch
2865 # and so hopefully shouldn't trigger false
2866 # positives, even though some of these are
2867 # common words in help texts
2868 if ($f =~ /^\s*(?:config|menuconfig|choice|endchoice|
2869 if|endif|menu|endmenu|source)\b/x) {
Andy Whitcroft9fe287d72010-10-26 14:23:15 -07002870 $is_end = 1;
2871 last;
2872 }
Andi Kleen33549572010-05-24 14:33:29 -07002873 $length++;
2874 }
Vadim Bendebury56193272014-10-13 15:51:48 -07002875 if ($is_start && $is_end && $length < $min_conf_desc_length) {
2876 WARN("CONFIG_DESCRIPTION",
2877 "please write a paragraph that describes the config symbol fully\n" . $herecurr);
2878 }
Andy Whitcrofta1385802012-01-10 15:10:03 -08002879 #print "is_start<$is_start> is_end<$is_end> length<$length>\n";
Andi Kleen33549572010-05-24 14:33:29 -07002880 }
2881
Joe Perches628f91a2017-07-10 15:52:07 -07002882# check for MAINTAINERS entries that don't have the right form
2883 if ($realfile =~ /^MAINTAINERS$/ &&
2884 $rawline =~ /^\+[A-Z]:/ &&
2885 $rawline !~ /^\+[A-Z]:\t\S/) {
2886 if (WARN("MAINTAINERS_STYLE",
2887 "MAINTAINERS entries use one tab after TYPE:\n" . $herecurr) &&
2888 $fix) {
2889 $fixed[$fixlinenr] =~ s/^(\+[A-Z]):\s*/$1:\t/;
2890 }
2891 }
2892
Christoph Jaeger327953e2015-02-13 14:38:29 -08002893# discourage the use of boolean for type definition attributes of Kconfig options
2894 if ($realfile =~ /Kconfig/ &&
2895 $line =~ /^\+\s*\bboolean\b/) {
2896 WARN("CONFIG_TYPE_BOOLEAN",
2897 "Use of boolean is deprecated, please use bool instead.\n" . $herecurr);
2898 }
2899
Arnaud Lacombec68e5872011-08-15 01:07:14 -04002900 if (($realfile =~ /Makefile.*/ || $realfile =~ /Kbuild.*/) &&
2901 ($line =~ /\+(EXTRA_[A-Z]+FLAGS).*/)) {
2902 my $flag = $1;
2903 my $replacement = {
2904 'EXTRA_AFLAGS' => 'asflags-y',
2905 'EXTRA_CFLAGS' => 'ccflags-y',
2906 'EXTRA_CPPFLAGS' => 'cppflags-y',
2907 'EXTRA_LDFLAGS' => 'ldflags-y',
2908 };
2909
2910 WARN("DEPRECATED_VARIABLE",
2911 "Use of $flag is deprecated, please use \`$replacement->{$flag} instead.\n" . $herecurr) if ($replacement->{$flag});
2912 }
2913
Rob Herringbff5da42014-01-23 15:54:51 -08002914# check for DT compatible documentation
Florian Vaussard7dd05b32014-04-03 14:49:26 -07002915 if (defined $root &&
2916 (($realfile =~ /\.dtsi?$/ && $line =~ /^\+\s*compatible\s*=\s*\"/) ||
2917 ($realfile =~ /\.[ch]$/ && $line =~ /^\+.*\.compatible\s*=\s*\"/))) {
2918
Rob Herringbff5da42014-01-23 15:54:51 -08002919 my @compats = $rawline =~ /\"([a-zA-Z0-9\-\,\.\+_]+)\"/g;
2920
Florian Vaussardcc933192014-04-03 14:49:27 -07002921 my $dt_path = $root . "/Documentation/devicetree/bindings/";
2922 my $vp_file = $dt_path . "vendor-prefixes.txt";
2923
Rob Herringbff5da42014-01-23 15:54:51 -08002924 foreach my $compat (@compats) {
2925 my $compat2 = $compat;
Rob Herring185d5662014-06-04 16:12:03 -07002926 $compat2 =~ s/\,[a-zA-Z0-9]*\-/\,<\.\*>\-/;
2927 my $compat3 = $compat;
2928 $compat3 =~ s/\,([a-z]*)[0-9]*\-/\,$1<\.\*>\-/;
2929 `grep -Erq "$compat|$compat2|$compat3" $dt_path`;
Rob Herringbff5da42014-01-23 15:54:51 -08002930 if ( $? >> 8 ) {
2931 WARN("UNDOCUMENTED_DT_STRING",
2932 "DT compatible string \"$compat\" appears un-documented -- check $dt_path\n" . $herecurr);
2933 }
2934
Florian Vaussard4fbf32a2014-04-03 14:49:25 -07002935 next if $compat !~ /^([a-zA-Z0-9\-]+)\,/;
2936 my $vendor = $1;
Florian Vaussardcc933192014-04-03 14:49:27 -07002937 `grep -Eq "^$vendor\\b" $vp_file`;
Rob Herringbff5da42014-01-23 15:54:51 -08002938 if ( $? >> 8 ) {
2939 WARN("UNDOCUMENTED_DT_STRING",
Florian Vaussardcc933192014-04-03 14:49:27 -07002940 "DT compatible string vendor \"$vendor\" appears un-documented -- check $vp_file\n" . $herecurr);
Rob Herringbff5da42014-01-23 15:54:51 -08002941 }
2942 }
2943 }
2944
Rob Herring9f3a8992018-04-10 16:33:13 -07002945# check for using SPDX license tag at beginning of files
2946 if ($realline == $checklicenseline) {
2947 if ($rawline =~ /^[ \+]\s*\#\!\s*\//) {
2948 $checklicenseline = 2;
2949 } elsif ($rawline =~ /^\+/) {
2950 my $comment = "";
2951 if ($realfile =~ /\.(h|s|S)$/) {
2952 $comment = '/*';
2953 } elsif ($realfile =~ /\.(c|dts|dtsi)$/) {
2954 $comment = '//';
2955 } elsif (($checklicenseline == 2) || $realfile =~ /\.(sh|pl|py|awk|tc)$/) {
2956 $comment = '#';
2957 } elsif ($realfile =~ /\.rst$/) {
2958 $comment = '..';
2959 }
2960
2961 if ($comment !~ /^$/ &&
2962 $rawline !~ /^\+\Q$comment\E SPDX-License-Identifier: /) {
2963 WARN("SPDX_LICENSE_TAG",
2964 "Missing or malformed SPDX-License-Identifier tag in line $checklicenseline\n" . $herecurr);
2965 }
2966 }
2967 }
2968
Andy Whitcroft5368df22008-10-15 22:02:27 -07002969# check we are in a valid source file if not then ignore this hunk
Joe Perchesd6430f72016-12-12 16:46:28 -08002970 next if ($realfile !~ /\.(h|c|s|S|sh|dtsi|dts)$/);
Andy Whitcroft5368df22008-10-15 22:02:27 -07002971
Joe Perches47e0c882015-06-25 15:02:57 -07002972# line length limit (with some exclusions)
2973#
2974# There are a few types of lines that may extend beyond $max_line_length:
2975# logging functions like pr_info that end in a string
2976# lines with a single string
2977# #defines that are a single string
Andreas Brauchli2e4bbbc2018-02-06 15:38:45 -08002978# lines with an RFC3986 like URL
Joe Perches47e0c882015-06-25 15:02:57 -07002979#
2980# There are 3 different line length message types:
Jean Delvareab1ecab2017-09-08 16:16:04 -07002981# LONG_LINE_COMMENT a comment starts before but extends beyond $max_line_length
Joe Perches47e0c882015-06-25 15:02:57 -07002982# LONG_LINE_STRING a string starts before but extends beyond $max_line_length
2983# LONG_LINE all other lines longer than $max_line_length
2984#
2985# if LONG_LINE is ignored, the other 2 types are also ignored
2986#
2987
Joe Perchesb4749e92015-07-17 16:24:01 -07002988 if ($line =~ /^\+/ && $length > $max_line_length) {
Joe Perches47e0c882015-06-25 15:02:57 -07002989 my $msg_type = "LONG_LINE";
2990
2991 # Check the allowed long line types first
2992
2993 # logging functions that end in a string that starts
2994 # before $max_line_length
2995 if ($line =~ /^\+\s*$logFunctions\s*\(\s*(?:(?:KERN_\S+\s*|[^"]*))?($String\s*(?:|,|\)\s*;)\s*)$/ &&
2996 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
2997 $msg_type = "";
2998
2999 # lines with only strings (w/ possible termination)
3000 # #defines with only strings
3001 } elsif ($line =~ /^\+\s*$String\s*(?:\s*|,|\)\s*;)\s*$/ ||
3002 $line =~ /^\+\s*#\s*define\s+\w+\s+$String$/) {
3003 $msg_type = "";
3004
Joe Perchescc147502017-11-17 15:28:44 -08003005 # More special cases
3006 } elsif ($line =~ /^\+.*\bEFI_GUID\s*\(/ ||
3007 $line =~ /^\+\s*(?:\w+)?\s*DEFINE_PER_CPU/) {
Joe Perchesd560a5f2016-08-02 14:04:31 -07003008 $msg_type = "";
3009
Andreas Brauchli2e4bbbc2018-02-06 15:38:45 -08003010 # URL ($rawline is used in case the URL is in a comment)
3011 } elsif ($rawline =~ /^\+.*\b[a-z][\w\.\+\-]*:\/\/\S+/i) {
3012 $msg_type = "";
3013
Joe Perches47e0c882015-06-25 15:02:57 -07003014 # Otherwise set the alternate message types
3015
3016 # a comment starts before $max_line_length
3017 } elsif ($line =~ /($;[\s$;]*)$/ &&
3018 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3019 $msg_type = "LONG_LINE_COMMENT"
3020
3021 # a quoted string starts before $max_line_length
3022 } elsif ($sline =~ /\s*($String(?:\s*(?:\\|,\s*|\)\s*;\s*))?)$/ &&
3023 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3024 $msg_type = "LONG_LINE_STRING"
3025 }
3026
3027 if ($msg_type ne "" &&
3028 (show_type("LONG_LINE") || show_type($msg_type))) {
3029 WARN($msg_type,
3030 "line over $max_line_length characters\n" . $herecurr);
3031 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003032 }
3033
Andy Whitcroft8905a672007-11-28 16:21:06 -08003034# check for adding lines without a newline.
3035 if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003036 WARN("MISSING_EOF_NEWLINE",
3037 "adding a line without newline at end of file\n" . $herecurr);
Andy Whitcroft8905a672007-11-28 16:21:06 -08003038 }
3039
Andy Whitcroftb9ea10d2008-10-15 22:02:24 -07003040# check we are in a valid source file C or perl if not then ignore this hunk
Geert Uytterhoevende4c9242014-10-13 15:51:46 -07003041 next if ($realfile !~ /\.(h|c|pl|dtsi|dts)$/);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003042
3043# at the beginning of a line any tabs must come first and anything
3044# more than 8 must use tabs.
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08003045 if ($rawline =~ /^\+\s* \t\s*\S/ ||
3046 $rawline =~ /^\+\s* \s*/) {
3047 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Andy Whitcroftd2c0a232010-10-26 14:23:12 -07003048 $rpt_cleaners = 1;
Joe Perches3705ce52013-07-03 15:05:31 -07003049 if (ERROR("CODE_INDENT",
3050 "code indent should use tabs where possible\n" . $herevet) &&
3051 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07003052 $fixed[$fixlinenr] =~ s/^\+([ \t]+)/"\+" . tabify($1)/e;
Joe Perches3705ce52013-07-03 15:05:31 -07003053 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003054 }
3055
Alberto Panizzo08e44362010-03-05 13:43:54 -08003056# check for space before tabs.
3057 if ($rawline =~ /^\+/ && $rawline =~ / \t/) {
3058 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Joe Perches3705ce52013-07-03 15:05:31 -07003059 if (WARN("SPACE_BEFORE_TAB",
3060 "please, no space before tabs\n" . $herevet) &&
3061 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07003062 while ($fixed[$fixlinenr] =~
Joe Perchesd2207cc2014-10-13 15:51:53 -07003063 s/(^\+.*) {8,8}\t/$1\t\t/) {}
Joe Perches194f66f2014-08-06 16:11:03 -07003064 while ($fixed[$fixlinenr] =~
Joe Perchesc76f4cb2014-01-23 15:54:46 -08003065 s/(^\+.*) +\t/$1\t/) {}
Joe Perches3705ce52013-07-03 15:05:31 -07003066 }
Alberto Panizzo08e44362010-03-05 13:43:54 -08003067 }
3068
Joe Perches6a487212018-04-10 16:34:04 -07003069# check for assignments on the start of a line
3070 if ($sline =~ /^\+\s+($Assignment)[^=]/) {
3071 CHK("ASSIGNMENT_CONTINUATIONS",
3072 "Assignment operator '$1' should be on the previous line\n" . $hereprev);
3073 }
3074
Joe Perchesd1fe9c02012-03-23 15:02:16 -07003075# check for && or || at the start of a line
3076 if ($rawline =~ /^\+\s*(&&|\|\|)/) {
3077 CHK("LOGICAL_CONTINUATIONS",
3078 "Logical continuations should be on the previous line\n" . $hereprev);
3079 }
3080
Joe Perchesa91e8992016-05-20 17:04:05 -07003081# check indentation starts on a tab stop
3082 if ($^V && $^V ge 5.10.0 &&
Joe Perchesbd491112018-02-06 15:39:06 -08003083 $sline =~ /^\+\t+( +)(?:$c90_Keywords\b|\{\s*$|\}\s*(?:else\b|while\b|\s*$)|$Declare\s*$Ident\s*[;=])/) {
Joe Perchesa91e8992016-05-20 17:04:05 -07003084 my $indent = length($1);
3085 if ($indent % 8) {
3086 if (WARN("TABSTOP",
3087 "Statements should start on a tabstop\n" . $herecurr) &&
3088 $fix) {
3089 $fixed[$fixlinenr] =~ s@(^\+\t+) +@$1 . "\t" x ($indent/8)@e;
3090 }
3091 }
3092 }
3093
Joe Perchesd1fe9c02012-03-23 15:02:16 -07003094# check multi-line statement indentation matches previous line
3095 if ($^V && $^V ge 5.10.0 &&
Joe Perchesfd71f632017-07-10 15:52:30 -07003096 $prevline =~ /^\+([ \t]*)((?:$c90_Keywords(?:\s+if)\s*)|(?:$Declare\s*)?(?:$Ident|\(\s*\*\s*$Ident\s*\))\s*|(?:\*\s*)*$Lval\s*=\s*$Ident\s*)\(.*(\&\&|\|\||,)\s*$/) {
Joe Perchesd1fe9c02012-03-23 15:02:16 -07003097 $prevline =~ /^\+(\t*)(.*)$/;
3098 my $oldindent = $1;
3099 my $rest = $2;
3100
3101 my $pos = pos_last_openparen($rest);
3102 if ($pos >= 0) {
Joe Perchesb34a26f2012-07-30 14:41:16 -07003103 $line =~ /^(\+| )([ \t]*)/;
3104 my $newindent = $2;
Joe Perchesd1fe9c02012-03-23 15:02:16 -07003105
3106 my $goodtabindent = $oldindent .
3107 "\t" x ($pos / 8) .
3108 " " x ($pos % 8);
3109 my $goodspaceindent = $oldindent . " " x $pos;
3110
3111 if ($newindent ne $goodtabindent &&
3112 $newindent ne $goodspaceindent) {
Joe Perches3705ce52013-07-03 15:05:31 -07003113
3114 if (CHK("PARENTHESIS_ALIGNMENT",
3115 "Alignment should match open parenthesis\n" . $hereprev) &&
3116 $fix && $line =~ /^\+/) {
Joe Perches194f66f2014-08-06 16:11:03 -07003117 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07003118 s/^\+[ \t]*/\+$goodtabindent/;
3119 }
Joe Perchesd1fe9c02012-03-23 15:02:16 -07003120 }
3121 }
3122 }
3123
Joe Perches6ab3a972015-04-16 12:44:05 -07003124# check for space after cast like "(int) foo" or "(struct foo) bar"
3125# avoid checking a few false positives:
3126# "sizeof(<type>)" or "__alignof__(<type>)"
3127# function pointer declarations like "(*foo)(int) = bar;"
3128# structure definitions like "(struct foo) { 0 };"
3129# multiline macros that define functions
3130# known attributes or the __attribute__ keyword
3131 if ($line =~ /^\+(.*)\(\s*$Type\s*\)([ \t]++)((?![={]|\\$|$Attribute|__attribute__))/ &&
3132 (!defined($1) || $1 !~ /\b(?:sizeof|__alignof__)\s*$/)) {
Joe Perches3705ce52013-07-03 15:05:31 -07003133 if (CHK("SPACING",
Joe Perchesf27c95d2014-08-06 16:10:52 -07003134 "No space is necessary after a cast\n" . $herecurr) &&
Joe Perches3705ce52013-07-03 15:05:31 -07003135 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07003136 $fixed[$fixlinenr] =~
Joe Perchesf27c95d2014-08-06 16:10:52 -07003137 s/(\(\s*$Type\s*\))[ \t]+/$1/;
Joe Perches3705ce52013-07-03 15:05:31 -07003138 }
Joe Perchesaad4f612012-03-23 15:02:19 -07003139 }
3140
Joe Perches86406b12015-09-09 15:37:41 -07003141# Block comment styles
3142# Networking with an initial /*
Joe Perches05880602012-10-04 17:13:35 -07003143 if ($realfile =~ m@^(drivers/net/|net/)@ &&
Joe Perchesfdb4bcd2013-07-03 15:05:23 -07003144 $prevrawline =~ /^\+[ \t]*\/\*[ \t]*$/ &&
Joe Perches85ad9782014-04-03 14:49:20 -07003145 $rawline =~ /^\+[ \t]*\*/ &&
3146 $realline > 2) {
Joe Perches05880602012-10-04 17:13:35 -07003147 WARN("NETWORKING_BLOCK_COMMENT_STYLE",
3148 "networking block comments don't use an empty /* line, use /* Comment...\n" . $hereprev);
3149 }
3150
Joe Perches86406b12015-09-09 15:37:41 -07003151# Block comments use * on subsequent lines
3152 if ($prevline =~ /$;[ \t]*$/ && #ends in comment
3153 $prevrawline =~ /^\+.*?\/\*/ && #starting /*
Joe Perchesa605e322013-07-03 15:05:24 -07003154 $prevrawline !~ /\*\/[ \t]*$/ && #no trailing */
Joe Perches61135e92013-09-11 14:23:59 -07003155 $rawline =~ /^\+/ && #line is new
Joe Perchesa605e322013-07-03 15:05:24 -07003156 $rawline !~ /^\+[ \t]*\*/) { #no leading *
Joe Perches86406b12015-09-09 15:37:41 -07003157 WARN("BLOCK_COMMENT_STYLE",
3158 "Block comments use * on subsequent lines\n" . $hereprev);
Joe Perchesa605e322013-07-03 15:05:24 -07003159 }
3160
Joe Perches86406b12015-09-09 15:37:41 -07003161# Block comments use */ on trailing lines
3162 if ($rawline !~ m@^\+[ \t]*\*/[ \t]*$@ && #trailing */
Joe Perchesc24f9f12012-11-08 15:53:29 -08003163 $rawline !~ m@^\+.*/\*.*\*/[ \t]*$@ && #inline /*...*/
3164 $rawline !~ m@^\+.*\*{2,}/[ \t]*$@ && #trailing **/
3165 $rawline =~ m@^\+[ \t]*.+\*\/[ \t]*$@) { #non blank */
Joe Perches86406b12015-09-09 15:37:41 -07003166 WARN("BLOCK_COMMENT_STYLE",
3167 "Block comments use a trailing */ on a separate line\n" . $herecurr);
Joe Perches05880602012-10-04 17:13:35 -07003168 }
3169
Joe Perches08eb9b82016-10-11 13:51:50 -07003170# Block comment * alignment
3171 if ($prevline =~ /$;[ \t]*$/ && #ends in comment
Joe Perchesaf207522016-10-11 13:52:05 -07003172 $line =~ /^\+[ \t]*$;/ && #leading comment
3173 $rawline =~ /^\+[ \t]*\*/ && #leading *
3174 (($prevrawline =~ /^\+.*?\/\*/ && #leading /*
Joe Perches08eb9b82016-10-11 13:51:50 -07003175 $prevrawline !~ /\*\/[ \t]*$/) || #no trailing */
Joe Perchesaf207522016-10-11 13:52:05 -07003176 $prevrawline =~ /^\+[ \t]*\*/)) { #leading *
3177 my $oldindent;
Joe Perches08eb9b82016-10-11 13:51:50 -07003178 $prevrawline =~ m@^\+([ \t]*/?)\*@;
Joe Perchesaf207522016-10-11 13:52:05 -07003179 if (defined($1)) {
3180 $oldindent = expand_tabs($1);
3181 } else {
3182 $prevrawline =~ m@^\+(.*/?)\*@;
3183 $oldindent = expand_tabs($1);
3184 }
Joe Perches08eb9b82016-10-11 13:51:50 -07003185 $rawline =~ m@^\+([ \t]*)\*@;
3186 my $newindent = $1;
Joe Perches08eb9b82016-10-11 13:51:50 -07003187 $newindent = expand_tabs($newindent);
Joe Perchesaf207522016-10-11 13:52:05 -07003188 if (length($oldindent) ne length($newindent)) {
Joe Perches08eb9b82016-10-11 13:51:50 -07003189 WARN("BLOCK_COMMENT_STYLE",
3190 "Block comments should align the * on each line\n" . $hereprev);
3191 }
3192 }
3193
Joe Perches7f619192014-08-06 16:10:39 -07003194# check for missing blank lines after struct/union declarations
3195# with exceptions for various attributes and macros
3196 if ($prevline =~ /^[\+ ]};?\s*$/ &&
3197 $line =~ /^\+/ &&
3198 !($line =~ /^\+\s*$/ ||
3199 $line =~ /^\+\s*EXPORT_SYMBOL/ ||
3200 $line =~ /^\+\s*MODULE_/i ||
3201 $line =~ /^\+\s*\#\s*(?:end|elif|else)/ ||
3202 $line =~ /^\+[a-z_]*init/ ||
3203 $line =~ /^\+\s*(?:static\s+)?[A-Z_]*ATTR/ ||
3204 $line =~ /^\+\s*DECLARE/ ||
Masahiro Yamada0bc989f2017-11-17 15:28:55 -08003205 $line =~ /^\+\s*builtin_[\w_]*driver/ ||
Joe Perches7f619192014-08-06 16:10:39 -07003206 $line =~ /^\+\s*__setup/)) {
Joe Perchesd752fcc2014-08-06 16:11:05 -07003207 if (CHK("LINE_SPACING",
3208 "Please use a blank line after function/struct/union/enum declarations\n" . $hereprev) &&
3209 $fix) {
Joe Perchesf2d7e4d2014-08-06 16:11:07 -07003210 fix_insert_line($fixlinenr, "\+");
Joe Perchesd752fcc2014-08-06 16:11:05 -07003211 }
Joe Perches7f619192014-08-06 16:10:39 -07003212 }
3213
Joe Perches365dd4e2014-08-06 16:10:42 -07003214# check for multiple consecutive blank lines
3215 if ($prevline =~ /^[\+ ]\s*$/ &&
3216 $line =~ /^\+\s*$/ &&
3217 $last_blank_line != ($linenr - 1)) {
Joe Perchesd752fcc2014-08-06 16:11:05 -07003218 if (CHK("LINE_SPACING",
3219 "Please don't use multiple blank lines\n" . $hereprev) &&
3220 $fix) {
Joe Perchesf2d7e4d2014-08-06 16:11:07 -07003221 fix_delete_line($fixlinenr, $rawline);
Joe Perchesd752fcc2014-08-06 16:11:05 -07003222 }
3223
Joe Perches365dd4e2014-08-06 16:10:42 -07003224 $last_blank_line = $linenr;
3225 }
3226
Joe Perches3b617e32014-04-03 14:49:28 -07003227# check for missing blank lines after declarations
Joe Perches3f7bac02014-06-04 16:12:04 -07003228 if ($sline =~ /^\+\s+\S/ && #Not at char 1
3229 # actual declarations
3230 ($prevline =~ /^\+\s+$Declare\s*$Ident\s*[=,;:\[]/ ||
Joe Perches5a4e1fd2014-08-06 16:10:33 -07003231 # function pointer declarations
3232 $prevline =~ /^\+\s+$Declare\s*\(\s*\*\s*$Ident\s*\)\s*[=,;:\[\(]/ ||
Joe Perches3f7bac02014-06-04 16:12:04 -07003233 # foo bar; where foo is some local typedef or #define
3234 $prevline =~ /^\+\s+$Ident(?:\s+|\s*\*\s*)$Ident\s*[=,;\[]/ ||
3235 # known declaration macros
3236 $prevline =~ /^\+\s+$declaration_macros/) &&
3237 # for "else if" which can look like "$Ident $Ident"
3238 !($prevline =~ /^\+\s+$c90_Keywords\b/ ||
3239 # other possible extensions of declaration lines
3240 $prevline =~ /(?:$Compare|$Assignment|$Operators)\s*$/ ||
3241 # not starting a section or a macro "\" extended line
3242 $prevline =~ /(?:\{\s*|\\)$/) &&
3243 # looks like a declaration
3244 !($sline =~ /^\+\s+$Declare\s*$Ident\s*[=,;:\[]/ ||
Joe Perches5a4e1fd2014-08-06 16:10:33 -07003245 # function pointer declarations
3246 $sline =~ /^\+\s+$Declare\s*\(\s*\*\s*$Ident\s*\)\s*[=,;:\[\(]/ ||
Joe Perches3f7bac02014-06-04 16:12:04 -07003247 # foo bar; where foo is some local typedef or #define
3248 $sline =~ /^\+\s+$Ident(?:\s+|\s*\*\s*)$Ident\s*[=,;\[]/ ||
3249 # known declaration macros
3250 $sline =~ /^\+\s+$declaration_macros/ ||
3251 # start of struct or union or enum
Joe Perches3b617e32014-04-03 14:49:28 -07003252 $sline =~ /^\+\s+(?:union|struct|enum|typedef)\b/ ||
Joe Perches3f7bac02014-06-04 16:12:04 -07003253 # start or end of block or continuation of declaration
3254 $sline =~ /^\+\s+(?:$|[\{\}\.\#\"\?\:\(\[])/ ||
3255 # bitfield continuation
3256 $sline =~ /^\+\s+$Ident\s*:\s*\d+\s*[,;]/ ||
3257 # other possible extensions of declaration lines
3258 $sline =~ /^\+\s+\(?\s*(?:$Compare|$Assignment|$Operators)/) &&
3259 # indentation of previous and current line are the same
3260 (($prevline =~ /\+(\s+)\S/) && $sline =~ /^\+$1\S/)) {
Joe Perchesd752fcc2014-08-06 16:11:05 -07003261 if (WARN("LINE_SPACING",
3262 "Missing a blank line after declarations\n" . $hereprev) &&
3263 $fix) {
Joe Perchesf2d7e4d2014-08-06 16:11:07 -07003264 fix_insert_line($fixlinenr, "\+");
Joe Perchesd752fcc2014-08-06 16:11:05 -07003265 }
Joe Perches3b617e32014-04-03 14:49:28 -07003266 }
3267
Raffaele Recalcati5f7ddae2010-08-09 17:20:59 -07003268# check for spaces at the beginning of a line.
Andy Whitcroft6b4c5be2010-10-26 14:23:11 -07003269# Exceptions:
3270# 1) within comments
3271# 2) indented preprocessor commands
3272# 3) hanging labels
Joe Perches3705ce52013-07-03 15:05:31 -07003273 if ($rawline =~ /^\+ / && $line !~ /^\+ *(?:$;|#|$Ident:)/) {
Raffaele Recalcati5f7ddae2010-08-09 17:20:59 -07003274 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
Joe Perches3705ce52013-07-03 15:05:31 -07003275 if (WARN("LEADING_SPACE",
3276 "please, no spaces at the start of a line\n" . $herevet) &&
3277 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07003278 $fixed[$fixlinenr] =~ s/^\+([ \t]+)/"\+" . tabify($1)/e;
Joe Perches3705ce52013-07-03 15:05:31 -07003279 }
Raffaele Recalcati5f7ddae2010-08-09 17:20:59 -07003280 }
3281
Andy Whitcroftb9ea10d2008-10-15 22:02:24 -07003282# check we are in a valid C source file if not then ignore this hunk
3283 next if ($realfile !~ /\.(h|c)$/);
3284
Joe Perches5751a242017-11-17 15:28:52 -08003285# check for unusual line ending [ or (
3286 if ($line =~ /^\+.*([\[\(])\s*$/) {
3287 CHK("OPEN_ENDED_LINE",
3288 "Lines should not end with a '$1'\n" . $herecurr);
3289 }
3290
Joe Perches4dbed762017-05-08 15:55:39 -07003291# check if this appears to be the start function declaration, save the name
3292 if ($sline =~ /^\+\{\s*$/ &&
3293 $prevline =~ /^\+(?:(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*)?($Ident)\(/) {
3294 $context_function = $1;
3295 }
3296
3297# check if this appears to be the end of function declaration
3298 if ($sline =~ /^\+\}\s*$/) {
3299 undef $context_function;
3300 }
3301
Joe Perches032a4c02014-08-06 16:10:29 -07003302# check indentation of any line with a bare else
Joe Perches840080a2014-10-13 15:51:59 -07003303# (but not if it is a multiple line "if (foo) return bar; else return baz;")
Joe Perches032a4c02014-08-06 16:10:29 -07003304# if the previous line is a break or return and is indented 1 tab more...
3305 if ($sline =~ /^\+([\t]+)(?:}[ \t]*)?else(?:[ \t]*{)?\s*$/) {
3306 my $tabs = length($1) + 1;
Joe Perches840080a2014-10-13 15:51:59 -07003307 if ($prevline =~ /^\+\t{$tabs,$tabs}break\b/ ||
3308 ($prevline =~ /^\+\t{$tabs,$tabs}return\b/ &&
3309 defined $lines[$linenr] &&
3310 $lines[$linenr] !~ /^[ \+]\t{$tabs,$tabs}return/)) {
Joe Perches032a4c02014-08-06 16:10:29 -07003311 WARN("UNNECESSARY_ELSE",
3312 "else is not generally useful after a break or return\n" . $hereprev);
3313 }
3314 }
3315
Joe Perchesc00df192014-08-06 16:11:01 -07003316# check indentation of a line with a break;
3317# if the previous line is a goto or return and is indented the same # of tabs
3318 if ($sline =~ /^\+([\t]+)break\s*;\s*$/) {
3319 my $tabs = $1;
3320 if ($prevline =~ /^\+$tabs(?:goto|return)\b/) {
3321 WARN("UNNECESSARY_BREAK",
3322 "break is not useful after a goto or return\n" . $hereprev);
3323 }
3324 }
3325
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08003326# check for RCS/CVS revision markers
Andy Whitcroftcf655042008-03-04 14:28:20 -08003327 if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003328 WARN("CVS_KEYWORD",
3329 "CVS style keyword markers, these will _not_ be updated\n". $herecurr);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08003330 }
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07003331
Joe Perches56e77d72013-02-21 16:44:14 -08003332# check for old HOTPLUG __dev<foo> section markings
3333 if ($line =~ /\b(__dev(init|exit)(data|const|))\b/) {
3334 WARN("HOTPLUG_SECTION",
3335 "Using $1 is unnecessary\n" . $herecurr);
3336 }
3337
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07003338# Check for potential 'bare' types
Andy Whitcroft2b474a12009-10-26 16:50:16 -07003339 my ($stat, $cond, $line_nr_next, $remain_next, $off_next,
3340 $realline_next);
Andy Whitcroft3e469cd2012-01-10 15:10:01 -08003341#print "LINE<$line>\n";
Joe Perchesca819862017-07-10 15:52:13 -07003342 if ($linenr > $suppress_statement &&
Joe Perches1b5539b2013-09-11 14:24:03 -07003343 $realcnt && $sline =~ /.\s*\S/) {
Andy Whitcroft170d3a22008-10-15 22:02:30 -07003344 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
Andy Whitcroftf5fe35d2008-07-23 21:29:03 -07003345 ctx_statement_block($linenr, $realcnt, 0);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07003346 $stat =~ s/\n./\n /g;
3347 $cond =~ s/\n./\n /g;
3348
Andy Whitcroft3e469cd2012-01-10 15:10:01 -08003349#print "linenr<$linenr> <$stat>\n";
3350 # If this statement has no statement boundaries within
3351 # it there is no point in retrying a statement scan
3352 # until we hit end of it.
3353 my $frag = $stat; $frag =~ s/;+\s*$//;
3354 if ($frag !~ /(?:{|;)/) {
3355#print "skip<$line_nr_next>\n";
3356 $suppress_statement = $line_nr_next;
3357 }
Andy Whitcroftf74bd192012-01-10 15:09:54 -08003358
Andy Whitcroft2b474a12009-10-26 16:50:16 -07003359 # Find the real next line.
3360 $realline_next = $line_nr_next;
3361 if (defined $realline_next &&
3362 (!defined $lines[$realline_next - 1] ||
3363 substr($lines[$realline_next - 1], $off_next) =~ /^\s*$/)) {
3364 $realline_next++;
3365 }
3366
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07003367 my $s = $stat;
3368 $s =~ s/{.*$//s;
Andy Whitcroftcf655042008-03-04 14:28:20 -08003369
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08003370 # Ignore goto labels.
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07003371 if ($s =~ /$Ident:\*$/s) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08003372
3373 # Ignore functions being called
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07003374 } elsif ($s =~ /^.\s*$Ident\s*\(/s) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08003375
Andy Whitcroft463f2862009-09-21 17:04:34 -07003376 } elsif ($s =~ /^.\s*else\b/s) {
3377
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07003378 # declarations always start with types
Andy Whitcroftd2506582008-07-23 21:29:09 -07003379 } 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 -07003380 my $type = $1;
3381 $type =~ s/\s+/ /g;
3382 possible($type, "A:" . $s);
3383
Andy Whitcroft8905a672007-11-28 16:21:06 -08003384 # definitions in global scope can only start with types
Andy Whitcrofta6a840622008-10-15 22:02:30 -07003385 } elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b\s*(?!:)/s) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07003386 possible($1, "B:" . $s);
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08003387 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08003388
3389 # any (foo ... *) is a pointer cast, and foo is a type
Andy Whitcroft65863862009-01-06 14:41:21 -08003390 while ($s =~ /\(($Ident)(?:\s+$Sparse)*[\s\*]+\s*\)/sg) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07003391 possible($1, "C:" . $s);
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07003392 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08003393
3394 # Check for any sort of function declaration.
3395 # int foo(something bar, other baz);
3396 # void (*store_gdt)(x86_descr_ptr *);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07003397 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 -08003398 my ($name_len) = length($1);
Andy Whitcroft8905a672007-11-28 16:21:06 -08003399
Andy Whitcroftcf655042008-03-04 14:28:20 -08003400 my $ctx = $s;
Andy Whitcroft773647a2008-03-28 14:15:58 -07003401 substr($ctx, 0, $name_len + 1, '');
Andy Whitcroft8905a672007-11-28 16:21:06 -08003402 $ctx =~ s/\)[^\)]*$//;
Andy Whitcroftcf655042008-03-04 14:28:20 -08003403
Andy Whitcroft8905a672007-11-28 16:21:06 -08003404 for my $arg (split(/\s*,\s*/, $ctx)) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07003405 if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$/s) {
Andy Whitcroft8905a672007-11-28 16:21:06 -08003406
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07003407 possible($1, "D:" . $s);
Andy Whitcroft8905a672007-11-28 16:21:06 -08003408 }
3409 }
3410 }
3411
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07003412 }
3413
Andy Whitcroft653d4872007-06-23 17:16:34 -07003414#
3415# Checks which may be anchored in the context.
3416#
3417
3418# Check for switch () and associated case and default
3419# statements should be at the same indent.
Andy Whitcroft00df3442007-06-08 13:47:06 -07003420 if ($line=~/\bswitch\s*\(.*\)/) {
3421 my $err = '';
3422 my $sep = '';
3423 my @ctx = ctx_block_outer($linenr, $realcnt);
3424 shift(@ctx);
3425 for my $ctx (@ctx) {
3426 my ($clen, $cindent) = line_stats($ctx);
3427 if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
3428 $indent != $cindent) {
3429 $err .= "$sep$ctx\n";
3430 $sep = '';
3431 } else {
3432 $sep = "[...]\n";
3433 }
3434 }
3435 if ($err ne '') {
Joe Perches000d1cc12011-07-25 17:13:25 -07003436 ERROR("SWITCH_CASE_INDENT_LEVEL",
3437 "switch and case should be at the same indent\n$hereline$err");
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07003438 }
3439 }
3440
3441# if/while/etc brace do not go on next line, unless defining a do while loop,
3442# or if that brace on the next line is for something else
Joe Perches0fe3dc22014-08-06 16:11:16 -07003443 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 -07003444 my $pre_ctx = "$1$2";
3445
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07003446 my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0);
Joe Perches8eef05d2012-02-03 15:20:39 -08003447
3448 if ($line =~ /^\+\t{6,}/) {
3449 WARN("DEEP_INDENTATION",
3450 "Too many leading tabs - consider code refactoring\n" . $herecurr);
3451 }
3452
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07003453 my $ctx_cnt = $realcnt - $#ctx - 1;
3454 my $ctx = join("\n", @ctx);
3455
Andy Whitcroft548596d2008-07-23 21:29:01 -07003456 my $ctx_ln = $linenr;
3457 my $ctx_skip = $realcnt;
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07003458
Andy Whitcroft548596d2008-07-23 21:29:01 -07003459 while ($ctx_skip > $ctx_cnt || ($ctx_skip == $ctx_cnt &&
3460 defined $lines[$ctx_ln - 1] &&
3461 $lines[$ctx_ln - 1] =~ /^-/)) {
3462 ##print "SKIP<$ctx_skip> CNT<$ctx_cnt>\n";
3463 $ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/);
Andy Whitcroft773647a2008-03-28 14:15:58 -07003464 $ctx_ln++;
3465 }
Andy Whitcroft548596d2008-07-23 21:29:01 -07003466
Andy Whitcroft53210162008-07-23 21:29:03 -07003467 #print "realcnt<$realcnt> ctx_cnt<$ctx_cnt>\n";
3468 #print "pre<$pre_ctx>\nline<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>\n";
Andy Whitcroft773647a2008-03-28 14:15:58 -07003469
Joe Perchesd752fcc2014-08-06 16:11:05 -07003470 if ($ctx !~ /{\s*/ && defined($lines[$ctx_ln - 1]) && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003471 ERROR("OPEN_BRACE",
3472 "that open brace { should be on the previous line\n" .
Andy Whitcroft01464f32010-10-26 14:23:19 -07003473 "$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
Andy Whitcroft00df3442007-06-08 13:47:06 -07003474 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07003475 if ($level == 0 && $pre_ctx !~ /}\s*while\s*\($/ &&
3476 $ctx =~ /\)\s*\;\s*$/ &&
3477 defined $lines[$ctx_ln - 1])
3478 {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07003479 my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
3480 if ($nindent > $indent) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003481 WARN("TRAILING_SEMICOLON",
3482 "trailing semicolon indicates no statements, indent implies otherwise\n" .
Andy Whitcroft01464f32010-10-26 14:23:19 -07003483 "$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07003484 }
3485 }
Andy Whitcroft00df3442007-06-08 13:47:06 -07003486 }
3487
Andy Whitcroft4d001e42008-10-15 22:02:21 -07003488# Check relative indent for conditionals and blocks.
Joe Perchesf6950a72017-05-08 15:56:05 -07003489 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 -08003490 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
3491 ctx_statement_block($linenr, $realcnt, 0)
3492 if (!defined $stat);
Andy Whitcroft4d001e42008-10-15 22:02:21 -07003493 my ($s, $c) = ($stat, $cond);
3494
3495 substr($s, 0, length($c), '');
3496
Joe Perches9f5af482015-09-09 15:37:30 -07003497 # remove inline comments
3498 $s =~ s/$;/ /g;
3499 $c =~ s/$;/ /g;
Andy Whitcroft4d001e42008-10-15 22:02:21 -07003500
3501 # Find out how long the conditional actually is.
Andy Whitcroft6f779c12008-10-15 22:02:27 -07003502 my @newlines = ($c =~ /\n/gs);
3503 my $cond_lines = 1 + $#newlines;
Andy Whitcroft4d001e42008-10-15 22:02:21 -07003504
Joe Perches9f5af482015-09-09 15:37:30 -07003505 # Make sure we remove the line prefixes as we have
3506 # none on the first line, and are going to readd them
3507 # where necessary.
3508 $s =~ s/\n./\n/gs;
3509 while ($s =~ /\n\s+\\\n/) {
3510 $cond_lines += $s =~ s/\n\s+\\\n/\n/g;
3511 }
3512
Andy Whitcroft4d001e42008-10-15 22:02:21 -07003513 # We want to check the first line inside the block
3514 # starting at the end of the conditional, so remove:
3515 # 1) any blank line termination
3516 # 2) any opening brace { on end of the line
3517 # 3) any do (...) {
3518 my $continuation = 0;
3519 my $check = 0;
3520 $s =~ s/^.*\bdo\b//;
3521 $s =~ s/^\s*{//;
3522 if ($s =~ s/^\s*\\//) {
3523 $continuation = 1;
3524 }
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07003525 if ($s =~ s/^\s*?\n//) {
Andy Whitcroft4d001e42008-10-15 22:02:21 -07003526 $check = 1;
3527 $cond_lines++;
3528 }
3529
3530 # Also ignore a loop construct at the end of a
3531 # preprocessor statement.
3532 if (($prevline =~ /^.\s*#\s*define\s/ ||
3533 $prevline =~ /\\\s*$/) && $continuation == 0) {
3534 $check = 0;
3535 }
3536
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07003537 my $cond_ptr = -1;
Andy Whitcroft740504c2008-10-15 22:02:35 -07003538 $continuation = 0;
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07003539 while ($cond_ptr != $cond_lines) {
3540 $cond_ptr = $cond_lines;
Andy Whitcroft4d001e42008-10-15 22:02:21 -07003541
Andy Whitcroftf16fa282008-10-15 22:02:32 -07003542 # If we see an #else/#elif then the code
3543 # is not linear.
3544 if ($s =~ /^\s*\#\s*(?:else|elif)/) {
3545 $check = 0;
3546 }
3547
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07003548 # Ignore:
3549 # 1) blank lines, they should be at 0,
3550 # 2) preprocessor lines, and
3551 # 3) labels.
Andy Whitcroft740504c2008-10-15 22:02:35 -07003552 if ($continuation ||
3553 $s =~ /^\s*?\n/ ||
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07003554 $s =~ /^\s*#\s*?/ ||
3555 $s =~ /^\s*$Ident\s*:/) {
Andy Whitcroft740504c2008-10-15 22:02:35 -07003556 $continuation = ($s =~ /^.*?\\\n/) ? 1 : 0;
Andy Whitcroft30dad6e2009-09-21 17:04:36 -07003557 if ($s =~ s/^.*?\n//) {
3558 $cond_lines++;
3559 }
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07003560 }
Andy Whitcroft4d001e42008-10-15 22:02:21 -07003561 }
3562
3563 my (undef, $sindent) = line_stats("+" . $s);
3564 my $stat_real = raw_line($linenr, $cond_lines);
3565
3566 # Check if either of these lines are modified, else
3567 # this is not this patch's fault.
3568 if (!defined($stat_real) ||
3569 $stat !~ /^\+/ && $stat_real !~ /^\+/) {
3570 $check = 0;
3571 }
3572 if (defined($stat_real) && $cond_lines > 1) {
3573 $stat_real = "[...]\n$stat_real";
3574 }
3575
Andy Whitcroft9bd49ef2008-10-15 22:02:22 -07003576 #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 -07003577
Joe Perches9f5af482015-09-09 15:37:30 -07003578 if ($check && $s ne '' &&
3579 (($sindent % 8) != 0 ||
3580 ($sindent < $indent) ||
Joe Perchesf6950a72017-05-08 15:56:05 -07003581 ($sindent == $indent &&
3582 ($s !~ /^\s*(?:\}|\{|else\b)/)) ||
Joe Perches9f5af482015-09-09 15:37:30 -07003583 ($sindent > $indent + 8))) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003584 WARN("SUSPECT_CODE_INDENT",
3585 "suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n");
Andy Whitcroft4d001e42008-10-15 22:02:21 -07003586 }
3587 }
3588
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07003589 # Track the 'values' across context and added lines.
3590 my $opline = $line; $opline =~ s/^./ /;
Andy Whitcroft1f65f942008-07-23 21:29:10 -07003591 my ($curr_values, $curr_vars) =
3592 annotate_values($opline . "\n", $prev_values);
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07003593 $curr_values = $prev_values . $curr_values;
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08003594 if ($dbg_values) {
3595 my $outline = $opline; $outline =~ s/\t/ /g;
Andy Whitcroftcf655042008-03-04 14:28:20 -08003596 print "$linenr > .$outline\n";
3597 print "$linenr > $curr_values\n";
Andy Whitcroft1f65f942008-07-23 21:29:10 -07003598 print "$linenr > $curr_vars\n";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08003599 }
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07003600 $prev_values = substr($curr_values, -1);
3601
Andy Whitcroft00df3442007-06-08 13:47:06 -07003602#ignore lines not being added
Joe Perches3705ce52013-07-03 15:05:31 -07003603 next if ($line =~ /^[^\+]/);
Andy Whitcroft00df3442007-06-08 13:47:06 -07003604
Joe Perches11ca40a2016-12-12 16:46:31 -08003605# check for dereferences that span multiple lines
3606 if ($prevline =~ /^\+.*$Lval\s*(?:\.|->)\s*$/ &&
3607 $line =~ /^\+\s*(?!\#\s*(?!define\s+|if))\s*$Lval/) {
3608 $prevline =~ /($Lval\s*(?:\.|->))\s*$/;
3609 my $ref = $1;
3610 $line =~ /^.\s*($Lval)/;
3611 $ref .= $1;
3612 $ref =~ s/\s//g;
3613 WARN("MULTILINE_DEREFERENCE",
3614 "Avoid multiple line dereference - prefer '$ref'\n" . $hereprev);
3615 }
3616
Joe Perchesa1ce18e2016-03-15 14:58:03 -07003617# check for declarations of signed or unsigned without int
Joe Perchesc8447112016-08-02 14:04:42 -07003618 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 -07003619 my $type = $1;
3620 my $var = $2;
Joe Perches207a8e82016-03-15 14:58:06 -07003621 $var = "" if (!defined $var);
3622 if ($type =~ /^(?:(?:$Storage|$Inline|$Attribute)\s+)*((?:un)?signed)((?:\s*\*)*)\s*$/) {
Joe Perchesa1ce18e2016-03-15 14:58:03 -07003623 my $sign = $1;
3624 my $pointer = $2;
3625
3626 $pointer = "" if (!defined $pointer);
3627
3628 if (WARN("UNSPECIFIED_INT",
3629 "Prefer '" . trim($sign) . " int" . rtrim($pointer) . "' to bare use of '$sign" . rtrim($pointer) . "'\n" . $herecurr) &&
3630 $fix) {
3631 my $decl = trim($sign) . " int ";
Joe Perches207a8e82016-03-15 14:58:06 -07003632 my $comp_pointer = $pointer;
3633 $comp_pointer =~ s/\s//g;
3634 $decl .= $comp_pointer;
3635 $decl = rtrim($decl) if ($var eq "");
3636 $fixed[$fixlinenr] =~ s@\b$sign\s*\Q$pointer\E\s*$var\b@$decl$var@;
Joe Perchesa1ce18e2016-03-15 14:58:03 -07003637 }
3638 }
3639 }
3640
Andy Whitcroft653d4872007-06-23 17:16:34 -07003641# TEST: allow direct testing of the type matcher.
Andy Whitcroft7429c692008-07-23 21:29:06 -07003642 if ($dbg_type) {
3643 if ($line =~ /^.\s*$Declare\s*$/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003644 ERROR("TEST_TYPE",
3645 "TEST: is type\n" . $herecurr);
Andy Whitcroft7429c692008-07-23 21:29:06 -07003646 } elsif ($dbg_type > 1 && $line =~ /^.+($Declare)/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003647 ERROR("TEST_NOT_TYPE",
3648 "TEST: is not type ($1 is)\n". $herecurr);
Andy Whitcroft7429c692008-07-23 21:29:06 -07003649 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07003650 next;
3651 }
Andy Whitcrofta1ef2772008-10-15 22:02:17 -07003652# TEST: allow direct testing of the attribute matcher.
3653 if ($dbg_attr) {
Andy Whitcroft9360b0e2009-02-27 14:03:08 -08003654 if ($line =~ /^.\s*$Modifier\s*$/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003655 ERROR("TEST_ATTR",
3656 "TEST: is attr\n" . $herecurr);
Andy Whitcroft9360b0e2009-02-27 14:03:08 -08003657 } elsif ($dbg_attr > 1 && $line =~ /^.+($Modifier)/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003658 ERROR("TEST_NOT_ATTR",
3659 "TEST: is not attr ($1 is)\n". $herecurr);
Andy Whitcrofta1ef2772008-10-15 22:02:17 -07003660 }
3661 next;
3662 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07003663
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07003664# check for initialisation to aggregates open brace on the next line
Andy Whitcroft99423c22009-10-26 16:50:15 -07003665 if ($line =~ /^.\s*{/ &&
3666 $prevline =~ /(?:^|[^=])=\s*$/) {
Joe Perchesd752fcc2014-08-06 16:11:05 -07003667 if (ERROR("OPEN_BRACE",
3668 "that open brace { should be on the previous line\n" . $hereprev) &&
Joe Perchesf2d7e4d2014-08-06 16:11:07 -07003669 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
3670 fix_delete_line($fixlinenr - 1, $prevrawline);
3671 fix_delete_line($fixlinenr, $rawline);
Joe Perchesd752fcc2014-08-06 16:11:05 -07003672 my $fixedline = $prevrawline;
3673 $fixedline =~ s/\s*=\s*$/ = {/;
Joe Perchesf2d7e4d2014-08-06 16:11:07 -07003674 fix_insert_line($fixlinenr, $fixedline);
Joe Perchesd752fcc2014-08-06 16:11:05 -07003675 $fixedline = $line;
Cyril Bur8d81ae02017-07-10 15:52:21 -07003676 $fixedline =~ s/^(.\s*)\{\s*/$1/;
Joe Perchesf2d7e4d2014-08-06 16:11:07 -07003677 fix_insert_line($fixlinenr, $fixedline);
Joe Perchesd752fcc2014-08-06 16:11:05 -07003678 }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07003679 }
3680
Andy Whitcroft653d4872007-06-23 17:16:34 -07003681#
3682# Checks which are anchored on the added line.
3683#
3684
3685# check for malformed paths in #include statements (uses RAW line)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07003686 if ($rawline =~ m{^.\s*\#\s*include\s+[<"](.*)[">]}) {
Andy Whitcroft653d4872007-06-23 17:16:34 -07003687 my $path = $1;
3688 if ($path =~ m{//}) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003689 ERROR("MALFORMED_INCLUDE",
Joe Perches495e9d82012-12-20 15:05:37 -08003690 "malformed #include filename\n" . $herecurr);
3691 }
3692 if ($path =~ "^uapi/" && $realfile =~ m@\binclude/uapi/@) {
3693 ERROR("UAPI_INCLUDE",
3694 "No #include in ...include/uapi/... should use a uapi/ path prefix\n" . $herecurr);
Andy Whitcroft653d4872007-06-23 17:16:34 -07003695 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07003696 }
Andy Whitcroft00df3442007-06-08 13:47:06 -07003697
3698# no C99 // comments
3699 if ($line =~ m{//}) {
Joe Perches3705ce52013-07-03 15:05:31 -07003700 if (ERROR("C99_COMMENTS",
3701 "do not use C99 // comments\n" . $herecurr) &&
3702 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07003703 my $line = $fixed[$fixlinenr];
Joe Perches3705ce52013-07-03 15:05:31 -07003704 if ($line =~ /\/\/(.*)$/) {
3705 my $comment = trim($1);
Joe Perches194f66f2014-08-06 16:11:03 -07003706 $fixed[$fixlinenr] =~ s@\/\/(.*)$@/\* $comment \*/@;
Joe Perches3705ce52013-07-03 15:05:31 -07003707 }
3708 }
Andy Whitcroft00df3442007-06-08 13:47:06 -07003709 }
3710 # Remove C99 comments.
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003711 $line =~ s@//.*@@;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07003712 $opline =~ s@//.*@@;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003713
Andy Whitcroft2b474a12009-10-26 16:50:16 -07003714# EXPORT_SYMBOL should immediately follow the thing it is exporting, consider
3715# the whole statement.
3716#print "APW <$lines[$realline_next - 1]>\n";
3717 if (defined $realline_next &&
3718 exists $lines[$realline_next - 1] &&
3719 !defined $suppress_export{$realline_next} &&
3720 ($lines[$realline_next - 1] =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
3721 $lines[$realline_next - 1] =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
Andy Whitcroft3cbf62d2010-10-26 14:23:18 -07003722 # Handle definitions which produce identifiers with
3723 # a prefix:
3724 # XXX(foo);
3725 # EXPORT_SYMBOL(something_foo);
Andy Whitcroft653d4872007-06-23 17:16:34 -07003726 my $name = $1;
Andy Whitcroft87a53872012-01-10 15:10:04 -08003727 if ($stat =~ /^(?:.\s*}\s*\n)?.([A-Z_]+)\s*\(\s*($Ident)/ &&
Andy Whitcroft3cbf62d2010-10-26 14:23:18 -07003728 $name =~ /^${Ident}_$2/) {
3729#print "FOO C name<$name>\n";
3730 $suppress_export{$realline_next} = 1;
3731
3732 } elsif ($stat !~ /(?:
Andy Whitcroft2b474a12009-10-26 16:50:16 -07003733 \n.}\s*$|
Andy Whitcroft48012052008-10-15 22:02:34 -07003734 ^.DEFINE_$Ident\(\Q$name\E\)|
3735 ^.DECLARE_$Ident\(\Q$name\E\)|
3736 ^.LIST_HEAD\(\Q$name\E\)|
Andy Whitcroft2b474a12009-10-26 16:50:16 -07003737 ^.(?:$Storage\s+)?$Type\s*\(\s*\*\s*\Q$name\E\s*\)\s*\(|
3738 \b\Q$name\E(?:\s+$Attribute)*\s*(?:;|=|\[|\()
Andy Whitcroft48012052008-10-15 22:02:34 -07003739 )/x) {
Andy Whitcroft2b474a12009-10-26 16:50:16 -07003740#print "FOO A<$lines[$realline_next - 1]> stat<$stat> name<$name>\n";
3741 $suppress_export{$realline_next} = 2;
3742 } else {
3743 $suppress_export{$realline_next} = 1;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003744 }
3745 }
Andy Whitcroft2b474a12009-10-26 16:50:16 -07003746 if (!defined $suppress_export{$linenr} &&
3747 $prevline =~ /^.\s*$/ &&
3748 ($line =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
3749 $line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
3750#print "FOO B <$lines[$linenr - 1]>\n";
3751 $suppress_export{$linenr} = 2;
3752 }
3753 if (defined $suppress_export{$linenr} &&
3754 $suppress_export{$linenr} == 2) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003755 WARN("EXPORT_SYMBOL",
3756 "EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
Andy Whitcroft2b474a12009-10-26 16:50:16 -07003757 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003758
Joe Eloff5150bda2010-08-09 17:21:00 -07003759# check for global initialisers.
Joe Perches6d32f7a2015-11-06 16:31:37 -08003760 if ($line =~ /^\+$Type\s*$Ident(?:\s+$Modifier)*\s*=\s*($zero_initializer)\s*;/) {
Joe Perchesd5e616f2013-09-11 14:23:54 -07003761 if (ERROR("GLOBAL_INITIALISERS",
Joe Perches6d32f7a2015-11-06 16:31:37 -08003762 "do not initialise globals to $1\n" . $herecurr) &&
Joe Perchesd5e616f2013-09-11 14:23:54 -07003763 $fix) {
Joe Perches6d32f7a2015-11-06 16:31:37 -08003764 $fixed[$fixlinenr] =~ s/(^.$Type\s*$Ident(?:\s+$Modifier)*)\s*=\s*$zero_initializer\s*;/$1;/;
Joe Perchesd5e616f2013-09-11 14:23:54 -07003765 }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07003766 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07003767# check for static initialisers.
Joe Perches6d32f7a2015-11-06 16:31:37 -08003768 if ($line =~ /^\+.*\bstatic\s.*=\s*($zero_initializer)\s*;/) {
Joe Perchesd5e616f2013-09-11 14:23:54 -07003769 if (ERROR("INITIALISED_STATIC",
Joe Perches6d32f7a2015-11-06 16:31:37 -08003770 "do not initialise statics to $1\n" .
Joe Perchesd5e616f2013-09-11 14:23:54 -07003771 $herecurr) &&
3772 $fix) {
Joe Perches6d32f7a2015-11-06 16:31:37 -08003773 $fixed[$fixlinenr] =~ s/(\bstatic\s.*?)\s*=\s*$zero_initializer\s*;/$1;/;
Joe Perchesd5e616f2013-09-11 14:23:54 -07003774 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003775 }
3776
Joe Perches18130872014-08-06 16:11:22 -07003777# check for misordered declarations of char/short/int/long with signed/unsigned
3778 while ($sline =~ m{(\b$TypeMisordered\b)}g) {
3779 my $tmp = trim($1);
3780 WARN("MISORDERED_TYPE",
3781 "type '$tmp' should be specified in [[un]signed] [short|int|long|long long] order\n" . $herecurr);
3782 }
3783
Joe Perchescb710ec2010-10-26 14:23:20 -07003784# check for static const char * arrays.
3785 if ($line =~ /\bstatic\s+const\s+char\s*\*\s*(\w+)\s*\[\s*\]\s*=\s*/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003786 WARN("STATIC_CONST_CHAR_ARRAY",
3787 "static const char * array should probably be static const char * const\n" .
Joe Perchescb710ec2010-10-26 14:23:20 -07003788 $herecurr);
3789 }
3790
3791# check for static char foo[] = "bar" declarations.
3792 if ($line =~ /\bstatic\s+char\s+(\w+)\s*\[\s*\]\s*=\s*"/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003793 WARN("STATIC_CONST_CHAR_ARRAY",
3794 "static char array declaration should probably be static const char\n" .
Joe Perchescb710ec2010-10-26 14:23:20 -07003795 $herecurr);
3796 }
3797
Joe Perchesab7e23f2015-04-16 12:44:22 -07003798# check for const <foo> const where <foo> is not a pointer or array type
3799 if ($sline =~ /\bconst\s+($BasicType)\s+const\b/) {
3800 my $found = $1;
3801 if ($sline =~ /\bconst\s+\Q$found\E\s+const\b\s*\*/) {
3802 WARN("CONST_CONST",
3803 "'const $found const *' should probably be 'const $found * const'\n" . $herecurr);
3804 } elsif ($sline !~ /\bconst\s+\Q$found\E\s+const\s+\w+\s*\[/) {
3805 WARN("CONST_CONST",
3806 "'const $found const' should probably be 'const $found'\n" . $herecurr);
3807 }
3808 }
3809
Joe Perches9b0fa602014-04-03 14:49:18 -07003810# check for non-global char *foo[] = {"bar", ...} declarations.
3811 if ($line =~ /^.\s+(?:static\s+|const\s+)?char\s+\*\s*\w+\s*\[\s*\]\s*=\s*\{/) {
3812 WARN("STATIC_CONST_CHAR_ARRAY",
3813 "char * array declaration might be better as static const\n" .
3814 $herecurr);
3815 }
3816
Joe Perchesb598b672015-04-16 12:44:36 -07003817# check for sizeof(foo)/sizeof(foo[0]) that could be ARRAY_SIZE(foo)
3818 if ($line =~ m@\bsizeof\s*\(\s*($Lval)\s*\)@) {
3819 my $array = $1;
3820 if ($line =~ m@\b(sizeof\s*\(\s*\Q$array\E\s*\)\s*/\s*sizeof\s*\(\s*\Q$array\E\s*\[\s*0\s*\]\s*\))@) {
3821 my $array_div = $1;
3822 if (WARN("ARRAY_SIZE",
3823 "Prefer ARRAY_SIZE($array)\n" . $herecurr) &&
3824 $fix) {
3825 $fixed[$fixlinenr] =~ s/\Q$array_div\E/ARRAY_SIZE($array)/;
3826 }
3827 }
3828 }
3829
Joe Perchesb36190c2014-01-27 17:07:18 -08003830# check for function declarations without arguments like "int foo()"
3831 if ($line =~ /(\b$Type\s+$Ident)\s*\(\s*\)/) {
3832 if (ERROR("FUNCTION_WITHOUT_ARGS",
3833 "Bad function definition - $1() should probably be $1(void)\n" . $herecurr) &&
3834 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07003835 $fixed[$fixlinenr] =~ s/(\b($Type)\s+($Ident))\s*\(\s*\)/$2 $3(void)/;
Joe Perchesb36190c2014-01-27 17:07:18 -08003836 }
3837 }
3838
Andy Whitcroft653d4872007-06-23 17:16:34 -07003839# check for new typedefs, only function parameters and sparse annotations
3840# make sense.
3841 if ($line =~ /\btypedef\s/ &&
Andy Whitcroft80545762009-01-06 14:41:26 -08003842 $line !~ /\btypedef\s+$Type\s*\(\s*\*?$Ident\s*\)\s*\(/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07003843 $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ &&
Andy Whitcroft8ed22ca2008-10-15 22:02:32 -07003844 $line !~ /\b$typeTypedefs\b/ &&
Michael S. Tsirkin46d832f2016-12-11 06:29:58 +02003845 $line !~ /\b__bitwise\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003846 WARN("NEW_TYPEDEFS",
3847 "do not add new typedefs\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003848 }
3849
3850# * goes on variable not on type
Andy Whitcroft65863862009-01-06 14:41:21 -08003851 # (char*[ const])
Andy Whitcroftbfcb2cc2012-01-10 15:10:15 -08003852 while ($line =~ m{(\($NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)\))}g) {
3853 #print "AA<$1>\n";
Joe Perches3705ce52013-07-03 15:05:31 -07003854 my ($ident, $from, $to) = ($1, $2, $2);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07003855
Andy Whitcroft65863862009-01-06 14:41:21 -08003856 # Should start with a space.
3857 $to =~ s/^(\S)/ $1/;
3858 # Should not end with a space.
3859 $to =~ s/\s+$//;
3860 # '*'s should not have spaces between.
Andy Whitcroftf9a0b3d2009-01-15 13:51:05 -08003861 while ($to =~ s/\*\s+\*/\*\*/) {
Andy Whitcroft65863862009-01-06 14:41:21 -08003862 }
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07003863
Joe Perches3705ce52013-07-03 15:05:31 -07003864## print "1: from<$from> to<$to> ident<$ident>\n";
Andy Whitcroft65863862009-01-06 14:41:21 -08003865 if ($from ne $to) {
Joe Perches3705ce52013-07-03 15:05:31 -07003866 if (ERROR("POINTER_LOCATION",
3867 "\"(foo$from)\" should be \"(foo$to)\"\n" . $herecurr) &&
3868 $fix) {
3869 my $sub_from = $ident;
3870 my $sub_to = $ident;
3871 $sub_to =~ s/\Q$from\E/$to/;
Joe Perches194f66f2014-08-06 16:11:03 -07003872 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07003873 s@\Q$sub_from\E@$sub_to@;
3874 }
Andy Whitcroft65863862009-01-06 14:41:21 -08003875 }
Andy Whitcroftbfcb2cc2012-01-10 15:10:15 -08003876 }
3877 while ($line =~ m{(\b$NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)($Ident))}g) {
3878 #print "BB<$1>\n";
Joe Perches3705ce52013-07-03 15:05:31 -07003879 my ($match, $from, $to, $ident) = ($1, $2, $2, $3);
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07003880
Andy Whitcroft65863862009-01-06 14:41:21 -08003881 # Should start with a space.
3882 $to =~ s/^(\S)/ $1/;
3883 # Should not end with a space.
3884 $to =~ s/\s+$//;
3885 # '*'s should not have spaces between.
Andy Whitcroftf9a0b3d2009-01-15 13:51:05 -08003886 while ($to =~ s/\*\s+\*/\*\*/) {
Andy Whitcroft65863862009-01-06 14:41:21 -08003887 }
3888 # Modifiers should have spaces.
3889 $to =~ s/(\b$Modifier$)/$1 /;
3890
Joe Perches3705ce52013-07-03 15:05:31 -07003891## print "2: from<$from> to<$to> ident<$ident>\n";
Andy Whitcroft667026e2009-02-27 14:03:08 -08003892 if ($from ne $to && $ident !~ /^$Modifier$/) {
Joe Perches3705ce52013-07-03 15:05:31 -07003893 if (ERROR("POINTER_LOCATION",
3894 "\"foo${from}bar\" should be \"foo${to}bar\"\n" . $herecurr) &&
3895 $fix) {
3896
3897 my $sub_from = $match;
3898 my $sub_to = $match;
3899 $sub_to =~ s/\Q$from\E/$to/;
Joe Perches194f66f2014-08-06 16:11:03 -07003900 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07003901 s@\Q$sub_from\E@$sub_to@;
3902 }
Andy Whitcroft65863862009-01-06 14:41:21 -08003903 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003904 }
3905
Joe Perches9d3e3c72015-09-09 15:37:27 -07003906# avoid BUG() or BUG_ON()
3907 if ($line =~ /\b(?:BUG|BUG_ON)\b/) {
Jean Delvare0675a8f2017-09-08 16:16:07 -07003908 my $msg_level = \&WARN;
3909 $msg_level = \&CHK if ($file);
3910 &{$msg_level}("AVOID_BUG",
3911 "Avoid crashing the kernel - try using WARN_ON & recovery code rather than BUG() or BUG_ON()\n" . $herecurr);
Joe Perches9d3e3c72015-09-09 15:37:27 -07003912 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003913
Joe Perches9d3e3c72015-09-09 15:37:27 -07003914# avoid LINUX_VERSION_CODE
Andy Whitcroft8905a672007-11-28 16:21:06 -08003915 if ($line =~ /\bLINUX_VERSION_CODE\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003916 WARN("LINUX_VERSION_CODE",
3917 "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 -08003918 }
3919
Joe Perches17441222011-06-15 15:08:17 -07003920# check for uses of printk_ratelimit
3921 if ($line =~ /\bprintk_ratelimit\s*\(/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07003922 WARN("PRINTK_RATELIMITED",
Joe Perches101ee682015-02-13 14:38:54 -08003923 "Prefer printk_ratelimited or pr_<level>_ratelimited to printk_ratelimit\n" . $herecurr);
Joe Perches17441222011-06-15 15:08:17 -07003924 }
3925
Joe Percheseeef5732017-11-17 15:28:41 -08003926# printk should use KERN_* levels
3927 if ($line =~ /\bprintk\s*\(\s*(?!KERN_[A-Z]+\b)/) {
3928 WARN("PRINTK_WITHOUT_KERN_LEVEL",
3929 "printk() should include KERN_<LEVEL> facility level\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003930 }
3931
Joe Perches243f3802012-05-31 16:26:09 -07003932 if ($line =~ /\bprintk\s*\(\s*KERN_([A-Z]+)/) {
3933 my $orig = $1;
3934 my $level = lc($orig);
3935 $level = "warn" if ($level eq "warning");
Joe Perches8f26b832012-10-04 17:13:32 -07003936 my $level2 = $level;
3937 $level2 = "dbg" if ($level eq "debug");
Joe Perches243f3802012-05-31 16:26:09 -07003938 WARN("PREFER_PR_LEVEL",
Yogesh Chaudharidaa8b052014-04-03 14:49:23 -07003939 "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 -07003940 }
3941
3942 if ($line =~ /\bpr_warning\s*\(/) {
Joe Perchesd5e616f2013-09-11 14:23:54 -07003943 if (WARN("PREFER_PR_LEVEL",
3944 "Prefer pr_warn(... to pr_warning(...\n" . $herecurr) &&
3945 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07003946 $fixed[$fixlinenr] =~
Joe Perchesd5e616f2013-09-11 14:23:54 -07003947 s/\bpr_warning\b/pr_warn/;
3948 }
Joe Perches243f3802012-05-31 16:26:09 -07003949 }
3950
Joe Perchesdc139312013-02-21 16:44:13 -08003951 if ($line =~ /\bdev_printk\s*\(\s*KERN_([A-Z]+)/) {
3952 my $orig = $1;
3953 my $level = lc($orig);
3954 $level = "warn" if ($level eq "warning");
3955 $level = "dbg" if ($level eq "debug");
3956 WARN("PREFER_DEV_LEVEL",
3957 "Prefer dev_$level(... to dev_printk(KERN_$orig, ...\n" . $herecurr);
3958 }
3959
Andy Lutomirski91c9afa2015-04-16 12:44:44 -07003960# ENOSYS means "bad syscall nr" and nothing else. This will have a small
3961# number of false positives, but assembly files are not checked, so at
3962# least the arch entry code will not trigger this warning.
3963 if ($line =~ /\bENOSYS\b/) {
3964 WARN("ENOSYS",
3965 "ENOSYS means 'invalid syscall nr' and nothing else\n" . $herecurr);
3966 }
3967
Andy Whitcroft653d4872007-06-23 17:16:34 -07003968# function brace can't be on same line, except for #defines of do while,
3969# or if closed on same line
Joe Perches2d453e32018-02-06 15:39:09 -08003970 if ($^V && $^V ge 5.10.0 &&
3971 $sline =~ /$Type\s*$Ident\s*$balanced_parens\s*\{/ &&
3972 $sline !~ /\#\s*define\b.*do\s*\{/ &&
3973 $sline !~ /}/) {
Joe Perches8d182472014-08-06 16:11:12 -07003974 if (ERROR("OPEN_BRACE",
Joe Perches2d453e32018-02-06 15:39:09 -08003975 "open brace '{' following function definitions go on the next line\n" . $herecurr) &&
Joe Perches8d182472014-08-06 16:11:12 -07003976 $fix) {
3977 fix_delete_line($fixlinenr, $rawline);
3978 my $fixed_line = $rawline;
3979 $fixed_line =~ /(^..*$Type\s*$Ident\(.*\)\s*){(.*)$/;
3980 my $line1 = $1;
3981 my $line2 = $2;
3982 fix_insert_line($fixlinenr, ltrim($line1));
3983 fix_insert_line($fixlinenr, "\+{");
3984 if ($line2 !~ /^\s*$/) {
3985 fix_insert_line($fixlinenr, "\+\t" . trim($line2));
3986 }
3987 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07003988 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07003989
Andy Whitcroft8905a672007-11-28 16:21:06 -08003990# open braces for enum, union and struct go on the same line.
3991 if ($line =~ /^.\s*{/ &&
3992 $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
Joe Perches8d182472014-08-06 16:11:12 -07003993 if (ERROR("OPEN_BRACE",
3994 "open brace '{' following $1 go on the same line\n" . $hereprev) &&
3995 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
3996 fix_delete_line($fixlinenr - 1, $prevrawline);
3997 fix_delete_line($fixlinenr, $rawline);
3998 my $fixedline = rtrim($prevrawline) . " {";
3999 fix_insert_line($fixlinenr, $fixedline);
4000 $fixedline = $rawline;
Cyril Bur8d81ae02017-07-10 15:52:21 -07004001 $fixedline =~ s/^(.\s*)\{\s*/$1\t/;
Joe Perches8d182472014-08-06 16:11:12 -07004002 if ($fixedline !~ /^\+\s*$/) {
4003 fix_insert_line($fixlinenr, $fixedline);
4004 }
4005 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08004006 }
4007
Andy Whitcroft0c73b4e2010-10-26 14:23:15 -07004008# missing space after union, struct or enum definition
Joe Perches3705ce52013-07-03 15:05:31 -07004009 if ($line =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident){1,2}[=\{]/) {
4010 if (WARN("SPACING",
4011 "missing space after $1 definition\n" . $herecurr) &&
4012 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004013 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07004014 s/^(.\s*(?:typedef\s+)?(?:enum|union|struct)(?:\s+$Ident){1,2})([=\{])/$1 $2/;
4015 }
Andy Whitcroft0c73b4e2010-10-26 14:23:15 -07004016 }
4017
Joe Perches31070b52014-01-23 15:54:49 -08004018# Function pointer declarations
4019# check spacing between type, funcptr, and args
4020# canonical declaration is "type (*funcptr)(args...)"
Joe Perches91f72e92014-04-03 14:49:12 -07004021 if ($line =~ /^.\s*($Declare)\((\s*)\*(\s*)($Ident)(\s*)\)(\s*)\(/) {
Joe Perches31070b52014-01-23 15:54:49 -08004022 my $declare = $1;
4023 my $pre_pointer_space = $2;
4024 my $post_pointer_space = $3;
4025 my $funcname = $4;
4026 my $post_funcname_space = $5;
4027 my $pre_args_space = $6;
4028
Joe Perches91f72e92014-04-03 14:49:12 -07004029# the $Declare variable will capture all spaces after the type
4030# so check it for a missing trailing missing space but pointer return types
4031# don't need a space so don't warn for those.
4032 my $post_declare_space = "";
4033 if ($declare =~ /(\s+)$/) {
4034 $post_declare_space = $1;
4035 $declare = rtrim($declare);
4036 }
4037 if ($declare !~ /\*$/ && $post_declare_space =~ /^$/) {
Joe Perches31070b52014-01-23 15:54:49 -08004038 WARN("SPACING",
4039 "missing space after return type\n" . $herecurr);
Joe Perches91f72e92014-04-03 14:49:12 -07004040 $post_declare_space = " ";
Joe Perches31070b52014-01-23 15:54:49 -08004041 }
4042
4043# unnecessary space "type (*funcptr)(args...)"
Joe Perches91f72e92014-04-03 14:49:12 -07004044# This test is not currently implemented because these declarations are
4045# equivalent to
4046# int foo(int bar, ...)
4047# and this is form shouldn't/doesn't generate a checkpatch warning.
4048#
4049# elsif ($declare =~ /\s{2,}$/) {
4050# WARN("SPACING",
4051# "Multiple spaces after return type\n" . $herecurr);
4052# }
Joe Perches31070b52014-01-23 15:54:49 -08004053
4054# unnecessary space "type ( *funcptr)(args...)"
4055 if (defined $pre_pointer_space &&
4056 $pre_pointer_space =~ /^\s/) {
4057 WARN("SPACING",
4058 "Unnecessary space after function pointer open parenthesis\n" . $herecurr);
4059 }
4060
4061# unnecessary space "type (* funcptr)(args...)"
4062 if (defined $post_pointer_space &&
4063 $post_pointer_space =~ /^\s/) {
4064 WARN("SPACING",
4065 "Unnecessary space before function pointer name\n" . $herecurr);
4066 }
4067
4068# unnecessary space "type (*funcptr )(args...)"
4069 if (defined $post_funcname_space &&
4070 $post_funcname_space =~ /^\s/) {
4071 WARN("SPACING",
4072 "Unnecessary space after function pointer name\n" . $herecurr);
4073 }
4074
4075# unnecessary space "type (*funcptr) (args...)"
4076 if (defined $pre_args_space &&
4077 $pre_args_space =~ /^\s/) {
4078 WARN("SPACING",
4079 "Unnecessary space before function pointer arguments\n" . $herecurr);
4080 }
4081
4082 if (show_type("SPACING") && $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004083 $fixed[$fixlinenr] =~
Joe Perches91f72e92014-04-03 14:49:12 -07004084 s/^(.\s*)$Declare\s*\(\s*\*\s*$Ident\s*\)\s*\(/$1 . $declare . $post_declare_space . '(*' . $funcname . ')('/ex;
Joe Perches31070b52014-01-23 15:54:49 -08004085 }
4086 }
4087
Andy Whitcroft8d31cfc2008-07-23 21:29:02 -07004088# check for spacing round square brackets; allowed:
4089# 1. with a type on the left -- int [] a;
Andy Whitcroftfe2a7db2008-10-15 22:02:15 -07004090# 2. at the beginning of a line for slice initialisers -- [0...10] = 5,
4091# 3. inside a curly brace -- = { [0...10] = 5 }
Andy Whitcroft8d31cfc2008-07-23 21:29:02 -07004092 while ($line =~ /(.*?\s)\[/g) {
4093 my ($where, $prefix) = ($-[1], $1);
4094 if ($prefix !~ /$Type\s+$/ &&
Andy Whitcroftfe2a7db2008-10-15 22:02:15 -07004095 ($where != 0 || $prefix !~ /^.\s+$/) &&
Heinrich Schuchardt38dca982018-04-10 16:34:14 -07004096 $prefix !~ /[{,:]\s+$/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004097 if (ERROR("BRACKET_SPACE",
4098 "space prohibited before open square bracket '['\n" . $herecurr) &&
4099 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004100 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07004101 s/^(\+.*?)\s+\[/$1\[/;
4102 }
Andy Whitcroft8d31cfc2008-07-23 21:29:02 -07004103 }
4104 }
4105
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07004106# check for spaces between functions and their parentheses.
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07004107 while ($line =~ /($Ident)\s+\(/g) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08004108 my $name = $1;
Andy Whitcroft773647a2008-03-28 14:15:58 -07004109 my $ctx_before = substr($line, 0, $-[1]);
4110 my $ctx = "$ctx_before$name";
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08004111
4112 # Ignore those directives where spaces _are_ permitted.
Andy Whitcroft773647a2008-03-28 14:15:58 -07004113 if ($name =~ /^(?:
4114 if|for|while|switch|return|case|
4115 volatile|__volatile__|
4116 __attribute__|format|__extension__|
4117 asm|__asm__)$/x)
4118 {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08004119 # cpp #define statements have non-optional spaces, ie
4120 # if there is a space between the name and the open
4121 # parenthesis it is simply not a parameter group.
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004122 } elsif ($ctx_before =~ /^.\s*\#\s*define\s*$/) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07004123
4124 # cpp #elif statement condition may start with a (
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004125 } elsif ($ctx =~ /^.\s*\#\s*elif\s*$/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08004126
4127 # If this whole things ends with a type its most
4128 # likely a typedef for a function.
Andy Whitcroft773647a2008-03-28 14:15:58 -07004129 } elsif ($ctx =~ /$Type$/) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08004130
4131 } else {
Joe Perches3705ce52013-07-03 15:05:31 -07004132 if (WARN("SPACING",
4133 "space prohibited between function name and open parenthesis '('\n" . $herecurr) &&
4134 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004135 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07004136 s/\b$name\s+\(/$name\(/;
4137 }
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07004138 }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07004139 }
Eric Nelson9a4cad42012-05-31 16:26:09 -07004140
Andy Whitcroft653d4872007-06-23 17:16:34 -07004141# Check operator spacing.
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004142 if (!($line=~/\#\s*include/)) {
Joe Perches3705ce52013-07-03 15:05:31 -07004143 my $fixed_line = "";
4144 my $line_fixed = 0;
4145
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07004146 my $ops = qr{
4147 <<=|>>=|<=|>=|==|!=|
4148 \+=|-=|\*=|\/=|%=|\^=|\|=|&=|
4149 =>|->|<<|>>|<|>|=|!|~|
Andy Whitcroft1f65f942008-07-23 21:29:10 -07004150 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%|
Joe Perches84731622013-11-12 15:10:05 -08004151 \?:|\?|:
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07004152 }x;
Andy Whitcroftcf655042008-03-04 14:28:20 -08004153 my @elements = split(/($ops|;)/, $opline);
Joe Perches3705ce52013-07-03 15:05:31 -07004154
4155## print("element count: <" . $#elements . ">\n");
4156## foreach my $el (@elements) {
4157## print("el: <$el>\n");
4158## }
4159
4160 my @fix_elements = ();
Andy Whitcroft00df3442007-06-08 13:47:06 -07004161 my $off = 0;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07004162
Joe Perches3705ce52013-07-03 15:05:31 -07004163 foreach my $el (@elements) {
4164 push(@fix_elements, substr($rawline, $off, length($el)));
4165 $off += length($el);
4166 }
4167
4168 $off = 0;
4169
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07004170 my $blank = copy_spacing($opline);
Joe Perchesb34c6482013-09-11 14:24:01 -07004171 my $last_after = -1;
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07004172
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004173 for (my $n = 0; $n < $#elements; $n += 2) {
Joe Perches3705ce52013-07-03 15:05:31 -07004174
4175 my $good = $fix_elements[$n] . $fix_elements[$n + 1];
4176
4177## print("n: <$n> good: <$good>\n");
4178
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004179 $off += length($elements[$n]);
4180
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004181 # Pick up the preceding and succeeding characters.
Andy Whitcroft773647a2008-03-28 14:15:58 -07004182 my $ca = substr($opline, 0, $off);
4183 my $cc = '';
4184 if (length($opline) >= ($off + length($elements[$n + 1]))) {
4185 $cc = substr($opline, $off + length($elements[$n + 1]));
4186 }
4187 my $cb = "$ca$;$cc";
4188
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004189 my $a = '';
4190 $a = 'V' if ($elements[$n] ne '');
4191 $a = 'W' if ($elements[$n] =~ /\s$/);
Andy Whitcroftcf655042008-03-04 14:28:20 -08004192 $a = 'C' if ($elements[$n] =~ /$;$/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004193 $a = 'B' if ($elements[$n] =~ /(\[|\()$/);
4194 $a = 'O' if ($elements[$n] eq '');
Andy Whitcroft773647a2008-03-28 14:15:58 -07004195 $a = 'E' if ($ca =~ /^\s*$/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004196
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004197 my $op = $elements[$n + 1];
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004198
4199 my $c = '';
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004200 if (defined $elements[$n + 2]) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004201 $c = 'V' if ($elements[$n + 2] ne '');
4202 $c = 'W' if ($elements[$n + 2] =~ /^\s/);
Andy Whitcroftcf655042008-03-04 14:28:20 -08004203 $c = 'C' if ($elements[$n + 2] =~ /^$;/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004204 $c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
4205 $c = 'O' if ($elements[$n + 2] eq '');
Andy Whitcroft8b1b3372009-01-06 14:41:27 -08004206 $c = 'E' if ($elements[$n + 2] =~ /^\s*\\$/);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004207 } else {
4208 $c = 'E';
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004209 }
4210
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004211 my $ctx = "${a}x${c}";
4212
4213 my $at = "(ctx:$ctx)";
4214
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07004215 my $ptr = substr($blank, 0, $off) . "^";
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07004216 my $hereptr = "$hereline$ptr\n";
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004217
Andy Whitcroft74048ed2008-07-23 21:29:10 -07004218 # Pull out the value of this operator.
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07004219 my $op_type = substr($curr_values, $off + 1, 1);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004220
Andy Whitcroft1f65f942008-07-23 21:29:10 -07004221 # Get the full operator variant.
4222 my $opv = $op . substr($curr_vars, $off, 1);
4223
Andy Whitcroft13214ad2008-02-08 04:22:03 -08004224 # Ignore operators passed as parameters.
4225 if ($op_type ne 'V' &&
Sam Bobroffd7fe8062015-04-16 12:44:39 -07004226 $ca =~ /\s$/ && $cc =~ /^\s*[,\)]/) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08004227
Andy Whitcroftcf655042008-03-04 14:28:20 -08004228# # Ignore comments
4229# } elsif ($op =~ /^$;+$/) {
Andy Whitcroft13214ad2008-02-08 04:22:03 -08004230
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07004231 # ; should have either the end of line or a space or \ after it
Andy Whitcroft13214ad2008-02-08 04:22:03 -08004232 } elsif ($op eq ';') {
Andy Whitcroftcf655042008-03-04 14:28:20 -08004233 if ($ctx !~ /.x[WEBC]/ &&
4234 $cc !~ /^\\/ && $cc !~ /^;/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004235 if (ERROR("SPACING",
4236 "space required after that '$op' $at\n" . $hereptr)) {
Joe Perchesb34c6482013-09-11 14:24:01 -07004237 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]) . " ";
Joe Perches3705ce52013-07-03 15:05:31 -07004238 $line_fixed = 1;
4239 }
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07004240 }
4241
4242 # // is a comment
4243 } elsif ($op eq '//') {
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004244
Joe Perchesb00e4812014-04-03 14:49:33 -07004245 # : when part of a bitfield
4246 } elsif ($opv eq ':B') {
4247 # skip the bitfield test for now
4248
Andy Whitcroft1f65f942008-07-23 21:29:10 -07004249 # No spaces for:
4250 # ->
Joe Perchesb00e4812014-04-03 14:49:33 -07004251 } elsif ($op eq '->') {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004252 if ($ctx =~ /Wx.|.xW/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004253 if (ERROR("SPACING",
4254 "spaces prohibited around that '$op' $at\n" . $hereptr)) {
Joe Perchesb34c6482013-09-11 14:24:01 -07004255 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
Joe Perches3705ce52013-07-03 15:05:31 -07004256 if (defined $fix_elements[$n + 2]) {
4257 $fix_elements[$n + 2] =~ s/^\s+//;
4258 }
Joe Perchesb34c6482013-09-11 14:24:01 -07004259 $line_fixed = 1;
Joe Perches3705ce52013-07-03 15:05:31 -07004260 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004261 }
4262
Joe Perches23810972014-12-10 15:51:32 -08004263 # , must not have a space before and must have a space on the right.
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004264 } elsif ($op eq ',') {
Joe Perches23810972014-12-10 15:51:32 -08004265 my $rtrim_before = 0;
4266 my $space_after = 0;
4267 if ($ctx =~ /Wx./) {
4268 if (ERROR("SPACING",
4269 "space prohibited before that '$op' $at\n" . $hereptr)) {
4270 $line_fixed = 1;
4271 $rtrim_before = 1;
4272 }
4273 }
Andy Whitcroftcf655042008-03-04 14:28:20 -08004274 if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004275 if (ERROR("SPACING",
4276 "space required after that '$op' $at\n" . $hereptr)) {
Joe Perches3705ce52013-07-03 15:05:31 -07004277 $line_fixed = 1;
Joe Perchesb34c6482013-09-11 14:24:01 -07004278 $last_after = $n;
Joe Perches23810972014-12-10 15:51:32 -08004279 $space_after = 1;
4280 }
4281 }
4282 if ($rtrim_before || $space_after) {
4283 if ($rtrim_before) {
4284 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
4285 } else {
4286 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]);
4287 }
4288 if ($space_after) {
4289 $good .= " ";
Joe Perches3705ce52013-07-03 15:05:31 -07004290 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004291 }
4292
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07004293 # '*' as part of a type definition -- reported already.
Andy Whitcroft74048ed2008-07-23 21:29:10 -07004294 } elsif ($opv eq '*_') {
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07004295 #warn "'*' is part of type\n";
4296
4297 # unary operators should have a space before and
4298 # none after. May be left adjacent to another
4299 # unary operator, or a cast
4300 } elsif ($op eq '!' || $op eq '~' ||
Andy Whitcroft74048ed2008-07-23 21:29:10 -07004301 $opv eq '*U' || $opv eq '-U' ||
Andy Whitcroft0d413862008-10-15 22:02:16 -07004302 $opv eq '&U' || $opv eq '&&U') {
Andy Whitcroftcf655042008-03-04 14:28:20 -08004303 if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004304 if (ERROR("SPACING",
4305 "space required before that '$op' $at\n" . $hereptr)) {
Joe Perchesb34c6482013-09-11 14:24:01 -07004306 if ($n != $last_after + 2) {
4307 $good = $fix_elements[$n] . " " . ltrim($fix_elements[$n + 1]);
4308 $line_fixed = 1;
4309 }
Joe Perches3705ce52013-07-03 15:05:31 -07004310 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004311 }
Andy Whitcrofta3340b32009-02-27 14:03:07 -08004312 if ($op eq '*' && $cc =~/\s*$Modifier\b/) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07004313 # A unary '*' may be const
4314
4315 } elsif ($ctx =~ /.xW/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004316 if (ERROR("SPACING",
4317 "space prohibited after that '$op' $at\n" . $hereptr)) {
Joe Perchesb34c6482013-09-11 14:24:01 -07004318 $good = $fix_elements[$n] . rtrim($fix_elements[$n + 1]);
Joe Perches3705ce52013-07-03 15:05:31 -07004319 if (defined $fix_elements[$n + 2]) {
4320 $fix_elements[$n + 2] =~ s/^\s+//;
4321 }
Joe Perchesb34c6482013-09-11 14:24:01 -07004322 $line_fixed = 1;
Joe Perches3705ce52013-07-03 15:05:31 -07004323 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004324 }
4325
4326 # unary ++ and unary -- are allowed no space on one side.
4327 } elsif ($op eq '++' or $op eq '--') {
Andy Whitcroft773647a2008-03-28 14:15:58 -07004328 if ($ctx !~ /[WEOBC]x[^W]/ && $ctx !~ /[^W]x[WOBEC]/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004329 if (ERROR("SPACING",
4330 "space required one side of that '$op' $at\n" . $hereptr)) {
Joe Perchesb34c6482013-09-11 14:24:01 -07004331 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]) . " ";
Joe Perches3705ce52013-07-03 15:05:31 -07004332 $line_fixed = 1;
4333 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004334 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07004335 if ($ctx =~ /Wx[BE]/ ||
4336 ($ctx =~ /Wx./ && $cc =~ /^;/)) {
Joe Perches3705ce52013-07-03 15:05:31 -07004337 if (ERROR("SPACING",
4338 "space prohibited before that '$op' $at\n" . $hereptr)) {
Joe Perchesb34c6482013-09-11 14:24:01 -07004339 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
Joe Perches3705ce52013-07-03 15:05:31 -07004340 $line_fixed = 1;
4341 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07004342 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07004343 if ($ctx =~ /ExW/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004344 if (ERROR("SPACING",
4345 "space prohibited after that '$op' $at\n" . $hereptr)) {
Joe Perchesb34c6482013-09-11 14:24:01 -07004346 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]);
Joe Perches3705ce52013-07-03 15:05:31 -07004347 if (defined $fix_elements[$n + 2]) {
4348 $fix_elements[$n + 2] =~ s/^\s+//;
4349 }
Joe Perchesb34c6482013-09-11 14:24:01 -07004350 $line_fixed = 1;
Joe Perches3705ce52013-07-03 15:05:31 -07004351 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07004352 }
4353
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004354 # << and >> may either have or not have spaces both sides
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07004355 } elsif ($op eq '<<' or $op eq '>>' or
4356 $op eq '&' or $op eq '^' or $op eq '|' or
4357 $op eq '+' or $op eq '-' or
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08004358 $op eq '*' or $op eq '/' or
4359 $op eq '%')
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004360 {
Joe Perchesd2e025f2015-02-13 14:38:57 -08004361 if ($check) {
4362 if (defined $fix_elements[$n + 2] && $ctx !~ /[EW]x[EW]/) {
4363 if (CHK("SPACING",
4364 "spaces preferred around that '$op' $at\n" . $hereptr)) {
4365 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
4366 $fix_elements[$n + 2] =~ s/^\s+//;
4367 $line_fixed = 1;
4368 }
4369 } elsif (!defined $fix_elements[$n + 2] && $ctx !~ /Wx[OE]/) {
4370 if (CHK("SPACING",
4371 "space preferred before that '$op' $at\n" . $hereptr)) {
4372 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]);
4373 $line_fixed = 1;
4374 }
4375 }
4376 } elsif ($ctx =~ /Wx[^WCE]|[^WCE]xW/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004377 if (ERROR("SPACING",
4378 "need consistent spacing around '$op' $at\n" . $hereptr)) {
Joe Perchesb34c6482013-09-11 14:24:01 -07004379 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
4380 if (defined $fix_elements[$n + 2]) {
4381 $fix_elements[$n + 2] =~ s/^\s+//;
4382 }
Joe Perches3705ce52013-07-03 15:05:31 -07004383 $line_fixed = 1;
4384 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004385 }
4386
Andy Whitcroft1f65f942008-07-23 21:29:10 -07004387 # A colon needs no spaces before when it is
4388 # terminating a case value or a label.
4389 } elsif ($opv eq ':C' || $opv eq ':L') {
4390 if ($ctx =~ /Wx./) {
Joe Perches3705ce52013-07-03 15:05:31 -07004391 if (ERROR("SPACING",
4392 "space prohibited before that '$op' $at\n" . $hereptr)) {
Joe Perchesb34c6482013-09-11 14:24:01 -07004393 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
Joe Perches3705ce52013-07-03 15:05:31 -07004394 $line_fixed = 1;
4395 }
Andy Whitcroft1f65f942008-07-23 21:29:10 -07004396 }
4397
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004398 # All the others need spaces both sides.
Andy Whitcroftcf655042008-03-04 14:28:20 -08004399 } elsif ($ctx !~ /[EWC]x[CWE]/) {
Andy Whitcroft1f65f942008-07-23 21:29:10 -07004400 my $ok = 0;
4401
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07004402 # Ignore email addresses <foo@bar>
Andy Whitcroft1f65f942008-07-23 21:29:10 -07004403 if (($op eq '<' &&
4404 $cc =~ /^\S+\@\S+>/) ||
4405 ($op eq '>' &&
4406 $ca =~ /<\S+\@\S+$/))
4407 {
4408 $ok = 1;
4409 }
4410
Joe Perchese0df7e12015-04-16 12:44:53 -07004411 # for asm volatile statements
4412 # ignore a colon with another
4413 # colon immediately before or after
4414 if (($op eq ':') &&
4415 ($ca =~ /:$/ || $cc =~ /^:/)) {
4416 $ok = 1;
4417 }
4418
Joe Perches84731622013-11-12 15:10:05 -08004419 # messages are ERROR, but ?: are CHK
Andy Whitcroft1f65f942008-07-23 21:29:10 -07004420 if ($ok == 0) {
Jean Delvare0675a8f2017-09-08 16:16:07 -07004421 my $msg_level = \&ERROR;
4422 $msg_level = \&CHK if (($op eq '?:' || $op eq '?' || $op eq ':') && $ctx =~ /VxV/);
Joe Perches84731622013-11-12 15:10:05 -08004423
Jean Delvare0675a8f2017-09-08 16:16:07 -07004424 if (&{$msg_level}("SPACING",
4425 "spaces required around that '$op' $at\n" . $hereptr)) {
Joe Perchesb34c6482013-09-11 14:24:01 -07004426 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
4427 if (defined $fix_elements[$n + 2]) {
4428 $fix_elements[$n + 2] =~ s/^\s+//;
4429 }
Joe Perches3705ce52013-07-03 15:05:31 -07004430 $line_fixed = 1;
4431 }
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07004432 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004433 }
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004434 $off += length($elements[$n + 1]);
Joe Perches3705ce52013-07-03 15:05:31 -07004435
4436## print("n: <$n> GOOD: <$good>\n");
4437
4438 $fixed_line = $fixed_line . $good;
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004439 }
Joe Perches3705ce52013-07-03 15:05:31 -07004440
4441 if (($#elements % 2) == 0) {
4442 $fixed_line = $fixed_line . $fix_elements[$#elements];
4443 }
4444
Joe Perches194f66f2014-08-06 16:11:03 -07004445 if ($fix && $line_fixed && $fixed_line ne $fixed[$fixlinenr]) {
4446 $fixed[$fixlinenr] = $fixed_line;
Joe Perches3705ce52013-07-03 15:05:31 -07004447 }
4448
4449
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004450 }
4451
Joe Perches786b6322013-07-03 15:05:32 -07004452# check for whitespace before a non-naked semicolon
Joe Perchesd2e248e2014-01-23 15:54:41 -08004453 if ($line =~ /^\+.*\S\s+;\s*$/) {
Joe Perches786b6322013-07-03 15:05:32 -07004454 if (WARN("SPACING",
4455 "space prohibited before semicolon\n" . $herecurr) &&
4456 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004457 1 while $fixed[$fixlinenr] =~
Joe Perches786b6322013-07-03 15:05:32 -07004458 s/^(\+.*\S)\s+;/$1;/;
4459 }
4460 }
4461
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07004462# check for multiple assignments
4463 if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07004464 CHK("MULTIPLE_ASSIGNMENTS",
4465 "multiple assignments should be avoided\n" . $herecurr);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07004466 }
4467
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07004468## # check for multiple declarations, allowing for a function declaration
4469## # continuation.
4470## if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
4471## $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
4472##
4473## # Remove any bracketed sections to ensure we do not
4474## # falsly report the parameters of functions.
4475## my $ln = $line;
4476## while ($ln =~ s/\([^\(\)]*\)//g) {
4477## }
4478## if ($ln =~ /,/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07004479## WARN("MULTIPLE_DECLARATION",
4480## "declaring multiple variables together should be avoided\n" . $herecurr);
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07004481## }
4482## }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07004483
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004484#need space before brace following if, while, etc
Geyslan G. Bem6b8c69e2016-03-15 14:58:09 -07004485 if (($line =~ /\(.*\)\{/ && $line !~ /\($Type\)\{/) ||
Eddie Kovsky4e5d56b2015-09-09 15:37:52 -07004486 $line =~ /do\{/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004487 if (ERROR("SPACING",
4488 "space required before the open brace '{'\n" . $herecurr) &&
4489 $fix) {
Cyril Bur8d81ae02017-07-10 15:52:21 -07004490 $fixed[$fixlinenr] =~ s/^(\+.*(?:do|\)))\{/$1 {/;
Joe Perches3705ce52013-07-03 15:05:31 -07004491 }
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07004492 }
4493
Joe Perchesc4a62ef2013-07-03 15:05:28 -07004494## # check for blank lines before declarations
4495## if ($line =~ /^.\t+$Type\s+$Ident(?:\s*=.*)?;/ &&
4496## $prevrawline =~ /^.\s*$/) {
4497## WARN("SPACING",
4498## "No blank lines before declarations\n" . $hereprev);
4499## }
4500##
4501
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07004502# closing brace should have a space following it when it has anything
4503# on the line
4504 if ($line =~ /}(?!(?:,|;|\)))\S/) {
Joe Perchesd5e616f2013-09-11 14:23:54 -07004505 if (ERROR("SPACING",
4506 "space required after that close brace '}'\n" . $herecurr) &&
4507 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004508 $fixed[$fixlinenr] =~
Joe Perchesd5e616f2013-09-11 14:23:54 -07004509 s/}((?!(?:,|;|\)))\S)/} $1/;
4510 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004511 }
4512
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07004513# check spacing on square brackets
4514 if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004515 if (ERROR("SPACING",
4516 "space prohibited after that open square bracket '['\n" . $herecurr) &&
4517 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004518 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07004519 s/\[\s+/\[/;
4520 }
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07004521 }
4522 if ($line =~ /\s\]/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004523 if (ERROR("SPACING",
4524 "space prohibited before that close square bracket ']'\n" . $herecurr) &&
4525 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004526 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07004527 s/\s+\]/\]/;
4528 }
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07004529 }
4530
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004531# check spacing on parentheses
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07004532 if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
4533 $line !~ /for\s*\(\s+;/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004534 if (ERROR("SPACING",
4535 "space prohibited after that open parenthesis '('\n" . $herecurr) &&
4536 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004537 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07004538 s/\(\s+/\(/;
4539 }
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07004540 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08004541 if ($line =~ /(\s+)\)/ && $line !~ /^.\s*\)/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004542 $line !~ /for\s*\(.*;\s+\)/ &&
4543 $line !~ /:\s+\)/) {
Joe Perches3705ce52013-07-03 15:05:31 -07004544 if (ERROR("SPACING",
4545 "space prohibited before that close parenthesis ')'\n" . $herecurr) &&
4546 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004547 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07004548 s/\s+\)/\)/;
4549 }
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07004550 }
4551
Joe Perchese2826fd2014-08-06 16:10:48 -07004552# check unnecessary parentheses around addressof/dereference single $Lvals
4553# ie: &(foo->bar) should be &foo->bar and *(foo->bar) should be *foo->bar
4554
4555 while ($line =~ /(?:[^&]&\s*|\*)\(\s*($Ident\s*(?:$Member\s*)+)\s*\)/g) {
Joe Perchesea4acbb2014-12-10 15:51:51 -08004556 my $var = $1;
4557 if (CHK("UNNECESSARY_PARENTHESES",
4558 "Unnecessary parentheses around $var\n" . $herecurr) &&
4559 $fix) {
4560 $fixed[$fixlinenr] =~ s/\(\s*\Q$var\E\s*\)/$var/;
4561 }
4562 }
4563
4564# check for unnecessary parentheses around function pointer uses
4565# ie: (foo->bar)(); should be foo->bar();
4566# but not "if (foo->bar) (" to avoid some false positives
4567 if ($line =~ /(\bif\s*|)(\(\s*$Ident\s*(?:$Member\s*)+\))[ \t]*\(/ && $1 !~ /^if/) {
4568 my $var = $2;
4569 if (CHK("UNNECESSARY_PARENTHESES",
4570 "Unnecessary parentheses around function pointer $var\n" . $herecurr) &&
4571 $fix) {
4572 my $var2 = deparenthesize($var);
4573 $var2 =~ s/\s//g;
4574 $fixed[$fixlinenr] =~ s/\Q$var\E/$var2/;
4575 }
4576 }
Joe Perchese2826fd2014-08-06 16:10:48 -07004577
Joe Perches63b7c732017-09-08 16:16:01 -07004578# check for unnecessary parentheses around comparisons in if uses
Joe Perchesa032aa42018-02-06 15:39:03 -08004579# when !drivers/staging or command-line uses --strict
4580 if (($realfile !~ m@^(?:drivers/staging/)@ || $check_orig) &&
4581 $^V && $^V ge 5.10.0 && defined($stat) &&
Joe Perches63b7c732017-09-08 16:16:01 -07004582 $stat =~ /(^.\s*if\s*($balanced_parens))/) {
4583 my $if_stat = $1;
4584 my $test = substr($2, 1, -1);
4585 my $herectx;
4586 while ($test =~ /(?:^|[^\w\&\!\~])+\s*\(\s*([\&\!\~]?\s*$Lval\s*(?:$Compare\s*$FuncArg)?)\s*\)/g) {
4587 my $match = $1;
4588 # avoid parentheses around potential macro args
4589 next if ($match =~ /^\s*\w+\s*$/);
4590 if (!defined($herectx)) {
4591 $herectx = $here . "\n";
4592 my $cnt = statement_rawlines($if_stat);
4593 for (my $n = 0; $n < $cnt; $n++) {
4594 my $rl = raw_line($linenr, $n);
4595 $herectx .= $rl . "\n";
4596 last if $rl =~ /^[ \+].*\{/;
4597 }
4598 }
4599 CHK("UNNECESSARY_PARENTHESES",
4600 "Unnecessary parentheses around '$match'\n" . $herectx);
4601 }
4602 }
4603
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004604#goto labels aren't indented, allow a single space however
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07004605 if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004606 !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
Joe Perches3705ce52013-07-03 15:05:31 -07004607 if (WARN("INDENTED_LABEL",
4608 "labels should not be indented\n" . $herecurr) &&
4609 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004610 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07004611 s/^(.)\s+/$1/;
4612 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004613 }
4614
Joe Perches5b9553a2014-04-03 14:49:21 -07004615# return is not a function
Joe Perches507e5142013-11-12 15:10:13 -08004616 if (defined($stat) && $stat =~ /^.\s*return(\s*)\(/s) {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004617 my $spacing = $1;
Joe Perches507e5142013-11-12 15:10:13 -08004618 if ($^V && $^V ge 5.10.0 &&
Joe Perches5b9553a2014-04-03 14:49:21 -07004619 $stat =~ /^.\s*return\s*($balanced_parens)\s*;\s*$/) {
4620 my $value = $1;
4621 $value = deparenthesize($value);
4622 if ($value =~ m/^\s*$FuncArg\s*(?:\?|$)/) {
4623 ERROR("RETURN_PARENTHESES",
4624 "return is not a function, parentheses are not required\n" . $herecurr);
4625 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004626 } elsif ($spacing !~ /\s+/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07004627 ERROR("SPACING",
4628 "space required before the open parenthesis '('\n" . $herecurr);
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004629 }
4630 }
Joe Perches507e5142013-11-12 15:10:13 -08004631
Joe Perchesb43ae212014-06-23 13:22:07 -07004632# unnecessary return in a void function
4633# at end-of-function, with the previous line a single leading tab, then return;
4634# and the line before that not a goto label target like "out:"
4635 if ($sline =~ /^[ \+]}\s*$/ &&
4636 $prevline =~ /^\+\treturn\s*;\s*$/ &&
4637 $linenr >= 3 &&
4638 $lines[$linenr - 3] =~ /^[ +]/ &&
4639 $lines[$linenr - 3] !~ /^[ +]\s*$Ident\s*:/) {
Joe Perches9819cf22014-06-04 16:12:09 -07004640 WARN("RETURN_VOID",
Joe Perchesb43ae212014-06-23 13:22:07 -07004641 "void function return statements are not generally useful\n" . $hereprev);
4642 }
Joe Perches9819cf22014-06-04 16:12:09 -07004643
Joe Perches189248d2014-01-23 15:54:47 -08004644# if statements using unnecessary parentheses - ie: if ((foo == bar))
4645 if ($^V && $^V ge 5.10.0 &&
4646 $line =~ /\bif\s*((?:\(\s*){2,})/) {
4647 my $openparens = $1;
4648 my $count = $openparens =~ tr@\(@\(@;
4649 my $msg = "";
4650 if ($line =~ /\bif\s*(?:\(\s*){$count,$count}$LvalOrFunc\s*($Compare)\s*$LvalOrFunc(?:\s*\)){$count,$count}/) {
4651 my $comp = $4; #Not $1 because of $LvalOrFunc
4652 $msg = " - maybe == should be = ?" if ($comp eq "==");
4653 WARN("UNNECESSARY_PARENTHESES",
4654 "Unnecessary parentheses$msg\n" . $herecurr);
4655 }
4656 }
4657
Joe Perchesc5595fa2015-09-09 15:37:58 -07004658# comparisons with a constant or upper case identifier on the left
4659# avoid cases like "foo + BAR < baz"
4660# only fix matches surrounded by parentheses to avoid incorrect
4661# conversions like "FOO < baz() + 5" being "misfixed" to "baz() > FOO + 5"
4662 if ($^V && $^V ge 5.10.0 &&
4663 $line =~ /^\+(.*)\b($Constant|[A-Z_][A-Z0-9_]*)\s*($Compare)\s*($LvalOrFunc)/) {
4664 my $lead = $1;
4665 my $const = $2;
4666 my $comp = $3;
4667 my $to = $4;
4668 my $newcomp = $comp;
Joe Perchesf39e1762016-05-20 17:04:02 -07004669 if ($lead !~ /(?:$Operators|\.)\s*$/ &&
Joe Perchesc5595fa2015-09-09 15:37:58 -07004670 $to !~ /^(?:Constant|[A-Z_][A-Z0-9_]*)$/ &&
4671 WARN("CONSTANT_COMPARISON",
4672 "Comparisons should place the constant on the right side of the test\n" . $herecurr) &&
4673 $fix) {
4674 if ($comp eq "<") {
4675 $newcomp = ">";
4676 } elsif ($comp eq "<=") {
4677 $newcomp = ">=";
4678 } elsif ($comp eq ">") {
4679 $newcomp = "<";
4680 } elsif ($comp eq ">=") {
4681 $newcomp = "<=";
4682 }
4683 $fixed[$fixlinenr] =~ s/\(\s*\Q$const\E\s*$Compare\s*\Q$to\E\s*\)/($to $newcomp $const)/;
4684 }
4685 }
4686
Joe Perchesf34e4a42015-04-16 12:44:19 -07004687# Return of what appears to be an errno should normally be negative
4688 if ($sline =~ /\breturn(?:\s*\(+\s*|\s+)(E[A-Z]+)(?:\s*\)+\s*|\s*)[;:,]/) {
Andy Whitcroft53a3c442010-10-26 14:23:14 -07004689 my $name = $1;
4690 if ($name ne 'EOF' && $name ne 'ERROR') {
Joe Perches000d1cc12011-07-25 17:13:25 -07004691 WARN("USE_NEGATIVE_ERRNO",
Joe Perchesf34e4a42015-04-16 12:44:19 -07004692 "return of an errno should typically be negative (ie: return -$1)\n" . $herecurr);
Andy Whitcroft53a3c442010-10-26 14:23:14 -07004693 }
4694 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004695
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004696# Need a space before open parenthesis after if, while etc
Joe Perches3705ce52013-07-03 15:05:31 -07004697 if ($line =~ /\b(if|while|for|switch)\(/) {
4698 if (ERROR("SPACING",
4699 "space required before the open parenthesis '('\n" . $herecurr) &&
4700 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004701 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07004702 s/\b(if|while|for|switch)\(/$1 \(/;
4703 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004704 }
4705
Andy Whitcroftf5fe35d2008-07-23 21:29:03 -07004706# Check for illegal assignment in if conditional -- and check for trailing
4707# statements after the conditional.
Andy Whitcroft170d3a22008-10-15 22:02:30 -07004708 if ($line =~ /do\s*(?!{)/) {
Andy Whitcroft3e469cd2012-01-10 15:10:01 -08004709 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
4710 ctx_statement_block($linenr, $realcnt, 0)
4711 if (!defined $stat);
Andy Whitcroft170d3a22008-10-15 22:02:30 -07004712 my ($stat_next) = ctx_statement_block($line_nr_next,
4713 $remain_next, $off_next);
4714 $stat_next =~ s/\n./\n /g;
4715 ##print "stat<$stat> stat_next<$stat_next>\n";
4716
4717 if ($stat_next =~ /^\s*while\b/) {
4718 # If the statement carries leading newlines,
4719 # then count those as offsets.
4720 my ($whitespace) =
4721 ($stat_next =~ /^((?:\s*\n[+-])*\s*)/s);
4722 my $offset =
4723 statement_rawlines($whitespace) - 1;
4724
4725 $suppress_whiletrailers{$line_nr_next +
4726 $offset} = 1;
4727 }
4728 }
4729 if (!defined $suppress_whiletrailers{$linenr} &&
Joe Perchesc11230f2013-11-21 14:31:57 -08004730 defined($stat) && defined($cond) &&
Andy Whitcroft170d3a22008-10-15 22:02:30 -07004731 $line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) {
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07004732 my ($s, $c) = ($stat, $cond);
Andy Whitcroft8905a672007-11-28 16:21:06 -08004733
Andy Whitcroftb53c8e12009-01-06 14:41:29 -08004734 if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/s) {
Joe Perches000d1cc12011-07-25 17:13:25 -07004735 ERROR("ASSIGN_IN_IF",
4736 "do not use assignment in if condition\n" . $herecurr);
Andy Whitcroft8905a672007-11-28 16:21:06 -08004737 }
4738
4739 # Find out what is on the end of the line after the
4740 # conditional.
Andy Whitcroft773647a2008-03-28 14:15:58 -07004741 substr($s, 0, length($c), '');
Andy Whitcroft8905a672007-11-28 16:21:06 -08004742 $s =~ s/\n.*//g;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08004743 $s =~ s/$;//g; # Remove any comments
Andy Whitcroft53210162008-07-23 21:29:03 -07004744 if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ &&
4745 $c !~ /}\s*while\s*/)
Andy Whitcroft773647a2008-03-28 14:15:58 -07004746 {
Andy Whitcroftbb44ad32008-10-15 22:02:34 -07004747 # Find out how long the conditional actually is.
4748 my @newlines = ($c =~ /\n/gs);
4749 my $cond_lines = 1 + $#newlines;
Hidetoshi Seto42bdf742010-03-05 13:43:50 -08004750 my $stat_real = '';
Andy Whitcroftbb44ad32008-10-15 22:02:34 -07004751
Hidetoshi Seto42bdf742010-03-05 13:43:50 -08004752 $stat_real = raw_line($linenr, $cond_lines)
4753 . "\n" if ($cond_lines);
Andy Whitcroftbb44ad32008-10-15 22:02:34 -07004754 if (defined($stat_real) && $cond_lines > 1) {
4755 $stat_real = "[...]\n$stat_real";
4756 }
4757
Joe Perches000d1cc12011-07-25 17:13:25 -07004758 ERROR("TRAILING_STATEMENTS",
4759 "trailing statements should be on next line\n" . $herecurr . $stat_real);
Andy Whitcroft8905a672007-11-28 16:21:06 -08004760 }
4761 }
4762
Andy Whitcroft13214ad2008-02-08 04:22:03 -08004763# Check for bitwise tests written as boolean
4764 if ($line =~ /
4765 (?:
4766 (?:\[|\(|\&\&|\|\|)
4767 \s*0[xX][0-9]+\s*
4768 (?:\&\&|\|\|)
4769 |
4770 (?:\&\&|\|\|)
4771 \s*0[xX][0-9]+\s*
4772 (?:\&\&|\|\||\)|\])
4773 )/x)
4774 {
Joe Perches000d1cc12011-07-25 17:13:25 -07004775 WARN("HEXADECIMAL_BOOLEAN_TEST",
4776 "boolean test with hexadecimal, perhaps just 1 \& or \|?\n" . $herecurr);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08004777 }
4778
Andy Whitcroft8905a672007-11-28 16:21:06 -08004779# if and else should not have general statements after it
Andy Whitcroft13214ad2008-02-08 04:22:03 -08004780 if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/) {
4781 my $s = $1;
4782 $s =~ s/$;//g; # Remove any comments
4783 if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07004784 ERROR("TRAILING_STATEMENTS",
4785 "trailing statements should be on next line\n" . $herecurr);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08004786 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004787 }
Andy Whitcroft39667782009-01-15 13:51:06 -08004788# if should not continue a brace
4789 if ($line =~ /}\s*if\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07004790 ERROR("TRAILING_STATEMENTS",
Rasmus Villemoes048b1232014-08-06 16:10:37 -07004791 "trailing statements should be on next line (or did you mean 'else if'?)\n" .
Andy Whitcroft39667782009-01-15 13:51:06 -08004792 $herecurr);
4793 }
Andy Whitcrofta1080bf2008-10-15 22:02:25 -07004794# case and default should not have general statements after them
4795 if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
4796 $line !~ /\G(?:
Andy Whitcroft3fef12d2008-10-15 22:02:36 -07004797 (?:\s*$;*)(?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$|
Andy Whitcrofta1080bf2008-10-15 22:02:25 -07004798 \s*return\s+
4799 )/xg)
4800 {
Joe Perches000d1cc12011-07-25 17:13:25 -07004801 ERROR("TRAILING_STATEMENTS",
4802 "trailing statements should be on next line\n" . $herecurr);
Andy Whitcrofta1080bf2008-10-15 22:02:25 -07004803 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004804
4805 # Check for }<nl>else {, these must be at the same
4806 # indent level to be relevant to each other.
Joe Perches8b8856f2014-08-06 16:11:14 -07004807 if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ &&
4808 $previndent == $indent) {
4809 if (ERROR("ELSE_AFTER_BRACE",
4810 "else should follow close brace '}'\n" . $hereprev) &&
4811 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
4812 fix_delete_line($fixlinenr - 1, $prevrawline);
4813 fix_delete_line($fixlinenr, $rawline);
4814 my $fixedline = $prevrawline;
4815 $fixedline =~ s/}\s*$//;
4816 if ($fixedline !~ /^\+\s*$/) {
4817 fix_insert_line($fixlinenr, $fixedline);
4818 }
4819 $fixedline = $rawline;
4820 $fixedline =~ s/^(.\s*)else/$1} else/;
4821 fix_insert_line($fixlinenr, $fixedline);
4822 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004823 }
4824
Joe Perches8b8856f2014-08-06 16:11:14 -07004825 if ($prevline=~/}\s*$/ and $line=~/^.\s*while\s*/ &&
4826 $previndent == $indent) {
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08004827 my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0);
4828
4829 # Find out what is on the end of the line after the
4830 # conditional.
Andy Whitcroft773647a2008-03-28 14:15:58 -07004831 substr($s, 0, length($c), '');
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08004832 $s =~ s/\n.*//g;
4833
4834 if ($s =~ /^\s*;/) {
Joe Perches8b8856f2014-08-06 16:11:14 -07004835 if (ERROR("WHILE_AFTER_BRACE",
4836 "while should follow close brace '}'\n" . $hereprev) &&
4837 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
4838 fix_delete_line($fixlinenr - 1, $prevrawline);
4839 fix_delete_line($fixlinenr, $rawline);
4840 my $fixedline = $prevrawline;
4841 my $trailing = $rawline;
4842 $trailing =~ s/^\+//;
4843 $trailing = trim($trailing);
4844 $fixedline =~ s/}\s*$/} $trailing/;
4845 fix_insert_line($fixlinenr, $fixedline);
4846 }
Andy Whitcroftc2fdda02008-02-08 04:20:54 -08004847 }
4848 }
4849
Joe Perches95e2c602013-07-03 15:05:20 -07004850#Specific variable tests
Joe Perches323c1262012-12-17 16:02:07 -08004851 while ($line =~ m{($Constant|$Lval)}g) {
4852 my $var = $1;
Joe Perches95e2c602013-07-03 15:05:20 -07004853
4854#gcc binary extension
4855 if ($var =~ /^$Binary$/) {
Joe Perchesd5e616f2013-09-11 14:23:54 -07004856 if (WARN("GCC_BINARY_CONSTANT",
4857 "Avoid gcc v4.3+ binary constant extension: <$var>\n" . $herecurr) &&
4858 $fix) {
4859 my $hexval = sprintf("0x%x", oct($var));
Joe Perches194f66f2014-08-06 16:11:03 -07004860 $fixed[$fixlinenr] =~
Joe Perchesd5e616f2013-09-11 14:23:54 -07004861 s/\b$var\b/$hexval/;
4862 }
Joe Perches95e2c602013-07-03 15:05:20 -07004863 }
4864
4865#CamelCase
Joe Perches807bd262013-07-03 15:05:22 -07004866 if ($var !~ /^$Constant$/ &&
Joe Perchesbe797942013-07-03 15:05:20 -07004867 $var =~ /[A-Z][a-z]|[a-z][A-Z]/ &&
Joe Perches22735ce2013-07-03 15:05:33 -07004868#Ignore Page<foo> variants
Joe Perches807bd262013-07-03 15:05:22 -07004869 $var !~ /^(?:Clear|Set|TestClear|TestSet|)Page[A-Z]/ &&
Joe Perches22735ce2013-07-03 15:05:33 -07004870#Ignore SI style variants like nS, mV and dB (ie: max_uV, regulator_min_uA_show)
Julius Wernerf5123572014-12-10 15:51:54 -08004871 $var !~ /^(?:[a-z_]*?)_?[a-z][A-Z](?:_[a-z_]+)?$/ &&
4872#Ignore some three character SI units explicitly, like MiB and KHz
4873 $var !~ /^(?:[a-z_]*?)_?(?:[KMGT]iB|[KMGT]?Hz)(?:_[a-z_]+)?$/) {
Joe Perches7e781f62013-09-11 14:23:55 -07004874 while ($var =~ m{($Ident)}g) {
4875 my $word = $1;
4876 next if ($word !~ /[A-Z][a-z]|[a-z][A-Z]/);
Joe Perchesd8b07712013-11-12 15:10:06 -08004877 if ($check) {
4878 seed_camelcase_includes();
4879 if (!$file && !$camelcase_file_seeded) {
4880 seed_camelcase_file($realfile);
4881 $camelcase_file_seeded = 1;
4882 }
4883 }
Joe Perches7e781f62013-09-11 14:23:55 -07004884 if (!defined $camelcase{$word}) {
4885 $camelcase{$word} = 1;
4886 CHK("CAMELCASE",
4887 "Avoid CamelCase: <$word>\n" . $herecurr);
4888 }
Joe Perches34456862013-07-03 15:05:34 -07004889 }
Joe Perches323c1262012-12-17 16:02:07 -08004890 }
4891 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004892
4893#no spaces allowed after \ in define
Joe Perchesd5e616f2013-09-11 14:23:54 -07004894 if ($line =~ /\#\s*define.*\\\s+$/) {
4895 if (WARN("WHITESPACE_AFTER_LINE_CONTINUATION",
4896 "Whitespace after \\ makes next lines useless\n" . $herecurr) &&
4897 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07004898 $fixed[$fixlinenr] =~ s/\s+$//;
Joe Perchesd5e616f2013-09-11 14:23:54 -07004899 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004900 }
4901
Fabian Frederick0e212e02015-04-16 12:44:25 -07004902# warn if <asm/foo.h> is #included and <linux/foo.h> is available and includes
4903# itself <asm/foo.h> (uses RAW line)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004904 if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) {
Andy Whitcrofte09dec42008-10-15 22:02:20 -07004905 my $file = "$1.h";
4906 my $checkfile = "include/linux/$file";
4907 if (-f "$root/$checkfile" &&
4908 $realfile ne $checkfile &&
Wolfram Sang7840a942010-08-09 17:20:57 -07004909 $1 !~ /$allowed_asm_includes/)
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004910 {
Fabian Frederick0e212e02015-04-16 12:44:25 -07004911 my $asminclude = `grep -Ec "#include\\s+<asm/$file>" $root/$checkfile`;
4912 if ($asminclude > 0) {
4913 if ($realfile =~ m{^arch/}) {
4914 CHK("ARCH_INCLUDE_LINUX",
4915 "Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
4916 } else {
4917 WARN("INCLUDE_LINUX",
4918 "Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
4919 }
Andy Whitcrofte09dec42008-10-15 22:02:20 -07004920 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07004921 }
4922 }
4923
Andy Whitcroft653d4872007-06-23 17:16:34 -07004924# multi-statement macros should be enclosed in a do while loop, grab the
4925# first statement and ensure its the whole macro if its not enclosed
Andy Whitcroftcf655042008-03-04 14:28:20 -08004926# in a known good container
Andy Whitcroftb8f96a32008-07-23 21:29:07 -07004927 if ($realfile !~ m@/vmlinux.lds.h$@ &&
4928 $line =~ /^.\s*\#\s*define\s*$Ident(\()?/) {
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07004929 my $ln = $linenr;
4930 my $cnt = $realcnt;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004931 my ($off, $dstat, $dcond, $rest);
4932 my $ctx = '';
Joe Perches08a28432014-10-13 15:51:55 -07004933 my $has_flow_statement = 0;
4934 my $has_arg_concat = 0;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004935 ($dstat, $dcond, $ln, $cnt, $off) =
Andy Whitcroftf74bd192012-01-10 15:09:54 -08004936 ctx_statement_block($linenr, $realcnt, 0);
4937 $ctx = $dstat;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004938 #print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n";
Andy Whitcrofta3bb97a2008-07-23 21:29:00 -07004939 #print "LINE<$lines[$ln-1]> len<" . length($lines[$ln-1]) . "\n";
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004940
Joe Perches08a28432014-10-13 15:51:55 -07004941 $has_flow_statement = 1 if ($ctx =~ /\b(goto|return)\b/);
Joe Perches62e15a62016-01-20 14:59:18 -08004942 $has_arg_concat = 1 if ($ctx =~ /\#\#/ && $ctx !~ /\#\#\s*(?:__VA_ARGS__|args)\b/);
Joe Perches08a28432014-10-13 15:51:55 -07004943
Joe Perchesf59b64b2016-10-11 13:52:08 -07004944 $dstat =~ s/^.\s*\#\s*define\s+$Ident(\([^\)]*\))?\s*//;
4945 my $define_args = $1;
4946 my $define_stmt = $dstat;
4947 my @def_args = ();
4948
4949 if (defined $define_args && $define_args ne "") {
4950 $define_args = substr($define_args, 1, length($define_args) - 2);
4951 $define_args =~ s/\s*//g;
4952 @def_args = split(",", $define_args);
4953 }
4954
Andy Whitcroft292f1a92008-07-23 21:29:11 -07004955 $dstat =~ s/$;//g;
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004956 $dstat =~ s/\\\n.//g;
4957 $dstat =~ s/^\s*//s;
4958 $dstat =~ s/\s*$//s;
4959
4960 # Flatten any parentheses and braces
Andy Whitcroftbf30d6e2008-10-15 22:02:33 -07004961 while ($dstat =~ s/\([^\(\)]*\)/1/ ||
4962 $dstat =~ s/\{[^\{\}]*\}/1/ ||
Vladimir Zapolskiy6b10df42016-01-20 14:59:21 -08004963 $dstat =~ s/.\[[^\[\]]*\]/1/)
Andy Whitcroftbf30d6e2008-10-15 22:02:33 -07004964 {
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07004965 }
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07004966
Andy Whitcrofte45bab82012-03-23 15:02:18 -07004967 # Flatten any obvious string concatentation.
Joe Perches33acb542015-06-25 15:02:54 -07004968 while ($dstat =~ s/($String)\s*$Ident/$1/ ||
4969 $dstat =~ s/$Ident\s*($String)/$1/)
Andy Whitcrofte45bab82012-03-23 15:02:18 -07004970 {
4971 }
4972
Joe Perches42e15292016-03-15 14:58:01 -07004973 # Make asm volatile uses seem like a generic function
4974 $dstat =~ s/\b_*asm_*\s+_*volatile_*\b/asm_volatile/g;
4975
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004976 my $exceptions = qr{
4977 $Declare|
4978 module_param_named|
Kees Cooka0a0a7a2012-10-04 17:13:38 -07004979 MODULE_PARM_DESC|
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004980 DECLARE_PER_CPU|
4981 DEFINE_PER_CPU|
Andy Whitcroft383099f2009-01-06 14:41:18 -08004982 __typeof__\(|
Stefani Seibold22fd2d32010-03-05 13:43:52 -08004983 union|
4984 struct|
Andy Whitcroftea71a0a2009-09-21 17:04:38 -07004985 \.$Ident\s*=\s*|
Vladimir Zapolskiy6b10df42016-01-20 14:59:21 -08004986 ^\"|\"$|
4987 ^\[
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07004988 }x;
Andy Whitcroft5eaa20b2010-10-26 14:23:18 -07004989 #print "REST<$rest> dstat<$dstat> ctx<$ctx>\n";
Joe Perchesf59b64b2016-10-11 13:52:08 -07004990
4991 $ctx =~ s/\n*$//;
Joe Perchesf59b64b2016-10-11 13:52:08 -07004992 my $stmt_cnt = statement_rawlines($ctx);
Tobin C. Hardinge3d95a22018-04-10 16:33:27 -07004993 my $herectx = get_stat_here($linenr, $stmt_cnt, $here);
Joe Perchesf59b64b2016-10-11 13:52:08 -07004994
Andy Whitcroftf74bd192012-01-10 15:09:54 -08004995 if ($dstat ne '' &&
4996 $dstat !~ /^(?:$Ident|-?$Constant),$/ && # 10, // foo(),
4997 $dstat !~ /^(?:$Ident|-?$Constant);$/ && # foo();
Joe Perches3cc4b1c2013-07-03 15:05:27 -07004998 $dstat !~ /^[!~-]?(?:$Lval|$Constant)$/ && # 10 // foo() // !foo // ~foo // -foo // foo->bar // foo.bar->baz
Joe Perches356fd392014-08-06 16:10:31 -07004999 $dstat !~ /^'X'$/ && $dstat !~ /^'XX'$/ && # character constants
Andy Whitcroftf74bd192012-01-10 15:09:54 -08005000 $dstat !~ /$exceptions/ &&
5001 $dstat !~ /^\.$Ident\s*=/ && # .foo =
Joe Perchese942e2c2013-04-17 15:58:26 -07005002 $dstat !~ /^(?:\#\s*$Ident|\#\s*$Constant)\s*$/ && # stringification #foo
Andy Whitcroft72f115f2012-01-10 15:10:06 -08005003 $dstat !~ /^do\s*$Constant\s*while\s*$Constant;?$/ && # do {...} while (...); // do {...} while (...)
Andy Whitcroftf74bd192012-01-10 15:09:54 -08005004 $dstat !~ /^for\s*$Constant$/ && # for (...)
5005 $dstat !~ /^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ && # for (...) bar()
5006 $dstat !~ /^do\s*{/ && # do {...
Eddie Kovsky4e5d56b2015-09-09 15:37:52 -07005007 $dstat !~ /^\(\{/ && # ({...
Joe Perchesf95a7e62013-09-11 14:24:00 -07005008 $ctx !~ /^.\s*#\s*define\s+TRACE_(?:SYSTEM|INCLUDE_FILE|INCLUDE_PATH)\b/)
Andy Whitcroftf74bd192012-01-10 15:09:54 -08005009 {
Joe Perchese7955562017-05-08 15:55:48 -07005010 if ($dstat =~ /^\s*if\b/) {
5011 ERROR("MULTISTATEMENT_MACRO_USE_DO_WHILE",
5012 "Macros starting with if should be enclosed by a do - while loop to avoid possible if/else logic defects\n" . "$herectx");
5013 } elsif ($dstat =~ /;/) {
Andy Whitcroftf74bd192012-01-10 15:09:54 -08005014 ERROR("MULTISTATEMENT_MACRO_USE_DO_WHILE",
5015 "Macros with multiple statements should be enclosed in a do - while loop\n" . "$herectx");
5016 } else {
Joe Perches000d1cc12011-07-25 17:13:25 -07005017 ERROR("COMPLEX_MACRO",
Andrew Morton388982b2014-10-13 15:51:40 -07005018 "Macros with complex values should be enclosed in parentheses\n" . "$herectx");
Andy Whitcroftd8aaf122007-06-23 17:16:44 -07005019 }
Joe Perchesf59b64b2016-10-11 13:52:08 -07005020
5021 }
Joe Perches52076492016-10-11 13:52:14 -07005022
5023 # Make $define_stmt single line, comment-free, etc
5024 my @stmt_array = split('\n', $define_stmt);
5025 my $first = 1;
5026 $define_stmt = "";
5027 foreach my $l (@stmt_array) {
5028 $l =~ s/\\$//;
5029 if ($first) {
5030 $define_stmt = $l;
5031 $first = 0;
5032 } elsif ($l =~ /^[\+ ]/) {
5033 $define_stmt .= substr($l, 1);
5034 }
5035 }
5036 $define_stmt =~ s/$;//g;
5037 $define_stmt =~ s/\s+/ /g;
5038 $define_stmt = trim($define_stmt);
5039
Joe Perchesf59b64b2016-10-11 13:52:08 -07005040# check if any macro arguments are reused (ignore '...' and 'type')
5041 foreach my $arg (@def_args) {
5042 next if ($arg =~ /\.\.\./);
Joe Perches9192d412016-10-11 13:52:11 -07005043 next if ($arg =~ /^type$/i);
Joe Perches7fe528a22017-07-10 15:52:27 -07005044 my $tmp_stmt = $define_stmt;
5045 $tmp_stmt =~ s/\b(typeof|__typeof__|__builtin\w+|typecheck\s*\(\s*$Type\s*,|\#+)\s*\(*\s*$arg\s*\)*\b//g;
5046 $tmp_stmt =~ s/\#+\s*$arg\b//g;
5047 $tmp_stmt =~ s/\b$arg\s*\#\#//g;
Joe Perchesd41362e2018-05-25 14:48:04 -07005048 my $use_cnt = () = $tmp_stmt =~ /\b$arg\b/g;
Joe Perchesf59b64b2016-10-11 13:52:08 -07005049 if ($use_cnt > 1) {
5050 CHK("MACRO_ARG_REUSE",
5051 "Macro argument reuse '$arg' - possible side-effects?\n" . "$herectx");
Joe Perches9192d412016-10-11 13:52:11 -07005052 }
5053# check if any macro arguments may have other precedence issues
Joe Perches7fe528a22017-07-10 15:52:27 -07005054 if ($tmp_stmt =~ m/($Operators)?\s*\b$arg\b\s*($Operators)?/m &&
Joe Perches9192d412016-10-11 13:52:11 -07005055 ((defined($1) && $1 ne ',') ||
5056 (defined($2) && $2 ne ','))) {
5057 CHK("MACRO_ARG_PRECEDENCE",
5058 "Macro argument '$arg' may be better as '($arg)' to avoid precedence issues\n" . "$herectx");
Joe Perchesf59b64b2016-10-11 13:52:08 -07005059 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07005060 }
Joe Perches5023d342012-12-17 16:01:47 -08005061
Joe Perches08a28432014-10-13 15:51:55 -07005062# check for macros with flow control, but without ## concatenation
5063# ## concatenation is commonly a macro that defines a function so ignore those
5064 if ($has_flow_statement && !$has_arg_concat) {
Joe Perches08a28432014-10-13 15:51:55 -07005065 my $cnt = statement_rawlines($ctx);
Tobin C. Hardinge3d95a22018-04-10 16:33:27 -07005066 my $herectx = get_stat_here($linenr, $cnt, $here);
Joe Perches08a28432014-10-13 15:51:55 -07005067
Joe Perches08a28432014-10-13 15:51:55 -07005068 WARN("MACRO_WITH_FLOW_CONTROL",
5069 "Macros with flow control statements should be avoided\n" . "$herectx");
5070 }
5071
Joe Perches481eb482012-12-17 16:01:56 -08005072# check for line continuations outside of #defines, preprocessor #, and asm
Joe Perches5023d342012-12-17 16:01:47 -08005073
5074 } else {
5075 if ($prevline !~ /^..*\\$/ &&
Joe Perches481eb482012-12-17 16:01:56 -08005076 $line !~ /^\+\s*\#.*\\$/ && # preprocessor
5077 $line !~ /^\+.*\b(__asm__|asm)\b.*\\$/ && # asm
Joe Perches5023d342012-12-17 16:01:47 -08005078 $line =~ /^\+.*\\$/) {
5079 WARN("LINE_CONTINUATIONS",
5080 "Avoid unnecessary line continuations\n" . $herecurr);
5081 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07005082 }
5083
Joe Perchesb13edf72012-07-30 14:41:24 -07005084# do {} while (0) macro tests:
5085# single-statement macros do not need to be enclosed in do while (0) loop,
5086# macro should not end with a semicolon
5087 if ($^V && $^V ge 5.10.0 &&
5088 $realfile !~ m@/vmlinux.lds.h$@ &&
5089 $line =~ /^.\s*\#\s*define\s+$Ident(\()?/) {
5090 my $ln = $linenr;
5091 my $cnt = $realcnt;
5092 my ($off, $dstat, $dcond, $rest);
5093 my $ctx = '';
5094 ($dstat, $dcond, $ln, $cnt, $off) =
5095 ctx_statement_block($linenr, $realcnt, 0);
5096 $ctx = $dstat;
5097
5098 $dstat =~ s/\\\n.//g;
Joe Perches1b36b202015-02-13 14:38:32 -08005099 $dstat =~ s/$;/ /g;
Joe Perchesb13edf72012-07-30 14:41:24 -07005100
5101 if ($dstat =~ /^\+\s*#\s*define\s+$Ident\s*${balanced_parens}\s*do\s*{(.*)\s*}\s*while\s*\(\s*0\s*\)\s*([;\s]*)\s*$/) {
5102 my $stmts = $2;
5103 my $semis = $3;
5104
5105 $ctx =~ s/\n*$//;
5106 my $cnt = statement_rawlines($ctx);
Tobin C. Hardinge3d95a22018-04-10 16:33:27 -07005107 my $herectx = get_stat_here($linenr, $cnt, $here);
Joe Perchesb13edf72012-07-30 14:41:24 -07005108
Joe Perchesac8e97f2012-08-21 16:15:53 -07005109 if (($stmts =~ tr/;/;/) == 1 &&
5110 $stmts !~ /^\s*(if|while|for|switch)\b/) {
Joe Perchesb13edf72012-07-30 14:41:24 -07005111 WARN("SINGLE_STATEMENT_DO_WHILE_MACRO",
5112 "Single statement macros should not use a do {} while (0) loop\n" . "$herectx");
5113 }
5114 if (defined $semis && $semis ne "") {
5115 WARN("DO_WHILE_MACRO_WITH_TRAILING_SEMICOLON",
5116 "do {} while (0) macros should not be semicolon terminated\n" . "$herectx");
5117 }
Joe Perchesf5ef95b2014-06-04 16:12:06 -07005118 } elsif ($dstat =~ /^\+\s*#\s*define\s+$Ident.*;\s*$/) {
5119 $ctx =~ s/\n*$//;
5120 my $cnt = statement_rawlines($ctx);
Tobin C. Hardinge3d95a22018-04-10 16:33:27 -07005121 my $herectx = get_stat_here($linenr, $cnt, $here);
Joe Perchesf5ef95b2014-06-04 16:12:06 -07005122
5123 WARN("TRAILING_SEMICOLON",
5124 "macros should not use a trailing semicolon\n" . "$herectx");
Joe Perchesb13edf72012-07-30 14:41:24 -07005125 }
5126 }
5127
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07005128# check for redundant bracing round if etc
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005129 if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) {
5130 my ($level, $endln, @chunks) =
Andy Whitcroftcf655042008-03-04 14:28:20 -08005131 ctx_statement_full($linenr, $realcnt, 1);
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005132 #print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08005133 #print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n";
5134 if ($#chunks > 0 && $level == 0) {
Joe Perchesaad4f612012-03-23 15:02:19 -07005135 my @allowed = ();
5136 my $allow = 0;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005137 my $seen = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07005138 my $herectx = $here . "\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08005139 my $ln = $linenr - 1;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005140 for my $chunk (@chunks) {
5141 my ($cond, $block) = @{$chunk};
5142
Andy Whitcroft773647a2008-03-28 14:15:58 -07005143 # If the condition carries leading newlines, then count those as offsets.
5144 my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s);
5145 my $offset = statement_rawlines($whitespace) - 1;
5146
Joe Perchesaad4f612012-03-23 15:02:19 -07005147 $allowed[$allow] = 0;
Andy Whitcroft773647a2008-03-28 14:15:58 -07005148 #print "COND<$cond> whitespace<$whitespace> offset<$offset>\n";
5149
5150 # We have looked at and allowed this specific line.
5151 $suppress_ifbraces{$ln + $offset} = 1;
5152
5153 $herectx .= "$rawlines[$ln + $offset]\n[...]\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08005154 $ln += statement_rawlines($block) - 1;
5155
Andy Whitcroft773647a2008-03-28 14:15:58 -07005156 substr($block, 0, length($cond), '');
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005157
5158 $seen++ if ($block =~ /^\s*{/);
5159
Joe Perchesaad4f612012-03-23 15:02:19 -07005160 #print "cond<$cond> block<$block> allowed<$allowed[$allow]>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08005161 if (statement_lines($cond) > 1) {
5162 #print "APW: ALLOWED: cond<$cond>\n";
Joe Perchesaad4f612012-03-23 15:02:19 -07005163 $allowed[$allow] = 1;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005164 }
5165 if ($block =~/\b(?:if|for|while)\b/) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08005166 #print "APW: ALLOWED: block<$block>\n";
Joe Perchesaad4f612012-03-23 15:02:19 -07005167 $allowed[$allow] = 1;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005168 }
Andy Whitcroftcf655042008-03-04 14:28:20 -08005169 if (statement_block_size($block) > 1) {
5170 #print "APW: ALLOWED: lines block<$block>\n";
Joe Perchesaad4f612012-03-23 15:02:19 -07005171 $allowed[$allow] = 1;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005172 }
Joe Perchesaad4f612012-03-23 15:02:19 -07005173 $allow++;
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005174 }
Joe Perchesaad4f612012-03-23 15:02:19 -07005175 if ($seen) {
5176 my $sum_allowed = 0;
5177 foreach (@allowed) {
5178 $sum_allowed += $_;
5179 }
5180 if ($sum_allowed == 0) {
5181 WARN("BRACES",
5182 "braces {} are not necessary for any arm of this statement\n" . $herectx);
5183 } elsif ($sum_allowed != $allow &&
5184 $seen != $allow) {
5185 CHK("BRACES",
5186 "braces {} should be used on all arms of this statement\n" . $herectx);
5187 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005188 }
5189 }
5190 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07005191 if (!defined $suppress_ifbraces{$linenr - 1} &&
Andy Whitcroft13214ad2008-02-08 04:22:03 -08005192 $line =~ /\b(if|while|for|else)\b/) {
Andy Whitcroftcf655042008-03-04 14:28:20 -08005193 my $allowed = 0;
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07005194
Andy Whitcroftcf655042008-03-04 14:28:20 -08005195 # Check the pre-context.
5196 if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) {
5197 #print "APW: ALLOWED: pre<$1>\n";
5198 $allowed = 1;
5199 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07005200
5201 my ($level, $endln, @chunks) =
5202 ctx_statement_full($linenr, $realcnt, $-[0]);
5203
Andy Whitcroftcf655042008-03-04 14:28:20 -08005204 # Check the condition.
5205 my ($cond, $block) = @{$chunks[0]};
Andy Whitcroft773647a2008-03-28 14:15:58 -07005206 #print "CHECKING<$linenr> cond<$cond> block<$block>\n";
Andy Whitcroftcf655042008-03-04 14:28:20 -08005207 if (defined $cond) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07005208 substr($block, 0, length($cond), '');
Andy Whitcroftcf655042008-03-04 14:28:20 -08005209 }
5210 if (statement_lines($cond) > 1) {
5211 #print "APW: ALLOWED: cond<$cond>\n";
5212 $allowed = 1;
5213 }
5214 if ($block =~/\b(?:if|for|while)\b/) {
5215 #print "APW: ALLOWED: block<$block>\n";
5216 $allowed = 1;
5217 }
5218 if (statement_block_size($block) > 1) {
5219 #print "APW: ALLOWED: lines block<$block>\n";
5220 $allowed = 1;
5221 }
5222 # Check the post-context.
5223 if (defined $chunks[1]) {
5224 my ($cond, $block) = @{$chunks[1]};
5225 if (defined $cond) {
Andy Whitcroft773647a2008-03-28 14:15:58 -07005226 substr($block, 0, length($cond), '');
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07005227 }
Andy Whitcroftcf655042008-03-04 14:28:20 -08005228 if ($block =~ /^\s*\{/) {
5229 #print "APW: ALLOWED: chunk-1 block<$block>\n";
5230 $allowed = 1;
5231 }
5232 }
5233 if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
Andy Whitcroftf0556632008-10-15 22:02:23 -07005234 my $cnt = statement_rawlines($block);
Tobin C. Hardinge3d95a22018-04-10 16:33:27 -07005235 my $herectx = get_stat_here($linenr, $cnt, $here);
Andy Whitcroftcf655042008-03-04 14:28:20 -08005236
Joe Perches000d1cc12011-07-25 17:13:25 -07005237 WARN("BRACES",
5238 "braces {} are not necessary for single statement blocks\n" . $herectx);
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07005239 }
5240 }
5241
Joe Perchese4c5bab2017-02-24 15:01:41 -08005242# check for single line unbalanced braces
Sven Eckelmann95330472017-02-24 15:01:43 -08005243 if ($sline =~ /^.\s*\}\s*else\s*$/ ||
5244 $sline =~ /^.\s*else\s*\{\s*$/) {
Joe Perchese4c5bab2017-02-24 15:01:41 -08005245 CHK("BRACES", "Unbalanced braces around else statement\n" . $herecurr);
5246 }
5247
Joe Perches0979ae62012-12-17 16:01:59 -08005248# check for unnecessary blank lines around braces
Joe Perches77b9a532013-07-03 15:05:29 -07005249 if (($line =~ /^.\s*}\s*$/ && $prevrawline =~ /^.\s*$/)) {
Joe Perchesf8e58212015-02-13 14:38:46 -08005250 if (CHK("BRACES",
5251 "Blank lines aren't necessary before a close brace '}'\n" . $hereprev) &&
5252 $fix && $prevrawline =~ /^\+/) {
5253 fix_delete_line($fixlinenr - 1, $prevrawline);
5254 }
Joe Perches0979ae62012-12-17 16:01:59 -08005255 }
Joe Perches77b9a532013-07-03 15:05:29 -07005256 if (($rawline =~ /^.\s*$/ && $prevline =~ /^..*{\s*$/)) {
Joe Perchesf8e58212015-02-13 14:38:46 -08005257 if (CHK("BRACES",
5258 "Blank lines aren't necessary after an open brace '{'\n" . $hereprev) &&
5259 $fix) {
5260 fix_delete_line($fixlinenr, $rawline);
5261 }
Joe Perches0979ae62012-12-17 16:01:59 -08005262 }
5263
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07005264# no volatiles please
Andy Whitcroft6c72ffa2007-10-18 03:05:08 -07005265 my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
5266 if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005267 WARN("VOLATILE",
Mauro Carvalho Chehab8c27ceff32016-10-18 10:12:27 -02005268 "Use of volatile is usually wrong: see Documentation/process/volatile-considered-harmful.rst\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07005269 }
5270
Joe Perches5e4f6ba2014-12-10 15:52:05 -08005271# Check for user-visible strings broken across lines, which breaks the ability
5272# to grep for the string. Make exceptions when the previous string ends in a
5273# newline (multiple lines in one string constant) or '\t', '\r', ';', or '{'
5274# (common in inline assembly) or is a octal \123 or hexadecimal \xaf value
Joe Perches33acb542015-06-25 15:02:54 -07005275 if ($line =~ /^\+\s*$String/ &&
Joe Perches5e4f6ba2014-12-10 15:52:05 -08005276 $prevline =~ /"\s*$/ &&
5277 $prevrawline !~ /(?:\\(?:[ntr]|[0-7]{1,3}|x[0-9a-fA-F]{1,2})|;\s*|\{\s*)"\s*$/) {
5278 if (WARN("SPLIT_STRING",
5279 "quoted string split across lines\n" . $hereprev) &&
5280 $fix &&
5281 $prevrawline =~ /^\+.*"\s*$/ &&
5282 $last_coalesced_string_linenr != $linenr - 1) {
5283 my $extracted_string = get_quoted_string($line, $rawline);
5284 my $comma_close = "";
5285 if ($rawline =~ /\Q$extracted_string\E(\s*\)\s*;\s*$|\s*,\s*)/) {
5286 $comma_close = $1;
5287 }
5288
5289 fix_delete_line($fixlinenr - 1, $prevrawline);
5290 fix_delete_line($fixlinenr, $rawline);
5291 my $fixedline = $prevrawline;
5292 $fixedline =~ s/"\s*$//;
5293 $fixedline .= substr($extracted_string, 1) . trim($comma_close);
5294 fix_insert_line($fixlinenr - 1, $fixedline);
5295 $fixedline = $rawline;
5296 $fixedline =~ s/\Q$extracted_string\E\Q$comma_close\E//;
5297 if ($fixedline !~ /\+\s*$/) {
5298 fix_insert_line($fixlinenr, $fixedline);
5299 }
5300 $last_coalesced_string_linenr = $linenr;
5301 }
5302 }
5303
5304# check for missing a space in a string concatenation
5305 if ($prevrawline =~ /[^\\]\w"$/ && $rawline =~ /^\+[\t ]+"\w/) {
5306 WARN('MISSING_SPACE',
5307 "break quoted strings at a space character\n" . $hereprev);
5308 }
5309
Joe Perchese4b7d302017-05-08 15:55:51 -07005310# check for an embedded function name in a string when the function is known
5311# This does not work very well for -f --file checking as it depends on patch
5312# context providing the function name or a single line form for in-file
5313# function declarations
Joe Perches77cb8542017-02-24 15:01:28 -08005314 if ($line =~ /^\+.*$String/ &&
5315 defined($context_function) &&
Joe Perchese4b7d302017-05-08 15:55:51 -07005316 get_quoted_string($line, $rawline) =~ /\b$context_function\b/ &&
5317 length(get_quoted_string($line, $rawline)) != (length($context_function) + 2)) {
Joe Perches77cb8542017-02-24 15:01:28 -08005318 WARN("EMBEDDED_FUNCTION_NAME",
Joe Perchese4b7d302017-05-08 15:55:51 -07005319 "Prefer using '\"%s...\", __func__' to using '$context_function', this function's name, in a string\n" . $herecurr);
Joe Perches77cb8542017-02-24 15:01:28 -08005320 }
5321
Joe Perches5e4f6ba2014-12-10 15:52:05 -08005322# check for spaces before a quoted newline
5323 if ($rawline =~ /^.*\".*\s\\n/) {
5324 if (WARN("QUOTED_WHITESPACE_BEFORE_NEWLINE",
5325 "unnecessary whitespace before a quoted newline\n" . $herecurr) &&
5326 $fix) {
5327 $fixed[$fixlinenr] =~ s/^(\+.*\".*)\s+\\n/$1\\n/;
5328 }
5329
5330 }
5331
Joe Perchesf17dba42014-10-13 15:51:51 -07005332# concatenated string without spaces between elements
Joe Perches79682c02018-08-21 21:57:29 -07005333 if ($line =~ /$String[A-Za-z0-9_]/ || $line =~ /[A-Za-z0-9_]$String/) {
5334 if (CHK("CONCATENATED_STRING",
5335 "Concatenated strings should use spaces between elements\n" . $herecurr) &&
5336 $fix) {
5337 while ($line =~ /($String)/g) {
5338 my $extracted_string = substr($rawline, $-[0], $+[0] - $-[0]);
5339 $fixed[$fixlinenr] =~ s/\Q$extracted_string\E([A-Za-z0-9_])/$extracted_string $1/;
5340 $fixed[$fixlinenr] =~ s/([A-Za-z0-9_])\Q$extracted_string\E/$1 $extracted_string/;
5341 }
5342 }
Joe Perchesf17dba42014-10-13 15:51:51 -07005343 }
5344
Joe Perches90ad30e2014-12-10 15:51:59 -08005345# uncoalesced string fragments
Joe Perches33acb542015-06-25 15:02:54 -07005346 if ($line =~ /$String\s*"/) {
Joe Perches79682c02018-08-21 21:57:29 -07005347 if (WARN("STRING_FRAGMENTS",
5348 "Consecutive strings are generally better as a single string\n" . $herecurr) &&
5349 $fix) {
5350 while ($line =~ /($String)(?=\s*")/g) {
5351 my $extracted_string = substr($rawline, $-[0], $+[0] - $-[0]);
5352 $fixed[$fixlinenr] =~ s/\Q$extracted_string\E\s*"/substr($extracted_string, 0, -1)/e;
5353 }
5354 }
Joe Perches90ad30e2014-12-10 15:51:59 -08005355 }
5356
Alexey Dobriyan522b8372017-02-27 14:30:05 -08005357# check for non-standard and hex prefixed decimal printf formats
5358 my $show_L = 1; #don't show the same defect twice
5359 my $show_Z = 1;
Joe Perches5e4f6ba2014-12-10 15:52:05 -08005360 while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) {
Alexey Dobriyan522b8372017-02-27 14:30:05 -08005361 my $string = substr($rawline, $-[1], $+[1] - $-[1]);
Joe Perches5e4f6ba2014-12-10 15:52:05 -08005362 $string =~ s/%%/__/g;
Alexey Dobriyan522b8372017-02-27 14:30:05 -08005363 # check for %L
5364 if ($show_L && $string =~ /%[\*\d\.\$]*L([diouxX])/) {
Joe Perches5e4f6ba2014-12-10 15:52:05 -08005365 WARN("PRINTF_L",
Alexey Dobriyan522b8372017-02-27 14:30:05 -08005366 "\%L$1 is non-standard C, use %ll$1\n" . $herecurr);
5367 $show_L = 0;
Joe Perches5e4f6ba2014-12-10 15:52:05 -08005368 }
Alexey Dobriyan522b8372017-02-27 14:30:05 -08005369 # check for %Z
5370 if ($show_Z && $string =~ /%[\*\d\.\$]*Z([diouxX])/) {
5371 WARN("PRINTF_Z",
5372 "%Z$1 is non-standard C, use %z$1\n" . $herecurr);
5373 $show_Z = 0;
5374 }
5375 # check for 0x<decimal>
5376 if ($string =~ /0x%[\*\d\.\$\Llzth]*[diou]/) {
5377 ERROR("PRINTF_0XDECIMAL",
Joe Perches6e300752015-09-09 15:37:47 -07005378 "Prefixing 0x with decimal output is defective\n" . $herecurr);
5379 }
Joe Perches5e4f6ba2014-12-10 15:52:05 -08005380 }
5381
5382# check for line continuations in quoted strings with odd counts of "
Joe Perches3f7f3352018-02-06 15:38:52 -08005383 if ($rawline =~ /\\$/ && $sline =~ tr/"/"/ % 2) {
Joe Perches5e4f6ba2014-12-10 15:52:05 -08005384 WARN("LINE_CONTINUATIONS",
5385 "Avoid line continuations in quoted strings\n" . $herecurr);
5386 }
5387
Andy Whitcroft00df3442007-06-08 13:47:06 -07005388# warn about #if 0
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07005389 if ($line =~ /^.\s*\#\s*if\s+0\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005390 CHK("REDUNDANT_CODE",
5391 "if this code is redundant consider removing it\n" .
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07005392 $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07005393 }
5394
Andy Whitcroft03df4b52012-12-17 16:01:52 -08005395# check for needless "if (<foo>) fn(<foo>)" uses
5396 if ($prevline =~ /\bif\s*\(\s*($Lval)\s*\)/) {
Joe Perches100425d2015-09-09 15:37:36 -07005397 my $tested = quotemeta($1);
5398 my $expr = '\s*\(\s*' . $tested . '\s*\)\s*;';
5399 if ($line =~ /\b(kfree|usb_free_urb|debugfs_remove(?:_recursive)?|(?:kmem_cache|mempool|dma_pool)_destroy)$expr/) {
5400 my $func = $1;
5401 if (WARN('NEEDLESS_IF',
5402 "$func(NULL) is safe and this check is probably not required\n" . $hereprev) &&
5403 $fix) {
5404 my $do_fix = 1;
5405 my $leading_tabs = "";
5406 my $new_leading_tabs = "";
5407 if ($lines[$linenr - 2] =~ /^\+(\t*)if\s*\(\s*$tested\s*\)\s*$/) {
5408 $leading_tabs = $1;
5409 } else {
5410 $do_fix = 0;
5411 }
5412 if ($lines[$linenr - 1] =~ /^\+(\t+)$func\s*\(\s*$tested\s*\)\s*;\s*$/) {
5413 $new_leading_tabs = $1;
5414 if (length($leading_tabs) + 1 ne length($new_leading_tabs)) {
5415 $do_fix = 0;
5416 }
5417 } else {
5418 $do_fix = 0;
5419 }
5420 if ($do_fix) {
5421 fix_delete_line($fixlinenr - 1, $prevrawline);
5422 $fixed[$fixlinenr] =~ s/^\+$new_leading_tabs/\+$leading_tabs/;
5423 }
5424 }
Greg Kroah-Hartman4c432a82008-07-23 21:29:04 -07005425 }
5426 }
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07005427
Joe Perchesebfdc402014-08-06 16:10:27 -07005428# check for unnecessary "Out of Memory" messages
5429 if ($line =~ /^\+.*\b$logFunctions\s*\(/ &&
5430 $prevline =~ /^[ \+]\s*if\s*\(\s*(\!\s*|NULL\s*==\s*)?($Lval)(\s*==\s*NULL\s*)?\s*\)/ &&
5431 (defined $1 || defined $3) &&
5432 $linenr > 3) {
5433 my $testval = $2;
5434 my $testline = $lines[$linenr - 3];
5435
5436 my ($s, $c) = ctx_statement_block($linenr - 3, $realcnt, 0);
5437# print("line: <$line>\nprevline: <$prevline>\ns: <$s>\nc: <$c>\n\n\n");
5438
Joe Perchesfb0d0e02017-07-10 15:52:04 -07005439 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 -07005440 WARN("OOM_MESSAGE",
5441 "Possible unnecessary 'out of memory' message\n" . $hereprev);
5442 }
5443 }
5444
Joe Perchesf78d98f2014-10-13 15:52:01 -07005445# check for logging functions with KERN_<LEVEL>
Paolo Bonzinidcaf1122015-02-13 14:38:26 -08005446 if ($line !~ /printk(?:_ratelimited|_once)?\s*\(/ &&
Joe Perchesf78d98f2014-10-13 15:52:01 -07005447 $line =~ /\b$logFunctions\s*\(.*\b(KERN_[A-Z]+)\b/) {
5448 my $level = $1;
5449 if (WARN("UNNECESSARY_KERN_LEVEL",
5450 "Possible unnecessary $level\n" . $herecurr) &&
5451 $fix) {
5452 $fixed[$fixlinenr] =~ s/\s*$level\s*//;
5453 }
5454 }
5455
Joe Perches45c55e92017-02-24 15:01:31 -08005456# check for logging continuations
5457 if ($line =~ /\bprintk\s*\(\s*KERN_CONT\b|\bpr_cont\s*\(/) {
5458 WARN("LOGGING_CONTINUATION",
5459 "Avoid logging continuation uses where feasible\n" . $herecurr);
5460 }
5461
Joe Perchesabb08a52014-12-10 15:51:46 -08005462# check for mask then right shift without a parentheses
5463 if ($^V && $^V ge 5.10.0 &&
5464 $line =~ /$LvalOrFunc\s*\&\s*($LvalOrFunc)\s*>>/ &&
5465 $4 !~ /^\&/) { # $LvalOrFunc may be &foo, ignore if so
5466 WARN("MASK_THEN_SHIFT",
5467 "Possible precedence defect with mask then right shift - may need parentheses\n" . $herecurr);
5468 }
5469
Joe Perchesb75ac612014-12-10 15:52:02 -08005470# check for pointer comparisons to NULL
5471 if ($^V && $^V ge 5.10.0) {
5472 while ($line =~ /\b$LvalOrFunc\s*(==|\!=)\s*NULL\b/g) {
5473 my $val = $1;
5474 my $equal = "!";
5475 $equal = "" if ($4 eq "!=");
5476 if (CHK("COMPARISON_TO_NULL",
5477 "Comparison to NULL could be written \"${equal}${val}\"\n" . $herecurr) &&
5478 $fix) {
5479 $fixed[$fixlinenr] =~ s/\b\Q$val\E\s*(?:==|\!=)\s*NULL\b/$equal$val/;
5480 }
5481 }
5482 }
5483
Joe Perches8716de32013-09-11 14:24:05 -07005484# check for bad placement of section $InitAttribute (e.g.: __initdata)
5485 if ($line =~ /(\b$InitAttribute\b)/) {
5486 my $attr = $1;
5487 if ($line =~ /^\+\s*static\s+(?:const\s+)?(?:$attr\s+)?($NonptrTypeWithAttr)\s+(?:$attr\s+)?($Ident(?:\[[^]]*\])?)\s*[=;]/) {
5488 my $ptr = $1;
5489 my $var = $2;
5490 if ((($ptr =~ /\b(union|struct)\s+$attr\b/ &&
5491 ERROR("MISPLACED_INIT",
5492 "$attr should be placed after $var\n" . $herecurr)) ||
5493 ($ptr !~ /\b(union|struct)\s+$attr\b/ &&
5494 WARN("MISPLACED_INIT",
5495 "$attr should be placed after $var\n" . $herecurr))) &&
5496 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005497 $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 -07005498 }
5499 }
5500 }
5501
Joe Perchese970b8842013-11-12 15:10:10 -08005502# check for $InitAttributeData (ie: __initdata) with const
5503 if ($line =~ /\bconst\b/ && $line =~ /($InitAttributeData)/) {
5504 my $attr = $1;
5505 $attr =~ /($InitAttributePrefix)(.*)/;
5506 my $attr_prefix = $1;
5507 my $attr_type = $2;
5508 if (ERROR("INIT_ATTRIBUTE",
5509 "Use of const init definition must use ${attr_prefix}initconst\n" . $herecurr) &&
5510 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005511 $fixed[$fixlinenr] =~
Joe Perchese970b8842013-11-12 15:10:10 -08005512 s/$InitAttributeData/${attr_prefix}initconst/;
5513 }
5514 }
5515
5516# check for $InitAttributeConst (ie: __initconst) without const
5517 if ($line !~ /\bconst\b/ && $line =~ /($InitAttributeConst)/) {
5518 my $attr = $1;
5519 if (ERROR("INIT_ATTRIBUTE",
5520 "Use of $attr requires a separate use of const\n" . $herecurr) &&
5521 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005522 my $lead = $fixed[$fixlinenr] =~
Joe Perchese970b8842013-11-12 15:10:10 -08005523 /(^\+\s*(?:static\s+))/;
5524 $lead = rtrim($1);
5525 $lead = "$lead " if ($lead !~ /^\+$/);
5526 $lead = "${lead}const ";
Joe Perches194f66f2014-08-06 16:11:03 -07005527 $fixed[$fixlinenr] =~ s/(^\+\s*(?:static\s+))/$lead/;
Joe Perchese970b8842013-11-12 15:10:10 -08005528 }
5529 }
5530
Joe Perchesc17893c2015-04-16 12:44:42 -07005531# check for __read_mostly with const non-pointer (should just be const)
5532 if ($line =~ /\b__read_mostly\b/ &&
5533 $line =~ /($Type)\s*$Ident/ && $1 !~ /\*\s*$/ && $1 =~ /\bconst\b/) {
5534 if (ERROR("CONST_READ_MOSTLY",
5535 "Invalid use of __read_mostly with const type\n" . $herecurr) &&
5536 $fix) {
5537 $fixed[$fixlinenr] =~ s/\s+__read_mostly\b//;
5538 }
5539 }
5540
Joe Perchesfbdb8132014-04-03 14:49:14 -07005541# don't use __constant_<foo> functions outside of include/uapi/
5542 if ($realfile !~ m@^include/uapi/@ &&
5543 $line =~ /(__constant_(?:htons|ntohs|[bl]e(?:16|32|64)_to_cpu|cpu_to_[bl]e(?:16|32|64)))\s*\(/) {
5544 my $constant_func = $1;
5545 my $func = $constant_func;
5546 $func =~ s/^__constant_//;
5547 if (WARN("CONSTANT_CONVERSION",
5548 "$constant_func should be $func\n" . $herecurr) &&
5549 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005550 $fixed[$fixlinenr] =~ s/\b$constant_func\b/$func/g;
Joe Perchesfbdb8132014-04-03 14:49:14 -07005551 }
5552 }
5553
Patrick Pannuto1a15a252010-08-09 17:21:01 -07005554# prefer usleep_range over udelay
Bruce Allan37581c22013-02-21 16:44:19 -08005555 if ($line =~ /\budelay\s*\(\s*(\d+)\s*\)/) {
Joe Perches43c1d772014-04-03 14:49:11 -07005556 my $delay = $1;
Patrick Pannuto1a15a252010-08-09 17:21:01 -07005557 # ignore udelay's < 10, however
Joe Perches43c1d772014-04-03 14:49:11 -07005558 if (! ($delay < 10) ) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005559 CHK("USLEEP_RANGE",
Joe Perches43c1d772014-04-03 14:49:11 -07005560 "usleep_range is preferred over udelay; see Documentation/timers/timers-howto.txt\n" . $herecurr);
5561 }
5562 if ($delay > 2000) {
5563 WARN("LONG_UDELAY",
5564 "long udelay - prefer mdelay; see arch/arm/include/asm/delay.h\n" . $herecurr);
Patrick Pannuto1a15a252010-08-09 17:21:01 -07005565 }
5566 }
5567
Patrick Pannuto09ef8722010-08-09 17:21:02 -07005568# warn about unexpectedly long msleep's
5569 if ($line =~ /\bmsleep\s*\((\d+)\);/) {
5570 if ($1 < 20) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005571 WARN("MSLEEP",
Joe Perches43c1d772014-04-03 14:49:11 -07005572 "msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt\n" . $herecurr);
Patrick Pannuto09ef8722010-08-09 17:21:02 -07005573 }
5574 }
5575
Joe Perches36ec1932013-07-03 15:05:25 -07005576# check for comparisons of jiffies
5577 if ($line =~ /\bjiffies\s*$Compare|$Compare\s*jiffies\b/) {
5578 WARN("JIFFIES_COMPARISON",
5579 "Comparing jiffies is almost always wrong; prefer time_after, time_before and friends\n" . $herecurr);
5580 }
5581
Joe Perches9d7a34a2013-07-03 15:05:26 -07005582# check for comparisons of get_jiffies_64()
5583 if ($line =~ /\bget_jiffies_64\s*\(\s*\)\s*$Compare|$Compare\s*get_jiffies_64\s*\(\s*\)/) {
5584 WARN("JIFFIES_COMPARISON",
5585 "Comparing get_jiffies_64() is almost always wrong; prefer time_after64, time_before64 and friends\n" . $herecurr);
5586 }
5587
Andy Whitcroft00df3442007-06-08 13:47:06 -07005588# warn about #ifdefs in C files
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07005589# if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
Andy Whitcroft00df3442007-06-08 13:47:06 -07005590# print "#ifdef in C files should be avoided\n";
5591# print "$herecurr";
5592# $clean = 0;
5593# }
5594
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07005595# warn about spacing in #ifdefs
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07005596 if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) {
Joe Perches3705ce52013-07-03 15:05:31 -07005597 if (ERROR("SPACING",
5598 "exactly one space required after that #$1\n" . $herecurr) &&
5599 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005600 $fixed[$fixlinenr] =~
Joe Perches3705ce52013-07-03 15:05:31 -07005601 s/^(.\s*\#\s*(ifdef|ifndef|elif))\s{2,}/$1 /;
5602 }
5603
Andy Whitcroft22f2a2e2007-08-10 13:01:03 -07005604 }
5605
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07005606# check for spinlock_t definitions without a comment.
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07005607 if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ ||
5608 $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07005609 my $which = $1;
5610 if (!ctx_has_comment($first_line, $linenr)) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005611 CHK("UNCOMMENTED_DEFINITION",
5612 "$1 definition without comment\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07005613 }
5614 }
5615# check for memory barriers without a comment.
Michael S. Tsirkin402c2552016-01-04 09:39:01 +02005616
5617 my $barriers = qr{
5618 mb|
5619 rmb|
5620 wmb|
5621 read_barrier_depends
5622 }x;
5623 my $barrier_stems = qr{
5624 mb__before_atomic|
5625 mb__after_atomic|
5626 store_release|
5627 load_acquire|
5628 store_mb|
5629 (?:$barriers)
5630 }x;
5631 my $all_barriers = qr{
5632 (?:$barriers)|
Michael S. Tsirkin43e361f2016-01-04 10:00:10 +02005633 smp_(?:$barrier_stems)|
5634 virt_(?:$barrier_stems)
Michael S. Tsirkin402c2552016-01-04 09:39:01 +02005635 }x;
5636
5637 if ($line =~ /\b(?:$all_barriers)\s*\(/) {
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07005638 if (!ctx_has_comment($first_line, $linenr)) {
Joe Perchesc1fd7bb2013-11-12 15:10:11 -08005639 WARN("MEMORY_BARRIER",
5640 "memory barrier without comment\n" . $herecurr);
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07005641 }
5642 }
Paul E. McKenney3ad81772015-07-02 11:55:40 -07005643
Michael S. Tsirkinf4073b02016-01-04 09:54:51 +02005644 my $underscore_smp_barriers = qr{__smp_(?:$barrier_stems)}x;
5645
5646 if ($realfile !~ m@^include/asm-generic/@ &&
5647 $realfile !~ m@/barrier\.h$@ &&
5648 $line =~ m/\b(?:$underscore_smp_barriers)\s*\(/ &&
5649 $line !~ m/^.\s*\#\s*define\s+(?:$underscore_smp_barriers)\s*\(/) {
5650 WARN("MEMORY_BARRIER",
5651 "__smp memory barriers shouldn't be used outside barrier.h and asm-generic\n" . $herecurr);
5652 }
5653
Joe Perchescb426e92015-06-25 15:02:46 -07005654# check for waitqueue_active without a comment.
5655 if ($line =~ /\bwaitqueue_active\s*\(/) {
5656 if (!ctx_has_comment($first_line, $linenr)) {
5657 WARN("WAITQUEUE_ACTIVE",
5658 "waitqueue_active without comment\n" . $herecurr);
5659 }
5660 }
Paul E. McKenney3ad81772015-07-02 11:55:40 -07005661
Paul E. McKenney91db2592017-11-27 09:37:35 -08005662# check for smp_read_barrier_depends and read_barrier_depends
5663 if (!$file && $line =~ /\b(smp_|)read_barrier_depends\s*\(/) {
5664 WARN("READ_BARRIER_DEPENDS",
5665 "$1read_barrier_depends should only be used in READ_ONCE or DEC Alpha code\n" . $herecurr);
5666 }
5667
Andy Whitcroft4a0df2e2007-06-08 13:46:39 -07005668# check of hardware specific defines
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07005669 if ($line =~ m@^.\s*\#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005670 CHK("ARCH_DEFINES",
5671 "architecture specific defines should be avoided\n" . $herecurr);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07005672 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07005673
Joe Perches596ed452017-07-12 14:37:02 -07005674# check that the storage class is not after a type
5675 if ($line =~ /\b($Type)\s+($Storage)\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005676 WARN("STORAGE_CLASS",
Joe Perches596ed452017-07-12 14:37:02 -07005677 "storage class '$2' should be located before type '$1'\n" . $herecurr);
5678 }
5679# Check that the storage class is at the beginning of a declaration
5680 if ($line =~ /\b$Storage\b/ &&
5681 $line !~ /^.\s*$Storage/ &&
5682 $line =~ /^.\s*(.+?)\$Storage\s/ &&
5683 $1 !~ /[\,\)]\s*$/) {
5684 WARN("STORAGE_CLASS",
5685 "storage class should be at the beginning of the declaration\n" . $herecurr);
Tobias Klauserd4977c72010-05-24 14:33:30 -07005686 }
5687
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07005688# check the location of the inline attribute, that it is between
5689# storage class and type.
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07005690 if ($line =~ /\b$Type\s+$Inline\b/ ||
5691 $line =~ /\b$Inline\s+$Storage\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005692 ERROR("INLINE_LOCATION",
5693 "inline keyword should sit between storage class and type\n" . $herecurr);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07005694 }
5695
Andy Whitcroft8905a672007-11-28 16:21:06 -08005696# Check for __inline__ and __inline, prefer inline
Joe Perches2b7ab452013-11-12 15:10:14 -08005697 if ($realfile !~ m@\binclude/uapi/@ &&
5698 $line =~ /\b(__inline__|__inline)\b/) {
Joe Perchesd5e616f2013-09-11 14:23:54 -07005699 if (WARN("INLINE",
5700 "plain inline is preferred over $1\n" . $herecurr) &&
5701 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005702 $fixed[$fixlinenr] =~ s/\b(__inline__|__inline)\b/inline/;
Joe Perchesd5e616f2013-09-11 14:23:54 -07005703
5704 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08005705 }
5706
Joe Perches3d130fd2011-01-12 17:00:00 -08005707# Check for __attribute__ packed, prefer __packed
Joe Perches2b7ab452013-11-12 15:10:14 -08005708 if ($realfile !~ m@\binclude/uapi/@ &&
5709 $line =~ /\b__attribute__\s*\(\s*\(.*\bpacked\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005710 WARN("PREFER_PACKED",
5711 "__packed is preferred over __attribute__((packed))\n" . $herecurr);
Joe Perches3d130fd2011-01-12 17:00:00 -08005712 }
5713
Joe Perches39b7e282011-07-25 17:13:24 -07005714# Check for __attribute__ aligned, prefer __aligned
Joe Perches2b7ab452013-11-12 15:10:14 -08005715 if ($realfile !~ m@\binclude/uapi/@ &&
5716 $line =~ /\b__attribute__\s*\(\s*\(.*aligned/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005717 WARN("PREFER_ALIGNED",
5718 "__aligned(size) is preferred over __attribute__((aligned(size)))\n" . $herecurr);
Joe Perches39b7e282011-07-25 17:13:24 -07005719 }
5720
Joe Perches5f14d3b2012-01-10 15:09:52 -08005721# Check for __attribute__ format(printf, prefer __printf
Joe Perches2b7ab452013-11-12 15:10:14 -08005722 if ($realfile !~ m@\binclude/uapi/@ &&
5723 $line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf/) {
Joe Perchesd5e616f2013-09-11 14:23:54 -07005724 if (WARN("PREFER_PRINTF",
5725 "__printf(string-index, first-to-check) is preferred over __attribute__((format(printf, string-index, first-to-check)))\n" . $herecurr) &&
5726 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005727 $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 -07005728
5729 }
Joe Perches5f14d3b2012-01-10 15:09:52 -08005730 }
5731
Joe Perches6061d942012-03-23 15:02:16 -07005732# Check for __attribute__ format(scanf, prefer __scanf
Joe Perches2b7ab452013-11-12 15:10:14 -08005733 if ($realfile !~ m@\binclude/uapi/@ &&
5734 $line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*scanf\b/) {
Joe Perchesd5e616f2013-09-11 14:23:54 -07005735 if (WARN("PREFER_SCANF",
5736 "__scanf(string-index, first-to-check) is preferred over __attribute__((format(scanf, string-index, first-to-check)))\n" . $herecurr) &&
5737 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005738 $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 -07005739 }
Joe Perches6061d942012-03-23 15:02:16 -07005740 }
5741
Joe Perches619a9082014-12-10 15:51:35 -08005742# Check for __attribute__ weak, or __weak declarations (may have link issues)
5743 if ($^V && $^V ge 5.10.0 &&
5744 $line =~ /(?:$Declare|$DeclareMisordered)\s*$Ident\s*$balanced_parens\s*(?:$Attribute)?\s*;/ &&
5745 ($line =~ /\b__attribute__\s*\(\s*\(.*\bweak\b/ ||
5746 $line =~ /\b__weak\b/)) {
5747 ERROR("WEAK_DECLARATION",
5748 "Using weak declarations can have unintended link defects\n" . $herecurr);
5749 }
5750
Tomas Winklerfd39f902016-12-12 16:46:34 -08005751# check for c99 types like uint8_t used outside of uapi/ and tools/
Joe Perchese6176fa2015-06-25 15:02:49 -07005752 if ($realfile !~ m@\binclude/uapi/@ &&
Tomas Winklerfd39f902016-12-12 16:46:34 -08005753 $realfile !~ m@\btools/@ &&
Joe Perchese6176fa2015-06-25 15:02:49 -07005754 $line =~ /\b($Declare)\s*$Ident\s*[=;,\[]/) {
5755 my $type = $1;
5756 if ($type =~ /\b($typeC99Typedefs)\b/) {
5757 $type = $1;
5758 my $kernel_type = 'u';
5759 $kernel_type = 's' if ($type =~ /^_*[si]/);
5760 $type =~ /(\d+)/;
5761 $kernel_type .= $1;
5762 if (CHK("PREFER_KERNEL_TYPES",
5763 "Prefer kernel type '$kernel_type' over '$type'\n" . $herecurr) &&
5764 $fix) {
5765 $fixed[$fixlinenr] =~ s/\b$type\b/$kernel_type/;
5766 }
5767 }
5768 }
5769
Joe Perches938224b2016-01-20 14:59:15 -08005770# check for cast of C90 native int or longer types constants
5771 if ($line =~ /(\(\s*$C90_int_types\s*\)\s*)($Constant)\b/) {
5772 my $cast = $1;
5773 my $const = $2;
5774 if (WARN("TYPECAST_INT_CONSTANT",
5775 "Unnecessary typecast of c90 int constant\n" . $herecurr) &&
5776 $fix) {
5777 my $suffix = "";
5778 my $newconst = $const;
5779 $newconst =~ s/${Int_type}$//;
5780 $suffix .= 'U' if ($cast =~ /\bunsigned\b/);
5781 if ($cast =~ /\blong\s+long\b/) {
5782 $suffix .= 'LL';
5783 } elsif ($cast =~ /\blong\b/) {
5784 $suffix .= 'L';
5785 }
5786 $fixed[$fixlinenr] =~ s/\Q$cast\E$const\b/$newconst$suffix/;
5787 }
5788 }
5789
Joe Perches8f53a9b2010-03-05 13:43:48 -08005790# check for sizeof(&)
5791 if ($line =~ /\bsizeof\s*\(\s*\&/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07005792 WARN("SIZEOF_ADDRESS",
5793 "sizeof(& should be avoided\n" . $herecurr);
Joe Perches8f53a9b2010-03-05 13:43:48 -08005794 }
5795
Joe Perches66c80b62012-07-30 14:41:22 -07005796# check for sizeof without parenthesis
5797 if ($line =~ /\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/) {
Joe Perchesd5e616f2013-09-11 14:23:54 -07005798 if (WARN("SIZEOF_PARENTHESIS",
5799 "sizeof $1 should be sizeof($1)\n" . $herecurr) &&
5800 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005801 $fixed[$fixlinenr] =~ s/\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/"sizeof(" . trim($1) . ")"/ex;
Joe Perchesd5e616f2013-09-11 14:23:54 -07005802 }
Joe Perches66c80b62012-07-30 14:41:22 -07005803 }
5804
Joe Perches88982fe2012-12-17 16:02:00 -08005805# check for struct spinlock declarations
5806 if ($line =~ /^.\s*\bstruct\s+spinlock\s+\w+\s*;/) {
5807 WARN("USE_SPINLOCK_T",
5808 "struct spinlock should be spinlock_t\n" . $herecurr);
5809 }
5810
Joe Perchesa6962d72013-04-29 16:18:13 -07005811# check for seq_printf uses that could be seq_puts
Joe Perches06668722013-11-12 15:10:07 -08005812 if ($sline =~ /\bseq_printf\s*\(.*"\s*\)\s*;\s*$/) {
Joe Perchesa6962d72013-04-29 16:18:13 -07005813 my $fmt = get_quoted_string($line, $rawline);
Heba Aamercaac1d52015-02-13 14:38:49 -08005814 $fmt =~ s/%%//g;
5815 if ($fmt !~ /%/) {
Joe Perchesd5e616f2013-09-11 14:23:54 -07005816 if (WARN("PREFER_SEQ_PUTS",
5817 "Prefer seq_puts to seq_printf\n" . $herecurr) &&
5818 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07005819 $fixed[$fixlinenr] =~ s/\bseq_printf\b/seq_puts/;
Joe Perchesd5e616f2013-09-11 14:23:54 -07005820 }
Joe Perchesa6962d72013-04-29 16:18:13 -07005821 }
5822 }
5823
Joe Perches478b1792018-04-10 16:33:34 -07005824# check for vsprintf extension %p<foo> misuses
Joe Perches0b523762017-05-08 15:55:36 -07005825 if ($^V && $^V ge 5.10.0 &&
5826 defined $stat &&
5827 $stat =~ /^\+(?![^\{]*\{\s*).*\b(\w+)\s*\(.*$String\s*,/s &&
5828 $1 !~ /^_*volatile_*$/) {
Tobin C. Hardinge3c6bc92018-04-10 16:33:31 -07005829 my $stat_real;
5830
Joe Perches0b523762017-05-08 15:55:36 -07005831 my $lc = $stat =~ tr@\n@@;
5832 $lc = $lc + $linenr;
5833 for (my $count = $linenr; $count <= $lc; $count++) {
Joe Perchesffe07512018-07-13 16:59:23 -07005834 my $specifier;
5835 my $extension;
5836 my $bad_specifier = "";
Joe Perches0b523762017-05-08 15:55:36 -07005837 my $fmt = get_quoted_string($lines[$count - 1], raw_line($count, 0));
5838 $fmt =~ s/%%//g;
Tobin C. Harding2a9f9d82018-04-10 16:33:20 -07005839
Tobin C. Hardinge3c6bc92018-04-10 16:33:31 -07005840 while ($fmt =~ /(\%[\*\d\.]*p(\w))/g) {
5841 $specifier = $1;
5842 $extension = $2;
5843 if ($extension !~ /[SsBKRraEhMmIiUDdgVCbGNOx]/) {
5844 $bad_specifier = $specifier;
5845 last;
5846 }
5847 if ($extension eq "x" && !defined($stat_real)) {
5848 if (!defined($stat_real)) {
5849 $stat_real = get_stat_real($linenr, $lc);
5850 }
5851 WARN("VSPRINTF_SPECIFIER_PX",
5852 "Using vsprintf specifier '\%px' potentially exposes the kernel memory layout, if you don't really need the address please consider using '\%p'.\n" . "$here\n$stat_real\n");
5853 }
5854 }
5855 if ($bad_specifier ne "") {
5856 my $stat_real = get_stat_real($linenr, $lc);
5857 my $ext_type = "Invalid";
5858 my $use = "";
5859 if ($bad_specifier =~ /p[Ff]/) {
5860 $ext_type = "Deprecated";
5861 $use = " - use %pS instead";
5862 $use =~ s/pS/ps/ if ($bad_specifier =~ /pf/);
5863 }
5864
5865 WARN("VSPRINTF_POINTER_EXTENSION",
5866 "$ext_type vsprintf pointer extension '$bad_specifier'$use\n" . "$here\n$stat_real\n");
5867 }
Joe Perches0b523762017-05-08 15:55:36 -07005868 }
5869 }
5870
Andy Whitcroft554e1652012-01-10 15:09:57 -08005871# Check for misused memsets
Joe Perchesd1fe9c02012-03-23 15:02:16 -07005872 if ($^V && $^V ge 5.10.0 &&
5873 defined $stat &&
Mateusz Kulikowski9e20a852015-06-25 15:03:16 -07005874 $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*$FuncArg\s*\)/) {
Andy Whitcroft554e1652012-01-10 15:09:57 -08005875
Joe Perchesd7c76ba2012-01-10 15:09:58 -08005876 my $ms_addr = $2;
Joe Perchesd1fe9c02012-03-23 15:02:16 -07005877 my $ms_val = $7;
5878 my $ms_size = $12;
Joe Perchesd7c76ba2012-01-10 15:09:58 -08005879
Andy Whitcroft554e1652012-01-10 15:09:57 -08005880 if ($ms_size =~ /^(0x|)0$/i) {
5881 ERROR("MEMSET",
Joe Perchesd7c76ba2012-01-10 15:09:58 -08005882 "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 -08005883 } elsif ($ms_size =~ /^(0x|)1$/i) {
5884 WARN("MEMSET",
Joe Perchesd7c76ba2012-01-10 15:09:58 -08005885 "single byte memset is suspicious. Swapped 2nd/3rd argument?\n" . "$here\n$stat\n");
5886 }
5887 }
5888
Joe Perches98a9bba2014-01-23 15:54:52 -08005889# Check for memcpy(foo, bar, ETH_ALEN) that could be ether_addr_copy(foo, bar)
Joe Perchesf3331952016-10-11 13:51:53 -07005890# if ($^V && $^V ge 5.10.0 &&
5891# defined $stat &&
5892# $stat =~ /^\+(?:.*?)\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
5893# if (WARN("PREFER_ETHER_ADDR_COPY",
5894# "Prefer ether_addr_copy() over memcpy() if the Ethernet addresses are __aligned(2)\n" . "$here\n$stat\n") &&
5895# $fix) {
5896# $fixed[$fixlinenr] =~ s/\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/ether_addr_copy($2, $7)/;
5897# }
5898# }
Joe Perches98a9bba2014-01-23 15:54:52 -08005899
Mateusz Kulikowskib6117d12015-06-25 15:03:13 -07005900# Check for memcmp(foo, bar, ETH_ALEN) that could be ether_addr_equal*(foo, bar)
Joe Perchesf3331952016-10-11 13:51:53 -07005901# if ($^V && $^V ge 5.10.0 &&
5902# defined $stat &&
5903# $stat =~ /^\+(?:.*?)\bmemcmp\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
5904# WARN("PREFER_ETHER_ADDR_EQUAL",
5905# "Prefer ether_addr_equal() or ether_addr_equal_unaligned() over memcmp()\n" . "$here\n$stat\n")
5906# }
Mateusz Kulikowskib6117d12015-06-25 15:03:13 -07005907
Mateusz Kulikowski8617cd02015-06-25 15:03:19 -07005908# check for memset(foo, 0x0, ETH_ALEN) that could be eth_zero_addr
5909# check for memset(foo, 0xFF, ETH_ALEN) that could be eth_broadcast_addr
Joe Perchesf3331952016-10-11 13:51:53 -07005910# if ($^V && $^V ge 5.10.0 &&
5911# defined $stat &&
5912# $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
5913#
5914# my $ms_val = $7;
5915#
5916# if ($ms_val =~ /^(?:0x|)0+$/i) {
5917# if (WARN("PREFER_ETH_ZERO_ADDR",
5918# "Prefer eth_zero_addr over memset()\n" . "$here\n$stat\n") &&
5919# $fix) {
5920# $fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_zero_addr($2)/;
5921# }
5922# } elsif ($ms_val =~ /^(?:0xff|255)$/i) {
5923# if (WARN("PREFER_ETH_BROADCAST_ADDR",
5924# "Prefer eth_broadcast_addr() over memset()\n" . "$here\n$stat\n") &&
5925# $fix) {
5926# $fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_broadcast_addr($2)/;
5927# }
5928# }
5929# }
Mateusz Kulikowski8617cd02015-06-25 15:03:19 -07005930
Joe Perchesd7c76ba2012-01-10 15:09:58 -08005931# typecasts on min/max could be min_t/max_t
Joe Perchesd1fe9c02012-03-23 15:02:16 -07005932 if ($^V && $^V ge 5.10.0 &&
5933 defined $stat &&
Joe Perchesd7c76ba2012-01-10 15:09:58 -08005934 $stat =~ /^\+(?:.*?)\b(min|max)\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\)/) {
Joe Perchesd1fe9c02012-03-23 15:02:16 -07005935 if (defined $2 || defined $7) {
Joe Perchesd7c76ba2012-01-10 15:09:58 -08005936 my $call = $1;
5937 my $cast1 = deparenthesize($2);
5938 my $arg1 = $3;
Joe Perchesd1fe9c02012-03-23 15:02:16 -07005939 my $cast2 = deparenthesize($7);
5940 my $arg2 = $8;
Joe Perchesd7c76ba2012-01-10 15:09:58 -08005941 my $cast;
5942
Joe Perchesd1fe9c02012-03-23 15:02:16 -07005943 if ($cast1 ne "" && $cast2 ne "" && $cast1 ne $cast2) {
Joe Perchesd7c76ba2012-01-10 15:09:58 -08005944 $cast = "$cast1 or $cast2";
5945 } elsif ($cast1 ne "") {
5946 $cast = $cast1;
5947 } else {
5948 $cast = $cast2;
5949 }
5950 WARN("MINMAX",
5951 "$call() should probably be ${call}_t($cast, $arg1, $arg2)\n" . "$here\n$stat\n");
Andy Whitcroft554e1652012-01-10 15:09:57 -08005952 }
5953 }
5954
Joe Perches4a273192012-07-30 14:41:20 -07005955# check usleep_range arguments
5956 if ($^V && $^V ge 5.10.0 &&
5957 defined $stat &&
5958 $stat =~ /^\+(?:.*?)\busleep_range\s*\(\s*($FuncArg)\s*,\s*($FuncArg)\s*\)/) {
5959 my $min = $1;
5960 my $max = $7;
5961 if ($min eq $max) {
5962 WARN("USLEEP_RANGE",
5963 "usleep_range should not use min == max args; see Documentation/timers/timers-howto.txt\n" . "$here\n$stat\n");
5964 } elsif ($min =~ /^\d+$/ && $max =~ /^\d+$/ &&
5965 $min > $max) {
5966 WARN("USLEEP_RANGE",
5967 "usleep_range args reversed, use min then max; see Documentation/timers/timers-howto.txt\n" . "$here\n$stat\n");
5968 }
5969 }
5970
Joe Perches823b7942013-11-12 15:10:15 -08005971# check for naked sscanf
5972 if ($^V && $^V ge 5.10.0 &&
5973 defined $stat &&
Joe Perches6c8bd702014-04-03 14:49:16 -07005974 $line =~ /\bsscanf\b/ &&
Joe Perches823b7942013-11-12 15:10:15 -08005975 ($stat !~ /$Ident\s*=\s*sscanf\s*$balanced_parens/ &&
5976 $stat !~ /\bsscanf\s*$balanced_parens\s*(?:$Compare)/ &&
5977 $stat !~ /(?:$Compare)\s*\bsscanf\s*$balanced_parens/)) {
5978 my $lc = $stat =~ tr@\n@@;
5979 $lc = $lc + $linenr;
Tobin C. Harding2a9f9d82018-04-10 16:33:20 -07005980 my $stat_real = get_stat_real($linenr, $lc);
Joe Perches823b7942013-11-12 15:10:15 -08005981 WARN("NAKED_SSCANF",
5982 "unchecked sscanf return value\n" . "$here\n$stat_real\n");
5983 }
5984
Joe Perchesafc819a2014-06-04 16:12:08 -07005985# check for simple sscanf that should be kstrto<foo>
5986 if ($^V && $^V ge 5.10.0 &&
5987 defined $stat &&
5988 $line =~ /\bsscanf\b/) {
5989 my $lc = $stat =~ tr@\n@@;
5990 $lc = $lc + $linenr;
Tobin C. Harding2a9f9d82018-04-10 16:33:20 -07005991 my $stat_real = get_stat_real($linenr, $lc);
Joe Perchesafc819a2014-06-04 16:12:08 -07005992 if ($stat_real =~ /\bsscanf\b\s*\(\s*$FuncArg\s*,\s*("[^"]+")/) {
5993 my $format = $6;
5994 my $count = $format =~ tr@%@%@;
5995 if ($count == 1 &&
5996 $format =~ /^"\%(?i:ll[udxi]|[udxi]ll|ll|[hl]h?[udxi]|[udxi][hl]h?|[hl]h?|[udxi])"$/) {
5997 WARN("SSCANF_TO_KSTRTO",
5998 "Prefer kstrto<type> to single variable sscanf\n" . "$here\n$stat_real\n");
5999 }
6000 }
6001 }
6002
Joe Perches70dc8a42013-09-11 14:23:58 -07006003# check for new externs in .h files.
6004 if ($realfile =~ /\.h$/ &&
6005 $line =~ /^\+\s*(extern\s+)$Type\s*$Ident\s*\(/s) {
Joe Perchesd1d85782013-09-24 15:27:46 -07006006 if (CHK("AVOID_EXTERNS",
6007 "extern prototypes should be avoided in .h files\n" . $herecurr) &&
Joe Perches70dc8a42013-09-11 14:23:58 -07006008 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07006009 $fixed[$fixlinenr] =~ s/(.*)\bextern\b\s*(.*)/$1$2/;
Joe Perches70dc8a42013-09-11 14:23:58 -07006010 }
6011 }
6012
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07006013# check for new externs in .c files.
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07006014 if ($realfile =~ /\.c$/ && defined $stat &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07006015 $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s)
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07006016 {
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07006017 my $function_name = $1;
6018 my $paren_space = $2;
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07006019
6020 my $s = $stat;
6021 if (defined $cond) {
6022 substr($s, 0, length($cond), '');
6023 }
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07006024 if ($s =~ /^\s*;/ &&
6025 $function_name ne 'uninitialized_var')
6026 {
Joe Perches000d1cc12011-07-25 17:13:25 -07006027 WARN("AVOID_EXTERNS",
6028 "externs should be avoided in .c files\n" . $herecurr);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07006029 }
6030
6031 if ($paren_space =~ /\n/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006032 WARN("FUNCTION_ARGUMENTS",
6033 "arguments for function declarations should follow identifier\n" . $herecurr);
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07006034 }
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07006035
6036 } elsif ($realfile =~ /\.c$/ && defined $stat &&
6037 $stat =~ /^.\s*extern\s+/)
6038 {
Joe Perches000d1cc12011-07-25 17:13:25 -07006039 WARN("AVOID_EXTERNS",
6040 "externs should be avoided in .c files\n" . $herecurr);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07006041 }
6042
Joe Perchesa0ad7592017-07-10 15:52:19 -07006043# check for function declarations that have arguments without identifier names
6044 if (defined $stat &&
Miles Chen25bdda22017-11-17 15:28:34 -08006045 $stat =~ /^.\s*(?:extern\s+)?$Type\s*(?:$Ident|\(\s*\*\s*$Ident\s*\))\s*\(\s*([^{]+)\s*\)\s*;/s &&
Joe Perchesca0d8922016-10-11 13:52:16 -07006046 $1 ne "void") {
6047 my $args = trim($1);
6048 while ($args =~ m/\s*($Type\s*(?:$Ident|\(\s*\*\s*$Ident?\s*\)\s*$balanced_parens)?)/g) {
6049 my $arg = trim($1);
6050 if ($arg =~ /^$Type$/ && $arg !~ /enum\s+$Ident$/) {
6051 WARN("FUNCTION_ARGUMENTS",
6052 "function definition argument '$arg' should also have an identifier name\n" . $herecurr);
6053 }
6054 }
6055 }
6056
Joe Perchesa0ad7592017-07-10 15:52:19 -07006057# check for function definitions
6058 if ($^V && $^V ge 5.10.0 &&
6059 defined $stat &&
6060 $stat =~ /^.\s*(?:$Storage\s+)?$Type\s*($Ident)\s*$balanced_parens\s*{/s) {
6061 $context_function = $1;
6062
6063# check for multiline function definition with misplaced open brace
6064 my $ok = 0;
6065 my $cnt = statement_rawlines($stat);
6066 my $herectx = $here . "\n";
6067 for (my $n = 0; $n < $cnt; $n++) {
6068 my $rl = raw_line($linenr, $n);
6069 $herectx .= $rl . "\n";
6070 $ok = 1 if ($rl =~ /^[ \+]\{/);
6071 $ok = 1 if ($rl =~ /\{/ && $n == 0);
6072 last if $rl =~ /^[ \+].*\{/;
6073 }
6074 if (!$ok) {
6075 ERROR("OPEN_BRACE",
6076 "open brace '{' following function definitions go on the next line\n" . $herectx);
6077 }
6078 }
6079
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07006080# checks for new __setup's
6081 if ($rawline =~ /\b__setup\("([^"]*)"/) {
6082 my $name = $1;
6083
6084 if (!grep(/$name/, @setup_docs)) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006085 CHK("UNDOCUMENTED_SETUP",
Mauro Carvalho Chehab8c27ceff32016-10-18 10:12:27 -02006086 "__setup appears un-documented -- check Documentation/admin-guide/kernel-parameters.rst\n" . $herecurr);
Andy Whitcroftde7d4f02007-07-15 23:37:22 -07006087 }
Andy Whitcroft653d4872007-06-23 17:16:34 -07006088 }
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07006089
6090# check for pointless casting of kmalloc return
Joe Perchescaf2a542011-01-12 16:59:56 -08006091 if ($line =~ /\*\s*\)\s*[kv][czm]alloc(_node){0,1}\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006092 WARN("UNNECESSARY_CASTS",
6093 "unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
Andy Whitcroft9c0ca6f2007-10-16 23:29:38 -07006094 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08006095
Joe Perchesa640d252013-07-03 15:05:21 -07006096# alloc style
6097# p = alloc(sizeof(struct foo), ...) should be p = alloc(sizeof(*p), ...)
6098 if ($^V && $^V ge 5.10.0 &&
6099 $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*([kv][mz]alloc(?:_node)?)\s*\(\s*(sizeof\s*\(\s*struct\s+$Lval\s*\))/) {
6100 CHK("ALLOC_SIZEOF_STRUCT",
6101 "Prefer $3(sizeof(*$1)...) over $3($4...)\n" . $herecurr);
6102 }
6103
Joe Perches60a55362014-06-04 16:12:07 -07006104# check for k[mz]alloc with multiplies that could be kmalloc_array/kcalloc
6105 if ($^V && $^V ge 5.10.0 &&
Joe Perches1b4a2ed2017-05-08 15:55:57 -07006106 defined $stat &&
6107 $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 -07006108 my $oldfunc = $3;
6109 my $a1 = $4;
6110 my $a2 = $10;
6111 my $newfunc = "kmalloc_array";
6112 $newfunc = "kcalloc" if ($oldfunc eq "kzalloc");
Joe Perchese3674552014-08-06 16:10:55 -07006113 my $r1 = $a1;
6114 my $r2 = $a2;
6115 if ($a1 =~ /^sizeof\s*\S/) {
6116 $r1 = $a2;
6117 $r2 = $a1;
6118 }
6119 if ($r1 !~ /^sizeof\b/ && $r2 =~ /^sizeof\s*\S/ &&
6120 !($r1 =~ /^$Constant$/ || $r1 =~ /^[A-Z_][A-Z0-9_]*$/)) {
Joe Perches1b4a2ed2017-05-08 15:55:57 -07006121 my $cnt = statement_rawlines($stat);
Tobin C. Hardinge3d95a22018-04-10 16:33:27 -07006122 my $herectx = get_stat_here($linenr, $cnt, $here);
6123
Joe Perches60a55362014-06-04 16:12:07 -07006124 if (WARN("ALLOC_WITH_MULTIPLY",
Joe Perches1b4a2ed2017-05-08 15:55:57 -07006125 "Prefer $newfunc over $oldfunc with multiply\n" . $herectx) &&
6126 $cnt == 1 &&
Joe Perches60a55362014-06-04 16:12:07 -07006127 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07006128 $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 -07006129 }
6130 }
6131 }
6132
Joe Perches972fdea2013-04-29 16:18:12 -07006133# check for krealloc arg reuse
6134 if ($^V && $^V ge 5.10.0 &&
6135 $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*krealloc\s*\(\s*\1\s*,/) {
6136 WARN("KREALLOC_ARG_REUSE",
6137 "Reusing the krealloc arg is almost always a bug\n" . $herecurr);
6138 }
6139
Joe Perches5ce59ae2013-02-21 16:44:18 -08006140# check for alloc argument mismatch
6141 if ($line =~ /\b(kcalloc|kmalloc_array)\s*\(\s*sizeof\b/) {
6142 WARN("ALLOC_ARRAY_ARGS",
6143 "$1 uses number as first arg, sizeof is generally wrong\n" . $herecurr);
6144 }
6145
Joe Perchescaf2a542011-01-12 16:59:56 -08006146# check for multiple semicolons
6147 if ($line =~ /;\s*;\s*$/) {
Joe Perchesd5e616f2013-09-11 14:23:54 -07006148 if (WARN("ONE_SEMICOLON",
6149 "Statements terminations use 1 semicolon\n" . $herecurr) &&
6150 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07006151 $fixed[$fixlinenr] =~ s/(\s*;\s*){2,}$/;/g;
Joe Perchesd5e616f2013-09-11 14:23:54 -07006152 }
Joe Perchesd1e2ad02012-12-17 16:02:01 -08006153 }
6154
Tomas Winklercec3aaa2016-08-02 14:04:39 -07006155# check for #defines like: 1 << <digit> that could be BIT(digit), it is not exported to uapi
6156 if ($realfile !~ m@^include/uapi/@ &&
6157 $line =~ /#\s*define\s+\w+\s+\(?\s*1\s*([ulUL]*)\s*\<\<\s*(?:\d+|$Ident)\s*\)?/) {
Joe Perches0ab90192014-12-10 15:51:57 -08006158 my $ull = "";
6159 $ull = "_ULL" if (defined($1) && $1 =~ /ll/i);
6160 if (CHK("BIT_MACRO",
6161 "Prefer using the BIT$ull macro\n" . $herecurr) &&
6162 $fix) {
6163 $fixed[$fixlinenr] =~ s/\(?\s*1\s*[ulUL]*\s*<<\s*(\d+|$Ident)\s*\)?/BIT${ull}($1)/;
6164 }
6165 }
6166
Joe Perches2d632742016-05-20 17:04:00 -07006167# check for #if defined CONFIG_<FOO> || defined CONFIG_<FOO>_MODULE
6168 if ($line =~ /^\+\s*#\s*if\s+defined(?:\s*\(?\s*|\s+)(CONFIG_[A-Z_]+)\s*\)?\s*\|\|\s*defined(?:\s*\(?\s*|\s+)\1_MODULE\s*\)?\s*$/) {
6169 my $config = $1;
6170 if (WARN("PREFER_IS_ENABLED",
6171 "Prefer IS_ENABLED(<FOO>) to CONFIG_<FOO> || CONFIG_<FOO>_MODULE\n" . $herecurr) &&
6172 $fix) {
6173 $fixed[$fixlinenr] = "\+#if IS_ENABLED($config)";
6174 }
6175 }
6176
Joe Perchese81f2392014-08-06 16:11:25 -07006177# check for case / default statements not preceded by break/fallthrough/switch
Joe Perchesc34c09a2014-01-23 15:54:43 -08006178 if ($line =~ /^.\s*(?:case\s+(?:$Ident|$Constant)\s*|default):/) {
6179 my $has_break = 0;
6180 my $has_statement = 0;
6181 my $count = 0;
6182 my $prevline = $linenr;
Joe Perchese81f2392014-08-06 16:11:25 -07006183 while ($prevline > 1 && ($file || $count < 3) && !$has_break) {
Joe Perchesc34c09a2014-01-23 15:54:43 -08006184 $prevline--;
6185 my $rline = $rawlines[$prevline - 1];
6186 my $fline = $lines[$prevline - 1];
6187 last if ($fline =~ /^\@\@/);
6188 next if ($fline =~ /^\-/);
6189 next if ($fline =~ /^.(?:\s*(?:case\s+(?:$Ident|$Constant)[\s$;]*|default):[\s$;]*)*$/);
6190 $has_break = 1 if ($rline =~ /fall[\s_-]*(through|thru)/i);
6191 next if ($fline =~ /^.[\s$;]*$/);
6192 $has_statement = 1;
6193 $count++;
Heinrich Schuchardt258f79d2017-11-17 15:28:38 -08006194 $has_break = 1 if ($fline =~ /\bswitch\b|\b(?:break\s*;[\s$;]*$|exit\s*\(\b|return\b|goto\b|continue\b)/);
Joe Perchesc34c09a2014-01-23 15:54:43 -08006195 }
6196 if (!$has_break && $has_statement) {
6197 WARN("MISSING_BREAK",
Andrew Morton224236d2016-12-12 16:46:26 -08006198 "Possible switch case/default not preceded by break or fallthrough comment\n" . $herecurr);
Joe Perchesc34c09a2014-01-23 15:54:43 -08006199 }
6200 }
6201
Joe Perchesd1e2ad02012-12-17 16:02:01 -08006202# check for switch/default statements without a break;
6203 if ($^V && $^V ge 5.10.0 &&
6204 defined $stat &&
6205 $stat =~ /^\+[$;\s]*(?:case[$;\s]+\w+[$;\s]*:[$;\s]*|)*[$;\s]*\bdefault[$;\s]*:[$;\s]*;/g) {
Joe Perchesd1e2ad02012-12-17 16:02:01 -08006206 my $cnt = statement_rawlines($stat);
Tobin C. Hardinge3d95a22018-04-10 16:33:27 -07006207 my $herectx = get_stat_here($linenr, $cnt, $here);
6208
Joe Perchesd1e2ad02012-12-17 16:02:01 -08006209 WARN("DEFAULT_NO_BREAK",
6210 "switch default: should use break\n" . $herectx);
Joe Perchescaf2a542011-01-12 16:59:56 -08006211 }
6212
Andy Whitcroft13214ad2008-02-08 04:22:03 -08006213# check for gcc specific __FUNCTION__
Joe Perchesd5e616f2013-09-11 14:23:54 -07006214 if ($line =~ /\b__FUNCTION__\b/) {
6215 if (WARN("USE_FUNC",
6216 "__func__ should be used instead of gcc specific __FUNCTION__\n" . $herecurr) &&
6217 $fix) {
Joe Perches194f66f2014-08-06 16:11:03 -07006218 $fixed[$fixlinenr] =~ s/\b__FUNCTION__\b/__func__/g;
Joe Perchesd5e616f2013-09-11 14:23:54 -07006219 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08006220 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07006221
Joe Perches62ec8182015-02-13 14:38:18 -08006222# check for uses of __DATE__, __TIME__, __TIMESTAMP__
6223 while ($line =~ /\b(__(?:DATE|TIME|TIMESTAMP)__)\b/g) {
6224 ERROR("DATE_TIME",
6225 "Use of the '$1' macro makes the build non-deterministic\n" . $herecurr);
6226 }
6227
Joe Perches2c924882012-03-23 15:02:20 -07006228# check for use of yield()
6229 if ($line =~ /\byield\s*\(\s*\)/) {
6230 WARN("YIELD",
6231 "Using yield() is generally wrong. See yield() kernel-doc (sched/core.c)\n" . $herecurr);
6232 }
6233
Joe Perches179f8f42013-07-03 15:05:30 -07006234# check for comparisons against true and false
6235 if ($line =~ /\+\s*(.*?)\b(true|false|$Lval)\s*(==|\!=)\s*(true|false|$Lval)\b(.*)$/i) {
6236 my $lead = $1;
6237 my $arg = $2;
6238 my $test = $3;
6239 my $otype = $4;
6240 my $trail = $5;
6241 my $op = "!";
6242
6243 ($arg, $otype) = ($otype, $arg) if ($arg =~ /^(?:true|false)$/i);
6244
6245 my $type = lc($otype);
6246 if ($type =~ /^(?:true|false)$/) {
6247 if (("$test" eq "==" && "$type" eq "true") ||
6248 ("$test" eq "!=" && "$type" eq "false")) {
6249 $op = "";
6250 }
6251
6252 CHK("BOOL_COMPARISON",
6253 "Using comparison to $otype is error prone\n" . $herecurr);
6254
6255## maybe suggesting a correct construct would better
6256## "Using comparison to $otype is error prone. Perhaps use '${lead}${op}${arg}${trail}'\n" . $herecurr);
6257
6258 }
6259 }
6260
Joe Perches5d430902018-04-10 16:34:25 -07006261# check for bool bitfields
6262 if ($sline =~ /^.\s+bool\s*$Ident\s*:\s*\d+\s*;/) {
6263 WARN("BOOL_BITFIELD",
6264 "Avoid using bool as bitfield. Prefer bool bitfields as unsigned int or u<8|16|32>\n" . $herecurr);
6265 }
6266
Joe Perchesd7295932018-08-21 21:57:26 -07006267# check for bool use in .h files
6268 if ($realfile =~ /\.h$/ &&
6269 $sline =~ /^.\s+bool\s*$Ident\s*(?::\s*d+\s*)?;/) {
6270 CHK("BOOL_MEMBER",
6271 "Avoid using bool structure members because of possible alignment issues - see: https://lkml.org/lkml/2017/11/21/384\n" . $herecurr);
6272 }
6273
Thomas Gleixner4882720b2010-09-07 14:34:01 +00006274# check for semaphores initialized locked
6275 if ($line =~ /^.\s*sema_init.+,\W?0\W?\)/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006276 WARN("CONSIDER_COMPLETION",
6277 "consider using a completion\n" . $herecurr);
Andy Whitcroft773647a2008-03-28 14:15:58 -07006278 }
Joe Perches6712d852012-03-23 15:02:20 -07006279
Joe Perches67d0a072011-10-31 17:13:10 -07006280# recommend kstrto* over simple_strto* and strict_strto*
6281 if ($line =~ /\b((simple|strict)_(strto(l|ll|ul|ull)))\s*\(/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006282 WARN("CONSIDER_KSTRTO",
Joe Perches67d0a072011-10-31 17:13:10 -07006283 "$1 is obsolete, use k$3 instead\n" . $herecurr);
Andy Whitcroft773647a2008-03-28 14:15:58 -07006284 }
Joe Perches6712d852012-03-23 15:02:20 -07006285
Fabian Frederickae3ccc42014-06-04 16:12:10 -07006286# check for __initcall(), use device_initcall() explicitly or more appropriate function please
Michael Ellermanf3db6632008-07-23 21:28:57 -07006287 if ($line =~ /^.\s*__initcall\s*\(/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006288 WARN("USE_DEVICE_INITCALL",
Fabian Frederickae3ccc42014-06-04 16:12:10 -07006289 "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 -07006290 }
Joe Perches6712d852012-03-23 15:02:20 -07006291
Joe Perches0f3c5aa2015-02-13 14:39:05 -08006292# check for various structs that are normally const (ops, kgdb, device_tree)
Joe Perchesd9190e42017-05-08 15:55:45 -07006293# and avoid what seem like struct definitions 'struct foo {'
Andy Whitcroft6903ffb2009-01-15 13:51:07 -08006294 if ($line !~ /\bconst\b/ &&
Joe Perchesd9190e42017-05-08 15:55:45 -07006295 $line =~ /\bstruct\s+($const_structs)\b(?!\s*\{)/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006296 WARN("CONST_STRUCT",
Joe Perchesd9190e42017-05-08 15:55:45 -07006297 "struct $1 should normally be const\n" . $herecurr);
Andy Whitcroft2b6db5c2009-01-06 14:41:29 -08006298 }
Andy Whitcroft773647a2008-03-28 14:15:58 -07006299
6300# use of NR_CPUS is usually wrong
6301# ignore definitions of NR_CPUS and usage to define arrays as likely right
6302 if ($line =~ /\bNR_CPUS\b/ &&
Andy Whitcroftc45dcab2008-06-05 22:46:01 -07006303 $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ &&
6304 $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ &&
Andy Whitcroft171ae1a2008-04-29 00:59:32 -07006305 $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ &&
6306 $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ &&
6307 $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/)
Andy Whitcroft773647a2008-03-28 14:15:58 -07006308 {
Joe Perches000d1cc12011-07-25 17:13:25 -07006309 WARN("NR_CPUS",
6310 "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 -07006311 }
Andy Whitcroft9c9ba342008-04-29 00:59:33 -07006312
Joe Perches52ea8502013-11-12 15:10:09 -08006313# Use of __ARCH_HAS_<FOO> or ARCH_HAVE_<BAR> is wrong.
6314 if ($line =~ /\+\s*#\s*define\s+((?:__)?ARCH_(?:HAS|HAVE)\w*)\b/) {
6315 ERROR("DEFINE_ARCH_HAS",
6316 "#define of '$1' is wrong - use Kconfig variables or standard guards instead\n" . $herecurr);
6317 }
6318
Joe Perchesacd93622015-02-13 14:38:38 -08006319# likely/unlikely comparisons similar to "(likely(foo) > 0)"
6320 if ($^V && $^V ge 5.10.0 &&
6321 $line =~ /\b((?:un)?likely)\s*\(\s*$FuncArg\s*\)\s*$Compare/) {
6322 WARN("LIKELY_MISUSE",
6323 "Using $1 should generally have parentheses around the comparison\n" . $herecurr);
6324 }
6325
Andy Whitcroft691d77b2009-01-06 14:41:16 -08006326# whine mightly about in_atomic
6327 if ($line =~ /\bin_atomic\s*\(/) {
6328 if ($realfile =~ m@^drivers/@) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006329 ERROR("IN_ATOMIC",
6330 "do not use in_atomic in drivers\n" . $herecurr);
Andy Whitcroftf4a87732009-02-27 14:03:05 -08006331 } elsif ($realfile !~ m@^kernel/@) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006332 WARN("IN_ATOMIC",
6333 "use of in_atomic() is incorrect outside core kernel code\n" . $herecurr);
Andy Whitcroft691d77b2009-01-06 14:41:16 -08006334 }
6335 }
Peter Zijlstra1704f472010-03-19 01:37:42 +01006336
Peter Zijlstra0f5225b2016-10-07 17:43:51 +02006337# check for mutex_trylock_recursive usage
6338 if ($line =~ /mutex_trylock_recursive/) {
6339 ERROR("LOCKING",
6340 "recursive locking is bad, do not use this ever.\n" . $herecurr);
6341 }
6342
Peter Zijlstra1704f472010-03-19 01:37:42 +01006343# check for lockdep_set_novalidate_class
6344 if ($line =~ /^.\s*lockdep_set_novalidate_class\s*\(/ ||
6345 $line =~ /__lockdep_no_validate__\s*\)/ ) {
6346 if ($realfile !~ m@^kernel/lockdep@ &&
6347 $realfile !~ m@^include/linux/lockdep@ &&
6348 $realfile !~ m@^drivers/base/core@) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006349 ERROR("LOCKDEP",
6350 "lockdep_no_validate class is reserved for device->mutex.\n" . $herecurr);
Peter Zijlstra1704f472010-03-19 01:37:42 +01006351 }
6352 }
Dave Jones88f88312011-01-12 16:59:59 -08006353
Joe Perchesb392c642015-04-16 12:44:16 -07006354 if ($line =~ /debugfs_create_\w+.*\b$mode_perms_world_writable\b/ ||
6355 $line =~ /DEVICE_ATTR.*\b$mode_perms_world_writable\b/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006356 WARN("EXPORTED_WORLD_WRITABLE",
6357 "Exporting world writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr);
Dave Jones88f88312011-01-12 16:59:59 -08006358 }
Joe Perches24358802014-04-03 14:49:13 -07006359
Joe Perches00180462018-02-06 15:38:55 -08006360# check for DEVICE_ATTR uses that could be DEVICE_ATTR_<FOO>
6361# and whether or not function naming is typical and if
6362# DEVICE_ATTR permissions uses are unusual too
6363 if ($^V && $^V ge 5.10.0 &&
6364 defined $stat &&
6365 $stat =~ /\bDEVICE_ATTR\s*\(\s*(\w+)\s*,\s*\(?\s*(\s*(?:${multi_mode_perms_string_search}|0[0-7]{3,3})\s*)\s*\)?\s*,\s*(\w+)\s*,\s*(\w+)\s*\)/) {
6366 my $var = $1;
6367 my $perms = $2;
6368 my $show = $3;
6369 my $store = $4;
6370 my $octal_perms = perms_to_octal($perms);
6371 if ($show =~ /^${var}_show$/ &&
6372 $store =~ /^${var}_store$/ &&
6373 $octal_perms eq "0644") {
6374 if (WARN("DEVICE_ATTR_RW",
6375 "Use DEVICE_ATTR_RW\n" . $herecurr) &&
6376 $fix) {
6377 $fixed[$fixlinenr] =~ s/\bDEVICE_ATTR\s*\(\s*$var\s*,\s*\Q$perms\E\s*,\s*$show\s*,\s*$store\s*\)/DEVICE_ATTR_RW(${var})/;
6378 }
6379 } elsif ($show =~ /^${var}_show$/ &&
6380 $store =~ /^NULL$/ &&
6381 $octal_perms eq "0444") {
6382 if (WARN("DEVICE_ATTR_RO",
6383 "Use DEVICE_ATTR_RO\n" . $herecurr) &&
6384 $fix) {
6385 $fixed[$fixlinenr] =~ s/\bDEVICE_ATTR\s*\(\s*$var\s*,\s*\Q$perms\E\s*,\s*$show\s*,\s*NULL\s*\)/DEVICE_ATTR_RO(${var})/;
6386 }
6387 } elsif ($show =~ /^NULL$/ &&
6388 $store =~ /^${var}_store$/ &&
6389 $octal_perms eq "0200") {
6390 if (WARN("DEVICE_ATTR_WO",
6391 "Use DEVICE_ATTR_WO\n" . $herecurr) &&
6392 $fix) {
6393 $fixed[$fixlinenr] =~ s/\bDEVICE_ATTR\s*\(\s*$var\s*,\s*\Q$perms\E\s*,\s*NULL\s*,\s*$store\s*\)/DEVICE_ATTR_WO(${var})/;
6394 }
6395 } elsif ($octal_perms eq "0644" ||
6396 $octal_perms eq "0444" ||
6397 $octal_perms eq "0200") {
6398 my $newshow = "$show";
6399 $newshow = "${var}_show" if ($show ne "NULL" && $show ne "${var}_show");
6400 my $newstore = $store;
6401 $newstore = "${var}_store" if ($store ne "NULL" && $store ne "${var}_store");
6402 my $rename = "";
6403 if ($show ne $newshow) {
6404 $rename .= " '$show' to '$newshow'";
6405 }
6406 if ($store ne $newstore) {
6407 $rename .= " '$store' to '$newstore'";
6408 }
6409 WARN("DEVICE_ATTR_FUNCTIONS",
6410 "Consider renaming function(s)$rename\n" . $herecurr);
6411 } else {
6412 WARN("DEVICE_ATTR_PERMS",
6413 "DEVICE_ATTR unusual permissions '$perms' used\n" . $herecurr);
6414 }
6415 }
6416
Joe Perches515a2352014-04-03 14:49:24 -07006417# Mode permission misuses where it seems decimal should be octal
6418# This uses a shortcut match to avoid unnecessary uses of a slow foreach loop
Joe Perches73121532018-02-06 15:38:49 -08006419# o Ignore module_param*(...) uses with a decimal 0 permission as that has a
6420# specific definition of not visible in sysfs.
6421# o Ignore proc_create*(...) uses with a decimal 0 permission as that means
6422# use the default permissions
Joe Perches515a2352014-04-03 14:49:24 -07006423 if ($^V && $^V ge 5.10.0 &&
Joe Perches459cf0a2016-10-11 13:52:19 -07006424 defined $stat &&
Joe Perches515a2352014-04-03 14:49:24 -07006425 $line =~ /$mode_perms_search/) {
6426 foreach my $entry (@mode_permission_funcs) {
6427 my $func = $entry->[0];
6428 my $arg_pos = $entry->[1];
Joe Perches24358802014-04-03 14:49:13 -07006429
Joe Perches459cf0a2016-10-11 13:52:19 -07006430 my $lc = $stat =~ tr@\n@@;
6431 $lc = $lc + $linenr;
Tobin C. Harding2a9f9d82018-04-10 16:33:20 -07006432 my $stat_real = get_stat_real($linenr, $lc);
Joe Perches459cf0a2016-10-11 13:52:19 -07006433
Joe Perches515a2352014-04-03 14:49:24 -07006434 my $skip_args = "";
6435 if ($arg_pos > 1) {
6436 $arg_pos--;
6437 $skip_args = "(?:\\s*$FuncArg\\s*,\\s*){$arg_pos,$arg_pos}";
6438 }
Joe Perchesf90774e2016-10-11 13:51:47 -07006439 my $test = "\\b$func\\s*\\(${skip_args}($FuncArg(?:\\|\\s*$FuncArg)*)\\s*[,\\)]";
Joe Perches459cf0a2016-10-11 13:52:19 -07006440 if ($stat =~ /$test/) {
Joe Perches515a2352014-04-03 14:49:24 -07006441 my $val = $1;
6442 $val = $6 if ($skip_args ne "");
Joe Perches73121532018-02-06 15:38:49 -08006443 if (!($func =~ /^(?:module_param|proc_create)/ && $val eq "0") &&
6444 (($val =~ /^$Int$/ && $val !~ /^$Octal$/) ||
6445 ($val =~ /^$Octal$/ && length($val) ne 4))) {
Joe Perches515a2352014-04-03 14:49:24 -07006446 ERROR("NON_OCTAL_PERMISSIONS",
Joe Perches459cf0a2016-10-11 13:52:19 -07006447 "Use 4 digit octal (0777) not decimal permissions\n" . "$here\n" . $stat_real);
Joe Perchesf90774e2016-10-11 13:51:47 -07006448 }
6449 if ($val =~ /^$Octal$/ && (oct($val) & 02)) {
Joe Perchesc0a5c892015-02-13 14:38:21 -08006450 ERROR("EXPORTED_WORLD_WRITABLE",
Joe Perches459cf0a2016-10-11 13:52:19 -07006451 "Exporting writable files is usually an error. Consider more restrictive permissions.\n" . "$here\n" . $stat_real);
Joe Perchesf90774e2016-10-11 13:51:47 -07006452 }
Joe Perches24358802014-04-03 14:49:13 -07006453 }
6454 }
6455 }
Bjorn Andersson5a6d20c2015-06-25 15:03:24 -07006456
Joe Perches459cf0a2016-10-11 13:52:19 -07006457# check for uses of S_<PERMS> that could be octal for readability
Joe Perchesbc22d9a2018-04-10 16:33:53 -07006458 while ($line =~ m{\b($multi_mode_perms_string_search)\b}g) {
Joe Perches00180462018-02-06 15:38:55 -08006459 my $oval = $1;
6460 my $octal = perms_to_octal($oval);
Joe Perches459cf0a2016-10-11 13:52:19 -07006461 if (WARN("SYMBOLIC_PERMS",
6462 "Symbolic permissions '$oval' are not preferred. Consider using octal permissions '$octal'.\n" . $herecurr) &&
6463 $fix) {
Joe Perches00180462018-02-06 15:38:55 -08006464 $fixed[$fixlinenr] =~ s/\Q$oval\E/$octal/;
Joe Perches459cf0a2016-10-11 13:52:19 -07006465 }
6466 }
6467
Bjorn Andersson5a6d20c2015-06-25 15:03:24 -07006468# validate content of MODULE_LICENSE against list from include/linux/module.h
6469 if ($line =~ /\bMODULE_LICENSE\s*\(\s*($String)\s*\)/) {
6470 my $extracted_string = get_quoted_string($line, $rawline);
6471 my $valid_licenses = qr{
6472 GPL|
6473 GPL\ v2|
6474 GPL\ and\ additional\ rights|
6475 Dual\ BSD/GPL|
6476 Dual\ MIT/GPL|
6477 Dual\ MPL/GPL|
6478 Proprietary
6479 }x;
6480 if ($extracted_string !~ /^"(?:$valid_licenses)"$/x) {
6481 WARN("MODULE_LICENSE",
6482 "unknown module license " . $extracted_string . "\n" . $herecurr);
6483 }
6484 }
Andy Whitcroft13214ad2008-02-08 04:22:03 -08006485 }
6486
6487 # If we have no input at all, then there is nothing to report on
6488 # so just keep quiet.
6489 if ($#rawlines == -1) {
6490 exit(0);
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07006491 }
6492
Andy Whitcroft8905a672007-11-28 16:21:06 -08006493 # In mailback mode only produce a report in the negative, for
6494 # things that appear to be patches.
6495 if ($mailback && ($clean == 1 || !$is_patch)) {
6496 exit(0);
6497 }
6498
6499 # This is not a patch, and we are are in 'no-patch' mode so
6500 # just keep quiet.
6501 if (!$chk_patch && !$is_patch) {
6502 exit(0);
6503 }
6504
Stafford Hornea08ffbe2017-10-03 16:16:51 -07006505 if (!$is_patch && $filename !~ /cover-letter\.patch$/) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006506 ERROR("NOT_UNIFIED_DIFF",
6507 "Does not appear to be a unified-diff format patch\n");
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07006508 }
Allen Hubbeed43c4e2016-08-02 14:04:45 -07006509 if ($is_patch && $has_commit_log && $chk_signoff && $signoff == 0) {
Joe Perches000d1cc12011-07-25 17:13:25 -07006510 ERROR("MISSING_SIGN_OFF",
6511 "Missing Signed-off-by: line(s)\n");
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07006512 }
6513
Andy Whitcroft8905a672007-11-28 16:21:06 -08006514 print report_dump();
Andy Whitcroft13214ad2008-02-08 04:22:03 -08006515 if ($summary && !($clean == 1 && $quiet == 1)) {
6516 print "$filename " if ($summary_file);
Andy Whitcroft8905a672007-11-28 16:21:06 -08006517 print "total: $cnt_error errors, $cnt_warn warnings, " .
6518 (($check)? "$cnt_chk checks, " : "") .
6519 "$cnt_lines lines checked\n";
Andy Whitcroftf0a594c2007-07-19 01:48:34 -07006520 }
Andy Whitcroft8905a672007-11-28 16:21:06 -08006521
Andy Whitcroftd2c0a232010-10-26 14:23:12 -07006522 if ($quiet == 0) {
Joe Perchesef212192016-05-20 17:04:11 -07006523 # If there were any defects found and not already fixing them
6524 if (!$clean and !$fix) {
6525 print << "EOM"
6526
6527NOTE: For some of the reported defects, checkpatch may be able to
6528 mechanically convert to the typical style using --fix or --fix-inplace.
6529EOM
6530 }
Andy Whitcroftd2c0a232010-10-26 14:23:12 -07006531 # If there were whitespace errors which cleanpatch can fix
6532 # then suggest that.
6533 if ($rpt_cleaners) {
Mike Frysingerb0781212011-03-22 16:34:43 -07006534 $rpt_cleaners = 0;
Joe Perchesd8469f12015-06-25 15:03:00 -07006535 print << "EOM"
6536
6537NOTE: Whitespace errors detected.
6538 You may wish to use scripts/cleanpatch or scripts/cleanfile
6539EOM
Andy Whitcroftd2c0a232010-10-26 14:23:12 -07006540 }
6541 }
6542
Joe Perchesd752fcc2014-08-06 16:11:05 -07006543 if ($clean == 0 && $fix &&
6544 ("@rawlines" ne "@fixed" ||
6545 $#fixed_inserted >= 0 || $#fixed_deleted >= 0)) {
Joe Perches9624b8d2014-01-23 15:54:44 -08006546 my $newfile = $filename;
6547 $newfile .= ".EXPERIMENTAL-checkpatch-fixes" if (!$fix_inplace);
Joe Perches3705ce52013-07-03 15:05:31 -07006548 my $linecount = 0;
6549 my $f;
6550
Joe Perchesd752fcc2014-08-06 16:11:05 -07006551 @fixed = fix_inserted_deleted_lines(\@fixed, \@fixed_inserted, \@fixed_deleted);
6552
Joe Perches3705ce52013-07-03 15:05:31 -07006553 open($f, '>', $newfile)
6554 or die "$P: Can't open $newfile for write\n";
6555 foreach my $fixed_line (@fixed) {
6556 $linecount++;
6557 if ($file) {
6558 if ($linecount > 3) {
6559 $fixed_line =~ s/^\+//;
Joe Perchesd752fcc2014-08-06 16:11:05 -07006560 print $f $fixed_line . "\n";
Joe Perches3705ce52013-07-03 15:05:31 -07006561 }
6562 } else {
6563 print $f $fixed_line . "\n";
6564 }
6565 }
6566 close($f);
6567
6568 if (!$quiet) {
6569 print << "EOM";
Joe Perchesd8469f12015-06-25 15:03:00 -07006570
Joe Perches3705ce52013-07-03 15:05:31 -07006571Wrote EXPERIMENTAL --fix correction(s) to '$newfile'
6572
6573Do _NOT_ trust the results written to this file.
6574Do _NOT_ submit these changes without inspecting them for correctness.
6575
6576This EXPERIMENTAL file is simply a convenience to help rewrite patches.
6577No warranties, expressed or implied...
Joe Perches3705ce52013-07-03 15:05:31 -07006578EOM
6579 }
6580 }
6581
Joe Perchesd8469f12015-06-25 15:03:00 -07006582 if ($quiet == 0) {
6583 print "\n";
6584 if ($clean == 1) {
6585 print "$vname has no obvious style problems and is ready for submission.\n";
6586 } else {
6587 print "$vname has style problems, please review.\n";
6588 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07006589 }
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07006590 return $clean;
6591}