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);
27 my %verbose_messages = ();
28 my %verbose_emitted = ();
49 my $gitroot = $ENV{'GIT_DIR'};
50 $gitroot = ".git" if !defined($gitroot);
58 my $configuration_file = ".checkpatch.conf";
59 my $max_line_length = 100;
60 my $ignore_perl_version = 0;
61 my $minimum_perl_version = 5.10.0;
62 my $min_conf_desc_length = 4;
63 my $spelling_file = "$D/spelling.txt";
65 my $codespellfile = "/usr/share/codespell/dictionary.txt";
66 my $user_codespellfile = "";
67 my $conststructsfile = "$D/const_structs.checkpatch";
68 my $docsfile = "$D/../Documentation/dev-tools/checkpatch.rst";
71 my $allow_c99_comments = 1; # Can be overridden by --ignore C99_COMMENT_TOLERANCE
72 # git output parsing needs US English output, so first set backtick child process LANGUAGE
73 my $git_command ='export LANGUAGE=en_US.UTF-8; git';
75 my ${CONFIG_} = "CONFIG_";
81 Usage: $P [OPTION]... [FILE]...
86 -v, --verbose verbose mode
87 --no-tree run without a kernel tree
88 --no-signoff do not check for 'Signed-off-by' line
89 --patch treat FILE as patchfile (default)
90 --emacs emacs compile window format
91 --terse one line per report
92 --showfile emit diffed file position, not input file position
93 -g, --git treat FILE as a single commit or git revision range
94 single git commit with:
98 multiple git commits with:
102 git merges are ignored
103 -f, --file treat FILE as regular source file
104 --subjective, --strict enable more subjective tests
105 --list-types list the possible message types
106 --types TYPE(,TYPE2...) show only these comma separated message types
107 --ignore TYPE(,TYPE2...) ignore various comma separated message types
108 --show-types show the specific message type in the output
109 --max-line-length=n set the maximum line length, (default $max_line_length)
110 if exceeded, warn on patches
111 requires --strict for use with --file
112 --min-conf-desc-length=n set the min description length, if shorter, warn
113 --tab-size=n set the number of spaces for tab (default $tabsize)
114 --root=PATH PATH to the kernel tree root
115 --no-summary suppress the per-file summary
116 --mailback only produce a report in case of warnings/errors
117 --summary-file include the filename in summary
118 --debug KEY=[0|1] turn on/off debugging of KEY, where KEY is one of
119 'values', 'possible', 'type', and 'attr' (default
121 --test-only=WORD report only warnings/errors containing WORD
123 --fix EXPERIMENTAL - may create horrible results
124 If correctable single-line errors exist, create
125 "<inputfile>.EXPERIMENTAL-checkpatch-fixes"
126 with potential errors corrected to the preferred
128 --fix-inplace EXPERIMENTAL - may create horrible results
129 Is the same as --fix, but overwrites the input
130 file. It's your fault if there's no backup or git
131 --ignore-perl-version override checking of perl version. expect
133 --codespell Use the codespell dictionary for spelling/typos
134 (default:$codespellfile)
135 --codespellfile Use this codespell dictionary
136 --typedefsfile Read additional types from this file
137 --color[=WHEN] Use colors 'always', 'never', or only when output
138 is a terminal ('auto'). Default is 'auto'.
139 --kconfig-prefix=WORD use WORD as a prefix for Kconfig symbols (default
141 -h, --help, --version display this help and exit
143 When FILE is - read standard input.
151 return grep { !$seen{$_}++ } @_;
161 open(my $script, '<', abs_path($P)) or
162 die "$P: Can't read '$P' $!\n";
164 my $text = <$script>;
168 # Also catch when type or level is passed through a variable
169 while ($text =~ /(?:(\bCHK|\bWARN|\bERROR|&\{\$msg_level})\s*\(|\$msg_type\s*=)\s*"([^"]+)"/g) {
171 if (exists($types{$2})) {
172 $types{$2} .= ",$1" if ($types{$2} ne $1);
177 $types{$2} = "UNDETERMINED";
181 print("#\tMessage type\n\n");
183 print(" ( Color coding: ");
184 print(RED . "ERROR" . RESET);
186 print(YELLOW . "WARNING" . RESET);
188 print(GREEN . "CHECK" . RESET);
190 print("Multiple levels / Undetermined");
194 foreach my $type (sort keys %types) {
195 my $orig_type = $type;
197 my $level = $types{$type};
198 if ($level eq "ERROR") {
199 $type = RED . $type . RESET;
200 } elsif ($level eq "WARN") {
201 $type = YELLOW . $type . RESET;
202 } elsif ($level eq "CHK") {
203 $type = GREEN . $type . RESET;
206 print(++$count . "\t" . $type . "\n");
207 if ($verbose && exists($verbose_messages{$orig_type})) {
208 my $message = $verbose_messages{$orig_type};
209 $message =~ s/\n/\n\t/g;
210 print("\t" . $message . "\n\n");
217 my $conf = which_conf($configuration_file);
220 open(my $conffile, '<', "$conf")
221 or warn "$P: Can't find a readable $configuration_file file $!\n";
223 while (<$conffile>) {
226 $line =~ s/\s*\n?$//g;
230 next if ($line =~ m/^\s*#/);
231 next if ($line =~ m/^\s*$/);
233 my @words = split(" ", $line);
234 foreach my $word (@words) {
235 last if ($word =~ m/^#/);
236 push (@conf_args, $word);
240 unshift(@ARGV, @conf_args) if @conf_args;
244 open(my $docs, '<', "$docsfile")
245 or warn "$P: Can't read the documentation file $docsfile $!\n";
256 if ($line =~ /^\s*\*\*(.+)\*\*$/) {
258 $verbose_messages{$type} = trim($desc);
264 if ($line =~ /^(?:\s{4,}|$)/) {
269 $verbose_messages{$type} = trim($desc);
278 $verbose_messages{$type} = trim($desc);
283 # Perl's Getopt::Long allows options to take optional arguments after a space.
284 # Prevent --color by itself from consuming other arguments
286 if ($_ eq "--color" || $_ eq "-color") {
287 $_ = "--color=$color";
292 'q|quiet+' => \$quiet,
293 'v|verbose!' => \$verbose,
295 'signoff!' => \$chk_signoff,
296 'patch!' => \$chk_patch,
299 'showfile!' => \$showfile,
302 'subjective!' => \$check,
303 'strict!' => \$check,
304 'ignore=s' => \@ignore,
306 'show-types!' => \$show_types,
307 'list-types!' => \$list_types,
308 'max-line-length=i' => \$max_line_length,
309 'min-conf-desc-length=i' => \$min_conf_desc_length,
310 'tab-size=i' => \$tabsize,
312 'summary!' => \$summary,
313 'mailback!' => \$mailback,
314 'summary-file!' => \$summary_file,
316 'fix-inplace!' => \$fix_inplace,
317 'ignore-perl-version!' => \$ignore_perl_version,
318 'debug=s' => \%debug,
319 'test-only=s' => \$tst_only,
320 'codespell!' => \$codespell,
321 'codespellfile=s' => \$user_codespellfile,
322 'typedefsfile=s' => \$typedefsfile,
323 'color=s' => \$color,
324 'no-color' => \$color, #keep old behaviors of -nocolor
325 'nocolor' => \$color, #keep old behaviors of -nocolor
326 'kconfig-prefix=s' => \${CONFIG_},
331 if ($user_codespellfile) {
332 # Use the user provided codespell file unconditionally
333 $codespellfile = $user_codespellfile;
334 } elsif (!(-f $codespellfile)) {
335 # If /usr/share/codespell/dictionary.txt is not present, try to find it
336 # under codespell's install directory: <codespell_root>/data/dictionary.txt
337 if (($codespell || $help) && which("python3") ne "") {
338 my $python_codespell_dict = << "EOF";
342 codespell_dir = op.dirname(codespell_lib.__file__)
343 codespell_file = op.join(codespell_dir, 'data', 'dictionary.txt')
344 print(codespell_file, end='')
347 my $codespell_dict = `python3 -c "$python_codespell_dict" 2> /dev/null`;
348 $codespellfile = $codespell_dict if (-f $codespell_dict);
352 # $help is 1 if either -h, --help or --version is passed as option - exitcode: 0
353 # $help is 2 if invalid option is passed - exitcode: 1
354 help($help - 1) if ($help);
356 die "$P: --git cannot be used with --file or --fix\n" if ($git && ($file || $fix));
357 die "$P: --verbose cannot be used with --terse\n" if ($verbose && $terse);
359 if ($color =~ /^[01]$/) {
361 } elsif ($color =~ /^always$/i) {
363 } elsif ($color =~ /^never$/i) {
365 } elsif ($color =~ /^auto$/i) {
366 $color = (-t STDOUT);
368 die "$P: Invalid color mode: $color\n";
371 load_docs() if ($verbose);
372 list_types(0) if ($list_types);
374 $fix = 1 if ($fix_inplace);
375 $check_orig = $check;
379 my $perl_version_ok = 1;
380 if ($^V && $^V lt $minimum_perl_version) {
381 $perl_version_ok = 0;
382 printf "$P: requires at least perl version %vd\n", $minimum_perl_version;
383 exit(1) if (!$ignore_perl_version);
386 #if no filenames are given, push '-' to read patch from stdin
391 # skip TAB size 1 to avoid additional checks on $tabsize - 1
392 die "$P: Invalid TAB size: $tabsize\n" if ($tabsize < 2);
394 sub hash_save_array_words {
395 my ($hashRef, $arrayRef) = @_;
397 my @array = split(/,/, join(',', @$arrayRef));
398 foreach my $word (@array) {
399 $word =~ s/\s*\n?$//g;
402 $word =~ tr/[a-z]/[A-Z]/;
404 next if ($word =~ m/^\s*#/);
405 next if ($word =~ m/^\s*$/);
411 sub hash_show_words {
412 my ($hashRef, $prefix) = @_;
414 if (keys %$hashRef) {
415 print "\nNOTE: $prefix message types:";
416 foreach my $word (sort keys %$hashRef) {
423 hash_save_array_words(\%ignore_type, \@ignore);
424 hash_save_array_words(\%use_type, \@use);
427 my $dbg_possible = 0;
430 for my $key (keys %debug) {
432 eval "\${dbg_$key} = '$debug{$key}';";
436 my $rpt_cleaners = 0;
445 if (!top_of_kernel_tree($root)) {
446 die "$P: $root: --root does not point at a valid tree\n";
449 if (top_of_kernel_tree('.')) {
451 } elsif ($0 =~ m@(.*)/scripts/[^/]*$@ &&
452 top_of_kernel_tree($1)) {
457 if (!defined $root) {
458 print "Must be run from the top-level dir. of a kernel tree\n";
463 my $emitted_corrupt = 0;
466 [A-Za-z_][A-Za-z\d_]*
467 (?:\s*\#\#\s*[A-Za-z_][A-Za-z\d_]*)*
469 our $Storage = qr{extern|static|asmlinkage};
483 our $InitAttributePrefix = qr{__(?:mem|cpu|dev|net_|)};
484 our $InitAttributeData = qr{$InitAttributePrefix(?:initdata\b)};
485 our $InitAttributeConst = qr{$InitAttributePrefix(?:initconst\b)};
486 our $InitAttributeInit = qr{$InitAttributePrefix(?:init\b)};
487 our $InitAttribute = qr{$InitAttributeData|$InitAttributeConst|$InitAttributeInit};
489 # Notes to $Attribute:
490 # We need \b after 'init' otherwise 'initconst' will cause a false positive in a check
513 ____cacheline_aligned|
514 ____cacheline_aligned_in_smp|
515 ____cacheline_internodealigned_in_smp|
517 __alloc_size\s*\(\s*\d+\s*(?:,\s*\d+\s*)?\)
520 our $Inline = qr{inline|__always_inline|noinline|__inline|__inline__};
521 our $Member = qr{->$Ident|\.$Ident|\[[^]]*\]};
522 our $Lval = qr{$Ident(?:$Member)*};
524 our $Int_type = qr{(?i)llu|ull|ll|lu|ul|l|u};
525 our $Binary = qr{(?i)0b[01]+$Int_type?};
526 our $Hex = qr{(?i)0x[0-9a-f]+$Int_type?};
527 our $Int = qr{[0-9]+$Int_type?};
528 our $Octal = qr{0[0-7]+$Int_type?};
529 our $String = qr{(?:\b[Lu])?"[X\t]*"};
530 our $Float_hex = qr{(?i)0x[0-9a-f]+p-?[0-9]+[fl]?};
531 our $Float_dec = qr{(?i)(?:[0-9]+\.[0-9]*|[0-9]*\.[0-9]+)(?:e-?[0-9]+)?[fl]?};
532 our $Float_int = qr{(?i)[0-9]+e-?[0-9]+[fl]?};
533 our $Float = qr{$Float_hex|$Float_dec|$Float_int};
534 our $Constant = qr{$Float|$Binary|$Octal|$Hex|$Int};
535 our $Assignment = qr{\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=};
536 our $Compare = qr{<=|>=|==|!=|<|(?<!-)>};
537 our $Arithmetic = qr{\+|-|\*|\/|%};
541 &&|\|\||,|\^|\+\+|--|&|\||$Arithmetic
544 our $c90_Keywords = qr{do|for|while|if|else|return|goto|continue|switch|default|case|break}x;
548 our $NonptrTypeMisordered;
549 our $NonptrTypeWithAttr;
553 our $DeclareMisordered;
555 our $NON_ASCII_UTF8 = qr{
556 [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
557 | \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
558 | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
559 | \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
560 | \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
561 | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
562 | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
566 [\x09\x0A\x0D\x20-\x7E] # ASCII
570 our $typeC99Typedefs = qr{(?:__)?(?:[us]_?)?int_?(?:8|16|32|64)_t};
571 our $typeOtherOSTypedefs = qr{(?x:
572 u_(?:char|short|int|long) | # bsd
573 u(?:nchar|short|int|long) # sysv
575 our $typeKernelTypedefs = qr{(?x:
576 (?:__)?(?:u|s|be|le)(?:8|16|32|64)|
579 our $typeStdioTypedefs = qr{(?x:
582 our $typeTypedefs = qr{(?x:
584 $typeOtherOSTypedefs\b|
585 $typeKernelTypedefs\b|
589 our $zero_initializer = qr{(?:(?:0[xX])?0+$Int_type?|NULL|false)\b};
591 our $logFunctions = qr{(?x:
592 printk(?:_ratelimited|_once|_deferred_once|_deferred|)|
593 (?:[a-z0-9]+_){1,2}(?:printk|emerg|alert|crit|err|warning|warn|notice|info|debug|dbg|vdbg|devel|cont|WARN)(?:_ratelimited|_once|)|
595 WARN(?:_RATELIMIT|_ONCE|)|
598 seq_vprintf|seq_printf|seq_puts
601 our $allocFunctions = qr{(?x:
603 (?:kv|k|v)[czm]alloc(?:_array)?(?:_node)? |
606 (?:\w+)?alloc_skb(?:_ip_align)? |
607 # dev_alloc_skb/netdev_alloc_skb, et al
611 our $signature_tags = qr{(?xi:
623 our $tracing_logging_tags = qr{(?xi:
647 sub edit_distance_min {
649 my $len = scalar @arr;
650 if ((scalar @arr) < 1) {
651 # if underflow, return
655 for my $i (0 .. ($len-1)) {
656 if ($arr[$i] < $min) {
663 sub get_edit_distance {
664 my ($str1, $str2) = @_;
669 my $len1 = length($str1);
670 my $len2 = length($str2);
671 # two dimensional array storing minimum edit distance
673 for my $i (0 .. $len1) {
674 for my $j (0 .. $len2) {
676 $distance[$i][$j] = $j;
678 $distance[$i][$j] = $i;
679 } elsif (substr($str1, $i-1, 1) eq substr($str2, $j-1, 1)) {
680 $distance[$i][$j] = $distance[$i - 1][$j - 1];
682 my $dist1 = $distance[$i][$j - 1]; #insert distance
683 my $dist2 = $distance[$i - 1][$j]; # remove
684 my $dist3 = $distance[$i - 1][$j - 1]; #replace
685 $distance[$i][$j] = 1 + edit_distance_min($dist1, $dist2, $dist3);
689 return $distance[$len1][$len2];
692 sub find_standard_signature {
694 my @standard_signature_tags = (
695 'Signed-off-by:', 'Co-developed-by:', 'Acked-by:', 'Tested-by:',
696 'Reviewed-by:', 'Reported-by:', 'Suggested-by:'
698 foreach my $signature (@standard_signature_tags) {
699 return $signature if (get_edit_distance($sign_off, $signature) <= 2);
705 our $obsolete_archives = qr{(?xi:
706 \Qfreedesktop.org/archives/dri-devel\E |
707 \Qlists.infradead.org\E |
709 \Qmail-archive.com\E |
710 \Qmailman.alsa-project.org/pipermail\E |
712 \Qozlabs.org/pipermail\E |
716 our @typeListMisordered = (
717 qr{char\s+(?:un)?signed},
718 qr{int\s+(?:(?:un)?signed\s+)?short\s},
719 qr{int\s+short(?:\s+(?:un)?signed)},
720 qr{short\s+int(?:\s+(?:un)?signed)},
721 qr{(?:un)?signed\s+int\s+short},
722 qr{short\s+(?:un)?signed},
723 qr{long\s+int\s+(?:un)?signed},
724 qr{int\s+long\s+(?:un)?signed},
725 qr{long\s+(?:un)?signed\s+int},
726 qr{int\s+(?:un)?signed\s+long},
727 qr{int\s+(?:un)?signed},
728 qr{int\s+long\s+long\s+(?:un)?signed},
729 qr{long\s+long\s+int\s+(?:un)?signed},
730 qr{long\s+long\s+(?:un)?signed\s+int},
731 qr{long\s+long\s+(?:un)?signed},
732 qr{long\s+(?:un)?signed},
737 qr{(?:(?:un)?signed\s+)?char},
738 qr{(?:(?:un)?signed\s+)?short\s+int},
739 qr{(?:(?:un)?signed\s+)?short},
740 qr{(?:(?:un)?signed\s+)?int},
741 qr{(?:(?:un)?signed\s+)?long\s+int},
742 qr{(?:(?:un)?signed\s+)?long\s+long\s+int},
743 qr{(?:(?:un)?signed\s+)?long\s+long},
744 qr{(?:(?:un)?signed\s+)?long},
753 qr{${Ident}_handler},
754 qr{${Ident}_handler_fn},
758 our $C90_int_types = qr{(?x:
759 long\s+long\s+int\s+(?:un)?signed|
760 long\s+long\s+(?:un)?signed\s+int|
761 long\s+long\s+(?:un)?signed|
762 (?:(?:un)?signed\s+)?long\s+long\s+int|
763 (?:(?:un)?signed\s+)?long\s+long|
764 int\s+long\s+long\s+(?:un)?signed|
765 int\s+(?:(?:un)?signed\s+)?long\s+long|
767 long\s+int\s+(?:un)?signed|
768 long\s+(?:un)?signed\s+int|
769 long\s+(?:un)?signed|
770 (?:(?:un)?signed\s+)?long\s+int|
771 (?:(?:un)?signed\s+)?long|
772 int\s+long\s+(?:un)?signed|
773 int\s+(?:(?:un)?signed\s+)?long|
776 (?:(?:un)?signed\s+)?int
779 our @typeListFile = ();
780 our @typeListWithAttr = (
782 qr{struct\s+$InitAttribute\s+$Ident},
783 qr{union\s+$InitAttribute\s+$Ident},
786 our @modifierList = (
789 our @modifierListFile = ();
791 our @mode_permission_funcs = (
793 ["module_param_(?:array|named|string)", 4],
794 ["module_param_array_named", 5],
795 ["debugfs_create_(?:file|u8|u16|u32|u64|x8|x16|x32|x64|size_t|atomic_t|bool|blob|regset32|u32_array)", 2],
796 ["proc_create(?:_data|)", 2],
797 ["(?:CLASS|DEVICE|SENSOR|SENSOR_DEVICE|IIO_DEVICE)_ATTR", 2],
798 ["IIO_DEV_ATTR_[A-Z_]+", 1],
799 ["SENSOR_(?:DEVICE_|)ATTR_2", 2],
800 ["SENSOR_TEMPLATE(?:_2|)", 3],
804 my $word_pattern = '\b[A-Z]?[a-z]{2,}\b';
806 #Create a search pattern for all these functions to speed up a loop below
807 our $mode_perms_search = "";
808 foreach my $entry (@mode_permission_funcs) {
809 $mode_perms_search .= '|' if ($mode_perms_search ne "");
810 $mode_perms_search .= $entry->[0];
812 $mode_perms_search = "(?:${mode_perms_search})";
814 our %deprecated_apis = (
815 "synchronize_rcu_bh" => "synchronize_rcu",
816 "synchronize_rcu_bh_expedited" => "synchronize_rcu_expedited",
817 "call_rcu_bh" => "call_rcu",
818 "rcu_barrier_bh" => "rcu_barrier",
819 "synchronize_sched" => "synchronize_rcu",
820 "synchronize_sched_expedited" => "synchronize_rcu_expedited",
821 "call_rcu_sched" => "call_rcu",
822 "rcu_barrier_sched" => "rcu_barrier",
823 "get_state_synchronize_sched" => "get_state_synchronize_rcu",
824 "cond_synchronize_sched" => "cond_synchronize_rcu",
825 "kmap" => "kmap_local_page",
826 "kunmap" => "kunmap_local",
827 "kmap_atomic" => "kmap_local_page",
828 "kunmap_atomic" => "kunmap_local",
831 #Create a search pattern for all these strings to speed up a loop below
832 our $deprecated_apis_search = "";
833 foreach my $entry (keys %deprecated_apis) {
834 $deprecated_apis_search .= '|' if ($deprecated_apis_search ne "");
835 $deprecated_apis_search .= $entry;
837 $deprecated_apis_search = "(?:${deprecated_apis_search})";
839 our $mode_perms_world_writable = qr{
847 our %mode_permission_string_types = (
866 #Create a search pattern for all these strings to speed up a loop below
867 our $mode_perms_string_search = "";
868 foreach my $entry (keys %mode_permission_string_types) {
869 $mode_perms_string_search .= '|' if ($mode_perms_string_search ne "");
870 $mode_perms_string_search .= $entry;
872 our $single_mode_perms_string_search = "(?:${mode_perms_string_search})";
873 our $multi_mode_perms_string_search = qr{
874 ${single_mode_perms_string_search}
875 (?:\s*\|\s*${single_mode_perms_string_search})*
881 return trim($string) if ($string =~ /^\s*0[0-7]{3,3}\s*$/);
888 while ($string =~ /\b(($single_mode_perms_string_search)\b(?:\s*\|\s*)?\s*)/g) {
889 $curpos = pos($string);
892 last if ($lastpos > 0 && ($curpos - length($omatch) != $lastpos));
894 $to |= $mode_permission_string_types{$match};
895 $val .= '\s*\|\s*' if ($val ne "");
899 $oval =~ s/^\s*\|\s*//;
900 $oval =~ s/\s*\|\s*$//;
901 return sprintf("%04o", $to);
904 our $allowed_asm_includes = qr{(?x:
910 # memory.h: ARM has a custom one
912 # Load common spelling mistakes and build regular expression list.
916 if (open(my $spelling, '<', $spelling_file)) {
917 while (<$spelling>) {
920 $line =~ s/\s*\n?$//g;
923 next if ($line =~ m/^\s*#/);
924 next if ($line =~ m/^\s*$/);
926 my ($suspect, $fix) = split(/\|\|/, $line);
928 $spelling_fix{$suspect} = $fix;
932 warn "No typos will be found - file '$spelling_file': $!\n";
936 if (open(my $spelling, '<', $codespellfile)) {
937 while (<$spelling>) {
940 $line =~ s/\s*\n?$//g;
943 next if ($line =~ m/^\s*#/);
944 next if ($line =~ m/^\s*$/);
945 next if ($line =~ m/, disabled/i);
949 my ($suspect, $fix) = split(/->/, $line);
951 $spelling_fix{$suspect} = $fix;
955 warn "No codespell typos will be found - file '$codespellfile': $!\n";
959 $misspellings = join("|", sort keys %spelling_fix) if keys %spelling_fix;
962 my ($wordsRef, $file) = @_;
964 if (open(my $words, '<', $file)) {
968 $line =~ s/\s*\n?$//g;
971 next if ($line =~ m/^\s*#/);
972 next if ($line =~ m/^\s*$/);
974 print("$file: '$line' invalid - ignored\n");
978 $$wordsRef .= '|' if (defined $$wordsRef);
989 if (show_type("CONST_STRUCT")) {
990 read_words(\$const_structs, $conststructsfile)
991 or warn "No structs that should be const will be found - file '$conststructsfile': $!\n";
994 if (defined($typedefsfile)) {
995 my $typeOtherTypedefs;
996 read_words(\$typeOtherTypedefs, $typedefsfile)
997 or warn "No additional types will be considered - file '$typedefsfile': $!\n";
998 $typeTypedefs .= '|' . $typeOtherTypedefs if (defined $typeOtherTypedefs);
1002 my $mods = "(?x: \n" . join("|\n ", (@modifierList, @modifierListFile)) . "\n)";
1003 my $all = "(?x: \n" . join("|\n ", (@typeList, @typeListFile)) . "\n)";
1004 my $Misordered = "(?x: \n" . join("|\n ", @typeListMisordered) . "\n)";
1005 my $allWithAttr = "(?x: \n" . join("|\n ", @typeListWithAttr) . "\n)";
1006 $Modifier = qr{(?:$Attribute|$Sparse|$mods)};
1008 (?:$typeTypedefs\b)|
1012 (?:$Modifier\s+|const\s+)*
1014 (?:typeof|__typeof__)\s*\([^\)]*\)|
1015 (?:$typeTypedefs\b)|
1018 (?:\s+$Modifier|\s+const)*
1020 $NonptrTypeMisordered = qr{
1021 (?:$Modifier\s+|const\s+)*
1025 (?:\s+$Modifier|\s+const)*
1027 $NonptrTypeWithAttr = qr{
1028 (?:$Modifier\s+|const\s+)*
1030 (?:typeof|__typeof__)\s*\([^\)]*\)|
1031 (?:$typeTypedefs\b)|
1032 (?:${allWithAttr}\b)
1034 (?:\s+$Modifier|\s+const)*
1038 (?:(?:\s|\*|\[\])+\s*const|(?:\s|\*\s*(?:const\s*)?|\[\])+|(?:\s*\[\s*\])+){0,4}
1039 (?:\s+$Inline|\s+$Modifier)*
1041 $TypeMisordered = qr{
1042 $NonptrTypeMisordered
1043 (?:(?:\s|\*|\[\])+\s*const|(?:\s|\*\s*(?:const\s*)?|\[\])+|(?:\s*\[\s*\])+){0,4}
1044 (?:\s+$Inline|\s+$Modifier)*
1046 $Declare = qr{(?:$Storage\s+(?:$Inline\s+)?)?$Type};
1047 $DeclareMisordered = qr{(?:$Storage\s+(?:$Inline\s+)?)?$TypeMisordered};
1051 our $Typecast = qr{\s*(\(\s*$NonptrType\s*\)){0,1}\s*};
1053 # Using $balanced_parens, $LvalOrFunc, or $FuncArg
1054 # requires at least perl version v5.10.0
1055 # Any use must be runtime checked with $^V
1057 our $balanced_parens = qr/(\((?:[^\(\)]++|(?-1))*\))/;
1058 our $LvalOrFunc = qr{((?:[\&\*]\s*)?$Lval)\s*($balanced_parens{0,1})\s*};
1059 our $FuncArg = qr{$Typecast{0,1}($LvalOrFunc|$Constant|$String)};
1061 our $declaration_macros = qr{(?x:
1062 (?:$Storage\s+)?(?:[A-Z_][A-Z0-9]*_){0,2}(?:DEFINE|DECLARE)(?:_[A-Z0-9]+){1,6}\s*\(|
1063 (?:$Storage\s+)?[HLP]?LIST_HEAD\s*\(|
1064 (?:SKCIPHER_REQUEST|SHASH_DESC|AHASH_REQUEST)_ON_STACK\s*\(|
1065 (?:$Storage\s+)?(?:XA_STATE|XA_STATE_ORDER)\s*\(
1068 our %allow_repeated_words = (
1075 sub deparenthesize {
1077 return "" if (!defined($string));
1079 while ($string =~ /^\s*\(.*\)\s*$/) {
1080 $string =~ s@^\s*\(\s*@@;
1081 $string =~ s@\s*\)\s*$@@;
1084 $string =~ s@\s+@ @g;
1089 sub seed_camelcase_file {
1092 return if (!(-f $file));
1096 open(my $include_file, '<', "$file")
1097 or warn "$P: Can't read '$file' $!\n";
1098 my $text = <$include_file>;
1099 close($include_file);
1101 my @lines = split('\n', $text);
1103 foreach my $line (@lines) {
1104 next if ($line !~ /(?:[A-Z][a-z]|[a-z][A-Z])/);
1105 if ($line =~ /^[ \t]*(?:#[ \t]*define|typedef\s+$Type)\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)/) {
1107 } elsif ($line =~ /^\s*$Declare\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)\s*[\(\[,;]/) {
1109 } elsif ($line =~ /^\s*(?:union|struct|enum)\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)\s*[;\{]/) {
1115 our %maintained_status = ();
1117 sub is_maintained_obsolete {
1118 my ($filename) = @_;
1120 return 0 if (!$tree || !(-e "$root/scripts/get_maintainer.pl"));
1122 if (!exists($maintained_status{$filename})) {
1123 $maintained_status{$filename} = `perl $root/scripts/get_maintainer.pl --status --nom --nol --nogit --nogit-fallback -f $filename 2>&1`;
1126 return $maintained_status{$filename} =~ /obsolete/i;
1129 sub is_SPDX_License_valid {
1132 return 1 if (!$tree || which("python3") eq "" || !(-x "$root/scripts/spdxcheck.py") || !(-e "$gitroot"));
1134 my $root_path = abs_path($root);
1135 my $status = `cd "$root_path"; echo "$license" | scripts/spdxcheck.py -`;
1136 return 0 if ($status ne "");
1140 my $camelcase_seeded = 0;
1141 sub seed_camelcase_includes {
1142 return if ($camelcase_seeded);
1145 my $camelcase_cache = "";
1146 my @include_files = ();
1148 $camelcase_seeded = 1;
1150 if (-e "$gitroot") {
1151 my $git_last_include_commit = `${git_command} log --no-merges --pretty=format:"%h%n" -1 -- include`;
1152 chomp $git_last_include_commit;
1153 $camelcase_cache = ".checkpatch-camelcase.git.$git_last_include_commit";
1155 my $last_mod_date = 0;
1156 $files = `find $root/include -name "*.h"`;
1157 @include_files = split('\n', $files);
1158 foreach my $file (@include_files) {
1159 my $date = POSIX::strftime("%Y%m%d%H%M",
1160 localtime((stat $file)[9]));
1161 $last_mod_date = $date if ($last_mod_date < $date);
1163 $camelcase_cache = ".checkpatch-camelcase.date.$last_mod_date";
1166 if ($camelcase_cache ne "" && -f $camelcase_cache) {
1167 open(my $camelcase_file, '<', "$camelcase_cache")
1168 or warn "$P: Can't read '$camelcase_cache' $!\n";
1169 while (<$camelcase_file>) {
1173 close($camelcase_file);
1178 if (-e "$gitroot") {
1179 $files = `${git_command} ls-files "include/*.h"`;
1180 @include_files = split('\n', $files);
1183 foreach my $file (@include_files) {
1184 seed_camelcase_file($file);
1187 if ($camelcase_cache ne "") {
1188 unlink glob ".checkpatch-camelcase.*";
1189 open(my $camelcase_file, '>', "$camelcase_cache")
1190 or warn "$P: Can't write '$camelcase_cache' $!\n";
1191 foreach (sort { lc($a) cmp lc($b) } keys(%camelcase)) {
1192 print $camelcase_file ("$_\n");
1194 close($camelcase_file);
1198 sub git_is_single_file {
1199 my ($filename) = @_;
1201 return 0 if ((which("git") eq "") || !(-e "$gitroot"));
1203 my $output = `${git_command} ls-files -- $filename 2>/dev/null`;
1204 my $count = $output =~ tr/\n//;
1205 return $count eq 1 && $output =~ m{^${filename}$};
1208 sub git_commit_info {
1209 my ($commit, $id, $desc) = @_;
1211 return ($id, $desc) if ((which("git") eq "") || !(-e "$gitroot"));
1213 my $output = `${git_command} log --no-color --format='%H %s' -1 $commit 2>&1`;
1214 $output =~ s/^\s*//gm;
1215 my @lines = split("\n", $output);
1217 return ($id, $desc) if ($#lines < 0);
1219 if ($lines[0] =~ /^error: short SHA1 $commit is ambiguous/) {
1220 # Maybe one day convert this block of bash into something that returns
1221 # all matching commit ids, but it's very slow...
1223 # echo "checking commits $1..."
1224 # git rev-list --remotes | grep -i "^$1" |
1225 # while read line ; do
1226 # git log --format='%H %s' -1 $line |
1227 # echo "commit $(cut -c 1-12,41-)"
1229 } elsif ($lines[0] =~ /^fatal: ambiguous argument '$commit': unknown revision or path not in the working tree\./ ||
1230 $lines[0] =~ /^fatal: bad object $commit/) {
1233 $id = substr($lines[0], 0, 12);
1234 $desc = substr($lines[0], 41);
1237 return ($id, $desc);
1240 $chk_signoff = 0 if ($file);
1245 my @fixed_inserted = ();
1246 my @fixed_deleted = ();
1249 # If input is git commits, extract all commits from the commit expressions.
1250 # For example, HEAD-3 means we need check 'HEAD, HEAD~1, HEAD~2'.
1251 die "$P: No git repository found\n" if ($git && !-e "$gitroot");
1255 foreach my $commit_expr (@ARGV) {
1257 if ($commit_expr =~ m/^(.*)-(\d+)$/) {
1258 $git_range = "-$2 $1";
1259 } elsif ($commit_expr =~ m/\.\./) {
1260 $git_range = "$commit_expr";
1262 $git_range = "-1 $commit_expr";
1264 my $lines = `${git_command} log --no-color --no-merges --pretty=format:'%H %s' $git_range`;
1265 foreach my $line (split(/\n/, $lines)) {
1266 $line =~ /^([0-9a-fA-F]{40,40}) (.*)$/;
1267 next if (!defined($1) || !defined($2));
1270 unshift(@commits, $sha1);
1271 $git_commits{$sha1} = $subject;
1274 die "$P: no git commits after extraction!\n" if (@commits == 0);
1279 $allow_c99_comments = !defined $ignore_type{"C99_COMMENT_TOLERANCE"};
1280 for my $filename (@ARGV) {
1282 my $is_git_file = git_is_single_file($filename);
1283 my $oldfile = $file;
1284 $file = 1 if ($is_git_file);
1286 open($FILE, '-|', "git format-patch -M --stdout -1 $filename") ||
1287 die "$P: $filename: git format-patch failed - $!\n";
1289 open($FILE, '-|', "diff -u /dev/null $filename") ||
1290 die "$P: $filename: diff failed - $!\n";
1291 } elsif ($filename eq '-') {
1292 open($FILE, '<&STDIN');
1294 open($FILE, '<', "$filename") ||
1295 die "$P: $filename: open failed - $!\n";
1297 if ($filename eq '-') {
1298 $vname = 'Your patch';
1300 $vname = "Commit " . substr($filename, 0, 12) . ' ("' . $git_commits{$filename} . '")';
1306 push(@rawlines, $_);
1307 $vname = qq("$1") if ($filename eq '-' && $_ =~ m/^Subject:\s+(.+)/i);
1311 if ($#ARGV > 0 && $quiet == 0) {
1312 print '-' x length($vname) . "\n";
1314 print '-' x length($vname) . "\n";
1317 if (!process($filename)) {
1323 @fixed_inserted = ();
1324 @fixed_deleted = ();
1326 @modifierListFile = ();
1329 $file = $oldfile if ($is_git_file);
1333 hash_show_words(\%use_type, "Used");
1334 hash_show_words(\%ignore_type, "Ignored");
1336 if (!$perl_version_ok) {
1339 NOTE: perl $^V is not modern enough to detect all possible issues.
1340 An upgrade to at least perl $minimum_perl_version is suggested.
1346 NOTE: If any of the errors are false positives, please report
1347 them to the maintainer, see CHECKPATCH in MAINTAINERS.
1354 sub top_of_kernel_tree {
1358 "COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
1359 "README", "Documentation", "arch", "include", "drivers",
1360 "fs", "init", "ipc", "kernel", "lib", "scripts",
1363 foreach my $check (@tree_check) {
1364 if (! -e $root . '/' . $check) {
1372 my ($formatted_email) = @_;
1376 my $name_comment = "";
1380 if ($formatted_email =~ /^(.*)<(\S+\@\S+)>(.*)$/) {
1383 $comment = $3 if defined $3;
1384 } elsif ($formatted_email =~ /^\s*<(\S+\@\S+)>(.*)$/) {
1386 $comment = $2 if defined $2;
1387 } elsif ($formatted_email =~ /(\S+\@\S+)(.*)$/) {
1389 $comment = $2 if defined $2;
1390 $formatted_email =~ s/\Q$address\E.*$//;
1391 $name = $formatted_email;
1392 $name = trim($name);
1393 $name =~ s/^\"|\"$//g;
1394 # If there's a name left after stripping spaces and
1395 # leading quotes, and the address doesn't have both
1396 # leading and trailing angle brackets, the address
1398 # "joe smith joe@smith.com" bad
1399 # "joe smith <joe@smith.com" bad
1400 if ($name ne "" && $address !~ /^<[^>]+>$/) {
1407 # Extract comments from names excluding quoted parts
1408 # "John D. (Doe)" - Do not extract
1409 if ($name =~ s/\"(.+)\"//) {
1412 while ($name =~ s/\s*($balanced_parens)\s*/ /) {
1413 $name_comment .= trim($1);
1415 $name =~ s/^[ \"]+|[ \"]+$//g;
1416 $name = trim("$quoted $name");
1418 $address = trim($address);
1419 $address =~ s/^\<|\>$//g;
1420 $comment = trim($comment);
1422 if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
1423 $name =~ s/(?<!\\)"/\\"/g; ##escape quotes
1424 $name = "\"$name\"";
1427 return ($name, $name_comment, $address, $comment);
1431 my ($name, $name_comment, $address, $comment) = @_;
1433 my $formatted_email;
1435 $name =~ s/^[ \"]+|[ \"]+$//g;
1436 $address = trim($address);
1437 $address =~ s/(?:\.|\,|\")+$//; ##trailing commas, dots or quotes
1439 if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
1440 $name =~ s/(?<!\\)"/\\"/g; ##escape quotes
1441 $name = "\"$name\"";
1444 $name_comment = trim($name_comment);
1445 $name_comment = " $name_comment" if ($name_comment ne "");
1446 $comment = trim($comment);
1447 $comment = " $comment" if ($comment ne "");
1449 if ("$name" eq "") {
1450 $formatted_email = "$address";
1452 $formatted_email = "$name$name_comment <$address>";
1454 $formatted_email .= "$comment";
1455 return $formatted_email;
1458 sub reformat_email {
1461 my ($email_name, $name_comment, $email_address, $comment) = parse_email($email);
1462 return format_email($email_name, $name_comment, $email_address, $comment);
1465 sub same_email_addresses {
1466 my ($email1, $email2) = @_;
1468 my ($email1_name, $name1_comment, $email1_address, $comment1) = parse_email($email1);
1469 my ($email2_name, $name2_comment, $email2_address, $comment2) = parse_email($email2);
1471 return $email1_name eq $email2_name &&
1472 $email1_address eq $email2_address &&
1473 $name1_comment eq $name2_comment &&
1474 $comment1 eq $comment2;
1480 foreach my $path (split(/:/, $ENV{PATH})) {
1481 if (-e "$path/$bin") {
1482 return "$path/$bin";
1492 foreach my $path (split(/:/, ".:$ENV{HOME}:.scripts")) {
1493 if (-e "$path/$conf") {
1494 return "$path/$conf";
1506 for my $c (split(//, $str)) {
1510 for (; ($n % $tabsize) != 0; $n++) {
1522 (my $res = shift) =~ tr/\t/ /c;
1529 # Drop the diff line leader and expand tabs
1531 $line = expand_tabs($line);
1533 # Pick the indent from the front of the line.
1534 my ($white) = ($line =~ /^(\s*)/);
1536 return (length($line), length($white));
1539 my $sanitise_quote = '';
1541 sub sanitise_line_reset {
1542 my ($in_comment) = @_;
1545 $sanitise_quote = '*/';
1547 $sanitise_quote = '';
1560 # Always copy over the diff marker.
1561 $res = substr($line, 0, 1);
1563 for ($off = 1; $off < length($line); $off++) {
1564 $c = substr($line, $off, 1);
1566 # Comments we are whacking completely including the begin
1567 # and end, all to $;.
1568 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
1569 $sanitise_quote = '*/';
1571 substr($res, $off, 2, "$;$;");
1575 if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') {
1576 $sanitise_quote = '';
1577 substr($res, $off, 2, "$;$;");
1581 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '//') {
1582 $sanitise_quote = '//';
1584 substr($res, $off, 2, $sanitise_quote);
1589 # A \ in a string means ignore the next character.
1590 if (($sanitise_quote eq "'" || $sanitise_quote eq '"') &&
1592 substr($res, $off, 2, 'XX');
1597 if ($c eq "'" || $c eq '"') {
1598 if ($sanitise_quote eq '') {
1599 $sanitise_quote = $c;
1601 substr($res, $off, 1, $c);
1603 } elsif ($sanitise_quote eq $c) {
1604 $sanitise_quote = '';
1608 #print "c<$c> SQ<$sanitise_quote>\n";
1609 if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") {
1610 substr($res, $off, 1, $;);
1611 } elsif ($off != 0 && $sanitise_quote eq '//' && $c ne "\t") {
1612 substr($res, $off, 1, $;);
1613 } elsif ($off != 0 && $sanitise_quote && $c ne "\t") {
1614 substr($res, $off, 1, 'X');
1616 substr($res, $off, 1, $c);
1620 if ($sanitise_quote eq '//') {
1621 $sanitise_quote = '';
1624 # The pathname on a #include may be surrounded by '<' and '>'.
1625 if ($res =~ /^.\s*\#\s*include\s+\<(.*)\>/) {
1626 my $clean = 'X' x length($1);
1627 $res =~ s@\<.*\>@<$clean>@;
1629 # The whole of a #error is a string.
1630 } elsif ($res =~ /^.\s*\#\s*(?:error|warning)\s+(.*)\b/) {
1631 my $clean = 'X' x length($1);
1632 $res =~ s@(\#\s*(?:error|warning)\s+).*@$1$clean@;
1635 if ($allow_c99_comments && $res =~ m@(//.*$)@) {
1637 $res =~ s/\Q$match\E/"$;" x length($match)/e;
1643 sub get_quoted_string {
1644 my ($line, $rawline) = @_;
1646 return "" if (!defined($line) || !defined($rawline));
1647 return "" if ($line !~ m/($String)/g);
1648 return substr($rawline, $-[0], $+[0] - $-[0]);
1651 sub ctx_statement_block {
1652 my ($linenr, $remain, $off) = @_;
1653 my $line = $linenr - 1;
1656 my $coff = $off - 1;
1670 @stack = (['', 0]) if ($#stack == -1);
1672 #warn "CSB: blk<$blk> remain<$remain>\n";
1673 # If we are about to drop off the end, pull in more
1676 for (; $remain > 0; $line++) {
1677 last if (!defined $lines[$line]);
1678 next if ($lines[$line] =~ /^-/);
1681 $blk .= $lines[$line] . "\n";
1682 $len = length($blk);
1686 # Bail if there is no further context.
1687 #warn "CSB: blk<$blk> off<$off> len<$len>\n";
1691 if ($level == 0 && substr($blk, $off) =~ /^.\s*#\s*define/) {
1697 $c = substr($blk, $off, 1);
1698 $remainder = substr($blk, $off);
1700 #warn "CSB: c<$c> type<$type> level<$level> remainder<$remainder> coff_set<$coff_set>\n";
1702 # Handle nested #if/#else.
1703 if ($remainder =~ /^#\s*(?:ifndef|ifdef|if)\s/) {
1704 push(@stack, [ $type, $level ]);
1705 } elsif ($remainder =~ /^#\s*(?:else|elif)\b/) {
1706 ($type, $level) = @{$stack[$#stack - 1]};
1707 } elsif ($remainder =~ /^#\s*endif\b/) {
1708 ($type, $level) = @{pop(@stack)};
1711 # Statement ends at the ';' or a close '}' at the
1713 if ($level == 0 && $c eq ';') {
1717 # An else is really a conditional as long as its not else if
1718 if ($level == 0 && $coff_set == 0 &&
1719 (!defined($p) || $p =~ /(?:\s|\}|\+)/) &&
1720 $remainder =~ /^(else)(?:\s|{)/ &&
1721 $remainder !~ /^else\s+if\b/) {
1722 $coff = $off + length($1) - 1;
1724 #warn "CSB: mark coff<$coff> soff<$soff> 1<$1>\n";
1725 #warn "[" . substr($blk, $soff, $coff - $soff + 1) . "]\n";
1728 if (($type eq '' || $type eq '(') && $c eq '(') {
1732 if ($type eq '(' && $c eq ')') {
1734 $type = ($level != 0)? '(' : '';
1736 if ($level == 0 && $coff < $soff) {
1739 #warn "CSB: mark coff<$coff>\n";
1742 if (($type eq '' || $type eq '{') && $c eq '{') {
1746 if ($type eq '{' && $c eq '}') {
1748 $type = ($level != 0)? '{' : '';
1751 if (substr($blk, $off + 1, 1) eq ';') {
1757 # Preprocessor commands end at the newline unless escaped.
1758 if ($type eq '#' && $c eq "\n" && $p ne "\\") {
1766 # We are truly at the end, so shuffle to the next line.
1773 my $statement = substr($blk, $soff, $off - $soff + 1);
1774 my $condition = substr($blk, $soff, $coff - $soff + 1);
1776 #warn "STATEMENT<$statement>\n";
1777 #warn "CONDITION<$condition>\n";
1779 #print "coff<$coff> soff<$off> loff<$loff>\n";
1781 return ($statement, $condition,
1782 $line, $remain + 1, $off - $loff + 1, $level);
1785 sub statement_lines {
1788 # Strip the diff line prefixes and rip blank lines at start and end.
1789 $stmt =~ s/(^|\n)./$1/g;
1793 my @stmt_lines = ($stmt =~ /\n/g);
1795 return $#stmt_lines + 2;
1798 sub statement_rawlines {
1801 my @stmt_lines = ($stmt =~ /\n/g);
1803 return $#stmt_lines + 2;
1806 sub statement_block_size {
1809 $stmt =~ s/(^|\n)./$1/g;
1815 my @stmt_lines = ($stmt =~ /\n/g);
1816 my @stmt_statements = ($stmt =~ /;/g);
1818 my $stmt_lines = $#stmt_lines + 2;
1819 my $stmt_statements = $#stmt_statements + 1;
1821 if ($stmt_lines > $stmt_statements) {
1824 return $stmt_statements;
1828 sub ctx_statement_full {
1829 my ($linenr, $remain, $off) = @_;
1830 my ($statement, $condition, $level);
1834 # Grab the first conditional/block pair.
1835 ($statement, $condition, $linenr, $remain, $off, $level) =
1836 ctx_statement_block($linenr, $remain, $off);
1837 #print "F: c<$condition> s<$statement> remain<$remain>\n";
1838 push(@chunks, [ $condition, $statement ]);
1839 if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
1840 return ($level, $linenr, @chunks);
1843 # Pull in the following conditional/block pairs and see if they
1844 # could continue the statement.
1846 ($statement, $condition, $linenr, $remain, $off, $level) =
1847 ctx_statement_block($linenr, $remain, $off);
1848 #print "C: c<$condition> s<$statement> remain<$remain>\n";
1849 last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
1851 push(@chunks, [ $condition, $statement ]);
1854 return ($level, $linenr, @chunks);
1858 my ($linenr, $remain, $outer, $open, $close, $off) = @_;
1860 my $start = $linenr - 1;
1867 my @stack = ($level);
1868 for ($line = $start; $remain > 0; $line++) {
1869 next if ($rawlines[$line] =~ /^-/);
1872 $blk .= $rawlines[$line];
1874 # Handle nested #if/#else.
1875 if ($lines[$line] =~ /^.\s*#\s*(?:ifndef|ifdef|if)\s/) {
1876 push(@stack, $level);
1877 } elsif ($lines[$line] =~ /^.\s*#\s*(?:else|elif)\b/) {
1878 $level = $stack[$#stack - 1];
1879 } elsif ($lines[$line] =~ /^.\s*#\s*endif\b/) {
1880 $level = pop(@stack);
1883 foreach my $c (split(//, $lines[$line])) {
1884 ##print "C<$c>L<$level><$open$close>O<$off>\n";
1890 if ($c eq $close && $level > 0) {
1892 last if ($level == 0);
1893 } elsif ($c eq $open) {
1898 if (!$outer || $level <= 1) {
1899 push(@res, $rawlines[$line]);
1902 last if ($level == 0);
1905 return ($level, @res);
1907 sub ctx_block_outer {
1908 my ($linenr, $remain) = @_;
1910 my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0);
1914 my ($linenr, $remain) = @_;
1916 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0);
1920 my ($linenr, $remain, $off) = @_;
1922 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
1925 sub ctx_block_level {
1926 my ($linenr, $remain) = @_;
1928 return ctx_block_get($linenr, $remain, 0, '{', '}', 0);
1930 sub ctx_statement_level {
1931 my ($linenr, $remain, $off) = @_;
1933 return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
1936 sub ctx_locate_comment {
1937 my ($first_line, $end_line) = @_;
1939 # If c99 comment on the current line, or the line before or after
1940 my ($current_comment) = ($rawlines[$end_line - 1] =~ m@^\+.*(//.*$)@);
1941 return $current_comment if (defined $current_comment);
1942 ($current_comment) = ($rawlines[$end_line - 2] =~ m@^[\+ ].*(//.*$)@);
1943 return $current_comment if (defined $current_comment);
1944 ($current_comment) = ($rawlines[$end_line] =~ m@^[\+ ].*(//.*$)@);
1945 return $current_comment if (defined $current_comment);
1947 # Catch a comment on the end of the line itself.
1948 ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@);
1949 return $current_comment if (defined $current_comment);
1951 # Look through the context and try and figure out if there is a
1954 $current_comment = '';
1955 for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
1956 my $line = $rawlines[$linenr - 1];
1958 if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
1961 if ($line =~ m@/\*@) {
1964 if (!$in_comment && $current_comment ne '') {
1965 $current_comment = '';
1967 $current_comment .= $line . "\n" if ($in_comment);
1968 if ($line =~ m@\*/@) {
1973 chomp($current_comment);
1974 return($current_comment);
1976 sub ctx_has_comment {
1977 my ($first_line, $end_line) = @_;
1978 my $cmt = ctx_locate_comment($first_line, $end_line);
1980 ##print "LINE: $rawlines[$end_line - 1 ]\n";
1981 ##print "CMMT: $cmt\n";
1983 return ($cmt ne '');
1987 my ($linenr, $cnt) = @_;
1989 my $offset = $linenr - 1;
1994 $line = $rawlines[$offset++];
1995 next if (defined($line) && $line =~ /^-/);
2003 my ($linenr, $lc) = @_;
2005 my $stat_real = raw_line($linenr, 0);
2006 for (my $count = $linenr + 1; $count <= $lc; $count++) {
2007 $stat_real = $stat_real . "\n" . raw_line($count, 0);
2014 my ($linenr, $cnt, $here) = @_;
2016 my $herectx = $here . "\n";
2017 for (my $n = 0; $n < $cnt; $n++) {
2018 $herectx .= raw_line($linenr, $n) . "\n";
2029 while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
2032 $coded = sprintf("^%c", unpack('C', $2) + 64);
2041 my $av_preprocessor = 0;
2046 sub annotate_reset {
2047 $av_preprocessor = 0;
2049 @av_paren_type = ('E');
2050 $av_pend_colon = 'O';
2053 sub annotate_values {
2054 my ($stream, $type) = @_;
2057 my $var = '_' x length($stream);
2060 print "$stream\n" if ($dbg_values > 1);
2062 while (length($cur)) {
2063 @av_paren_type = ('E') if ($#av_paren_type < 0);
2064 print " <" . join('', @av_paren_type) .
2065 "> <$type> <$av_pending>" if ($dbg_values > 1);
2066 if ($cur =~ /^(\s+)/o) {
2067 print "WS($1)\n" if ($dbg_values > 1);
2068 if ($1 =~ /\n/ && $av_preprocessor) {
2069 $type = pop(@av_paren_type);
2070 $av_preprocessor = 0;
2073 } elsif ($cur =~ /^(\(\s*$Type\s*)\)/ && $av_pending eq '_') {
2074 print "CAST($1)\n" if ($dbg_values > 1);
2075 push(@av_paren_type, $type);
2078 } elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\(|\s*$)/) {
2079 print "DECLARE($1)\n" if ($dbg_values > 1);
2082 } elsif ($cur =~ /^($Modifier)\s*/) {
2083 print "MODIFIER($1)\n" if ($dbg_values > 1);
2086 } elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) {
2087 print "DEFINE($1,$2)\n" if ($dbg_values > 1);
2088 $av_preprocessor = 1;
2089 push(@av_paren_type, $type);
2095 } elsif ($cur =~ /^(\#\s*(?:undef\s*$Ident|include\b))/o) {
2096 print "UNDEF($1)\n" if ($dbg_values > 1);
2097 $av_preprocessor = 1;
2098 push(@av_paren_type, $type);
2100 } elsif ($cur =~ /^(\#\s*(?:ifdef|ifndef|if))/o) {
2101 print "PRE_START($1)\n" if ($dbg_values > 1);
2102 $av_preprocessor = 1;
2104 push(@av_paren_type, $type);
2105 push(@av_paren_type, $type);
2108 } elsif ($cur =~ /^(\#\s*(?:else|elif))/o) {
2109 print "PRE_RESTART($1)\n" if ($dbg_values > 1);
2110 $av_preprocessor = 1;
2112 push(@av_paren_type, $av_paren_type[$#av_paren_type]);
2116 } elsif ($cur =~ /^(\#\s*(?:endif))/o) {
2117 print "PRE_END($1)\n" if ($dbg_values > 1);
2119 $av_preprocessor = 1;
2121 # Assume all arms of the conditional end as this
2122 # one does, and continue as if the #endif was not here.
2123 pop(@av_paren_type);
2124 push(@av_paren_type, $type);
2127 } elsif ($cur =~ /^(\\\n)/o) {
2128 print "PRECONT($1)\n" if ($dbg_values > 1);
2130 } elsif ($cur =~ /^(__attribute__)\s*\(?/o) {
2131 print "ATTR($1)\n" if ($dbg_values > 1);
2132 $av_pending = $type;
2135 } elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
2136 print "SIZEOF($1)\n" if ($dbg_values > 1);
2142 } elsif ($cur =~ /^(if|while|for)\b/o) {
2143 print "COND($1)\n" if ($dbg_values > 1);
2147 } elsif ($cur =~/^(case)/o) {
2148 print "CASE($1)\n" if ($dbg_values > 1);
2149 $av_pend_colon = 'C';
2152 } elsif ($cur =~/^(return|else|goto|typeof|__typeof__)\b/o) {
2153 print "KEYWORD($1)\n" if ($dbg_values > 1);
2156 } elsif ($cur =~ /^(\()/o) {
2157 print "PAREN('$1')\n" if ($dbg_values > 1);
2158 push(@av_paren_type, $av_pending);
2162 } elsif ($cur =~ /^(\))/o) {
2163 my $new_type = pop(@av_paren_type);
2164 if ($new_type ne '_') {
2166 print "PAREN('$1') -> $type\n"
2167 if ($dbg_values > 1);
2169 print "PAREN('$1')\n" if ($dbg_values > 1);
2172 } elsif ($cur =~ /^($Ident)\s*\(/o) {
2173 print "FUNC($1)\n" if ($dbg_values > 1);
2177 } elsif ($cur =~ /^($Ident\s*):(?:\s*\d+\s*(,|=|;))?/) {
2178 if (defined $2 && $type eq 'C' || $type eq 'T') {
2179 $av_pend_colon = 'B';
2180 } elsif ($type eq 'E') {
2181 $av_pend_colon = 'L';
2183 print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1);
2186 } elsif ($cur =~ /^($Ident|$Constant)/o) {
2187 print "IDENT($1)\n" if ($dbg_values > 1);
2190 } elsif ($cur =~ /^($Assignment)/o) {
2191 print "ASSIGN($1)\n" if ($dbg_values > 1);
2194 } elsif ($cur =~/^(;|{|})/) {
2195 print "END($1)\n" if ($dbg_values > 1);
2197 $av_pend_colon = 'O';
2199 } elsif ($cur =~/^(,)/) {
2200 print "COMMA($1)\n" if ($dbg_values > 1);
2203 } elsif ($cur =~ /^(\?)/o) {
2204 print "QUESTION($1)\n" if ($dbg_values > 1);
2207 } elsif ($cur =~ /^(:)/o) {
2208 print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1);
2210 substr($var, length($res), 1, $av_pend_colon);
2211 if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') {
2216 $av_pend_colon = 'O';
2218 } elsif ($cur =~ /^(\[)/o) {
2219 print "CLOSE($1)\n" if ($dbg_values > 1);
2222 } elsif ($cur =~ /^(-(?![->])|\+(?!\+)|\*|\&\&|\&)/o) {
2225 print "OPV($1)\n" if ($dbg_values > 1);
2232 substr($var, length($res), 1, $variant);
2235 } elsif ($cur =~ /^($Operators)/o) {
2236 print "OP($1)\n" if ($dbg_values > 1);
2237 if ($1 ne '++' && $1 ne '--') {
2241 } elsif ($cur =~ /(^.)/o) {
2242 print "C($1)\n" if ($dbg_values > 1);
2245 $cur = substr($cur, length($1));
2246 $res .= $type x length($1);
2250 return ($res, $var);
2254 my ($possible, $line) = @_;
2255 my $notPermitted = qr{(?:
2272 ^(?:typedef|struct|enum)\b
2274 warn "CHECK<$possible> ($line)\n" if ($dbg_possible > 2);
2275 if ($possible !~ $notPermitted) {
2276 # Check for modifiers.
2277 $possible =~ s/\s*$Storage\s*//g;
2278 $possible =~ s/\s*$Sparse\s*//g;
2279 if ($possible =~ /^\s*$/) {
2281 } elsif ($possible =~ /\s/) {
2282 $possible =~ s/\s*$Type\s*//g;
2283 for my $modifier (split(' ', $possible)) {
2284 if ($modifier !~ $notPermitted) {
2285 warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
2286 push(@modifierListFile, $modifier);
2291 warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
2292 push(@typeListFile, $possible);
2296 warn "NOTPOSS: $possible ($line)\n" if ($dbg_possible > 1);
2305 $type =~ tr/[a-z]/[A-Z]/;
2307 return defined $use_type{$type} if (scalar keys %use_type > 0);
2309 return !defined $ignore_type{$type};
2313 my ($level, $type, $msg) = @_;
2315 if (!show_type($type) ||
2316 (defined $tst_only && $msg !~ /\Q$tst_only\E/)) {
2321 if ($level eq 'ERROR') {
2323 } elsif ($level eq 'WARNING') {
2329 $output .= $prefix . $level . ':';
2331 $output .= BLUE if ($color);
2332 $output .= "$type:";
2334 $output .= RESET if ($color);
2335 $output .= ' ' . $msg . "\n";
2338 my @lines = split("\n", $output, -1);
2339 splice(@lines, 1, 1);
2340 $output = join("\n", @lines);
2344 $output = (split('\n', $output))[0] . "\n";
2347 if ($verbose && exists($verbose_messages{$type}) &&
2348 !exists($verbose_emitted{$type})) {
2349 $output .= $verbose_messages{$type} . "\n\n";
2350 $verbose_emitted{$type} = 1;
2353 push(our @report, $output);
2362 sub fixup_current_range {
2363 my ($lineRef, $offset, $length) = @_;
2365 if ($$lineRef =~ /^\@\@ -\d+,\d+ \+(\d+),(\d+) \@\@/) {
2368 my $no = $o + $offset;
2369 my $nl = $l + $length;
2370 $$lineRef =~ s/\+$o,$l \@\@/\+$no,$nl \@\@/;
2374 sub fix_inserted_deleted_lines {
2375 my ($linesRef, $insertedRef, $deletedRef) = @_;
2377 my $range_last_linenr = 0;
2378 my $delta_offset = 0;
2383 my $next_insert = 0;
2384 my $next_delete = 0;
2388 my $inserted = @{$insertedRef}[$next_insert++];
2389 my $deleted = @{$deletedRef}[$next_delete++];
2391 foreach my $old_line (@{$linesRef}) {
2393 my $line = $old_line; #don't modify the array
2394 if ($line =~ /^(?:\+\+\+|\-\-\-)\s+\S+/) { #new filename
2396 } elsif ($line =~ /^\@\@ -\d+,\d+ \+\d+,\d+ \@\@/) { #new hunk
2397 $range_last_linenr = $new_linenr;
2398 fixup_current_range(\$line, $delta_offset, 0);
2401 while (defined($deleted) && ${$deleted}{'LINENR'} == $old_linenr) {
2402 $deleted = @{$deletedRef}[$next_delete++];
2404 fixup_current_range(\$lines[$range_last_linenr], $delta_offset--, -1);
2407 while (defined($inserted) && ${$inserted}{'LINENR'} == $old_linenr) {
2408 push(@lines, ${$inserted}{'LINE'});
2409 $inserted = @{$insertedRef}[$next_insert++];
2411 fixup_current_range(\$lines[$range_last_linenr], $delta_offset++, 1);
2415 push(@lines, $line);
2425 sub fix_insert_line {
2426 my ($linenr, $line) = @_;
2432 push(@fixed_inserted, $inserted);
2435 sub fix_delete_line {
2436 my ($linenr, $line) = @_;
2443 push(@fixed_deleted, $deleted);
2447 my ($type, $msg) = @_;
2449 if (report("ERROR", $type, $msg)) {
2457 my ($type, $msg) = @_;
2459 if (report("WARNING", $type, $msg)) {
2467 my ($type, $msg) = @_;
2469 if ($check && report("CHECK", $type, $msg)) {
2477 sub check_absolute_file {
2478 my ($absolute, $herecurr) = @_;
2479 my $file = $absolute;
2481 ##print "absolute<$absolute>\n";
2483 # See if any suffix of this path is a path within the tree.
2484 while ($file =~ s@^[^/]*/@@) {
2485 if (-f "$root/$file") {
2486 ##print "file<$file>\n";
2494 # It is, so see if the prefix is acceptable.
2495 my $prefix = $absolute;
2496 substr($prefix, -length($file)) = '';
2498 ##print "prefix<$prefix>\n";
2499 if ($prefix ne ".../") {
2500 WARN("USE_RELATIVE_PATH",
2501 "use relative pathname instead of absolute in changelog text\n" . $herecurr);
2508 $string =~ s/^\s+|\s+$//g;
2516 $string =~ s/^\s+//;
2524 $string =~ s/\s+$//;
2529 sub string_find_replace {
2530 my ($string, $find, $replace) = @_;
2532 $string =~ s/$find/$replace/g;
2540 my $source_indent = $tabsize;
2541 my $max_spaces_before_tab = $source_indent - 1;
2542 my $spaces_to_tab = " " x $source_indent;
2544 #convert leading spaces to tabs
2545 1 while $leading =~ s@^([\t]*)$spaces_to_tab@$1\t@g;
2546 #Remove spaces before a tab
2547 1 while $leading =~ s@^([\t]*)( {1,$max_spaces_before_tab})\t@$1\t@g;
2552 sub pos_last_openparen {
2557 my $opens = $line =~ tr/\(/\(/;
2558 my $closes = $line =~ tr/\)/\)/;
2560 my $last_openparen = 0;
2562 if (($opens == 0) || ($closes >= $opens)) {
2566 my $len = length($line);
2568 for ($pos = 0; $pos < $len; $pos++) {
2569 my $string = substr($line, $pos);
2570 if ($string =~ /^($FuncArg|$balanced_parens)/) {
2571 $pos += length($1) - 1;
2572 } elsif (substr($line, $pos, 1) eq '(') {
2573 $last_openparen = $pos;
2574 } elsif (index($string, '(') == -1) {
2579 return length(expand_tabs(substr($line, 0, $last_openparen))) + 1;
2582 sub get_raw_comment {
2583 my ($line, $rawline) = @_;
2586 for my $i (0 .. (length($line) - 1)) {
2587 if (substr($line, $i, 1) eq "$;") {
2588 $comment .= substr($rawline, $i, 1);
2595 sub exclude_global_initialisers {
2596 my ($realfile) = @_;
2598 # Do not check for BPF programs (tools/testing/selftests/bpf/progs/*.c, samples/bpf/*_kern.c, *.bpf.c).
2599 return $realfile =~ m@^tools/testing/selftests/bpf/progs/.*\.c$@ ||
2600 $realfile =~ m@^samples/bpf/.*_kern\.c$@ ||
2601 $realfile =~ m@/bpf/.*\.bpf\.c$@;
2605 my $filename = shift;
2611 my $stashrawline="";
2621 my $authorsignoff = 0;
2622 my $author_sob = '';
2624 my $is_binding_patch = -1;
2625 my $in_header_lines = $file ? 0 : 1;
2626 my $in_commit_log = 0; #Scanning lines before patch
2627 my $has_patch_separator = 0; #Found a --- line
2628 my $has_commit_log = 0; #Encountered lines before patch
2629 my $commit_log_lines = 0; #Number of commit log lines
2630 my $commit_log_possible_stack_dump = 0;
2631 my $commit_log_long_line = 0;
2632 my $commit_log_has_diff = 0;
2633 my $reported_maintainer_file = 0;
2634 my $non_utf8_charset = 0;
2636 my $last_git_commit_id_linenr = -1;
2638 my $last_blank_line = 0;
2639 my $last_coalesced_string_linenr = -1;
2647 # Trace the real file/line as we go.
2652 my $context_function; #undef'd unless there's a known function
2654 my $comment_edge = 0;
2658 my $prev_values = 'E';
2661 my %suppress_ifbraces;
2662 my %suppress_whiletrailers;
2663 my %suppress_export;
2664 my $suppress_statement = 0;
2666 my %signatures = ();
2668 # Pre-scan the patch sanitizing the lines.
2669 # Pre-scan the patch looking for any __setup documentation.
2671 my @setup_docs = ();
2674 my $camelcase_file_seeded = 0;
2676 my $checklicenseline = 1;
2678 sanitise_line_reset();
2680 foreach my $rawline (@rawlines) {
2684 push(@fixed, $rawline) if ($fix);
2686 if ($rawline=~/^\+\+\+\s+(\S+)/) {
2688 if ($1 =~ m@Documentation/admin-guide/kernel-parameters.txt$@) {
2693 if ($rawline =~ /^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
2702 # Guestimate if this is a continuing comment. Run
2703 # the context looking for a comment "edge". If this
2704 # edge is a close comment then we must be in a comment
2708 for (my $ln = $linenr + 1; $cnt > 0; $ln++) {
2709 next if (defined $rawlines[$ln - 1] &&
2710 $rawlines[$ln - 1] =~ /^-/);
2712 #print "RAW<$rawlines[$ln - 1]>\n";
2713 last if (!defined $rawlines[$ln - 1]);
2714 if ($rawlines[$ln - 1] =~ m@(/\*|\*/)@ &&
2715 $rawlines[$ln - 1] !~ m@"[^"]*(?:/\*|\*/)[^"]*"@) {
2720 if (defined $edge && $edge eq '*/') {
2724 # Guestimate if this is a continuing comment. If this
2725 # is the start of a diff block and this line starts
2726 # ' *' then it is very likely a comment.
2727 if (!defined $edge &&
2728 $rawlines[$linenr] =~ m@^.\s*(?:\*\*+| \*)(?:\s|$)@)
2733 ##print "COMMENT:$in_comment edge<$edge> $rawline\n";
2734 sanitise_line_reset($in_comment);
2736 } elsif ($realcnt && $rawline =~ /^(?:\+| |$)/) {
2737 # Standardise the strings and chars within the input to
2738 # simplify matching -- only bother with positive lines.
2739 $line = sanitise_line($rawline);
2741 push(@lines, $line);
2744 $realcnt-- if ($line =~ /^(?:\+| |$)/);
2749 #print "==>$rawline\n";
2750 #print "-->$line\n";
2752 if ($setup_docs && $line =~ /^\+/) {
2753 push(@setup_docs, $line);
2762 foreach my $line (@lines) {
2765 my $sline = $line; #copy of $line
2766 $sline =~ s/$;/ /g; #with comments as spaces
2768 my $rawline = $rawlines[$linenr - 1];
2769 my $raw_comment = get_raw_comment($line, $rawline);
2771 # check if it's a mode change, rename or start of a patch
2772 if (!$in_commit_log &&
2773 ($line =~ /^ mode change [0-7]+ => [0-7]+ \S+\s*$/ ||
2774 ($line =~ /^rename (?:from|to) \S+\s*$/ ||
2775 $line =~ /^diff --git a\/[\w\/\.\_\-]+ b\/\S+\s*$/))) {
2779 #extract the line range in the file after the patch is applied
2780 if (!$in_commit_log &&
2781 $line =~ /^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@(.*)/) {
2784 $first_line = $linenr + 1;
2794 %suppress_ifbraces = ();
2795 %suppress_whiletrailers = ();
2796 %suppress_export = ();
2797 $suppress_statement = 0;
2798 if ($context =~ /\b(\w+)\s*\(/) {
2799 $context_function = $1;
2801 undef $context_function;
2805 # track the line number as we move through the hunk, note that
2806 # new versions of GNU diff omit the leading space on completely
2807 # blank context lines so we need to count that too.
2808 } elsif ($line =~ /^( |\+|$)/) {
2810 $realcnt-- if ($realcnt != 0);
2812 # Measure the line length and indent.
2813 ($length, $indent) = line_stats($rawline);
2815 # Track the previous line.
2816 ($prevline, $stashline) = ($stashline, $line);
2817 ($previndent, $stashindent) = ($stashindent, $indent);
2818 ($prevrawline, $stashrawline) = ($stashrawline, $rawline);
2820 #warn "line<$line>\n";
2822 } elsif ($realcnt == 1) {
2826 my $hunk_line = ($realcnt != 0);
2828 $here = "#$linenr: " if (!$file);
2829 $here = "#$realline: " if ($file);
2832 # extract the filename as it passes
2833 if ($line =~ /^diff --git.*?(\S+)$/) {
2835 $realfile =~ s@^([^/]*)/@@ if (!$file);
2838 } elsif ($line =~ /^\+\+\+\s+(\S+)/) {
2840 $realfile =~ s@^([^/]*)/@@ if (!$file);
2844 if (!$file && $tree && $p1_prefix ne '' &&
2845 -e "$root/$p1_prefix") {
2846 WARN("PATCH_PREFIX",
2847 "patch prefix '$p1_prefix' exists, appears to be a -p0 patch\n");
2850 if ($realfile =~ m@^include/asm/@) {
2851 ERROR("MODIFIED_INCLUDE_ASM",
2852 "do not modify files in include/asm, change architecture specific files in include/asm-<architecture>\n" . "$here$rawline\n");
2857 #make up the handle for any error we report on this line
2859 $prefix = "$realfile:$realline: "
2862 $prefix = "$filename:$realline: ";
2864 $prefix = "$filename:$linenr: ";
2869 if (is_maintained_obsolete($realfile)) {
2871 "$realfile is marked as 'obsolete' in the MAINTAINERS hierarchy. No unnecessary modifications please.\n");
2873 if ($realfile =~ m@^(?:drivers/net/|net/|drivers/staging/)@) {
2876 $check = $check_orig;
2878 $checklicenseline = 1;
2880 if ($realfile !~ /^MAINTAINERS/) {
2881 my $last_binding_patch = $is_binding_patch;
2883 $is_binding_patch = () = $realfile =~ m@^(?:Documentation/devicetree/|include/dt-bindings/)@;
2885 if (($last_binding_patch != -1) &&
2886 ($last_binding_patch ^ $is_binding_patch)) {
2887 WARN("DT_SPLIT_BINDING_PATCH",
2888 "DT binding docs and includes should be a separate patch. See: Documentation/devicetree/bindings/submitting-patches.rst\n");
2895 $here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
2897 my $hereline = "$here\n$rawline\n";
2898 my $herecurr = "$here\n$rawline\n";
2899 my $hereprev = "$here\n$prevrawline\n$rawline\n";
2901 $cnt_lines++ if ($realcnt != 0);
2903 # Verify the existence of a commit log if appropriate
2904 # 2 is used because a $signature is counted in $commit_log_lines
2905 if ($in_commit_log) {
2906 if ($line !~ /^\s*$/) {
2907 $commit_log_lines++; #could be a $signature
2909 } elsif ($has_commit_log && $commit_log_lines < 2) {
2910 WARN("COMMIT_MESSAGE",
2911 "Missing commit description - Add an appropriate one\n");
2912 $commit_log_lines = 2; #warn only once
2915 # Check if the commit log has what seems like a diff which can confuse patch
2916 if ($in_commit_log && !$commit_log_has_diff &&
2917 (($line =~ m@^\s+diff\b.*a/([\w/]+)@ &&
2918 $line =~ m@^\s+diff\b.*a/[\w/]+\s+b/$1\b@) ||
2919 $line =~ m@^\s*(?:\-\-\-\s+a/|\+\+\+\s+b/)@ ||
2920 $line =~ m/^\s*\@\@ \-\d+,\d+ \+\d+,\d+ \@\@/)) {
2921 ERROR("DIFF_IN_COMMIT_MSG",
2922 "Avoid using diff content in the commit message - patch(1) might not work\n" . $herecurr);
2923 $commit_log_has_diff = 1;
2926 # Check for incorrect file permissions
2927 if ($line =~ /^new (file )?mode.*[7531]\d{0,2}$/) {
2928 my $permhere = $here . "FILE: $realfile\n";
2929 if ($realfile !~ m@scripts/@ &&
2930 $realfile !~ /\.(py|pl|awk|sh)$/) {
2931 ERROR("EXECUTE_PERMISSIONS",
2932 "do not set execute permissions for source files\n" . $permhere);
2936 # Check the patch for a From:
2937 if (decode("MIME-Header", $line) =~ /^From:\s*(.*)/) {
2939 my $curline = $linenr;
2940 while(defined($rawlines[$curline]) && ($rawlines[$curline++] =~ /^[ \t]\s*(.*)/)) {
2943 $author = encode("utf8", $author) if ($line =~ /=\?utf-8\?/i);
2945 $author = reformat_email($author);
2948 # Check the patch for a signoff:
2949 if ($line =~ /^\s*signed-off-by:\s*(.*)/i) {
2952 if ($author ne '' && $authorsignoff != 1) {
2953 if (same_email_addresses($1, $author)) {
2957 my ($email_name, $email_comment, $email_address, $comment1) = parse_email($ctx);
2958 my ($author_name, $author_comment, $author_address, $comment2) = parse_email($author);
2960 if (lc $email_address eq lc $author_address && $email_name eq $author_name) {
2963 } elsif (lc $email_address eq lc $author_address) {
2966 } elsif ($email_name eq $author_name) {
2970 my $address1 = $email_address;
2971 my $address2 = $author_address;
2973 if ($address1 =~ /(\S+)\+\S+(\@.*)/) {
2976 if ($address2 =~ /(\S+)\+\S+(\@.*)/) {
2979 if ($address1 eq $address2) {
2987 # Check for patch separator
2988 if ($line =~ /^---$/) {
2989 $has_patch_separator = 1;
2993 # Check if MAINTAINERS is being updated. If so, there's probably no need to
2994 # emit the "does MAINTAINERS need updating?" message on file add/move/delete
2995 if ($line =~ /^\s*MAINTAINERS\s*\|/) {
2996 $reported_maintainer_file = 1;
2999 # Check signature styles
3000 if (!$in_header_lines &&
3001 $line =~ /^(\s*)([a-z0-9_-]+by:|$signature_tags)(\s*)(.*)/i) {
3002 my $space_before = $1;
3004 my $space_after = $3;
3006 my $ucfirst_sign_off = ucfirst(lc($sign_off));
3008 if ($sign_off !~ /$signature_tags/) {
3009 my $suggested_signature = find_standard_signature($sign_off);
3010 if ($suggested_signature eq "") {
3011 WARN("BAD_SIGN_OFF",
3012 "Non-standard signature: $sign_off\n" . $herecurr);
3014 if (WARN("BAD_SIGN_OFF",
3015 "Non-standard signature: '$sign_off' - perhaps '$suggested_signature'?\n" . $herecurr) &&
3017 $fixed[$fixlinenr] =~ s/$sign_off/$suggested_signature/;
3021 if (defined $space_before && $space_before ne "") {
3022 if (WARN("BAD_SIGN_OFF",
3023 "Do not use whitespace before $ucfirst_sign_off\n" . $herecurr) &&
3025 $fixed[$fixlinenr] =
3026 "$ucfirst_sign_off $email";
3029 if ($sign_off =~ /-by:$/i && $sign_off ne $ucfirst_sign_off) {
3030 if (WARN("BAD_SIGN_OFF",
3031 "'$ucfirst_sign_off' is the preferred signature form\n" . $herecurr) &&
3033 $fixed[$fixlinenr] =
3034 "$ucfirst_sign_off $email";
3038 if (!defined $space_after || $space_after ne " ") {
3039 if (WARN("BAD_SIGN_OFF",
3040 "Use a single space after $ucfirst_sign_off\n" . $herecurr) &&
3042 $fixed[$fixlinenr] =
3043 "$ucfirst_sign_off $email";
3047 my ($email_name, $name_comment, $email_address, $comment) = parse_email($email);
3048 my $suggested_email = format_email(($email_name, $name_comment, $email_address, $comment));
3049 if ($suggested_email eq "") {
3050 ERROR("BAD_SIGN_OFF",
3051 "Unrecognized email address: '$email'\n" . $herecurr);
3053 my $dequoted = $suggested_email;
3054 $dequoted =~ s/^"//;
3055 $dequoted =~ s/" </ </;
3056 # Don't force email to have quotes
3057 # Allow just an angle bracketed address
3058 if (!same_email_addresses($email, $suggested_email)) {
3059 if (WARN("BAD_SIGN_OFF",
3060 "email address '$email' might be better as '$suggested_email'\n" . $herecurr) &&
3062 $fixed[$fixlinenr] =~ s/\Q$email\E/$suggested_email/;
3066 # Address part shouldn't have comments
3067 my $stripped_address = $email_address;
3068 $stripped_address =~ s/\([^\(\)]*\)//g;
3069 if ($email_address ne $stripped_address) {
3070 if (WARN("BAD_SIGN_OFF",
3071 "address part of email should not have comments: '$email_address'\n" . $herecurr) &&
3073 $fixed[$fixlinenr] =~ s/\Q$email_address\E/$stripped_address/;
3077 # Only one name comment should be allowed
3078 my $comment_count = () = $name_comment =~ /\([^\)]+\)/g;
3079 if ($comment_count > 1) {
3080 WARN("BAD_SIGN_OFF",
3081 "Use a single name comment in email: '$email'\n" . $herecurr);
3085 # stable@vger.kernel.org or stable@kernel.org shouldn't
3086 # have an email name. In addition comments should strictly
3088 if ($email =~ /^.*stable\@(?:vger\.)?kernel\.org/i) {
3089 if (($comment ne "" && $comment !~ /^#.+/) ||
3090 ($email_name ne "")) {
3091 my $cur_name = $email_name;
3092 my $new_comment = $comment;
3093 $cur_name =~ s/[a-zA-Z\s\-\"]+//g;
3095 # Remove brackets enclosing comment text
3096 # and # from start of comments to get comment text
3097 $new_comment =~ s/^\((.*)\)$/$1/;
3098 $new_comment =~ s/^\[(.*)\]$/$1/;
3099 $new_comment =~ s/^[\s\#]+|\s+$//g;
3101 $new_comment = trim("$new_comment $cur_name") if ($cur_name ne $new_comment);
3102 $new_comment = " # $new_comment" if ($new_comment ne "");
3103 my $new_email = "$email_address$new_comment";
3105 if (WARN("BAD_STABLE_ADDRESS_STYLE",
3106 "Invalid email format for stable: '$email', prefer '$new_email'\n" . $herecurr) &&
3108 $fixed[$fixlinenr] =~ s/\Q$email\E/$new_email/;
3111 } elsif ($comment ne "" && $comment !~ /^(?:#.+|\(.+\))$/) {
3112 my $new_comment = $comment;
3114 # Extract comment text from within brackets or
3115 # c89 style /*...*/ comments
3116 $new_comment =~ s/^\[(.*)\]$/$1/;
3117 $new_comment =~ s/^\/\*(.*)\*\/$/$1/;
3119 $new_comment = trim($new_comment);
3120 $new_comment =~ s/^[^\w]$//; # Single lettered comment with non word character is usually a typo
3121 $new_comment = "($new_comment)" if ($new_comment ne "");
3122 my $new_email = format_email($email_name, $name_comment, $email_address, $new_comment);
3124 if (WARN("BAD_SIGN_OFF",
3125 "Unexpected content after email: '$email', should be: '$new_email'\n" . $herecurr) &&
3127 $fixed[$fixlinenr] =~ s/\Q$email\E/$new_email/;
3132 # Check for duplicate signatures
3133 my $sig_nospace = $line;
3134 $sig_nospace =~ s/\s//g;
3135 $sig_nospace = lc($sig_nospace);
3136 if (defined $signatures{$sig_nospace}) {
3137 WARN("BAD_SIGN_OFF",
3138 "Duplicate signature\n" . $herecurr);
3140 $signatures{$sig_nospace} = 1;
3143 # Check Co-developed-by: immediately followed by Signed-off-by: with same name and email
3144 if ($sign_off =~ /^co-developed-by:$/i) {
3145 if ($email eq $author) {
3146 WARN("BAD_SIGN_OFF",
3147 "Co-developed-by: should not be used to attribute nominal patch author '$author'\n" . $herecurr);
3149 if (!defined $lines[$linenr]) {
3150 WARN("BAD_SIGN_OFF",
3151 "Co-developed-by: must be immediately followed by Signed-off-by:\n" . $herecurr);
3152 } elsif ($rawlines[$linenr] !~ /^signed-off-by:\s*(.*)/i) {
3153 WARN("BAD_SIGN_OFF",
3154 "Co-developed-by: must be immediately followed by Signed-off-by:\n" . $herecurr . $rawlines[$linenr] . "\n");
3155 } elsif ($1 ne $email) {
3156 WARN("BAD_SIGN_OFF",
3157 "Co-developed-by and Signed-off-by: name/email do not match\n" . $herecurr . $rawlines[$linenr] . "\n");
3161 # check if Reported-by: is followed by a Link:
3162 if ($sign_off =~ /^reported(?:|-and-tested)-by:$/i) {
3163 if (!defined $lines[$linenr]) {
3164 WARN("BAD_REPORTED_BY_LINK",
3165 "Reported-by: should be immediately followed by Link: to the report\n" . $herecurr . $rawlines[$linenr] . "\n");
3166 } elsif ($rawlines[$linenr] !~ m{^link:\s*https?://}i) {
3167 WARN("BAD_REPORTED_BY_LINK",
3168 "Reported-by: should be immediately followed by Link: with a URL to the report\n" . $herecurr . $rawlines[$linenr] . "\n");
3174 # Check Fixes: styles is correct
3175 if (!$in_header_lines &&
3176 $line =~ /^\s*fixes:?\s*(?:commit\s*)?[0-9a-f]{5,}\b/i) {
3177 my $orig_commit = "";
3178 my $id = "0123456789ab";
3179 my $title = "commit title";
3184 my $title_has_quotes = 0;
3186 if ($line =~ /(\s*fixes:?)\s+([0-9a-f]{5,})\s+($balanced_parens)/i) {
3191 $tag_case = 0 if $tag eq "Fixes:";
3192 $tag_space = 0 if ($line =~ /^fixes:? [0-9a-f]{5,} ($balanced_parens)/i);
3194 $id_length = 0 if ($orig_commit =~ /^[0-9a-f]{12}$/i);
3195 $id_case = 0 if ($orig_commit !~ /[A-F]/);
3197 # Always strip leading/trailing parens then double quotes if existing
3198 $title = substr($title, 1, -1);
3199 if ($title =~ /^".*"$/) {
3200 $title = substr($title, 1, -1);
3201 $title_has_quotes = 1;
3205 my ($cid, $ctitle) = git_commit_info($orig_commit, $id,
3208 if ($ctitle ne $title || $tag_case || $tag_space ||
3209 $id_length || $id_case || !$title_has_quotes) {
3210 if (WARN("BAD_FIXES_TAG",
3211 "Please use correct Fixes: style 'Fixes: <12 chars of sha1> (\"<title line>\")' - ie: 'Fixes: $cid (\"$ctitle\")'\n" . $herecurr) &&
3213 $fixed[$fixlinenr] = "Fixes: $cid (\"$ctitle\")";
3218 # Check email subject for common tools that don't need to be mentioned
3219 if ($in_header_lines &&
3220 $line =~ /^Subject:.*\b(?:checkpatch|sparse|smatch)\b[^:]/i) {
3221 WARN("EMAIL_SUBJECT",
3222 "A patch subject line should describe the change not the tool that found it\n" . $herecurr);
3225 # Check for Gerrit Change-Ids not in any patch context
3226 if ($realfile eq '' && !$has_patch_separator && $line =~ /^\s*change-id:/i) {
3227 if (ERROR("GERRIT_CHANGE_ID",
3228 "Remove Gerrit Change-Id's before submitting upstream\n" . $herecurr) &&
3230 fix_delete_line($fixlinenr, $rawline);
3234 # Check if the commit log is in a possible stack dump
3235 if ($in_commit_log && !$commit_log_possible_stack_dump &&
3236 ($line =~ /^\s*(?:WARNING:|BUG:)/ ||
3237 $line =~ /^\s*\[\s*\d+\.\d{6,6}\s*\]/ ||
3239 $line =~ /^\s*\[\<[0-9a-fA-F]{8,}\>\]/) ||
3240 $line =~ /^(?:\s+\w+:\s+[0-9a-fA-F]+){3,3}/ ||
3241 $line =~ /^\s*\#\d+\s*\[[0-9a-fA-F]+\]\s*\w+ at [0-9a-fA-F]+/) {
3242 # stack dump address styles
3243 $commit_log_possible_stack_dump = 1;
3246 # Check for line lengths > 75 in commit log, warn once
3247 if ($in_commit_log && !$commit_log_long_line &&
3248 length($line) > 75 &&
3249 !($line =~ /^\s*[a-zA-Z0-9_\/\.]+\s+\|\s+\d+/ ||
3250 # file delta changes
3251 $line =~ /^\s*(?:[\w\.\-\+]*\/)++[\w\.\-\+]+:/ ||
3253 $line =~ /^\s*(?:Fixes:|Link:|$signature_tags)/i ||
3254 # A Fixes: or Link: line or signature tag line
3255 $commit_log_possible_stack_dump)) {
3256 WARN("COMMIT_LOG_LONG_LINE",
3257 "Possible unwrapped commit description (prefer a maximum 75 chars per line)\n" . $herecurr);
3258 $commit_log_long_line = 1;
3261 # Reset possible stack dump if a blank line is found
3262 if ($in_commit_log && $commit_log_possible_stack_dump &&
3264 $commit_log_possible_stack_dump = 0;
3267 # Check for odd tags before a URI/URL
3268 if ($in_commit_log &&
3269 $line =~ /^\s*(\w+):\s*http/ && $1 ne 'Link') {
3270 if ($1 =~ /^v(?:ersion)?\d+/i) {
3271 WARN("COMMIT_LOG_VERSIONING",
3272 "Patch version information should be after the --- line\n" . $herecurr);
3274 WARN("COMMIT_LOG_USE_LINK",
3275 "Unknown link reference '$1:', use 'Link:' instead\n" . $herecurr);
3279 # Check for lines starting with a #
3280 if ($in_commit_log && $line =~ /^#/) {
3281 if (WARN("COMMIT_COMMENT_SYMBOL",
3282 "Commit log lines starting with '#' are dropped by git as comments\n" . $herecurr) &&
3284 $fixed[$fixlinenr] =~ s/^/ /;
3288 # Check for git id commit length and improperly formed commit descriptions
3289 # A correctly formed commit description is:
3290 # commit <SHA-1 hash length 12+ chars> ("Complete commit subject")
3291 # with the commit subject '("' prefix and '")' suffix
3292 # This is a fairly compilicated block as it tests for what appears to be
3293 # bare SHA-1 hash with minimum length of 5. It also avoids several types of
3294 # possible SHA-1 matches.
3295 # A commit match can span multiple lines so this block attempts to find a
3296 # complete typical commit on a maximum of 3 lines
3297 if ($perl_version_ok &&
3298 $in_commit_log && !$commit_log_possible_stack_dump &&
3299 $line !~ /^\s*(?:Link|Patchwork|http|https|BugLink|base-commit):/i &&
3300 $line !~ /^This reverts commit [0-9a-f]{7,40}/ &&
3301 (($line =~ /\bcommit\s+[0-9a-f]{5,}\b/i ||
3302 ($line =~ /\bcommit\s*$/i && defined($rawlines[$linenr]) && $rawlines[$linenr] =~ /^\s*[0-9a-f]{5,}\b/i)) ||
3303 ($line =~ /(?:\s|^)[0-9a-f]{12,40}(?:[\s"'\(\[]|$)/i &&
3304 $line !~ /[\<\[][0-9a-f]{12,40}[\>\]]/i &&
3305 $line !~ /\bfixes:\s*[0-9a-f]{12,40}/i))) {
3306 my $init_char = "c";
3307 my $orig_commit = "";
3312 my $id = '0123456789ab';
3313 my $orig_desc = "commit description";
3314 my $description = "";
3315 my $herectx = $herecurr;
3320 if ($line =~ /(?:\bcommit\s+[0-9a-f]{5,}|\bcommit\s*$)/i) {
3321 for (my $n = 0; $n < 2; $n++) {
3322 if ($input =~ /\bcommit\s+[0-9a-f]{5,}\s*($balanced_parens)/i) {
3325 # Always strip leading/trailing parens then double quotes if existing
3326 $orig_desc = substr($orig_desc, 1, -1);
3327 if ($orig_desc =~ /^".*"$/) {
3328 $orig_desc = substr($orig_desc, 1, -1);
3333 last if ($#lines < $linenr + $n);
3334 $input .= " " . trim($rawlines[$linenr + $n]);
3335 $herectx .= "$rawlines[$linenr + $n]\n";
3337 $herectx = $herecurr if (!$has_parens);
3340 if ($input =~ /\b(c)ommit\s+([0-9a-f]{5,})\b/i) {
3342 $orig_commit = lc($2);
3343 $short = 0 if ($input =~ /\bcommit\s+[0-9a-f]{12,40}/i);
3344 $long = 1 if ($input =~ /\bcommit\s+[0-9a-f]{41,}/i);
3345 $space = 0 if ($input =~ /\bcommit [0-9a-f]/i);
3346 $case = 0 if ($input =~ /\b[Cc]ommit\s+[0-9a-f]{5,40}[^A-F]/);
3347 } elsif ($input =~ /\b([0-9a-f]{12,40})\b/i) {
3348 $orig_commit = lc($1);
3351 ($id, $description) = git_commit_info($orig_commit,
3355 ($short || $long || $space || $case || ($orig_desc ne $description) || !$has_quotes) &&
3356 $last_git_commit_id_linenr != $linenr - 1) {
3357 ERROR("GIT_COMMIT_ID",
3358 "Please use git commit description style 'commit <12+ chars of sha1> (\"<title line>\")' - ie: '${init_char}ommit $id (\"$description\")'\n" . $herectx);
3360 #don't report the next line if this line ends in commit and the sha1 hash is the next line
3361 $last_git_commit_id_linenr = $linenr if ($line =~ /\bcommit\s*$/i);
3364 # Check for mailing list archives other than lore.kernel.org
3365 if ($rawline =~ m{http.*\b$obsolete_archives}) {
3366 WARN("PREFER_LORE_ARCHIVE",
3367 "Use lore.kernel.org archive links when possible - see https://lore.kernel.org/lists.html\n" . $herecurr);
3370 # Check for added, moved or deleted files
3371 if (!$reported_maintainer_file && !$in_commit_log &&
3372 ($line =~ /^(?:new|deleted) file mode\s*\d+\s*$/ ||
3373 $line =~ /^rename (?:from|to) [\w\/\.\-]+\s*$/ ||
3374 ($line =~ /\{\s*([\w\/\.\-]*)\s*\=\>\s*([\w\/\.\-]*)\s*\}/ &&
3375 (defined($1) || defined($2))))) {
3377 $reported_maintainer_file = 1;
3378 WARN("FILE_PATH_CHANGES",
3379 "added, moved or deleted file(s), does MAINTAINERS need updating?\n" . $herecurr);
3382 # Check for adding new DT bindings not in schema format
3383 if (!$in_commit_log &&
3384 ($line =~ /^new file mode\s*\d+\s*$/) &&
3385 ($realfile =~ m@^Documentation/devicetree/bindings/.*\.txt$@)) {
3386 WARN("DT_SCHEMA_BINDING_PATCH",
3387 "DT bindings should be in DT schema format. See: Documentation/devicetree/bindings/writing-schema.rst\n");
3390 # Check for wrappage within a valid hunk of the file
3391 if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) {
3392 ERROR("CORRUPTED_PATCH",
3393 "patch seems to be corrupt (line wrapped?)\n" .
3394 $herecurr) if (!$emitted_corrupt++);
3397 # UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
3398 if (($realfile =~ /^$/ || $line =~ /^\+/) &&
3399 $rawline !~ m/^$UTF8*$/) {
3400 my ($utf8_prefix) = ($rawline =~ /^($UTF8*)/);
3402 my $blank = copy_spacing($rawline);
3403 my $ptr = substr($blank, 0, length($utf8_prefix)) . "^";
3404 my $hereptr = "$hereline$ptr\n";
3407 "Invalid UTF-8, patch and commit message should be encoded in UTF-8\n" . $hereptr);
3410 # Check if it's the start of a commit log
3411 # (not a header line and we haven't seen the patch filename)
3412 if ($in_header_lines && $realfile =~ /^$/ &&
3413 !($rawline =~ /^\s+(?:\S|$)/ ||
3414 $rawline =~ /^(?:commit\b|from\b|[\w-]+:)/i)) {
3415 $in_header_lines = 0;
3417 $has_commit_log = 1;
3420 # Check if there is UTF-8 in a commit log when a mail header has explicitly
3421 # declined it, i.e defined some charset where it is missing.
3422 if ($in_header_lines &&
3423 $rawline =~ /^Content-Type:.+charset="(.+)".*$/ &&
3425 $non_utf8_charset = 1;
3428 if ($in_commit_log && $non_utf8_charset && $realfile =~ /^$/ &&
3429 $rawline =~ /$NON_ASCII_UTF8/) {
3430 WARN("UTF8_BEFORE_PATCH",
3431 "8-bit UTF-8 used in possible commit log\n" . $herecurr);
3434 # Check for absolute kernel paths in commit message
3435 if ($tree && $in_commit_log) {
3436 while ($line =~ m{(?:^|\s)(/\S*)}g) {
3439 if ($file =~ m{^(.*?)(?::\d+)+:?$} &&
3440 check_absolute_file($1, $herecurr)) {
3443 check_absolute_file($file, $herecurr);
3448 # Check for various typo / spelling mistakes
3449 if (defined($misspellings) &&
3450 ($in_commit_log || $line =~ /^(?:\+|Subject:)/i)) {
3451 while ($rawline =~ /(?:^|[^\w\-'`])($misspellings)(?:[^\w\-'`]|$)/gi) {
3453 my $blank = copy_spacing($rawline);
3454 my $ptr = substr($blank, 0, $-[1]) . "^" x length($typo);
3455 my $hereptr = "$hereline$ptr\n";
3456 my $typo_fix = $spelling_fix{lc($typo)};
3457 $typo_fix = ucfirst($typo_fix) if ($typo =~ /^[A-Z]/);
3458 $typo_fix = uc($typo_fix) if ($typo =~ /^[A-Z]+$/);
3459 my $msg_level = \&WARN;
3460 $msg_level = \&CHK if ($file);
3461 if (&{$msg_level}("TYPO_SPELLING",
3462 "'$typo' may be misspelled - perhaps '$typo_fix'?\n" . $hereptr) &&
3464 $fixed[$fixlinenr] =~ s/(^|[^A-Za-z@])($typo)($|[^A-Za-z@])/$1$typo_fix$3/;
3469 # check for invalid commit id
3470 if ($in_commit_log && $line =~ /(^fixes:|\bcommit)\s+([0-9a-f]{6,40})\b/i) {
3473 ($id, $description) = git_commit_info($2, undef, undef);
3474 if (!defined($id)) {
3475 WARN("UNKNOWN_COMMIT_ID",
3476 "Unknown commit id '$2', maybe rebased or not pulled?\n" . $herecurr);
3480 # check for repeated words separated by a single space
3481 # avoid false positive from list command eg, '-rw-r--r-- 1 root root'
3482 if (($rawline =~ /^\+/ || $in_commit_log) &&
3483 $rawline !~ /[bcCdDlMnpPs\?-][rwxsStT-]{9}/) {
3484 pos($rawline) = 1 if (!$in_commit_log);
3485 while ($rawline =~ /\b($word_pattern) (?=($word_pattern))/g) {
3489 my $start_pos = $-[1];
3490 my $end_pos = $+[2];
3491 if ($first =~ /(?:struct|union|enum)/) {
3492 pos($rawline) += length($first) + length($second) + 1;
3496 next if (lc($first) ne lc($second));
3497 next if ($first eq 'long');
3499 # check for character before and after the word matches
3500 my $start_char = '';
3502 $start_char = substr($rawline, $start_pos - 1, 1) if ($start_pos > ($in_commit_log ? 0 : 1));
3503 $end_char = substr($rawline, $end_pos, 1) if ($end_pos < length($rawline));
3505 next if ($start_char =~ /^\S$/);
3506 next if (index(" \t.,;?!", $end_char) == -1);
3508 # avoid repeating hex occurrences like 'ff ff fe 09 ...'
3509 if ($first =~ /\b[0-9a-f]{2,}\b/i) {
3510 next if (!exists($allow_repeated_words{lc($first)}));
3513 if (WARN("REPEATED_WORD",
3514 "Possible repeated word: '$first'\n" . $herecurr) &&
3516 $fixed[$fixlinenr] =~ s/\b$first $second\b/$first/;
3520 # if it's a repeated word on consecutive lines in a comment block
3521 if ($prevline =~ /$;+\s*$/ &&
3522 $prevrawline =~ /($word_pattern)\s*$/) {
3524 if ($rawline =~ /^\+\s*\*\s*$last_word /) {
3525 if (WARN("REPEATED_WORD",
3526 "Possible repeated word: '$last_word'\n" . $hereprev) &&
3528 $fixed[$fixlinenr] =~ s/(\+\s*\*\s*)$last_word /$1/;
3534 # ignore non-hunk lines and lines being removed
3535 next if (!$hunk_line || $line =~ /^-/);
3537 #trailing whitespace
3538 if ($line =~ /^\+.*\015/) {
3539 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
3540 if (ERROR("DOS_LINE_ENDINGS",
3541 "DOS line endings\n" . $herevet) &&
3543 $fixed[$fixlinenr] =~ s/[\s\015]+$//;
3545 } elsif ($rawline =~ /^\+.*\S\s+$/ || $rawline =~ /^\+\s+$/) {
3546 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
3547 if (ERROR("TRAILING_WHITESPACE",
3548 "trailing whitespace\n" . $herevet) &&
3550 $fixed[$fixlinenr] =~ s/\s+$//;
3556 # Check for FSF mailing addresses.
3557 if ($rawline =~ /\bwrite to the Free/i ||
3558 $rawline =~ /\b675\s+Mass\s+Ave/i ||
3559 $rawline =~ /\b59\s+Temple\s+Pl/i ||
3560 $rawline =~ /\b51\s+Franklin\s+St/i) {
3561 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
3562 my $msg_level = \&ERROR;
3563 $msg_level = \&CHK if ($file);
3564 &{$msg_level}("FSF_MAILING_ADDRESS",
3565 "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)
3568 # check for Kconfig help text having a real description
3569 # Only applies when adding the entry originally, after that we do not have
3570 # sufficient context to determine whether it is indeed long enough.
3571 if ($realfile =~ /Kconfig/ &&
3572 # 'choice' is usually the last thing on the line (though
3573 # Kconfig supports named choices), so use a word boundary
3574 # (\b) rather than a whitespace character (\s)
3575 $line =~ /^\+\s*(?:config|menuconfig|choice)\b/) {
3579 my $help_length = 0;
3580 while (defined $lines[$ln]) {
3581 my $f = $lines[$ln++];
3583 next if ($f =~ /^-/);
3584 last if ($f !~ /^[\+ ]/); # !patch context
3586 if ($f =~ /^\+\s*(?:bool|tristate|prompt)\s*["']/) {
3590 if ($f =~ /^\+\s*help\s*$/) {
3595 $f =~ s/^.//; # strip patch context [+ ]
3596 $f =~ s/#.*//; # strip # directives
3597 $f =~ s/^\s+//; # strip leading blanks
3598 next if ($f =~ /^$/); # skip blank lines
3600 # At the end of this Kconfig block:
3601 # This only checks context lines in the patch
3602 # and so hopefully shouldn't trigger false
3603 # positives, even though some of these are
3604 # common words in help texts
3605 if ($f =~ /^(?:config|menuconfig|choice|endchoice|
3606 if|endif|menu|endmenu|source)\b/x) {
3609 $help_length++ if ($has_help);
3612 $help_length < $min_conf_desc_length) {
3613 my $stat_real = get_stat_real($linenr, $ln - 1);
3614 WARN("CONFIG_DESCRIPTION",
3615 "please write a help paragraph that fully describes the config symbol\n" . "$here\n$stat_real\n");
3619 # check MAINTAINERS entries
3620 if ($realfile =~ /^MAINTAINERS$/) {
3621 # check MAINTAINERS entries for the right form
3622 if ($rawline =~ /^\+[A-Z]:/ &&
3623 $rawline !~ /^\+[A-Z]:\t\S/) {
3624 if (WARN("MAINTAINERS_STYLE",
3625 "MAINTAINERS entries use one tab after TYPE:\n" . $herecurr) &&
3627 $fixed[$fixlinenr] =~ s/^(\+[A-Z]):\s*/$1:\t/;
3630 # check MAINTAINERS entries for the right ordering too
3631 my $preferred_order = 'MRLSWQBCPTFXNK';
3632 if ($rawline =~ /^\+[A-Z]:/ &&
3633 $prevrawline =~ /^[\+ ][A-Z]:/) {
3634 $rawline =~ /^\+([A-Z]):\s*(.*)/;
3637 $prevrawline =~ /^[\+ ]([A-Z]):\s*(.*)/;
3640 my $curindex = index($preferred_order, $cur);
3641 my $previndex = index($preferred_order, $prev);
3642 if ($curindex < 0) {
3643 WARN("MAINTAINERS_STYLE",
3644 "Unknown MAINTAINERS entry type: '$cur'\n" . $herecurr);
3646 if ($previndex >= 0 && $curindex < $previndex) {
3647 WARN("MAINTAINERS_STYLE",
3648 "Misordered MAINTAINERS entry - list '$cur:' before '$prev:'\n" . $hereprev);
3649 } elsif ((($prev eq 'F' && $cur eq 'F') ||
3650 ($prev eq 'X' && $cur eq 'X')) &&
3651 ($prevval cmp $curval) > 0) {
3652 WARN("MAINTAINERS_STYLE",
3653 "Misordered MAINTAINERS entry - list file patterns in alphabetic order\n" . $hereprev);
3659 if (($realfile =~ /Makefile.*/ || $realfile =~ /Kbuild.*/) &&
3660 ($line =~ /\+(EXTRA_[A-Z]+FLAGS).*/)) {
3663 'EXTRA_AFLAGS' => 'asflags-y',
3664 'EXTRA_CFLAGS' => 'ccflags-y',
3665 'EXTRA_CPPFLAGS' => 'cppflags-y',
3666 'EXTRA_LDFLAGS' => 'ldflags-y',
3669 WARN("DEPRECATED_VARIABLE",
3670 "Use of $flag is deprecated, please use \`$replacement->{$flag} instead.\n" . $herecurr) if ($replacement->{$flag});
3673 # check for DT compatible documentation
3674 if (defined $root &&
3675 (($realfile =~ /\.dtsi?$/ && $line =~ /^\+\s*compatible\s*=\s*\"/) ||
3676 ($realfile =~ /\.[ch]$/ && $line =~ /^\+.*\.compatible\s*=\s*\"/))) {
3678 my @compats = $rawline =~ /\"([a-zA-Z0-9\-\,\.\+_]+)\"/g;
3680 my $dt_path = $root . "/Documentation/devicetree/bindings/";
3681 my $vp_file = $dt_path . "vendor-prefixes.yaml";
3683 foreach my $compat (@compats) {
3684 my $compat2 = $compat;
3685 $compat2 =~ s/\,[a-zA-Z0-9]*\-/\,<\.\*>\-/;
3686 my $compat3 = $compat;
3687 $compat3 =~ s/\,([a-z]*)[0-9]*\-/\,$1<\.\*>\-/;
3688 `grep -Erq "$compat|$compat2|$compat3" $dt_path`;
3690 WARN("UNDOCUMENTED_DT_STRING",
3691 "DT compatible string \"$compat\" appears un-documented -- check $dt_path\n" . $herecurr);
3694 next if $compat !~ /^([a-zA-Z0-9\-]+)\,/;
3696 `grep -Eq "\\"\\^\Q$vendor\E,\\.\\*\\":" $vp_file`;
3698 WARN("UNDOCUMENTED_DT_STRING",
3699 "DT compatible string vendor \"$vendor\" appears un-documented -- check $vp_file\n" . $herecurr);
3704 # check for using SPDX license tag at beginning of files
3705 if ($realline == $checklicenseline) {
3706 if ($rawline =~ /^[ \+]\s*\#\!\s*\//) {
3707 $checklicenseline = 2;
3708 } elsif ($rawline =~ /^\+/) {
3710 if ($realfile =~ /\.(h|s|S)$/) {
3712 } elsif ($realfile =~ /\.(c|rs|dts|dtsi)$/) {
3714 } elsif (($checklicenseline == 2) || $realfile =~ /\.(sh|pl|py|awk|tc|yaml)$/) {
3716 } elsif ($realfile =~ /\.rst$/) {
3720 # check SPDX comment style for .[chsS] files
3721 if ($realfile =~ /\.[chsS]$/ &&
3722 $rawline =~ /SPDX-License-Identifier:/ &&
3723 $rawline !~ m@^\+\s*\Q$comment\E\s*@) {
3724 WARN("SPDX_LICENSE_TAG",
3725 "Improper SPDX comment style for '$realfile', please use '$comment' instead\n" . $herecurr);
3728 if ($comment !~ /^$/ &&
3729 $rawline !~ m@^\+\Q$comment\E SPDX-License-Identifier: @) {
3730 WARN("SPDX_LICENSE_TAG",
3731 "Missing or malformed SPDX-License-Identifier tag in line $checklicenseline\n" . $herecurr);
3732 } elsif ($rawline =~ /(SPDX-License-Identifier: .*)/) {
3733 my $spdx_license = $1;
3734 if (!is_SPDX_License_valid($spdx_license)) {
3735 WARN("SPDX_LICENSE_TAG",
3736 "'$spdx_license' is not supported in LICENSES/...\n" . $herecurr);
3738 if ($realfile =~ m@^Documentation/devicetree/bindings/@ &&
3739 not $spdx_license =~ /GPL-2\.0.*BSD-2-Clause/) {
3740 my $msg_level = \&WARN;
3741 $msg_level = \&CHK if ($file);
3742 if (&{$msg_level}("SPDX_LICENSE_TAG",
3744 "DT binding documents should be licensed (GPL-2.0-only OR BSD-2-Clause)\n" . $herecurr) &&
3746 $fixed[$fixlinenr] =~ s/SPDX-License-Identifier: .*/SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)/;
3753 # check for embedded filenames
3754 if ($rawline =~ /^\+.*\b\Q$realfile\E\b/) {
3755 WARN("EMBEDDED_FILENAME",
3756 "It's generally not useful to have the filename in the file\n" . $herecurr);
3759 # check we are in a valid source file if not then ignore this hunk
3760 next if ($realfile !~ /\.(h|c|rs|s|S|sh|dtsi|dts)$/);
3762 # check for using SPDX-License-Identifier on the wrong line number
3763 if ($realline != $checklicenseline &&
3764 $rawline =~ /\bSPDX-License-Identifier:/ &&
3765 substr($line, @-, @+ - @-) eq "$;" x (@+ - @-)) {
3766 WARN("SPDX_LICENSE_TAG",
3767 "Misplaced SPDX-License-Identifier tag - use line $checklicenseline instead\n" . $herecurr);
3770 # line length limit (with some exclusions)
3772 # There are a few types of lines that may extend beyond $max_line_length:
3773 # logging functions like pr_info that end in a string
3774 # lines with a single string
3775 # #defines that are a single string
3776 # lines with an RFC3986 like URL
3778 # There are 3 different line length message types:
3779 # LONG_LINE_COMMENT a comment starts before but extends beyond $max_line_length
3780 # LONG_LINE_STRING a string starts before but extends beyond $max_line_length
3781 # LONG_LINE all other lines longer than $max_line_length
3783 # if LONG_LINE is ignored, the other 2 types are also ignored
3786 if ($line =~ /^\+/ && $length > $max_line_length) {
3787 my $msg_type = "LONG_LINE";
3789 # Check the allowed long line types first
3791 # logging functions that end in a string that starts
3792 # before $max_line_length
3793 if ($line =~ /^\+\s*$logFunctions\s*\(\s*(?:(?:KERN_\S+\s*|[^"]*))?($String\s*(?:|,|\)\s*;)\s*)$/ &&
3794 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3797 # lines with only strings (w/ possible termination)
3798 # #defines with only strings
3799 } elsif ($line =~ /^\+\s*$String\s*(?:\s*|,|\)\s*;)\s*$/ ||
3800 $line =~ /^\+\s*#\s*define\s+\w+\s+$String$/) {
3803 # More special cases
3804 } elsif ($line =~ /^\+.*\bEFI_GUID\s*\(/ ||
3805 $line =~ /^\+\s*(?:\w+)?\s*DEFINE_PER_CPU/) {
3808 # URL ($rawline is used in case the URL is in a comment)
3809 } elsif ($rawline =~ /^\+.*\b[a-z][\w\.\+\-]*:\/\/\S+/i) {
3812 # Otherwise set the alternate message types
3814 # a comment starts before $max_line_length
3815 } elsif ($line =~ /($;[\s$;]*)$/ &&
3816 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3817 $msg_type = "LONG_LINE_COMMENT"
3819 # a quoted string starts before $max_line_length
3820 } elsif ($sline =~ /\s*($String(?:\s*(?:\\|,\s*|\)\s*;\s*))?)$/ &&
3821 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3822 $msg_type = "LONG_LINE_STRING"
3825 if ($msg_type ne "" &&
3826 (show_type("LONG_LINE") || show_type($msg_type))) {
3827 my $msg_level = \&WARN;
3828 $msg_level = \&CHK if ($file);
3829 &{$msg_level}($msg_type,
3830 "line length of $length exceeds $max_line_length columns\n" . $herecurr);
3834 # check for adding lines without a newline.
3835 if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
3836 if (WARN("MISSING_EOF_NEWLINE",
3837 "adding a line without newline at end of file\n" . $herecurr) &&
3839 fix_delete_line($fixlinenr+1, "No newline at end of file");
3843 # check for .L prefix local symbols in .S files
3844 if ($realfile =~ /\.S$/ &&
3845 $line =~ /^\+\s*(?:[A-Z]+_)?SYM_[A-Z]+_(?:START|END)(?:_[A-Z_]+)?\s*\(\s*\.L/) {
3846 WARN("AVOID_L_PREFIX",
3847 "Avoid using '.L' prefixed local symbol names for denoting a range of code via 'SYM_*_START/END' annotations; see Documentation/core-api/asm-annotations.rst\n" . $herecurr);
3850 # check we are in a valid source file C or perl if not then ignore this hunk
3851 next if ($realfile !~ /\.(h|c|pl|dtsi|dts)$/);
3853 # at the beginning of a line any tabs must come first and anything
3854 # more than $tabsize must use tabs.
3855 if ($rawline =~ /^\+\s* \t\s*\S/ ||
3856 $rawline =~ /^\+\s* \s*/) {
3857 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
3859 if (ERROR("CODE_INDENT",
3860 "code indent should use tabs where possible\n" . $herevet) &&
3862 $fixed[$fixlinenr] =~ s/^\+([ \t]+)/"\+" . tabify($1)/e;
3866 # check for space before tabs.
3867 if ($rawline =~ /^\+/ && $rawline =~ / \t/) {
3868 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
3869 if (WARN("SPACE_BEFORE_TAB",
3870 "please, no space before tabs\n" . $herevet) &&
3872 while ($fixed[$fixlinenr] =~
3873 s/(^\+.*) {$tabsize,$tabsize}\t/$1\t\t/) {}
3874 while ($fixed[$fixlinenr] =~
3875 s/(^\+.*) +\t/$1\t/) {}
3879 # check for assignments on the start of a line
3880 if ($sline =~ /^\+\s+($Assignment)[^=]/) {
3882 if (CHK("ASSIGNMENT_CONTINUATIONS",
3883 "Assignment operator '$1' should be on the previous line\n" . $hereprev) &&
3884 $fix && $prevrawline =~ /^\+/) {
3885 # add assignment operator to the previous line, remove from current line
3886 $fixed[$fixlinenr - 1] .= " $operator";
3887 $fixed[$fixlinenr] =~ s/\Q$operator\E\s*//;
3891 # check for && or || at the start of a line
3892 if ($rawline =~ /^\+\s*(&&|\|\|)/) {
3894 if (CHK("LOGICAL_CONTINUATIONS",
3895 "Logical continuations should be on the previous line\n" . $hereprev) &&
3896 $fix && $prevrawline =~ /^\+/) {
3897 # insert logical operator at last non-comment, non-whitepsace char on previous line
3898 $prevline =~ /[\s$;]*$/;
3899 my $line_end = substr($prevrawline, $-[0]);
3900 $fixed[$fixlinenr - 1] =~ s/\Q$line_end\E$/ $operator$line_end/;
3901 $fixed[$fixlinenr] =~ s/\Q$operator\E\s*//;
3905 # check indentation starts on a tab stop
3906 if ($perl_version_ok &&
3907 $sline =~ /^\+\t+( +)(?:$c90_Keywords\b|\{\s*$|\}\s*(?:else\b|while\b|\s*$)|$Declare\s*$Ident\s*[;=])/) {
3908 my $indent = length($1);
3909 if ($indent % $tabsize) {
3911 "Statements should start on a tabstop\n" . $herecurr) &&
3913 $fixed[$fixlinenr] =~ s@(^\+\t+) +@$1 . "\t" x ($indent/$tabsize)@e;
3918 # check multi-line statement indentation matches previous line
3919 if ($perl_version_ok &&
3920 $prevline =~ /^\+([ \t]*)((?:$c90_Keywords(?:\s+if)\s*)|(?:$Declare\s*)?(?:$Ident|\(\s*\*\s*$Ident\s*\))\s*|(?:\*\s*)*$Lval\s*=\s*$Ident\s*)\(.*(\&\&|\|\||,)\s*$/) {
3921 $prevline =~ /^\+(\t*)(.*)$/;
3925 my $pos = pos_last_openparen($rest);
3927 $line =~ /^(\+| )([ \t]*)/;
3930 my $goodtabindent = $oldindent .
3931 "\t" x ($pos / $tabsize) .
3932 " " x ($pos % $tabsize);
3933 my $goodspaceindent = $oldindent . " " x $pos;
3935 if ($newindent ne $goodtabindent &&
3936 $newindent ne $goodspaceindent) {
3938 if (CHK("PARENTHESIS_ALIGNMENT",
3939 "Alignment should match open parenthesis\n" . $hereprev) &&
3940 $fix && $line =~ /^\+/) {
3941 $fixed[$fixlinenr] =~
3942 s/^\+[ \t]*/\+$goodtabindent/;
3948 # check for space after cast like "(int) foo" or "(struct foo) bar"
3949 # avoid checking a few false positives:
3950 # "sizeof(<type>)" or "__alignof__(<type>)"
3951 # function pointer declarations like "(*foo)(int) = bar;"
3952 # structure definitions like "(struct foo) { 0 };"
3953 # multiline macros that define functions
3954 # known attributes or the __attribute__ keyword
3955 if ($line =~ /^\+(.*)\(\s*$Type\s*\)([ \t]++)((?![={]|\\$|$Attribute|__attribute__))/ &&
3956 (!defined($1) || $1 !~ /\b(?:sizeof|__alignof__)\s*$/)) {
3958 "No space is necessary after a cast\n" . $herecurr) &&
3960 $fixed[$fixlinenr] =~
3961 s/(\(\s*$Type\s*\))[ \t]+/$1/;
3965 # Block comment styles
3966 # Networking with an initial /*
3967 if ($realfile =~ m@^(drivers/net/|net/)@ &&
3968 $prevrawline =~ /^\+[ \t]*\/\*[ \t]*$/ &&
3969 $rawline =~ /^\+[ \t]*\*/ &&
3970 $realline > 3) { # Do not warn about the initial copyright comment block after SPDX-License-Identifier
3971 WARN("NETWORKING_BLOCK_COMMENT_STYLE",
3972 "networking block comments don't use an empty /* line, use /* Comment...\n" . $hereprev);
3975 # Block comments use * on subsequent lines
3976 if ($prevline =~ /$;[ \t]*$/ && #ends in comment
3977 $prevrawline =~ /^\+.*?\/\*/ && #starting /*
3978 $prevrawline !~ /\*\/[ \t]*$/ && #no trailing */
3979 $rawline =~ /^\+/ && #line is new
3980 $rawline !~ /^\+[ \t]*\*/) { #no leading *
3981 WARN("BLOCK_COMMENT_STYLE",
3982 "Block comments use * on subsequent lines\n" . $hereprev);
3985 # Block comments use */ on trailing lines
3986 if ($rawline !~ m@^\+[ \t]*\*/[ \t]*$@ && #trailing */
3987 $rawline !~ m@^\+.*/\*.*\*/[ \t]*$@ && #inline /*...*/
3988 $rawline !~ m@^\+.*\*{2,}/[ \t]*$@ && #trailing **/
3989 $rawline =~ m@^\+[ \t]*.+\*\/[ \t]*$@) { #non blank */
3990 WARN("BLOCK_COMMENT_STYLE",
3991 "Block comments use a trailing */ on a separate line\n" . $herecurr);
3994 # Block comment * alignment
3995 if ($prevline =~ /$;[ \t]*$/ && #ends in comment
3996 $line =~ /^\+[ \t]*$;/ && #leading comment
3997 $rawline =~ /^\+[ \t]*\*/ && #leading *
3998 (($prevrawline =~ /^\+.*?\/\*/ && #leading /*
3999 $prevrawline !~ /\*\/[ \t]*$/) || #no trailing */
4000 $prevrawline =~ /^\+[ \t]*\*/)) { #leading *
4002 $prevrawline =~ m@^\+([ \t]*/?)\*@;
4004 $oldindent = expand_tabs($1);
4006 $prevrawline =~ m@^\+(.*/?)\*@;
4007 $oldindent = expand_tabs($1);
4009 $rawline =~ m@^\+([ \t]*)\*@;
4011 $newindent = expand_tabs($newindent);
4012 if (length($oldindent) ne length($newindent)) {
4013 WARN("BLOCK_COMMENT_STYLE",
4014 "Block comments should align the * on each line\n" . $hereprev);
4018 # check for missing blank lines after struct/union declarations
4019 # with exceptions for various attributes and macros
4020 if ($prevline =~ /^[\+ ]};?\s*$/ &&
4022 !($line =~ /^\+\s*$/ ||
4023 $line =~ /^\+\s*(?:EXPORT_SYMBOL|early_param)/ ||
4024 $line =~ /^\+\s*MODULE_/i ||
4025 $line =~ /^\+\s*\#\s*(?:end|elif|else)/ ||
4026 $line =~ /^\+[a-z_]*init/ ||
4027 $line =~ /^\+\s*(?:static\s+)?[A-Z_]*ATTR/ ||
4028 $line =~ /^\+\s*DECLARE/ ||
4029 $line =~ /^\+\s*builtin_[\w_]*driver/ ||
4030 $line =~ /^\+\s*__setup/)) {
4031 if (CHK("LINE_SPACING",
4032 "Please use a blank line after function/struct/union/enum declarations\n" . $hereprev) &&
4034 fix_insert_line($fixlinenr, "\+");
4038 # check for multiple consecutive blank lines
4039 if ($prevline =~ /^[\+ ]\s*$/ &&
4040 $line =~ /^\+\s*$/ &&
4041 $last_blank_line != ($linenr - 1)) {
4042 if (CHK("LINE_SPACING",
4043 "Please don't use multiple blank lines\n" . $hereprev) &&
4045 fix_delete_line($fixlinenr, $rawline);
4048 $last_blank_line = $linenr;
4051 # check for missing blank lines after declarations
4052 # (declarations must have the same indentation and not be at the start of line)
4053 if (($prevline =~ /\+(\s+)\S/) && $sline =~ /^\+$1\S/) {
4057 # remove $Attribute/$Sparse uses to simplify comparisons
4058 $sl =~ s/\b(?:$Attribute|$Sparse)\b//g;
4059 $pl =~ s/\b(?:$Attribute|$Sparse)\b//g;
4060 if (($pl =~ /^\+\s+$Declare\s*$Ident\s*[=,;:\[]/ ||
4061 # function pointer declarations
4062 $pl =~ /^\+\s+$Declare\s*\(\s*\*\s*$Ident\s*\)\s*[=,;:\[\(]/ ||
4063 # foo bar; where foo is some local typedef or #define
4064 $pl =~ /^\+\s+$Ident(?:\s+|\s*\*\s*)$Ident\s*[=,;\[]/ ||
4065 # known declaration macros
4066 $pl =~ /^\+\s+$declaration_macros/) &&
4067 # for "else if" which can look like "$Ident $Ident"
4068 !($pl =~ /^\+\s+$c90_Keywords\b/ ||
4069 # other possible extensions of declaration lines
4070 $pl =~ /(?:$Compare|$Assignment|$Operators)\s*$/ ||
4071 # not starting a section or a macro "\" extended line
4072 $pl =~ /(?:\{\s*|\\)$/) &&
4073 # looks like a declaration
4074 !($sl =~ /^\+\s+$Declare\s*$Ident\s*[=,;:\[]/ ||
4075 # function pointer declarations
4076 $sl =~ /^\+\s+$Declare\s*\(\s*\*\s*$Ident\s*\)\s*[=,;:\[\(]/ ||
4077 # foo bar; where foo is some local typedef or #define
4078 $sl =~ /^\+\s+$Ident(?:\s+|\s*\*\s*)$Ident\s*[=,;\[]/ ||
4079 # known declaration macros
4080 $sl =~ /^\+\s+$declaration_macros/ ||
4081 # start of struct or union or enum
4082 $sl =~ /^\+\s+(?:static\s+)?(?:const\s+)?(?:union|struct|enum|typedef)\b/ ||
4083 # start or end of block or continuation of declaration
4084 $sl =~ /^\+\s+(?:$|[\{\}\.\#\"\?\:\(\[])/ ||
4085 # bitfield continuation
4086 $sl =~ /^\+\s+$Ident\s*:\s*\d+\s*[,;]/ ||
4087 # other possible extensions of declaration lines
4088 $sl =~ /^\+\s+\(?\s*(?:$Compare|$Assignment|$Operators)/)) {
4089 if (WARN("LINE_SPACING",
4090 "Missing a blank line after declarations\n" . $hereprev) &&
4092 fix_insert_line($fixlinenr, "\+");
4097 # check for spaces at the beginning of a line.
4099 # 1) within comments
4100 # 2) indented preprocessor commands
4102 if ($rawline =~ /^\+ / && $line !~ /^\+ *(?:$;|#|$Ident:)/) {
4103 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
4104 if (WARN("LEADING_SPACE",
4105 "please, no spaces at the start of a line\n" . $herevet) &&
4107 $fixed[$fixlinenr] =~ s/^\+([ \t]+)/"\+" . tabify($1)/e;
4111 # check we are in a valid C source file if not then ignore this hunk
4112 next if ($realfile !~ /\.(h|c)$/);
4114 # check for unusual line ending [ or (
4115 if ($line =~ /^\+.*([\[\(])\s*$/) {
4116 CHK("OPEN_ENDED_LINE",
4117 "Lines should not end with a '$1'\n" . $herecurr);
4120 # check if this appears to be the start function declaration, save the name
4121 if ($sline =~ /^\+\{\s*$/ &&
4122 $prevline =~ /^\+(?:(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*)?($Ident)\(/) {
4123 $context_function = $1;
4126 # check if this appears to be the end of function declaration
4127 if ($sline =~ /^\+\}\s*$/) {
4128 undef $context_function;
4131 # check indentation of any line with a bare else
4132 # (but not if it is a multiple line "if (foo) return bar; else return baz;")
4133 # if the previous line is a break or return and is indented 1 tab more...
4134 if ($sline =~ /^\+([\t]+)(?:}[ \t]*)?else(?:[ \t]*{)?\s*$/) {
4135 my $tabs = length($1) + 1;
4136 if ($prevline =~ /^\+\t{$tabs,$tabs}break\b/ ||
4137 ($prevline =~ /^\+\t{$tabs,$tabs}return\b/ &&
4138 defined $lines[$linenr] &&
4139 $lines[$linenr] !~ /^[ \+]\t{$tabs,$tabs}return/)) {
4140 WARN("UNNECESSARY_ELSE",
4141 "else is not generally useful after a break or return\n" . $hereprev);
4145 # check indentation of a line with a break;
4146 # if the previous line is a goto, return or break
4147 # and is indented the same # of tabs
4148 if ($sline =~ /^\+([\t]+)break\s*;\s*$/) {
4150 if ($prevline =~ /^\+$tabs(goto|return|break)\b/) {
4151 if (WARN("UNNECESSARY_BREAK",
4152 "break is not useful after a $1\n" . $hereprev) &&
4154 fix_delete_line($fixlinenr, $rawline);
4159 # check for RCS/CVS revision markers
4160 if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) {
4162 "CVS style keyword markers, these will _not_ be updated\n". $herecurr);
4165 # check for old HOTPLUG __dev<foo> section markings
4166 if ($line =~ /\b(__dev(init|exit)(data|const|))\b/) {
4167 WARN("HOTPLUG_SECTION",
4168 "Using $1 is unnecessary\n" . $herecurr);
4171 # Check for potential 'bare' types
4172 my ($stat, $cond, $line_nr_next, $remain_next, $off_next,
4174 #print "LINE<$line>\n";
4175 if ($linenr > $suppress_statement &&
4176 $realcnt && $sline =~ /.\s*\S/) {
4177 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
4178 ctx_statement_block($linenr, $realcnt, 0);
4179 $stat =~ s/\n./\n /g;
4180 $cond =~ s/\n./\n /g;
4182 #print "linenr<$linenr> <$stat>\n";
4183 # If this statement has no statement boundaries within
4184 # it there is no point in retrying a statement scan
4185 # until we hit end of it.
4186 my $frag = $stat; $frag =~ s/;+\s*$//;
4187 if ($frag !~ /(?:{|;)/) {
4188 #print "skip<$line_nr_next>\n";
4189 $suppress_statement = $line_nr_next;
4192 # Find the real next line.
4193 $realline_next = $line_nr_next;
4194 if (defined $realline_next &&
4195 (!defined $lines[$realline_next - 1] ||
4196 substr($lines[$realline_next - 1], $off_next) =~ /^\s*$/)) {
4203 # Ignore goto labels.
4204 if ($s =~ /$Ident:\*$/s) {
4206 # Ignore functions being called
4207 } elsif ($s =~ /^.\s*$Ident\s*\(/s) {
4209 } elsif ($s =~ /^.\s*else\b/s) {
4211 # declarations always start with types
4212 } 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) {
4215 possible($type, "A:" . $s);
4217 # definitions in global scope can only start with types
4218 } elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b\s*(?!:)/s) {
4219 possible($1, "B:" . $s);
4222 # any (foo ... *) is a pointer cast, and foo is a type
4223 while ($s =~ /\(($Ident)(?:\s+$Sparse)*[\s\*]+\s*\)/sg) {
4224 possible($1, "C:" . $s);
4227 # Check for any sort of function declaration.
4228 # int foo(something bar, other baz);
4229 # void (*store_gdt)(x86_descr_ptr *);
4230 if ($prev_values eq 'E' && $s =~ /^(.(?:typedef\s*)?(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*(?:\b$Ident|\(\*\s*$Ident\))\s*)\(/s) {
4231 my ($name_len) = length($1);
4234 substr($ctx, 0, $name_len + 1, '');
4235 $ctx =~ s/\)[^\)]*$//;
4237 for my $arg (split(/\s*,\s*/, $ctx)) {
4238 if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$/s) {
4240 possible($1, "D:" . $s);
4248 # Checks which may be anchored in the context.
4251 # Check for switch () and associated case and default
4252 # statements should be at the same indent.
4253 if ($line=~/\bswitch\s*\(.*\)/) {
4256 my @ctx = ctx_block_outer($linenr, $realcnt);
4258 for my $ctx (@ctx) {
4259 my ($clen, $cindent) = line_stats($ctx);
4260 if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
4261 $indent != $cindent) {
4262 $err .= "$sep$ctx\n";
4269 ERROR("SWITCH_CASE_INDENT_LEVEL",
4270 "switch and case should be at the same indent\n$hereline$err");
4274 # if/while/etc brace do not go on next line, unless defining a do while loop,
4275 # or if that brace on the next line is for something else
4276 if ($line =~ /(.*)\b((?:if|while|for|switch|(?:[a-z_]+|)for_each[a-z_]+)\s*\(|do\b|else\b)/ && $line !~ /^.\s*\#/) {
4277 my $pre_ctx = "$1$2";
4279 my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0);
4281 if ($line =~ /^\+\t{6,}/) {
4282 WARN("DEEP_INDENTATION",
4283 "Too many leading tabs - consider code refactoring\n" . $herecurr);
4286 my $ctx_cnt = $realcnt - $#ctx - 1;
4287 my $ctx = join("\n", @ctx);
4289 my $ctx_ln = $linenr;
4290 my $ctx_skip = $realcnt;
4292 while ($ctx_skip > $ctx_cnt || ($ctx_skip == $ctx_cnt &&
4293 defined $lines[$ctx_ln - 1] &&
4294 $lines[$ctx_ln - 1] =~ /^-/)) {
4295 ##print "SKIP<$ctx_skip> CNT<$ctx_cnt>\n";
4296 $ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/);
4300 #print "realcnt<$realcnt> ctx_cnt<$ctx_cnt>\n";
4301 #print "pre<$pre_ctx>\nline<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>\n";
4303 if ($ctx !~ /{\s*/ && defined($lines[$ctx_ln - 1]) && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
4305 "that open brace { should be on the previous line\n" .
4306 "$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
4308 if ($level == 0 && $pre_ctx !~ /}\s*while\s*\($/ &&
4309 $ctx =~ /\)\s*\;\s*$/ &&
4310 defined $lines[$ctx_ln - 1])
4312 my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
4313 if ($nindent > $indent) {
4314 WARN("TRAILING_SEMICOLON",
4315 "trailing semicolon indicates no statements, indent implies otherwise\n" .
4316 "$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
4321 # Check relative indent for conditionals and blocks.
4322 if ($line =~ /\b(?:(?:if|while|for|(?:[a-z_]+|)for_each[a-z_]+)\s*\(|(?:do|else)\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) {
4323 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
4324 ctx_statement_block($linenr, $realcnt, 0)
4325 if (!defined $stat);
4326 my ($s, $c) = ($stat, $cond);
4328 substr($s, 0, length($c), '');
4330 # remove inline comments
4334 # Find out how long the conditional actually is.
4335 my @newlines = ($c =~ /\n/gs);
4336 my $cond_lines = 1 + $#newlines;
4338 # Make sure we remove the line prefixes as we have
4339 # none on the first line, and are going to readd them
4342 while ($s =~ /\n\s+\\\n/) {
4343 $cond_lines += $s =~ s/\n\s+\\\n/\n/g;
4346 # We want to check the first line inside the block
4347 # starting at the end of the conditional, so remove:
4348 # 1) any blank line termination
4349 # 2) any opening brace { on end of the line
4351 my $continuation = 0;
4353 $s =~ s/^.*\bdo\b//;
4355 if ($s =~ s/^\s*\\//) {
4358 if ($s =~ s/^\s*?\n//) {
4363 # Also ignore a loop construct at the end of a
4364 # preprocessor statement.
4365 if (($prevline =~ /^.\s*#\s*define\s/ ||
4366 $prevline =~ /\\\s*$/) && $continuation == 0) {
4372 while ($cond_ptr != $cond_lines) {
4373 $cond_ptr = $cond_lines;
4375 # If we see an #else/#elif then the code
4377 if ($s =~ /^\s*\#\s*(?:else|elif)/) {
4382 # 1) blank lines, they should be at 0,
4383 # 2) preprocessor lines, and
4385 if ($continuation ||
4387 $s =~ /^\s*#\s*?/ ||
4388 $s =~ /^\s*$Ident\s*:/) {
4389 $continuation = ($s =~ /^.*?\\\n/) ? 1 : 0;
4390 if ($s =~ s/^.*?\n//) {
4396 my (undef, $sindent) = line_stats("+" . $s);
4397 my $stat_real = raw_line($linenr, $cond_lines);
4399 # Check if either of these lines are modified, else
4400 # this is not this patch's fault.
4401 if (!defined($stat_real) ||
4402 $stat !~ /^\+/ && $stat_real !~ /^\+/) {
4405 if (defined($stat_real) && $cond_lines > 1) {
4406 $stat_real = "[...]\n$stat_real";
4409 #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";
4411 if ($check && $s ne '' &&
4412 (($sindent % $tabsize) != 0 ||
4413 ($sindent < $indent) ||
4414 ($sindent == $indent &&
4415 ($s !~ /^\s*(?:\}|\{|else\b)/)) ||
4416 ($sindent > $indent + $tabsize))) {
4417 WARN("SUSPECT_CODE_INDENT",
4418 "suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n");
4422 # Track the 'values' across context and added lines.
4423 my $opline = $line; $opline =~ s/^./ /;
4424 my ($curr_values, $curr_vars) =
4425 annotate_values($opline . "\n", $prev_values);
4426 $curr_values = $prev_values . $curr_values;
4428 my $outline = $opline; $outline =~ s/\t/ /g;
4429 print "$linenr > .$outline\n";
4430 print "$linenr > $curr_values\n";
4431 print "$linenr > $curr_vars\n";
4433 $prev_values = substr($curr_values, -1);
4435 #ignore lines not being added
4436 next if ($line =~ /^[^\+]/);
4438 # check for self assignments used to avoid compiler warnings
4439 # e.g.: int foo = foo, *bar = NULL;
4440 # struct foo bar = *(&(bar));
4441 if ($line =~ /^\+\s*(?:$Declare)?([A-Za-z_][A-Za-z\d_]*)\s*=/) {
4443 if ($line =~ /^\+\s*(?:$Declare)?$var\s*=\s*(?:$var|\*\s*\(?\s*&\s*\(?\s*$var\s*\)?\s*\)?)\s*[;,]/) {
4444 WARN("SELF_ASSIGNMENT",
4445 "Do not use self-assignments to avoid compiler warnings\n" . $herecurr);
4449 # check for dereferences that span multiple lines
4450 if ($prevline =~ /^\+.*$Lval\s*(?:\.|->)\s*$/ &&
4451 $line =~ /^\+\s*(?!\#\s*(?!define\s+|if))\s*$Lval/) {
4452 $prevline =~ /($Lval\s*(?:\.|->))\s*$/;
4454 $line =~ /^.\s*($Lval)/;
4457 WARN("MULTILINE_DEREFERENCE",
4458 "Avoid multiple line dereference - prefer '$ref'\n" . $hereprev);
4461 # check for declarations of signed or unsigned without int
4462 while ($line =~ m{\b($Declare)\s*(?!char\b|short\b|int\b|long\b)\s*($Ident)?\s*[=,;\[\)\(]}g) {
4465 $var = "" if (!defined $var);
4466 if ($type =~ /^(?:(?:$Storage|$Inline|$Attribute)\s+)*((?:un)?signed)((?:\s*\*)*)\s*$/) {
4470 $pointer = "" if (!defined $pointer);
4472 if (WARN("UNSPECIFIED_INT",
4473 "Prefer '" . trim($sign) . " int" . rtrim($pointer) . "' to bare use of '$sign" . rtrim($pointer) . "'\n" . $herecurr) &&
4475 my $decl = trim($sign) . " int ";
4476 my $comp_pointer = $pointer;
4477 $comp_pointer =~ s/\s//g;
4478 $decl .= $comp_pointer;
4479 $decl = rtrim($decl) if ($var eq "");
4480 $fixed[$fixlinenr] =~ s@\b$sign\s*\Q$pointer\E\s*$var\b@$decl$var@;
4485 # TEST: allow direct testing of the type matcher.
4487 if ($line =~ /^.\s*$Declare\s*$/) {
4489 "TEST: is type\n" . $herecurr);
4490 } elsif ($dbg_type > 1 && $line =~ /^.+($Declare)/) {
4491 ERROR("TEST_NOT_TYPE",
4492 "TEST: is not type ($1 is)\n". $herecurr);
4496 # TEST: allow direct testing of the attribute matcher.
4498 if ($line =~ /^.\s*$Modifier\s*$/) {
4500 "TEST: is attr\n" . $herecurr);
4501 } elsif ($dbg_attr > 1 && $line =~ /^.+($Modifier)/) {
4502 ERROR("TEST_NOT_ATTR",
4503 "TEST: is not attr ($1 is)\n". $herecurr);
4508 # check for initialisation to aggregates open brace on the next line
4509 if ($line =~ /^.\s*{/ &&
4510 $prevline =~ /(?:^|[^=])=\s*$/) {
4511 if (ERROR("OPEN_BRACE",
4512 "that open brace { should be on the previous line\n" . $hereprev) &&
4513 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
4514 fix_delete_line($fixlinenr - 1, $prevrawline);
4515 fix_delete_line($fixlinenr, $rawline);
4516 my $fixedline = $prevrawline;
4517 $fixedline =~ s/\s*=\s*$/ = {/;
4518 fix_insert_line($fixlinenr, $fixedline);
4520 $fixedline =~ s/^(.\s*)\{\s*/$1/;
4521 fix_insert_line($fixlinenr, $fixedline);
4526 # Checks which are anchored on the added line.
4529 # check for malformed paths in #include statements (uses RAW line)
4530 if ($rawline =~ m{^.\s*\#\s*include\s+[<"](.*)[">]}) {
4532 if ($path =~ m{//}) {
4533 ERROR("MALFORMED_INCLUDE",
4534 "malformed #include filename\n" . $herecurr);
4536 if ($path =~ "^uapi/" && $realfile =~ m@\binclude/uapi/@) {
4537 ERROR("UAPI_INCLUDE",
4538 "No #include in ...include/uapi/... should use a uapi/ path prefix\n" . $herecurr);
4542 # no C99 // comments
4543 if ($line =~ m{//}) {
4544 if (ERROR("C99_COMMENTS",
4545 "do not use C99 // comments\n" . $herecurr) &&
4547 my $line = $fixed[$fixlinenr];
4548 if ($line =~ /\/\/(.*)$/) {
4549 my $comment = trim($1);
4550 $fixed[$fixlinenr] =~ s@\/\/(.*)$@/\* $comment \*/@;
4554 # Remove C99 comments.
4556 $opline =~ s@//.*@@;
4558 # EXPORT_SYMBOL should immediately follow the thing it is exporting, consider
4559 # the whole statement.
4560 #print "APW <$lines[$realline_next - 1]>\n";
4561 if (defined $realline_next &&
4562 exists $lines[$realline_next - 1] &&
4563 !defined $suppress_export{$realline_next} &&
4564 ($lines[$realline_next - 1] =~ /EXPORT_SYMBOL.*\((.*)\)/)) {
4565 # Handle definitions which produce identifiers with
4568 # EXPORT_SYMBOL(something_foo);
4570 $name =~ s/^\s*($Ident).*/$1/;
4571 if ($stat =~ /^(?:.\s*}\s*\n)?.([A-Z_]+)\s*\(\s*($Ident)/ &&
4572 $name =~ /^${Ident}_$2/) {
4573 #print "FOO C name<$name>\n";
4574 $suppress_export{$realline_next} = 1;
4576 } elsif ($stat !~ /(?:
4578 ^.DEFINE_$Ident\(\Q$name\E\)|
4579 ^.DECLARE_$Ident\(\Q$name\E\)|
4580 ^.LIST_HEAD\(\Q$name\E\)|
4581 ^.(?:$Storage\s+)?$Type\s*\(\s*\*\s*\Q$name\E\s*\)\s*\(|
4582 \b\Q$name\E(?:\s+$Attribute)*\s*(?:;|=|\[|\()
4584 #print "FOO A<$lines[$realline_next - 1]> stat<$stat> name<$name>\n";
4585 $suppress_export{$realline_next} = 2;
4587 $suppress_export{$realline_next} = 1;
4590 if (!defined $suppress_export{$linenr} &&
4591 $prevline =~ /^.\s*$/ &&
4592 ($line =~ /EXPORT_SYMBOL.*\((.*)\)/)) {
4593 #print "FOO B <$lines[$linenr - 1]>\n";
4594 $suppress_export{$linenr} = 2;
4596 if (defined $suppress_export{$linenr} &&
4597 $suppress_export{$linenr} == 2) {
4598 WARN("EXPORT_SYMBOL",
4599 "EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
4602 # check for global initialisers.
4603 if ($line =~ /^\+$Type\s*$Ident(?:\s+$Modifier)*\s*=\s*($zero_initializer)\s*;/ &&
4604 !exclude_global_initialisers($realfile)) {
4605 if (ERROR("GLOBAL_INITIALISERS",
4606 "do not initialise globals to $1\n" . $herecurr) &&
4608 $fixed[$fixlinenr] =~ s/(^.$Type\s*$Ident(?:\s+$Modifier)*)\s*=\s*$zero_initializer\s*;/$1;/;
4611 # check for static initialisers.
4612 if ($line =~ /^\+.*\bstatic\s.*=\s*($zero_initializer)\s*;/) {
4613 if (ERROR("INITIALISED_STATIC",
4614 "do not initialise statics to $1\n" .
4617 $fixed[$fixlinenr] =~ s/(\bstatic\s.*?)\s*=\s*$zero_initializer\s*;/$1;/;
4621 # check for misordered declarations of char/short/int/long with signed/unsigned
4622 while ($sline =~ m{(\b$TypeMisordered\b)}g) {
4624 WARN("MISORDERED_TYPE",
4625 "type '$tmp' should be specified in [[un]signed] [short|int|long|long long] order\n" . $herecurr);
4628 # check for unnecessary <signed> int declarations of short/long/long long
4629 while ($sline =~ m{\b($TypeMisordered(\s*\*)*|$C90_int_types)\b}g) {
4630 my $type = trim($1);
4631 next if ($type !~ /\bint\b/);
4632 next if ($type !~ /\b(?:short|long\s+long|long)\b/);
4633 my $new_type = $type;
4634 $new_type =~ s/\b\s*int\s*\b/ /;
4635 $new_type =~ s/\b\s*(?:un)?signed\b\s*/ /;
4636 $new_type =~ s/^const\s+//;
4637 $new_type = "unsigned $new_type" if ($type =~ /\bunsigned\b/);
4638 $new_type = "const $new_type" if ($type =~ /^const\b/);
4639 $new_type =~ s/\s+/ /g;
4640 $new_type = trim($new_type);
4641 if (WARN("UNNECESSARY_INT",
4642 "Prefer '$new_type' over '$type' as the int is unnecessary\n" . $herecurr) &&
4644 $fixed[$fixlinenr] =~ s/\b\Q$type\E\b/$new_type/;
4648 # check for static const char * arrays.
4649 if ($line =~ /\bstatic\s+const\s+char\s*\*\s*(\w+)\s*\[\s*\]\s*=\s*/) {
4650 WARN("STATIC_CONST_CHAR_ARRAY",
4651 "static const char * array should probably be static const char * const\n" .
4655 # check for initialized const char arrays that should be static const
4656 if ($line =~ /^\+\s*const\s+(char|unsigned\s+char|_*u8|(?:[us]_)?int8_t)\s+\w+\s*\[\s*(?:\w+\s*)?\]\s*=\s*"/) {
4657 if (WARN("STATIC_CONST_CHAR_ARRAY",
4658 "const array should probably be static const\n" . $herecurr) &&
4660 $fixed[$fixlinenr] =~ s/(^.\s*)const\b/${1}static const/;
4664 # check for static char foo[] = "bar" declarations.
4665 if ($line =~ /\bstatic\s+char\s+(\w+)\s*\[\s*\]\s*=\s*"/) {
4666 WARN("STATIC_CONST_CHAR_ARRAY",
4667 "static char array declaration should probably be static const char\n" .
4671 # check for const <foo> const where <foo> is not a pointer or array type
4672 if ($sline =~ /\bconst\s+($BasicType)\s+const\b/) {
4674 if ($sline =~ /\bconst\s+\Q$found\E\s+const\b\s*\*/) {
4676 "'const $found const *' should probably be 'const $found * const'\n" . $herecurr);
4677 } elsif ($sline !~ /\bconst\s+\Q$found\E\s+const\s+\w+\s*\[/) {
4679 "'const $found const' should probably be 'const $found'\n" . $herecurr);
4683 # check for const static or static <non ptr type> const declarations
4684 # prefer 'static const <foo>' over 'const static <foo>' and 'static <foo> const'
4685 if ($sline =~ /^\+\s*const\s+static\s+($Type)\b/ ||
4686 $sline =~ /^\+\s*static\s+($BasicType)\s+const\b/) {
4687 if (WARN("STATIC_CONST",
4688 "Move const after static - use 'static const $1'\n" . $herecurr) &&
4690 $fixed[$fixlinenr] =~ s/\bconst\s+static\b/static const/;
4691 $fixed[$fixlinenr] =~ s/\bstatic\s+($BasicType)\s+const\b/static const $1/;
4695 # check for non-global char *foo[] = {"bar", ...} declarations.
4696 if ($line =~ /^.\s+(?:static\s+|const\s+)?char\s+\*\s*\w+\s*\[\s*\]\s*=\s*\{/) {
4697 WARN("STATIC_CONST_CHAR_ARRAY",
4698 "char * array declaration might be better as static const\n" .
4702 # check for sizeof(foo)/sizeof(foo[0]) that could be ARRAY_SIZE(foo)
4703 if ($line =~ m@\bsizeof\s*\(\s*($Lval)\s*\)@) {
4705 if ($line =~ m@\b(sizeof\s*\(\s*\Q$array\E\s*\)\s*/\s*sizeof\s*\(\s*\Q$array\E\s*\[\s*0\s*\]\s*\))@) {
4707 if (WARN("ARRAY_SIZE",
4708 "Prefer ARRAY_SIZE($array)\n" . $herecurr) &&
4710 $fixed[$fixlinenr] =~ s/\Q$array_div\E/ARRAY_SIZE($array)/;
4715 # check for function declarations without arguments like "int foo()"
4716 if ($line =~ /(\b$Type\s*$Ident)\s*\(\s*\)/) {
4717 if (ERROR("FUNCTION_WITHOUT_ARGS",
4718 "Bad function definition - $1() should probably be $1(void)\n" . $herecurr) &&
4720 $fixed[$fixlinenr] =~ s/(\b($Type)\s+($Ident))\s*\(\s*\)/$2 $3(void)/;
4724 # check for new typedefs, only function parameters and sparse annotations
4726 if ($line =~ /\btypedef\s/ &&
4727 $line !~ /\btypedef\s+$Type\s*\(\s*\*?$Ident\s*\)\s*\(/ &&
4728 $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ &&
4729 $line !~ /\b$typeTypedefs\b/ &&
4730 $line !~ /\b__bitwise\b/) {
4731 WARN("NEW_TYPEDEFS",
4732 "do not add new typedefs\n" . $herecurr);
4735 # * goes on variable not on type
4737 while ($line =~ m{(\($NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)\))}g) {
4739 my ($ident, $from, $to) = ($1, $2, $2);
4741 # Should start with a space.
4742 $to =~ s/^(\S)/ $1/;
4743 # Should not end with a space.
4745 # '*'s should not have spaces between.
4746 while ($to =~ s/\*\s+\*/\*\*/) {
4749 ## print "1: from<$from> to<$to> ident<$ident>\n";
4751 if (ERROR("POINTER_LOCATION",
4752 "\"(foo$from)\" should be \"(foo$to)\"\n" . $herecurr) &&
4754 my $sub_from = $ident;
4755 my $sub_to = $ident;
4756 $sub_to =~ s/\Q$from\E/$to/;
4757 $fixed[$fixlinenr] =~
4758 s@\Q$sub_from\E@$sub_to@;
4762 while ($line =~ m{(\b$NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)($Ident))}g) {
4764 my ($match, $from, $to, $ident) = ($1, $2, $2, $3);
4766 # Should start with a space.
4767 $to =~ s/^(\S)/ $1/;
4768 # Should not end with a space.
4770 # '*'s should not have spaces between.
4771 while ($to =~ s/\*\s+\*/\*\*/) {
4773 # Modifiers should have spaces.
4774 $to =~ s/(\b$Modifier$)/$1 /;
4776 ## print "2: from<$from> to<$to> ident<$ident>\n";
4777 if ($from ne $to && $ident !~ /^$Modifier$/) {
4778 if (ERROR("POINTER_LOCATION",
4779 "\"foo${from}bar\" should be \"foo${to}bar\"\n" . $herecurr) &&
4782 my $sub_from = $match;
4783 my $sub_to = $match;
4784 $sub_to =~ s/\Q$from\E/$to/;
4785 $fixed[$fixlinenr] =~
4786 s@\Q$sub_from\E@$sub_to@;
4791 # do not use BUG() or variants
4792 if ($line =~ /\b(?!AA_|BUILD_|DCCP_|IDA_|KVM_|RWLOCK_|snd_|SPIN_)(?:[a-zA-Z_]*_)?BUG(?:_ON)?(?:_[A-Z_]+)?\s*\(/) {
4793 my $msg_level = \&WARN;
4794 $msg_level = \&CHK if ($file);
4795 &{$msg_level}("AVOID_BUG",
4796 "Do not crash the kernel unless it is absolutely unavoidable--use WARN_ON_ONCE() plus recovery code (if feasible) instead of BUG() or variants\n" . $herecurr);
4799 # avoid LINUX_VERSION_CODE
4800 if ($line =~ /\bLINUX_VERSION_CODE\b/) {
4801 WARN("LINUX_VERSION_CODE",
4802 "LINUX_VERSION_CODE should be avoided, code should be for the version to which it is merged\n" . $herecurr);
4805 # check for uses of printk_ratelimit
4806 if ($line =~ /\bprintk_ratelimit\s*\(/) {
4807 WARN("PRINTK_RATELIMITED",
4808 "Prefer printk_ratelimited or pr_<level>_ratelimited to printk_ratelimit\n" . $herecurr);
4811 # printk should use KERN_* levels
4812 if ($line =~ /\bprintk\s*\(\s*(?!KERN_[A-Z]+\b)/) {
4813 WARN("PRINTK_WITHOUT_KERN_LEVEL",
4814 "printk() should include KERN_<LEVEL> facility level\n" . $herecurr);
4817 # prefer variants of (subsystem|netdev|dev|pr)_<level> to printk(KERN_<LEVEL>
4818 if ($line =~ /\b(printk(_once|_ratelimited)?)\s*\(\s*KERN_([A-Z]+)/) {
4822 $modifier = "" if (!defined($modifier));
4823 my $level = lc($orig);
4824 $level = "warn" if ($level eq "warning");
4825 my $level2 = $level;
4826 $level2 = "dbg" if ($level eq "debug");
4827 $level .= $modifier;
4828 $level2 .= $modifier;
4829 WARN("PREFER_PR_LEVEL",
4830 "Prefer [subsystem eg: netdev]_$level2([subsystem]dev, ... then dev_$level2(dev, ... then pr_$level(... to $printk(KERN_$orig ...\n" . $herecurr);
4833 # prefer dev_<level> to dev_printk(KERN_<LEVEL>
4834 if ($line =~ /\bdev_printk\s*\(\s*KERN_([A-Z]+)/) {
4836 my $level = lc($orig);
4837 $level = "warn" if ($level eq "warning");
4838 $level = "dbg" if ($level eq "debug");
4839 WARN("PREFER_DEV_LEVEL",
4840 "Prefer dev_$level(... to dev_printk(KERN_$orig, ...\n" . $herecurr);
4843 # trace_printk should not be used in production code.
4844 if ($line =~ /\b(trace_printk|trace_puts|ftrace_vprintk)\s*\(/) {
4845 WARN("TRACE_PRINTK",
4846 "Do not use $1() in production code (this can be ignored if built only with a debug config option)\n" . $herecurr);
4849 # ENOSYS means "bad syscall nr" and nothing else. This will have a small
4850 # number of false positives, but assembly files are not checked, so at
4851 # least the arch entry code will not trigger this warning.
4852 if ($line =~ /\bENOSYS\b/) {
4854 "ENOSYS means 'invalid syscall nr' and nothing else\n" . $herecurr);
4857 # ENOTSUPP is not a standard error code and should be avoided in new patches.
4858 # Folks usually mean EOPNOTSUPP (also called ENOTSUP), when they type ENOTSUPP.
4859 # Similarly to ENOSYS warning a small number of false positives is expected.
4860 if (!$file && $line =~ /\bENOTSUPP\b/) {
4861 if (WARN("ENOTSUPP",
4862 "ENOTSUPP is not a SUSV4 error code, prefer EOPNOTSUPP\n" . $herecurr) &&
4864 $fixed[$fixlinenr] =~ s/\bENOTSUPP\b/EOPNOTSUPP/;
4868 # function brace can't be on same line, except for #defines of do while,
4869 # or if closed on same line
4870 if ($perl_version_ok &&
4871 $sline =~ /$Type\s*$Ident\s*$balanced_parens\s*\{/ &&
4872 $sline !~ /\#\s*define\b.*do\s*\{/ &&
4874 if (ERROR("OPEN_BRACE",
4875 "open brace '{' following function definitions go on the next line\n" . $herecurr) &&
4877 fix_delete_line($fixlinenr, $rawline);
4878 my $fixed_line = $rawline;
4879 $fixed_line =~ /(^..*$Type\s*$Ident\(.*\)\s*)\{(.*)$/;
4882 fix_insert_line($fixlinenr, ltrim($line1));
4883 fix_insert_line($fixlinenr, "\+{");
4884 if ($line2 !~ /^\s*$/) {
4885 fix_insert_line($fixlinenr, "\+\t" . trim($line2));
4890 # open braces for enum, union and struct go on the same line.
4891 if ($line =~ /^.\s*{/ &&
4892 $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
4893 if (ERROR("OPEN_BRACE",
4894 "open brace '{' following $1 go on the same line\n" . $hereprev) &&
4895 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
4896 fix_delete_line($fixlinenr - 1, $prevrawline);
4897 fix_delete_line($fixlinenr, $rawline);
4898 my $fixedline = rtrim($prevrawline) . " {";
4899 fix_insert_line($fixlinenr, $fixedline);
4900 $fixedline = $rawline;
4901 $fixedline =~ s/^(.\s*)\{\s*/$1\t/;
4902 if ($fixedline !~ /^\+\s*$/) {
4903 fix_insert_line($fixlinenr, $fixedline);
4908 # missing space after union, struct or enum definition
4909 if ($line =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident){1,2}[=\{]/) {
4911 "missing space after $1 definition\n" . $herecurr) &&
4913 $fixed[$fixlinenr] =~
4914 s/^(.\s*(?:typedef\s+)?(?:enum|union|struct)(?:\s+$Ident){1,2})([=\{])/$1 $2/;
4918 # Function pointer declarations
4919 # check spacing between type, funcptr, and args
4920 # canonical declaration is "type (*funcptr)(args...)"
4921 if ($line =~ /^.\s*($Declare)\((\s*)\*(\s*)($Ident)(\s*)\)(\s*)\(/) {
4923 my $pre_pointer_space = $2;
4924 my $post_pointer_space = $3;
4926 my $post_funcname_space = $5;
4927 my $pre_args_space = $6;
4929 # the $Declare variable will capture all spaces after the type
4930 # so check it for a missing trailing missing space but pointer return types
4931 # don't need a space so don't warn for those.
4932 my $post_declare_space = "";
4933 if ($declare =~ /(\s+)$/) {
4934 $post_declare_space = $1;
4935 $declare = rtrim($declare);
4937 if ($declare !~ /\*$/ && $post_declare_space =~ /^$/) {
4939 "missing space after return type\n" . $herecurr);
4940 $post_declare_space = " ";
4943 # unnecessary space "type (*funcptr)(args...)"
4944 # This test is not currently implemented because these declarations are
4946 # int foo(int bar, ...)
4947 # and this is form shouldn't/doesn't generate a checkpatch warning.
4949 # elsif ($declare =~ /\s{2,}$/) {
4951 # "Multiple spaces after return type\n" . $herecurr);
4954 # unnecessary space "type ( *funcptr)(args...)"
4955 if (defined $pre_pointer_space &&
4956 $pre_pointer_space =~ /^\s/) {
4958 "Unnecessary space after function pointer open parenthesis\n" . $herecurr);
4961 # unnecessary space "type (* funcptr)(args...)"
4962 if (defined $post_pointer_space &&
4963 $post_pointer_space =~ /^\s/) {
4965 "Unnecessary space before function pointer name\n" . $herecurr);
4968 # unnecessary space "type (*funcptr )(args...)"
4969 if (defined $post_funcname_space &&
4970 $post_funcname_space =~ /^\s/) {
4972 "Unnecessary space after function pointer name\n" . $herecurr);
4975 # unnecessary space "type (*funcptr) (args...)"
4976 if (defined $pre_args_space &&
4977 $pre_args_space =~ /^\s/) {
4979 "Unnecessary space before function pointer arguments\n" . $herecurr);
4982 if (show_type("SPACING") && $fix) {
4983 $fixed[$fixlinenr] =~
4984 s/^(.\s*)$Declare\s*\(\s*\*\s*$Ident\s*\)\s*\(/$1 . $declare . $post_declare_space . '(*' . $funcname . ')('/ex;
4988 # check for spacing round square brackets; allowed:
4989 # 1. with a type on the left -- int [] a;
4990 # 2. at the beginning of a line for slice initialisers -- [0...10] = 5,
4991 # 3. inside a curly brace -- = { [0...10] = 5 }
4992 while ($line =~ /(.*?\s)\[/g) {
4993 my ($where, $prefix) = ($-[1], $1);
4994 if ($prefix !~ /$Type\s+$/ &&
4995 ($where != 0 || $prefix !~ /^.\s+$/) &&
4996 $prefix !~ /[{,:]\s+$/) {
4997 if (ERROR("BRACKET_SPACE",
4998 "space prohibited before open square bracket '['\n" . $herecurr) &&
5000 $fixed[$fixlinenr] =~
5001 s/^(\+.*?)\s+\[/$1\[/;
5006 # check for spaces between functions and their parentheses.
5007 while ($line =~ /($Ident)\s+\(/g) {
5009 my $ctx_before = substr($line, 0, $-[1]);
5010 my $ctx = "$ctx_before$name";
5012 # Ignore those directives where spaces _are_ permitted.
5014 if|for|while|switch|return|case|
5015 volatile|__volatile__|
5016 __attribute__|format|__extension__|
5019 # cpp #define statements have non-optional spaces, ie
5020 # if there is a space between the name and the open
5021 # parenthesis it is simply not a parameter group.
5022 } elsif ($ctx_before =~ /^.\s*\#\s*define\s*$/) {
5024 # cpp #elif statement condition may start with a (
5025 } elsif ($ctx =~ /^.\s*\#\s*elif\s*$/) {
5027 # If this whole things ends with a type its most
5028 # likely a typedef for a function.
5029 } elsif ($ctx =~ /$Type$/) {
5033 "space prohibited between function name and open parenthesis '('\n" . $herecurr) &&
5035 $fixed[$fixlinenr] =~
5036 s/\b$name\s+\(/$name\(/;
5041 # Check operator spacing.
5042 if (!($line=~/\#\s*include/)) {
5043 my $fixed_line = "";
5047 <<=|>>=|<=|>=|==|!=|
5048 \+=|-=|\*=|\/=|%=|\^=|\|=|&=|
5049 =>|->|<<|>>|<|>|=|!|~|
5050 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%|
5053 my @elements = split(/($ops|;)/, $opline);
5055 ## print("element count: <" . $#elements . ">\n");
5056 ## foreach my $el (@elements) {
5057 ## print("el: <$el>\n");
5060 my @fix_elements = ();
5063 foreach my $el (@elements) {
5064 push(@fix_elements, substr($rawline, $off, length($el)));
5065 $off += length($el);
5070 my $blank = copy_spacing($opline);
5071 my $last_after = -1;
5073 for (my $n = 0; $n < $#elements; $n += 2) {
5075 my $good = $fix_elements[$n] . $fix_elements[$n + 1];
5077 ## print("n: <$n> good: <$good>\n");
5079 $off += length($elements[$n]);
5081 # Pick up the preceding and succeeding characters.
5082 my $ca = substr($opline, 0, $off);
5084 if (length($opline) >= ($off + length($elements[$n + 1]))) {
5085 $cc = substr($opline, $off + length($elements[$n + 1]));
5087 my $cb = "$ca$;$cc";
5090 $a = 'V' if ($elements[$n] ne '');
5091 $a = 'W' if ($elements[$n] =~ /\s$/);
5092 $a = 'C' if ($elements[$n] =~ /$;$/);
5093 $a = 'B' if ($elements[$n] =~ /(\[|\()$/);
5094 $a = 'O' if ($elements[$n] eq '');
5095 $a = 'E' if ($ca =~ /^\s*$/);
5097 my $op = $elements[$n + 1];
5100 if (defined $elements[$n + 2]) {
5101 $c = 'V' if ($elements[$n + 2] ne '');
5102 $c = 'W' if ($elements[$n + 2] =~ /^\s/);
5103 $c = 'C' if ($elements[$n + 2] =~ /^$;/);
5104 $c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
5105 $c = 'O' if ($elements[$n + 2] eq '');
5106 $c = 'E' if ($elements[$n + 2] =~ /^\s*\\$/);
5111 my $ctx = "${a}x${c}";
5113 my $at = "(ctx:$ctx)";
5115 my $ptr = substr($blank, 0, $off) . "^";
5116 my $hereptr = "$hereline$ptr\n";
5118 # Pull out the value of this operator.
5119 my $op_type = substr($curr_values, $off + 1, 1);
5121 # Get the full operator variant.
5122 my $opv = $op . substr($curr_vars, $off, 1);
5124 # Ignore operators passed as parameters.
5125 if ($op_type ne 'V' &&
5126 $ca =~ /\s$/ && $cc =~ /^\s*[,\)]/) {
5129 # } elsif ($op =~ /^$;+$/) {
5131 # ; should have either the end of line or a space or \ after it
5132 } elsif ($op eq ';') {
5133 if ($ctx !~ /.x[WEBC]/ &&
5134 $cc !~ /^\\/ && $cc !~ /^;/) {
5135 if (ERROR("SPACING",
5136 "space required after that '$op' $at\n" . $hereptr)) {
5137 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]) . " ";
5143 } elsif ($op eq '//') {
5145 # : when part of a bitfield
5146 } elsif ($opv eq ':B') {
5147 # skip the bitfield test for now
5151 } elsif ($op eq '->') {
5152 if ($ctx =~ /Wx.|.xW/) {
5153 if (ERROR("SPACING",
5154 "spaces prohibited around that '$op' $at\n" . $hereptr)) {
5155 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
5156 if (defined $fix_elements[$n + 2]) {
5157 $fix_elements[$n + 2] =~ s/^\s+//;
5163 # , must not have a space before and must have a space on the right.
5164 } elsif ($op eq ',') {
5165 my $rtrim_before = 0;
5166 my $space_after = 0;
5167 if ($ctx =~ /Wx./) {
5168 if (ERROR("SPACING",
5169 "space prohibited before that '$op' $at\n" . $hereptr)) {
5174 if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) {
5175 if (ERROR("SPACING",
5176 "space required after that '$op' $at\n" . $hereptr)) {
5182 if ($rtrim_before || $space_after) {
5183 if ($rtrim_before) {
5184 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
5186 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]);
5193 # '*' as part of a type definition -- reported already.
5194 } elsif ($opv eq '*_') {
5195 #warn "'*' is part of type\n";
5197 # unary operators should have a space before and
5198 # none after. May be left adjacent to another
5199 # unary operator, or a cast
5200 } elsif ($op eq '!' || $op eq '~' ||
5201 $opv eq '*U' || $opv eq '-U' ||
5202 $opv eq '&U' || $opv eq '&&U') {
5203 if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
5204 if (ERROR("SPACING",
5205 "space required before that '$op' $at\n" . $hereptr)) {
5206 if ($n != $last_after + 2) {
5207 $good = $fix_elements[$n] . " " . ltrim($fix_elements[$n + 1]);
5212 if ($op eq '*' && $cc =~/\s*$Modifier\b/) {
5213 # A unary '*' may be const
5215 } elsif ($ctx =~ /.xW/) {
5216 if (ERROR("SPACING",
5217 "space prohibited after that '$op' $at\n" . $hereptr)) {
5218 $good = $fix_elements[$n] . rtrim($fix_elements[$n + 1]);
5219 if (defined $fix_elements[$n + 2]) {
5220 $fix_elements[$n + 2] =~ s/^\s+//;
5226 # unary ++ and unary -- are allowed no space on one side.
5227 } elsif ($op eq '++' or $op eq '--') {
5228 if ($ctx !~ /[WEOBC]x[^W]/ && $ctx !~ /[^W]x[WOBEC]/) {
5229 if (ERROR("SPACING",
5230 "space required one side of that '$op' $at\n" . $hereptr)) {
5231 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]) . " ";
5235 if ($ctx =~ /Wx[BE]/ ||
5236 ($ctx =~ /Wx./ && $cc =~ /^;/)) {
5237 if (ERROR("SPACING",
5238 "space prohibited before that '$op' $at\n" . $hereptr)) {
5239 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
5243 if ($ctx =~ /ExW/) {
5244 if (ERROR("SPACING",
5245 "space prohibited after that '$op' $at\n" . $hereptr)) {
5246 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]);
5247 if (defined $fix_elements[$n + 2]) {
5248 $fix_elements[$n + 2] =~ s/^\s+//;
5254 # << and >> may either have or not have spaces both sides
5255 } elsif ($op eq '<<' or $op eq '>>' or
5256 $op eq '&' or $op eq '^' or $op eq '|' or
5257 $op eq '+' or $op eq '-' or
5258 $op eq '*' or $op eq '/' or
5262 if (defined $fix_elements[$n + 2] && $ctx !~ /[EW]x[EW]/) {
5264 "spaces preferred around that '$op' $at\n" . $hereptr)) {
5265 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
5266 $fix_elements[$n + 2] =~ s/^\s+//;
5269 } elsif (!defined $fix_elements[$n + 2] && $ctx !~ /Wx[OE]/) {
5271 "space preferred before that '$op' $at\n" . $hereptr)) {
5272 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]);
5276 } elsif ($ctx =~ /Wx[^WCE]|[^WCE]xW/) {
5277 if (ERROR("SPACING",
5278 "need consistent spacing around '$op' $at\n" . $hereptr)) {
5279 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
5280 if (defined $fix_elements[$n + 2]) {
5281 $fix_elements[$n + 2] =~ s/^\s+//;
5287 # A colon needs no spaces before when it is
5288 # terminating a case value or a label.
5289 } elsif ($opv eq ':C' || $opv eq ':L') {
5290 if ($ctx =~ /Wx./ and $realfile !~ m@.*\.lds\.h$@) {
5291 if (ERROR("SPACING",
5292 "space prohibited before that '$op' $at\n" . $hereptr)) {
5293 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
5298 # All the others need spaces both sides.
5299 } elsif ($ctx !~ /[EWC]x[CWE]/) {
5302 # Ignore email addresses <foo@bar>
5304 $cc =~ /^\S+\@\S+>/) ||
5306 $ca =~ /<\S+\@\S+$/))
5311 # for asm volatile statements
5312 # ignore a colon with another
5313 # colon immediately before or after
5315 ($ca =~ /:$/ || $cc =~ /^:/)) {
5319 # messages are ERROR, but ?: are CHK
5321 my $msg_level = \&ERROR;
5322 $msg_level = \&CHK if (($op eq '?:' || $op eq '?' || $op eq ':') && $ctx =~ /VxV/);
5324 if (&{$msg_level}("SPACING",
5325 "spaces required around that '$op' $at\n" . $hereptr)) {
5326 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
5327 if (defined $fix_elements[$n + 2]) {
5328 $fix_elements[$n + 2] =~ s/^\s+//;
5334 $off += length($elements[$n + 1]);
5336 ## print("n: <$n> GOOD: <$good>\n");
5338 $fixed_line = $fixed_line . $good;
5341 if (($#elements % 2) == 0) {
5342 $fixed_line = $fixed_line . $fix_elements[$#elements];
5345 if ($fix && $line_fixed && $fixed_line ne $fixed[$fixlinenr]) {
5346 $fixed[$fixlinenr] = $fixed_line;
5352 # check for whitespace before a non-naked semicolon
5353 if ($line =~ /^\+.*\S\s+;\s*$/) {
5355 "space prohibited before semicolon\n" . $herecurr) &&
5357 1 while $fixed[$fixlinenr] =~
5358 s/^(\+.*\S)\s+;/$1;/;
5362 # check for multiple assignments
5363 if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
5364 CHK("MULTIPLE_ASSIGNMENTS",
5365 "multiple assignments should be avoided\n" . $herecurr);
5368 ## # check for multiple declarations, allowing for a function declaration
5370 ## if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
5371 ## $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
5373 ## # Remove any bracketed sections to ensure we do not
5374 ## # falsely report the parameters of functions.
5376 ## while ($ln =~ s/\([^\(\)]*\)//g) {
5378 ## if ($ln =~ /,/) {
5379 ## WARN("MULTIPLE_DECLARATION",
5380 ## "declaring multiple variables together should be avoided\n" . $herecurr);
5384 #need space before brace following if, while, etc
5385 if (($line =~ /\(.*\)\{/ && $line !~ /\($Type\)\{/) ||
5386 $line =~ /\b(?:else|do)\{/) {
5387 if (ERROR("SPACING",
5388 "space required before the open brace '{'\n" . $herecurr) &&
5390 $fixed[$fixlinenr] =~ s/^(\+.*(?:do|else|\)))\{/$1 {/;
5394 ## # check for blank lines before declarations
5395 ## if ($line =~ /^.\t+$Type\s+$Ident(?:\s*=.*)?;/ &&
5396 ## $prevrawline =~ /^.\s*$/) {
5398 ## "No blank lines before declarations\n" . $hereprev);
5402 # closing brace should have a space following it when it has anything
5404 if ($line =~ /}(?!(?:,|;|\)|\}))\S/) {
5405 if (ERROR("SPACING",
5406 "space required after that close brace '}'\n" . $herecurr) &&
5408 $fixed[$fixlinenr] =~
5409 s/}((?!(?:,|;|\)))\S)/} $1/;
5413 # check spacing on square brackets
5414 if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
5415 if (ERROR("SPACING",
5416 "space prohibited after that open square bracket '['\n" . $herecurr) &&
5418 $fixed[$fixlinenr] =~
5422 if ($line =~ /\s\]/) {
5423 if (ERROR("SPACING",
5424 "space prohibited before that close square bracket ']'\n" . $herecurr) &&
5426 $fixed[$fixlinenr] =~
5431 # check spacing on parentheses
5432 if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
5433 $line !~ /for\s*\(\s+;/) {
5434 if (ERROR("SPACING",
5435 "space prohibited after that open parenthesis '('\n" . $herecurr) &&
5437 $fixed[$fixlinenr] =~
5441 if ($line =~ /(\s+)\)/ && $line !~ /^.\s*\)/ &&
5442 $line !~ /for\s*\(.*;\s+\)/ &&
5443 $line !~ /:\s+\)/) {
5444 if (ERROR("SPACING",
5445 "space prohibited before that close parenthesis ')'\n" . $herecurr) &&
5447 $fixed[$fixlinenr] =~
5452 # check unnecessary parentheses around addressof/dereference single $Lvals
5453 # ie: &(foo->bar) should be &foo->bar and *(foo->bar) should be *foo->bar
5455 while ($line =~ /(?:[^&]&\s*|\*)\(\s*($Ident\s*(?:$Member\s*)+)\s*\)/g) {
5457 if (CHK("UNNECESSARY_PARENTHESES",
5458 "Unnecessary parentheses around $var\n" . $herecurr) &&
5460 $fixed[$fixlinenr] =~ s/\(\s*\Q$var\E\s*\)/$var/;
5464 # check for unnecessary parentheses around function pointer uses
5465 # ie: (foo->bar)(); should be foo->bar();
5466 # but not "if (foo->bar) (" to avoid some false positives
5467 if ($line =~ /(\bif\s*|)(\(\s*$Ident\s*(?:$Member\s*)+\))[ \t]*\(/ && $1 !~ /^if/) {
5469 if (CHK("UNNECESSARY_PARENTHESES",
5470 "Unnecessary parentheses around function pointer $var\n" . $herecurr) &&
5472 my $var2 = deparenthesize($var);
5474 $fixed[$fixlinenr] =~ s/\Q$var\E/$var2/;
5478 # check for unnecessary parentheses around comparisons in if uses
5479 # when !drivers/staging or command-line uses --strict
5480 if (($realfile !~ m@^(?:drivers/staging/)@ || $check_orig) &&
5481 $perl_version_ok && defined($stat) &&
5482 $stat =~ /(^.\s*if\s*($balanced_parens))/) {
5484 my $test = substr($2, 1, -1);
5486 while ($test =~ /(?:^|[^\w\&\!\~])+\s*\(\s*([\&\!\~]?\s*$Lval\s*(?:$Compare\s*$FuncArg)?)\s*\)/g) {
5488 # avoid parentheses around potential macro args
5489 next if ($match =~ /^\s*\w+\s*$/);
5490 if (!defined($herectx)) {
5491 $herectx = $here . "\n";
5492 my $cnt = statement_rawlines($if_stat);
5493 for (my $n = 0; $n < $cnt; $n++) {
5494 my $rl = raw_line($linenr, $n);
5495 $herectx .= $rl . "\n";
5496 last if $rl =~ /^[ \+].*\{/;
5499 CHK("UNNECESSARY_PARENTHESES",
5500 "Unnecessary parentheses around '$match'\n" . $herectx);
5504 # check that goto labels aren't indented (allow a single space indentation)
5505 # and ignore bitfield definitions like foo:1
5506 # Strictly, labels can have whitespace after the identifier and before the :
5507 # but this is not allowed here as many ?: uses would appear to be labels
5508 if ($sline =~ /^.\s+[A-Za-z_][A-Za-z\d_]*:(?!\s*\d+)/ &&
5509 $sline !~ /^. [A-Za-z\d_][A-Za-z\d_]*:/ &&
5510 $sline !~ /^.\s+default:/) {
5511 if (WARN("INDENTED_LABEL",
5512 "labels should not be indented\n" . $herecurr) &&
5514 $fixed[$fixlinenr] =~
5519 # check if a statement with a comma should be two statements like:
5520 # foo = bar(), /* comma should be semicolon */
5522 if (defined($stat) &&
5523 $stat =~ /^\+\s*(?:$Lval\s*$Assignment\s*)?$FuncArg\s*,\s*(?:$Lval\s*$Assignment\s*)?$FuncArg\s*;\s*$/) {
5524 my $cnt = statement_rawlines($stat);
5525 my $herectx = get_stat_here($linenr, $cnt, $here);
5526 WARN("SUSPECT_COMMA_SEMICOLON",
5527 "Possible comma where semicolon could be used\n" . $herectx);
5530 # return is not a function
5531 if (defined($stat) && $stat =~ /^.\s*return(\s*)\(/s) {
5533 if ($perl_version_ok &&
5534 $stat =~ /^.\s*return\s*($balanced_parens)\s*;\s*$/) {
5536 $value = deparenthesize($value);
5537 if ($value =~ m/^\s*$FuncArg\s*(?:\?|$)/) {
5538 ERROR("RETURN_PARENTHESES",
5539 "return is not a function, parentheses are not required\n" . $herecurr);
5541 } elsif ($spacing !~ /\s+/) {
5543 "space required before the open parenthesis '('\n" . $herecurr);
5547 # unnecessary return in a void function
5548 # at end-of-function, with the previous line a single leading tab, then return;
5549 # and the line before that not a goto label target like "out:"
5550 if ($sline =~ /^[ \+]}\s*$/ &&
5551 $prevline =~ /^\+\treturn\s*;\s*$/ &&
5553 $lines[$linenr - 3] =~ /^[ +]/ &&
5554 $lines[$linenr - 3] !~ /^[ +]\s*$Ident\s*:/) {
5556 "void function return statements are not generally useful\n" . $hereprev);
5559 # if statements using unnecessary parentheses - ie: if ((foo == bar))
5560 if ($perl_version_ok &&
5561 $line =~ /\bif\s*((?:\(\s*){2,})/) {
5562 my $openparens = $1;
5563 my $count = $openparens =~ tr@\(@\(@;
5565 if ($line =~ /\bif\s*(?:\(\s*){$count,$count}$LvalOrFunc\s*($Compare)\s*$LvalOrFunc(?:\s*\)){$count,$count}/) {
5566 my $comp = $4; #Not $1 because of $LvalOrFunc
5567 $msg = " - maybe == should be = ?" if ($comp eq "==");
5568 WARN("UNNECESSARY_PARENTHESES",
5569 "Unnecessary parentheses$msg\n" . $herecurr);
5573 # comparisons with a constant or upper case identifier on the left
5574 # avoid cases like "foo + BAR < baz"
5575 # only fix matches surrounded by parentheses to avoid incorrect
5576 # conversions like "FOO < baz() + 5" being "misfixed" to "baz() > FOO + 5"
5577 if ($perl_version_ok &&
5578 $line =~ /^\+(.*)\b($Constant|[A-Z_][A-Z0-9_]*)\s*($Compare)\s*($LvalOrFunc)/) {
5583 my $newcomp = $comp;
5584 if ($lead !~ /(?:$Operators|\.)\s*$/ &&
5585 $to !~ /^(?:Constant|[A-Z_][A-Z0-9_]*)$/ &&
5586 WARN("CONSTANT_COMPARISON",
5587 "Comparisons should place the constant on the right side of the test\n" . $herecurr) &&
5591 } elsif ($comp eq "<=") {
5593 } elsif ($comp eq ">") {
5595 } elsif ($comp eq ">=") {
5598 $fixed[$fixlinenr] =~ s/\(\s*\Q$const\E\s*$Compare\s*\Q$to\E\s*\)/($to $newcomp $const)/;
5602 # Return of what appears to be an errno should normally be negative
5603 if ($sline =~ /\breturn(?:\s*\(+\s*|\s+)(E[A-Z]+)(?:\s*\)+\s*|\s*)[;:,]/) {
5605 if ($name ne 'EOF' && $name ne 'ERROR' && $name !~ /^EPOLL/) {
5606 WARN("USE_NEGATIVE_ERRNO",
5607 "return of an errno should typically be negative (ie: return -$1)\n" . $herecurr);
5611 # Need a space before open parenthesis after if, while etc
5612 if ($line =~ /\b(if|while|for|switch)\(/) {
5613 if (ERROR("SPACING",
5614 "space required before the open parenthesis '('\n" . $herecurr) &&
5616 $fixed[$fixlinenr] =~
5617 s/\b(if|while|for|switch)\(/$1 \(/;
5621 # Check for illegal assignment in if conditional -- and check for trailing
5622 # statements after the conditional.
5623 if ($line =~ /do\s*(?!{)/) {
5624 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
5625 ctx_statement_block($linenr, $realcnt, 0)
5626 if (!defined $stat);
5627 my ($stat_next) = ctx_statement_block($line_nr_next,
5628 $remain_next, $off_next);
5629 $stat_next =~ s/\n./\n /g;
5630 ##print "stat<$stat> stat_next<$stat_next>\n";
5632 if ($stat_next =~ /^\s*while\b/) {
5633 # If the statement carries leading newlines,
5634 # then count those as offsets.
5636 ($stat_next =~ /^((?:\s*\n[+-])*\s*)/s);
5638 statement_rawlines($whitespace) - 1;
5640 $suppress_whiletrailers{$line_nr_next +
5644 if (!defined $suppress_whiletrailers{$linenr} &&
5645 defined($stat) && defined($cond) &&
5646 $line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) {
5647 my ($s, $c) = ($stat, $cond);
5648 my $fixed_assign_in_if = 0;
5650 if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/s) {
5651 if (ERROR("ASSIGN_IN_IF",
5652 "do not use assignment in if condition\n" . $herecurr) &&
5653 $fix && $perl_version_ok) {
5654 if ($rawline =~ /^\+(\s+)if\s*\(\s*(\!)?\s*\(\s*(($Lval)\s*=\s*$LvalOrFunc)\s*\)\s*(?:($Compare)\s*($FuncArg))?\s*\)\s*(\{)?\s*$/) {
5662 fix_delete_line($fixlinenr, $rawline);
5663 fix_insert_line($fixlinenr, "$space$statement;");
5664 my $newline = "${space}if (";
5665 $newline .= '!' if defined($not);
5666 $newline .= '(' if (defined $not && defined($test) && defined($against));
5667 $newline .= "$assigned";
5668 $newline .= " $test $against" if (defined($test) && defined($against));
5669 $newline .= ')' if (defined $not && defined($test) && defined($against));
5671 $newline .= " {" if (defined($brace));
5672 fix_insert_line($fixlinenr + 1, $newline);
5673 $fixed_assign_in_if = 1;
5678 # Find out what is on the end of the line after the
5680 substr($s, 0, length($c), '');
5682 $s =~ s/$;//g; # Remove any comments
5683 if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ &&
5684 $c !~ /}\s*while\s*/)
5686 # Find out how long the conditional actually is.
5687 my @newlines = ($c =~ /\n/gs);
5688 my $cond_lines = 1 + $#newlines;
5691 $stat_real = raw_line($linenr, $cond_lines)
5692 . "\n" if ($cond_lines);
5693 if (defined($stat_real) && $cond_lines > 1) {
5694 $stat_real = "[...]\n$stat_real";
5697 if (ERROR("TRAILING_STATEMENTS",
5698 "trailing statements should be on next line\n" . $herecurr . $stat_real) &&
5699 !$fixed_assign_in_if &&
5701 $fix && $perl_version_ok &&
5702 $fixed[$fixlinenr] =~ /^\+(\s*)((?:if|while|for)\s*$balanced_parens)\s*(.*)$/) {
5705 my $rest = rtrim($4);
5706 if ($rest =~ /;$/) {
5707 $fixed[$fixlinenr] = "\+$indent$test";
5708 fix_insert_line($fixlinenr + 1, "$indent\t$rest");
5714 # Check for bitwise tests written as boolean
5726 WARN("HEXADECIMAL_BOOLEAN_TEST",
5727 "boolean test with hexadecimal, perhaps just 1 \& or \|?\n" . $herecurr);
5730 # if and else should not have general statements after it
5731 if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/) {
5733 $s =~ s/$;//g; # Remove any comments
5734 if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) {
5735 ERROR("TRAILING_STATEMENTS",
5736 "trailing statements should be on next line\n" . $herecurr);
5739 # if should not continue a brace
5740 if ($line =~ /}\s*if\b/) {
5741 ERROR("TRAILING_STATEMENTS",
5742 "trailing statements should be on next line (or did you mean 'else if'?)\n" .
5745 # case and default should not have general statements after them
5746 if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
5748 (?:\s*$;*)(?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$|
5752 ERROR("TRAILING_STATEMENTS",
5753 "trailing statements should be on next line\n" . $herecurr);
5756 # Check for }<nl>else {, these must be at the same
5757 # indent level to be relevant to each other.
5758 if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ &&
5759 $previndent == $indent) {
5760 if (ERROR("ELSE_AFTER_BRACE",
5761 "else should follow close brace '}'\n" . $hereprev) &&
5762 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
5763 fix_delete_line($fixlinenr - 1, $prevrawline);
5764 fix_delete_line($fixlinenr, $rawline);
5765 my $fixedline = $prevrawline;
5766 $fixedline =~ s/}\s*$//;
5767 if ($fixedline !~ /^\+\s*$/) {
5768 fix_insert_line($fixlinenr, $fixedline);
5770 $fixedline = $rawline;
5771 $fixedline =~ s/^(.\s*)else/$1} else/;
5772 fix_insert_line($fixlinenr, $fixedline);
5776 if ($prevline=~/}\s*$/ and $line=~/^.\s*while\s*/ &&
5777 $previndent == $indent) {
5778 my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0);
5780 # Find out what is on the end of the line after the
5782 substr($s, 0, length($c), '');
5785 if ($s =~ /^\s*;/) {
5786 if (ERROR("WHILE_AFTER_BRACE",
5787 "while should follow close brace '}'\n" . $hereprev) &&
5788 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
5789 fix_delete_line($fixlinenr - 1, $prevrawline);
5790 fix_delete_line($fixlinenr, $rawline);
5791 my $fixedline = $prevrawline;
5792 my $trailing = $rawline;
5793 $trailing =~ s/^\+//;
5794 $trailing = trim($trailing);
5795 $fixedline =~ s/}\s*$/} $trailing/;
5796 fix_insert_line($fixlinenr, $fixedline);
5801 #Specific variable tests
5802 while ($line =~ m{($Constant|$Lval)}g) {
5806 if ($var !~ /^$Constant$/ &&
5807 $var =~ /[A-Z][a-z]|[a-z][A-Z]/ &&
5808 #Ignore some autogenerated defines and enum values
5809 $var !~ /^(?:[A-Z]+_){1,5}[A-Z]{1,3}[a-z]/ &&
5810 #Ignore Page<foo> variants
5811 $var !~ /^(?:Clear|Set|TestClear|TestSet|)Page[A-Z]/ &&
5812 #Ignore SI style variants like nS, mV and dB
5813 #(ie: max_uV, regulator_min_uA_show, RANGE_mA_VALUE)
5814 $var !~ /^(?:[a-z0-9_]*|[A-Z0-9_]*)?_?[a-z][A-Z](?:_[a-z0-9_]+|_[A-Z0-9_]+)?$/ &&
5815 #Ignore some three character SI units explicitly, like MiB and KHz
5816 $var !~ /^(?:[a-z_]*?)_?(?:[KMGT]iB|[KMGT]?Hz)(?:_[a-z_]+)?$/) {
5817 while ($var =~ m{\b($Ident)}g) {
5819 next if ($word !~ /[A-Z][a-z]|[a-z][A-Z]/);
5821 seed_camelcase_includes();
5822 if (!$file && !$camelcase_file_seeded) {
5823 seed_camelcase_file($realfile);
5824 $camelcase_file_seeded = 1;
5827 if (!defined $camelcase{$word}) {
5828 $camelcase{$word} = 1;
5830 "Avoid CamelCase: <$word>\n" . $herecurr);
5836 #no spaces allowed after \ in define
5837 if ($line =~ /\#\s*define.*\\\s+$/) {
5838 if (WARN("WHITESPACE_AFTER_LINE_CONTINUATION",
5839 "Whitespace after \\ makes next lines useless\n" . $herecurr) &&
5841 $fixed[$fixlinenr] =~ s/\s+$//;
5845 # warn if <asm/foo.h> is #included and <linux/foo.h> is available and includes
5846 # itself <asm/foo.h> (uses RAW line)
5847 if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) {
5849 my $checkfile = "include/linux/$file";
5850 if (-f "$root/$checkfile" &&
5851 $realfile ne $checkfile &&
5852 $1 !~ /$allowed_asm_includes/)
5854 my $asminclude = `grep -Ec "#include\\s+<asm/$file>" $root/$checkfile`;
5855 if ($asminclude > 0) {
5856 if ($realfile =~ m{^arch/}) {
5857 CHK("ARCH_INCLUDE_LINUX",
5858 "Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
5860 WARN("INCLUDE_LINUX",
5861 "Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
5867 # multi-statement macros should be enclosed in a do while loop, grab the
5868 # first statement and ensure its the whole macro if its not enclosed
5869 # in a known good container
5870 if ($realfile !~ m@/vmlinux.lds.h$@ &&
5871 $line =~ /^.\s*\#\s*define\s*$Ident(\()?/) {
5874 my ($off, $dstat, $dcond, $rest);
5876 my $has_flow_statement = 0;
5877 my $has_arg_concat = 0;
5878 ($dstat, $dcond, $ln, $cnt, $off) =
5879 ctx_statement_block($linenr, $realcnt, 0);
5881 #print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n";
5882 #print "LINE<$lines[$ln-1]> len<" . length($lines[$ln-1]) . "\n";
5884 $has_flow_statement = 1 if ($ctx =~ /\b(goto|return)\b/);
5885 $has_arg_concat = 1 if ($ctx =~ /\#\#/ && $ctx !~ /\#\#\s*(?:__VA_ARGS__|args)\b/);
5887 $dstat =~ s/^.\s*\#\s*define\s+$Ident(\([^\)]*\))?\s*//;
5888 my $define_args = $1;
5889 my $define_stmt = $dstat;
5892 if (defined $define_args && $define_args ne "") {
5893 $define_args = substr($define_args, 1, length($define_args) - 2);
5894 $define_args =~ s/\s*//g;
5895 $define_args =~ s/\\\+?//g;
5896 @def_args = split(",", $define_args);
5900 $dstat =~ s/\\\n.//g;
5901 $dstat =~ s/^\s*//s;
5902 $dstat =~ s/\s*$//s;
5904 # Flatten any parentheses and braces
5905 while ($dstat =~ s/\([^\(\)]*\)/1u/ ||
5906 $dstat =~ s/\{[^\{\}]*\}/1u/ ||
5907 $dstat =~ s/.\[[^\[\]]*\]/1u/)
5911 # Flatten any obvious string concatenation.
5912 while ($dstat =~ s/($String)\s*$Ident/$1/ ||
5913 $dstat =~ s/$Ident\s*($String)/$1/)
5917 # Make asm volatile uses seem like a generic function
5918 $dstat =~ s/\b_*asm_*\s+_*volatile_*\b/asm_volatile/g;
5920 my $exceptions = qr{
5933 #print "REST<$rest> dstat<$dstat> ctx<$ctx>\n";
5936 my $stmt_cnt = statement_rawlines($ctx);
5937 my $herectx = get_stat_here($linenr, $stmt_cnt, $here);
5940 $dstat !~ /^(?:$Ident|-?$Constant),$/ && # 10, // foo(),
5941 $dstat !~ /^(?:$Ident|-?$Constant);$/ && # foo();
5942 $dstat !~ /^[!~-]?(?:$Lval|$Constant)$/ && # 10 // foo() // !foo // ~foo // -foo // foo->bar // foo.bar->baz
5943 $dstat !~ /^'X'$/ && $dstat !~ /^'XX'$/ && # character constants
5944 $dstat !~ /$exceptions/ &&
5945 $dstat !~ /^\.$Ident\s*=/ && # .foo =
5946 $dstat !~ /^(?:\#\s*$Ident|\#\s*$Constant)\s*$/ && # stringification #foo
5947 $dstat !~ /^case\b/ && # case ...
5948 $dstat !~ /^do\s*$Constant\s*while\s*$Constant;?$/ && # do {...} while (...); // do {...} while (...)
5949 $dstat !~ /^while\s*$Constant\s*$Constant\s*$/ && # while (...) {...}
5950 $dstat !~ /^for\s*$Constant$/ && # for (...)
5951 $dstat !~ /^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ && # for (...) bar()
5952 $dstat !~ /^do\s*{/ && # do {...
5953 $dstat !~ /^\(\{/ && # ({...
5954 $ctx !~ /^.\s*#\s*define\s+TRACE_(?:SYSTEM|INCLUDE_FILE|INCLUDE_PATH)\b/)
5956 if ($dstat =~ /^\s*if\b/) {
5957 ERROR("MULTISTATEMENT_MACRO_USE_DO_WHILE",
5958 "Macros starting with if should be enclosed by a do - while loop to avoid possible if/else logic defects\n" . "$herectx");
5959 } elsif ($dstat =~ /;/) {
5960 ERROR("MULTISTATEMENT_MACRO_USE_DO_WHILE",
5961 "Macros with multiple statements should be enclosed in a do - while loop\n" . "$herectx");
5963 ERROR("COMPLEX_MACRO",
5964 "Macros with complex values should be enclosed in parentheses\n" . "$herectx");
5969 # Make $define_stmt single line, comment-free, etc
5970 my @stmt_array = split('\n', $define_stmt);
5973 foreach my $l (@stmt_array) {
5978 } elsif ($l =~ /^[\+ ]/) {
5979 $define_stmt .= substr($l, 1);
5982 $define_stmt =~ s/$;//g;
5983 $define_stmt =~ s/\s+/ /g;
5984 $define_stmt = trim($define_stmt);
5986 # check if any macro arguments are reused (ignore '...' and 'type')
5987 foreach my $arg (@def_args) {
5988 next if ($arg =~ /\.\.\./);
5989 next if ($arg =~ /^type$/i);
5990 my $tmp_stmt = $define_stmt;
5991 $tmp_stmt =~ s/\b(__must_be_array|offsetof|sizeof|sizeof_field|__stringify|typeof|__typeof__|__builtin\w+|typecheck\s*\(\s*$Type\s*,|\#+)\s*\(*\s*$arg\s*\)*\b//g;
5992 $tmp_stmt =~ s/\#+\s*$arg\b//g;
5993 $tmp_stmt =~ s/\b$arg\s*\#\#//g;
5994 my $use_cnt = () = $tmp_stmt =~ /\b$arg\b/g;
5996 CHK("MACRO_ARG_REUSE",
5997 "Macro argument reuse '$arg' - possible side-effects?\n" . "$herectx");
5999 # check if any macro arguments may have other precedence issues
6000 if ($tmp_stmt =~ m/($Operators)?\s*\b$arg\b\s*($Operators)?/m &&
6001 ((defined($1) && $1 ne ',') ||
6002 (defined($2) && $2 ne ','))) {
6003 CHK("MACRO_ARG_PRECEDENCE",
6004 "Macro argument '$arg' may be better as '($arg)' to avoid precedence issues\n" . "$herectx");
6008 # check for macros with flow control, but without ## concatenation
6009 # ## concatenation is commonly a macro that defines a function so ignore those
6010 if ($has_flow_statement && !$has_arg_concat) {
6011 my $cnt = statement_rawlines($ctx);
6012 my $herectx = get_stat_here($linenr, $cnt, $here);
6014 WARN("MACRO_WITH_FLOW_CONTROL",
6015 "Macros with flow control statements should be avoided\n" . "$herectx");
6018 # check for line continuations outside of #defines, preprocessor #, and asm
6021 if ($prevline !~ /^..*\\$/ &&
6022 $line !~ /^\+\s*\#.*\\$/ && # preprocessor
6023 $line !~ /^\+.*\b(__asm__|asm)\b.*\\$/ && # asm
6024 $line =~ /^\+.*\\$/) {
6025 WARN("LINE_CONTINUATIONS",
6026 "Avoid unnecessary line continuations\n" . $herecurr);
6030 # do {} while (0) macro tests:
6031 # single-statement macros do not need to be enclosed in do while (0) loop,
6032 # macro should not end with a semicolon
6033 if ($perl_version_ok &&
6034 $realfile !~ m@/vmlinux.lds.h$@ &&
6035 $line =~ /^.\s*\#\s*define\s+$Ident(\()?/) {
6038 my ($off, $dstat, $dcond, $rest);
6040 ($dstat, $dcond, $ln, $cnt, $off) =
6041 ctx_statement_block($linenr, $realcnt, 0);
6044 $dstat =~ s/\\\n.//g;
6047 if ($dstat =~ /^\+\s*#\s*define\s+$Ident\s*${balanced_parens}\s*do\s*{(.*)\s*}\s*while\s*\(\s*0\s*\)\s*([;\s]*)\s*$/) {
6052 my $cnt = statement_rawlines($ctx);
6053 my $herectx = get_stat_here($linenr, $cnt, $here);
6055 if (($stmts =~ tr/;/;/) == 1 &&
6056 $stmts !~ /^\s*(if|while|for|switch)\b/) {
6057 WARN("SINGLE_STATEMENT_DO_WHILE_MACRO",
6058 "Single statement macros should not use a do {} while (0) loop\n" . "$herectx");
6060 if (defined $semis && $semis ne "") {
6061 WARN("DO_WHILE_MACRO_WITH_TRAILING_SEMICOLON",
6062 "do {} while (0) macros should not be semicolon terminated\n" . "$herectx");
6064 } elsif ($dstat =~ /^\+\s*#\s*define\s+$Ident.*;\s*$/) {
6066 my $cnt = statement_rawlines($ctx);
6067 my $herectx = get_stat_here($linenr, $cnt, $here);
6069 WARN("TRAILING_SEMICOLON",
6070 "macros should not use a trailing semicolon\n" . "$herectx");
6074 # check for redundant bracing round if etc
6075 if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) {
6076 my ($level, $endln, @chunks) =
6077 ctx_statement_full($linenr, $realcnt, 1);
6078 #print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n";
6079 #print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n";
6080 if ($#chunks > 0 && $level == 0) {
6084 my $herectx = $here . "\n";
6085 my $ln = $linenr - 1;
6086 for my $chunk (@chunks) {
6087 my ($cond, $block) = @{$chunk};
6089 # If the condition carries leading newlines, then count those as offsets.
6090 my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s);
6091 my $offset = statement_rawlines($whitespace) - 1;
6093 $allowed[$allow] = 0;
6094 #print "COND<$cond> whitespace<$whitespace> offset<$offset>\n";
6096 # We have looked at and allowed this specific line.
6097 $suppress_ifbraces{$ln + $offset} = 1;
6099 $herectx .= "$rawlines[$ln + $offset]\n[...]\n";
6100 $ln += statement_rawlines($block) - 1;
6102 substr($block, 0, length($cond), '');
6104 $seen++ if ($block =~ /^\s*{/);
6106 #print "cond<$cond> block<$block> allowed<$allowed[$allow]>\n";
6107 if (statement_lines($cond) > 1) {
6108 #print "APW: ALLOWED: cond<$cond>\n";
6109 $allowed[$allow] = 1;
6111 if ($block =~/\b(?:if|for|while)\b/) {
6112 #print "APW: ALLOWED: block<$block>\n";
6113 $allowed[$allow] = 1;
6115 if (statement_block_size($block) > 1) {
6116 #print "APW: ALLOWED: lines block<$block>\n";
6117 $allowed[$allow] = 1;
6122 my $sum_allowed = 0;
6123 foreach (@allowed) {
6126 if ($sum_allowed == 0) {
6128 "braces {} are not necessary for any arm of this statement\n" . $herectx);
6129 } elsif ($sum_allowed != $allow &&
6132 "braces {} should be used on all arms of this statement\n" . $herectx);
6137 if (!defined $suppress_ifbraces{$linenr - 1} &&
6138 $line =~ /\b(if|while|for|else)\b/) {
6141 # Check the pre-context.
6142 if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) {
6143 #print "APW: ALLOWED: pre<$1>\n";
6147 my ($level, $endln, @chunks) =
6148 ctx_statement_full($linenr, $realcnt, $-[0]);
6150 # Check the condition.
6151 my ($cond, $block) = @{$chunks[0]};
6152 #print "CHECKING<$linenr> cond<$cond> block<$block>\n";
6153 if (defined $cond) {
6154 substr($block, 0, length($cond), '');
6156 if (statement_lines($cond) > 1) {
6157 #print "APW: ALLOWED: cond<$cond>\n";
6160 if ($block =~/\b(?:if|for|while)\b/) {
6161 #print "APW: ALLOWED: block<$block>\n";
6164 if (statement_block_size($block) > 1) {
6165 #print "APW: ALLOWED: lines block<$block>\n";
6168 # Check the post-context.
6169 if (defined $chunks[1]) {
6170 my ($cond, $block) = @{$chunks[1]};
6171 if (defined $cond) {
6172 substr($block, 0, length($cond), '');
6174 if ($block =~ /^\s*\{/) {
6175 #print "APW: ALLOWED: chunk-1 block<$block>\n";
6179 if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
6180 my $cnt = statement_rawlines($block);
6181 my $herectx = get_stat_here($linenr, $cnt, $here);
6184 "braces {} are not necessary for single statement blocks\n" . $herectx);
6188 # check for single line unbalanced braces
6189 if ($sline =~ /^.\s*\}\s*else\s*$/ ||
6190 $sline =~ /^.\s*else\s*\{\s*$/) {
6191 CHK("BRACES", "Unbalanced braces around else statement\n" . $herecurr);
6194 # check for unnecessary blank lines around braces
6195 if (($line =~ /^.\s*}\s*$/ && $prevrawline =~ /^.\s*$/)) {
6197 "Blank lines aren't necessary before a close brace '}'\n" . $hereprev) &&
6198 $fix && $prevrawline =~ /^\+/) {
6199 fix_delete_line($fixlinenr - 1, $prevrawline);
6202 if (($rawline =~ /^.\s*$/ && $prevline =~ /^..*{\s*$/)) {
6204 "Blank lines aren't necessary after an open brace '{'\n" . $hereprev) &&
6206 fix_delete_line($fixlinenr, $rawline);
6210 # no volatiles please
6211 my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
6212 if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
6214 "Use of volatile is usually wrong: see Documentation/process/volatile-considered-harmful.rst\n" . $herecurr);
6217 # Check for user-visible strings broken across lines, which breaks the ability
6218 # to grep for the string. Make exceptions when the previous string ends in a
6219 # newline (multiple lines in one string constant) or '\t', '\r', ';', or '{'
6220 # (common in inline assembly) or is a octal \123 or hexadecimal \xaf value
6221 if ($line =~ /^\+\s*$String/ &&
6222 $prevline =~ /"\s*$/ &&
6223 $prevrawline !~ /(?:\\(?:[ntr]|[0-7]{1,3}|x[0-9a-fA-F]{1,2})|;\s*|\{\s*)"\s*$/) {
6224 if (WARN("SPLIT_STRING",
6225 "quoted string split across lines\n" . $hereprev) &&
6227 $prevrawline =~ /^\+.*"\s*$/ &&
6228 $last_coalesced_string_linenr != $linenr - 1) {
6229 my $extracted_string = get_quoted_string($line, $rawline);
6230 my $comma_close = "";
6231 if ($rawline =~ /\Q$extracted_string\E(\s*\)\s*;\s*$|\s*,\s*)/) {
6235 fix_delete_line($fixlinenr - 1, $prevrawline);
6236 fix_delete_line($fixlinenr, $rawline);
6237 my $fixedline = $prevrawline;
6238 $fixedline =~ s/"\s*$//;
6239 $fixedline .= substr($extracted_string, 1) . trim($comma_close);
6240 fix_insert_line($fixlinenr - 1, $fixedline);
6241 $fixedline = $rawline;
6242 $fixedline =~ s/\Q$extracted_string\E\Q$comma_close\E//;
6243 if ($fixedline !~ /\+\s*$/) {
6244 fix_insert_line($fixlinenr, $fixedline);
6246 $last_coalesced_string_linenr = $linenr;
6250 # check for missing a space in a string concatenation
6251 if ($prevrawline =~ /[^\\]\w"$/ && $rawline =~ /^\+[\t ]+"\w/) {
6252 WARN('MISSING_SPACE',
6253 "break quoted strings at a space character\n" . $hereprev);
6256 # check for an embedded function name in a string when the function is known
6257 # This does not work very well for -f --file checking as it depends on patch
6258 # context providing the function name or a single line form for in-file
6259 # function declarations
6260 if ($line =~ /^\+.*$String/ &&
6261 defined($context_function) &&
6262 get_quoted_string($line, $rawline) =~ /\b$context_function\b/ &&
6263 length(get_quoted_string($line, $rawline)) != (length($context_function) + 2)) {
6264 WARN("EMBEDDED_FUNCTION_NAME",
6265 "Prefer using '\"%s...\", __func__' to using '$context_function', this function's name, in a string\n" . $herecurr);
6268 # check for unnecessary function tracing like uses
6269 # This does not use $logFunctions because there are many instances like
6270 # 'dprintk(FOO, "%s()\n", __func__);' which do not match $logFunctions
6271 if ($rawline =~ /^\+.*\([^"]*"$tracing_logging_tags{0,3}%s(?:\s*\(\s*\)\s*)?$tracing_logging_tags{0,3}(?:\\n)?"\s*,\s*__func__\s*\)\s*;/) {
6272 if (WARN("TRACING_LOGGING",
6273 "Unnecessary ftrace-like logging - prefer using ftrace\n" . $herecurr) &&
6275 fix_delete_line($fixlinenr, $rawline);
6279 # check for spaces before a quoted newline
6280 if ($rawline =~ /^.*\".*\s\\n/) {
6281 if (WARN("QUOTED_WHITESPACE_BEFORE_NEWLINE",
6282 "unnecessary whitespace before a quoted newline\n" . $herecurr) &&
6284 $fixed[$fixlinenr] =~ s/^(\+.*\".*)\s+\\n/$1\\n/;
6289 # concatenated string without spaces between elements
6290 if ($line =~ /$String[A-Z_]/ ||
6291 ($line =~ /([A-Za-z0-9_]+)$String/ && $1 !~ /^[Lu]$/)) {
6292 if (CHK("CONCATENATED_STRING",
6293 "Concatenated strings should use spaces between elements\n" . $herecurr) &&
6295 while ($line =~ /($String)/g) {
6296 my $extracted_string = substr($rawline, $-[0], $+[0] - $-[0]);
6297 $fixed[$fixlinenr] =~ s/\Q$extracted_string\E([A-Za-z0-9_])/$extracted_string $1/;
6298 $fixed[$fixlinenr] =~ s/([A-Za-z0-9_])\Q$extracted_string\E/$1 $extracted_string/;
6303 # uncoalesced string fragments
6304 if ($line =~ /$String\s*[Lu]?"/) {
6305 if (WARN("STRING_FRAGMENTS",
6306 "Consecutive strings are generally better as a single string\n" . $herecurr) &&
6308 while ($line =~ /($String)(?=\s*")/g) {
6309 my $extracted_string = substr($rawline, $-[0], $+[0] - $-[0]);
6310 $fixed[$fixlinenr] =~ s/\Q$extracted_string\E\s*"/substr($extracted_string, 0, -1)/e;
6315 # check for non-standard and hex prefixed decimal printf formats
6316 my $show_L = 1; #don't show the same defect twice
6318 while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) {
6319 my $string = substr($rawline, $-[1], $+[1] - $-[1]);
6320 $string =~ s/%%/__/g;
6322 if ($show_L && $string =~ /%[\*\d\.\$]*L([diouxX])/) {
6324 "\%L$1 is non-standard C, use %ll$1\n" . $herecurr);
6328 if ($show_Z && $string =~ /%[\*\d\.\$]*Z([diouxX])/) {
6330 "%Z$1 is non-standard C, use %z$1\n" . $herecurr);
6333 # check for 0x<decimal>
6334 if ($string =~ /0x%[\*\d\.\$\Llzth]*[diou]/) {
6335 ERROR("PRINTF_0XDECIMAL",
6336 "Prefixing 0x with decimal output is defective\n" . $herecurr);
6340 # check for line continuations in quoted strings with odd counts of "
6341 if ($rawline =~ /\\$/ && $sline =~ tr/"/"/ % 2) {
6342 WARN("LINE_CONTINUATIONS",
6343 "Avoid line continuations in quoted strings\n" . $herecurr);
6347 if ($line =~ /^.\s*\#\s*if\s+0\b/) {
6349 "Consider removing the code enclosed by this #if 0 and its #endif\n" . $herecurr);
6353 if ($line =~ /^.\s*\#\s*if\s+1\b/) {
6355 "Consider removing the #if 1 and its #endif\n" . $herecurr);
6358 # check for needless "if (<foo>) fn(<foo>)" uses
6359 if ($prevline =~ /\bif\s*\(\s*($Lval)\s*\)/) {
6360 my $tested = quotemeta($1);
6361 my $expr = '\s*\(\s*' . $tested . '\s*\)\s*;';
6362 if ($line =~ /\b(kfree|usb_free_urb|debugfs_remove(?:_recursive)?|(?:kmem_cache|mempool|dma_pool)_destroy)$expr/) {
6364 if (WARN('NEEDLESS_IF',
6365 "$func(NULL) is safe and this check is probably not required\n" . $hereprev) &&
6368 my $leading_tabs = "";
6369 my $new_leading_tabs = "";
6370 if ($lines[$linenr - 2] =~ /^\+(\t*)if\s*\(\s*$tested\s*\)\s*$/) {
6375 if ($lines[$linenr - 1] =~ /^\+(\t+)$func\s*\(\s*$tested\s*\)\s*;\s*$/) {
6376 $new_leading_tabs = $1;
6377 if (length($leading_tabs) + 1 ne length($new_leading_tabs)) {
6384 fix_delete_line($fixlinenr - 1, $prevrawline);
6385 $fixed[$fixlinenr] =~ s/^\+$new_leading_tabs/\+$leading_tabs/;
6391 # check for soon-to-be-deprecated single-argument k[v]free_rcu() API
6392 if ($line =~ /\bk[v]?free_rcu\s*\([^(]+\)/) {
6393 if ($line =~ /\bk[v]?free_rcu\s*\([^,]+\)/) {
6394 ERROR("DEPRECATED_API",
6395 "Single-argument k[v]free_rcu() API is deprecated, please pass rcu_head object or call k[v]free_rcu_mightsleep()." . $herecurr);
6400 # check for unnecessary "Out of Memory" messages
6401 if ($line =~ /^\+.*\b$logFunctions\s*\(/ &&
6402 $prevline =~ /^[ \+]\s*if\s*\(\s*(\!\s*|NULL\s*==\s*)?($Lval)(\s*==\s*NULL\s*)?\s*\)/ &&
6403 (defined $1 || defined $3) &&
6406 my $testline = $lines[$linenr - 3];
6408 my ($s, $c) = ctx_statement_block($linenr - 3, $realcnt, 0);
6409 # print("line: <$line>\nprevline: <$prevline>\ns: <$s>\nc: <$c>\n\n\n");
6411 if ($s =~ /(?:^|\n)[ \+]\s*(?:$Type\s*)?\Q$testval\E\s*=\s*(?:\([^\)]*\)\s*)?\s*$allocFunctions\s*\(/ &&
6412 $s !~ /\b__GFP_NOWARN\b/ ) {
6414 "Possible unnecessary 'out of memory' message\n" . $hereprev);
6418 # check for logging functions with KERN_<LEVEL>
6419 if ($line !~ /printk(?:_ratelimited|_once)?\s*\(/ &&
6420 $line =~ /\b$logFunctions\s*\(.*\b(KERN_[A-Z]+)\b/) {
6422 if (WARN("UNNECESSARY_KERN_LEVEL",
6423 "Possible unnecessary $level\n" . $herecurr) &&
6425 $fixed[$fixlinenr] =~ s/\s*$level\s*//;
6429 # check for logging continuations
6430 if ($line =~ /\bprintk\s*\(\s*KERN_CONT\b|\bpr_cont\s*\(/) {
6431 WARN("LOGGING_CONTINUATION",
6432 "Avoid logging continuation uses where feasible\n" . $herecurr);
6435 # check for unnecessary use of %h[xudi] and %hh[xudi] in logging functions
6436 if (defined $stat &&
6437 $line =~ /\b$logFunctions\s*\(/ &&
6438 index($stat, '"') >= 0) {
6439 my $lc = $stat =~ tr@\n@@;
6440 $lc = $lc + $linenr;
6441 my $stat_real = get_stat_real($linenr, $lc);
6442 pos($stat_real) = index($stat_real, '"');
6443 while ($stat_real =~ /[^\"%]*(%[\#\d\.\*\-]*(h+)[idux])/g) {
6446 my $lineoff = substr($stat_real, 0, $-[1]) =~ tr@\n@@;
6447 if (WARN("UNNECESSARY_MODIFIER",
6448 "Integer promotion: Using '$h' in '$pspec' is unnecessary\n" . "$here\n$stat_real\n") &&
6449 $fix && $fixed[$fixlinenr + $lineoff] =~ /^\+/) {
6452 $fixed[$fixlinenr + $lineoff] =~ s/\Q$pspec\E/$nspec/;
6457 # check for mask then right shift without a parentheses
6458 if ($perl_version_ok &&
6459 $line =~ /$LvalOrFunc\s*\&\s*($LvalOrFunc)\s*>>/ &&
6460 $4 !~ /^\&/) { # $LvalOrFunc may be &foo, ignore if so
6461 WARN("MASK_THEN_SHIFT",
6462 "Possible precedence defect with mask then right shift - may need parentheses\n" . $herecurr);
6465 # check for pointer comparisons to NULL
6466 if ($perl_version_ok) {
6467 while ($line =~ /\b$LvalOrFunc\s*(==|\!=)\s*NULL\b/g) {
6470 $equal = "" if ($4 eq "!=");
6471 if (CHK("COMPARISON_TO_NULL",
6472 "Comparison to NULL could be written \"${equal}${val}\"\n" . $herecurr) &&
6474 $fixed[$fixlinenr] =~ s/\b\Q$val\E\s*(?:==|\!=)\s*NULL\b/$equal$val/;
6479 # check for bad placement of section $InitAttribute (e.g.: __initdata)
6480 if ($line =~ /(\b$InitAttribute\b)/) {
6482 if ($line =~ /^\+\s*static\s+(?:const\s+)?(?:$attr\s+)?($NonptrTypeWithAttr)\s+(?:$attr\s+)?($Ident(?:\[[^]]*\])?)\s*[=;]/) {
6485 if ((($ptr =~ /\b(union|struct)\s+$attr\b/ &&
6486 ERROR("MISPLACED_INIT",
6487 "$attr should be placed after $var\n" . $herecurr)) ||
6488 ($ptr !~ /\b(union|struct)\s+$attr\b/ &&
6489 WARN("MISPLACED_INIT",
6490 "$attr should be placed after $var\n" . $herecurr))) &&
6492 $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;
6497 # check for $InitAttributeData (ie: __initdata) with const
6498 if ($line =~ /\bconst\b/ && $line =~ /($InitAttributeData)/) {
6500 $attr =~ /($InitAttributePrefix)(.*)/;
6501 my $attr_prefix = $1;
6503 if (ERROR("INIT_ATTRIBUTE",
6504 "Use of const init definition must use ${attr_prefix}initconst\n" . $herecurr) &&
6506 $fixed[$fixlinenr] =~
6507 s/$InitAttributeData/${attr_prefix}initconst/;
6511 # check for $InitAttributeConst (ie: __initconst) without const
6512 if ($line !~ /\bconst\b/ && $line =~ /($InitAttributeConst)/) {
6514 if (ERROR("INIT_ATTRIBUTE",
6515 "Use of $attr requires a separate use of const\n" . $herecurr) &&
6517 my $lead = $fixed[$fixlinenr] =~
6518 /(^\+\s*(?:static\s+))/;
6520 $lead = "$lead " if ($lead !~ /^\+$/);
6521 $lead = "${lead}const ";
6522 $fixed[$fixlinenr] =~ s/(^\+\s*(?:static\s+))/$lead/;
6526 # check for __read_mostly with const non-pointer (should just be const)
6527 if ($line =~ /\b__read_mostly\b/ &&
6528 $line =~ /($Type)\s*$Ident/ && $1 !~ /\*\s*$/ && $1 =~ /\bconst\b/) {
6529 if (ERROR("CONST_READ_MOSTLY",
6530 "Invalid use of __read_mostly with const type\n" . $herecurr) &&
6532 $fixed[$fixlinenr] =~ s/\s+__read_mostly\b//;
6536 # don't use __constant_<foo> functions outside of include/uapi/
6537 if ($realfile !~ m@^include/uapi/@ &&
6538 $line =~ /(__constant_(?:htons|ntohs|[bl]e(?:16|32|64)_to_cpu|cpu_to_[bl]e(?:16|32|64)))\s*\(/) {
6539 my $constant_func = $1;
6540 my $func = $constant_func;
6541 $func =~ s/^__constant_//;
6542 if (WARN("CONSTANT_CONVERSION",
6543 "$constant_func should be $func\n" . $herecurr) &&
6545 $fixed[$fixlinenr] =~ s/\b$constant_func\b/$func/g;
6549 # prefer usleep_range over udelay
6550 if ($line =~ /\budelay\s*\(\s*(\d+)\s*\)/) {
6552 # ignore udelay's < 10, however
6553 if (! ($delay < 10) ) {
6555 "usleep_range is preferred over udelay; see Documentation/timers/timers-howto.rst\n" . $herecurr);
6557 if ($delay > 2000) {
6559 "long udelay - prefer mdelay; see arch/arm/include/asm/delay.h\n" . $herecurr);
6563 # warn about unexpectedly long msleep's
6564 if ($line =~ /\bmsleep\s*\((\d+)\);/) {
6567 "msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.rst\n" . $herecurr);
6571 # check for comparisons of jiffies
6572 if ($line =~ /\bjiffies\s*$Compare|$Compare\s*jiffies\b/) {
6573 WARN("JIFFIES_COMPARISON",
6574 "Comparing jiffies is almost always wrong; prefer time_after, time_before and friends\n" . $herecurr);
6577 # check for comparisons of get_jiffies_64()
6578 if ($line =~ /\bget_jiffies_64\s*\(\s*\)\s*$Compare|$Compare\s*get_jiffies_64\s*\(\s*\)/) {
6579 WARN("JIFFIES_COMPARISON",
6580 "Comparing get_jiffies_64() is almost always wrong; prefer time_after64, time_before64 and friends\n" . $herecurr);
6583 # warn about #ifdefs in C files
6584 # if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
6585 # print "#ifdef in C files should be avoided\n";
6586 # print "$herecurr";
6590 # warn about spacing in #ifdefs
6591 if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) {
6592 if (ERROR("SPACING",
6593 "exactly one space required after that #$1\n" . $herecurr) &&
6595 $fixed[$fixlinenr] =~
6596 s/^(.\s*\#\s*(ifdef|ifndef|elif))\s{2,}/$1 /;
6601 # check for spinlock_t definitions without a comment.
6602 if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ ||
6603 $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) {
6605 if (!ctx_has_comment($first_line, $linenr)) {
6606 CHK("UNCOMMENTED_DEFINITION",
6607 "$1 definition without comment\n" . $herecurr);
6610 # check for memory barriers without a comment.
6617 my $barrier_stems = qr{
6625 my $all_barriers = qr{
6627 smp_(?:$barrier_stems)|
6628 virt_(?:$barrier_stems)
6631 if ($line =~ /\b(?:$all_barriers)\s*\(/) {
6632 if (!ctx_has_comment($first_line, $linenr)) {
6633 WARN("MEMORY_BARRIER",
6634 "memory barrier without comment\n" . $herecurr);
6638 my $underscore_smp_barriers = qr{__smp_(?:$barrier_stems)}x;
6640 if ($realfile !~ m@^include/asm-generic/@ &&
6641 $realfile !~ m@/barrier\.h$@ &&
6642 $line =~ m/\b(?:$underscore_smp_barriers)\s*\(/ &&
6643 $line !~ m/^.\s*\#\s*define\s+(?:$underscore_smp_barriers)\s*\(/) {
6644 WARN("MEMORY_BARRIER",
6645 "__smp memory barriers shouldn't be used outside barrier.h and asm-generic\n" . $herecurr);
6648 # check for waitqueue_active without a comment.
6649 if ($line =~ /\bwaitqueue_active\s*\(/) {
6650 if (!ctx_has_comment($first_line, $linenr)) {
6651 WARN("WAITQUEUE_ACTIVE",
6652 "waitqueue_active without comment\n" . $herecurr);
6656 # check for data_race without a comment.
6657 if ($line =~ /\bdata_race\s*\(/) {
6658 if (!ctx_has_comment($first_line, $linenr)) {
6660 "data_race without comment\n" . $herecurr);
6664 # check of hardware specific defines
6665 if ($line =~ m@^.\s*\#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
6667 "architecture specific defines should be avoided\n" . $herecurr);
6670 # check that the storage class is not after a type
6671 if ($line =~ /\b($Type)\s+($Storage)\b/) {
6672 WARN("STORAGE_CLASS",
6673 "storage class '$2' should be located before type '$1'\n" . $herecurr);
6675 # Check that the storage class is at the beginning of a declaration
6676 if ($line =~ /\b$Storage\b/ &&
6677 $line !~ /^.\s*$Storage/ &&
6678 $line =~ /^.\s*(.+?)\$Storage\s/ &&
6679 $1 !~ /[\,\)]\s*$/) {
6680 WARN("STORAGE_CLASS",
6681 "storage class should be at the beginning of the declaration\n" . $herecurr);
6684 # check the location of the inline attribute, that it is between
6685 # storage class and type.
6686 if ($line =~ /\b$Type\s+$Inline\b/ ||
6687 $line =~ /\b$Inline\s+$Storage\b/) {
6688 ERROR("INLINE_LOCATION",
6689 "inline keyword should sit between storage class and type\n" . $herecurr);
6692 # Check for __inline__ and __inline, prefer inline
6693 if ($realfile !~ m@\binclude/uapi/@ &&
6694 $line =~ /\b(__inline__|__inline)\b/) {
6696 "plain inline is preferred over $1\n" . $herecurr) &&
6698 $fixed[$fixlinenr] =~ s/\b(__inline__|__inline)\b/inline/;
6703 # Check for compiler attributes
6704 if ($realfile !~ m@\binclude/uapi/@ &&
6705 $rawline =~ /\b__attribute__\s*\(\s*($balanced_parens)\s*\)/) {
6707 $attr =~ s/\s*\(\s*(.*)\)\s*/$1/;
6710 "alias" => "__alias",
6711 "aligned" => "__aligned",
6712 "always_inline" => "__always_inline",
6713 "assume_aligned" => "__assume_aligned",
6715 "const" => "__attribute_const__",
6717 "designated_init" => "__designated_init",
6718 "externally_visible" => "__visible",
6719 "format" => "printf|scanf",
6720 "gnu_inline" => "__gnu_inline",
6721 "malloc" => "__malloc",
6723 "no_caller_saved_registers" => "__no_caller_saved_registers",
6724 "noclone" => "__noclone",
6725 "noinline" => "noinline",
6726 "nonstring" => "__nonstring",
6727 "noreturn" => "__noreturn",
6728 "packed" => "__packed",
6730 "section" => "__section",
6735 while ($attr =~ /\s*(\w+)\s*(${balanced_parens})?/g) {
6738 $params = $2 if defined($2);
6739 my $curr_attr = $orig_attr;
6740 $curr_attr =~ s/^[\s_]+|[\s_]+$//g;
6741 if (exists($attr_list{$curr_attr})) {
6742 my $new = $attr_list{$curr_attr};
6743 if ($curr_attr eq "format" && $params) {
6744 $params =~ /^\s*\(\s*(\w+)\s*,\s*(.*)/;
6747 $new = "$new$params";
6749 if (WARN("PREFER_DEFINED_ATTRIBUTE_MACRO",
6750 "Prefer $new over __attribute__(($orig_attr$params))\n" . $herecurr) &&
6752 my $remove = "\Q$orig_attr\E" . '\s*' . "\Q$params\E" . '(?:\s*,\s*)?';
6753 $fixed[$fixlinenr] =~ s/$remove//;
6754 $fixed[$fixlinenr] =~ s/\b__attribute__/$new __attribute__/;
6755 $fixed[$fixlinenr] =~ s/\}\Q$new\E/} $new/;
6756 $fixed[$fixlinenr] =~ s/ __attribute__\s*\(\s*\(\s*\)\s*\)//;
6761 # Check for __attribute__ unused, prefer __always_unused or __maybe_unused
6762 if ($attr =~ /^_*unused/) {
6763 WARN("PREFER_DEFINED_ATTRIBUTE_MACRO",
6764 "__always_unused or __maybe_unused is preferred over __attribute__((__unused__))\n" . $herecurr);
6768 # Check for __attribute__ weak, or __weak declarations (may have link issues)
6769 if ($perl_version_ok &&
6770 $line =~ /(?:$Declare|$DeclareMisordered)\s*$Ident\s*$balanced_parens\s*(?:$Attribute)?\s*;/ &&
6771 ($line =~ /\b__attribute__\s*\(\s*\(.*\bweak\b/ ||
6772 $line =~ /\b__weak\b/)) {
6773 ERROR("WEAK_DECLARATION",
6774 "Using weak declarations can have unintended link defects\n" . $herecurr);
6777 # check for c99 types like uint8_t used outside of uapi/ and tools/
6778 if ($realfile !~ m@\binclude/uapi/@ &&
6779 $realfile !~ m@\btools/@ &&
6780 $line =~ /\b($Declare)\s*$Ident\s*[=;,\[]/) {
6782 if ($type =~ /\b($typeC99Typedefs)\b/) {
6784 my $kernel_type = 'u';
6785 $kernel_type = 's' if ($type =~ /^_*[si]/);
6788 if (CHK("PREFER_KERNEL_TYPES",
6789 "Prefer kernel type '$kernel_type' over '$type'\n" . $herecurr) &&
6791 $fixed[$fixlinenr] =~ s/\b$type\b/$kernel_type/;
6796 # check for cast of C90 native int or longer types constants
6797 if ($line =~ /(\(\s*$C90_int_types\s*\)\s*)($Constant)\b/) {
6801 my $newconst = $const;
6802 $newconst =~ s/${Int_type}$//;
6803 $suffix .= 'U' if ($cast =~ /\bunsigned\b/);
6804 if ($cast =~ /\blong\s+long\b/) {
6806 } elsif ($cast =~ /\blong\b/) {
6809 if (WARN("TYPECAST_INT_CONSTANT",
6810 "Unnecessary typecast of c90 int constant - '$cast$const' could be '$const$suffix'\n" . $herecurr) &&
6812 $fixed[$fixlinenr] =~ s/\Q$cast\E$const\b/$newconst$suffix/;
6816 # check for sizeof(&)
6817 if ($line =~ /\bsizeof\s*\(\s*\&/) {
6818 WARN("SIZEOF_ADDRESS",
6819 "sizeof(& should be avoided\n" . $herecurr);
6822 # check for sizeof without parenthesis
6823 if ($line =~ /\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/) {
6824 if (WARN("SIZEOF_PARENTHESIS",
6825 "sizeof $1 should be sizeof($1)\n" . $herecurr) &&
6827 $fixed[$fixlinenr] =~ s/\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/"sizeof(" . trim($1) . ")"/ex;
6831 # check for struct spinlock declarations
6832 if ($line =~ /^.\s*\bstruct\s+spinlock\s+\w+\s*;/) {
6833 WARN("USE_SPINLOCK_T",
6834 "struct spinlock should be spinlock_t\n" . $herecurr);
6837 # check for seq_printf uses that could be seq_puts
6838 if ($sline =~ /\bseq_printf\s*\(.*"\s*\)\s*;\s*$/) {
6839 my $fmt = get_quoted_string($line, $rawline);
6842 if (WARN("PREFER_SEQ_PUTS",
6843 "Prefer seq_puts to seq_printf\n" . $herecurr) &&
6845 $fixed[$fixlinenr] =~ s/\bseq_printf\b/seq_puts/;
6850 # check for vsprintf extension %p<foo> misuses
6851 if ($perl_version_ok &&
6853 $stat =~ /^\+(?![^\{]*\{\s*).*\b(\w+)\s*\(.*$String\s*,/s &&
6854 $1 !~ /^_*volatile_*$/) {
6857 my $lc = $stat =~ tr@\n@@;
6858 $lc = $lc + $linenr;
6859 for (my $count = $linenr; $count <= $lc; $count++) {
6863 my $bad_specifier = "";
6864 my $fmt = get_quoted_string($lines[$count - 1], raw_line($count, 0));
6867 while ($fmt =~ /(\%[\*\d\.]*p(\w)(\w*))/g) {
6871 if ($extension !~ /[4SsBKRraEehMmIiUDdgVCbGNOxtf]/ ||
6872 ($extension eq "f" &&
6873 defined $qualifier && $qualifier !~ /^w/) ||
6874 ($extension eq "4" &&
6875 defined $qualifier && $qualifier !~ /^cc/)) {
6876 $bad_specifier = $specifier;
6879 if ($extension eq "x" && !defined($stat_real)) {
6880 if (!defined($stat_real)) {
6881 $stat_real = get_stat_real($linenr, $lc);
6883 WARN("VSPRINTF_SPECIFIER_PX",
6884 "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");
6887 if ($bad_specifier ne "") {
6888 my $stat_real = get_stat_real($linenr, $lc);
6889 my $msg_level = \&WARN;
6890 my $ext_type = "Invalid";
6892 if ($bad_specifier =~ /p[Ff]/) {
6893 $use = " - use %pS instead";
6894 $use =~ s/pS/ps/ if ($bad_specifier =~ /pf/);
6895 } elsif ($bad_specifier =~ /pA/) {
6896 $use = " - '%pA' is only intended to be used from Rust code";
6897 $msg_level = \&ERROR;
6900 &{$msg_level}("VSPRINTF_POINTER_EXTENSION",
6901 "$ext_type vsprintf pointer extension '$bad_specifier'$use\n" . "$here\n$stat_real\n");
6906 # Check for misused memsets
6907 if ($perl_version_ok &&
6909 $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*$FuncArg\s*\)/) {
6915 if ($ms_size =~ /^(0x|)0$/i) {
6917 "memset to 0's uses 0 as the 2nd argument, not the 3rd\n" . "$here\n$stat\n");
6918 } elsif ($ms_size =~ /^(0x|)1$/i) {
6920 "single byte memset is suspicious. Swapped 2nd/3rd argument?\n" . "$here\n$stat\n");
6924 # Check for memcpy(foo, bar, ETH_ALEN) that could be ether_addr_copy(foo, bar)
6925 # if ($perl_version_ok &&
6927 # $stat =~ /^\+(?:.*?)\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
6928 # if (WARN("PREFER_ETHER_ADDR_COPY",
6929 # "Prefer ether_addr_copy() over memcpy() if the Ethernet addresses are __aligned(2)\n" . "$here\n$stat\n") &&
6931 # $fixed[$fixlinenr] =~ s/\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/ether_addr_copy($2, $7)/;
6935 # Check for memcmp(foo, bar, ETH_ALEN) that could be ether_addr_equal*(foo, bar)
6936 # if ($perl_version_ok &&
6938 # $stat =~ /^\+(?:.*?)\bmemcmp\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
6939 # WARN("PREFER_ETHER_ADDR_EQUAL",
6940 # "Prefer ether_addr_equal() or ether_addr_equal_unaligned() over memcmp()\n" . "$here\n$stat\n")
6943 # check for memset(foo, 0x0, ETH_ALEN) that could be eth_zero_addr
6944 # check for memset(foo, 0xFF, ETH_ALEN) that could be eth_broadcast_addr
6945 # if ($perl_version_ok &&
6947 # $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
6951 # if ($ms_val =~ /^(?:0x|)0+$/i) {
6952 # if (WARN("PREFER_ETH_ZERO_ADDR",
6953 # "Prefer eth_zero_addr over memset()\n" . "$here\n$stat\n") &&
6955 # $fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_zero_addr($2)/;
6957 # } elsif ($ms_val =~ /^(?:0xff|255)$/i) {
6958 # if (WARN("PREFER_ETH_BROADCAST_ADDR",
6959 # "Prefer eth_broadcast_addr() over memset()\n" . "$here\n$stat\n") &&
6961 # $fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_broadcast_addr($2)/;
6966 # strlcpy uses that should likely be strscpy
6967 if ($line =~ /\bstrlcpy\s*\(/) {
6969 "Prefer strscpy over strlcpy - see: https://lore.kernel.org/r/CAHk-=wgfRnXz0W3D37d01q3JFkr_i_uTL=V6A6G1oUZcprmknw\@mail.gmail.com/\n" . $herecurr);
6972 # typecasts on min/max could be min_t/max_t
6973 if ($perl_version_ok &&
6975 $stat =~ /^\+(?:.*?)\b(min|max)\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\)/) {
6976 if (defined $2 || defined $7) {
6978 my $cast1 = deparenthesize($2);
6980 my $cast2 = deparenthesize($7);
6984 if ($cast1 ne "" && $cast2 ne "" && $cast1 ne $cast2) {
6985 $cast = "$cast1 or $cast2";
6986 } elsif ($cast1 ne "") {
6992 "$call() should probably be ${call}_t($cast, $arg1, $arg2)\n" . "$here\n$stat\n");
6996 # check usleep_range arguments
6997 if ($perl_version_ok &&
6999 $stat =~ /^\+(?:.*?)\busleep_range\s*\(\s*($FuncArg)\s*,\s*($FuncArg)\s*\)/) {
7003 WARN("USLEEP_RANGE",
7004 "usleep_range should not use min == max args; see Documentation/timers/timers-howto.rst\n" . "$here\n$stat\n");
7005 } elsif ($min =~ /^\d+$/ && $max =~ /^\d+$/ &&
7007 WARN("USLEEP_RANGE",
7008 "usleep_range args reversed, use min then max; see Documentation/timers/timers-howto.rst\n" . "$here\n$stat\n");
7012 # check for naked sscanf
7013 if ($perl_version_ok &&
7015 $line =~ /\bsscanf\b/ &&
7016 ($stat !~ /$Ident\s*=\s*sscanf\s*$balanced_parens/ &&
7017 $stat !~ /\bsscanf\s*$balanced_parens\s*(?:$Compare)/ &&
7018 $stat !~ /(?:$Compare)\s*\bsscanf\s*$balanced_parens/)) {
7019 my $lc = $stat =~ tr@\n@@;
7020 $lc = $lc + $linenr;
7021 my $stat_real = get_stat_real($linenr, $lc);
7022 WARN("NAKED_SSCANF",
7023 "unchecked sscanf return value\n" . "$here\n$stat_real\n");
7026 # check for simple sscanf that should be kstrto<foo>
7027 if ($perl_version_ok &&
7029 $line =~ /\bsscanf\b/) {
7030 my $lc = $stat =~ tr@\n@@;
7031 $lc = $lc + $linenr;
7032 my $stat_real = get_stat_real($linenr, $lc);
7033 if ($stat_real =~ /\bsscanf\b\s*\(\s*$FuncArg\s*,\s*("[^"]+")/) {
7035 my $count = $format =~ tr@%@%@;
7037 $format =~ /^"\%(?i:ll[udxi]|[udxi]ll|ll|[hl]h?[udxi]|[udxi][hl]h?|[hl]h?|[udxi])"$/) {
7038 WARN("SSCANF_TO_KSTRTO",
7039 "Prefer kstrto<type> to single variable sscanf\n" . "$here\n$stat_real\n");
7044 # check for new externs in .h files.
7045 if ($realfile =~ /\.h$/ &&
7046 $line =~ /^\+\s*(extern\s+)$Type\s*$Ident\s*\(/s) {
7047 if (CHK("AVOID_EXTERNS",
7048 "extern prototypes should be avoided in .h files\n" . $herecurr) &&
7050 $fixed[$fixlinenr] =~ s/(.*)\bextern\b\s*(.*)/$1$2/;
7054 # check for new externs in .c files.
7055 if ($realfile =~ /\.c$/ && defined $stat &&
7056 $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s)
7058 my $function_name = $1;
7059 my $paren_space = $2;
7062 if (defined $cond) {
7063 substr($s, 0, length($cond), '');
7067 WARN("AVOID_EXTERNS",
7068 "externs should be avoided in .c files\n" . $herecurr);
7071 if ($paren_space =~ /\n/) {
7072 WARN("FUNCTION_ARGUMENTS",
7073 "arguments for function declarations should follow identifier\n" . $herecurr);
7076 } elsif ($realfile =~ /\.c$/ && defined $stat &&
7077 $stat =~ /^.\s*extern\s+/)
7079 WARN("AVOID_EXTERNS",
7080 "externs should be avoided in .c files\n" . $herecurr);
7083 # check for function declarations that have arguments without identifier names
7084 if (defined $stat &&
7085 $stat =~ /^.\s*(?:extern\s+)?$Type\s*(?:$Ident|\(\s*\*\s*$Ident\s*\))\s*\(\s*([^{]+)\s*\)\s*;/s &&
7087 my $args = trim($1);
7088 while ($args =~ m/\s*($Type\s*(?:$Ident|\(\s*\*\s*$Ident?\s*\)\s*$balanced_parens)?)/g) {
7090 if ($arg =~ /^$Type$/ && $arg !~ /enum\s+$Ident$/) {
7091 WARN("FUNCTION_ARGUMENTS",
7092 "function definition argument '$arg' should also have an identifier name\n" . $herecurr);
7097 # check for function definitions
7098 if ($perl_version_ok &&
7100 $stat =~ /^.\s*(?:$Storage\s+)?$Type\s*($Ident)\s*$balanced_parens\s*{/s) {
7101 $context_function = $1;
7103 # check for multiline function definition with misplaced open brace
7105 my $cnt = statement_rawlines($stat);
7106 my $herectx = $here . "\n";
7107 for (my $n = 0; $n < $cnt; $n++) {
7108 my $rl = raw_line($linenr, $n);
7109 $herectx .= $rl . "\n";
7110 $ok = 1 if ($rl =~ /^[ \+]\{/);
7111 $ok = 1 if ($rl =~ /\{/ && $n == 0);
7112 last if $rl =~ /^[ \+].*\{/;
7116 "open brace '{' following function definitions go on the next line\n" . $herectx);
7120 # checks for new __setup's
7121 if ($rawline =~ /\b__setup\("([^"]*)"/) {
7124 if (!grep(/$name/, @setup_docs)) {
7125 CHK("UNDOCUMENTED_SETUP",
7126 "__setup appears un-documented -- check Documentation/admin-guide/kernel-parameters.txt\n" . $herecurr);
7130 # check for pointless casting of alloc functions
7131 if ($line =~ /\*\s*\)\s*$allocFunctions\b/) {
7132 WARN("UNNECESSARY_CASTS",
7133 "unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
7137 # p = alloc(sizeof(struct foo), ...) should be p = alloc(sizeof(*p), ...)
7138 if ($perl_version_ok &&
7139 $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*((?:kv|k|v)[mz]alloc(?:_node)?)\s*\(\s*(sizeof\s*\(\s*struct\s+$Lval\s*\))/) {
7140 CHK("ALLOC_SIZEOF_STRUCT",
7141 "Prefer $3(sizeof(*$1)...) over $3($4...)\n" . $herecurr);
7144 # check for (kv|k)[mz]alloc with multiplies that could be kmalloc_array/kvmalloc_array/kvcalloc/kcalloc
7145 if ($perl_version_ok &&
7147 $stat =~ /^\+\s*($Lval)\s*\=\s*(?:$balanced_parens)?\s*((?:kv|k)[mz]alloc)\s*\(\s*($FuncArg)\s*\*\s*($FuncArg)\s*,/) {
7151 my $newfunc = "kmalloc_array";
7152 $newfunc = "kvmalloc_array" if ($oldfunc eq "kvmalloc");
7153 $newfunc = "kvcalloc" if ($oldfunc eq "kvzalloc");
7154 $newfunc = "kcalloc" if ($oldfunc eq "kzalloc");
7157 if ($a1 =~ /^sizeof\s*\S/) {
7161 if ($r1 !~ /^sizeof\b/ && $r2 =~ /^sizeof\s*\S/ &&
7162 !($r1 =~ /^$Constant$/ || $r1 =~ /^[A-Z_][A-Z0-9_]*$/)) {
7163 my $cnt = statement_rawlines($stat);
7164 my $herectx = get_stat_here($linenr, $cnt, $here);
7166 if (WARN("ALLOC_WITH_MULTIPLY",
7167 "Prefer $newfunc over $oldfunc with multiply\n" . $herectx) &&
7170 $fixed[$fixlinenr] =~ s/\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*((?:kv|k)[mz]alloc)\s*\(\s*($FuncArg)\s*\*\s*($FuncArg)/$1 . ' = ' . "$newfunc(" . trim($r1) . ', ' . trim($r2)/e;
7175 # check for krealloc arg reuse
7176 if ($perl_version_ok &&
7177 $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*krealloc\s*\(\s*($Lval)\s*,/ &&
7179 WARN("KREALLOC_ARG_REUSE",
7180 "Reusing the krealloc arg is almost always a bug\n" . $herecurr);
7183 # check for alloc argument mismatch
7184 if ($line =~ /\b((?:devm_)?((?:k|kv)?(calloc|malloc_array)(?:_node)?))\s*\(\s*sizeof\b/) {
7185 WARN("ALLOC_ARRAY_ARGS",
7186 "$1 uses number as first arg, sizeof is generally wrong\n" . $herecurr);
7189 # check for multiple semicolons
7190 if ($line =~ /;\s*;\s*$/) {
7191 if (WARN("ONE_SEMICOLON",
7192 "Statements terminations use 1 semicolon\n" . $herecurr) &&
7194 $fixed[$fixlinenr] =~ s/(\s*;\s*){2,}$/;/g;
7198 # check for #defines like: 1 << <digit> that could be BIT(digit), it is not exported to uapi
7199 if ($realfile !~ m@^include/uapi/@ &&
7200 $line =~ /#\s*define\s+\w+\s+\(?\s*1\s*([ulUL]*)\s*\<\<\s*(?:\d+|$Ident)\s*\)?/) {
7202 $ull = "_ULL" if (defined($1) && $1 =~ /ll/i);
7203 if (CHK("BIT_MACRO",
7204 "Prefer using the BIT$ull macro\n" . $herecurr) &&
7206 $fixed[$fixlinenr] =~ s/\(?\s*1\s*[ulUL]*\s*<<\s*(\d+|$Ident)\s*\)?/BIT${ull}($1)/;
7210 # check for IS_ENABLED() without CONFIG_<FOO> ($rawline for comments too)
7211 if ($rawline =~ /\bIS_ENABLED\s*\(\s*(\w+)\s*\)/ && $1 !~ /^${CONFIG_}/) {
7212 WARN("IS_ENABLED_CONFIG",
7213 "IS_ENABLED($1) is normally used as IS_ENABLED(${CONFIG_}$1)\n" . $herecurr);
7216 # check for #if defined CONFIG_<FOO> || defined CONFIG_<FOO>_MODULE
7217 if ($line =~ /^\+\s*#\s*if\s+defined(?:\s*\(?\s*|\s+)(${CONFIG_}[A-Z_]+)\s*\)?\s*\|\|\s*defined(?:\s*\(?\s*|\s+)\1_MODULE\s*\)?\s*$/) {
7219 if (WARN("PREFER_IS_ENABLED",
7220 "Prefer IS_ENABLED(<FOO>) to ${CONFIG_}<FOO> || ${CONFIG_}<FOO>_MODULE\n" . $herecurr) &&
7222 $fixed[$fixlinenr] = "\+#if IS_ENABLED($config)";
7226 # check for /* fallthrough */ like comment, prefer fallthrough;
7227 my @fallthroughs = (
7230 'lint -fallthrough[ \t]*',
7231 'intentional(?:ly)?[ \t]*fall(?:(?:s | |-)[Tt]|t)hr(?:ough|u|ew)',
7232 '(?:else,?\s*)?FALL(?:S | |-)?THR(?:OUGH|U|EW)[ \t.!]*(?:-[^\n\r]*)?',
7233 'Fall(?:(?:s | |-)[Tt]|t)hr(?:ough|u|ew)[ \t.!]*(?:-[^\n\r]*)?',
7234 'fall(?:s | |-)?thr(?:ough|u|ew)[ \t.!]*(?:-[^\n\r]*)?',
7236 if ($raw_comment ne '') {
7237 foreach my $ft (@fallthroughs) {
7238 if ($raw_comment =~ /$ft/) {
7239 my $msg_level = \&WARN;
7240 $msg_level = \&CHK if ($file);
7241 &{$msg_level}("PREFER_FALLTHROUGH",
7242 "Prefer 'fallthrough;' over fallthrough comment\n" . $herecurr);
7248 # check for switch/default statements without a break;
7249 if ($perl_version_ok &&
7251 $stat =~ /^\+[$;\s]*(?:case[$;\s]+\w+[$;\s]*:[$;\s]*|)*[$;\s]*\bdefault[$;\s]*:[$;\s]*;/g) {
7252 my $cnt = statement_rawlines($stat);
7253 my $herectx = get_stat_here($linenr, $cnt, $here);
7255 WARN("DEFAULT_NO_BREAK",
7256 "switch default: should use break\n" . $herectx);
7259 # check for gcc specific __FUNCTION__
7260 if ($line =~ /\b__FUNCTION__\b/) {
7261 if (WARN("USE_FUNC",
7262 "__func__ should be used instead of gcc specific __FUNCTION__\n" . $herecurr) &&
7264 $fixed[$fixlinenr] =~ s/\b__FUNCTION__\b/__func__/g;
7268 # check for uses of __DATE__, __TIME__, __TIMESTAMP__
7269 while ($line =~ /\b(__(?:DATE|TIME|TIMESTAMP)__)\b/g) {
7271 "Use of the '$1' macro makes the build non-deterministic\n" . $herecurr);
7274 # check for use of yield()
7275 if ($line =~ /\byield\s*\(\s*\)/) {
7277 "Using yield() is generally wrong. See yield() kernel-doc (sched/core.c)\n" . $herecurr);
7280 # check for comparisons against true and false
7281 if ($line =~ /\+\s*(.*?)\b(true|false|$Lval)\s*(==|\!=)\s*(true|false|$Lval)\b(.*)$/i) {
7289 ($arg, $otype) = ($otype, $arg) if ($arg =~ /^(?:true|false)$/i);
7291 my $type = lc($otype);
7292 if ($type =~ /^(?:true|false)$/) {
7293 if (("$test" eq "==" && "$type" eq "true") ||
7294 ("$test" eq "!=" && "$type" eq "false")) {
7298 CHK("BOOL_COMPARISON",
7299 "Using comparison to $otype is error prone\n" . $herecurr);
7301 ## maybe suggesting a correct construct would better
7302 ## "Using comparison to $otype is error prone. Perhaps use '${lead}${op}${arg}${trail}'\n" . $herecurr);
7307 # check for semaphores initialized locked
7308 if ($line =~ /^.\s*sema_init.+,\W?0\W?\)/) {
7309 WARN("CONSIDER_COMPLETION",
7310 "consider using a completion\n" . $herecurr);
7313 # recommend kstrto* over simple_strto* and strict_strto*
7314 if ($line =~ /\b((simple|strict)_(strto(l|ll|ul|ull)))\s*\(/) {
7315 WARN("CONSIDER_KSTRTO",
7316 "$1 is obsolete, use k$3 instead\n" . $herecurr);
7319 # check for __initcall(), use device_initcall() explicitly or more appropriate function please
7320 if ($line =~ /^.\s*__initcall\s*\(/) {
7321 WARN("USE_DEVICE_INITCALL",
7322 "please use device_initcall() or more appropriate function instead of __initcall() (see include/linux/init.h)\n" . $herecurr);
7325 # check for spin_is_locked(), suggest lockdep instead
7326 if ($line =~ /\bspin_is_locked\(/) {
7328 "Where possible, use lockdep_assert_held instead of assertions based on spin_is_locked\n" . $herecurr);
7331 # check for deprecated apis
7332 if ($line =~ /\b($deprecated_apis_search)\b\s*\(/) {
7333 my $deprecated_api = $1;
7334 my $new_api = $deprecated_apis{$deprecated_api};
7335 WARN("DEPRECATED_API",
7336 "Deprecated use of '$deprecated_api', prefer '$new_api' instead\n" . $herecurr);
7339 # check for various structs that are normally const (ops, kgdb, device_tree)
7340 # and avoid what seem like struct definitions 'struct foo {'
7341 if (defined($const_structs) &&
7342 $line !~ /\bconst\b/ &&
7343 $line =~ /\bstruct\s+($const_structs)\b(?!\s*\{)/) {
7344 WARN("CONST_STRUCT",
7345 "struct $1 should normally be const\n" . $herecurr);
7348 # use of NR_CPUS is usually wrong
7349 # ignore definitions of NR_CPUS and usage to define arrays as likely right
7350 # ignore designated initializers using NR_CPUS
7351 if ($line =~ /\bNR_CPUS\b/ &&
7352 $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ &&
7353 $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ &&
7354 $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ &&
7355 $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ &&
7356 $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/ &&
7357 $line !~ /^.\s*\.\w+\s*=\s*.*\bNR_CPUS\b/)
7360 "usage of NR_CPUS is often wrong - consider using cpu_possible(), num_possible_cpus(), for_each_possible_cpu(), etc\n" . $herecurr);
7363 # Use of __ARCH_HAS_<FOO> or ARCH_HAVE_<BAR> is wrong.
7364 if ($line =~ /\+\s*#\s*define\s+((?:__)?ARCH_(?:HAS|HAVE)\w*)\b/) {
7365 ERROR("DEFINE_ARCH_HAS",
7366 "#define of '$1' is wrong - use Kconfig variables or standard guards instead\n" . $herecurr);
7369 # likely/unlikely comparisons similar to "(likely(foo) > 0)"
7370 if ($perl_version_ok &&
7371 $line =~ /\b((?:un)?likely)\s*\(\s*$FuncArg\s*\)\s*$Compare/) {
7372 WARN("LIKELY_MISUSE",
7373 "Using $1 should generally have parentheses around the comparison\n" . $herecurr);
7376 # return sysfs_emit(foo, fmt, ...) fmt without newline
7377 if ($line =~ /\breturn\s+sysfs_emit\s*\(\s*$FuncArg\s*,\s*($String)/ &&
7378 substr($rawline, $-[6], $+[6] - $-[6]) !~ /\\n"$/) {
7379 my $offset = $+[6] - 1;
7380 if (WARN("SYSFS_EMIT",
7381 "return sysfs_emit(...) formats should include a terminating newline\n" . $herecurr) &&
7383 substr($fixed[$fixlinenr], $offset, 0) = '\\n';
7387 # nested likely/unlikely calls
7388 if ($line =~ /\b(?:(?:un)?likely)\s*\(\s*!?\s*(IS_ERR(?:_OR_NULL|_VALUE)?|WARN)/) {
7389 WARN("LIKELY_MISUSE",
7390 "nested (un)?likely() calls, $1 already uses unlikely() internally\n" . $herecurr);
7393 # whine mightly about in_atomic
7394 if ($line =~ /\bin_atomic\s*\(/) {
7395 if ($realfile =~ m@^drivers/@) {
7397 "do not use in_atomic in drivers\n" . $herecurr);
7398 } elsif ($realfile !~ m@^kernel/@) {
7400 "use of in_atomic() is incorrect outside core kernel code\n" . $herecurr);
7404 # check for lockdep_set_novalidate_class
7405 if ($line =~ /^.\s*lockdep_set_novalidate_class\s*\(/ ||
7406 $line =~ /__lockdep_no_validate__\s*\)/ ) {
7407 if ($realfile !~ m@^kernel/lockdep@ &&
7408 $realfile !~ m@^include/linux/lockdep@ &&
7409 $realfile !~ m@^drivers/base/core@) {
7411 "lockdep_no_validate class is reserved for device->mutex.\n" . $herecurr);
7415 if ($line =~ /debugfs_create_\w+.*\b$mode_perms_world_writable\b/ ||
7416 $line =~ /DEVICE_ATTR.*\b$mode_perms_world_writable\b/) {
7417 WARN("EXPORTED_WORLD_WRITABLE",
7418 "Exporting world writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr);
7421 # check for DEVICE_ATTR uses that could be DEVICE_ATTR_<FOO>
7422 # and whether or not function naming is typical and if
7423 # DEVICE_ATTR permissions uses are unusual too
7424 if ($perl_version_ok &&
7426 $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*\)/) {
7431 my $octal_perms = perms_to_octal($perms);
7432 if ($show =~ /^${var}_show$/ &&
7433 $store =~ /^${var}_store$/ &&
7434 $octal_perms eq "0644") {
7435 if (WARN("DEVICE_ATTR_RW",
7436 "Use DEVICE_ATTR_RW\n" . $herecurr) &&
7438 $fixed[$fixlinenr] =~ s/\bDEVICE_ATTR\s*\(\s*$var\s*,\s*\Q$perms\E\s*,\s*$show\s*,\s*$store\s*\)/DEVICE_ATTR_RW(${var})/;
7440 } elsif ($show =~ /^${var}_show$/ &&
7441 $store =~ /^NULL$/ &&
7442 $octal_perms eq "0444") {
7443 if (WARN("DEVICE_ATTR_RO",
7444 "Use DEVICE_ATTR_RO\n" . $herecurr) &&
7446 $fixed[$fixlinenr] =~ s/\bDEVICE_ATTR\s*\(\s*$var\s*,\s*\Q$perms\E\s*,\s*$show\s*,\s*NULL\s*\)/DEVICE_ATTR_RO(${var})/;
7448 } elsif ($show =~ /^NULL$/ &&
7449 $store =~ /^${var}_store$/ &&
7450 $octal_perms eq "0200") {
7451 if (WARN("DEVICE_ATTR_WO",
7452 "Use DEVICE_ATTR_WO\n" . $herecurr) &&
7454 $fixed[$fixlinenr] =~ s/\bDEVICE_ATTR\s*\(\s*$var\s*,\s*\Q$perms\E\s*,\s*NULL\s*,\s*$store\s*\)/DEVICE_ATTR_WO(${var})/;
7456 } elsif ($octal_perms eq "0644" ||
7457 $octal_perms eq "0444" ||
7458 $octal_perms eq "0200") {
7459 my $newshow = "$show";
7460 $newshow = "${var}_show" if ($show ne "NULL" && $show ne "${var}_show");
7461 my $newstore = $store;
7462 $newstore = "${var}_store" if ($store ne "NULL" && $store ne "${var}_store");
7464 if ($show ne $newshow) {
7465 $rename .= " '$show' to '$newshow'";
7467 if ($store ne $newstore) {
7468 $rename .= " '$store' to '$newstore'";
7470 WARN("DEVICE_ATTR_FUNCTIONS",
7471 "Consider renaming function(s)$rename\n" . $herecurr);
7473 WARN("DEVICE_ATTR_PERMS",
7474 "DEVICE_ATTR unusual permissions '$perms' used\n" . $herecurr);
7478 # Mode permission misuses where it seems decimal should be octal
7479 # This uses a shortcut match to avoid unnecessary uses of a slow foreach loop
7480 # o Ignore module_param*(...) uses with a decimal 0 permission as that has a
7481 # specific definition of not visible in sysfs.
7482 # o Ignore proc_create*(...) uses with a decimal 0 permission as that means
7483 # use the default permissions
7484 if ($perl_version_ok &&
7486 $line =~ /$mode_perms_search/) {
7487 foreach my $entry (@mode_permission_funcs) {
7488 my $func = $entry->[0];
7489 my $arg_pos = $entry->[1];
7491 my $lc = $stat =~ tr@\n@@;
7492 $lc = $lc + $linenr;
7493 my $stat_real = get_stat_real($linenr, $lc);
7498 $skip_args = "(?:\\s*$FuncArg\\s*,\\s*){$arg_pos,$arg_pos}";
7500 my $test = "\\b$func\\s*\\(${skip_args}($FuncArg(?:\\|\\s*$FuncArg)*)\\s*[,\\)]";
7501 if ($stat =~ /$test/) {
7503 $val = $6 if ($skip_args ne "");
7504 if (!($func =~ /^(?:module_param|proc_create)/ && $val eq "0") &&
7505 (($val =~ /^$Int$/ && $val !~ /^$Octal$/) ||
7506 ($val =~ /^$Octal$/ && length($val) ne 4))) {
7507 ERROR("NON_OCTAL_PERMISSIONS",
7508 "Use 4 digit octal (0777) not decimal permissions\n" . "$here\n" . $stat_real);
7510 if ($val =~ /^$Octal$/ && (oct($val) & 02)) {
7511 ERROR("EXPORTED_WORLD_WRITABLE",
7512 "Exporting writable files is usually an error. Consider more restrictive permissions.\n" . "$here\n" . $stat_real);
7518 # check for uses of S_<PERMS> that could be octal for readability
7519 while ($line =~ m{\b($multi_mode_perms_string_search)\b}g) {
7521 my $octal = perms_to_octal($oval);
7522 if (WARN("SYMBOLIC_PERMS",
7523 "Symbolic permissions '$oval' are not preferred. Consider using octal permissions '$octal'.\n" . $herecurr) &&
7525 $fixed[$fixlinenr] =~ s/\Q$oval\E/$octal/;
7529 # validate content of MODULE_LICENSE against list from include/linux/module.h
7530 if ($line =~ /\bMODULE_LICENSE\s*\(\s*($String)\s*\)/) {
7531 my $extracted_string = get_quoted_string($line, $rawline);
7532 my $valid_licenses = qr{
7535 GPL\ and\ additional\ rights|
7541 if ($extracted_string !~ /^"(?:$valid_licenses)"$/x) {
7542 WARN("MODULE_LICENSE",
7543 "unknown module license " . $extracted_string . "\n" . $herecurr);
7545 if (!$file && $extracted_string eq '"GPL v2"') {
7546 if (WARN("MODULE_LICENSE",
7547 "Prefer \"GPL\" over \"GPL v2\" - see commit bf7fbeeae6db (\"module: Cure the MODULE_LICENSE \"GPL\" vs. \"GPL v2\" bogosity\")\n" . $herecurr) &&
7549 $fixed[$fixlinenr] =~ s/\bMODULE_LICENSE\s*\(\s*"GPL v2"\s*\)/MODULE_LICENSE("GPL")/;
7554 # check for sysctl duplicate constants
7555 if ($line =~ /\.extra[12]\s*=\s*&(zero|one|int_max)\b/) {
7556 WARN("DUPLICATED_SYSCTL_CONST",
7557 "duplicated sysctl range checking value '$1', consider using the shared one in include/linux/sysctl.h\n" . $herecurr);
7561 # If we have no input at all, then there is nothing to report on
7562 # so just keep quiet.
7563 if ($#rawlines == -1) {
7567 # In mailback mode only produce a report in the negative, for
7568 # things that appear to be patches.
7569 if ($mailback && ($clean == 1 || !$is_patch)) {
7573 # This is not a patch, and we are in 'no-patch' mode so
7575 if (!$chk_patch && !$is_patch) {
7579 if (!$is_patch && $filename !~ /cover-letter\.patch$/) {
7580 ERROR("NOT_UNIFIED_DIFF",
7581 "Does not appear to be a unified-diff format patch\n");
7583 if ($is_patch && $has_commit_log && $chk_signoff) {
7584 if ($signoff == 0) {
7585 ERROR("MISSING_SIGN_OFF",
7586 "Missing Signed-off-by: line(s)\n");
7587 } elsif ($authorsignoff != 1) {
7588 # authorsignoff values:
7589 # 0 -> missing sign off
7590 # 1 -> sign off identical
7591 # 2 -> names and addresses match, comments mismatch
7592 # 3 -> addresses match, names different
7593 # 4 -> names match, addresses different
7594 # 5 -> names match, addresses excluding subaddress details (refer RFC 5233) match
7596 my $sob_msg = "'From: $author' != 'Signed-off-by: $author_sob'";
7598 if ($authorsignoff == 0) {
7599 ERROR("NO_AUTHOR_SIGN_OFF",
7600 "Missing Signed-off-by: line by nominal patch author '$author'\n");
7601 } elsif ($authorsignoff == 2) {
7602 CHK("FROM_SIGN_OFF_MISMATCH",
7603 "From:/Signed-off-by: email comments mismatch: $sob_msg\n");
7604 } elsif ($authorsignoff == 3) {
7605 WARN("FROM_SIGN_OFF_MISMATCH",
7606 "From:/Signed-off-by: email name mismatch: $sob_msg\n");
7607 } elsif ($authorsignoff == 4) {
7608 WARN("FROM_SIGN_OFF_MISMATCH",
7609 "From:/Signed-off-by: email address mismatch: $sob_msg\n");
7610 } elsif ($authorsignoff == 5) {
7611 WARN("FROM_SIGN_OFF_MISMATCH",
7612 "From:/Signed-off-by: email subaddress mismatch: $sob_msg\n");
7617 print report_dump();
7618 if ($summary && !($clean == 1 && $quiet == 1)) {
7619 print "$filename " if ($summary_file);
7620 print "total: $cnt_error errors, $cnt_warn warnings, " .
7621 (($check)? "$cnt_chk checks, " : "") .
7622 "$cnt_lines lines checked\n";
7626 # If there were any defects found and not already fixing them
7627 if (!$clean and !$fix) {
7630 NOTE: For some of the reported defects, checkpatch may be able to
7631 mechanically convert to the typical style using --fix or --fix-inplace.
7634 # If there were whitespace errors which cleanpatch can fix
7635 # then suggest that.
7636 if ($rpt_cleaners) {
7640 NOTE: Whitespace errors detected.
7641 You may wish to use scripts/cleanpatch or scripts/cleanfile
7646 if ($clean == 0 && $fix &&
7647 ("@rawlines" ne "@fixed" ||
7648 $#fixed_inserted >= 0 || $#fixed_deleted >= 0)) {
7649 my $newfile = $filename;
7650 $newfile .= ".EXPERIMENTAL-checkpatch-fixes" if (!$fix_inplace);
7654 @fixed = fix_inserted_deleted_lines(\@fixed, \@fixed_inserted, \@fixed_deleted);
7656 open($f, '>', $newfile)
7657 or die "$P: Can't open $newfile for write\n";
7658 foreach my $fixed_line (@fixed) {
7661 if ($linecount > 3) {
7662 $fixed_line =~ s/^\+//;
7663 print $f $fixed_line . "\n";
7666 print $f $fixed_line . "\n";
7674 Wrote EXPERIMENTAL --fix correction(s) to '$newfile'
7676 Do _NOT_ trust the results written to this file.
7677 Do _NOT_ submit these changes without inspecting them for correctness.
7679 This EXPERIMENTAL file is simply a convenience to help rewrite patches.
7680 No warranties, expressed or implied...
7688 print "$vname has no obvious style problems and is ready for submission.\n";
7690 print "$vname has style problems, please review.\n";