2 # SPDX-License-Identifier: GPL-2.0
4 # (c) 2001, Dave Jones. (the file handling bit)
5 # (c) 2005, Joel Schopp <jschopp@austin.ibm.com> (the ugly bit)
6 # (c) 2007,2008, Andy Whitcroft <apw@uk.ibm.com> (new conditions, test suite)
7 # (c) 2008-2010 Andy Whitcroft <apw@canonical.com>
8 # (c) 2010-2018 Joe Perches <joe@perches.com>
15 use Term::ANSIColor qw(:constants);
16 use Encode qw(decode encode);
19 my $D = dirname(abs_path($P));
23 use Getopt::Long qw(:config no_auto_abbrev);
53 my $configuration_file = ".checkpatch.conf";
54 my $max_line_length = 100;
55 my $ignore_perl_version = 0;
56 my $minimum_perl_version = 5.10.0;
57 my $min_conf_desc_length = 4;
58 my $spelling_file = "$D/spelling.txt";
60 my $codespellfile = "/usr/share/codespell/dictionary.txt";
61 my $conststructsfile = "$D/const_structs.checkpatch";
62 my $typedefsfile = "";
65 my $allow_c99_comments = 1;
71 Usage: $P [OPTION]... [FILE]...
76 --no-tree run without a kernel tree
77 --no-signoff do not check for 'Signed-off-by' line
78 --patch treat FILE as patchfile (default)
79 --emacs emacs compile window format
80 --terse one line per report
81 --showfile emit diffed file position, not input file position
82 -g, --git treat FILE as a single commit or git revision range
83 single git commit with:
87 multiple git commits with:
91 git merges are ignored
92 -f, --file treat FILE as regular source file
93 --subjective, --strict enable more subjective tests
94 --list-types list the possible message types
95 --types TYPE(,TYPE2...) show only these comma separated message types
96 --ignore TYPE(,TYPE2...) ignore various comma separated message types
97 --show-types show the specific message type in the output
98 --max-line-length=n set the maximum line length, (default $max_line_length)
99 if exceeded, warn on patches
100 requires --strict for use with --file
101 --min-conf-desc-length=n set the min description length, if shorter, warn
102 --root=PATH PATH to the kernel tree root
103 --no-summary suppress the per-file summary
104 --mailback only produce a report in case of warnings/errors
105 --summary-file include the filename in summary
106 --debug KEY=[0|1] turn on/off debugging of KEY, where KEY is one of
107 'values', 'possible', 'type', and 'attr' (default
109 --test-only=WORD report only warnings/errors containing WORD
111 --fix EXPERIMENTAL - may create horrible results
112 If correctable single-line errors exist, create
113 "<inputfile>.EXPERIMENTAL-checkpatch-fixes"
114 with potential errors corrected to the preferred
116 --fix-inplace EXPERIMENTAL - may create horrible results
117 Is the same as --fix, but overwrites the input
118 file. It's your fault if there's no backup or git
119 --ignore-perl-version override checking of perl version. expect
121 --codespell Use the codespell dictionary for spelling/typos
122 (default:/usr/share/codespell/dictionary.txt)
123 --codespellfile Use this codespell dictionary
124 --typedefsfile Read additional types from this file
125 --color[=WHEN] Use colors 'always', 'never', or only when output
126 is a terminal ('auto'). Default is 'auto'.
127 --u-boot Run additional checks for U-Boot
128 -h, --help, --version display this help and exit
130 When FILE is - read standard input.
138 return grep { !$seen{$_}++ } @_;
148 open(my $script, '<', abs_path($P)) or
149 die "$P: Can't read '$P' $!\n";
151 my $text = <$script>;
155 # Also catch when type or level is passed through a variable
156 for ($text =~ /(?:(?:\bCHK|\bWARN|\bERROR|&\{\$msg_level})\s*\(|\$msg_type\s*=)\s*"([^"]+)"/g) {
159 @types = sort(uniq(@types));
160 print("#\tMessage type\n\n");
161 foreach my $type (@types) {
162 print(++$count . "\t" . $type . "\n");
168 my $conf = which_conf($configuration_file);
171 open(my $conffile, '<', "$conf")
172 or warn "$P: Can't find a readable $configuration_file file $!\n";
174 while (<$conffile>) {
177 $line =~ s/\s*\n?$//g;
181 next if ($line =~ m/^\s*#/);
182 next if ($line =~ m/^\s*$/);
184 my @words = split(" ", $line);
185 foreach my $word (@words) {
186 last if ($word =~ m/^#/);
187 push (@conf_args, $word);
191 unshift(@ARGV, @conf_args) if @conf_args;
194 # Perl's Getopt::Long allows options to take optional arguments after a space.
195 # Prevent --color by itself from consuming other arguments
197 if ($_ eq "--color" || $_ eq "-color") {
198 $_ = "--color=$color";
203 'q|quiet+' => \$quiet,
205 'signoff!' => \$chk_signoff,
206 'patch!' => \$chk_patch,
209 'showfile!' => \$showfile,
212 'subjective!' => \$check,
213 'strict!' => \$check,
214 'ignore=s' => \@ignore,
216 'show-types!' => \$show_types,
217 'list-types!' => \$list_types,
218 'max-line-length=i' => \$max_line_length,
219 'min-conf-desc-length=i' => \$min_conf_desc_length,
221 'summary!' => \$summary,
222 'mailback!' => \$mailback,
223 'summary-file!' => \$summary_file,
225 'fix-inplace!' => \$fix_inplace,
226 'ignore-perl-version!' => \$ignore_perl_version,
227 'debug=s' => \%debug,
228 'test-only=s' => \$tst_only,
229 'codespell!' => \$codespell,
230 'codespellfile=s' => \$codespellfile,
231 'typedefsfile=s' => \$typedefsfile,
232 'u-boot' => \$u_boot,
233 'color=s' => \$color,
234 'no-color' => \$color, #keep old behaviors of -nocolor
235 'nocolor' => \$color, #keep old behaviors of -nocolor
242 list_types(0) if ($list_types);
244 $fix = 1 if ($fix_inplace);
245 $check_orig = $check;
249 my $perl_version_ok = 1;
250 if ($^V && $^V lt $minimum_perl_version) {
251 $perl_version_ok = 0;
252 printf "$P: requires at least perl version %vd\n", $minimum_perl_version;
253 exit(1) if (!$ignore_perl_version);
256 #if no filenames are given, push '-' to read patch from stdin
261 if ($color =~ /^[01]$/) {
263 } elsif ($color =~ /^always$/i) {
265 } elsif ($color =~ /^never$/i) {
267 } elsif ($color =~ /^auto$/i) {
268 $color = (-t STDOUT);
270 die "Invalid color mode: $color\n";
273 sub hash_save_array_words {
274 my ($hashRef, $arrayRef) = @_;
276 my @array = split(/,/, join(',', @$arrayRef));
277 foreach my $word (@array) {
278 $word =~ s/\s*\n?$//g;
281 $word =~ tr/[a-z]/[A-Z]/;
283 next if ($word =~ m/^\s*#/);
284 next if ($word =~ m/^\s*$/);
290 sub hash_show_words {
291 my ($hashRef, $prefix) = @_;
293 if (keys %$hashRef) {
294 print "\nNOTE: $prefix message types:";
295 foreach my $word (sort keys %$hashRef) {
302 hash_save_array_words(\%ignore_type, \@ignore);
303 hash_save_array_words(\%use_type, \@use);
306 my $dbg_possible = 0;
309 for my $key (keys %debug) {
311 eval "\${dbg_$key} = '$debug{$key}';";
315 my $rpt_cleaners = 0;
324 if (!top_of_kernel_tree($root)) {
325 die "$P: $root: --root does not point at a valid tree\n";
328 if (top_of_kernel_tree('.')) {
330 } elsif ($0 =~ m@(.*)/scripts/[^/]*$@ &&
331 top_of_kernel_tree($1)) {
336 if (!defined $root) {
337 print "Must be run from the top-level dir. of a kernel tree\n";
342 my $emitted_corrupt = 0;
345 [A-Za-z_][A-Za-z\d_]*
346 (?:\s*\#\#\s*[A-Za-z_][A-Za-z\d_]*)*
348 our $Storage = qr{extern|static|asmlinkage};
362 our $InitAttributePrefix = qr{__(?:mem|cpu|dev|net_|)};
363 our $InitAttributeData = qr{$InitAttributePrefix(?:initdata\b)};
364 our $InitAttributeConst = qr{$InitAttributePrefix(?:initconst\b)};
365 our $InitAttributeInit = qr{$InitAttributePrefix(?:init\b)};
366 our $InitAttribute = qr{$InitAttributeData|$InitAttributeConst|$InitAttributeInit};
368 # Notes to $Attribute:
369 # We need \b after 'init' otherwise 'initconst' will cause a false positive in a check
391 ____cacheline_aligned|
392 ____cacheline_aligned_in_smp|
393 ____cacheline_internodealigned_in_smp|
397 our $Inline = qr{inline|__always_inline|noinline|__inline|__inline__};
398 our $Member = qr{->$Ident|\.$Ident|\[[^]]*\]};
399 our $Lval = qr{$Ident(?:$Member)*};
401 our $Int_type = qr{(?i)llu|ull|ll|lu|ul|l|u};
402 our $Binary = qr{(?i)0b[01]+$Int_type?};
403 our $Hex = qr{(?i)0x[0-9a-f]+$Int_type?};
404 our $Int = qr{[0-9]+$Int_type?};
405 our $Octal = qr{0[0-7]+$Int_type?};
406 our $String = qr{"[X\t]*"};
407 our $Float_hex = qr{(?i)0x[0-9a-f]+p-?[0-9]+[fl]?};
408 our $Float_dec = qr{(?i)(?:[0-9]+\.[0-9]*|[0-9]*\.[0-9]+)(?:e-?[0-9]+)?[fl]?};
409 our $Float_int = qr{(?i)[0-9]+e-?[0-9]+[fl]?};
410 our $Float = qr{$Float_hex|$Float_dec|$Float_int};
411 our $Constant = qr{$Float|$Binary|$Octal|$Hex|$Int};
412 our $Assignment = qr{\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=};
413 our $Compare = qr{<=|>=|==|!=|<|(?<!-)>};
414 our $Arithmetic = qr{\+|-|\*|\/|%};
418 &&|\|\||,|\^|\+\+|--|&|\||$Arithmetic
421 our $c90_Keywords = qr{do|for|while|if|else|return|goto|continue|switch|default|case|break}x;
425 our $NonptrTypeMisordered;
426 our $NonptrTypeWithAttr;
430 our $DeclareMisordered;
432 our $NON_ASCII_UTF8 = qr{
433 [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
434 | \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
435 | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
436 | \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
437 | \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
438 | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
439 | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
443 [\x09\x0A\x0D\x20-\x7E] # ASCII
447 our $typeC99Typedefs = qr{(?:__)?(?:[us]_?)?int_?(?:8|16|32|64)_t};
448 our $typeOtherOSTypedefs = qr{(?x:
449 u_(?:char|short|int|long) | # bsd
450 u(?:nchar|short|int|long) # sysv
452 our $typeKernelTypedefs = qr{(?x:
453 (?:__)?(?:u|s|be|le)(?:8|16|32|64)|
456 our $typeTypedefs = qr{(?x:
458 $typeOtherOSTypedefs\b|
459 $typeKernelTypedefs\b
462 our $zero_initializer = qr{(?:(?:0[xX])?0+$Int_type?|NULL|false)\b};
464 our $logFunctions = qr{(?x:
465 printk(?:_ratelimited|_once|_deferred_once|_deferred|)|
466 (?:[a-z0-9]+_){1,2}(?:printk|emerg|alert|crit|err|warning|warn|notice|info|debug|dbg|vdbg|devel|cont|WARN)(?:_ratelimited|_once|)|
468 WARN(?:_RATELIMIT|_ONCE|)|
473 seq_vprintf|seq_printf|seq_puts
476 our $signature_tags = qr{(?xi:
487 our @typeListMisordered = (
488 qr{char\s+(?:un)?signed},
489 qr{int\s+(?:(?:un)?signed\s+)?short\s},
490 qr{int\s+short(?:\s+(?:un)?signed)},
491 qr{short\s+int(?:\s+(?:un)?signed)},
492 qr{(?:un)?signed\s+int\s+short},
493 qr{short\s+(?:un)?signed},
494 qr{long\s+int\s+(?:un)?signed},
495 qr{int\s+long\s+(?:un)?signed},
496 qr{long\s+(?:un)?signed\s+int},
497 qr{int\s+(?:un)?signed\s+long},
498 qr{int\s+(?:un)?signed},
499 qr{int\s+long\s+long\s+(?:un)?signed},
500 qr{long\s+long\s+int\s+(?:un)?signed},
501 qr{long\s+long\s+(?:un)?signed\s+int},
502 qr{long\s+long\s+(?:un)?signed},
503 qr{long\s+(?:un)?signed},
508 qr{(?:(?:un)?signed\s+)?char},
509 qr{(?:(?:un)?signed\s+)?short\s+int},
510 qr{(?:(?:un)?signed\s+)?short},
511 qr{(?:(?:un)?signed\s+)?int},
512 qr{(?:(?:un)?signed\s+)?long\s+int},
513 qr{(?:(?:un)?signed\s+)?long\s+long\s+int},
514 qr{(?:(?:un)?signed\s+)?long\s+long},
515 qr{(?:(?:un)?signed\s+)?long},
524 qr{${Ident}_handler},
525 qr{${Ident}_handler_fn},
529 our $C90_int_types = qr{(?x:
530 long\s+long\s+int\s+(?:un)?signed|
531 long\s+long\s+(?:un)?signed\s+int|
532 long\s+long\s+(?:un)?signed|
533 (?:(?:un)?signed\s+)?long\s+long\s+int|
534 (?:(?:un)?signed\s+)?long\s+long|
535 int\s+long\s+long\s+(?:un)?signed|
536 int\s+(?:(?:un)?signed\s+)?long\s+long|
538 long\s+int\s+(?:un)?signed|
539 long\s+(?:un)?signed\s+int|
540 long\s+(?:un)?signed|
541 (?:(?:un)?signed\s+)?long\s+int|
542 (?:(?:un)?signed\s+)?long|
543 int\s+long\s+(?:un)?signed|
544 int\s+(?:(?:un)?signed\s+)?long|
547 (?:(?:un)?signed\s+)?int
550 our @typeListFile = ();
551 our @typeListWithAttr = (
553 qr{struct\s+$InitAttribute\s+$Ident},
554 qr{union\s+$InitAttribute\s+$Ident},
557 our @modifierList = (
560 our @modifierListFile = ();
562 our @mode_permission_funcs = (
564 ["module_param_(?:array|named|string)", 4],
565 ["module_param_array_named", 5],
566 ["debugfs_create_(?:file|u8|u16|u32|u64|x8|x16|x32|x64|size_t|atomic_t|bool|blob|regset32|u32_array)", 2],
567 ["proc_create(?:_data|)", 2],
568 ["(?:CLASS|DEVICE|SENSOR|SENSOR_DEVICE|IIO_DEVICE)_ATTR", 2],
569 ["IIO_DEV_ATTR_[A-Z_]+", 1],
570 ["SENSOR_(?:DEVICE_|)ATTR_2", 2],
571 ["SENSOR_TEMPLATE(?:_2|)", 3],
575 #Create a search pattern for all these functions to speed up a loop below
576 our $mode_perms_search = "";
577 foreach my $entry (@mode_permission_funcs) {
578 $mode_perms_search .= '|' if ($mode_perms_search ne "");
579 $mode_perms_search .= $entry->[0];
581 $mode_perms_search = "(?:${mode_perms_search})";
583 our $mode_perms_world_writable = qr{
591 our %mode_permission_string_types = (
610 #Create a search pattern for all these strings to speed up a loop below
611 our $mode_perms_string_search = "";
612 foreach my $entry (keys %mode_permission_string_types) {
613 $mode_perms_string_search .= '|' if ($mode_perms_string_search ne "");
614 $mode_perms_string_search .= $entry;
616 our $single_mode_perms_string_search = "(?:${mode_perms_string_search})";
617 our $multi_mode_perms_string_search = qr{
618 ${single_mode_perms_string_search}
619 (?:\s*\|\s*${single_mode_perms_string_search})*
625 return trim($string) if ($string =~ /^\s*0[0-7]{3,3}\s*$/);
632 while ($string =~ /\b(($single_mode_perms_string_search)\b(?:\s*\|\s*)?\s*)/g) {
633 $curpos = pos($string);
636 last if ($lastpos > 0 && ($curpos - length($omatch) != $lastpos));
638 $to |= $mode_permission_string_types{$match};
639 $val .= '\s*\|\s*' if ($val ne "");
643 $oval =~ s/^\s*\|\s*//;
644 $oval =~ s/\s*\|\s*$//;
645 return sprintf("%04o", $to);
648 our $allowed_asm_includes = qr{(?x:
654 # memory.h: ARM has a custom one
656 # Load common spelling mistakes and build regular expression list.
660 if (open(my $spelling, '<', $spelling_file)) {
661 while (<$spelling>) {
664 $line =~ s/\s*\n?$//g;
667 next if ($line =~ m/^\s*#/);
668 next if ($line =~ m/^\s*$/);
670 my ($suspect, $fix) = split(/\|\|/, $line);
672 $spelling_fix{$suspect} = $fix;
676 warn "No typos will be found - file '$spelling_file': $!\n";
680 if (open(my $spelling, '<', $codespellfile)) {
681 while (<$spelling>) {
684 $line =~ s/\s*\n?$//g;
687 next if ($line =~ m/^\s*#/);
688 next if ($line =~ m/^\s*$/);
689 next if ($line =~ m/, disabled/i);
693 my ($suspect, $fix) = split(/->/, $line);
695 $spelling_fix{$suspect} = $fix;
699 warn "No codespell typos will be found - file '$codespellfile': $!\n";
703 $misspellings = join("|", sort keys %spelling_fix) if keys %spelling_fix;
706 my ($wordsRef, $file) = @_;
708 if (open(my $words, '<', $file)) {
712 $line =~ s/\s*\n?$//g;
715 next if ($line =~ m/^\s*#/);
716 next if ($line =~ m/^\s*$/);
718 print("$file: '$line' invalid - ignored\n");
722 $$wordsRef .= '|' if ($$wordsRef ne "");
732 my $const_structs = "";
733 read_words(\$const_structs, $conststructsfile)
734 or warn "No structs that should be const will be found - file '$conststructsfile': $!\n";
736 my $typeOtherTypedefs = "";
737 if (length($typedefsfile)) {
738 read_words(\$typeOtherTypedefs, $typedefsfile)
739 or warn "No additional types will be considered - file '$typedefsfile': $!\n";
741 $typeTypedefs .= '|' . $typeOtherTypedefs if ($typeOtherTypedefs ne "");
744 my $mods = "(?x: \n" . join("|\n ", (@modifierList, @modifierListFile)) . "\n)";
745 my $all = "(?x: \n" . join("|\n ", (@typeList, @typeListFile)) . "\n)";
746 my $Misordered = "(?x: \n" . join("|\n ", @typeListMisordered) . "\n)";
747 my $allWithAttr = "(?x: \n" . join("|\n ", @typeListWithAttr) . "\n)";
748 $Modifier = qr{(?:$Attribute|$Sparse|$mods)};
754 (?:$Modifier\s+|const\s+)*
756 (?:typeof|__typeof__)\s*\([^\)]*\)|
760 (?:\s+$Modifier|\s+const)*
762 $NonptrTypeMisordered = qr{
763 (?:$Modifier\s+|const\s+)*
767 (?:\s+$Modifier|\s+const)*
769 $NonptrTypeWithAttr = qr{
770 (?:$Modifier\s+|const\s+)*
772 (?:typeof|__typeof__)\s*\([^\)]*\)|
776 (?:\s+$Modifier|\s+const)*
780 (?:(?:\s|\*|\[\])+\s*const|(?:\s|\*\s*(?:const\s*)?|\[\])+|(?:\s*\[\s*\])+)?
781 (?:\s+$Inline|\s+$Modifier)*
783 $TypeMisordered = qr{
784 $NonptrTypeMisordered
785 (?:(?:\s|\*|\[\])+\s*const|(?:\s|\*\s*(?:const\s*)?|\[\])+|(?:\s*\[\s*\])+)?
786 (?:\s+$Inline|\s+$Modifier)*
788 $Declare = qr{(?:$Storage\s+(?:$Inline\s+)?)?$Type};
789 $DeclareMisordered = qr{(?:$Storage\s+(?:$Inline\s+)?)?$TypeMisordered};
793 our $Typecast = qr{\s*(\(\s*$NonptrType\s*\)){0,1}\s*};
795 # Using $balanced_parens, $LvalOrFunc, or $FuncArg
796 # requires at least perl version v5.10.0
797 # Any use must be runtime checked with $^V
799 our $balanced_parens = qr/(\((?:[^\(\)]++|(?-1))*\))/;
800 our $LvalOrFunc = qr{((?:[\&\*]\s*)?$Lval)\s*($balanced_parens{0,1})\s*};
801 our $FuncArg = qr{$Typecast{0,1}($LvalOrFunc|$Constant|$String)};
803 our $declaration_macros = qr{(?x:
804 (?:$Storage\s+)?(?:[A-Z_][A-Z0-9]*_){0,2}(?:DEFINE|DECLARE)(?:_[A-Z0-9]+){1,6}\s*\(|
805 (?:$Storage\s+)?[HLP]?LIST_HEAD\s*\(|
806 (?:$Storage\s+)?${Type}\s+uninitialized_var\s*\(|
807 (?:SKCIPHER_REQUEST|SHASH_DESC|AHASH_REQUEST)_ON_STACK\s*\(
812 return "" if (!defined($string));
814 while ($string =~ /^\s*\(.*\)\s*$/) {
815 $string =~ s@^\s*\(\s*@@;
816 $string =~ s@\s*\)\s*$@@;
819 $string =~ s@\s+@ @g;
824 sub seed_camelcase_file {
827 return if (!(-f $file));
831 open(my $include_file, '<', "$file")
832 or warn "$P: Can't read '$file' $!\n";
833 my $text = <$include_file>;
834 close($include_file);
836 my @lines = split('\n', $text);
838 foreach my $line (@lines) {
839 next if ($line !~ /(?:[A-Z][a-z]|[a-z][A-Z])/);
840 if ($line =~ /^[ \t]*(?:#[ \t]*define|typedef\s+$Type)\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)/) {
842 } elsif ($line =~ /^\s*$Declare\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)\s*[\(\[,;]/) {
844 } elsif ($line =~ /^\s*(?:union|struct|enum)\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)\s*[;\{]/) {
850 sub is_maintained_obsolete {
853 return 0 if (!$tree || !(-e "$root/scripts/get_maintainer.pl"));
855 my $status = `perl $root/scripts/get_maintainer.pl --status --nom --nol --nogit --nogit-fallback -f $filename 2>&1`;
857 return $status =~ /obsolete/i;
860 sub is_SPDX_License_valid {
863 return 1 if (!$tree || which("python") eq "" || !(-e "$root/scripts/spdxcheck.py") || !(-e "$root/.git"));
865 my $root_path = abs_path($root);
866 my $status = `cd "$root_path"; echo "$license" | python scripts/spdxcheck.py -`;
867 return 0 if ($status ne "");
871 my $camelcase_seeded = 0;
872 sub seed_camelcase_includes {
873 return if ($camelcase_seeded);
876 my $camelcase_cache = "";
877 my @include_files = ();
879 $camelcase_seeded = 1;
882 my $git_last_include_commit = `git log --no-merges --pretty=format:"%h%n" -1 -- include`;
883 chomp $git_last_include_commit;
884 $camelcase_cache = ".checkpatch-camelcase.git.$git_last_include_commit";
886 my $last_mod_date = 0;
887 $files = `find $root/include -name "*.h"`;
888 @include_files = split('\n', $files);
889 foreach my $file (@include_files) {
890 my $date = POSIX::strftime("%Y%m%d%H%M",
891 localtime((stat $file)[9]));
892 $last_mod_date = $date if ($last_mod_date < $date);
894 $camelcase_cache = ".checkpatch-camelcase.date.$last_mod_date";
897 if ($camelcase_cache ne "" && -f $camelcase_cache) {
898 open(my $camelcase_file, '<', "$camelcase_cache")
899 or warn "$P: Can't read '$camelcase_cache' $!\n";
900 while (<$camelcase_file>) {
904 close($camelcase_file);
910 $files = `git ls-files "include/*.h"`;
911 @include_files = split('\n', $files);
914 foreach my $file (@include_files) {
915 seed_camelcase_file($file);
918 if ($camelcase_cache ne "") {
919 unlink glob ".checkpatch-camelcase.*";
920 open(my $camelcase_file, '>', "$camelcase_cache")
921 or warn "$P: Can't write '$camelcase_cache' $!\n";
922 foreach (sort { lc($a) cmp lc($b) } keys(%camelcase)) {
923 print $camelcase_file ("$_\n");
925 close($camelcase_file);
929 sub git_commit_info {
930 my ($commit, $id, $desc) = @_;
932 return ($id, $desc) if ((which("git") eq "") || !(-e ".git"));
934 my $output = `git log --no-color --format='%H %s' -1 $commit 2>&1`;
935 $output =~ s/^\s*//gm;
936 my @lines = split("\n", $output);
938 return ($id, $desc) if ($#lines < 0);
940 if ($lines[0] =~ /^error: short SHA1 $commit is ambiguous\./) {
941 # Maybe one day convert this block of bash into something that returns
942 # all matching commit ids, but it's very slow...
944 # echo "checking commits $1..."
945 # git rev-list --remotes | grep -i "^$1" |
946 # while read line ; do
947 # git log --format='%H %s' -1 $line |
948 # echo "commit $(cut -c 1-12,41-)"
950 } elsif ($lines[0] =~ /^fatal: ambiguous argument '$commit': unknown revision or path not in the working tree\./) {
953 $id = substr($lines[0], 0, 12);
954 $desc = substr($lines[0], 41);
960 $chk_signoff = 0 if ($file);
965 my @fixed_inserted = ();
966 my @fixed_deleted = ();
969 # If input is git commits, extract all commits from the commit expressions.
970 # For example, HEAD-3 means we need check 'HEAD, HEAD~1, HEAD~2'.
971 die "$P: No git repository found\n" if ($git && !-e ".git");
975 foreach my $commit_expr (@ARGV) {
977 if ($commit_expr =~ m/^(.*)-(\d+)$/) {
978 $git_range = "-$2 $1";
979 } elsif ($commit_expr =~ m/\.\./) {
980 $git_range = "$commit_expr";
982 $git_range = "-1 $commit_expr";
984 my $lines = `git log --no-color --no-merges --pretty=format:'%H %s' $git_range`;
985 foreach my $line (split(/\n/, $lines)) {
986 $line =~ /^([0-9a-fA-F]{40,40}) (.*)$/;
987 next if (!defined($1) || !defined($2));
990 unshift(@commits, $sha1);
991 $git_commits{$sha1} = $subject;
994 die "$P: no git commits after extraction!\n" if (@commits == 0);
999 for my $filename (@ARGV) {
1002 open($FILE, '-|', "git format-patch -M --stdout -1 $filename") ||
1003 die "$P: $filename: git format-patch failed - $!\n";
1005 open($FILE, '-|', "diff -u /dev/null $filename") ||
1006 die "$P: $filename: diff failed - $!\n";
1007 } elsif ($filename eq '-') {
1008 open($FILE, '<&STDIN');
1010 open($FILE, '<', "$filename") ||
1011 die "$P: $filename: open failed - $!\n";
1013 if ($filename eq '-') {
1014 $vname = 'Your patch';
1016 $vname = "Commit " . substr($filename, 0, 12) . ' ("' . $git_commits{$filename} . '")';
1022 push(@rawlines, $_);
1026 if ($#ARGV > 0 && $quiet == 0) {
1027 print '-' x length($vname) . "\n";
1029 print '-' x length($vname) . "\n";
1032 if (!process($filename)) {
1038 @fixed_inserted = ();
1039 @fixed_deleted = ();
1041 @modifierListFile = ();
1047 hash_show_words(\%use_type, "Used");
1048 hash_show_words(\%ignore_type, "Ignored");
1050 if (!$perl_version_ok) {
1053 NOTE: perl $^V is not modern enough to detect all possible issues.
1054 An upgrade to at least perl $minimum_perl_version is suggested.
1060 NOTE: If any of the errors are false positives, please report
1061 them to the maintainer, see CHECKPATCH in MAINTAINERS.
1068 sub top_of_kernel_tree {
1072 "COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
1073 "README", "Documentation", "arch", "include", "drivers",
1074 "fs", "init", "ipc", "kernel", "lib", "scripts",
1077 foreach my $check (@tree_check) {
1078 if (! -e $root . '/' . $check) {
1086 my ($formatted_email) = @_;
1092 if ($formatted_email =~ /^(.*)<(\S+\@\S+)>(.*)$/) {
1095 $comment = $3 if defined $3;
1096 } elsif ($formatted_email =~ /^\s*<(\S+\@\S+)>(.*)$/) {
1098 $comment = $2 if defined $2;
1099 } elsif ($formatted_email =~ /(\S+\@\S+)(.*)$/) {
1101 $comment = $2 if defined $2;
1102 $formatted_email =~ s/\Q$address\E.*$//;
1103 $name = $formatted_email;
1104 $name = trim($name);
1105 $name =~ s/^\"|\"$//g;
1106 # If there's a name left after stripping spaces and
1107 # leading quotes, and the address doesn't have both
1108 # leading and trailing angle brackets, the address
1110 # "joe smith joe@smith.com" bad
1111 # "joe smith <joe@smith.com" bad
1112 if ($name ne "" && $address !~ /^<[^>]+>$/) {
1119 $name = trim($name);
1120 $name =~ s/^\"|\"$//g;
1121 $address = trim($address);
1122 $address =~ s/^\<|\>$//g;
1124 if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
1125 $name =~ s/(?<!\\)"/\\"/g; ##escape quotes
1126 $name = "\"$name\"";
1129 return ($name, $address, $comment);
1133 my ($name, $address) = @_;
1135 my $formatted_email;
1137 $name = trim($name);
1138 $name =~ s/^\"|\"$//g;
1139 $address = trim($address);
1141 if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
1142 $name =~ s/(?<!\\)"/\\"/g; ##escape quotes
1143 $name = "\"$name\"";
1146 if ("$name" eq "") {
1147 $formatted_email = "$address";
1149 $formatted_email = "$name <$address>";
1152 return $formatted_email;
1158 foreach my $path (split(/:/, $ENV{PATH})) {
1159 if (-e "$path/$bin") {
1160 return "$path/$bin";
1170 foreach my $path (split(/:/, ".:$ENV{HOME}:.scripts")) {
1171 if (-e "$path/$conf") {
1172 return "$path/$conf";
1184 for my $c (split(//, $str)) {
1188 for (; ($n % 8) != 0; $n++) {
1200 (my $res = shift) =~ tr/\t/ /c;
1207 # Drop the diff line leader and expand tabs
1209 $line = expand_tabs($line);
1211 # Pick the indent from the front of the line.
1212 my ($white) = ($line =~ /^(\s*)/);
1214 return (length($line), length($white));
1217 my $sanitise_quote = '';
1219 sub sanitise_line_reset {
1220 my ($in_comment) = @_;
1223 $sanitise_quote = '*/';
1225 $sanitise_quote = '';
1238 # Always copy over the diff marker.
1239 $res = substr($line, 0, 1);
1241 for ($off = 1; $off < length($line); $off++) {
1242 $c = substr($line, $off, 1);
1244 # Comments we are whacking completely including the begin
1245 # and end, all to $;.
1246 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
1247 $sanitise_quote = '*/';
1249 substr($res, $off, 2, "$;$;");
1253 if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') {
1254 $sanitise_quote = '';
1255 substr($res, $off, 2, "$;$;");
1259 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '//') {
1260 $sanitise_quote = '//';
1262 substr($res, $off, 2, $sanitise_quote);
1267 # A \ in a string means ignore the next character.
1268 if (($sanitise_quote eq "'" || $sanitise_quote eq '"') &&
1270 substr($res, $off, 2, 'XX');
1275 if ($c eq "'" || $c eq '"') {
1276 if ($sanitise_quote eq '') {
1277 $sanitise_quote = $c;
1279 substr($res, $off, 1, $c);
1281 } elsif ($sanitise_quote eq $c) {
1282 $sanitise_quote = '';
1286 #print "c<$c> SQ<$sanitise_quote>\n";
1287 if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") {
1288 substr($res, $off, 1, $;);
1289 } elsif ($off != 0 && $sanitise_quote eq '//' && $c ne "\t") {
1290 substr($res, $off, 1, $;);
1291 } elsif ($off != 0 && $sanitise_quote && $c ne "\t") {
1292 substr($res, $off, 1, 'X');
1294 substr($res, $off, 1, $c);
1298 if ($sanitise_quote eq '//') {
1299 $sanitise_quote = '';
1302 # The pathname on a #include may be surrounded by '<' and '>'.
1303 if ($res =~ /^.\s*\#\s*include\s+\<(.*)\>/) {
1304 my $clean = 'X' x length($1);
1305 $res =~ s@\<.*\>@<$clean>@;
1307 # The whole of a #error is a string.
1308 } elsif ($res =~ /^.\s*\#\s*(?:error|warning)\s+(.*)\b/) {
1309 my $clean = 'X' x length($1);
1310 $res =~ s@(\#\s*(?:error|warning)\s+).*@$1$clean@;
1313 if ($allow_c99_comments && $res =~ m@(//.*$)@) {
1315 $res =~ s/\Q$match\E/"$;" x length($match)/e;
1321 sub get_quoted_string {
1322 my ($line, $rawline) = @_;
1324 return "" if (!defined($line) || !defined($rawline));
1325 return "" if ($line !~ m/($String)/g);
1326 return substr($rawline, $-[0], $+[0] - $-[0]);
1329 sub ctx_statement_block {
1330 my ($linenr, $remain, $off) = @_;
1331 my $line = $linenr - 1;
1334 my $coff = $off - 1;
1348 @stack = (['', 0]) if ($#stack == -1);
1350 #warn "CSB: blk<$blk> remain<$remain>\n";
1351 # If we are about to drop off the end, pull in more
1354 for (; $remain > 0; $line++) {
1355 last if (!defined $lines[$line]);
1356 next if ($lines[$line] =~ /^-/);
1359 $blk .= $lines[$line] . "\n";
1360 $len = length($blk);
1364 # Bail if there is no further context.
1365 #warn "CSB: blk<$blk> off<$off> len<$len>\n";
1369 if ($level == 0 && substr($blk, $off) =~ /^.\s*#\s*define/) {
1375 $c = substr($blk, $off, 1);
1376 $remainder = substr($blk, $off);
1378 #warn "CSB: c<$c> type<$type> level<$level> remainder<$remainder> coff_set<$coff_set>\n";
1380 # Handle nested #if/#else.
1381 if ($remainder =~ /^#\s*(?:ifndef|ifdef|if)\s/) {
1382 push(@stack, [ $type, $level ]);
1383 } elsif ($remainder =~ /^#\s*(?:else|elif)\b/) {
1384 ($type, $level) = @{$stack[$#stack - 1]};
1385 } elsif ($remainder =~ /^#\s*endif\b/) {
1386 ($type, $level) = @{pop(@stack)};
1389 # Statement ends at the ';' or a close '}' at the
1391 if ($level == 0 && $c eq ';') {
1395 # An else is really a conditional as long as its not else if
1396 if ($level == 0 && $coff_set == 0 &&
1397 (!defined($p) || $p =~ /(?:\s|\}|\+)/) &&
1398 $remainder =~ /^(else)(?:\s|{)/ &&
1399 $remainder !~ /^else\s+if\b/) {
1400 $coff = $off + length($1) - 1;
1402 #warn "CSB: mark coff<$coff> soff<$soff> 1<$1>\n";
1403 #warn "[" . substr($blk, $soff, $coff - $soff + 1) . "]\n";
1406 if (($type eq '' || $type eq '(') && $c eq '(') {
1410 if ($type eq '(' && $c eq ')') {
1412 $type = ($level != 0)? '(' : '';
1414 if ($level == 0 && $coff < $soff) {
1417 #warn "CSB: mark coff<$coff>\n";
1420 if (($type eq '' || $type eq '{') && $c eq '{') {
1424 if ($type eq '{' && $c eq '}') {
1426 $type = ($level != 0)? '{' : '';
1429 if (substr($blk, $off + 1, 1) eq ';') {
1435 # Preprocessor commands end at the newline unless escaped.
1436 if ($type eq '#' && $c eq "\n" && $p ne "\\") {
1444 # We are truly at the end, so shuffle to the next line.
1451 my $statement = substr($blk, $soff, $off - $soff + 1);
1452 my $condition = substr($blk, $soff, $coff - $soff + 1);
1454 #warn "STATEMENT<$statement>\n";
1455 #warn "CONDITION<$condition>\n";
1457 #print "coff<$coff> soff<$off> loff<$loff>\n";
1459 return ($statement, $condition,
1460 $line, $remain + 1, $off - $loff + 1, $level);
1463 sub statement_lines {
1466 # Strip the diff line prefixes and rip blank lines at start and end.
1467 $stmt =~ s/(^|\n)./$1/g;
1471 my @stmt_lines = ($stmt =~ /\n/g);
1473 return $#stmt_lines + 2;
1476 sub statement_rawlines {
1479 my @stmt_lines = ($stmt =~ /\n/g);
1481 return $#stmt_lines + 2;
1484 sub statement_block_size {
1487 $stmt =~ s/(^|\n)./$1/g;
1493 my @stmt_lines = ($stmt =~ /\n/g);
1494 my @stmt_statements = ($stmt =~ /;/g);
1496 my $stmt_lines = $#stmt_lines + 2;
1497 my $stmt_statements = $#stmt_statements + 1;
1499 if ($stmt_lines > $stmt_statements) {
1502 return $stmt_statements;
1506 sub ctx_statement_full {
1507 my ($linenr, $remain, $off) = @_;
1508 my ($statement, $condition, $level);
1512 # Grab the first conditional/block pair.
1513 ($statement, $condition, $linenr, $remain, $off, $level) =
1514 ctx_statement_block($linenr, $remain, $off);
1515 #print "F: c<$condition> s<$statement> remain<$remain>\n";
1516 push(@chunks, [ $condition, $statement ]);
1517 if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
1518 return ($level, $linenr, @chunks);
1521 # Pull in the following conditional/block pairs and see if they
1522 # could continue the statement.
1524 ($statement, $condition, $linenr, $remain, $off, $level) =
1525 ctx_statement_block($linenr, $remain, $off);
1526 #print "C: c<$condition> s<$statement> remain<$remain>\n";
1527 last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
1529 push(@chunks, [ $condition, $statement ]);
1532 return ($level, $linenr, @chunks);
1536 my ($linenr, $remain, $outer, $open, $close, $off) = @_;
1538 my $start = $linenr - 1;
1545 my @stack = ($level);
1546 for ($line = $start; $remain > 0; $line++) {
1547 next if ($rawlines[$line] =~ /^-/);
1550 $blk .= $rawlines[$line];
1552 # Handle nested #if/#else.
1553 if ($lines[$line] =~ /^.\s*#\s*(?:ifndef|ifdef|if)\s/) {
1554 push(@stack, $level);
1555 } elsif ($lines[$line] =~ /^.\s*#\s*(?:else|elif)\b/) {
1556 $level = $stack[$#stack - 1];
1557 } elsif ($lines[$line] =~ /^.\s*#\s*endif\b/) {
1558 $level = pop(@stack);
1561 foreach my $c (split(//, $lines[$line])) {
1562 ##print "C<$c>L<$level><$open$close>O<$off>\n";
1568 if ($c eq $close && $level > 0) {
1570 last if ($level == 0);
1571 } elsif ($c eq $open) {
1576 if (!$outer || $level <= 1) {
1577 push(@res, $rawlines[$line]);
1580 last if ($level == 0);
1583 return ($level, @res);
1585 sub ctx_block_outer {
1586 my ($linenr, $remain) = @_;
1588 my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0);
1592 my ($linenr, $remain) = @_;
1594 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0);
1598 my ($linenr, $remain, $off) = @_;
1600 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
1603 sub ctx_block_level {
1604 my ($linenr, $remain) = @_;
1606 return ctx_block_get($linenr, $remain, 0, '{', '}', 0);
1608 sub ctx_statement_level {
1609 my ($linenr, $remain, $off) = @_;
1611 return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
1614 sub ctx_locate_comment {
1615 my ($first_line, $end_line) = @_;
1617 # Catch a comment on the end of the line itself.
1618 my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@);
1619 return $current_comment if (defined $current_comment);
1621 # Look through the context and try and figure out if there is a
1624 $current_comment = '';
1625 for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
1626 my $line = $rawlines[$linenr - 1];
1628 if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
1631 if ($line =~ m@/\*@) {
1634 if (!$in_comment && $current_comment ne '') {
1635 $current_comment = '';
1637 $current_comment .= $line . "\n" if ($in_comment);
1638 if ($line =~ m@\*/@) {
1643 chomp($current_comment);
1644 return($current_comment);
1646 sub ctx_has_comment {
1647 my ($first_line, $end_line) = @_;
1648 my $cmt = ctx_locate_comment($first_line, $end_line);
1650 ##print "LINE: $rawlines[$end_line - 1 ]\n";
1651 ##print "CMMT: $cmt\n";
1653 return ($cmt ne '');
1657 my ($linenr, $cnt) = @_;
1659 my $offset = $linenr - 1;
1664 $line = $rawlines[$offset++];
1665 next if (defined($line) && $line =~ /^-/);
1673 my ($linenr, $lc) = @_;
1675 my $stat_real = raw_line($linenr, 0);
1676 for (my $count = $linenr + 1; $count <= $lc; $count++) {
1677 $stat_real = $stat_real . "\n" . raw_line($count, 0);
1684 my ($linenr, $cnt, $here) = @_;
1686 my $herectx = $here . "\n";
1687 for (my $n = 0; $n < $cnt; $n++) {
1688 $herectx .= raw_line($linenr, $n) . "\n";
1699 while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
1702 $coded = sprintf("^%c", unpack('C', $2) + 64);
1711 my $av_preprocessor = 0;
1716 sub annotate_reset {
1717 $av_preprocessor = 0;
1719 @av_paren_type = ('E');
1720 $av_pend_colon = 'O';
1723 sub annotate_values {
1724 my ($stream, $type) = @_;
1727 my $var = '_' x length($stream);
1730 print "$stream\n" if ($dbg_values > 1);
1732 while (length($cur)) {
1733 @av_paren_type = ('E') if ($#av_paren_type < 0);
1734 print " <" . join('', @av_paren_type) .
1735 "> <$type> <$av_pending>" if ($dbg_values > 1);
1736 if ($cur =~ /^(\s+)/o) {
1737 print "WS($1)\n" if ($dbg_values > 1);
1738 if ($1 =~ /\n/ && $av_preprocessor) {
1739 $type = pop(@av_paren_type);
1740 $av_preprocessor = 0;
1743 } elsif ($cur =~ /^(\(\s*$Type\s*)\)/ && $av_pending eq '_') {
1744 print "CAST($1)\n" if ($dbg_values > 1);
1745 push(@av_paren_type, $type);
1748 } elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\(|\s*$)/) {
1749 print "DECLARE($1)\n" if ($dbg_values > 1);
1752 } elsif ($cur =~ /^($Modifier)\s*/) {
1753 print "MODIFIER($1)\n" if ($dbg_values > 1);
1756 } elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) {
1757 print "DEFINE($1,$2)\n" if ($dbg_values > 1);
1758 $av_preprocessor = 1;
1759 push(@av_paren_type, $type);
1765 } elsif ($cur =~ /^(\#\s*(?:undef\s*$Ident|include\b))/o) {
1766 print "UNDEF($1)\n" if ($dbg_values > 1);
1767 $av_preprocessor = 1;
1768 push(@av_paren_type, $type);
1770 } elsif ($cur =~ /^(\#\s*(?:ifdef|ifndef|if))/o) {
1771 print "PRE_START($1)\n" if ($dbg_values > 1);
1772 $av_preprocessor = 1;
1774 push(@av_paren_type, $type);
1775 push(@av_paren_type, $type);
1778 } elsif ($cur =~ /^(\#\s*(?:else|elif))/o) {
1779 print "PRE_RESTART($1)\n" if ($dbg_values > 1);
1780 $av_preprocessor = 1;
1782 push(@av_paren_type, $av_paren_type[$#av_paren_type]);
1786 } elsif ($cur =~ /^(\#\s*(?:endif))/o) {
1787 print "PRE_END($1)\n" if ($dbg_values > 1);
1789 $av_preprocessor = 1;
1791 # Assume all arms of the conditional end as this
1792 # one does, and continue as if the #endif was not here.
1793 pop(@av_paren_type);
1794 push(@av_paren_type, $type);
1797 } elsif ($cur =~ /^(\\\n)/o) {
1798 print "PRECONT($1)\n" if ($dbg_values > 1);
1800 } elsif ($cur =~ /^(__attribute__)\s*\(?/o) {
1801 print "ATTR($1)\n" if ($dbg_values > 1);
1802 $av_pending = $type;
1805 } elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
1806 print "SIZEOF($1)\n" if ($dbg_values > 1);
1812 } elsif ($cur =~ /^(if|while|for)\b/o) {
1813 print "COND($1)\n" if ($dbg_values > 1);
1817 } elsif ($cur =~/^(case)/o) {
1818 print "CASE($1)\n" if ($dbg_values > 1);
1819 $av_pend_colon = 'C';
1822 } elsif ($cur =~/^(return|else|goto|typeof|__typeof__)\b/o) {
1823 print "KEYWORD($1)\n" if ($dbg_values > 1);
1826 } elsif ($cur =~ /^(\()/o) {
1827 print "PAREN('$1')\n" if ($dbg_values > 1);
1828 push(@av_paren_type, $av_pending);
1832 } elsif ($cur =~ /^(\))/o) {
1833 my $new_type = pop(@av_paren_type);
1834 if ($new_type ne '_') {
1836 print "PAREN('$1') -> $type\n"
1837 if ($dbg_values > 1);
1839 print "PAREN('$1')\n" if ($dbg_values > 1);
1842 } elsif ($cur =~ /^($Ident)\s*\(/o) {
1843 print "FUNC($1)\n" if ($dbg_values > 1);
1847 } elsif ($cur =~ /^($Ident\s*):(?:\s*\d+\s*(,|=|;))?/) {
1848 if (defined $2 && $type eq 'C' || $type eq 'T') {
1849 $av_pend_colon = 'B';
1850 } elsif ($type eq 'E') {
1851 $av_pend_colon = 'L';
1853 print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1);
1856 } elsif ($cur =~ /^($Ident|$Constant)/o) {
1857 print "IDENT($1)\n" if ($dbg_values > 1);
1860 } elsif ($cur =~ /^($Assignment)/o) {
1861 print "ASSIGN($1)\n" if ($dbg_values > 1);
1864 } elsif ($cur =~/^(;|{|})/) {
1865 print "END($1)\n" if ($dbg_values > 1);
1867 $av_pend_colon = 'O';
1869 } elsif ($cur =~/^(,)/) {
1870 print "COMMA($1)\n" if ($dbg_values > 1);
1873 } elsif ($cur =~ /^(\?)/o) {
1874 print "QUESTION($1)\n" if ($dbg_values > 1);
1877 } elsif ($cur =~ /^(:)/o) {
1878 print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1);
1880 substr($var, length($res), 1, $av_pend_colon);
1881 if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') {
1886 $av_pend_colon = 'O';
1888 } elsif ($cur =~ /^(\[)/o) {
1889 print "CLOSE($1)\n" if ($dbg_values > 1);
1892 } elsif ($cur =~ /^(-(?![->])|\+(?!\+)|\*|\&\&|\&)/o) {
1895 print "OPV($1)\n" if ($dbg_values > 1);
1902 substr($var, length($res), 1, $variant);
1905 } elsif ($cur =~ /^($Operators)/o) {
1906 print "OP($1)\n" if ($dbg_values > 1);
1907 if ($1 ne '++' && $1 ne '--') {
1911 } elsif ($cur =~ /(^.)/o) {
1912 print "C($1)\n" if ($dbg_values > 1);
1915 $cur = substr($cur, length($1));
1916 $res .= $type x length($1);
1920 return ($res, $var);
1924 my ($possible, $line) = @_;
1925 my $notPermitted = qr{(?:
1942 ^(?:typedef|struct|enum)\b
1944 warn "CHECK<$possible> ($line)\n" if ($dbg_possible > 2);
1945 if ($possible !~ $notPermitted) {
1946 # Check for modifiers.
1947 $possible =~ s/\s*$Storage\s*//g;
1948 $possible =~ s/\s*$Sparse\s*//g;
1949 if ($possible =~ /^\s*$/) {
1951 } elsif ($possible =~ /\s/) {
1952 $possible =~ s/\s*$Type\s*//g;
1953 for my $modifier (split(' ', $possible)) {
1954 if ($modifier !~ $notPermitted) {
1955 warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
1956 push(@modifierListFile, $modifier);
1961 warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
1962 push(@typeListFile, $possible);
1966 warn "NOTPOSS: $possible ($line)\n" if ($dbg_possible > 1);
1975 $type =~ tr/[a-z]/[A-Z]/;
1977 return defined $use_type{$type} if (scalar keys %use_type > 0);
1979 return !defined $ignore_type{$type};
1983 my ($level, $type, $msg) = @_;
1985 if (!show_type($type) ||
1986 (defined $tst_only && $msg !~ /\Q$tst_only\E/)) {
1991 if ($level eq 'ERROR') {
1993 } elsif ($level eq 'WARNING') {
1999 $output .= $prefix . $level . ':';
2001 $output .= BLUE if ($color);
2002 $output .= "$type:";
2004 $output .= RESET if ($color);
2005 $output .= ' ' . $msg . "\n";
2008 my @lines = split("\n", $output, -1);
2009 splice(@lines, 1, 1);
2010 $output = join("\n", @lines);
2012 $output = (split('\n', $output))[0] . "\n" if ($terse);
2014 push(our @report, $output);
2023 sub fixup_current_range {
2024 my ($lineRef, $offset, $length) = @_;
2026 if ($$lineRef =~ /^\@\@ -\d+,\d+ \+(\d+),(\d+) \@\@/) {
2029 my $no = $o + $offset;
2030 my $nl = $l + $length;
2031 $$lineRef =~ s/\+$o,$l \@\@/\+$no,$nl \@\@/;
2035 sub fix_inserted_deleted_lines {
2036 my ($linesRef, $insertedRef, $deletedRef) = @_;
2038 my $range_last_linenr = 0;
2039 my $delta_offset = 0;
2044 my $next_insert = 0;
2045 my $next_delete = 0;
2049 my $inserted = @{$insertedRef}[$next_insert++];
2050 my $deleted = @{$deletedRef}[$next_delete++];
2052 foreach my $old_line (@{$linesRef}) {
2054 my $line = $old_line; #don't modify the array
2055 if ($line =~ /^(?:\+\+\+|\-\-\-)\s+\S+/) { #new filename
2057 } elsif ($line =~ /^\@\@ -\d+,\d+ \+\d+,\d+ \@\@/) { #new hunk
2058 $range_last_linenr = $new_linenr;
2059 fixup_current_range(\$line, $delta_offset, 0);
2062 while (defined($deleted) && ${$deleted}{'LINENR'} == $old_linenr) {
2063 $deleted = @{$deletedRef}[$next_delete++];
2065 fixup_current_range(\$lines[$range_last_linenr], $delta_offset--, -1);
2068 while (defined($inserted) && ${$inserted}{'LINENR'} == $old_linenr) {
2069 push(@lines, ${$inserted}{'LINE'});
2070 $inserted = @{$insertedRef}[$next_insert++];
2072 fixup_current_range(\$lines[$range_last_linenr], $delta_offset++, 1);
2076 push(@lines, $line);
2086 sub fix_insert_line {
2087 my ($linenr, $line) = @_;
2093 push(@fixed_inserted, $inserted);
2096 sub fix_delete_line {
2097 my ($linenr, $line) = @_;
2104 push(@fixed_deleted, $deleted);
2108 my ($type, $msg) = @_;
2110 if (report("ERROR", $type, $msg)) {
2118 my ($type, $msg) = @_;
2120 if (report("WARNING", $type, $msg)) {
2128 my ($type, $msg) = @_;
2130 if ($check && report("CHECK", $type, $msg)) {
2138 sub check_absolute_file {
2139 my ($absolute, $herecurr) = @_;
2140 my $file = $absolute;
2142 ##print "absolute<$absolute>\n";
2144 # See if any suffix of this path is a path within the tree.
2145 while ($file =~ s@^[^/]*/@@) {
2146 if (-f "$root/$file") {
2147 ##print "file<$file>\n";
2155 # It is, so see if the prefix is acceptable.
2156 my $prefix = $absolute;
2157 substr($prefix, -length($file)) = '';
2159 ##print "prefix<$prefix>\n";
2160 if ($prefix ne ".../") {
2161 WARN("USE_RELATIVE_PATH",
2162 "use relative pathname instead of absolute in changelog text\n" . $herecurr);
2169 $string =~ s/^\s+|\s+$//g;
2177 $string =~ s/^\s+//;
2185 $string =~ s/\s+$//;
2190 sub string_find_replace {
2191 my ($string, $find, $replace) = @_;
2193 $string =~ s/$find/$replace/g;
2201 my $source_indent = 8;
2202 my $max_spaces_before_tab = $source_indent - 1;
2203 my $spaces_to_tab = " " x $source_indent;
2205 #convert leading spaces to tabs
2206 1 while $leading =~ s@^([\t]*)$spaces_to_tab@$1\t@g;
2207 #Remove spaces before a tab
2208 1 while $leading =~ s@^([\t]*)( {1,$max_spaces_before_tab})\t@$1\t@g;
2213 sub pos_last_openparen {
2218 my $opens = $line =~ tr/\(/\(/;
2219 my $closes = $line =~ tr/\)/\)/;
2221 my $last_openparen = 0;
2223 if (($opens == 0) || ($closes >= $opens)) {
2227 my $len = length($line);
2229 for ($pos = 0; $pos < $len; $pos++) {
2230 my $string = substr($line, $pos);
2231 if ($string =~ /^($FuncArg|$balanced_parens)/) {
2232 $pos += length($1) - 1;
2233 } elsif (substr($line, $pos, 1) eq '(') {
2234 $last_openparen = $pos;
2235 } elsif (index($string, '(') == -1) {
2240 return length(expand_tabs(substr($line, 0, $last_openparen))) + 1;
2243 # Checks specific to U-Boot
2245 my ($realfile, $line, $herecurr) = @_;
2247 # ask for a test if a new uclass ID is added
2248 if ($realfile =~ /uclass-id.h/ && $line =~ /^\+/) {
2250 "Possible new uclass - make sure to add a sandbox driver, plus a test in test/dm/<name>.c\n" . $herecurr);
2253 # try to get people to use the livetree API
2254 if ($line =~ /^\+.*fdtdec_/) {
2256 "Use the livetree API (dev_read_...)\n" . $herecurr);
2259 # add tests for new commands
2260 if ($line =~ /^\+.*do_($Ident)\(struct cmd_tbl.*/) {
2262 "Possible new command - make sure you add a test\n" . $herecurr);
2265 # use if instead of #if
2266 if ($line =~ /^\+#if.*CONFIG.*/) {
2268 "Use 'if (IS_ENABLED(CONFIG...))' instead of '#if or #ifdef' where possible\n" . $herecurr);
2271 # use defconfig to manage CONFIG_CMD options
2272 if ($line =~ /\+\s*#\s*(define|undef)\s+(CONFIG_CMD\w*)\b/) {
2273 ERROR("DEFINE_CONFIG_CMD",
2274 "All commands are managed by Kconfig\n" . $herecurr);
2279 my $filename = shift;
2285 my $stashrawline="";
2295 my $authorsignoff = 0;
2297 my $is_binding_patch = -1;
2298 my $in_header_lines = $file ? 0 : 1;
2299 my $in_commit_log = 0; #Scanning lines before patch
2300 my $has_commit_log = 0; #Encountered lines before patch
2301 my $commit_log_lines = 0; #Number of commit log lines
2302 my $commit_log_possible_stack_dump = 0;
2303 my $commit_log_long_line = 0;
2304 my $commit_log_has_diff = 0;
2305 my $reported_maintainer_file = 0;
2306 my $non_utf8_charset = 0;
2308 my $last_blank_line = 0;
2309 my $last_coalesced_string_linenr = -1;
2317 # Trace the real file/line as we go.
2322 my $context_function; #undef'd unless there's a known function
2324 my $comment_edge = 0;
2328 my $prev_values = 'E';
2331 my %suppress_ifbraces;
2332 my %suppress_whiletrailers;
2333 my %suppress_export;
2334 my $suppress_statement = 0;
2336 my %signatures = ();
2338 # Pre-scan the patch sanitizing the lines.
2339 # Pre-scan the patch looking for any __setup documentation.
2341 my @setup_docs = ();
2344 my $camelcase_file_seeded = 0;
2346 my $checklicenseline = 1;
2348 sanitise_line_reset();
2350 foreach my $rawline (@rawlines) {
2354 push(@fixed, $rawline) if ($fix);
2356 if ($rawline=~/^\+\+\+\s+(\S+)/) {
2358 if ($1 =~ m@Documentation/admin-guide/kernel-parameters.rst$@) {
2363 if ($rawline =~ /^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
2372 # Guestimate if this is a continuing comment. Run
2373 # the context looking for a comment "edge". If this
2374 # edge is a close comment then we must be in a comment
2378 for (my $ln = $linenr + 1; $cnt > 0; $ln++) {
2379 next if (defined $rawlines[$ln - 1] &&
2380 $rawlines[$ln - 1] =~ /^-/);
2382 #print "RAW<$rawlines[$ln - 1]>\n";
2383 last if (!defined $rawlines[$ln - 1]);
2384 if ($rawlines[$ln - 1] =~ m@(/\*|\*/)@ &&
2385 $rawlines[$ln - 1] !~ m@"[^"]*(?:/\*|\*/)[^"]*"@) {
2390 if (defined $edge && $edge eq '*/') {
2394 # Guestimate if this is a continuing comment. If this
2395 # is the start of a diff block and this line starts
2396 # ' *' then it is very likely a comment.
2397 if (!defined $edge &&
2398 $rawlines[$linenr] =~ m@^.\s*(?:\*\*+| \*)(?:\s|$)@)
2403 ##print "COMMENT:$in_comment edge<$edge> $rawline\n";
2404 sanitise_line_reset($in_comment);
2406 } elsif ($realcnt && $rawline =~ /^(?:\+| |$)/) {
2407 # Standardise the strings and chars within the input to
2408 # simplify matching -- only bother with positive lines.
2409 $line = sanitise_line($rawline);
2411 push(@lines, $line);
2414 $realcnt-- if ($line =~ /^(?:\+| |$)/);
2419 #print "==>$rawline\n";
2420 #print "-->$line\n";
2422 if ($setup_docs && $line =~ /^\+/) {
2423 push(@setup_docs, $line);
2432 foreach my $line (@lines) {
2435 my $sline = $line; #copy of $line
2436 $sline =~ s/$;/ /g; #with comments as spaces
2438 my $rawline = $rawlines[$linenr - 1];
2440 # check if it's a mode change, rename or start of a patch
2441 if (!$in_commit_log &&
2442 ($line =~ /^ mode change [0-7]+ => [0-7]+ \S+\s*$/ ||
2443 ($line =~ /^rename (?:from|to) \S+\s*$/ ||
2444 $line =~ /^diff --git a\/[\w\/\.\_\-]+ b\/\S+\s*$/))) {
2448 #extract the line range in the file after the patch is applied
2449 if (!$in_commit_log &&
2450 $line =~ /^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@(.*)/) {
2453 $first_line = $linenr + 1;
2463 %suppress_ifbraces = ();
2464 %suppress_whiletrailers = ();
2465 %suppress_export = ();
2466 $suppress_statement = 0;
2467 if ($context =~ /\b(\w+)\s*\(/) {
2468 $context_function = $1;
2470 undef $context_function;
2474 # track the line number as we move through the hunk, note that
2475 # new versions of GNU diff omit the leading space on completely
2476 # blank context lines so we need to count that too.
2477 } elsif ($line =~ /^( |\+|$)/) {
2479 $realcnt-- if ($realcnt != 0);
2481 # Measure the line length and indent.
2482 ($length, $indent) = line_stats($rawline);
2484 # Track the previous line.
2485 ($prevline, $stashline) = ($stashline, $line);
2486 ($previndent, $stashindent) = ($stashindent, $indent);
2487 ($prevrawline, $stashrawline) = ($stashrawline, $rawline);
2489 #warn "line<$line>\n";
2491 } elsif ($realcnt == 1) {
2495 my $hunk_line = ($realcnt != 0);
2497 $here = "#$linenr: " if (!$file);
2498 $here = "#$realline: " if ($file);
2501 # extract the filename as it passes
2502 if ($line =~ /^diff --git.*?(\S+)$/) {
2504 $realfile =~ s@^([^/]*)/@@ if (!$file);
2507 } elsif ($line =~ /^\+\+\+\s+(\S+)/) {
2509 $realfile =~ s@^([^/]*)/@@ if (!$file);
2513 if (!$file && $tree && $p1_prefix ne '' &&
2514 -e "$root/$p1_prefix") {
2515 WARN("PATCH_PREFIX",
2516 "patch prefix '$p1_prefix' exists, appears to be a -p0 patch\n");
2519 if ($realfile =~ m@^include/asm/@) {
2520 ERROR("MODIFIED_INCLUDE_ASM",
2521 "do not modify files in include/asm, change architecture specific files in include/asm-<architecture>\n" . "$here$rawline\n");
2526 #make up the handle for any error we report on this line
2528 $prefix = "$realfile:$realline: "
2531 $prefix = "$filename:$realline: ";
2533 $prefix = "$filename:$linenr: ";
2538 if (is_maintained_obsolete($realfile)) {
2540 "$realfile is marked as 'obsolete' in the MAINTAINERS hierarchy. No unnecessary modifications please.\n");
2542 if ($realfile =~ m@^(?:drivers/net/|net/|drivers/staging/)@) {
2545 $check = $check_orig;
2547 $checklicenseline = 1;
2549 if ($realfile !~ /^MAINTAINERS/) {
2550 my $last_binding_patch = $is_binding_patch;
2552 $is_binding_patch = () = $realfile =~ m@^(?:Documentation/devicetree/|include/dt-bindings/)@;
2554 if (($last_binding_patch != -1) &&
2555 ($last_binding_patch ^ $is_binding_patch)) {
2556 WARN("DT_SPLIT_BINDING_PATCH",
2557 "DT binding docs and includes should be a separate patch. See: Documentation/devicetree/bindings/submitting-patches.txt\n");
2564 $here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
2566 my $hereline = "$here\n$rawline\n";
2567 my $herecurr = "$here\n$rawline\n";
2568 my $hereprev = "$here\n$prevrawline\n$rawline\n";
2570 $cnt_lines++ if ($realcnt != 0);
2572 # Verify the existence of a commit log if appropriate
2573 # 2 is used because a $signature is counted in $commit_log_lines
2574 if ($in_commit_log) {
2575 if ($line !~ /^\s*$/) {
2576 $commit_log_lines++; #could be a $signature
2578 } elsif ($has_commit_log && $commit_log_lines < 2) {
2579 WARN("COMMIT_MESSAGE",
2580 "Missing commit description - Add an appropriate one\n");
2581 $commit_log_lines = 2; #warn only once
2584 # Check if the commit log has what seems like a diff which can confuse patch
2585 if ($in_commit_log && !$commit_log_has_diff &&
2586 (($line =~ m@^\s+diff\b.*a/[\w/]+@ &&
2587 $line =~ m@^\s+diff\b.*a/([\w/]+)\s+b/$1\b@) ||
2588 $line =~ m@^\s*(?:\-\-\-\s+a/|\+\+\+\s+b/)@ ||
2589 $line =~ m/^\s*\@\@ \-\d+,\d+ \+\d+,\d+ \@\@/)) {
2590 ERROR("DIFF_IN_COMMIT_MSG",
2591 "Avoid using diff content in the commit message - patch(1) might not work\n" . $herecurr);
2592 $commit_log_has_diff = 1;
2595 # Check for incorrect file permissions
2596 if ($line =~ /^new (file )?mode.*[7531]\d{0,2}$/) {
2597 my $permhere = $here . "FILE: $realfile\n";
2598 if ($realfile !~ m@scripts/@ &&
2599 $realfile !~ /\.(py|pl|awk|sh)$/) {
2600 ERROR("EXECUTE_PERMISSIONS",
2601 "do not set execute permissions for source files\n" . $permhere);
2605 # Check the patch for a From:
2606 if (decode("MIME-Header", $line) =~ /^From:\s*(.*)/) {
2608 $author = encode("utf8", $author) if ($line =~ /=\?utf-8\?/i);
2612 # Check the patch for a signoff:
2613 if ($line =~ /^\s*signed-off-by:/i) {
2616 if ($author ne '') {
2619 if ($l =~ /^\s*signed-off-by:\s*\Q$author\E/i) {
2625 # Check if MAINTAINERS is being updated. If so, there's probably no need to
2626 # emit the "does MAINTAINERS need updating?" message on file add/move/delete
2627 if ($line =~ /^\s*MAINTAINERS\s*\|/) {
2628 $reported_maintainer_file = 1;
2631 # Check signature styles
2632 if (!$in_header_lines &&
2633 $line =~ /^(\s*)([a-z0-9_-]+by:|$signature_tags)(\s*)(.*)/i) {
2634 my $space_before = $1;
2636 my $space_after = $3;
2638 my $ucfirst_sign_off = ucfirst(lc($sign_off));
2640 if ($sign_off !~ /$signature_tags/) {
2641 WARN("BAD_SIGN_OFF",
2642 "Non-standard signature: $sign_off\n" . $herecurr);
2644 if (defined $space_before && $space_before ne "") {
2645 if (WARN("BAD_SIGN_OFF",
2646 "Do not use whitespace before $ucfirst_sign_off\n" . $herecurr) &&
2648 $fixed[$fixlinenr] =
2649 "$ucfirst_sign_off $email";
2652 if ($sign_off =~ /-by:$/i && $sign_off ne $ucfirst_sign_off) {
2653 if (WARN("BAD_SIGN_OFF",
2654 "'$ucfirst_sign_off' is the preferred signature form\n" . $herecurr) &&
2656 $fixed[$fixlinenr] =
2657 "$ucfirst_sign_off $email";
2661 if (!defined $space_after || $space_after ne " ") {
2662 if (WARN("BAD_SIGN_OFF",
2663 "Use a single space after $ucfirst_sign_off\n" . $herecurr) &&
2665 $fixed[$fixlinenr] =
2666 "$ucfirst_sign_off $email";
2670 my ($email_name, $email_address, $comment) = parse_email($email);
2671 my $suggested_email = format_email(($email_name, $email_address));
2672 if ($suggested_email eq "") {
2673 ERROR("BAD_SIGN_OFF",
2674 "Unrecognized email address: '$email'\n" . $herecurr);
2676 my $dequoted = $suggested_email;
2677 $dequoted =~ s/^"//;
2678 $dequoted =~ s/" </ </;
2679 # Don't force email to have quotes
2680 # Allow just an angle bracketed address
2681 if ("$dequoted$comment" ne $email &&
2682 "<$email_address>$comment" ne $email &&
2683 "$suggested_email$comment" ne $email) {
2684 WARN("BAD_SIGN_OFF",
2685 "email address '$email' might be better as '$suggested_email$comment'\n" . $herecurr);
2689 # Check for duplicate signatures
2690 my $sig_nospace = $line;
2691 $sig_nospace =~ s/\s//g;
2692 $sig_nospace = lc($sig_nospace);
2693 if (defined $signatures{$sig_nospace}) {
2694 WARN("BAD_SIGN_OFF",
2695 "Duplicate signature\n" . $herecurr);
2697 $signatures{$sig_nospace} = 1;
2701 # Check email subject for common tools that don't need to be mentioned
2702 if ($in_header_lines &&
2703 $line =~ /^Subject:.*\b(?:checkpatch|sparse|smatch)\b[^:]/i) {
2704 WARN("EMAIL_SUBJECT",
2705 "A patch subject line should describe the change not the tool that found it\n" . $herecurr);
2708 # Check for unwanted Gerrit info
2709 if ($in_commit_log && $line =~ /^\s*change-id:/i) {
2710 ERROR("GERRIT_CHANGE_ID",
2711 "Remove Gerrit Change-Id's before submitting upstream.\n" . $herecurr);
2714 # Check if the commit log is in a possible stack dump
2715 if ($in_commit_log && !$commit_log_possible_stack_dump &&
2716 ($line =~ /^\s*(?:WARNING:|BUG:)/ ||
2717 $line =~ /^\s*\[\s*\d+\.\d{6,6}\s*\]/ ||
2719 $line =~ /^\s*\[\<[0-9a-fA-F]{8,}\>\]/)) {
2720 # stack dump address
2721 $commit_log_possible_stack_dump = 1;
2724 # Check for line lengths > 75 in commit log, warn once
2725 if ($in_commit_log && !$commit_log_long_line &&
2726 length($line) > 75 &&
2727 !($line =~ /^\s*[a-zA-Z0-9_\/\.]+\s+\|\s+\d+/ ||
2728 # file delta changes
2729 $line =~ /^\s*(?:[\w\.\-]+\/)++[\w\.\-]+:/ ||
2731 $line =~ /^\s*(?:Fixes:|Link:)/i ||
2732 # A Fixes: or Link: line
2733 $commit_log_possible_stack_dump)) {
2734 WARN("COMMIT_LOG_LONG_LINE",
2735 "Possible unwrapped commit description (prefer a maximum 75 chars per line)\n" . $herecurr);
2736 $commit_log_long_line = 1;
2739 # Reset possible stack dump if a blank line is found
2740 if ($in_commit_log && $commit_log_possible_stack_dump &&
2742 $commit_log_possible_stack_dump = 0;
2745 # Check for git id commit length and improperly formed commit descriptions
2746 if ($in_commit_log && !$commit_log_possible_stack_dump &&
2747 $line !~ /^\s*(?:Link|Patchwork|http|https|BugLink):/i &&
2748 $line !~ /^This reverts commit [0-9a-f]{7,40}/ &&
2749 ($line =~ /\bcommit\s+[0-9a-f]{5,}\b/i ||
2750 ($line =~ /(?:\s|^)[0-9a-f]{12,40}(?:[\s"'\(\[]|$)/i &&
2751 $line !~ /[\<\[][0-9a-f]{12,40}[\>\]]/i &&
2752 $line !~ /\bfixes:\s*[0-9a-f]{12,40}/i))) {
2753 my $init_char = "c";
2754 my $orig_commit = "";
2761 my $id = '0123456789ab';
2762 my $orig_desc = "commit description";
2763 my $description = "";
2765 if ($line =~ /\b(c)ommit\s+([0-9a-f]{5,})\b/i) {
2767 $orig_commit = lc($2);
2768 } elsif ($line =~ /\b([0-9a-f]{12,40})\b/i) {
2769 $orig_commit = lc($1);
2772 $short = 0 if ($line =~ /\bcommit\s+[0-9a-f]{12,40}/i);
2773 $long = 1 if ($line =~ /\bcommit\s+[0-9a-f]{41,}/i);
2774 $space = 0 if ($line =~ /\bcommit [0-9a-f]/i);
2775 $case = 0 if ($line =~ /\b[Cc]ommit\s+[0-9a-f]{5,40}[^A-F]/);
2776 if ($line =~ /\bcommit\s+[0-9a-f]{5,}\s+\("([^"]+)"\)/i) {
2779 } elsif ($line =~ /\bcommit\s+[0-9a-f]{5,}\s*$/i &&
2780 defined $rawlines[$linenr] &&
2781 $rawlines[$linenr] =~ /^\s*\("([^"]+)"\)/) {
2784 } elsif ($line =~ /\bcommit\s+[0-9a-f]{5,}\s+\("[^"]+$/i &&
2785 defined $rawlines[$linenr] &&
2786 $rawlines[$linenr] =~ /^\s*[^"]+"\)/) {
2787 $line =~ /\bcommit\s+[0-9a-f]{5,}\s+\("([^"]+)$/i;
2789 $rawlines[$linenr] =~ /^\s*([^"]+)"\)/;
2790 $orig_desc .= " " . $1;
2794 ($id, $description) = git_commit_info($orig_commit,
2798 ($short || $long || $space || $case || ($orig_desc ne $description) || !$hasparens)) {
2799 ERROR("GIT_COMMIT_ID",
2800 "Please use git commit description style 'commit <12+ chars of sha1> (\"<title line>\")' - ie: '${init_char}ommit $id (\"$description\")'\n" . $herecurr);
2804 # Check for added, moved or deleted files
2805 if (!$reported_maintainer_file && !$in_commit_log &&
2806 ($line =~ /^(?:new|deleted) file mode\s*\d+\s*$/ ||
2807 $line =~ /^rename (?:from|to) [\w\/\.\-]+\s*$/ ||
2808 ($line =~ /\{\s*([\w\/\.\-]*)\s*\=\>\s*([\w\/\.\-]*)\s*\}/ &&
2809 (defined($1) || defined($2))))) {
2811 $reported_maintainer_file = 1;
2812 WARN("FILE_PATH_CHANGES",
2813 "added, moved or deleted file(s), does MAINTAINERS need updating?\n" . $herecurr);
2816 # Check for wrappage within a valid hunk of the file
2817 if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) {
2818 ERROR("CORRUPTED_PATCH",
2819 "patch seems to be corrupt (line wrapped?)\n" .
2820 $herecurr) if (!$emitted_corrupt++);
2823 # UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
2824 if (($realfile =~ /^$/ || $line =~ /^\+/) &&
2825 $rawline !~ m/^$UTF8*$/) {
2826 my ($utf8_prefix) = ($rawline =~ /^($UTF8*)/);
2828 my $blank = copy_spacing($rawline);
2829 my $ptr = substr($blank, 0, length($utf8_prefix)) . "^";
2830 my $hereptr = "$hereline$ptr\n";
2833 "Invalid UTF-8, patch and commit message should be encoded in UTF-8\n" . $hereptr);
2836 # Check if it's the start of a commit log
2837 # (not a header line and we haven't seen the patch filename)
2838 if ($in_header_lines && $realfile =~ /^$/ &&
2839 !($rawline =~ /^\s+(?:\S|$)/ ||
2840 $rawline =~ /^(?:commit\b|from\b|[\w-]+:)/i)) {
2841 $in_header_lines = 0;
2843 $has_commit_log = 1;
2846 # Check if there is UTF-8 in a commit log when a mail header has explicitly
2847 # declined it, i.e defined some charset where it is missing.
2848 if ($in_header_lines &&
2849 $rawline =~ /^Content-Type:.+charset="(.+)".*$/ &&
2851 $non_utf8_charset = 1;
2854 if ($in_commit_log && $non_utf8_charset && $realfile =~ /^$/ &&
2855 $rawline =~ /$NON_ASCII_UTF8/) {
2856 WARN("UTF8_BEFORE_PATCH",
2857 "8-bit UTF-8 used in possible commit log\n" . $herecurr);
2860 # Check for absolute kernel paths in commit message
2861 if ($tree && $in_commit_log) {
2862 while ($line =~ m{(?:^|\s)(/\S*)}g) {
2865 if ($file =~ m{^(.*?)(?::\d+)+:?$} &&
2866 check_absolute_file($1, $herecurr)) {
2869 check_absolute_file($file, $herecurr);
2874 # Check for various typo / spelling mistakes
2875 if (defined($misspellings) &&
2876 ($in_commit_log || $line =~ /^(?:\+|Subject:)/i)) {
2877 while ($rawline =~ /(?:^|[^a-z@])($misspellings)(?:\b|$|[^a-z@])/gi) {
2879 my $typo_fix = $spelling_fix{lc($typo)};
2880 $typo_fix = ucfirst($typo_fix) if ($typo =~ /^[A-Z]/);
2881 $typo_fix = uc($typo_fix) if ($typo =~ /^[A-Z]+$/);
2882 my $msg_level = \&WARN;
2883 $msg_level = \&CHK if ($file);
2884 if (&{$msg_level}("TYPO_SPELLING",
2885 "'$typo' may be misspelled - perhaps '$typo_fix'?\n" . $herecurr) &&
2887 $fixed[$fixlinenr] =~ s/(^|[^A-Za-z@])($typo)($|[^A-Za-z@])/$1$typo_fix$3/;
2892 # ignore non-hunk lines and lines being removed
2893 next if (!$hunk_line || $line =~ /^-/);
2895 #trailing whitespace
2896 if ($line =~ /^\+.*\015/) {
2897 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
2898 if (ERROR("DOS_LINE_ENDINGS",
2899 "DOS line endings\n" . $herevet) &&
2901 $fixed[$fixlinenr] =~ s/[\s\015]+$//;
2903 } elsif ($rawline =~ /^\+.*\S\s+$/ || $rawline =~ /^\+\s+$/) {
2904 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
2905 if (ERROR("TRAILING_WHITESPACE",
2906 "trailing whitespace\n" . $herevet) &&
2908 $fixed[$fixlinenr] =~ s/\s+$//;
2914 # Check for FSF mailing addresses.
2915 if ($rawline =~ /\bwrite to the Free/i ||
2916 $rawline =~ /\b675\s+Mass\s+Ave/i ||
2917 $rawline =~ /\b59\s+Temple\s+Pl/i ||
2918 $rawline =~ /\b51\s+Franklin\s+St/i) {
2919 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
2920 my $msg_level = \&ERROR;
2921 $msg_level = \&CHK if ($file);
2922 &{$msg_level}("FSF_MAILING_ADDRESS",
2923 "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)
2926 # check for Kconfig help text having a real description
2927 # Only applies when adding the entry originally, after that we do not have
2928 # sufficient context to determine whether it is indeed long enough.
2929 if ($realfile =~ /Kconfig/ &&
2930 # 'choice' is usually the last thing on the line (though
2931 # Kconfig supports named choices), so use a word boundary
2932 # (\b) rather than a whitespace character (\s)
2933 $line =~ /^\+\s*(?:config|menuconfig|choice)\b/) {
2936 my $ln = $linenr + 1;
2940 for (; $cnt > 0 && defined $lines[$ln - 1]; $ln++) {
2941 $f = $lines[$ln - 1];
2942 $cnt-- if ($lines[$ln - 1] !~ /^-/);
2943 $is_end = $lines[$ln - 1] =~ /^\+/;
2945 next if ($f =~ /^-/);
2946 last if (!$file && $f =~ /^\@\@/);
2948 if ($lines[$ln - 1] =~ /^\+\s*(?:bool|tristate|prompt)\s*["']/) {
2950 } elsif ($lines[$ln - 1] =~ /^\+\s*(?:help|---help---)\s*$/) {
2951 if ($lines[$ln - 1] =~ "---help---") {
2952 WARN("CONFIG_DESCRIPTION",
2953 "prefer 'help' over '---help---' for new help texts\n" . $herecurr);
2961 next if ($f =~ /^$/);
2963 # This only checks context lines in the patch
2964 # and so hopefully shouldn't trigger false
2965 # positives, even though some of these are
2966 # common words in help texts
2967 if ($f =~ /^\s*(?:config|menuconfig|choice|endchoice|
2968 if|endif|menu|endmenu|source)\b/x) {
2974 if ($is_start && $is_end && $length < $min_conf_desc_length) {
2975 WARN("CONFIG_DESCRIPTION",
2976 "please write a paragraph that describes the config symbol fully\n" . $herecurr);
2978 #print "is_start<$is_start> is_end<$is_end> length<$length>\n";
2981 # check for MAINTAINERS entries that don't have the right form
2982 if ($realfile =~ /^MAINTAINERS$/ &&
2983 $rawline =~ /^\+[A-Z]:/ &&
2984 $rawline !~ /^\+[A-Z]:\t\S/) {
2985 if (WARN("MAINTAINERS_STYLE",
2986 "MAINTAINERS entries use one tab after TYPE:\n" . $herecurr) &&
2988 $fixed[$fixlinenr] =~ s/^(\+[A-Z]):\s*/$1:\t/;
2992 # discourage the use of boolean for type definition attributes of Kconfig options
2993 if ($realfile =~ /Kconfig/ &&
2994 $line =~ /^\+\s*\bboolean\b/) {
2995 WARN("CONFIG_TYPE_BOOLEAN",
2996 "Use of boolean is deprecated, please use bool instead.\n" . $herecurr);
2999 if (($realfile =~ /Makefile.*/ || $realfile =~ /Kbuild.*/) &&
3000 ($line =~ /\+(EXTRA_[A-Z]+FLAGS).*/)) {
3003 'EXTRA_AFLAGS' => 'asflags-y',
3004 'EXTRA_CFLAGS' => 'ccflags-y',
3005 'EXTRA_CPPFLAGS' => 'cppflags-y',
3006 'EXTRA_LDFLAGS' => 'ldflags-y',
3009 WARN("DEPRECATED_VARIABLE",
3010 "Use of $flag is deprecated, please use \`$replacement->{$flag} instead.\n" . $herecurr) if ($replacement->{$flag});
3013 # check for DT compatible documentation
3014 if (defined $root &&
3015 (($realfile =~ /\.dtsi?$/ && $line =~ /^\+\s*compatible\s*=\s*\"/) ||
3016 ($realfile =~ /\.[ch]$/ && $line =~ /^\+.*\.compatible\s*=\s*\"/))) {
3018 my @compats = $rawline =~ /\"([a-zA-Z0-9\-\,\.\+_]+)\"/g;
3020 my $dt_path = $root . "/Documentation/devicetree/bindings/";
3021 my $vp_file = $dt_path . "vendor-prefixes.txt";
3023 foreach my $compat (@compats) {
3024 my $compat2 = $compat;
3025 $compat2 =~ s/\,[a-zA-Z0-9]*\-/\,<\.\*>\-/;
3026 my $compat3 = $compat;
3027 $compat3 =~ s/\,([a-z]*)[0-9]*\-/\,$1<\.\*>\-/;
3028 `grep -Erq "$compat|$compat2|$compat3" $dt_path`;
3030 WARN("UNDOCUMENTED_DT_STRING",
3031 "DT compatible string \"$compat\" appears un-documented -- check $dt_path\n" . $herecurr);
3034 next if $compat !~ /^([a-zA-Z0-9\-]+)\,/;
3036 `grep -Eq "^$vendor\\b" $vp_file`;
3038 WARN("UNDOCUMENTED_DT_STRING",
3039 "DT compatible string vendor \"$vendor\" appears un-documented -- check $vp_file\n" . $herecurr);
3044 # check for using SPDX license tag at beginning of files
3045 if ($realline == $checklicenseline) {
3046 if ($rawline =~ /^[ \+]\s*\#\!\s*\//) {
3047 $checklicenseline = 2;
3048 } elsif ($rawline =~ /^\+/) {
3050 if ($realfile =~ /\.(h|s|S)$/) {
3052 } elsif ($realfile =~ /\.(c|dts|dtsi)$/) {
3054 } elsif (($checklicenseline == 2) || $realfile =~ /\.(sh|pl|py|awk|tc)$/) {
3056 } elsif ($realfile =~ /\.rst$/) {
3060 if ($comment !~ /^$/ &&
3061 $rawline !~ /^\+\Q$comment\E SPDX-License-Identifier: /) {
3062 WARN("SPDX_LICENSE_TAG",
3063 "Missing or malformed SPDX-License-Identifier tag in line $checklicenseline\n" . $herecurr);
3064 } elsif ($rawline =~ /(SPDX-License-Identifier: .*)/) {
3065 my $spdx_license = $1;
3066 if (!is_SPDX_License_valid($spdx_license)) {
3067 WARN("SPDX_LICENSE_TAG",
3068 "'$spdx_license' is not supported in LICENSES/...\n" . $herecurr);
3074 # check we are in a valid source file if not then ignore this hunk
3075 next if ($realfile !~ /\.(h|c|s|S|sh|dtsi|dts)$/);
3077 # line length limit (with some exclusions)
3079 # There are a few types of lines that may extend beyond $max_line_length:
3080 # logging functions like pr_info that end in a string
3081 # lines with a single string
3082 # #defines that are a single string
3083 # lines with an RFC3986 like URL
3085 # There are 3 different line length message types:
3086 # LONG_LINE_COMMENT a comment starts before but extends beyond $max_line_length
3087 # LONG_LINE_STRING a string starts before but extends beyond $max_line_length
3088 # LONG_LINE all other lines longer than $max_line_length
3090 # if LONG_LINE is ignored, the other 2 types are also ignored
3093 if ($line =~ /^\+/ && $length > $max_line_length) {
3094 my $msg_type = "LONG_LINE";
3096 # Check the allowed long line types first
3098 # logging functions that end in a string that starts
3099 # before $max_line_length
3100 if ($line =~ /^\+\s*$logFunctions\s*\(\s*(?:(?:KERN_\S+\s*|[^"]*))?($String\s*(?:|,|\)\s*;)\s*)$/ &&
3101 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3104 # lines with only strings (w/ possible termination)
3105 # #defines with only strings
3106 } elsif ($line =~ /^\+\s*$String\s*(?:\s*|,|\)\s*;)\s*$/ ||
3107 $line =~ /^\+\s*#\s*define\s+\w+\s+$String$/) {
3110 # More special cases
3111 } elsif ($line =~ /^\+.*\bEFI_GUID\s*\(/ ||
3112 $line =~ /^\+\s*(?:\w+)?\s*DEFINE_PER_CPU/) {
3115 # URL ($rawline is used in case the URL is in a comment)
3116 } elsif ($rawline =~ /^\+.*\b[a-z][\w\.\+\-]*:\/\/\S+/i) {
3119 # Otherwise set the alternate message types
3121 # a comment starts before $max_line_length
3122 } elsif ($line =~ /($;[\s$;]*)$/ &&
3123 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3124 $msg_type = "LONG_LINE_COMMENT"
3126 # a quoted string starts before $max_line_length
3127 } elsif ($sline =~ /\s*($String(?:\s*(?:\\|,\s*|\)\s*;\s*))?)$/ &&
3128 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3129 $msg_type = "LONG_LINE_STRING"
3132 if ($msg_type ne "" &&
3133 (show_type("LONG_LINE") || show_type($msg_type))) {
3134 my $msg_level = \&WARN;
3135 $msg_level = \&CHK if ($file);
3136 &{$msg_level}($msg_type,
3137 "line length of $length exceeds $max_line_length columns\n" . $herecurr);
3141 # check for adding lines without a newline.
3142 if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
3143 WARN("MISSING_EOF_NEWLINE",
3144 "adding a line without newline at end of file\n" . $herecurr);
3148 u_boot_line($realfile, $line, $herecurr);
3151 # check we are in a valid source file C or perl if not then ignore this hunk
3152 next if ($realfile !~ /\.(h|c|pl|dtsi|dts)$/);
3154 # at the beginning of a line any tabs must come first and anything
3155 # more than 8 must use tabs.
3156 if ($rawline =~ /^\+\s* \t\s*\S/ ||
3157 $rawline =~ /^\+\s* \s*/) {
3158 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
3160 if (ERROR("CODE_INDENT",
3161 "code indent should use tabs where possible\n" . $herevet) &&
3163 $fixed[$fixlinenr] =~ s/^\+([ \t]+)/"\+" . tabify($1)/e;
3167 # check for space before tabs.
3168 if ($rawline =~ /^\+/ && $rawline =~ / \t/) {
3169 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
3170 if (WARN("SPACE_BEFORE_TAB",
3171 "please, no space before tabs\n" . $herevet) &&
3173 while ($fixed[$fixlinenr] =~
3174 s/(^\+.*) {8,8}\t/$1\t\t/) {}
3175 while ($fixed[$fixlinenr] =~
3176 s/(^\+.*) +\t/$1\t/) {}
3180 # check for assignments on the start of a line
3181 if ($sline =~ /^\+\s+($Assignment)[^=]/) {
3182 CHK("ASSIGNMENT_CONTINUATIONS",
3183 "Assignment operator '$1' should be on the previous line\n" . $hereprev);
3186 # check for && or || at the start of a line
3187 if ($rawline =~ /^\+\s*(&&|\|\|)/) {
3188 CHK("LOGICAL_CONTINUATIONS",
3189 "Logical continuations should be on the previous line\n" . $hereprev);
3192 # check indentation starts on a tab stop
3193 if ($perl_version_ok &&
3194 $sline =~ /^\+\t+( +)(?:$c90_Keywords\b|\{\s*$|\}\s*(?:else\b|while\b|\s*$)|$Declare\s*$Ident\s*[;=])/) {
3195 my $indent = length($1);
3198 "Statements should start on a tabstop\n" . $herecurr) &&
3200 $fixed[$fixlinenr] =~ s@(^\+\t+) +@$1 . "\t" x ($indent/8)@e;
3205 # check multi-line statement indentation matches previous line
3206 if ($perl_version_ok &&
3207 $prevline =~ /^\+([ \t]*)((?:$c90_Keywords(?:\s+if)\s*)|(?:$Declare\s*)?(?:$Ident|\(\s*\*\s*$Ident\s*\))\s*|(?:\*\s*)*$Lval\s*=\s*$Ident\s*)\(.*(\&\&|\|\||,)\s*$/) {
3208 $prevline =~ /^\+(\t*)(.*)$/;
3212 my $pos = pos_last_openparen($rest);
3214 $line =~ /^(\+| )([ \t]*)/;
3217 my $goodtabindent = $oldindent .
3220 my $goodspaceindent = $oldindent . " " x $pos;
3222 if ($newindent ne $goodtabindent &&
3223 $newindent ne $goodspaceindent) {
3225 if (CHK("PARENTHESIS_ALIGNMENT",
3226 "Alignment should match open parenthesis\n" . $hereprev) &&
3227 $fix && $line =~ /^\+/) {
3228 $fixed[$fixlinenr] =~
3229 s/^\+[ \t]*/\+$goodtabindent/;
3235 # check for space after cast like "(int) foo" or "(struct foo) bar"
3236 # avoid checking a few false positives:
3237 # "sizeof(<type>)" or "__alignof__(<type>)"
3238 # function pointer declarations like "(*foo)(int) = bar;"
3239 # structure definitions like "(struct foo) { 0 };"
3240 # multiline macros that define functions
3241 # known attributes or the __attribute__ keyword
3242 if ($line =~ /^\+(.*)\(\s*$Type\s*\)([ \t]++)((?![={]|\\$|$Attribute|__attribute__))/ &&
3243 (!defined($1) || $1 !~ /\b(?:sizeof|__alignof__)\s*$/)) {
3245 "No space is necessary after a cast\n" . $herecurr) &&
3247 $fixed[$fixlinenr] =~
3248 s/(\(\s*$Type\s*\))[ \t]+/$1/;
3252 # Block comment styles
3253 # Networking with an initial /*
3254 if ($realfile =~ m@^(drivers/net/|net/)@ &&
3255 $prevrawline =~ /^\+[ \t]*\/\*[ \t]*$/ &&
3256 $rawline =~ /^\+[ \t]*\*/ &&
3258 WARN("NETWORKING_BLOCK_COMMENT_STYLE",
3259 "networking block comments don't use an empty /* line, use /* Comment...\n" . $hereprev);
3262 # Block comments use * on subsequent lines
3263 if ($prevline =~ /$;[ \t]*$/ && #ends in comment
3264 $prevrawline =~ /^\+.*?\/\*/ && #starting /*
3265 $prevrawline !~ /\*\/[ \t]*$/ && #no trailing */
3266 $rawline =~ /^\+/ && #line is new
3267 $rawline !~ /^\+[ \t]*\*/) { #no leading *
3268 WARN("BLOCK_COMMENT_STYLE",
3269 "Block comments use * on subsequent lines\n" . $hereprev);
3272 # Block comments use */ on trailing lines
3273 if ($rawline !~ m@^\+[ \t]*\*/[ \t]*$@ && #trailing */
3274 $rawline !~ m@^\+.*/\*.*\*/[ \t]*$@ && #inline /*...*/
3275 $rawline !~ m@^\+.*\*{2,}/[ \t]*$@ && #trailing **/
3276 $rawline =~ m@^\+[ \t]*.+\*\/[ \t]*$@) { #non blank */
3277 WARN("BLOCK_COMMENT_STYLE",
3278 "Block comments use a trailing */ on a separate line\n" . $herecurr);
3281 # Block comment * alignment
3282 if ($prevline =~ /$;[ \t]*$/ && #ends in comment
3283 $line =~ /^\+[ \t]*$;/ && #leading comment
3284 $rawline =~ /^\+[ \t]*\*/ && #leading *
3285 (($prevrawline =~ /^\+.*?\/\*/ && #leading /*
3286 $prevrawline !~ /\*\/[ \t]*$/) || #no trailing */
3287 $prevrawline =~ /^\+[ \t]*\*/)) { #leading *
3289 $prevrawline =~ m@^\+([ \t]*/?)\*@;
3291 $oldindent = expand_tabs($1);
3293 $prevrawline =~ m@^\+(.*/?)\*@;
3294 $oldindent = expand_tabs($1);
3296 $rawline =~ m@^\+([ \t]*)\*@;
3298 $newindent = expand_tabs($newindent);
3299 if (length($oldindent) ne length($newindent)) {
3300 WARN("BLOCK_COMMENT_STYLE",
3301 "Block comments should align the * on each line\n" . $hereprev);
3305 # check for missing blank lines after struct/union declarations
3306 # with exceptions for various attributes and macros
3307 if ($prevline =~ /^[\+ ]};?\s*$/ &&
3309 !($line =~ /^\+\s*$/ ||
3310 $line =~ /^\+\s*EXPORT_SYMBOL/ ||
3311 $line =~ /^\+\s*MODULE_/i ||
3312 $line =~ /^\+\s*\#\s*(?:end|elif|else)/ ||
3313 $line =~ /^\+[a-z_]*init/ ||
3314 $line =~ /^\+\s*(?:static\s+)?[A-Z_]*ATTR/ ||
3315 $line =~ /^\+\s*DECLARE/ ||
3316 $line =~ /^\+\s*builtin_[\w_]*driver/ ||
3317 $line =~ /^\+\s*__setup/)) {
3318 if (CHK("LINE_SPACING",
3319 "Please use a blank line after function/struct/union/enum declarations\n" . $hereprev) &&
3321 fix_insert_line($fixlinenr, "\+");
3325 # check for multiple consecutive blank lines
3326 if ($prevline =~ /^[\+ ]\s*$/ &&
3327 $line =~ /^\+\s*$/ &&
3328 $last_blank_line != ($linenr - 1)) {
3329 if (CHK("LINE_SPACING",
3330 "Please don't use multiple blank lines\n" . $hereprev) &&
3332 fix_delete_line($fixlinenr, $rawline);
3335 $last_blank_line = $linenr;
3338 # check for missing blank lines after declarations
3339 if ($sline =~ /^\+\s+\S/ && #Not at char 1
3340 # actual declarations
3341 ($prevline =~ /^\+\s+$Declare\s*$Ident\s*[=,;:\[]/ ||
3342 # function pointer declarations
3343 $prevline =~ /^\+\s+$Declare\s*\(\s*\*\s*$Ident\s*\)\s*[=,;:\[\(]/ ||
3344 # foo bar; where foo is some local typedef or #define
3345 $prevline =~ /^\+\s+$Ident(?:\s+|\s*\*\s*)$Ident\s*[=,;\[]/ ||
3346 # known declaration macros
3347 $prevline =~ /^\+\s+$declaration_macros/) &&
3348 # for "else if" which can look like "$Ident $Ident"
3349 !($prevline =~ /^\+\s+$c90_Keywords\b/ ||
3350 # other possible extensions of declaration lines
3351 $prevline =~ /(?:$Compare|$Assignment|$Operators)\s*$/ ||
3352 # not starting a section or a macro "\" extended line
3353 $prevline =~ /(?:\{\s*|\\)$/) &&
3354 # looks like a declaration
3355 !($sline =~ /^\+\s+$Declare\s*$Ident\s*[=,;:\[]/ ||
3356 # function pointer declarations
3357 $sline =~ /^\+\s+$Declare\s*\(\s*\*\s*$Ident\s*\)\s*[=,;:\[\(]/ ||
3358 # foo bar; where foo is some local typedef or #define
3359 $sline =~ /^\+\s+$Ident(?:\s+|\s*\*\s*)$Ident\s*[=,;\[]/ ||
3360 # known declaration macros
3361 $sline =~ /^\+\s+$declaration_macros/ ||
3362 # start of struct or union or enum
3363 $sline =~ /^\+\s+(?:static\s+)?(?:const\s+)?(?:union|struct|enum|typedef)\b/ ||
3364 # start or end of block or continuation of declaration
3365 $sline =~ /^\+\s+(?:$|[\{\}\.\#\"\?\:\(\[])/ ||
3366 # bitfield continuation
3367 $sline =~ /^\+\s+$Ident\s*:\s*\d+\s*[,;]/ ||
3368 # other possible extensions of declaration lines
3369 $sline =~ /^\+\s+\(?\s*(?:$Compare|$Assignment|$Operators)/) &&
3370 # indentation of previous and current line are the same
3371 (($prevline =~ /\+(\s+)\S/) && $sline =~ /^\+$1\S/)) {
3372 if (WARN("LINE_SPACING",
3373 "Missing a blank line after declarations\n" . $hereprev) &&
3375 fix_insert_line($fixlinenr, "\+");
3379 # check for spaces at the beginning of a line.
3381 # 1) within comments
3382 # 2) indented preprocessor commands
3384 if ($rawline =~ /^\+ / && $line !~ /^\+ *(?:$;|#|$Ident:)/) {
3385 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
3386 if (WARN("LEADING_SPACE",
3387 "please, no spaces at the start of a line\n" . $herevet) &&
3389 $fixed[$fixlinenr] =~ s/^\+([ \t]+)/"\+" . tabify($1)/e;
3393 # check we are in a valid C source file if not then ignore this hunk
3394 next if ($realfile !~ /\.(h|c)$/);
3396 # check for unusual line ending [ or (
3397 if ($line =~ /^\+.*([\[\(])\s*$/) {
3398 CHK("OPEN_ENDED_LINE",
3399 "Lines should not end with a '$1'\n" . $herecurr);
3402 # check if this appears to be the start function declaration, save the name
3403 if ($sline =~ /^\+\{\s*$/ &&
3404 $prevline =~ /^\+(?:(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*)?($Ident)\(/) {
3405 $context_function = $1;
3408 # check if this appears to be the end of function declaration
3409 if ($sline =~ /^\+\}\s*$/) {
3410 undef $context_function;
3413 # check indentation of any line with a bare else
3414 # (but not if it is a multiple line "if (foo) return bar; else return baz;")
3415 # if the previous line is a break or return and is indented 1 tab more...
3416 if ($sline =~ /^\+([\t]+)(?:}[ \t]*)?else(?:[ \t]*{)?\s*$/) {
3417 my $tabs = length($1) + 1;
3418 if ($prevline =~ /^\+\t{$tabs,$tabs}break\b/ ||
3419 ($prevline =~ /^\+\t{$tabs,$tabs}return\b/ &&
3420 defined $lines[$linenr] &&
3421 $lines[$linenr] !~ /^[ \+]\t{$tabs,$tabs}return/)) {
3422 WARN("UNNECESSARY_ELSE",
3423 "else is not generally useful after a break or return\n" . $hereprev);
3427 # check indentation of a line with a break;
3428 # if the previous line is a goto or return and is indented the same # of tabs
3429 if ($sline =~ /^\+([\t]+)break\s*;\s*$/) {
3431 if ($prevline =~ /^\+$tabs(?:goto|return)\b/) {
3432 WARN("UNNECESSARY_BREAK",
3433 "break is not useful after a goto or return\n" . $hereprev);
3437 # check for RCS/CVS revision markers
3438 if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) {
3440 "CVS style keyword markers, these will _not_ be updated\n". $herecurr);
3443 # check for old HOTPLUG __dev<foo> section markings
3444 if ($line =~ /\b(__dev(init|exit)(data|const|))\b/) {
3445 WARN("HOTPLUG_SECTION",
3446 "Using $1 is unnecessary\n" . $herecurr);
3449 # Check for potential 'bare' types
3450 my ($stat, $cond, $line_nr_next, $remain_next, $off_next,
3452 #print "LINE<$line>\n";
3453 if ($linenr > $suppress_statement &&
3454 $realcnt && $sline =~ /.\s*\S/) {
3455 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
3456 ctx_statement_block($linenr, $realcnt, 0);
3457 $stat =~ s/\n./\n /g;
3458 $cond =~ s/\n./\n /g;
3460 #print "linenr<$linenr> <$stat>\n";
3461 # If this statement has no statement boundaries within
3462 # it there is no point in retrying a statement scan
3463 # until we hit end of it.
3464 my $frag = $stat; $frag =~ s/;+\s*$//;
3465 if ($frag !~ /(?:{|;)/) {
3466 #print "skip<$line_nr_next>\n";
3467 $suppress_statement = $line_nr_next;
3470 # Find the real next line.
3471 $realline_next = $line_nr_next;
3472 if (defined $realline_next &&
3473 (!defined $lines[$realline_next - 1] ||
3474 substr($lines[$realline_next - 1], $off_next) =~ /^\s*$/)) {
3481 # Ignore goto labels.
3482 if ($s =~ /$Ident:\*$/s) {
3484 # Ignore functions being called
3485 } elsif ($s =~ /^.\s*$Ident\s*\(/s) {
3487 } elsif ($s =~ /^.\s*else\b/s) {
3489 # declarations always start with types
3490 } 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) {
3493 possible($type, "A:" . $s);
3495 # definitions in global scope can only start with types
3496 } elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b\s*(?!:)/s) {
3497 possible($1, "B:" . $s);
3500 # any (foo ... *) is a pointer cast, and foo is a type
3501 while ($s =~ /\(($Ident)(?:\s+$Sparse)*[\s\*]+\s*\)/sg) {
3502 possible($1, "C:" . $s);
3505 # Check for any sort of function declaration.
3506 # int foo(something bar, other baz);
3507 # void (*store_gdt)(x86_descr_ptr *);
3508 if ($prev_values eq 'E' && $s =~ /^(.(?:typedef\s*)?(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*(?:\b$Ident|\(\*\s*$Ident\))\s*)\(/s) {
3509 my ($name_len) = length($1);
3512 substr($ctx, 0, $name_len + 1, '');
3513 $ctx =~ s/\)[^\)]*$//;
3515 for my $arg (split(/\s*,\s*/, $ctx)) {
3516 if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$/s) {
3518 possible($1, "D:" . $s);
3526 # Checks which may be anchored in the context.
3529 # Check for switch () and associated case and default
3530 # statements should be at the same indent.
3531 if ($line=~/\bswitch\s*\(.*\)/) {
3534 my @ctx = ctx_block_outer($linenr, $realcnt);
3536 for my $ctx (@ctx) {
3537 my ($clen, $cindent) = line_stats($ctx);
3538 if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
3539 $indent != $cindent) {
3540 $err .= "$sep$ctx\n";
3547 ERROR("SWITCH_CASE_INDENT_LEVEL",
3548 "switch and case should be at the same indent\n$hereline$err");
3552 # if/while/etc brace do not go on next line, unless defining a do while loop,
3553 # or if that brace on the next line is for something else
3554 if ($line =~ /(.*)\b((?:if|while|for|switch|(?:[a-z_]+|)for_each[a-z_]+)\s*\(|do\b|else\b)/ && $line !~ /^.\s*\#/) {
3555 my $pre_ctx = "$1$2";
3557 my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0);
3559 if ($line =~ /^\+\t{6,}/) {
3560 WARN("DEEP_INDENTATION",
3561 "Too many leading tabs - consider code refactoring\n" . $herecurr);
3564 my $ctx_cnt = $realcnt - $#ctx - 1;
3565 my $ctx = join("\n", @ctx);
3567 my $ctx_ln = $linenr;
3568 my $ctx_skip = $realcnt;
3570 while ($ctx_skip > $ctx_cnt || ($ctx_skip == $ctx_cnt &&
3571 defined $lines[$ctx_ln - 1] &&
3572 $lines[$ctx_ln - 1] =~ /^-/)) {
3573 ##print "SKIP<$ctx_skip> CNT<$ctx_cnt>\n";
3574 $ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/);
3578 #print "realcnt<$realcnt> ctx_cnt<$ctx_cnt>\n";
3579 #print "pre<$pre_ctx>\nline<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>\n";
3581 if ($ctx !~ /{\s*/ && defined($lines[$ctx_ln - 1]) && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
3583 "that open brace { should be on the previous line\n" .
3584 "$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
3586 if ($level == 0 && $pre_ctx !~ /}\s*while\s*\($/ &&
3587 $ctx =~ /\)\s*\;\s*$/ &&
3588 defined $lines[$ctx_ln - 1])
3590 my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
3591 if ($nindent > $indent) {
3592 WARN("TRAILING_SEMICOLON",
3593 "trailing semicolon indicates no statements, indent implies otherwise\n" .
3594 "$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
3599 # Check relative indent for conditionals and blocks.
3600 if ($line =~ /\b(?:(?:if|while|for|(?:[a-z_]+|)for_each[a-z_]+)\s*\(|(?:do|else)\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) {
3601 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
3602 ctx_statement_block($linenr, $realcnt, 0)
3603 if (!defined $stat);
3604 my ($s, $c) = ($stat, $cond);
3606 substr($s, 0, length($c), '');
3608 # remove inline comments
3612 # Find out how long the conditional actually is.
3613 my @newlines = ($c =~ /\n/gs);
3614 my $cond_lines = 1 + $#newlines;
3616 # Make sure we remove the line prefixes as we have
3617 # none on the first line, and are going to readd them
3620 while ($s =~ /\n\s+\\\n/) {
3621 $cond_lines += $s =~ s/\n\s+\\\n/\n/g;
3624 # We want to check the first line inside the block
3625 # starting at the end of the conditional, so remove:
3626 # 1) any blank line termination
3627 # 2) any opening brace { on end of the line
3629 my $continuation = 0;
3631 $s =~ s/^.*\bdo\b//;
3633 if ($s =~ s/^\s*\\//) {
3636 if ($s =~ s/^\s*?\n//) {
3641 # Also ignore a loop construct at the end of a
3642 # preprocessor statement.
3643 if (($prevline =~ /^.\s*#\s*define\s/ ||
3644 $prevline =~ /\\\s*$/) && $continuation == 0) {
3650 while ($cond_ptr != $cond_lines) {
3651 $cond_ptr = $cond_lines;
3653 # If we see an #else/#elif then the code
3655 if ($s =~ /^\s*\#\s*(?:else|elif)/) {
3660 # 1) blank lines, they should be at 0,
3661 # 2) preprocessor lines, and
3663 if ($continuation ||
3665 $s =~ /^\s*#\s*?/ ||
3666 $s =~ /^\s*$Ident\s*:/) {
3667 $continuation = ($s =~ /^.*?\\\n/) ? 1 : 0;
3668 if ($s =~ s/^.*?\n//) {
3674 my (undef, $sindent) = line_stats("+" . $s);
3675 my $stat_real = raw_line($linenr, $cond_lines);
3677 # Check if either of these lines are modified, else
3678 # this is not this patch's fault.
3679 if (!defined($stat_real) ||
3680 $stat !~ /^\+/ && $stat_real !~ /^\+/) {
3683 if (defined($stat_real) && $cond_lines > 1) {
3684 $stat_real = "[...]\n$stat_real";
3687 #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";
3689 if ($check && $s ne '' &&
3690 (($sindent % 8) != 0 ||
3691 ($sindent < $indent) ||
3692 ($sindent == $indent &&
3693 ($s !~ /^\s*(?:\}|\{|else\b)/)) ||
3694 ($sindent > $indent + 8))) {
3695 WARN("SUSPECT_CODE_INDENT",
3696 "suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n");
3700 # Track the 'values' across context and added lines.
3701 my $opline = $line; $opline =~ s/^./ /;
3702 my ($curr_values, $curr_vars) =
3703 annotate_values($opline . "\n", $prev_values);
3704 $curr_values = $prev_values . $curr_values;
3706 my $outline = $opline; $outline =~ s/\t/ /g;
3707 print "$linenr > .$outline\n";
3708 print "$linenr > $curr_values\n";
3709 print "$linenr > $curr_vars\n";
3711 $prev_values = substr($curr_values, -1);
3713 #ignore lines not being added
3714 next if ($line =~ /^[^\+]/);
3716 # check for dereferences that span multiple lines
3717 if ($prevline =~ /^\+.*$Lval\s*(?:\.|->)\s*$/ &&
3718 $line =~ /^\+\s*(?!\#\s*(?!define\s+|if))\s*$Lval/) {
3719 $prevline =~ /($Lval\s*(?:\.|->))\s*$/;
3721 $line =~ /^.\s*($Lval)/;
3724 WARN("MULTILINE_DEREFERENCE",
3725 "Avoid multiple line dereference - prefer '$ref'\n" . $hereprev);
3728 # check for declarations of signed or unsigned without int
3729 while ($line =~ m{\b($Declare)\s*(?!char\b|short\b|int\b|long\b)\s*($Ident)?\s*[=,;\[\)\(]}g) {
3732 $var = "" if (!defined $var);
3733 if ($type =~ /^(?:(?:$Storage|$Inline|$Attribute)\s+)*((?:un)?signed)((?:\s*\*)*)\s*$/) {
3737 $pointer = "" if (!defined $pointer);
3739 if (WARN("UNSPECIFIED_INT",
3740 "Prefer '" . trim($sign) . " int" . rtrim($pointer) . "' to bare use of '$sign" . rtrim($pointer) . "'\n" . $herecurr) &&
3742 my $decl = trim($sign) . " int ";
3743 my $comp_pointer = $pointer;
3744 $comp_pointer =~ s/\s//g;
3745 $decl .= $comp_pointer;
3746 $decl = rtrim($decl) if ($var eq "");
3747 $fixed[$fixlinenr] =~ s@\b$sign\s*\Q$pointer\E\s*$var\b@$decl$var@;
3752 # TEST: allow direct testing of the type matcher.
3754 if ($line =~ /^.\s*$Declare\s*$/) {
3756 "TEST: is type\n" . $herecurr);
3757 } elsif ($dbg_type > 1 && $line =~ /^.+($Declare)/) {
3758 ERROR("TEST_NOT_TYPE",
3759 "TEST: is not type ($1 is)\n". $herecurr);
3763 # TEST: allow direct testing of the attribute matcher.
3765 if ($line =~ /^.\s*$Modifier\s*$/) {
3767 "TEST: is attr\n" . $herecurr);
3768 } elsif ($dbg_attr > 1 && $line =~ /^.+($Modifier)/) {
3769 ERROR("TEST_NOT_ATTR",
3770 "TEST: is not attr ($1 is)\n". $herecurr);
3775 # check for initialisation to aggregates open brace on the next line
3776 if ($line =~ /^.\s*{/ &&
3777 $prevline =~ /(?:^|[^=])=\s*$/) {
3778 if (ERROR("OPEN_BRACE",
3779 "that open brace { should be on the previous line\n" . $hereprev) &&
3780 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
3781 fix_delete_line($fixlinenr - 1, $prevrawline);
3782 fix_delete_line($fixlinenr, $rawline);
3783 my $fixedline = $prevrawline;
3784 $fixedline =~ s/\s*=\s*$/ = {/;
3785 fix_insert_line($fixlinenr, $fixedline);
3787 $fixedline =~ s/^(.\s*)\{\s*/$1/;
3788 fix_insert_line($fixlinenr, $fixedline);
3793 # Checks which are anchored on the added line.
3796 # check for malformed paths in #include statements (uses RAW line)
3797 if ($rawline =~ m{^.\s*\#\s*include\s+[<"](.*)[">]}) {
3799 if ($path =~ m{//}) {
3800 ERROR("MALFORMED_INCLUDE",
3801 "malformed #include filename\n" . $herecurr);
3803 if ($path =~ "^uapi/" && $realfile =~ m@\binclude/uapi/@) {
3804 ERROR("UAPI_INCLUDE",
3805 "No #include in ...include/uapi/... should use a uapi/ path prefix\n" . $herecurr);
3809 # no C99 // comments
3810 if ($line =~ m{//}) {
3811 if (ERROR("C99_COMMENTS",
3812 "do not use C99 // comments\n" . $herecurr) &&
3814 my $line = $fixed[$fixlinenr];
3815 if ($line =~ /\/\/(.*)$/) {
3816 my $comment = trim($1);
3817 $fixed[$fixlinenr] =~ s@\/\/(.*)$@/\* $comment \*/@;
3821 # Remove C99 comments.
3823 $opline =~ s@//.*@@;
3825 # EXPORT_SYMBOL should immediately follow the thing it is exporting, consider
3826 # the whole statement.
3827 #print "APW <$lines[$realline_next - 1]>\n";
3828 if (defined $realline_next &&
3829 exists $lines[$realline_next - 1] &&
3830 !defined $suppress_export{$realline_next} &&
3831 ($lines[$realline_next - 1] =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
3832 $lines[$realline_next - 1] =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
3833 # Handle definitions which produce identifiers with
3836 # EXPORT_SYMBOL(something_foo);
3838 if ($stat =~ /^(?:.\s*}\s*\n)?.([A-Z_]+)\s*\(\s*($Ident)/ &&
3839 $name =~ /^${Ident}_$2/) {
3840 #print "FOO C name<$name>\n";
3841 $suppress_export{$realline_next} = 1;
3843 } elsif ($stat !~ /(?:
3845 ^.DEFINE_$Ident\(\Q$name\E\)|
3846 ^.DECLARE_$Ident\(\Q$name\E\)|
3847 ^.LIST_HEAD\(\Q$name\E\)|
3848 ^.(?:$Storage\s+)?$Type\s*\(\s*\*\s*\Q$name\E\s*\)\s*\(|
3849 \b\Q$name\E(?:\s+$Attribute)*\s*(?:;|=|\[|\()
3851 #print "FOO A<$lines[$realline_next - 1]> stat<$stat> name<$name>\n";
3852 $suppress_export{$realline_next} = 2;
3854 $suppress_export{$realline_next} = 1;
3857 if (!defined $suppress_export{$linenr} &&
3858 $prevline =~ /^.\s*$/ &&
3859 ($line =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
3860 $line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
3861 #print "FOO B <$lines[$linenr - 1]>\n";
3862 $suppress_export{$linenr} = 2;
3864 if (defined $suppress_export{$linenr} &&
3865 $suppress_export{$linenr} == 2) {
3866 WARN("EXPORT_SYMBOL",
3867 "EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
3870 # check for global initialisers.
3871 if ($line =~ /^\+$Type\s*$Ident(?:\s+$Modifier)*\s*=\s*($zero_initializer)\s*;/) {
3872 if (ERROR("GLOBAL_INITIALISERS",
3873 "do not initialise globals to $1\n" . $herecurr) &&
3875 $fixed[$fixlinenr] =~ s/(^.$Type\s*$Ident(?:\s+$Modifier)*)\s*=\s*$zero_initializer\s*;/$1;/;
3878 # check for static initialisers.
3879 if ($line =~ /^\+.*\bstatic\s.*=\s*($zero_initializer)\s*;/) {
3880 if (ERROR("INITIALISED_STATIC",
3881 "do not initialise statics to $1\n" .
3884 $fixed[$fixlinenr] =~ s/(\bstatic\s.*?)\s*=\s*$zero_initializer\s*;/$1;/;
3888 # check for misordered declarations of char/short/int/long with signed/unsigned
3889 while ($sline =~ m{(\b$TypeMisordered\b)}g) {
3891 WARN("MISORDERED_TYPE",
3892 "type '$tmp' should be specified in [[un]signed] [short|int|long|long long] order\n" . $herecurr);
3895 # check for unnecessary <signed> int declarations of short/long/long long
3896 while ($sline =~ m{\b($TypeMisordered(\s*\*)*|$C90_int_types)\b}g) {
3897 my $type = trim($1);
3898 next if ($type !~ /\bint\b/);
3899 next if ($type !~ /\b(?:short|long\s+long|long)\b/);
3900 my $new_type = $type;
3901 $new_type =~ s/\b\s*int\s*\b/ /;
3902 $new_type =~ s/\b\s*(?:un)?signed\b\s*/ /;
3903 $new_type =~ s/^const\s+//;
3904 $new_type = "unsigned $new_type" if ($type =~ /\bunsigned\b/);
3905 $new_type = "const $new_type" if ($type =~ /^const\b/);
3906 $new_type =~ s/\s+/ /g;
3907 $new_type = trim($new_type);
3908 if (WARN("UNNECESSARY_INT",
3909 "Prefer '$new_type' over '$type' as the int is unnecessary\n" . $herecurr) &&
3911 $fixed[$fixlinenr] =~ s/\b\Q$type\E\b/$new_type/;
3915 # check for static const char * arrays.
3916 if ($line =~ /\bstatic\s+const\s+char\s*\*\s*(\w+)\s*\[\s*\]\s*=\s*/) {
3917 WARN("STATIC_CONST_CHAR_ARRAY",
3918 "static const char * array should probably be static const char * const\n" .
3922 # check for static char foo[] = "bar" declarations.
3923 if ($line =~ /\bstatic\s+char\s+(\w+)\s*\[\s*\]\s*=\s*"/) {
3924 WARN("STATIC_CONST_CHAR_ARRAY",
3925 "static char array declaration should probably be static const char\n" .
3929 # check for const <foo> const where <foo> is not a pointer or array type
3930 if ($sline =~ /\bconst\s+($BasicType)\s+const\b/) {
3932 if ($sline =~ /\bconst\s+\Q$found\E\s+const\b\s*\*/) {
3934 "'const $found const *' should probably be 'const $found * const'\n" . $herecurr);
3935 } elsif ($sline !~ /\bconst\s+\Q$found\E\s+const\s+\w+\s*\[/) {
3937 "'const $found const' should probably be 'const $found'\n" . $herecurr);
3941 # check for non-global char *foo[] = {"bar", ...} declarations.
3942 if ($line =~ /^.\s+(?:static\s+|const\s+)?char\s+\*\s*\w+\s*\[\s*\]\s*=\s*\{/) {
3943 WARN("STATIC_CONST_CHAR_ARRAY",
3944 "char * array declaration might be better as static const\n" .
3948 # check for sizeof(foo)/sizeof(foo[0]) that could be ARRAY_SIZE(foo)
3949 if ($line =~ m@\bsizeof\s*\(\s*($Lval)\s*\)@) {
3951 if ($line =~ m@\b(sizeof\s*\(\s*\Q$array\E\s*\)\s*/\s*sizeof\s*\(\s*\Q$array\E\s*\[\s*0\s*\]\s*\))@) {
3953 if (WARN("ARRAY_SIZE",
3954 "Prefer ARRAY_SIZE($array)\n" . $herecurr) &&
3956 $fixed[$fixlinenr] =~ s/\Q$array_div\E/ARRAY_SIZE($array)/;
3961 # check for function declarations without arguments like "int foo()"
3962 if ($line =~ /(\b$Type\s+$Ident)\s*\(\s*\)/) {
3963 if (ERROR("FUNCTION_WITHOUT_ARGS",
3964 "Bad function definition - $1() should probably be $1(void)\n" . $herecurr) &&
3966 $fixed[$fixlinenr] =~ s/(\b($Type)\s+($Ident))\s*\(\s*\)/$2 $3(void)/;
3970 # check for new typedefs, only function parameters and sparse annotations
3972 if ($line =~ /\btypedef\s/ &&
3973 $line !~ /\btypedef\s+$Type\s*\(\s*\*?$Ident\s*\)\s*\(/ &&
3974 $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ &&
3975 $line !~ /\b$typeTypedefs\b/ &&
3976 $line !~ /\b__bitwise\b/) {
3977 WARN("NEW_TYPEDEFS",
3978 "do not add new typedefs\n" . $herecurr);
3981 # * goes on variable not on type
3983 while ($line =~ m{(\($NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)\))}g) {
3985 my ($ident, $from, $to) = ($1, $2, $2);
3987 # Should start with a space.
3988 $to =~ s/^(\S)/ $1/;
3989 # Should not end with a space.
3991 # '*'s should not have spaces between.
3992 while ($to =~ s/\*\s+\*/\*\*/) {
3995 ## print "1: from<$from> to<$to> ident<$ident>\n";
3997 if (ERROR("POINTER_LOCATION",
3998 "\"(foo$from)\" should be \"(foo$to)\"\n" . $herecurr) &&
4000 my $sub_from = $ident;
4001 my $sub_to = $ident;
4002 $sub_to =~ s/\Q$from\E/$to/;
4003 $fixed[$fixlinenr] =~
4004 s@\Q$sub_from\E@$sub_to@;
4008 while ($line =~ m{(\b$NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)($Ident))}g) {
4010 my ($match, $from, $to, $ident) = ($1, $2, $2, $3);
4012 # Should start with a space.
4013 $to =~ s/^(\S)/ $1/;
4014 # Should not end with a space.
4016 # '*'s should not have spaces between.
4017 while ($to =~ s/\*\s+\*/\*\*/) {
4019 # Modifiers should have spaces.
4020 $to =~ s/(\b$Modifier$)/$1 /;
4022 ## print "2: from<$from> to<$to> ident<$ident>\n";
4023 if ($from ne $to && $ident !~ /^$Modifier$/) {
4024 if (ERROR("POINTER_LOCATION",
4025 "\"foo${from}bar\" should be \"foo${to}bar\"\n" . $herecurr) &&
4028 my $sub_from = $match;
4029 my $sub_to = $match;
4030 $sub_to =~ s/\Q$from\E/$to/;
4031 $fixed[$fixlinenr] =~
4032 s@\Q$sub_from\E@$sub_to@;
4037 # avoid BUG() or BUG_ON()
4038 if ($line =~ /\b(?:BUG|BUG_ON)\b/) {
4039 my $msg_level = \&WARN;
4040 $msg_level = \&CHK if ($file);
4041 &{$msg_level}("AVOID_BUG",
4042 "Avoid crashing the kernel - try using WARN_ON & recovery code rather than BUG() or BUG_ON()\n" . $herecurr);
4045 # avoid LINUX_VERSION_CODE
4046 if ($line =~ /\bLINUX_VERSION_CODE\b/) {
4047 WARN("LINUX_VERSION_CODE",
4048 "LINUX_VERSION_CODE should be avoided, code should be for the version to which it is merged\n" . $herecurr);
4051 # check for uses of printk_ratelimit
4052 if ($line =~ /\bprintk_ratelimit\s*\(/) {
4053 WARN("PRINTK_RATELIMITED",
4054 "Prefer printk_ratelimited or pr_<level>_ratelimited to printk_ratelimit\n" . $herecurr);
4057 # printk should use KERN_* levels
4058 if ($line =~ /\bprintk\s*\(\s*(?!KERN_[A-Z]+\b)/) {
4059 WARN("PRINTK_WITHOUT_KERN_LEVEL",
4060 "printk() should include KERN_<LEVEL> facility level\n" . $herecurr);
4063 if ($line =~ /\bprintk\s*\(\s*KERN_([A-Z]+)/) {
4065 my $level = lc($orig);
4066 $level = "warn" if ($level eq "warning");
4067 my $level2 = $level;
4068 $level2 = "dbg" if ($level eq "debug");
4069 WARN("PREFER_PR_LEVEL",
4070 "Prefer [subsystem eg: netdev]_$level2([subsystem]dev, ... then dev_$level2(dev, ... then pr_$level(... to printk(KERN_$orig ...\n" . $herecurr);
4073 if ($line =~ /\bpr_warning\s*\(/) {
4074 if (WARN("PREFER_PR_LEVEL",
4075 "Prefer pr_warn(... to pr_warning(...\n" . $herecurr) &&
4077 $fixed[$fixlinenr] =~
4078 s/\bpr_warning\b/pr_warn/;
4082 if ($line =~ /\bdev_printk\s*\(\s*KERN_([A-Z]+)/) {
4084 my $level = lc($orig);
4085 $level = "warn" if ($level eq "warning");
4086 $level = "dbg" if ($level eq "debug");
4087 WARN("PREFER_DEV_LEVEL",
4088 "Prefer dev_$level(... to dev_printk(KERN_$orig, ...\n" . $herecurr);
4091 # ENOSYS means "bad syscall nr" and nothing else. This will have a small
4092 # number of false positives, but assembly files are not checked, so at
4093 # least the arch entry code will not trigger this warning.
4094 if ($line =~ /\bENOSYS\b/) {
4096 "ENOSYS means 'invalid syscall nr' and nothing else\n" . $herecurr);
4099 # function brace can't be on same line, except for #defines of do while,
4100 # or if closed on same line
4101 if ($perl_version_ok &&
4102 $sline =~ /$Type\s*$Ident\s*$balanced_parens\s*\{/ &&
4103 $sline !~ /\#\s*define\b.*do\s*\{/ &&
4105 if (ERROR("OPEN_BRACE",
4106 "open brace '{' following function definitions go on the next line\n" . $herecurr) &&
4108 fix_delete_line($fixlinenr, $rawline);
4109 my $fixed_line = $rawline;
4110 $fixed_line =~ /(^..*$Type\s*$Ident\(.*\)\s*){(.*)$/;
4113 fix_insert_line($fixlinenr, ltrim($line1));
4114 fix_insert_line($fixlinenr, "\+{");
4115 if ($line2 !~ /^\s*$/) {
4116 fix_insert_line($fixlinenr, "\+\t" . trim($line2));
4121 # open braces for enum, union and struct go on the same line.
4122 if ($line =~ /^.\s*{/ &&
4123 $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
4124 if (ERROR("OPEN_BRACE",
4125 "open brace '{' following $1 go on the same line\n" . $hereprev) &&
4126 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
4127 fix_delete_line($fixlinenr - 1, $prevrawline);
4128 fix_delete_line($fixlinenr, $rawline);
4129 my $fixedline = rtrim($prevrawline) . " {";
4130 fix_insert_line($fixlinenr, $fixedline);
4131 $fixedline = $rawline;
4132 $fixedline =~ s/^(.\s*)\{\s*/$1\t/;
4133 if ($fixedline !~ /^\+\s*$/) {
4134 fix_insert_line($fixlinenr, $fixedline);
4139 # missing space after union, struct or enum definition
4140 if ($line =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident){1,2}[=\{]/) {
4142 "missing space after $1 definition\n" . $herecurr) &&
4144 $fixed[$fixlinenr] =~
4145 s/^(.\s*(?:typedef\s+)?(?:enum|union|struct)(?:\s+$Ident){1,2})([=\{])/$1 $2/;
4149 # Function pointer declarations
4150 # check spacing between type, funcptr, and args
4151 # canonical declaration is "type (*funcptr)(args...)"
4152 if ($line =~ /^.\s*($Declare)\((\s*)\*(\s*)($Ident)(\s*)\)(\s*)\(/) {
4154 my $pre_pointer_space = $2;
4155 my $post_pointer_space = $3;
4157 my $post_funcname_space = $5;
4158 my $pre_args_space = $6;
4160 # the $Declare variable will capture all spaces after the type
4161 # so check it for a missing trailing missing space but pointer return types
4162 # don't need a space so don't warn for those.
4163 my $post_declare_space = "";
4164 if ($declare =~ /(\s+)$/) {
4165 $post_declare_space = $1;
4166 $declare = rtrim($declare);
4168 if ($declare !~ /\*$/ && $post_declare_space =~ /^$/) {
4170 "missing space after return type\n" . $herecurr);
4171 $post_declare_space = " ";
4174 # unnecessary space "type (*funcptr)(args...)"
4175 # This test is not currently implemented because these declarations are
4177 # int foo(int bar, ...)
4178 # and this is form shouldn't/doesn't generate a checkpatch warning.
4180 # elsif ($declare =~ /\s{2,}$/) {
4182 # "Multiple spaces after return type\n" . $herecurr);
4185 # unnecessary space "type ( *funcptr)(args...)"
4186 if (defined $pre_pointer_space &&
4187 $pre_pointer_space =~ /^\s/) {
4189 "Unnecessary space after function pointer open parenthesis\n" . $herecurr);
4192 # unnecessary space "type (* funcptr)(args...)"
4193 if (defined $post_pointer_space &&
4194 $post_pointer_space =~ /^\s/) {
4196 "Unnecessary space before function pointer name\n" . $herecurr);
4199 # unnecessary space "type (*funcptr )(args...)"
4200 if (defined $post_funcname_space &&
4201 $post_funcname_space =~ /^\s/) {
4203 "Unnecessary space after function pointer name\n" . $herecurr);
4206 # unnecessary space "type (*funcptr) (args...)"
4207 if (defined $pre_args_space &&
4208 $pre_args_space =~ /^\s/) {
4210 "Unnecessary space before function pointer arguments\n" . $herecurr);
4213 if (show_type("SPACING") && $fix) {
4214 $fixed[$fixlinenr] =~
4215 s/^(.\s*)$Declare\s*\(\s*\*\s*$Ident\s*\)\s*\(/$1 . $declare . $post_declare_space . '(*' . $funcname . ')('/ex;
4219 # check for spacing round square brackets; allowed:
4220 # 1. with a type on the left -- int [] a;
4221 # 2. at the beginning of a line for slice initialisers -- [0...10] = 5,
4222 # 3. inside a curly brace -- = { [0...10] = 5 }
4223 while ($line =~ /(.*?\s)\[/g) {
4224 my ($where, $prefix) = ($-[1], $1);
4225 if ($prefix !~ /$Type\s+$/ &&
4226 ($where != 0 || $prefix !~ /^.\s+$/) &&
4227 $prefix !~ /[{,:]\s+$/) {
4228 if (ERROR("BRACKET_SPACE",
4229 "space prohibited before open square bracket '['\n" . $herecurr) &&
4231 $fixed[$fixlinenr] =~
4232 s/^(\+.*?)\s+\[/$1\[/;
4237 # check for spaces between functions and their parentheses.
4238 while ($line =~ /($Ident)\s+\(/g) {
4240 my $ctx_before = substr($line, 0, $-[1]);
4241 my $ctx = "$ctx_before$name";
4243 # Ignore those directives where spaces _are_ permitted.
4245 if|for|while|switch|return|case|
4246 volatile|__volatile__|
4247 __attribute__|format|__extension__|
4250 # cpp #define statements have non-optional spaces, ie
4251 # if there is a space between the name and the open
4252 # parenthesis it is simply not a parameter group.
4253 } elsif ($ctx_before =~ /^.\s*\#\s*define\s*$/) {
4255 # cpp #elif statement condition may start with a (
4256 } elsif ($ctx =~ /^.\s*\#\s*elif\s*$/) {
4258 # If this whole things ends with a type its most
4259 # likely a typedef for a function.
4260 } elsif ($ctx =~ /$Type$/) {
4264 "space prohibited between function name and open parenthesis '('\n" . $herecurr) &&
4266 $fixed[$fixlinenr] =~
4267 s/\b$name\s+\(/$name\(/;
4272 # Check operator spacing.
4273 if (!($line=~/\#\s*include/)) {
4274 my $fixed_line = "";
4278 <<=|>>=|<=|>=|==|!=|
4279 \+=|-=|\*=|\/=|%=|\^=|\|=|&=|
4280 =>|->|<<|>>|<|>|=|!|~|
4281 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%|
4284 my @elements = split(/($ops|;)/, $opline);
4286 ## print("element count: <" . $#elements . ">\n");
4287 ## foreach my $el (@elements) {
4288 ## print("el: <$el>\n");
4291 my @fix_elements = ();
4294 foreach my $el (@elements) {
4295 push(@fix_elements, substr($rawline, $off, length($el)));
4296 $off += length($el);
4301 my $blank = copy_spacing($opline);
4302 my $last_after = -1;
4304 for (my $n = 0; $n < $#elements; $n += 2) {
4306 my $good = $fix_elements[$n] . $fix_elements[$n + 1];
4308 ## print("n: <$n> good: <$good>\n");
4310 $off += length($elements[$n]);
4312 # Pick up the preceding and succeeding characters.
4313 my $ca = substr($opline, 0, $off);
4315 if (length($opline) >= ($off + length($elements[$n + 1]))) {
4316 $cc = substr($opline, $off + length($elements[$n + 1]));
4318 my $cb = "$ca$;$cc";
4321 $a = 'V' if ($elements[$n] ne '');
4322 $a = 'W' if ($elements[$n] =~ /\s$/);
4323 $a = 'C' if ($elements[$n] =~ /$;$/);
4324 $a = 'B' if ($elements[$n] =~ /(\[|\()$/);
4325 $a = 'O' if ($elements[$n] eq '');
4326 $a = 'E' if ($ca =~ /^\s*$/);
4328 my $op = $elements[$n + 1];
4331 if (defined $elements[$n + 2]) {
4332 $c = 'V' if ($elements[$n + 2] ne '');
4333 $c = 'W' if ($elements[$n + 2] =~ /^\s/);
4334 $c = 'C' if ($elements[$n + 2] =~ /^$;/);
4335 $c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
4336 $c = 'O' if ($elements[$n + 2] eq '');
4337 $c = 'E' if ($elements[$n + 2] =~ /^\s*\\$/);
4342 my $ctx = "${a}x${c}";
4344 my $at = "(ctx:$ctx)";
4346 my $ptr = substr($blank, 0, $off) . "^";
4347 my $hereptr = "$hereline$ptr\n";
4349 # Pull out the value of this operator.
4350 my $op_type = substr($curr_values, $off + 1, 1);
4352 # Get the full operator variant.
4353 my $opv = $op . substr($curr_vars, $off, 1);
4355 # Ignore operators passed as parameters.
4356 if ($op_type ne 'V' &&
4357 $ca =~ /\s$/ && $cc =~ /^\s*[,\)]/) {
4360 # } elsif ($op =~ /^$;+$/) {
4362 # ; should have either the end of line or a space or \ after it
4363 } elsif ($op eq ';') {
4364 if ($ctx !~ /.x[WEBC]/ &&
4365 $cc !~ /^\\/ && $cc !~ /^;/) {
4366 if (ERROR("SPACING",
4367 "space required after that '$op' $at\n" . $hereptr)) {
4368 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]) . " ";
4374 } elsif ($op eq '//') {
4376 # : when part of a bitfield
4377 } elsif ($opv eq ':B') {
4378 # skip the bitfield test for now
4382 } elsif ($op eq '->') {
4383 if ($ctx =~ /Wx.|.xW/) {
4384 if (ERROR("SPACING",
4385 "spaces prohibited around that '$op' $at\n" . $hereptr)) {
4386 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
4387 if (defined $fix_elements[$n + 2]) {
4388 $fix_elements[$n + 2] =~ s/^\s+//;
4394 # , must not have a space before and must have a space on the right.
4395 } elsif ($op eq ',') {
4396 my $rtrim_before = 0;
4397 my $space_after = 0;
4398 if ($ctx =~ /Wx./) {
4399 if (ERROR("SPACING",
4400 "space prohibited before that '$op' $at\n" . $hereptr)) {
4405 if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) {
4406 if (ERROR("SPACING",
4407 "space required after that '$op' $at\n" . $hereptr)) {
4413 if ($rtrim_before || $space_after) {
4414 if ($rtrim_before) {
4415 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
4417 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]);
4424 # '*' as part of a type definition -- reported already.
4425 } elsif ($opv eq '*_') {
4426 #warn "'*' is part of type\n";
4428 # unary operators should have a space before and
4429 # none after. May be left adjacent to another
4430 # unary operator, or a cast
4431 } elsif ($op eq '!' || $op eq '~' ||
4432 $opv eq '*U' || $opv eq '-U' ||
4433 $opv eq '&U' || $opv eq '&&U') {
4434 if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
4435 if (ERROR("SPACING",
4436 "space required before that '$op' $at\n" . $hereptr)) {
4437 if ($n != $last_after + 2) {
4438 $good = $fix_elements[$n] . " " . ltrim($fix_elements[$n + 1]);
4443 if ($op eq '*' && $cc =~/\s*$Modifier\b/) {
4444 # A unary '*' may be const
4446 } elsif ($ctx =~ /.xW/) {
4447 if (ERROR("SPACING",
4448 "space prohibited after that '$op' $at\n" . $hereptr)) {
4449 $good = $fix_elements[$n] . rtrim($fix_elements[$n + 1]);
4450 if (defined $fix_elements[$n + 2]) {
4451 $fix_elements[$n + 2] =~ s/^\s+//;
4457 # unary ++ and unary -- are allowed no space on one side.
4458 } elsif ($op eq '++' or $op eq '--') {
4459 if ($ctx !~ /[WEOBC]x[^W]/ && $ctx !~ /[^W]x[WOBEC]/) {
4460 if (ERROR("SPACING",
4461 "space required one side of that '$op' $at\n" . $hereptr)) {
4462 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]) . " ";
4466 if ($ctx =~ /Wx[BE]/ ||
4467 ($ctx =~ /Wx./ && $cc =~ /^;/)) {
4468 if (ERROR("SPACING",
4469 "space prohibited before that '$op' $at\n" . $hereptr)) {
4470 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
4474 if ($ctx =~ /ExW/) {
4475 if (ERROR("SPACING",
4476 "space prohibited after that '$op' $at\n" . $hereptr)) {
4477 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]);
4478 if (defined $fix_elements[$n + 2]) {
4479 $fix_elements[$n + 2] =~ s/^\s+//;
4485 # << and >> may either have or not have spaces both sides
4486 } elsif ($op eq '<<' or $op eq '>>' or
4487 $op eq '&' or $op eq '^' or $op eq '|' or
4488 $op eq '+' or $op eq '-' or
4489 $op eq '*' or $op eq '/' or
4493 if (defined $fix_elements[$n + 2] && $ctx !~ /[EW]x[EW]/) {
4495 "spaces preferred around that '$op' $at\n" . $hereptr)) {
4496 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
4497 $fix_elements[$n + 2] =~ s/^\s+//;
4500 } elsif (!defined $fix_elements[$n + 2] && $ctx !~ /Wx[OE]/) {
4502 "space preferred before that '$op' $at\n" . $hereptr)) {
4503 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]);
4507 } elsif ($ctx =~ /Wx[^WCE]|[^WCE]xW/) {
4508 if (ERROR("SPACING",
4509 "need consistent spacing around '$op' $at\n" . $hereptr)) {
4510 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
4511 if (defined $fix_elements[$n + 2]) {
4512 $fix_elements[$n + 2] =~ s/^\s+//;
4518 # A colon needs no spaces before when it is
4519 # terminating a case value or a label.
4520 } elsif ($opv eq ':C' || $opv eq ':L') {
4521 if ($ctx =~ /Wx./) {
4522 if (ERROR("SPACING",
4523 "space prohibited before that '$op' $at\n" . $hereptr)) {
4524 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
4529 # All the others need spaces both sides.
4530 } elsif ($ctx !~ /[EWC]x[CWE]/) {
4533 # Ignore email addresses <foo@bar>
4535 $cc =~ /^\S+\@\S+>/) ||
4537 $ca =~ /<\S+\@\S+$/))
4542 # for asm volatile statements
4543 # ignore a colon with another
4544 # colon immediately before or after
4546 ($ca =~ /:$/ || $cc =~ /^:/)) {
4550 # messages are ERROR, but ?: are CHK
4552 my $msg_level = \&ERROR;
4553 $msg_level = \&CHK if (($op eq '?:' || $op eq '?' || $op eq ':') && $ctx =~ /VxV/);
4555 if (&{$msg_level}("SPACING",
4556 "spaces required around that '$op' $at\n" . $hereptr)) {
4557 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
4558 if (defined $fix_elements[$n + 2]) {
4559 $fix_elements[$n + 2] =~ s/^\s+//;
4565 $off += length($elements[$n + 1]);
4567 ## print("n: <$n> GOOD: <$good>\n");
4569 $fixed_line = $fixed_line . $good;
4572 if (($#elements % 2) == 0) {
4573 $fixed_line = $fixed_line . $fix_elements[$#elements];
4576 if ($fix && $line_fixed && $fixed_line ne $fixed[$fixlinenr]) {
4577 $fixed[$fixlinenr] = $fixed_line;
4583 # check for whitespace before a non-naked semicolon
4584 if ($line =~ /^\+.*\S\s+;\s*$/) {
4586 "space prohibited before semicolon\n" . $herecurr) &&
4588 1 while $fixed[$fixlinenr] =~
4589 s/^(\+.*\S)\s+;/$1;/;
4593 # check for multiple assignments
4594 if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
4595 CHK("MULTIPLE_ASSIGNMENTS",
4596 "multiple assignments should be avoided\n" . $herecurr);
4599 ## # check for multiple declarations, allowing for a function declaration
4601 ## if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
4602 ## $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
4604 ## # Remove any bracketed sections to ensure we do not
4605 ## # falsly report the parameters of functions.
4607 ## while ($ln =~ s/\([^\(\)]*\)//g) {
4609 ## if ($ln =~ /,/) {
4610 ## WARN("MULTIPLE_DECLARATION",
4611 ## "declaring multiple variables together should be avoided\n" . $herecurr);
4615 #need space before brace following if, while, etc
4616 if (($line =~ /\(.*\)\{/ && $line !~ /\($Type\)\{/) ||
4617 $line =~ /\b(?:else|do)\{/) {
4618 if (ERROR("SPACING",
4619 "space required before the open brace '{'\n" . $herecurr) &&
4621 $fixed[$fixlinenr] =~ s/^(\+.*(?:do|else|\)))\{/$1 {/;
4625 ## # check for blank lines before declarations
4626 ## if ($line =~ /^.\t+$Type\s+$Ident(?:\s*=.*)?;/ &&
4627 ## $prevrawline =~ /^.\s*$/) {
4629 ## "No blank lines before declarations\n" . $hereprev);
4633 # closing brace should have a space following it when it has anything
4635 if ($line =~ /}(?!(?:,|;|\)))\S/) {
4636 if (ERROR("SPACING",
4637 "space required after that close brace '}'\n" . $herecurr) &&
4639 $fixed[$fixlinenr] =~
4640 s/}((?!(?:,|;|\)))\S)/} $1/;
4644 # check spacing on square brackets
4645 if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
4646 if (ERROR("SPACING",
4647 "space prohibited after that open square bracket '['\n" . $herecurr) &&
4649 $fixed[$fixlinenr] =~
4653 if ($line =~ /\s\]/) {
4654 if (ERROR("SPACING",
4655 "space prohibited before that close square bracket ']'\n" . $herecurr) &&
4657 $fixed[$fixlinenr] =~
4662 # check spacing on parentheses
4663 if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
4664 $line !~ /for\s*\(\s+;/) {
4665 if (ERROR("SPACING",
4666 "space prohibited after that open parenthesis '('\n" . $herecurr) &&
4668 $fixed[$fixlinenr] =~
4672 if ($line =~ /(\s+)\)/ && $line !~ /^.\s*\)/ &&
4673 $line !~ /for\s*\(.*;\s+\)/ &&
4674 $line !~ /:\s+\)/) {
4675 if (ERROR("SPACING",
4676 "space prohibited before that close parenthesis ')'\n" . $herecurr) &&
4678 $fixed[$fixlinenr] =~
4683 # check unnecessary parentheses around addressof/dereference single $Lvals
4684 # ie: &(foo->bar) should be &foo->bar and *(foo->bar) should be *foo->bar
4686 while ($line =~ /(?:[^&]&\s*|\*)\(\s*($Ident\s*(?:$Member\s*)+)\s*\)/g) {
4688 if (CHK("UNNECESSARY_PARENTHESES",
4689 "Unnecessary parentheses around $var\n" . $herecurr) &&
4691 $fixed[$fixlinenr] =~ s/\(\s*\Q$var\E\s*\)/$var/;
4695 # check for unnecessary parentheses around function pointer uses
4696 # ie: (foo->bar)(); should be foo->bar();
4697 # but not "if (foo->bar) (" to avoid some false positives
4698 if ($line =~ /(\bif\s*|)(\(\s*$Ident\s*(?:$Member\s*)+\))[ \t]*\(/ && $1 !~ /^if/) {
4700 if (CHK("UNNECESSARY_PARENTHESES",
4701 "Unnecessary parentheses around function pointer $var\n" . $herecurr) &&
4703 my $var2 = deparenthesize($var);
4705 $fixed[$fixlinenr] =~ s/\Q$var\E/$var2/;
4709 # check for unnecessary parentheses around comparisons in if uses
4710 # when !drivers/staging or command-line uses --strict
4711 if (($realfile !~ m@^(?:drivers/staging/)@ || $check_orig) &&
4712 $perl_version_ok && defined($stat) &&
4713 $stat =~ /(^.\s*if\s*($balanced_parens))/) {
4715 my $test = substr($2, 1, -1);
4717 while ($test =~ /(?:^|[^\w\&\!\~])+\s*\(\s*([\&\!\~]?\s*$Lval\s*(?:$Compare\s*$FuncArg)?)\s*\)/g) {
4719 # avoid parentheses around potential macro args
4720 next if ($match =~ /^\s*\w+\s*$/);
4721 if (!defined($herectx)) {
4722 $herectx = $here . "\n";
4723 my $cnt = statement_rawlines($if_stat);
4724 for (my $n = 0; $n < $cnt; $n++) {
4725 my $rl = raw_line($linenr, $n);
4726 $herectx .= $rl . "\n";
4727 last if $rl =~ /^[ \+].*\{/;
4730 CHK("UNNECESSARY_PARENTHESES",
4731 "Unnecessary parentheses around '$match'\n" . $herectx);
4735 #goto labels aren't indented, allow a single space however
4736 if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
4737 !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
4738 if (WARN("INDENTED_LABEL",
4739 "labels should not be indented\n" . $herecurr) &&
4741 $fixed[$fixlinenr] =~
4746 # return is not a function
4747 if (defined($stat) && $stat =~ /^.\s*return(\s*)\(/s) {
4749 if ($perl_version_ok &&
4750 $stat =~ /^.\s*return\s*($balanced_parens)\s*;\s*$/) {
4752 $value = deparenthesize($value);
4753 if ($value =~ m/^\s*$FuncArg\s*(?:\?|$)/) {
4754 ERROR("RETURN_PARENTHESES",
4755 "return is not a function, parentheses are not required\n" . $herecurr);
4757 } elsif ($spacing !~ /\s+/) {
4759 "space required before the open parenthesis '('\n" . $herecurr);
4763 # unnecessary return in a void function
4764 # at end-of-function, with the previous line a single leading tab, then return;
4765 # and the line before that not a goto label target like "out:"
4766 if ($sline =~ /^[ \+]}\s*$/ &&
4767 $prevline =~ /^\+\treturn\s*;\s*$/ &&
4769 $lines[$linenr - 3] =~ /^[ +]/ &&
4770 $lines[$linenr - 3] !~ /^[ +]\s*$Ident\s*:/) {
4772 "void function return statements are not generally useful\n" . $hereprev);
4775 # if statements using unnecessary parentheses - ie: if ((foo == bar))
4776 if ($perl_version_ok &&
4777 $line =~ /\bif\s*((?:\(\s*){2,})/) {
4778 my $openparens = $1;
4779 my $count = $openparens =~ tr@\(@\(@;
4781 if ($line =~ /\bif\s*(?:\(\s*){$count,$count}$LvalOrFunc\s*($Compare)\s*$LvalOrFunc(?:\s*\)){$count,$count}/) {
4782 my $comp = $4; #Not $1 because of $LvalOrFunc
4783 $msg = " - maybe == should be = ?" if ($comp eq "==");
4784 WARN("UNNECESSARY_PARENTHESES",
4785 "Unnecessary parentheses$msg\n" . $herecurr);
4789 # comparisons with a constant or upper case identifier on the left
4790 # avoid cases like "foo + BAR < baz"
4791 # only fix matches surrounded by parentheses to avoid incorrect
4792 # conversions like "FOO < baz() + 5" being "misfixed" to "baz() > FOO + 5"
4793 if ($perl_version_ok &&
4794 $line =~ /^\+(.*)\b($Constant|[A-Z_][A-Z0-9_]*)\s*($Compare)\s*($LvalOrFunc)/) {
4799 my $newcomp = $comp;
4800 if ($lead !~ /(?:$Operators|\.)\s*$/ &&
4801 $to !~ /^(?:Constant|[A-Z_][A-Z0-9_]*)$/ &&
4802 WARN("CONSTANT_COMPARISON",
4803 "Comparisons should place the constant on the right side of the test\n" . $herecurr) &&
4807 } elsif ($comp eq "<=") {
4809 } elsif ($comp eq ">") {
4811 } elsif ($comp eq ">=") {
4814 $fixed[$fixlinenr] =~ s/\(\s*\Q$const\E\s*$Compare\s*\Q$to\E\s*\)/($to $newcomp $const)/;
4818 # Return of what appears to be an errno should normally be negative
4819 if ($sline =~ /\breturn(?:\s*\(+\s*|\s+)(E[A-Z]+)(?:\s*\)+\s*|\s*)[;:,]/) {
4821 if ($name ne 'EOF' && $name ne 'ERROR') {
4822 WARN("USE_NEGATIVE_ERRNO",
4823 "return of an errno should typically be negative (ie: return -$1)\n" . $herecurr);
4827 # Need a space before open parenthesis after if, while etc
4828 if ($line =~ /\b(if|while|for|switch)\(/) {
4829 if (ERROR("SPACING",
4830 "space required before the open parenthesis '('\n" . $herecurr) &&
4832 $fixed[$fixlinenr] =~
4833 s/\b(if|while|for|switch)\(/$1 \(/;
4837 # Check for illegal assignment in if conditional -- and check for trailing
4838 # statements after the conditional.
4839 if ($line =~ /do\s*(?!{)/) {
4840 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
4841 ctx_statement_block($linenr, $realcnt, 0)
4842 if (!defined $stat);
4843 my ($stat_next) = ctx_statement_block($line_nr_next,
4844 $remain_next, $off_next);
4845 $stat_next =~ s/\n./\n /g;
4846 ##print "stat<$stat> stat_next<$stat_next>\n";
4848 if ($stat_next =~ /^\s*while\b/) {
4849 # If the statement carries leading newlines,
4850 # then count those as offsets.
4852 ($stat_next =~ /^((?:\s*\n[+-])*\s*)/s);
4854 statement_rawlines($whitespace) - 1;
4856 $suppress_whiletrailers{$line_nr_next +
4860 if (!defined $suppress_whiletrailers{$linenr} &&
4861 defined($stat) && defined($cond) &&
4862 $line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) {
4863 my ($s, $c) = ($stat, $cond);
4865 if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/s) {
4866 ERROR("ASSIGN_IN_IF",
4867 "do not use assignment in if condition\n" . $herecurr);
4870 # Find out what is on the end of the line after the
4872 substr($s, 0, length($c), '');
4874 $s =~ s/$;//g; # Remove any comments
4875 if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ &&
4876 $c !~ /}\s*while\s*/)
4878 # Find out how long the conditional actually is.
4879 my @newlines = ($c =~ /\n/gs);
4880 my $cond_lines = 1 + $#newlines;
4883 $stat_real = raw_line($linenr, $cond_lines)
4884 . "\n" if ($cond_lines);
4885 if (defined($stat_real) && $cond_lines > 1) {
4886 $stat_real = "[...]\n$stat_real";
4889 ERROR("TRAILING_STATEMENTS",
4890 "trailing statements should be on next line\n" . $herecurr . $stat_real);
4894 # Check for bitwise tests written as boolean
4906 WARN("HEXADECIMAL_BOOLEAN_TEST",
4907 "boolean test with hexadecimal, perhaps just 1 \& or \|?\n" . $herecurr);
4910 # if and else should not have general statements after it
4911 if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/) {
4913 $s =~ s/$;//g; # Remove any comments
4914 if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) {
4915 ERROR("TRAILING_STATEMENTS",
4916 "trailing statements should be on next line\n" . $herecurr);
4919 # if should not continue a brace
4920 if ($line =~ /}\s*if\b/) {
4921 ERROR("TRAILING_STATEMENTS",
4922 "trailing statements should be on next line (or did you mean 'else if'?)\n" .
4925 # case and default should not have general statements after them
4926 if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
4928 (?:\s*$;*)(?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$|
4932 ERROR("TRAILING_STATEMENTS",
4933 "trailing statements should be on next line\n" . $herecurr);
4936 # Check for }<nl>else {, these must be at the same
4937 # indent level to be relevant to each other.
4938 if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ &&
4939 $previndent == $indent) {
4940 if (ERROR("ELSE_AFTER_BRACE",
4941 "else should follow close brace '}'\n" . $hereprev) &&
4942 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
4943 fix_delete_line($fixlinenr - 1, $prevrawline);
4944 fix_delete_line($fixlinenr, $rawline);
4945 my $fixedline = $prevrawline;
4946 $fixedline =~ s/}\s*$//;
4947 if ($fixedline !~ /^\+\s*$/) {
4948 fix_insert_line($fixlinenr, $fixedline);
4950 $fixedline = $rawline;
4951 $fixedline =~ s/^(.\s*)else/$1} else/;
4952 fix_insert_line($fixlinenr, $fixedline);
4956 if ($prevline=~/}\s*$/ and $line=~/^.\s*while\s*/ &&
4957 $previndent == $indent) {
4958 my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0);
4960 # Find out what is on the end of the line after the
4962 substr($s, 0, length($c), '');
4965 if ($s =~ /^\s*;/) {
4966 if (ERROR("WHILE_AFTER_BRACE",
4967 "while should follow close brace '}'\n" . $hereprev) &&
4968 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
4969 fix_delete_line($fixlinenr - 1, $prevrawline);
4970 fix_delete_line($fixlinenr, $rawline);
4971 my $fixedline = $prevrawline;
4972 my $trailing = $rawline;
4973 $trailing =~ s/^\+//;
4974 $trailing = trim($trailing);
4975 $fixedline =~ s/}\s*$/} $trailing/;
4976 fix_insert_line($fixlinenr, $fixedline);
4981 #Specific variable tests
4982 while ($line =~ m{($Constant|$Lval)}g) {
4985 #gcc binary extension
4986 if ($var =~ /^$Binary$/) {
4987 if (WARN("GCC_BINARY_CONSTANT",
4988 "Avoid gcc v4.3+ binary constant extension: <$var>\n" . $herecurr) &&
4990 my $hexval = sprintf("0x%x", oct($var));
4991 $fixed[$fixlinenr] =~
4992 s/\b$var\b/$hexval/;
4997 if ($var !~ /^$Constant$/ &&
4998 $var =~ /[A-Z][a-z]|[a-z][A-Z]/ &&
4999 #Ignore Page<foo> variants
5000 $var !~ /^(?:Clear|Set|TestClear|TestSet|)Page[A-Z]/ &&
5001 #Ignore SI style variants like nS, mV and dB (ie: max_uV, regulator_min_uA_show)
5002 $var !~ /^(?:[a-z_]*?)_?[a-z][A-Z](?:_[a-z_]+)?$/ &&
5003 #Ignore some three character SI units explicitly, like MiB and KHz
5004 $var !~ /^(?:[a-z_]*?)_?(?:[KMGT]iB|[KMGT]?Hz)(?:_[a-z_]+)?$/) {
5005 while ($var =~ m{($Ident)}g) {
5007 next if ($word !~ /[A-Z][a-z]|[a-z][A-Z]/);
5009 seed_camelcase_includes();
5010 if (!$file && !$camelcase_file_seeded) {
5011 seed_camelcase_file($realfile);
5012 $camelcase_file_seeded = 1;
5015 if (!defined $camelcase{$word}) {
5016 $camelcase{$word} = 1;
5018 "Avoid CamelCase: <$word>\n" . $herecurr);
5024 #no spaces allowed after \ in define
5025 if ($line =~ /\#\s*define.*\\\s+$/) {
5026 if (WARN("WHITESPACE_AFTER_LINE_CONTINUATION",
5027 "Whitespace after \\ makes next lines useless\n" . $herecurr) &&
5029 $fixed[$fixlinenr] =~ s/\s+$//;
5033 # warn if <asm/foo.h> is #included and <linux/foo.h> is available and includes
5034 # itself <asm/foo.h> (uses RAW line)
5035 if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) {
5037 my $checkfile = "include/linux/$file";
5038 if (-f "$root/$checkfile" &&
5039 $realfile ne $checkfile &&
5040 $1 !~ /$allowed_asm_includes/)
5042 my $asminclude = `grep -Ec "#include\\s+<asm/$file>" $root/$checkfile`;
5043 if ($asminclude > 0) {
5044 if ($realfile =~ m{^arch/}) {
5045 CHK("ARCH_INCLUDE_LINUX",
5046 "Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
5048 WARN("INCLUDE_LINUX",
5049 "Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
5055 # multi-statement macros should be enclosed in a do while loop, grab the
5056 # first statement and ensure its the whole macro if its not enclosed
5057 # in a known good container
5058 if ($realfile !~ m@/vmlinux.lds.h$@ &&
5059 $line =~ /^.\s*\#\s*define\s*$Ident(\()?/) {
5062 my ($off, $dstat, $dcond, $rest);
5064 my $has_flow_statement = 0;
5065 my $has_arg_concat = 0;
5066 ($dstat, $dcond, $ln, $cnt, $off) =
5067 ctx_statement_block($linenr, $realcnt, 0);
5069 #print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n";
5070 #print "LINE<$lines[$ln-1]> len<" . length($lines[$ln-1]) . "\n";
5072 $has_flow_statement = 1 if ($ctx =~ /\b(goto|return)\b/);
5073 $has_arg_concat = 1 if ($ctx =~ /\#\#/ && $ctx !~ /\#\#\s*(?:__VA_ARGS__|args)\b/);
5075 $dstat =~ s/^.\s*\#\s*define\s+$Ident(\([^\)]*\))?\s*//;
5076 my $define_args = $1;
5077 my $define_stmt = $dstat;
5080 if (defined $define_args && $define_args ne "") {
5081 $define_args = substr($define_args, 1, length($define_args) - 2);
5082 $define_args =~ s/\s*//g;
5083 $define_args =~ s/\\\+?//g;
5084 @def_args = split(",", $define_args);
5088 $dstat =~ s/\\\n.//g;
5089 $dstat =~ s/^\s*//s;
5090 $dstat =~ s/\s*$//s;
5092 # Flatten any parentheses and braces
5093 while ($dstat =~ s/\([^\(\)]*\)/1/ ||
5094 $dstat =~ s/\{[^\{\}]*\}/1/ ||
5095 $dstat =~ s/.\[[^\[\]]*\]/1/)
5099 # Flatten any obvious string concatentation.
5100 while ($dstat =~ s/($String)\s*$Ident/$1/ ||
5101 $dstat =~ s/$Ident\s*($String)/$1/)
5105 # Make asm volatile uses seem like a generic function
5106 $dstat =~ s/\b_*asm_*\s+_*volatile_*\b/asm_volatile/g;
5108 my $exceptions = qr{
5121 #print "REST<$rest> dstat<$dstat> ctx<$ctx>\n";
5124 my $stmt_cnt = statement_rawlines($ctx);
5125 my $herectx = get_stat_here($linenr, $stmt_cnt, $here);
5128 $dstat !~ /^(?:$Ident|-?$Constant),$/ && # 10, // foo(),
5129 $dstat !~ /^(?:$Ident|-?$Constant);$/ && # foo();
5130 $dstat !~ /^[!~-]?(?:$Lval|$Constant)$/ && # 10 // foo() // !foo // ~foo // -foo // foo->bar // foo.bar->baz
5131 $dstat !~ /^'X'$/ && $dstat !~ /^'XX'$/ && # character constants
5132 $dstat !~ /$exceptions/ &&
5133 $dstat !~ /^\.$Ident\s*=/ && # .foo =
5134 $dstat !~ /^(?:\#\s*$Ident|\#\s*$Constant)\s*$/ && # stringification #foo
5135 $dstat !~ /^do\s*$Constant\s*while\s*$Constant;?$/ && # do {...} while (...); // do {...} while (...)
5136 $dstat !~ /^for\s*$Constant$/ && # for (...)
5137 $dstat !~ /^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ && # for (...) bar()
5138 $dstat !~ /^do\s*{/ && # do {...
5139 $dstat !~ /^\(\{/ && # ({...
5140 $ctx !~ /^.\s*#\s*define\s+TRACE_(?:SYSTEM|INCLUDE_FILE|INCLUDE_PATH)\b/)
5142 if ($dstat =~ /^\s*if\b/) {
5143 ERROR("MULTISTATEMENT_MACRO_USE_DO_WHILE",
5144 "Macros starting with if should be enclosed by a do - while loop to avoid possible if/else logic defects\n" . "$herectx");
5145 } elsif ($dstat =~ /;/) {
5146 ERROR("MULTISTATEMENT_MACRO_USE_DO_WHILE",
5147 "Macros with multiple statements should be enclosed in a do - while loop\n" . "$herectx");
5149 ERROR("COMPLEX_MACRO",
5150 "Macros with complex values should be enclosed in parentheses\n" . "$herectx");
5155 # Make $define_stmt single line, comment-free, etc
5156 my @stmt_array = split('\n', $define_stmt);
5159 foreach my $l (@stmt_array) {
5164 } elsif ($l =~ /^[\+ ]/) {
5165 $define_stmt .= substr($l, 1);
5168 $define_stmt =~ s/$;//g;
5169 $define_stmt =~ s/\s+/ /g;
5170 $define_stmt = trim($define_stmt);
5172 # check if any macro arguments are reused (ignore '...' and 'type')
5173 foreach my $arg (@def_args) {
5174 next if ($arg =~ /\.\.\./);
5175 next if ($arg =~ /^type$/i);
5176 my $tmp_stmt = $define_stmt;
5177 $tmp_stmt =~ s/\b(typeof|__typeof__|__builtin\w+|typecheck\s*\(\s*$Type\s*,|\#+)\s*\(*\s*$arg\s*\)*\b//g;
5178 $tmp_stmt =~ s/\#+\s*$arg\b//g;
5179 $tmp_stmt =~ s/\b$arg\s*\#\#//g;
5180 my $use_cnt = () = $tmp_stmt =~ /\b$arg\b/g;
5182 CHK("MACRO_ARG_REUSE",
5183 "Macro argument reuse '$arg' - possible side-effects?\n" . "$herectx");
5185 # check if any macro arguments may have other precedence issues
5186 if ($tmp_stmt =~ m/($Operators)?\s*\b$arg\b\s*($Operators)?/m &&
5187 ((defined($1) && $1 ne ',') ||
5188 (defined($2) && $2 ne ','))) {
5189 CHK("MACRO_ARG_PRECEDENCE",
5190 "Macro argument '$arg' may be better as '($arg)' to avoid precedence issues\n" . "$herectx");
5194 # check for macros with flow control, but without ## concatenation
5195 # ## concatenation is commonly a macro that defines a function so ignore those
5196 if ($has_flow_statement && !$has_arg_concat) {
5197 my $cnt = statement_rawlines($ctx);
5198 my $herectx = get_stat_here($linenr, $cnt, $here);
5200 WARN("MACRO_WITH_FLOW_CONTROL",
5201 "Macros with flow control statements should be avoided\n" . "$herectx");
5204 # check for line continuations outside of #defines, preprocessor #, and asm
5207 if ($prevline !~ /^..*\\$/ &&
5208 $line !~ /^\+\s*\#.*\\$/ && # preprocessor
5209 $line !~ /^\+.*\b(__asm__|asm)\b.*\\$/ && # asm
5210 $line =~ /^\+.*\\$/) {
5211 WARN("LINE_CONTINUATIONS",
5212 "Avoid unnecessary line continuations\n" . $herecurr);
5216 # do {} while (0) macro tests:
5217 # single-statement macros do not need to be enclosed in do while (0) loop,
5218 # macro should not end with a semicolon
5219 if ($perl_version_ok &&
5220 $realfile !~ m@/vmlinux.lds.h$@ &&
5221 $line =~ /^.\s*\#\s*define\s+$Ident(\()?/) {
5224 my ($off, $dstat, $dcond, $rest);
5226 ($dstat, $dcond, $ln, $cnt, $off) =
5227 ctx_statement_block($linenr, $realcnt, 0);
5230 $dstat =~ s/\\\n.//g;
5233 if ($dstat =~ /^\+\s*#\s*define\s+$Ident\s*${balanced_parens}\s*do\s*{(.*)\s*}\s*while\s*\(\s*0\s*\)\s*([;\s]*)\s*$/) {
5238 my $cnt = statement_rawlines($ctx);
5239 my $herectx = get_stat_here($linenr, $cnt, $here);
5241 if (($stmts =~ tr/;/;/) == 1 &&
5242 $stmts !~ /^\s*(if|while|for|switch)\b/) {
5243 WARN("SINGLE_STATEMENT_DO_WHILE_MACRO",
5244 "Single statement macros should not use a do {} while (0) loop\n" . "$herectx");
5246 if (defined $semis && $semis ne "") {
5247 WARN("DO_WHILE_MACRO_WITH_TRAILING_SEMICOLON",
5248 "do {} while (0) macros should not be semicolon terminated\n" . "$herectx");
5250 } elsif ($dstat =~ /^\+\s*#\s*define\s+$Ident.*;\s*$/) {
5252 my $cnt = statement_rawlines($ctx);
5253 my $herectx = get_stat_here($linenr, $cnt, $here);
5255 WARN("TRAILING_SEMICOLON",
5256 "macros should not use a trailing semicolon\n" . "$herectx");
5260 # check for redundant bracing round if etc
5261 if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) {
5262 my ($level, $endln, @chunks) =
5263 ctx_statement_full($linenr, $realcnt, 1);
5264 #print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n";
5265 #print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n";
5266 if ($#chunks > 0 && $level == 0) {
5270 my $herectx = $here . "\n";
5271 my $ln = $linenr - 1;
5272 for my $chunk (@chunks) {
5273 my ($cond, $block) = @{$chunk};
5275 # If the condition carries leading newlines, then count those as offsets.
5276 my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s);
5277 my $offset = statement_rawlines($whitespace) - 1;
5279 $allowed[$allow] = 0;
5280 #print "COND<$cond> whitespace<$whitespace> offset<$offset>\n";
5282 # We have looked at and allowed this specific line.
5283 $suppress_ifbraces{$ln + $offset} = 1;
5285 $herectx .= "$rawlines[$ln + $offset]\n[...]\n";
5286 $ln += statement_rawlines($block) - 1;
5288 substr($block, 0, length($cond), '');
5290 $seen++ if ($block =~ /^\s*{/);
5292 #print "cond<$cond> block<$block> allowed<$allowed[$allow]>\n";
5293 if (statement_lines($cond) > 1) {
5294 #print "APW: ALLOWED: cond<$cond>\n";
5295 $allowed[$allow] = 1;
5297 if ($block =~/\b(?:if|for|while)\b/) {
5298 #print "APW: ALLOWED: block<$block>\n";
5299 $allowed[$allow] = 1;
5301 if (statement_block_size($block) > 1) {
5302 #print "APW: ALLOWED: lines block<$block>\n";
5303 $allowed[$allow] = 1;
5308 my $sum_allowed = 0;
5309 foreach (@allowed) {
5312 if ($sum_allowed == 0) {
5314 "braces {} are not necessary for any arm of this statement\n" . $herectx);
5315 } elsif ($sum_allowed != $allow &&
5318 "braces {} should be used on all arms of this statement\n" . $herectx);
5323 if (!defined $suppress_ifbraces{$linenr - 1} &&
5324 $line =~ /\b(if|while|for|else)\b/) {
5327 # Check the pre-context.
5328 if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) {
5329 #print "APW: ALLOWED: pre<$1>\n";
5333 my ($level, $endln, @chunks) =
5334 ctx_statement_full($linenr, $realcnt, $-[0]);
5336 # Check the condition.
5337 my ($cond, $block) = @{$chunks[0]};
5338 #print "CHECKING<$linenr> cond<$cond> block<$block>\n";
5339 if (defined $cond) {
5340 substr($block, 0, length($cond), '');
5342 if (statement_lines($cond) > 1) {
5343 #print "APW: ALLOWED: cond<$cond>\n";
5346 if ($block =~/\b(?:if|for|while)\b/) {
5347 #print "APW: ALLOWED: block<$block>\n";
5350 if (statement_block_size($block) > 1) {
5351 #print "APW: ALLOWED: lines block<$block>\n";
5354 # Check the post-context.
5355 if (defined $chunks[1]) {
5356 my ($cond, $block) = @{$chunks[1]};
5357 if (defined $cond) {
5358 substr($block, 0, length($cond), '');
5360 if ($block =~ /^\s*\{/) {
5361 #print "APW: ALLOWED: chunk-1 block<$block>\n";
5365 if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
5366 my $cnt = statement_rawlines($block);
5367 my $herectx = get_stat_here($linenr, $cnt, $here);
5370 "braces {} are not necessary for single statement blocks\n" . $herectx);
5374 # check for single line unbalanced braces
5375 if ($sline =~ /^.\s*\}\s*else\s*$/ ||
5376 $sline =~ /^.\s*else\s*\{\s*$/) {
5377 CHK("BRACES", "Unbalanced braces around else statement\n" . $herecurr);
5380 # check for unnecessary blank lines around braces
5381 if (($line =~ /^.\s*}\s*$/ && $prevrawline =~ /^.\s*$/)) {
5383 "Blank lines aren't necessary before a close brace '}'\n" . $hereprev) &&
5384 $fix && $prevrawline =~ /^\+/) {
5385 fix_delete_line($fixlinenr - 1, $prevrawline);
5388 if (($rawline =~ /^.\s*$/ && $prevline =~ /^..*{\s*$/)) {
5390 "Blank lines aren't necessary after an open brace '{'\n" . $hereprev) &&
5392 fix_delete_line($fixlinenr, $rawline);
5396 # no volatiles please
5397 my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
5398 if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
5400 "Use of volatile is usually wrong: see Documentation/process/volatile-considered-harmful.rst\n" . $herecurr);
5403 # Check for user-visible strings broken across lines, which breaks the ability
5404 # to grep for the string. Make exceptions when the previous string ends in a
5405 # newline (multiple lines in one string constant) or '\t', '\r', ';', or '{'
5406 # (common in inline assembly) or is a octal \123 or hexadecimal \xaf value
5407 if ($line =~ /^\+\s*$String/ &&
5408 $prevline =~ /"\s*$/ &&
5409 $prevrawline !~ /(?:\\(?:[ntr]|[0-7]{1,3}|x[0-9a-fA-F]{1,2})|;\s*|\{\s*)"\s*$/) {
5410 if (WARN("SPLIT_STRING",
5411 "quoted string split across lines\n" . $hereprev) &&
5413 $prevrawline =~ /^\+.*"\s*$/ &&
5414 $last_coalesced_string_linenr != $linenr - 1) {
5415 my $extracted_string = get_quoted_string($line, $rawline);
5416 my $comma_close = "";
5417 if ($rawline =~ /\Q$extracted_string\E(\s*\)\s*;\s*$|\s*,\s*)/) {
5421 fix_delete_line($fixlinenr - 1, $prevrawline);
5422 fix_delete_line($fixlinenr, $rawline);
5423 my $fixedline = $prevrawline;
5424 $fixedline =~ s/"\s*$//;
5425 $fixedline .= substr($extracted_string, 1) . trim($comma_close);
5426 fix_insert_line($fixlinenr - 1, $fixedline);
5427 $fixedline = $rawline;
5428 $fixedline =~ s/\Q$extracted_string\E\Q$comma_close\E//;
5429 if ($fixedline !~ /\+\s*$/) {
5430 fix_insert_line($fixlinenr, $fixedline);
5432 $last_coalesced_string_linenr = $linenr;
5436 # check for missing a space in a string concatenation
5437 if ($prevrawline =~ /[^\\]\w"$/ && $rawline =~ /^\+[\t ]+"\w/) {
5438 WARN('MISSING_SPACE',
5439 "break quoted strings at a space character\n" . $hereprev);
5442 # check for an embedded function name in a string when the function is known
5443 # This does not work very well for -f --file checking as it depends on patch
5444 # context providing the function name or a single line form for in-file
5445 # function declarations
5446 if ($line =~ /^\+.*$String/ &&
5447 defined($context_function) &&
5448 get_quoted_string($line, $rawline) =~ /\b$context_function\b/ &&
5449 length(get_quoted_string($line, $rawline)) != (length($context_function) + 2)) {
5450 WARN("EMBEDDED_FUNCTION_NAME",
5451 "Prefer using '\"%s...\", __func__' to using '$context_function', this function's name, in a string\n" . $herecurr);
5454 # check for spaces before a quoted newline
5455 if ($rawline =~ /^.*\".*\s\\n/) {
5456 if (WARN("QUOTED_WHITESPACE_BEFORE_NEWLINE",
5457 "unnecessary whitespace before a quoted newline\n" . $herecurr) &&
5459 $fixed[$fixlinenr] =~ s/^(\+.*\".*)\s+\\n/$1\\n/;
5464 # concatenated string without spaces between elements
5465 if ($line =~ /$String[A-Za-z0-9_]/ || $line =~ /[A-Za-z0-9_]$String/) {
5466 if (CHK("CONCATENATED_STRING",
5467 "Concatenated strings should use spaces between elements\n" . $herecurr) &&
5469 while ($line =~ /($String)/g) {
5470 my $extracted_string = substr($rawline, $-[0], $+[0] - $-[0]);
5471 $fixed[$fixlinenr] =~ s/\Q$extracted_string\E([A-Za-z0-9_])/$extracted_string $1/;
5472 $fixed[$fixlinenr] =~ s/([A-Za-z0-9_])\Q$extracted_string\E/$1 $extracted_string/;
5477 # uncoalesced string fragments
5478 if ($line =~ /$String\s*"/) {
5479 if (WARN("STRING_FRAGMENTS",
5480 "Consecutive strings are generally better as a single string\n" . $herecurr) &&
5482 while ($line =~ /($String)(?=\s*")/g) {
5483 my $extracted_string = substr($rawline, $-[0], $+[0] - $-[0]);
5484 $fixed[$fixlinenr] =~ s/\Q$extracted_string\E\s*"/substr($extracted_string, 0, -1)/e;
5489 # check for non-standard and hex prefixed decimal printf formats
5490 my $show_L = 1; #don't show the same defect twice
5492 while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) {
5493 my $string = substr($rawline, $-[1], $+[1] - $-[1]);
5494 $string =~ s/%%/__/g;
5496 if ($show_L && $string =~ /%[\*\d\.\$]*L([diouxX])/) {
5498 "\%L$1 is non-standard C, use %ll$1\n" . $herecurr);
5502 if ($show_Z && $string =~ /%[\*\d\.\$]*Z([diouxX])/) {
5504 "%Z$1 is non-standard C, use %z$1\n" . $herecurr);
5507 # check for 0x<decimal>
5508 if ($string =~ /0x%[\*\d\.\$\Llzth]*[diou]/) {
5509 ERROR("PRINTF_0XDECIMAL",
5510 "Prefixing 0x with decimal output is defective\n" . $herecurr);
5514 # check for line continuations in quoted strings with odd counts of "
5515 if ($rawline =~ /\\$/ && $sline =~ tr/"/"/ % 2) {
5516 WARN("LINE_CONTINUATIONS",
5517 "Avoid line continuations in quoted strings\n" . $herecurr);
5521 if ($line =~ /^.\s*\#\s*if\s+0\b/) {
5523 "Consider removing the code enclosed by this #if 0 and its #endif\n" . $herecurr);
5527 if ($line =~ /^.\s*\#\s*if\s+1\b/) {
5529 "Consider removing the #if 1 and its #endif\n" . $herecurr);
5532 # check for needless "if (<foo>) fn(<foo>)" uses
5533 if ($prevline =~ /\bif\s*\(\s*($Lval)\s*\)/) {
5534 my $tested = quotemeta($1);
5535 my $expr = '\s*\(\s*' . $tested . '\s*\)\s*;';
5536 if ($line =~ /\b(kfree|usb_free_urb|debugfs_remove(?:_recursive)?|(?:kmem_cache|mempool|dma_pool)_destroy)$expr/) {
5538 if (WARN('NEEDLESS_IF',
5539 "$func(NULL) is safe and this check is probably not required\n" . $hereprev) &&
5542 my $leading_tabs = "";
5543 my $new_leading_tabs = "";
5544 if ($lines[$linenr - 2] =~ /^\+(\t*)if\s*\(\s*$tested\s*\)\s*$/) {
5549 if ($lines[$linenr - 1] =~ /^\+(\t+)$func\s*\(\s*$tested\s*\)\s*;\s*$/) {
5550 $new_leading_tabs = $1;
5551 if (length($leading_tabs) + 1 ne length($new_leading_tabs)) {
5558 fix_delete_line($fixlinenr - 1, $prevrawline);
5559 $fixed[$fixlinenr] =~ s/^\+$new_leading_tabs/\+$leading_tabs/;
5565 # check for unnecessary "Out of Memory" messages
5566 if ($line =~ /^\+.*\b$logFunctions\s*\(/ &&
5567 $prevline =~ /^[ \+]\s*if\s*\(\s*(\!\s*|NULL\s*==\s*)?($Lval)(\s*==\s*NULL\s*)?\s*\)/ &&
5568 (defined $1 || defined $3) &&
5571 my $testline = $lines[$linenr - 3];
5573 my ($s, $c) = ctx_statement_block($linenr - 3, $realcnt, 0);
5574 # print("line: <$line>\nprevline: <$prevline>\ns: <$s>\nc: <$c>\n\n\n");
5576 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)/) {
5578 "Possible unnecessary 'out of memory' message\n" . $hereprev);
5582 # check for logging functions with KERN_<LEVEL>
5583 if ($line !~ /printk(?:_ratelimited|_once)?\s*\(/ &&
5584 $line =~ /\b$logFunctions\s*\(.*\b(KERN_[A-Z]+)\b/) {
5586 if (WARN("UNNECESSARY_KERN_LEVEL",
5587 "Possible unnecessary $level\n" . $herecurr) &&
5589 $fixed[$fixlinenr] =~ s/\s*$level\s*//;
5593 # check for logging continuations
5594 if ($line =~ /\bprintk\s*\(\s*KERN_CONT\b|\bpr_cont\s*\(/) {
5595 WARN("LOGGING_CONTINUATION",
5596 "Avoid logging continuation uses where feasible\n" . $herecurr);
5599 # check for mask then right shift without a parentheses
5600 if ($perl_version_ok &&
5601 $line =~ /$LvalOrFunc\s*\&\s*($LvalOrFunc)\s*>>/ &&
5602 $4 !~ /^\&/) { # $LvalOrFunc may be &foo, ignore if so
5603 WARN("MASK_THEN_SHIFT",
5604 "Possible precedence defect with mask then right shift - may need parentheses\n" . $herecurr);
5607 # check for pointer comparisons to NULL
5608 if ($perl_version_ok) {
5609 while ($line =~ /\b$LvalOrFunc\s*(==|\!=)\s*NULL\b/g) {
5612 $equal = "" if ($4 eq "!=");
5613 if (CHK("COMPARISON_TO_NULL",
5614 "Comparison to NULL could be written \"${equal}${val}\"\n" . $herecurr) &&
5616 $fixed[$fixlinenr] =~ s/\b\Q$val\E\s*(?:==|\!=)\s*NULL\b/$equal$val/;
5621 # check for bad placement of section $InitAttribute (e.g.: __initdata)
5622 if ($line =~ /(\b$InitAttribute\b)/) {
5624 if ($line =~ /^\+\s*static\s+(?:const\s+)?(?:$attr\s+)?($NonptrTypeWithAttr)\s+(?:$attr\s+)?($Ident(?:\[[^]]*\])?)\s*[=;]/) {
5627 if ((($ptr =~ /\b(union|struct)\s+$attr\b/ &&
5628 ERROR("MISPLACED_INIT",
5629 "$attr should be placed after $var\n" . $herecurr)) ||
5630 ($ptr !~ /\b(union|struct)\s+$attr\b/ &&
5631 WARN("MISPLACED_INIT",
5632 "$attr should be placed after $var\n" . $herecurr))) &&
5634 $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;
5639 # check for $InitAttributeData (ie: __initdata) with const
5640 if ($line =~ /\bconst\b/ && $line =~ /($InitAttributeData)/) {
5642 $attr =~ /($InitAttributePrefix)(.*)/;
5643 my $attr_prefix = $1;
5645 if (ERROR("INIT_ATTRIBUTE",
5646 "Use of const init definition must use ${attr_prefix}initconst\n" . $herecurr) &&
5648 $fixed[$fixlinenr] =~
5649 s/$InitAttributeData/${attr_prefix}initconst/;
5653 # check for $InitAttributeConst (ie: __initconst) without const
5654 if ($line !~ /\bconst\b/ && $line =~ /($InitAttributeConst)/) {
5656 if (ERROR("INIT_ATTRIBUTE",
5657 "Use of $attr requires a separate use of const\n" . $herecurr) &&
5659 my $lead = $fixed[$fixlinenr] =~
5660 /(^\+\s*(?:static\s+))/;
5662 $lead = "$lead " if ($lead !~ /^\+$/);
5663 $lead = "${lead}const ";
5664 $fixed[$fixlinenr] =~ s/(^\+\s*(?:static\s+))/$lead/;
5668 # check for __read_mostly with const non-pointer (should just be const)
5669 if ($line =~ /\b__read_mostly\b/ &&
5670 $line =~ /($Type)\s*$Ident/ && $1 !~ /\*\s*$/ && $1 =~ /\bconst\b/) {
5671 if (ERROR("CONST_READ_MOSTLY",
5672 "Invalid use of __read_mostly with const type\n" . $herecurr) &&
5674 $fixed[$fixlinenr] =~ s/\s+__read_mostly\b//;
5678 # don't use __constant_<foo> functions outside of include/uapi/
5679 if ($realfile !~ m@^include/uapi/@ &&
5680 $line =~ /(__constant_(?:htons|ntohs|[bl]e(?:16|32|64)_to_cpu|cpu_to_[bl]e(?:16|32|64)))\s*\(/) {
5681 my $constant_func = $1;
5682 my $func = $constant_func;
5683 $func =~ s/^__constant_//;
5684 if (WARN("CONSTANT_CONVERSION",
5685 "$constant_func should be $func\n" . $herecurr) &&
5687 $fixed[$fixlinenr] =~ s/\b$constant_func\b/$func/g;
5691 # prefer usleep_range over udelay
5692 if ($line =~ /\budelay\s*\(\s*(\d+)\s*\)/) {
5694 # ignore udelay's < 10, however
5695 if (! ($delay < 10) ) {
5697 "usleep_range is preferred over udelay; see Documentation/timers/timers-howto.txt\n" . $herecurr);
5699 if ($delay > 2000) {
5701 "long udelay - prefer mdelay; see arch/arm/include/asm/delay.h\n" . $herecurr);
5705 # warn about unexpectedly long msleep's
5706 if ($line =~ /\bmsleep\s*\((\d+)\);/) {
5709 "msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt\n" . $herecurr);
5713 # check for comparisons of jiffies
5714 if ($line =~ /\bjiffies\s*$Compare|$Compare\s*jiffies\b/) {
5715 WARN("JIFFIES_COMPARISON",
5716 "Comparing jiffies is almost always wrong; prefer time_after, time_before and friends\n" . $herecurr);
5719 # check for comparisons of get_jiffies_64()
5720 if ($line =~ /\bget_jiffies_64\s*\(\s*\)\s*$Compare|$Compare\s*get_jiffies_64\s*\(\s*\)/) {
5721 WARN("JIFFIES_COMPARISON",
5722 "Comparing get_jiffies_64() is almost always wrong; prefer time_after64, time_before64 and friends\n" . $herecurr);
5725 # warn about #ifdefs in C files
5726 # if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
5727 # print "#ifdef in C files should be avoided\n";
5728 # print "$herecurr";
5732 # warn about spacing in #ifdefs
5733 if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) {
5734 if (ERROR("SPACING",
5735 "exactly one space required after that #$1\n" . $herecurr) &&
5737 $fixed[$fixlinenr] =~
5738 s/^(.\s*\#\s*(ifdef|ifndef|elif))\s{2,}/$1 /;
5743 # check for spinlock_t definitions without a comment.
5744 if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ ||
5745 $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) {
5747 if (!ctx_has_comment($first_line, $linenr)) {
5748 CHK("UNCOMMENTED_DEFINITION",
5749 "$1 definition without comment\n" . $herecurr);
5752 # check for memory barriers without a comment.
5758 read_barrier_depends
5760 my $barrier_stems = qr{
5768 my $all_barriers = qr{
5770 smp_(?:$barrier_stems)|
5771 virt_(?:$barrier_stems)
5774 if ($line =~ /\b(?:$all_barriers)\s*\(/) {
5775 if (!ctx_has_comment($first_line, $linenr)) {
5776 WARN("MEMORY_BARRIER",
5777 "memory barrier without comment\n" . $herecurr);
5781 my $underscore_smp_barriers = qr{__smp_(?:$barrier_stems)}x;
5783 if ($realfile !~ m@^include/asm-generic/@ &&
5784 $realfile !~ m@/barrier\.h$@ &&
5785 $line =~ m/\b(?:$underscore_smp_barriers)\s*\(/ &&
5786 $line !~ m/^.\s*\#\s*define\s+(?:$underscore_smp_barriers)\s*\(/) {
5787 WARN("MEMORY_BARRIER",
5788 "__smp memory barriers shouldn't be used outside barrier.h and asm-generic\n" . $herecurr);
5791 # check for waitqueue_active without a comment.
5792 if ($line =~ /\bwaitqueue_active\s*\(/) {
5793 if (!ctx_has_comment($first_line, $linenr)) {
5794 WARN("WAITQUEUE_ACTIVE",
5795 "waitqueue_active without comment\n" . $herecurr);
5799 # check for smp_read_barrier_depends and read_barrier_depends
5800 if (!$file && $line =~ /\b(smp_|)read_barrier_depends\s*\(/) {
5801 WARN("READ_BARRIER_DEPENDS",
5802 "$1read_barrier_depends should only be used in READ_ONCE or DEC Alpha code\n" . $herecurr);
5805 # check of hardware specific defines
5806 if ($line =~ m@^.\s*\#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
5808 "architecture specific defines should be avoided\n" . $herecurr);
5811 # check that the storage class is not after a type
5812 if ($line =~ /\b($Type)\s+($Storage)\b/) {
5813 WARN("STORAGE_CLASS",
5814 "storage class '$2' should be located before type '$1'\n" . $herecurr);
5816 # Check that the storage class is at the beginning of a declaration
5817 if ($line =~ /\b$Storage\b/ &&
5818 $line !~ /^.\s*$Storage/ &&
5819 $line =~ /^.\s*(.+?)\$Storage\s/ &&
5820 $1 !~ /[\,\)]\s*$/) {
5821 WARN("STORAGE_CLASS",
5822 "storage class should be at the beginning of the declaration\n" . $herecurr);
5825 # check the location of the inline attribute, that it is between
5826 # storage class and type.
5827 if ($line =~ /\b$Type\s+$Inline\b/ ||
5828 $line =~ /\b$Inline\s+$Storage\b/) {
5829 ERROR("INLINE_LOCATION",
5830 "inline keyword should sit between storage class and type\n" . $herecurr);
5833 # Check for __inline__ and __inline, prefer inline
5834 if ($realfile !~ m@\binclude/uapi/@ &&
5835 $line =~ /\b(__inline__|__inline)\b/) {
5837 "plain inline is preferred over $1\n" . $herecurr) &&
5839 $fixed[$fixlinenr] =~ s/\b(__inline__|__inline)\b/inline/;
5844 # Check for __attribute__ packed, prefer __packed
5845 if ($realfile !~ m@\binclude/uapi/@ &&
5846 $line =~ /\b__attribute__\s*\(\s*\(.*\bpacked\b/) {
5847 WARN("PREFER_PACKED",
5848 "__packed is preferred over __attribute__((packed))\n" . $herecurr);
5851 # Check for __attribute__ aligned, prefer __aligned
5852 if ($realfile !~ m@\binclude/uapi/@ &&
5853 $line =~ /\b__attribute__\s*\(\s*\(.*aligned/) {
5854 WARN("PREFER_ALIGNED",
5855 "__aligned(size) is preferred over __attribute__((aligned(size)))\n" . $herecurr);
5858 # Check for __attribute__ format(printf, prefer __printf
5859 if ($realfile !~ m@\binclude/uapi/@ &&
5860 $line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf/) {
5861 if (WARN("PREFER_PRINTF",
5862 "__printf(string-index, first-to-check) is preferred over __attribute__((format(printf, string-index, first-to-check)))\n" . $herecurr) &&
5864 $fixed[$fixlinenr] =~ s/\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf\s*,\s*(.*)\)\s*\)\s*\)/"__printf(" . trim($1) . ")"/ex;
5869 # Check for __attribute__ format(scanf, prefer __scanf
5870 if ($realfile !~ m@\binclude/uapi/@ &&
5871 $line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*scanf\b/) {
5872 if (WARN("PREFER_SCANF",
5873 "__scanf(string-index, first-to-check) is preferred over __attribute__((format(scanf, string-index, first-to-check)))\n" . $herecurr) &&
5875 $fixed[$fixlinenr] =~ s/\b__attribute__\s*\(\s*\(\s*format\s*\(\s*scanf\s*,\s*(.*)\)\s*\)\s*\)/"__scanf(" . trim($1) . ")"/ex;
5879 # Check for __attribute__ weak, or __weak declarations (may have link issues)
5880 if ($perl_version_ok &&
5881 $line =~ /(?:$Declare|$DeclareMisordered)\s*$Ident\s*$balanced_parens\s*(?:$Attribute)?\s*;/ &&
5882 ($line =~ /\b__attribute__\s*\(\s*\(.*\bweak\b/ ||
5883 $line =~ /\b__weak\b/)) {
5884 ERROR("WEAK_DECLARATION",
5885 "Using weak declarations can have unintended link defects\n" . $herecurr);
5888 # check for c99 types like uint8_t used outside of uapi/ and tools/
5889 if ($realfile !~ m@\binclude/uapi/@ &&
5890 $realfile !~ m@\btools/@ &&
5891 $line =~ /\b($Declare)\s*$Ident\s*[=;,\[]/) {
5893 if ($type =~ /\b($typeC99Typedefs)\b/) {
5895 my $kernel_type = 'u';
5896 $kernel_type = 's' if ($type =~ /^_*[si]/);
5899 if (CHK("PREFER_KERNEL_TYPES",
5900 "Prefer kernel type '$kernel_type' over '$type'\n" . $herecurr) &&
5902 $fixed[$fixlinenr] =~ s/\b$type\b/$kernel_type/;
5907 # check for cast of C90 native int or longer types constants
5908 if ($line =~ /(\(\s*$C90_int_types\s*\)\s*)($Constant)\b/) {
5911 if (WARN("TYPECAST_INT_CONSTANT",
5912 "Unnecessary typecast of c90 int constant\n" . $herecurr) &&
5915 my $newconst = $const;
5916 $newconst =~ s/${Int_type}$//;
5917 $suffix .= 'U' if ($cast =~ /\bunsigned\b/);
5918 if ($cast =~ /\blong\s+long\b/) {
5920 } elsif ($cast =~ /\blong\b/) {
5923 $fixed[$fixlinenr] =~ s/\Q$cast\E$const\b/$newconst$suffix/;
5927 # check for sizeof(&)
5928 if ($line =~ /\bsizeof\s*\(\s*\&/) {
5929 WARN("SIZEOF_ADDRESS",
5930 "sizeof(& should be avoided\n" . $herecurr);
5933 # check for sizeof without parenthesis
5934 if ($line =~ /\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/) {
5935 if (WARN("SIZEOF_PARENTHESIS",
5936 "sizeof $1 should be sizeof($1)\n" . $herecurr) &&
5938 $fixed[$fixlinenr] =~ s/\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/"sizeof(" . trim($1) . ")"/ex;
5942 # check for struct spinlock declarations
5943 if ($line =~ /^.\s*\bstruct\s+spinlock\s+\w+\s*;/) {
5944 WARN("USE_SPINLOCK_T",
5945 "struct spinlock should be spinlock_t\n" . $herecurr);
5948 # check for seq_printf uses that could be seq_puts
5949 if ($sline =~ /\bseq_printf\s*\(.*"\s*\)\s*;\s*$/) {
5950 my $fmt = get_quoted_string($line, $rawline);
5953 if (WARN("PREFER_SEQ_PUTS",
5954 "Prefer seq_puts to seq_printf\n" . $herecurr) &&
5956 $fixed[$fixlinenr] =~ s/\bseq_printf\b/seq_puts/;
5961 # check for vsprintf extension %p<foo> misuses
5962 if ($perl_version_ok &&
5964 $stat =~ /^\+(?![^\{]*\{\s*).*\b(\w+)\s*\(.*$String\s*,/s &&
5965 $1 !~ /^_*volatile_*$/) {
5968 my $lc = $stat =~ tr@\n@@;
5969 $lc = $lc + $linenr;
5970 for (my $count = $linenr; $count <= $lc; $count++) {
5973 my $bad_specifier = "";
5974 my $fmt = get_quoted_string($lines[$count - 1], raw_line($count, 0));
5977 while ($fmt =~ /(\%[\*\d\.]*p(\w))/g) {
5980 if ($extension !~ /[SsBKRraEhMmIiUDdgVCbGNOx]/) {
5981 $bad_specifier = $specifier;
5984 if ($extension eq "x" && !defined($stat_real)) {
5985 if (!defined($stat_real)) {
5986 $stat_real = get_stat_real($linenr, $lc);
5988 WARN("VSPRINTF_SPECIFIER_PX",
5989 "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");
5992 if ($bad_specifier ne "") {
5993 my $stat_real = get_stat_real($linenr, $lc);
5994 my $ext_type = "Invalid";
5996 if ($bad_specifier =~ /p[Ff]/) {
5997 $ext_type = "Deprecated";
5998 $use = " - use %pS instead";
5999 $use =~ s/pS/ps/ if ($bad_specifier =~ /pf/);
6002 WARN("VSPRINTF_POINTER_EXTENSION",
6003 "$ext_type vsprintf pointer extension '$bad_specifier'$use\n" . "$here\n$stat_real\n");
6008 # Check for misused memsets
6009 if ($perl_version_ok &&
6011 $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*$FuncArg\s*\)/) {
6017 if ($ms_size =~ /^(0x|)0$/i) {
6019 "memset to 0's uses 0 as the 2nd argument, not the 3rd\n" . "$here\n$stat\n");
6020 } elsif ($ms_size =~ /^(0x|)1$/i) {
6022 "single byte memset is suspicious. Swapped 2nd/3rd argument?\n" . "$here\n$stat\n");
6026 # Check for memcpy(foo, bar, ETH_ALEN) that could be ether_addr_copy(foo, bar)
6027 # if ($perl_version_ok &&
6029 # $stat =~ /^\+(?:.*?)\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
6030 # if (WARN("PREFER_ETHER_ADDR_COPY",
6031 # "Prefer ether_addr_copy() over memcpy() if the Ethernet addresses are __aligned(2)\n" . "$here\n$stat\n") &&
6033 # $fixed[$fixlinenr] =~ s/\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/ether_addr_copy($2, $7)/;
6037 # Check for memcmp(foo, bar, ETH_ALEN) that could be ether_addr_equal*(foo, bar)
6038 # if ($perl_version_ok &&
6040 # $stat =~ /^\+(?:.*?)\bmemcmp\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
6041 # WARN("PREFER_ETHER_ADDR_EQUAL",
6042 # "Prefer ether_addr_equal() or ether_addr_equal_unaligned() over memcmp()\n" . "$here\n$stat\n")
6045 # check for memset(foo, 0x0, ETH_ALEN) that could be eth_zero_addr
6046 # check for memset(foo, 0xFF, ETH_ALEN) that could be eth_broadcast_addr
6047 # if ($perl_version_ok &&
6049 # $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
6053 # if ($ms_val =~ /^(?:0x|)0+$/i) {
6054 # if (WARN("PREFER_ETH_ZERO_ADDR",
6055 # "Prefer eth_zero_addr over memset()\n" . "$here\n$stat\n") &&
6057 # $fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_zero_addr($2)/;
6059 # } elsif ($ms_val =~ /^(?:0xff|255)$/i) {
6060 # if (WARN("PREFER_ETH_BROADCAST_ADDR",
6061 # "Prefer eth_broadcast_addr() over memset()\n" . "$here\n$stat\n") &&
6063 # $fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_broadcast_addr($2)/;
6068 # typecasts on min/max could be min_t/max_t
6069 if ($perl_version_ok &&
6071 $stat =~ /^\+(?:.*?)\b(min|max)\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\)/) {
6072 if (defined $2 || defined $7) {
6074 my $cast1 = deparenthesize($2);
6076 my $cast2 = deparenthesize($7);
6080 if ($cast1 ne "" && $cast2 ne "" && $cast1 ne $cast2) {
6081 $cast = "$cast1 or $cast2";
6082 } elsif ($cast1 ne "") {
6088 "$call() should probably be ${call}_t($cast, $arg1, $arg2)\n" . "$here\n$stat\n");
6092 # check usleep_range arguments
6093 if ($perl_version_ok &&
6095 $stat =~ /^\+(?:.*?)\busleep_range\s*\(\s*($FuncArg)\s*,\s*($FuncArg)\s*\)/) {
6099 WARN("USLEEP_RANGE",
6100 "usleep_range should not use min == max args; see Documentation/timers/timers-howto.txt\n" . "$here\n$stat\n");
6101 } elsif ($min =~ /^\d+$/ && $max =~ /^\d+$/ &&
6103 WARN("USLEEP_RANGE",
6104 "usleep_range args reversed, use min then max; see Documentation/timers/timers-howto.txt\n" . "$here\n$stat\n");
6108 # check for naked sscanf
6109 if ($perl_version_ok &&
6111 $line =~ /\bsscanf\b/ &&
6112 ($stat !~ /$Ident\s*=\s*sscanf\s*$balanced_parens/ &&
6113 $stat !~ /\bsscanf\s*$balanced_parens\s*(?:$Compare)/ &&
6114 $stat !~ /(?:$Compare)\s*\bsscanf\s*$balanced_parens/)) {
6115 my $lc = $stat =~ tr@\n@@;
6116 $lc = $lc + $linenr;
6117 my $stat_real = get_stat_real($linenr, $lc);
6118 WARN("NAKED_SSCANF",
6119 "unchecked sscanf return value\n" . "$here\n$stat_real\n");
6122 # check for simple sscanf that should be kstrto<foo>
6123 if ($perl_version_ok &&
6125 $line =~ /\bsscanf\b/) {
6126 my $lc = $stat =~ tr@\n@@;
6127 $lc = $lc + $linenr;
6128 my $stat_real = get_stat_real($linenr, $lc);
6129 if ($stat_real =~ /\bsscanf\b\s*\(\s*$FuncArg\s*,\s*("[^"]+")/) {
6131 my $count = $format =~ tr@%@%@;
6133 $format =~ /^"\%(?i:ll[udxi]|[udxi]ll|ll|[hl]h?[udxi]|[udxi][hl]h?|[hl]h?|[udxi])"$/) {
6134 WARN("SSCANF_TO_KSTRTO",
6135 "Prefer kstrto<type> to single variable sscanf\n" . "$here\n$stat_real\n");
6140 # check for new externs in .h files.
6141 if ($realfile =~ /\.h$/ &&
6142 $line =~ /^\+\s*(extern\s+)$Type\s*$Ident\s*\(/s) {
6143 if (CHK("AVOID_EXTERNS",
6144 "extern prototypes should be avoided in .h files\n" . $herecurr) &&
6146 $fixed[$fixlinenr] =~ s/(.*)\bextern\b\s*(.*)/$1$2/;
6150 # check for new externs in .c files.
6151 if ($realfile =~ /\.c$/ && defined $stat &&
6152 $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s)
6154 my $function_name = $1;
6155 my $paren_space = $2;
6158 if (defined $cond) {
6159 substr($s, 0, length($cond), '');
6161 if ($s =~ /^\s*;/ &&
6162 $function_name ne 'uninitialized_var')
6164 WARN("AVOID_EXTERNS",
6165 "externs should be avoided in .c files\n" . $herecurr);
6168 if ($paren_space =~ /\n/) {
6169 WARN("FUNCTION_ARGUMENTS",
6170 "arguments for function declarations should follow identifier\n" . $herecurr);
6173 } elsif ($realfile =~ /\.c$/ && defined $stat &&
6174 $stat =~ /^.\s*extern\s+/)
6176 WARN("AVOID_EXTERNS",
6177 "externs should be avoided in .c files\n" . $herecurr);
6180 # check for function declarations that have arguments without identifier names
6181 if (defined $stat &&
6182 $stat =~ /^.\s*(?:extern\s+)?$Type\s*(?:$Ident|\(\s*\*\s*$Ident\s*\))\s*\(\s*([^{]+)\s*\)\s*;/s &&
6184 my $args = trim($1);
6185 while ($args =~ m/\s*($Type\s*(?:$Ident|\(\s*\*\s*$Ident?\s*\)\s*$balanced_parens)?)/g) {
6187 if ($arg =~ /^$Type$/ && $arg !~ /enum\s+$Ident$/) {
6188 WARN("FUNCTION_ARGUMENTS",
6189 "function definition argument '$arg' should also have an identifier name\n" . $herecurr);
6194 # check for function definitions
6195 if ($perl_version_ok &&
6197 $stat =~ /^.\s*(?:$Storage\s+)?$Type\s*($Ident)\s*$balanced_parens\s*{/s) {
6198 $context_function = $1;
6200 # check for multiline function definition with misplaced open brace
6202 my $cnt = statement_rawlines($stat);
6203 my $herectx = $here . "\n";
6204 for (my $n = 0; $n < $cnt; $n++) {
6205 my $rl = raw_line($linenr, $n);
6206 $herectx .= $rl . "\n";
6207 $ok = 1 if ($rl =~ /^[ \+]\{/);
6208 $ok = 1 if ($rl =~ /\{/ && $n == 0);
6209 last if $rl =~ /^[ \+].*\{/;
6213 "open brace '{' following function definitions go on the next line\n" . $herectx);
6217 # checks for new __setup's
6218 if ($rawline =~ /\b__setup\("([^"]*)"/) {
6221 if (!grep(/$name/, @setup_docs)) {
6222 CHK("UNDOCUMENTED_SETUP",
6223 "__setup appears un-documented -- check Documentation/admin-guide/kernel-parameters.rst\n" . $herecurr);
6227 # check for pointless casting of kmalloc return
6228 if ($line =~ /\*\s*\)\s*[kv][czm]alloc(_node){0,1}\b/) {
6229 WARN("UNNECESSARY_CASTS",
6230 "unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
6234 # p = alloc(sizeof(struct foo), ...) should be p = alloc(sizeof(*p), ...)
6235 if ($perl_version_ok &&
6236 $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*([kv][mz]alloc(?:_node)?)\s*\(\s*(sizeof\s*\(\s*struct\s+$Lval\s*\))/) {
6237 CHK("ALLOC_SIZEOF_STRUCT",
6238 "Prefer $3(sizeof(*$1)...) over $3($4...)\n" . $herecurr);
6241 # check for k[mz]alloc with multiplies that could be kmalloc_array/kcalloc
6242 if ($perl_version_ok &&
6244 $stat =~ /^\+\s*($Lval)\s*\=\s*(?:$balanced_parens)?\s*(k[mz]alloc)\s*\(\s*($FuncArg)\s*\*\s*($FuncArg)\s*,/) {
6248 my $newfunc = "kmalloc_array";
6249 $newfunc = "kcalloc" if ($oldfunc eq "kzalloc");
6252 if ($a1 =~ /^sizeof\s*\S/) {
6256 if ($r1 !~ /^sizeof\b/ && $r2 =~ /^sizeof\s*\S/ &&
6257 !($r1 =~ /^$Constant$/ || $r1 =~ /^[A-Z_][A-Z0-9_]*$/)) {
6258 my $cnt = statement_rawlines($stat);
6259 my $herectx = get_stat_here($linenr, $cnt, $here);
6261 if (WARN("ALLOC_WITH_MULTIPLY",
6262 "Prefer $newfunc over $oldfunc with multiply\n" . $herectx) &&
6265 $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;
6270 # check for krealloc arg reuse
6271 if ($perl_version_ok &&
6272 $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*krealloc\s*\(\s*($Lval)\s*,/ &&
6274 WARN("KREALLOC_ARG_REUSE",
6275 "Reusing the krealloc arg is almost always a bug\n" . $herecurr);
6278 # check for alloc argument mismatch
6279 if ($line =~ /\b(kcalloc|kmalloc_array)\s*\(\s*sizeof\b/) {
6280 WARN("ALLOC_ARRAY_ARGS",
6281 "$1 uses number as first arg, sizeof is generally wrong\n" . $herecurr);
6284 # check for multiple semicolons
6285 if ($line =~ /;\s*;\s*$/) {
6286 if (WARN("ONE_SEMICOLON",
6287 "Statements terminations use 1 semicolon\n" . $herecurr) &&
6289 $fixed[$fixlinenr] =~ s/(\s*;\s*){2,}$/;/g;
6293 # check for #defines like: 1 << <digit> that could be BIT(digit), it is not exported to uapi
6294 if ($realfile !~ m@^include/uapi/@ &&
6295 $line =~ /#\s*define\s+\w+\s+\(?\s*1\s*([ulUL]*)\s*\<\<\s*(?:\d+|$Ident)\s*\)?/) {
6297 $ull = "_ULL" if (defined($1) && $1 =~ /ll/i);
6298 if (CHK("BIT_MACRO",
6299 "Prefer using the BIT$ull macro\n" . $herecurr) &&
6301 $fixed[$fixlinenr] =~ s/\(?\s*1\s*[ulUL]*\s*<<\s*(\d+|$Ident)\s*\)?/BIT${ull}($1)/;
6305 # check for #if defined CONFIG_<FOO> || defined CONFIG_<FOO>_MODULE
6306 if ($line =~ /^\+\s*#\s*if\s+defined(?:\s*\(?\s*|\s+)(CONFIG_[A-Z_]+)\s*\)?\s*\|\|\s*defined(?:\s*\(?\s*|\s+)\1_MODULE\s*\)?\s*$/) {
6308 if (WARN("PREFER_IS_ENABLED",
6309 "Prefer IS_ENABLED(<FOO>) to CONFIG_<FOO> || CONFIG_<FOO>_MODULE\n" . $herecurr) &&
6311 $fixed[$fixlinenr] = "\+#if IS_ENABLED($config)";
6315 # check for case / default statements not preceded by break/fallthrough/switch
6316 if ($line =~ /^.\s*(?:case\s+(?:$Ident|$Constant)\s*|default):/) {
6318 my $has_statement = 0;
6320 my $prevline = $linenr;
6321 while ($prevline > 1 && ($file || $count < 3) && !$has_break) {
6323 my $rline = $rawlines[$prevline - 1];
6324 my $fline = $lines[$prevline - 1];
6325 last if ($fline =~ /^\@\@/);
6326 next if ($fline =~ /^\-/);
6327 next if ($fline =~ /^.(?:\s*(?:case\s+(?:$Ident|$Constant)[\s$;]*|default):[\s$;]*)*$/);
6328 $has_break = 1 if ($rline =~ /fall[\s_-]*(through|thru)/i);
6329 next if ($fline =~ /^.[\s$;]*$/);
6332 $has_break = 1 if ($fline =~ /\bswitch\b|\b(?:break\s*;[\s$;]*$|exit\s*\(\b|return\b|goto\b|continue\b)/);
6334 if (!$has_break && $has_statement) {
6335 WARN("MISSING_BREAK",
6336 "Possible switch case/default not preceded by break or fallthrough comment\n" . $herecurr);
6340 # check for switch/default statements without a break;
6341 if ($perl_version_ok &&
6343 $stat =~ /^\+[$;\s]*(?:case[$;\s]+\w+[$;\s]*:[$;\s]*|)*[$;\s]*\bdefault[$;\s]*:[$;\s]*;/g) {
6344 my $cnt = statement_rawlines($stat);
6345 my $herectx = get_stat_here($linenr, $cnt, $here);
6347 WARN("DEFAULT_NO_BREAK",
6348 "switch default: should use break\n" . $herectx);
6351 # check for gcc specific __FUNCTION__
6352 if ($line =~ /\b__FUNCTION__\b/) {
6353 if (WARN("USE_FUNC",
6354 "__func__ should be used instead of gcc specific __FUNCTION__\n" . $herecurr) &&
6356 $fixed[$fixlinenr] =~ s/\b__FUNCTION__\b/__func__/g;
6360 # check for uses of __DATE__, __TIME__, __TIMESTAMP__
6361 while ($line =~ /\b(__(?:DATE|TIME|TIMESTAMP)__)\b/g) {
6363 "Use of the '$1' macro makes the build non-deterministic\n" . $herecurr);
6366 # check for use of yield()
6367 if ($line =~ /\byield\s*\(\s*\)/) {
6369 "Using yield() is generally wrong. See yield() kernel-doc (sched/core.c)\n" . $herecurr);
6372 # check for comparisons against true and false
6373 if ($line =~ /\+\s*(.*?)\b(true|false|$Lval)\s*(==|\!=)\s*(true|false|$Lval)\b(.*)$/i) {
6381 ($arg, $otype) = ($otype, $arg) if ($arg =~ /^(?:true|false)$/i);
6383 my $type = lc($otype);
6384 if ($type =~ /^(?:true|false)$/) {
6385 if (("$test" eq "==" && "$type" eq "true") ||
6386 ("$test" eq "!=" && "$type" eq "false")) {
6390 CHK("BOOL_COMPARISON",
6391 "Using comparison to $otype is error prone\n" . $herecurr);
6393 ## maybe suggesting a correct construct would better
6394 ## "Using comparison to $otype is error prone. Perhaps use '${lead}${op}${arg}${trail}'\n" . $herecurr);
6399 # check for bool bitfields
6400 if ($sline =~ /^.\s+bool\s*$Ident\s*:\s*\d+\s*;/) {
6401 WARN("BOOL_BITFIELD",
6402 "Avoid using bool as bitfield. Prefer bool bitfields as unsigned int or u<8|16|32>\n" . $herecurr);
6405 # check for bool use in .h files
6406 if ($realfile =~ /\.h$/ &&
6407 $sline =~ /^.\s+bool\s*$Ident\s*(?::\s*d+\s*)?;/) {
6409 "Avoid using bool structure members because of possible alignment issues - see: https://lkml.org/lkml/2017/11/21/384\n" . $herecurr);
6412 # check for semaphores initialized locked
6413 if ($line =~ /^.\s*sema_init.+,\W?0\W?\)/) {
6414 WARN("CONSIDER_COMPLETION",
6415 "consider using a completion\n" . $herecurr);
6418 # recommend kstrto* over simple_strto* and strict_strto*
6419 if ($line =~ /\b((simple|strict)_(strto(l|ll|ul|ull)))\s*\(/) {
6420 WARN("CONSIDER_KSTRTO",
6421 "$1 is obsolete, use k$3 instead\n" . $herecurr);
6424 # check for __initcall(), use device_initcall() explicitly or more appropriate function please
6425 if ($line =~ /^.\s*__initcall\s*\(/) {
6426 WARN("USE_DEVICE_INITCALL",
6427 "please use device_initcall() or more appropriate function instead of __initcall() (see include/linux/init.h)\n" . $herecurr);
6430 # check for various structs that are normally const (ops, kgdb, device_tree)
6431 # and avoid what seem like struct definitions 'struct foo {'
6432 if ($line !~ /\bconst\b/ &&
6433 $line =~ /\bstruct\s+($const_structs)\b(?!\s*\{)/) {
6434 WARN("CONST_STRUCT",
6435 "struct $1 should normally be const\n" . $herecurr);
6438 # use of NR_CPUS is usually wrong
6439 # ignore definitions of NR_CPUS and usage to define arrays as likely right
6440 if ($line =~ /\bNR_CPUS\b/ &&
6441 $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ &&
6442 $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ &&
6443 $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ &&
6444 $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ &&
6445 $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/)
6448 "usage of NR_CPUS is often wrong - consider using cpu_possible(), num_possible_cpus(), for_each_possible_cpu(), etc\n" . $herecurr);
6451 # Use of __ARCH_HAS_<FOO> or ARCH_HAVE_<BAR> is wrong.
6452 if ($line =~ /\+\s*#\s*define\s+((?:__)?ARCH_(?:HAS|HAVE)\w*)\b/) {
6453 ERROR("DEFINE_ARCH_HAS",
6454 "#define of '$1' is wrong - use Kconfig variables or standard guards instead\n" . $herecurr);
6457 # likely/unlikely comparisons similar to "(likely(foo) > 0)"
6458 if ($perl_version_ok &&
6459 $line =~ /\b((?:un)?likely)\s*\(\s*$FuncArg\s*\)\s*$Compare/) {
6460 WARN("LIKELY_MISUSE",
6461 "Using $1 should generally have parentheses around the comparison\n" . $herecurr);
6464 # whine mightly about in_atomic
6465 if ($line =~ /\bin_atomic\s*\(/) {
6466 if ($realfile =~ m@^drivers/@) {
6468 "do not use in_atomic in drivers\n" . $herecurr);
6469 } elsif ($realfile !~ m@^kernel/@) {
6471 "use of in_atomic() is incorrect outside core kernel code\n" . $herecurr);
6475 # check for mutex_trylock_recursive usage
6476 if ($line =~ /mutex_trylock_recursive/) {
6478 "recursive locking is bad, do not use this ever.\n" . $herecurr);
6481 # check for lockdep_set_novalidate_class
6482 if ($line =~ /^.\s*lockdep_set_novalidate_class\s*\(/ ||
6483 $line =~ /__lockdep_no_validate__\s*\)/ ) {
6484 if ($realfile !~ m@^kernel/lockdep@ &&
6485 $realfile !~ m@^include/linux/lockdep@ &&
6486 $realfile !~ m@^drivers/base/core@) {
6488 "lockdep_no_validate class is reserved for device->mutex.\n" . $herecurr);
6492 if ($line =~ /debugfs_create_\w+.*\b$mode_perms_world_writable\b/ ||
6493 $line =~ /DEVICE_ATTR.*\b$mode_perms_world_writable\b/) {
6494 WARN("EXPORTED_WORLD_WRITABLE",
6495 "Exporting world writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr);
6498 # check for DEVICE_ATTR uses that could be DEVICE_ATTR_<FOO>
6499 # and whether or not function naming is typical and if
6500 # DEVICE_ATTR permissions uses are unusual too
6501 if ($perl_version_ok &&
6503 $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*\)/) {
6508 my $octal_perms = perms_to_octal($perms);
6509 if ($show =~ /^${var}_show$/ &&
6510 $store =~ /^${var}_store$/ &&
6511 $octal_perms eq "0644") {
6512 if (WARN("DEVICE_ATTR_RW",
6513 "Use DEVICE_ATTR_RW\n" . $herecurr) &&
6515 $fixed[$fixlinenr] =~ s/\bDEVICE_ATTR\s*\(\s*$var\s*,\s*\Q$perms\E\s*,\s*$show\s*,\s*$store\s*\)/DEVICE_ATTR_RW(${var})/;
6517 } elsif ($show =~ /^${var}_show$/ &&
6518 $store =~ /^NULL$/ &&
6519 $octal_perms eq "0444") {
6520 if (WARN("DEVICE_ATTR_RO",
6521 "Use DEVICE_ATTR_RO\n" . $herecurr) &&
6523 $fixed[$fixlinenr] =~ s/\bDEVICE_ATTR\s*\(\s*$var\s*,\s*\Q$perms\E\s*,\s*$show\s*,\s*NULL\s*\)/DEVICE_ATTR_RO(${var})/;
6525 } elsif ($show =~ /^NULL$/ &&
6526 $store =~ /^${var}_store$/ &&
6527 $octal_perms eq "0200") {
6528 if (WARN("DEVICE_ATTR_WO",
6529 "Use DEVICE_ATTR_WO\n" . $herecurr) &&
6531 $fixed[$fixlinenr] =~ s/\bDEVICE_ATTR\s*\(\s*$var\s*,\s*\Q$perms\E\s*,\s*NULL\s*,\s*$store\s*\)/DEVICE_ATTR_WO(${var})/;
6533 } elsif ($octal_perms eq "0644" ||
6534 $octal_perms eq "0444" ||
6535 $octal_perms eq "0200") {
6536 my $newshow = "$show";
6537 $newshow = "${var}_show" if ($show ne "NULL" && $show ne "${var}_show");
6538 my $newstore = $store;
6539 $newstore = "${var}_store" if ($store ne "NULL" && $store ne "${var}_store");
6541 if ($show ne $newshow) {
6542 $rename .= " '$show' to '$newshow'";
6544 if ($store ne $newstore) {
6545 $rename .= " '$store' to '$newstore'";
6547 WARN("DEVICE_ATTR_FUNCTIONS",
6548 "Consider renaming function(s)$rename\n" . $herecurr);
6550 WARN("DEVICE_ATTR_PERMS",
6551 "DEVICE_ATTR unusual permissions '$perms' used\n" . $herecurr);
6555 # Mode permission misuses where it seems decimal should be octal
6556 # This uses a shortcut match to avoid unnecessary uses of a slow foreach loop
6557 # o Ignore module_param*(...) uses with a decimal 0 permission as that has a
6558 # specific definition of not visible in sysfs.
6559 # o Ignore proc_create*(...) uses with a decimal 0 permission as that means
6560 # use the default permissions
6561 if ($perl_version_ok &&
6563 $line =~ /$mode_perms_search/) {
6564 foreach my $entry (@mode_permission_funcs) {
6565 my $func = $entry->[0];
6566 my $arg_pos = $entry->[1];
6568 my $lc = $stat =~ tr@\n@@;
6569 $lc = $lc + $linenr;
6570 my $stat_real = get_stat_real($linenr, $lc);
6575 $skip_args = "(?:\\s*$FuncArg\\s*,\\s*){$arg_pos,$arg_pos}";
6577 my $test = "\\b$func\\s*\\(${skip_args}($FuncArg(?:\\|\\s*$FuncArg)*)\\s*[,\\)]";
6578 if ($stat =~ /$test/) {
6580 $val = $6 if ($skip_args ne "");
6581 if (!($func =~ /^(?:module_param|proc_create)/ && $val eq "0") &&
6582 (($val =~ /^$Int$/ && $val !~ /^$Octal$/) ||
6583 ($val =~ /^$Octal$/ && length($val) ne 4))) {
6584 ERROR("NON_OCTAL_PERMISSIONS",
6585 "Use 4 digit octal (0777) not decimal permissions\n" . "$here\n" . $stat_real);
6587 if ($val =~ /^$Octal$/ && (oct($val) & 02)) {
6588 ERROR("EXPORTED_WORLD_WRITABLE",
6589 "Exporting writable files is usually an error. Consider more restrictive permissions.\n" . "$here\n" . $stat_real);
6595 # check for uses of S_<PERMS> that could be octal for readability
6596 while ($line =~ m{\b($multi_mode_perms_string_search)\b}g) {
6598 my $octal = perms_to_octal($oval);
6599 if (WARN("SYMBOLIC_PERMS",
6600 "Symbolic permissions '$oval' are not preferred. Consider using octal permissions '$octal'.\n" . $herecurr) &&
6602 $fixed[$fixlinenr] =~ s/\Q$oval\E/$octal/;
6606 # validate content of MODULE_LICENSE against list from include/linux/module.h
6607 if ($line =~ /\bMODULE_LICENSE\s*\(\s*($String)\s*\)/) {
6608 my $extracted_string = get_quoted_string($line, $rawline);
6609 my $valid_licenses = qr{
6612 GPL\ and\ additional\ rights|
6618 if ($extracted_string !~ /^"(?:$valid_licenses)"$/x) {
6619 WARN("MODULE_LICENSE",
6620 "unknown module license " . $extracted_string . "\n" . $herecurr);
6625 # If we have no input at all, then there is nothing to report on
6626 # so just keep quiet.
6627 if ($#rawlines == -1) {
6631 # In mailback mode only produce a report in the negative, for
6632 # things that appear to be patches.
6633 if ($mailback && ($clean == 1 || !$is_patch)) {
6637 # This is not a patch, and we are are in 'no-patch' mode so
6639 if (!$chk_patch && !$is_patch) {
6643 if (!$is_patch && $filename !~ /cover-letter\.patch$/) {
6644 ERROR("NOT_UNIFIED_DIFF",
6645 "Does not appear to be a unified-diff format patch\n");
6647 if ($is_patch && $has_commit_log && $chk_signoff) {
6648 if ($signoff == 0) {
6649 ERROR("MISSING_SIGN_OFF",
6650 "Missing Signed-off-by: line(s)\n");
6651 } elsif (!$authorsignoff) {
6652 WARN("NO_AUTHOR_SIGN_OFF",
6653 "Missing Signed-off-by: line by nominal patch author '$author'\n");
6657 print report_dump();
6658 if ($summary && !($clean == 1 && $quiet == 1)) {
6659 print "$filename " if ($summary_file);
6660 print "total: $cnt_error errors, $cnt_warn warnings, " .
6661 (($check)? "$cnt_chk checks, " : "") .
6662 "$cnt_lines lines checked\n";
6666 # If there were any defects found and not already fixing them
6667 if (!$clean and !$fix) {
6670 NOTE: For some of the reported defects, checkpatch may be able to
6671 mechanically convert to the typical style using --fix or --fix-inplace.
6674 # If there were whitespace errors which cleanpatch can fix
6675 # then suggest that.
6676 if ($rpt_cleaners) {
6680 NOTE: Whitespace errors detected.
6681 You may wish to use scripts/cleanpatch or scripts/cleanfile
6686 if ($clean == 0 && $fix &&
6687 ("@rawlines" ne "@fixed" ||
6688 $#fixed_inserted >= 0 || $#fixed_deleted >= 0)) {
6689 my $newfile = $filename;
6690 $newfile .= ".EXPERIMENTAL-checkpatch-fixes" if (!$fix_inplace);
6694 @fixed = fix_inserted_deleted_lines(\@fixed, \@fixed_inserted, \@fixed_deleted);
6696 open($f, '>', $newfile)
6697 or die "$P: Can't open $newfile for write\n";
6698 foreach my $fixed_line (@fixed) {
6701 if ($linecount > 3) {
6702 $fixed_line =~ s/^\+//;
6703 print $f $fixed_line . "\n";
6706 print $f $fixed_line . "\n";
6714 Wrote EXPERIMENTAL --fix correction(s) to '$newfile'
6716 Do _NOT_ trust the results written to this file.
6717 Do _NOT_ submit these changes without inspecting them for correctness.
6719 This EXPERIMENTAL file is simply a convenience to help rewrite patches.
6720 No warranties, expressed or implied...
6728 print "$vname has no obvious style problems and is ready for submission.\n";
6730 print "$vname has style problems, please review.\n";