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("codespell") ne "" && which("python") 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 = `python -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 $typeTypedefs = qr{(?x:
581 $typeOtherOSTypedefs\b|
582 $typeKernelTypedefs\b
585 our $zero_initializer = qr{(?:(?:0[xX])?0+$Int_type?|NULL|false)\b};
587 our $logFunctions = qr{(?x:
588 printk(?:_ratelimited|_once|_deferred_once|_deferred|)|
589 (?:[a-z0-9]+_){1,2}(?:printk|emerg|alert|crit|err|warning|warn|notice|info|debug|dbg|vdbg|devel|cont|WARN)(?:_ratelimited|_once|)|
591 WARN(?:_RATELIMIT|_ONCE|)|
594 seq_vprintf|seq_printf|seq_puts
597 our $allocFunctions = qr{(?x:
599 (?:kv|k|v)[czm]alloc(?:_array)?(?:_node)? |
602 (?:\w+)?alloc_skb(?:_ip_align)? |
603 # dev_alloc_skb/netdev_alloc_skb, et al
607 our $signature_tags = qr{(?xi:
619 our $tracing_logging_tags = qr{(?xi:
643 sub edit_distance_min {
645 my $len = scalar @arr;
646 if ((scalar @arr) < 1) {
647 # if underflow, return
651 for my $i (0 .. ($len-1)) {
652 if ($arr[$i] < $min) {
659 sub get_edit_distance {
660 my ($str1, $str2) = @_;
665 my $len1 = length($str1);
666 my $len2 = length($str2);
667 # two dimensional array storing minimum edit distance
669 for my $i (0 .. $len1) {
670 for my $j (0 .. $len2) {
672 $distance[$i][$j] = $j;
674 $distance[$i][$j] = $i;
675 } elsif (substr($str1, $i-1, 1) eq substr($str2, $j-1, 1)) {
676 $distance[$i][$j] = $distance[$i - 1][$j - 1];
678 my $dist1 = $distance[$i][$j - 1]; #insert distance
679 my $dist2 = $distance[$i - 1][$j]; # remove
680 my $dist3 = $distance[$i - 1][$j - 1]; #replace
681 $distance[$i][$j] = 1 + edit_distance_min($dist1, $dist2, $dist3);
685 return $distance[$len1][$len2];
688 sub find_standard_signature {
690 my @standard_signature_tags = (
691 'Signed-off-by:', 'Co-developed-by:', 'Acked-by:', 'Tested-by:',
692 'Reviewed-by:', 'Reported-by:', 'Suggested-by:'
694 foreach my $signature (@standard_signature_tags) {
695 return $signature if (get_edit_distance($sign_off, $signature) <= 2);
701 our @typeListMisordered = (
702 qr{char\s+(?:un)?signed},
703 qr{int\s+(?:(?:un)?signed\s+)?short\s},
704 qr{int\s+short(?:\s+(?:un)?signed)},
705 qr{short\s+int(?:\s+(?:un)?signed)},
706 qr{(?:un)?signed\s+int\s+short},
707 qr{short\s+(?:un)?signed},
708 qr{long\s+int\s+(?:un)?signed},
709 qr{int\s+long\s+(?:un)?signed},
710 qr{long\s+(?:un)?signed\s+int},
711 qr{int\s+(?:un)?signed\s+long},
712 qr{int\s+(?:un)?signed},
713 qr{int\s+long\s+long\s+(?:un)?signed},
714 qr{long\s+long\s+int\s+(?:un)?signed},
715 qr{long\s+long\s+(?:un)?signed\s+int},
716 qr{long\s+long\s+(?:un)?signed},
717 qr{long\s+(?:un)?signed},
722 qr{(?:(?:un)?signed\s+)?char},
723 qr{(?:(?:un)?signed\s+)?short\s+int},
724 qr{(?:(?:un)?signed\s+)?short},
725 qr{(?:(?:un)?signed\s+)?int},
726 qr{(?:(?:un)?signed\s+)?long\s+int},
727 qr{(?:(?:un)?signed\s+)?long\s+long\s+int},
728 qr{(?:(?:un)?signed\s+)?long\s+long},
729 qr{(?:(?:un)?signed\s+)?long},
738 qr{${Ident}_handler},
739 qr{${Ident}_handler_fn},
743 our $C90_int_types = qr{(?x:
744 long\s+long\s+int\s+(?:un)?signed|
745 long\s+long\s+(?:un)?signed\s+int|
746 long\s+long\s+(?:un)?signed|
747 (?:(?:un)?signed\s+)?long\s+long\s+int|
748 (?:(?:un)?signed\s+)?long\s+long|
749 int\s+long\s+long\s+(?:un)?signed|
750 int\s+(?:(?:un)?signed\s+)?long\s+long|
752 long\s+int\s+(?:un)?signed|
753 long\s+(?:un)?signed\s+int|
754 long\s+(?:un)?signed|
755 (?:(?:un)?signed\s+)?long\s+int|
756 (?:(?:un)?signed\s+)?long|
757 int\s+long\s+(?:un)?signed|
758 int\s+(?:(?:un)?signed\s+)?long|
761 (?:(?:un)?signed\s+)?int
764 our @typeListFile = ();
765 our @typeListWithAttr = (
767 qr{struct\s+$InitAttribute\s+$Ident},
768 qr{union\s+$InitAttribute\s+$Ident},
771 our @modifierList = (
774 our @modifierListFile = ();
776 our @mode_permission_funcs = (
778 ["module_param_(?:array|named|string)", 4],
779 ["module_param_array_named", 5],
780 ["debugfs_create_(?:file|u8|u16|u32|u64|x8|x16|x32|x64|size_t|atomic_t|bool|blob|regset32|u32_array)", 2],
781 ["proc_create(?:_data|)", 2],
782 ["(?:CLASS|DEVICE|SENSOR|SENSOR_DEVICE|IIO_DEVICE)_ATTR", 2],
783 ["IIO_DEV_ATTR_[A-Z_]+", 1],
784 ["SENSOR_(?:DEVICE_|)ATTR_2", 2],
785 ["SENSOR_TEMPLATE(?:_2|)", 3],
789 my $word_pattern = '\b[A-Z]?[a-z]{2,}\b';
791 #Create a search pattern for all these functions to speed up a loop below
792 our $mode_perms_search = "";
793 foreach my $entry (@mode_permission_funcs) {
794 $mode_perms_search .= '|' if ($mode_perms_search ne "");
795 $mode_perms_search .= $entry->[0];
797 $mode_perms_search = "(?:${mode_perms_search})";
799 our %deprecated_apis = (
800 "synchronize_rcu_bh" => "synchronize_rcu",
801 "synchronize_rcu_bh_expedited" => "synchronize_rcu_expedited",
802 "call_rcu_bh" => "call_rcu",
803 "rcu_barrier_bh" => "rcu_barrier",
804 "synchronize_sched" => "synchronize_rcu",
805 "synchronize_sched_expedited" => "synchronize_rcu_expedited",
806 "call_rcu_sched" => "call_rcu",
807 "rcu_barrier_sched" => "rcu_barrier",
808 "get_state_synchronize_sched" => "get_state_synchronize_rcu",
809 "cond_synchronize_sched" => "cond_synchronize_rcu",
812 #Create a search pattern for all these strings to speed up a loop below
813 our $deprecated_apis_search = "";
814 foreach my $entry (keys %deprecated_apis) {
815 $deprecated_apis_search .= '|' if ($deprecated_apis_search ne "");
816 $deprecated_apis_search .= $entry;
818 $deprecated_apis_search = "(?:${deprecated_apis_search})";
820 our $mode_perms_world_writable = qr{
828 our %mode_permission_string_types = (
847 #Create a search pattern for all these strings to speed up a loop below
848 our $mode_perms_string_search = "";
849 foreach my $entry (keys %mode_permission_string_types) {
850 $mode_perms_string_search .= '|' if ($mode_perms_string_search ne "");
851 $mode_perms_string_search .= $entry;
853 our $single_mode_perms_string_search = "(?:${mode_perms_string_search})";
854 our $multi_mode_perms_string_search = qr{
855 ${single_mode_perms_string_search}
856 (?:\s*\|\s*${single_mode_perms_string_search})*
862 return trim($string) if ($string =~ /^\s*0[0-7]{3,3}\s*$/);
869 while ($string =~ /\b(($single_mode_perms_string_search)\b(?:\s*\|\s*)?\s*)/g) {
870 $curpos = pos($string);
873 last if ($lastpos > 0 && ($curpos - length($omatch) != $lastpos));
875 $to |= $mode_permission_string_types{$match};
876 $val .= '\s*\|\s*' if ($val ne "");
880 $oval =~ s/^\s*\|\s*//;
881 $oval =~ s/\s*\|\s*$//;
882 return sprintf("%04o", $to);
885 our $allowed_asm_includes = qr{(?x:
891 # memory.h: ARM has a custom one
893 # Load common spelling mistakes and build regular expression list.
897 if (open(my $spelling, '<', $spelling_file)) {
898 while (<$spelling>) {
901 $line =~ s/\s*\n?$//g;
904 next if ($line =~ m/^\s*#/);
905 next if ($line =~ m/^\s*$/);
907 my ($suspect, $fix) = split(/\|\|/, $line);
909 $spelling_fix{$suspect} = $fix;
913 warn "No typos will be found - file '$spelling_file': $!\n";
917 if (open(my $spelling, '<', $codespellfile)) {
918 while (<$spelling>) {
921 $line =~ s/\s*\n?$//g;
924 next if ($line =~ m/^\s*#/);
925 next if ($line =~ m/^\s*$/);
926 next if ($line =~ m/, disabled/i);
930 my ($suspect, $fix) = split(/->/, $line);
932 $spelling_fix{$suspect} = $fix;
936 warn "No codespell typos will be found - file '$codespellfile': $!\n";
940 $misspellings = join("|", sort keys %spelling_fix) if keys %spelling_fix;
943 my ($wordsRef, $file) = @_;
945 if (open(my $words, '<', $file)) {
949 $line =~ s/\s*\n?$//g;
952 next if ($line =~ m/^\s*#/);
953 next if ($line =~ m/^\s*$/);
955 print("$file: '$line' invalid - ignored\n");
959 $$wordsRef .= '|' if (defined $$wordsRef);
970 if (show_type("CONST_STRUCT")) {
971 read_words(\$const_structs, $conststructsfile)
972 or warn "No structs that should be const will be found - file '$conststructsfile': $!\n";
975 if (defined($typedefsfile)) {
976 my $typeOtherTypedefs;
977 read_words(\$typeOtherTypedefs, $typedefsfile)
978 or warn "No additional types will be considered - file '$typedefsfile': $!\n";
979 $typeTypedefs .= '|' . $typeOtherTypedefs if (defined $typeOtherTypedefs);
983 my $mods = "(?x: \n" . join("|\n ", (@modifierList, @modifierListFile)) . "\n)";
984 my $all = "(?x: \n" . join("|\n ", (@typeList, @typeListFile)) . "\n)";
985 my $Misordered = "(?x: \n" . join("|\n ", @typeListMisordered) . "\n)";
986 my $allWithAttr = "(?x: \n" . join("|\n ", @typeListWithAttr) . "\n)";
987 $Modifier = qr{(?:$Attribute|$Sparse|$mods)};
993 (?:$Modifier\s+|const\s+)*
995 (?:typeof|__typeof__)\s*\([^\)]*\)|
999 (?:\s+$Modifier|\s+const)*
1001 $NonptrTypeMisordered = qr{
1002 (?:$Modifier\s+|const\s+)*
1006 (?:\s+$Modifier|\s+const)*
1008 $NonptrTypeWithAttr = qr{
1009 (?:$Modifier\s+|const\s+)*
1011 (?:typeof|__typeof__)\s*\([^\)]*\)|
1012 (?:$typeTypedefs\b)|
1013 (?:${allWithAttr}\b)
1015 (?:\s+$Modifier|\s+const)*
1019 (?:(?:\s|\*|\[\])+\s*const|(?:\s|\*\s*(?:const\s*)?|\[\])+|(?:\s*\[\s*\])+){0,4}
1020 (?:\s+$Inline|\s+$Modifier)*
1022 $TypeMisordered = qr{
1023 $NonptrTypeMisordered
1024 (?:(?:\s|\*|\[\])+\s*const|(?:\s|\*\s*(?:const\s*)?|\[\])+|(?:\s*\[\s*\])+){0,4}
1025 (?:\s+$Inline|\s+$Modifier)*
1027 $Declare = qr{(?:$Storage\s+(?:$Inline\s+)?)?$Type};
1028 $DeclareMisordered = qr{(?:$Storage\s+(?:$Inline\s+)?)?$TypeMisordered};
1032 our $Typecast = qr{\s*(\(\s*$NonptrType\s*\)){0,1}\s*};
1034 # Using $balanced_parens, $LvalOrFunc, or $FuncArg
1035 # requires at least perl version v5.10.0
1036 # Any use must be runtime checked with $^V
1038 our $balanced_parens = qr/(\((?:[^\(\)]++|(?-1))*\))/;
1039 our $LvalOrFunc = qr{((?:[\&\*]\s*)?$Lval)\s*($balanced_parens{0,1})\s*};
1040 our $FuncArg = qr{$Typecast{0,1}($LvalOrFunc|$Constant|$String)};
1042 our $declaration_macros = qr{(?x:
1043 (?:$Storage\s+)?(?:[A-Z_][A-Z0-9]*_){0,2}(?:DEFINE|DECLARE)(?:_[A-Z0-9]+){1,6}\s*\(|
1044 (?:$Storage\s+)?[HLP]?LIST_HEAD\s*\(|
1045 (?:SKCIPHER_REQUEST|SHASH_DESC|AHASH_REQUEST)_ON_STACK\s*\(
1048 our %allow_repeated_words = (
1055 sub deparenthesize {
1057 return "" if (!defined($string));
1059 while ($string =~ /^\s*\(.*\)\s*$/) {
1060 $string =~ s@^\s*\(\s*@@;
1061 $string =~ s@\s*\)\s*$@@;
1064 $string =~ s@\s+@ @g;
1069 sub seed_camelcase_file {
1072 return if (!(-f $file));
1076 open(my $include_file, '<', "$file")
1077 or warn "$P: Can't read '$file' $!\n";
1078 my $text = <$include_file>;
1079 close($include_file);
1081 my @lines = split('\n', $text);
1083 foreach my $line (@lines) {
1084 next if ($line !~ /(?:[A-Z][a-z]|[a-z][A-Z])/);
1085 if ($line =~ /^[ \t]*(?:#[ \t]*define|typedef\s+$Type)\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)/) {
1087 } elsif ($line =~ /^\s*$Declare\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)\s*[\(\[,;]/) {
1089 } elsif ($line =~ /^\s*(?:union|struct|enum)\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)\s*[;\{]/) {
1095 our %maintained_status = ();
1097 sub is_maintained_obsolete {
1098 my ($filename) = @_;
1100 return 0 if (!$tree || !(-e "$root/scripts/get_maintainer.pl"));
1102 if (!exists($maintained_status{$filename})) {
1103 $maintained_status{$filename} = `perl $root/scripts/get_maintainer.pl --status --nom --nol --nogit --nogit-fallback -f $filename 2>&1`;
1106 return $maintained_status{$filename} =~ /obsolete/i;
1109 sub is_SPDX_License_valid {
1112 return 1 if (!$tree || which("python3") eq "" || !(-x "$root/scripts/spdxcheck.py") || !(-e "$gitroot"));
1114 my $root_path = abs_path($root);
1115 my $status = `cd "$root_path"; echo "$license" | scripts/spdxcheck.py -`;
1116 return 0 if ($status ne "");
1120 my $camelcase_seeded = 0;
1121 sub seed_camelcase_includes {
1122 return if ($camelcase_seeded);
1125 my $camelcase_cache = "";
1126 my @include_files = ();
1128 $camelcase_seeded = 1;
1130 if (-e "$gitroot") {
1131 my $git_last_include_commit = `${git_command} log --no-merges --pretty=format:"%h%n" -1 -- include`;
1132 chomp $git_last_include_commit;
1133 $camelcase_cache = ".checkpatch-camelcase.git.$git_last_include_commit";
1135 my $last_mod_date = 0;
1136 $files = `find $root/include -name "*.h"`;
1137 @include_files = split('\n', $files);
1138 foreach my $file (@include_files) {
1139 my $date = POSIX::strftime("%Y%m%d%H%M",
1140 localtime((stat $file)[9]));
1141 $last_mod_date = $date if ($last_mod_date < $date);
1143 $camelcase_cache = ".checkpatch-camelcase.date.$last_mod_date";
1146 if ($camelcase_cache ne "" && -f $camelcase_cache) {
1147 open(my $camelcase_file, '<', "$camelcase_cache")
1148 or warn "$P: Can't read '$camelcase_cache' $!\n";
1149 while (<$camelcase_file>) {
1153 close($camelcase_file);
1158 if (-e "$gitroot") {
1159 $files = `${git_command} ls-files "include/*.h"`;
1160 @include_files = split('\n', $files);
1163 foreach my $file (@include_files) {
1164 seed_camelcase_file($file);
1167 if ($camelcase_cache ne "") {
1168 unlink glob ".checkpatch-camelcase.*";
1169 open(my $camelcase_file, '>', "$camelcase_cache")
1170 or warn "$P: Can't write '$camelcase_cache' $!\n";
1171 foreach (sort { lc($a) cmp lc($b) } keys(%camelcase)) {
1172 print $camelcase_file ("$_\n");
1174 close($camelcase_file);
1178 sub git_is_single_file {
1179 my ($filename) = @_;
1181 return 0 if ((which("git") eq "") || !(-e "$gitroot"));
1183 my $output = `${git_command} ls-files -- $filename 2>/dev/null`;
1184 my $count = $output =~ tr/\n//;
1185 return $count eq 1 && $output =~ m{^${filename}$};
1188 sub git_commit_info {
1189 my ($commit, $id, $desc) = @_;
1191 return ($id, $desc) if ((which("git") eq "") || !(-e "$gitroot"));
1193 my $output = `${git_command} log --no-color --format='%H %s' -1 $commit 2>&1`;
1194 $output =~ s/^\s*//gm;
1195 my @lines = split("\n", $output);
1197 return ($id, $desc) if ($#lines < 0);
1199 if ($lines[0] =~ /^error: short SHA1 $commit is ambiguous/) {
1200 # Maybe one day convert this block of bash into something that returns
1201 # all matching commit ids, but it's very slow...
1203 # echo "checking commits $1..."
1204 # git rev-list --remotes | grep -i "^$1" |
1205 # while read line ; do
1206 # git log --format='%H %s' -1 $line |
1207 # echo "commit $(cut -c 1-12,41-)"
1209 } elsif ($lines[0] =~ /^fatal: ambiguous argument '$commit': unknown revision or path not in the working tree\./ ||
1210 $lines[0] =~ /^fatal: bad object $commit/) {
1213 $id = substr($lines[0], 0, 12);
1214 $desc = substr($lines[0], 41);
1217 return ($id, $desc);
1220 $chk_signoff = 0 if ($file);
1225 my @fixed_inserted = ();
1226 my @fixed_deleted = ();
1229 # If input is git commits, extract all commits from the commit expressions.
1230 # For example, HEAD-3 means we need check 'HEAD, HEAD~1, HEAD~2'.
1231 die "$P: No git repository found\n" if ($git && !-e "$gitroot");
1235 foreach my $commit_expr (@ARGV) {
1237 if ($commit_expr =~ m/^(.*)-(\d+)$/) {
1238 $git_range = "-$2 $1";
1239 } elsif ($commit_expr =~ m/\.\./) {
1240 $git_range = "$commit_expr";
1242 $git_range = "-1 $commit_expr";
1244 my $lines = `${git_command} log --no-color --no-merges --pretty=format:'%H %s' $git_range`;
1245 foreach my $line (split(/\n/, $lines)) {
1246 $line =~ /^([0-9a-fA-F]{40,40}) (.*)$/;
1247 next if (!defined($1) || !defined($2));
1250 unshift(@commits, $sha1);
1251 $git_commits{$sha1} = $subject;
1254 die "$P: no git commits after extraction!\n" if (@commits == 0);
1259 $allow_c99_comments = !defined $ignore_type{"C99_COMMENT_TOLERANCE"};
1260 for my $filename (@ARGV) {
1262 my $is_git_file = git_is_single_file($filename);
1263 my $oldfile = $file;
1264 $file = 1 if ($is_git_file);
1266 open($FILE, '-|', "git format-patch -M --stdout -1 $filename") ||
1267 die "$P: $filename: git format-patch failed - $!\n";
1269 open($FILE, '-|', "diff -u /dev/null $filename") ||
1270 die "$P: $filename: diff failed - $!\n";
1271 } elsif ($filename eq '-') {
1272 open($FILE, '<&STDIN');
1274 open($FILE, '<', "$filename") ||
1275 die "$P: $filename: open failed - $!\n";
1277 if ($filename eq '-') {
1278 $vname = 'Your patch';
1280 $vname = "Commit " . substr($filename, 0, 12) . ' ("' . $git_commits{$filename} . '")';
1286 push(@rawlines, $_);
1287 $vname = qq("$1") if ($filename eq '-' && $_ =~ m/^Subject:\s+(.+)/i);
1291 if ($#ARGV > 0 && $quiet == 0) {
1292 print '-' x length($vname) . "\n";
1294 print '-' x length($vname) . "\n";
1297 if (!process($filename)) {
1303 @fixed_inserted = ();
1304 @fixed_deleted = ();
1306 @modifierListFile = ();
1309 $file = $oldfile if ($is_git_file);
1313 hash_show_words(\%use_type, "Used");
1314 hash_show_words(\%ignore_type, "Ignored");
1316 if (!$perl_version_ok) {
1319 NOTE: perl $^V is not modern enough to detect all possible issues.
1320 An upgrade to at least perl $minimum_perl_version is suggested.
1326 NOTE: If any of the errors are false positives, please report
1327 them to the maintainer, see CHECKPATCH in MAINTAINERS.
1334 sub top_of_kernel_tree {
1338 "COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
1339 "README", "Documentation", "arch", "include", "drivers",
1340 "fs", "init", "ipc", "kernel", "lib", "scripts",
1343 foreach my $check (@tree_check) {
1344 if (! -e $root . '/' . $check) {
1352 my ($formatted_email) = @_;
1356 my $name_comment = "";
1360 if ($formatted_email =~ /^(.*)<(\S+\@\S+)>(.*)$/) {
1363 $comment = $3 if defined $3;
1364 } elsif ($formatted_email =~ /^\s*<(\S+\@\S+)>(.*)$/) {
1366 $comment = $2 if defined $2;
1367 } elsif ($formatted_email =~ /(\S+\@\S+)(.*)$/) {
1369 $comment = $2 if defined $2;
1370 $formatted_email =~ s/\Q$address\E.*$//;
1371 $name = $formatted_email;
1372 $name = trim($name);
1373 $name =~ s/^\"|\"$//g;
1374 # If there's a name left after stripping spaces and
1375 # leading quotes, and the address doesn't have both
1376 # leading and trailing angle brackets, the address
1378 # "joe smith joe@smith.com" bad
1379 # "joe smith <joe@smith.com" bad
1380 if ($name ne "" && $address !~ /^<[^>]+>$/) {
1387 # Extract comments from names excluding quoted parts
1388 # "John D. (Doe)" - Do not extract
1389 if ($name =~ s/\"(.+)\"//) {
1392 while ($name =~ s/\s*($balanced_parens)\s*/ /) {
1393 $name_comment .= trim($1);
1395 $name =~ s/^[ \"]+|[ \"]+$//g;
1396 $name = trim("$quoted $name");
1398 $address = trim($address);
1399 $address =~ s/^\<|\>$//g;
1400 $comment = trim($comment);
1402 if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
1403 $name =~ s/(?<!\\)"/\\"/g; ##escape quotes
1404 $name = "\"$name\"";
1407 return ($name, $name_comment, $address, $comment);
1411 my ($name, $name_comment, $address, $comment) = @_;
1413 my $formatted_email;
1415 $name =~ s/^[ \"]+|[ \"]+$//g;
1416 $address = trim($address);
1417 $address =~ s/(?:\.|\,|\")+$//; ##trailing commas, dots or quotes
1419 if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
1420 $name =~ s/(?<!\\)"/\\"/g; ##escape quotes
1421 $name = "\"$name\"";
1424 $name_comment = trim($name_comment);
1425 $name_comment = " $name_comment" if ($name_comment ne "");
1426 $comment = trim($comment);
1427 $comment = " $comment" if ($comment ne "");
1429 if ("$name" eq "") {
1430 $formatted_email = "$address";
1432 $formatted_email = "$name$name_comment <$address>";
1434 $formatted_email .= "$comment";
1435 return $formatted_email;
1438 sub reformat_email {
1441 my ($email_name, $name_comment, $email_address, $comment) = parse_email($email);
1442 return format_email($email_name, $name_comment, $email_address, $comment);
1445 sub same_email_addresses {
1446 my ($email1, $email2) = @_;
1448 my ($email1_name, $name1_comment, $email1_address, $comment1) = parse_email($email1);
1449 my ($email2_name, $name2_comment, $email2_address, $comment2) = parse_email($email2);
1451 return $email1_name eq $email2_name &&
1452 $email1_address eq $email2_address &&
1453 $name1_comment eq $name2_comment &&
1454 $comment1 eq $comment2;
1460 foreach my $path (split(/:/, $ENV{PATH})) {
1461 if (-e "$path/$bin") {
1462 return "$path/$bin";
1472 foreach my $path (split(/:/, ".:$ENV{HOME}:.scripts")) {
1473 if (-e "$path/$conf") {
1474 return "$path/$conf";
1486 for my $c (split(//, $str)) {
1490 for (; ($n % $tabsize) != 0; $n++) {
1502 (my $res = shift) =~ tr/\t/ /c;
1509 # Drop the diff line leader and expand tabs
1511 $line = expand_tabs($line);
1513 # Pick the indent from the front of the line.
1514 my ($white) = ($line =~ /^(\s*)/);
1516 return (length($line), length($white));
1519 my $sanitise_quote = '';
1521 sub sanitise_line_reset {
1522 my ($in_comment) = @_;
1525 $sanitise_quote = '*/';
1527 $sanitise_quote = '';
1540 # Always copy over the diff marker.
1541 $res = substr($line, 0, 1);
1543 for ($off = 1; $off < length($line); $off++) {
1544 $c = substr($line, $off, 1);
1546 # Comments we are whacking completely including the begin
1547 # and end, all to $;.
1548 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
1549 $sanitise_quote = '*/';
1551 substr($res, $off, 2, "$;$;");
1555 if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') {
1556 $sanitise_quote = '';
1557 substr($res, $off, 2, "$;$;");
1561 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '//') {
1562 $sanitise_quote = '//';
1564 substr($res, $off, 2, $sanitise_quote);
1569 # A \ in a string means ignore the next character.
1570 if (($sanitise_quote eq "'" || $sanitise_quote eq '"') &&
1572 substr($res, $off, 2, 'XX');
1577 if ($c eq "'" || $c eq '"') {
1578 if ($sanitise_quote eq '') {
1579 $sanitise_quote = $c;
1581 substr($res, $off, 1, $c);
1583 } elsif ($sanitise_quote eq $c) {
1584 $sanitise_quote = '';
1588 #print "c<$c> SQ<$sanitise_quote>\n";
1589 if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") {
1590 substr($res, $off, 1, $;);
1591 } elsif ($off != 0 && $sanitise_quote eq '//' && $c ne "\t") {
1592 substr($res, $off, 1, $;);
1593 } elsif ($off != 0 && $sanitise_quote && $c ne "\t") {
1594 substr($res, $off, 1, 'X');
1596 substr($res, $off, 1, $c);
1600 if ($sanitise_quote eq '//') {
1601 $sanitise_quote = '';
1604 # The pathname on a #include may be surrounded by '<' and '>'.
1605 if ($res =~ /^.\s*\#\s*include\s+\<(.*)\>/) {
1606 my $clean = 'X' x length($1);
1607 $res =~ s@\<.*\>@<$clean>@;
1609 # The whole of a #error is a string.
1610 } elsif ($res =~ /^.\s*\#\s*(?:error|warning)\s+(.*)\b/) {
1611 my $clean = 'X' x length($1);
1612 $res =~ s@(\#\s*(?:error|warning)\s+).*@$1$clean@;
1615 if ($allow_c99_comments && $res =~ m@(//.*$)@) {
1617 $res =~ s/\Q$match\E/"$;" x length($match)/e;
1623 sub get_quoted_string {
1624 my ($line, $rawline) = @_;
1626 return "" if (!defined($line) || !defined($rawline));
1627 return "" if ($line !~ m/($String)/g);
1628 return substr($rawline, $-[0], $+[0] - $-[0]);
1631 sub ctx_statement_block {
1632 my ($linenr, $remain, $off) = @_;
1633 my $line = $linenr - 1;
1636 my $coff = $off - 1;
1650 @stack = (['', 0]) if ($#stack == -1);
1652 #warn "CSB: blk<$blk> remain<$remain>\n";
1653 # If we are about to drop off the end, pull in more
1656 for (; $remain > 0; $line++) {
1657 last if (!defined $lines[$line]);
1658 next if ($lines[$line] =~ /^-/);
1661 $blk .= $lines[$line] . "\n";
1662 $len = length($blk);
1666 # Bail if there is no further context.
1667 #warn "CSB: blk<$blk> off<$off> len<$len>\n";
1671 if ($level == 0 && substr($blk, $off) =~ /^.\s*#\s*define/) {
1677 $c = substr($blk, $off, 1);
1678 $remainder = substr($blk, $off);
1680 #warn "CSB: c<$c> type<$type> level<$level> remainder<$remainder> coff_set<$coff_set>\n";
1682 # Handle nested #if/#else.
1683 if ($remainder =~ /^#\s*(?:ifndef|ifdef|if)\s/) {
1684 push(@stack, [ $type, $level ]);
1685 } elsif ($remainder =~ /^#\s*(?:else|elif)\b/) {
1686 ($type, $level) = @{$stack[$#stack - 1]};
1687 } elsif ($remainder =~ /^#\s*endif\b/) {
1688 ($type, $level) = @{pop(@stack)};
1691 # Statement ends at the ';' or a close '}' at the
1693 if ($level == 0 && $c eq ';') {
1697 # An else is really a conditional as long as its not else if
1698 if ($level == 0 && $coff_set == 0 &&
1699 (!defined($p) || $p =~ /(?:\s|\}|\+)/) &&
1700 $remainder =~ /^(else)(?:\s|{)/ &&
1701 $remainder !~ /^else\s+if\b/) {
1702 $coff = $off + length($1) - 1;
1704 #warn "CSB: mark coff<$coff> soff<$soff> 1<$1>\n";
1705 #warn "[" . substr($blk, $soff, $coff - $soff + 1) . "]\n";
1708 if (($type eq '' || $type eq '(') && $c eq '(') {
1712 if ($type eq '(' && $c eq ')') {
1714 $type = ($level != 0)? '(' : '';
1716 if ($level == 0 && $coff < $soff) {
1719 #warn "CSB: mark coff<$coff>\n";
1722 if (($type eq '' || $type eq '{') && $c eq '{') {
1726 if ($type eq '{' && $c eq '}') {
1728 $type = ($level != 0)? '{' : '';
1731 if (substr($blk, $off + 1, 1) eq ';') {
1737 # Preprocessor commands end at the newline unless escaped.
1738 if ($type eq '#' && $c eq "\n" && $p ne "\\") {
1746 # We are truly at the end, so shuffle to the next line.
1753 my $statement = substr($blk, $soff, $off - $soff + 1);
1754 my $condition = substr($blk, $soff, $coff - $soff + 1);
1756 #warn "STATEMENT<$statement>\n";
1757 #warn "CONDITION<$condition>\n";
1759 #print "coff<$coff> soff<$off> loff<$loff>\n";
1761 return ($statement, $condition,
1762 $line, $remain + 1, $off - $loff + 1, $level);
1765 sub statement_lines {
1768 # Strip the diff line prefixes and rip blank lines at start and end.
1769 $stmt =~ s/(^|\n)./$1/g;
1773 my @stmt_lines = ($stmt =~ /\n/g);
1775 return $#stmt_lines + 2;
1778 sub statement_rawlines {
1781 my @stmt_lines = ($stmt =~ /\n/g);
1783 return $#stmt_lines + 2;
1786 sub statement_block_size {
1789 $stmt =~ s/(^|\n)./$1/g;
1795 my @stmt_lines = ($stmt =~ /\n/g);
1796 my @stmt_statements = ($stmt =~ /;/g);
1798 my $stmt_lines = $#stmt_lines + 2;
1799 my $stmt_statements = $#stmt_statements + 1;
1801 if ($stmt_lines > $stmt_statements) {
1804 return $stmt_statements;
1808 sub ctx_statement_full {
1809 my ($linenr, $remain, $off) = @_;
1810 my ($statement, $condition, $level);
1814 # Grab the first conditional/block pair.
1815 ($statement, $condition, $linenr, $remain, $off, $level) =
1816 ctx_statement_block($linenr, $remain, $off);
1817 #print "F: c<$condition> s<$statement> remain<$remain>\n";
1818 push(@chunks, [ $condition, $statement ]);
1819 if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
1820 return ($level, $linenr, @chunks);
1823 # Pull in the following conditional/block pairs and see if they
1824 # could continue the statement.
1826 ($statement, $condition, $linenr, $remain, $off, $level) =
1827 ctx_statement_block($linenr, $remain, $off);
1828 #print "C: c<$condition> s<$statement> remain<$remain>\n";
1829 last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
1831 push(@chunks, [ $condition, $statement ]);
1834 return ($level, $linenr, @chunks);
1838 my ($linenr, $remain, $outer, $open, $close, $off) = @_;
1840 my $start = $linenr - 1;
1847 my @stack = ($level);
1848 for ($line = $start; $remain > 0; $line++) {
1849 next if ($rawlines[$line] =~ /^-/);
1852 $blk .= $rawlines[$line];
1854 # Handle nested #if/#else.
1855 if ($lines[$line] =~ /^.\s*#\s*(?:ifndef|ifdef|if)\s/) {
1856 push(@stack, $level);
1857 } elsif ($lines[$line] =~ /^.\s*#\s*(?:else|elif)\b/) {
1858 $level = $stack[$#stack - 1];
1859 } elsif ($lines[$line] =~ /^.\s*#\s*endif\b/) {
1860 $level = pop(@stack);
1863 foreach my $c (split(//, $lines[$line])) {
1864 ##print "C<$c>L<$level><$open$close>O<$off>\n";
1870 if ($c eq $close && $level > 0) {
1872 last if ($level == 0);
1873 } elsif ($c eq $open) {
1878 if (!$outer || $level <= 1) {
1879 push(@res, $rawlines[$line]);
1882 last if ($level == 0);
1885 return ($level, @res);
1887 sub ctx_block_outer {
1888 my ($linenr, $remain) = @_;
1890 my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0);
1894 my ($linenr, $remain) = @_;
1896 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0);
1900 my ($linenr, $remain, $off) = @_;
1902 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
1905 sub ctx_block_level {
1906 my ($linenr, $remain) = @_;
1908 return ctx_block_get($linenr, $remain, 0, '{', '}', 0);
1910 sub ctx_statement_level {
1911 my ($linenr, $remain, $off) = @_;
1913 return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
1916 sub ctx_locate_comment {
1917 my ($first_line, $end_line) = @_;
1919 # If c99 comment on the current line, or the line before or after
1920 my ($current_comment) = ($rawlines[$end_line - 1] =~ m@^\+.*(//.*$)@);
1921 return $current_comment if (defined $current_comment);
1922 ($current_comment) = ($rawlines[$end_line - 2] =~ m@^[\+ ].*(//.*$)@);
1923 return $current_comment if (defined $current_comment);
1924 ($current_comment) = ($rawlines[$end_line] =~ m@^[\+ ].*(//.*$)@);
1925 return $current_comment if (defined $current_comment);
1927 # Catch a comment on the end of the line itself.
1928 ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@);
1929 return $current_comment if (defined $current_comment);
1931 # Look through the context and try and figure out if there is a
1934 $current_comment = '';
1935 for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
1936 my $line = $rawlines[$linenr - 1];
1938 if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
1941 if ($line =~ m@/\*@) {
1944 if (!$in_comment && $current_comment ne '') {
1945 $current_comment = '';
1947 $current_comment .= $line . "\n" if ($in_comment);
1948 if ($line =~ m@\*/@) {
1953 chomp($current_comment);
1954 return($current_comment);
1956 sub ctx_has_comment {
1957 my ($first_line, $end_line) = @_;
1958 my $cmt = ctx_locate_comment($first_line, $end_line);
1960 ##print "LINE: $rawlines[$end_line - 1 ]\n";
1961 ##print "CMMT: $cmt\n";
1963 return ($cmt ne '');
1967 my ($linenr, $cnt) = @_;
1969 my $offset = $linenr - 1;
1974 $line = $rawlines[$offset++];
1975 next if (defined($line) && $line =~ /^-/);
1983 my ($linenr, $lc) = @_;
1985 my $stat_real = raw_line($linenr, 0);
1986 for (my $count = $linenr + 1; $count <= $lc; $count++) {
1987 $stat_real = $stat_real . "\n" . raw_line($count, 0);
1994 my ($linenr, $cnt, $here) = @_;
1996 my $herectx = $here . "\n";
1997 for (my $n = 0; $n < $cnt; $n++) {
1998 $herectx .= raw_line($linenr, $n) . "\n";
2009 while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
2012 $coded = sprintf("^%c", unpack('C', $2) + 64);
2021 my $av_preprocessor = 0;
2026 sub annotate_reset {
2027 $av_preprocessor = 0;
2029 @av_paren_type = ('E');
2030 $av_pend_colon = 'O';
2033 sub annotate_values {
2034 my ($stream, $type) = @_;
2037 my $var = '_' x length($stream);
2040 print "$stream\n" if ($dbg_values > 1);
2042 while (length($cur)) {
2043 @av_paren_type = ('E') if ($#av_paren_type < 0);
2044 print " <" . join('', @av_paren_type) .
2045 "> <$type> <$av_pending>" if ($dbg_values > 1);
2046 if ($cur =~ /^(\s+)/o) {
2047 print "WS($1)\n" if ($dbg_values > 1);
2048 if ($1 =~ /\n/ && $av_preprocessor) {
2049 $type = pop(@av_paren_type);
2050 $av_preprocessor = 0;
2053 } elsif ($cur =~ /^(\(\s*$Type\s*)\)/ && $av_pending eq '_') {
2054 print "CAST($1)\n" if ($dbg_values > 1);
2055 push(@av_paren_type, $type);
2058 } elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\(|\s*$)/) {
2059 print "DECLARE($1)\n" if ($dbg_values > 1);
2062 } elsif ($cur =~ /^($Modifier)\s*/) {
2063 print "MODIFIER($1)\n" if ($dbg_values > 1);
2066 } elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) {
2067 print "DEFINE($1,$2)\n" if ($dbg_values > 1);
2068 $av_preprocessor = 1;
2069 push(@av_paren_type, $type);
2075 } elsif ($cur =~ /^(\#\s*(?:undef\s*$Ident|include\b))/o) {
2076 print "UNDEF($1)\n" if ($dbg_values > 1);
2077 $av_preprocessor = 1;
2078 push(@av_paren_type, $type);
2080 } elsif ($cur =~ /^(\#\s*(?:ifdef|ifndef|if))/o) {
2081 print "PRE_START($1)\n" if ($dbg_values > 1);
2082 $av_preprocessor = 1;
2084 push(@av_paren_type, $type);
2085 push(@av_paren_type, $type);
2088 } elsif ($cur =~ /^(\#\s*(?:else|elif))/o) {
2089 print "PRE_RESTART($1)\n" if ($dbg_values > 1);
2090 $av_preprocessor = 1;
2092 push(@av_paren_type, $av_paren_type[$#av_paren_type]);
2096 } elsif ($cur =~ /^(\#\s*(?:endif))/o) {
2097 print "PRE_END($1)\n" if ($dbg_values > 1);
2099 $av_preprocessor = 1;
2101 # Assume all arms of the conditional end as this
2102 # one does, and continue as if the #endif was not here.
2103 pop(@av_paren_type);
2104 push(@av_paren_type, $type);
2107 } elsif ($cur =~ /^(\\\n)/o) {
2108 print "PRECONT($1)\n" if ($dbg_values > 1);
2110 } elsif ($cur =~ /^(__attribute__)\s*\(?/o) {
2111 print "ATTR($1)\n" if ($dbg_values > 1);
2112 $av_pending = $type;
2115 } elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
2116 print "SIZEOF($1)\n" if ($dbg_values > 1);
2122 } elsif ($cur =~ /^(if|while|for)\b/o) {
2123 print "COND($1)\n" if ($dbg_values > 1);
2127 } elsif ($cur =~/^(case)/o) {
2128 print "CASE($1)\n" if ($dbg_values > 1);
2129 $av_pend_colon = 'C';
2132 } elsif ($cur =~/^(return|else|goto|typeof|__typeof__)\b/o) {
2133 print "KEYWORD($1)\n" if ($dbg_values > 1);
2136 } elsif ($cur =~ /^(\()/o) {
2137 print "PAREN('$1')\n" if ($dbg_values > 1);
2138 push(@av_paren_type, $av_pending);
2142 } elsif ($cur =~ /^(\))/o) {
2143 my $new_type = pop(@av_paren_type);
2144 if ($new_type ne '_') {
2146 print "PAREN('$1') -> $type\n"
2147 if ($dbg_values > 1);
2149 print "PAREN('$1')\n" if ($dbg_values > 1);
2152 } elsif ($cur =~ /^($Ident)\s*\(/o) {
2153 print "FUNC($1)\n" if ($dbg_values > 1);
2157 } elsif ($cur =~ /^($Ident\s*):(?:\s*\d+\s*(,|=|;))?/) {
2158 if (defined $2 && $type eq 'C' || $type eq 'T') {
2159 $av_pend_colon = 'B';
2160 } elsif ($type eq 'E') {
2161 $av_pend_colon = 'L';
2163 print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1);
2166 } elsif ($cur =~ /^($Ident|$Constant)/o) {
2167 print "IDENT($1)\n" if ($dbg_values > 1);
2170 } elsif ($cur =~ /^($Assignment)/o) {
2171 print "ASSIGN($1)\n" if ($dbg_values > 1);
2174 } elsif ($cur =~/^(;|{|})/) {
2175 print "END($1)\n" if ($dbg_values > 1);
2177 $av_pend_colon = 'O';
2179 } elsif ($cur =~/^(,)/) {
2180 print "COMMA($1)\n" if ($dbg_values > 1);
2183 } elsif ($cur =~ /^(\?)/o) {
2184 print "QUESTION($1)\n" if ($dbg_values > 1);
2187 } elsif ($cur =~ /^(:)/o) {
2188 print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1);
2190 substr($var, length($res), 1, $av_pend_colon);
2191 if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') {
2196 $av_pend_colon = 'O';
2198 } elsif ($cur =~ /^(\[)/o) {
2199 print "CLOSE($1)\n" if ($dbg_values > 1);
2202 } elsif ($cur =~ /^(-(?![->])|\+(?!\+)|\*|\&\&|\&)/o) {
2205 print "OPV($1)\n" if ($dbg_values > 1);
2212 substr($var, length($res), 1, $variant);
2215 } elsif ($cur =~ /^($Operators)/o) {
2216 print "OP($1)\n" if ($dbg_values > 1);
2217 if ($1 ne '++' && $1 ne '--') {
2221 } elsif ($cur =~ /(^.)/o) {
2222 print "C($1)\n" if ($dbg_values > 1);
2225 $cur = substr($cur, length($1));
2226 $res .= $type x length($1);
2230 return ($res, $var);
2234 my ($possible, $line) = @_;
2235 my $notPermitted = qr{(?:
2252 ^(?:typedef|struct|enum)\b
2254 warn "CHECK<$possible> ($line)\n" if ($dbg_possible > 2);
2255 if ($possible !~ $notPermitted) {
2256 # Check for modifiers.
2257 $possible =~ s/\s*$Storage\s*//g;
2258 $possible =~ s/\s*$Sparse\s*//g;
2259 if ($possible =~ /^\s*$/) {
2261 } elsif ($possible =~ /\s/) {
2262 $possible =~ s/\s*$Type\s*//g;
2263 for my $modifier (split(' ', $possible)) {
2264 if ($modifier !~ $notPermitted) {
2265 warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
2266 push(@modifierListFile, $modifier);
2271 warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
2272 push(@typeListFile, $possible);
2276 warn "NOTPOSS: $possible ($line)\n" if ($dbg_possible > 1);
2285 $type =~ tr/[a-z]/[A-Z]/;
2287 return defined $use_type{$type} if (scalar keys %use_type > 0);
2289 return !defined $ignore_type{$type};
2293 my ($level, $type, $msg) = @_;
2295 if (!show_type($type) ||
2296 (defined $tst_only && $msg !~ /\Q$tst_only\E/)) {
2301 if ($level eq 'ERROR') {
2303 } elsif ($level eq 'WARNING') {
2309 $output .= $prefix . $level . ':';
2311 $output .= BLUE if ($color);
2312 $output .= "$type:";
2314 $output .= RESET if ($color);
2315 $output .= ' ' . $msg . "\n";
2318 my @lines = split("\n", $output, -1);
2319 splice(@lines, 1, 1);
2320 $output = join("\n", @lines);
2324 $output = (split('\n', $output))[0] . "\n";
2327 if ($verbose && exists($verbose_messages{$type}) &&
2328 !exists($verbose_emitted{$type})) {
2329 $output .= $verbose_messages{$type} . "\n\n";
2330 $verbose_emitted{$type} = 1;
2333 push(our @report, $output);
2342 sub fixup_current_range {
2343 my ($lineRef, $offset, $length) = @_;
2345 if ($$lineRef =~ /^\@\@ -\d+,\d+ \+(\d+),(\d+) \@\@/) {
2348 my $no = $o + $offset;
2349 my $nl = $l + $length;
2350 $$lineRef =~ s/\+$o,$l \@\@/\+$no,$nl \@\@/;
2354 sub fix_inserted_deleted_lines {
2355 my ($linesRef, $insertedRef, $deletedRef) = @_;
2357 my $range_last_linenr = 0;
2358 my $delta_offset = 0;
2363 my $next_insert = 0;
2364 my $next_delete = 0;
2368 my $inserted = @{$insertedRef}[$next_insert++];
2369 my $deleted = @{$deletedRef}[$next_delete++];
2371 foreach my $old_line (@{$linesRef}) {
2373 my $line = $old_line; #don't modify the array
2374 if ($line =~ /^(?:\+\+\+|\-\-\-)\s+\S+/) { #new filename
2376 } elsif ($line =~ /^\@\@ -\d+,\d+ \+\d+,\d+ \@\@/) { #new hunk
2377 $range_last_linenr = $new_linenr;
2378 fixup_current_range(\$line, $delta_offset, 0);
2381 while (defined($deleted) && ${$deleted}{'LINENR'} == $old_linenr) {
2382 $deleted = @{$deletedRef}[$next_delete++];
2384 fixup_current_range(\$lines[$range_last_linenr], $delta_offset--, -1);
2387 while (defined($inserted) && ${$inserted}{'LINENR'} == $old_linenr) {
2388 push(@lines, ${$inserted}{'LINE'});
2389 $inserted = @{$insertedRef}[$next_insert++];
2391 fixup_current_range(\$lines[$range_last_linenr], $delta_offset++, 1);
2395 push(@lines, $line);
2405 sub fix_insert_line {
2406 my ($linenr, $line) = @_;
2412 push(@fixed_inserted, $inserted);
2415 sub fix_delete_line {
2416 my ($linenr, $line) = @_;
2423 push(@fixed_deleted, $deleted);
2427 my ($type, $msg) = @_;
2429 if (report("ERROR", $type, $msg)) {
2437 my ($type, $msg) = @_;
2439 if (report("WARNING", $type, $msg)) {
2447 my ($type, $msg) = @_;
2449 if ($check && report("CHECK", $type, $msg)) {
2457 sub check_absolute_file {
2458 my ($absolute, $herecurr) = @_;
2459 my $file = $absolute;
2461 ##print "absolute<$absolute>\n";
2463 # See if any suffix of this path is a path within the tree.
2464 while ($file =~ s@^[^/]*/@@) {
2465 if (-f "$root/$file") {
2466 ##print "file<$file>\n";
2474 # It is, so see if the prefix is acceptable.
2475 my $prefix = $absolute;
2476 substr($prefix, -length($file)) = '';
2478 ##print "prefix<$prefix>\n";
2479 if ($prefix ne ".../") {
2480 WARN("USE_RELATIVE_PATH",
2481 "use relative pathname instead of absolute in changelog text\n" . $herecurr);
2488 $string =~ s/^\s+|\s+$//g;
2496 $string =~ s/^\s+//;
2504 $string =~ s/\s+$//;
2509 sub string_find_replace {
2510 my ($string, $find, $replace) = @_;
2512 $string =~ s/$find/$replace/g;
2520 my $source_indent = $tabsize;
2521 my $max_spaces_before_tab = $source_indent - 1;
2522 my $spaces_to_tab = " " x $source_indent;
2524 #convert leading spaces to tabs
2525 1 while $leading =~ s@^([\t]*)$spaces_to_tab@$1\t@g;
2526 #Remove spaces before a tab
2527 1 while $leading =~ s@^([\t]*)( {1,$max_spaces_before_tab})\t@$1\t@g;
2532 sub pos_last_openparen {
2537 my $opens = $line =~ tr/\(/\(/;
2538 my $closes = $line =~ tr/\)/\)/;
2540 my $last_openparen = 0;
2542 if (($opens == 0) || ($closes >= $opens)) {
2546 my $len = length($line);
2548 for ($pos = 0; $pos < $len; $pos++) {
2549 my $string = substr($line, $pos);
2550 if ($string =~ /^($FuncArg|$balanced_parens)/) {
2551 $pos += length($1) - 1;
2552 } elsif (substr($line, $pos, 1) eq '(') {
2553 $last_openparen = $pos;
2554 } elsif (index($string, '(') == -1) {
2559 return length(expand_tabs(substr($line, 0, $last_openparen))) + 1;
2562 sub get_raw_comment {
2563 my ($line, $rawline) = @_;
2566 for my $i (0 .. (length($line) - 1)) {
2567 if (substr($line, $i, 1) eq "$;") {
2568 $comment .= substr($rawline, $i, 1);
2575 sub exclude_global_initialisers {
2576 my ($realfile) = @_;
2578 # Do not check for BPF programs (tools/testing/selftests/bpf/progs/*.c, samples/bpf/*_kern.c, *.bpf.c).
2579 return $realfile =~ m@^tools/testing/selftests/bpf/progs/.*\.c$@ ||
2580 $realfile =~ m@^samples/bpf/.*_kern\.c$@ ||
2581 $realfile =~ m@/bpf/.*\.bpf\.c$@;
2585 my $filename = shift;
2591 my $stashrawline="";
2601 my $authorsignoff = 0;
2602 my $author_sob = '';
2604 my $is_binding_patch = -1;
2605 my $in_header_lines = $file ? 0 : 1;
2606 my $in_commit_log = 0; #Scanning lines before patch
2607 my $has_patch_separator = 0; #Found a --- line
2608 my $has_commit_log = 0; #Encountered lines before patch
2609 my $commit_log_lines = 0; #Number of commit log lines
2610 my $commit_log_possible_stack_dump = 0;
2611 my $commit_log_long_line = 0;
2612 my $commit_log_has_diff = 0;
2613 my $reported_maintainer_file = 0;
2614 my $non_utf8_charset = 0;
2616 my $last_git_commit_id_linenr = -1;
2618 my $last_blank_line = 0;
2619 my $last_coalesced_string_linenr = -1;
2627 # Trace the real file/line as we go.
2632 my $context_function; #undef'd unless there's a known function
2634 my $comment_edge = 0;
2638 my $prev_values = 'E';
2641 my %suppress_ifbraces;
2642 my %suppress_whiletrailers;
2643 my %suppress_export;
2644 my $suppress_statement = 0;
2646 my %signatures = ();
2648 # Pre-scan the patch sanitizing the lines.
2649 # Pre-scan the patch looking for any __setup documentation.
2651 my @setup_docs = ();
2654 my $camelcase_file_seeded = 0;
2656 my $checklicenseline = 1;
2658 sanitise_line_reset();
2660 foreach my $rawline (@rawlines) {
2664 push(@fixed, $rawline) if ($fix);
2666 if ($rawline=~/^\+\+\+\s+(\S+)/) {
2668 if ($1 =~ m@Documentation/admin-guide/kernel-parameters.txt$@) {
2673 if ($rawline =~ /^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
2682 # Guestimate if this is a continuing comment. Run
2683 # the context looking for a comment "edge". If this
2684 # edge is a close comment then we must be in a comment
2688 for (my $ln = $linenr + 1; $cnt > 0; $ln++) {
2689 next if (defined $rawlines[$ln - 1] &&
2690 $rawlines[$ln - 1] =~ /^-/);
2692 #print "RAW<$rawlines[$ln - 1]>\n";
2693 last if (!defined $rawlines[$ln - 1]);
2694 if ($rawlines[$ln - 1] =~ m@(/\*|\*/)@ &&
2695 $rawlines[$ln - 1] !~ m@"[^"]*(?:/\*|\*/)[^"]*"@) {
2700 if (defined $edge && $edge eq '*/') {
2704 # Guestimate if this is a continuing comment. If this
2705 # is the start of a diff block and this line starts
2706 # ' *' then it is very likely a comment.
2707 if (!defined $edge &&
2708 $rawlines[$linenr] =~ m@^.\s*(?:\*\*+| \*)(?:\s|$)@)
2713 ##print "COMMENT:$in_comment edge<$edge> $rawline\n";
2714 sanitise_line_reset($in_comment);
2716 } elsif ($realcnt && $rawline =~ /^(?:\+| |$)/) {
2717 # Standardise the strings and chars within the input to
2718 # simplify matching -- only bother with positive lines.
2719 $line = sanitise_line($rawline);
2721 push(@lines, $line);
2724 $realcnt-- if ($line =~ /^(?:\+| |$)/);
2729 #print "==>$rawline\n";
2730 #print "-->$line\n";
2732 if ($setup_docs && $line =~ /^\+/) {
2733 push(@setup_docs, $line);
2742 foreach my $line (@lines) {
2745 my $sline = $line; #copy of $line
2746 $sline =~ s/$;/ /g; #with comments as spaces
2748 my $rawline = $rawlines[$linenr - 1];
2749 my $raw_comment = get_raw_comment($line, $rawline);
2751 # check if it's a mode change, rename or start of a patch
2752 if (!$in_commit_log &&
2753 ($line =~ /^ mode change [0-7]+ => [0-7]+ \S+\s*$/ ||
2754 ($line =~ /^rename (?:from|to) \S+\s*$/ ||
2755 $line =~ /^diff --git a\/[\w\/\.\_\-]+ b\/\S+\s*$/))) {
2759 #extract the line range in the file after the patch is applied
2760 if (!$in_commit_log &&
2761 $line =~ /^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@(.*)/) {
2764 $first_line = $linenr + 1;
2774 %suppress_ifbraces = ();
2775 %suppress_whiletrailers = ();
2776 %suppress_export = ();
2777 $suppress_statement = 0;
2778 if ($context =~ /\b(\w+)\s*\(/) {
2779 $context_function = $1;
2781 undef $context_function;
2785 # track the line number as we move through the hunk, note that
2786 # new versions of GNU diff omit the leading space on completely
2787 # blank context lines so we need to count that too.
2788 } elsif ($line =~ /^( |\+|$)/) {
2790 $realcnt-- if ($realcnt != 0);
2792 # Measure the line length and indent.
2793 ($length, $indent) = line_stats($rawline);
2795 # Track the previous line.
2796 ($prevline, $stashline) = ($stashline, $line);
2797 ($previndent, $stashindent) = ($stashindent, $indent);
2798 ($prevrawline, $stashrawline) = ($stashrawline, $rawline);
2800 #warn "line<$line>\n";
2802 } elsif ($realcnt == 1) {
2806 my $hunk_line = ($realcnt != 0);
2808 $here = "#$linenr: " if (!$file);
2809 $here = "#$realline: " if ($file);
2812 # extract the filename as it passes
2813 if ($line =~ /^diff --git.*?(\S+)$/) {
2815 $realfile =~ s@^([^/]*)/@@ if (!$file);
2818 } elsif ($line =~ /^\+\+\+\s+(\S+)/) {
2820 $realfile =~ s@^([^/]*)/@@ if (!$file);
2824 if (!$file && $tree && $p1_prefix ne '' &&
2825 -e "$root/$p1_prefix") {
2826 WARN("PATCH_PREFIX",
2827 "patch prefix '$p1_prefix' exists, appears to be a -p0 patch\n");
2830 if ($realfile =~ m@^include/asm/@) {
2831 ERROR("MODIFIED_INCLUDE_ASM",
2832 "do not modify files in include/asm, change architecture specific files in include/asm-<architecture>\n" . "$here$rawline\n");
2837 #make up the handle for any error we report on this line
2839 $prefix = "$realfile:$realline: "
2842 $prefix = "$filename:$realline: ";
2844 $prefix = "$filename:$linenr: ";
2849 if (is_maintained_obsolete($realfile)) {
2851 "$realfile is marked as 'obsolete' in the MAINTAINERS hierarchy. No unnecessary modifications please.\n");
2853 if ($realfile =~ m@^(?:drivers/net/|net/|drivers/staging/)@) {
2856 $check = $check_orig;
2858 $checklicenseline = 1;
2860 if ($realfile !~ /^MAINTAINERS/) {
2861 my $last_binding_patch = $is_binding_patch;
2863 $is_binding_patch = () = $realfile =~ m@^(?:Documentation/devicetree/|include/dt-bindings/)@;
2865 if (($last_binding_patch != -1) &&
2866 ($last_binding_patch ^ $is_binding_patch)) {
2867 WARN("DT_SPLIT_BINDING_PATCH",
2868 "DT binding docs and includes should be a separate patch. See: Documentation/devicetree/bindings/submitting-patches.rst\n");
2875 $here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
2877 my $hereline = "$here\n$rawline\n";
2878 my $herecurr = "$here\n$rawline\n";
2879 my $hereprev = "$here\n$prevrawline\n$rawline\n";
2881 $cnt_lines++ if ($realcnt != 0);
2883 # Verify the existence of a commit log if appropriate
2884 # 2 is used because a $signature is counted in $commit_log_lines
2885 if ($in_commit_log) {
2886 if ($line !~ /^\s*$/) {
2887 $commit_log_lines++; #could be a $signature
2889 } elsif ($has_commit_log && $commit_log_lines < 2) {
2890 WARN("COMMIT_MESSAGE",
2891 "Missing commit description - Add an appropriate one\n");
2892 $commit_log_lines = 2; #warn only once
2895 # Check if the commit log has what seems like a diff which can confuse patch
2896 if ($in_commit_log && !$commit_log_has_diff &&
2897 (($line =~ m@^\s+diff\b.*a/([\w/]+)@ &&
2898 $line =~ m@^\s+diff\b.*a/[\w/]+\s+b/$1\b@) ||
2899 $line =~ m@^\s*(?:\-\-\-\s+a/|\+\+\+\s+b/)@ ||
2900 $line =~ m/^\s*\@\@ \-\d+,\d+ \+\d+,\d+ \@\@/)) {
2901 ERROR("DIFF_IN_COMMIT_MSG",
2902 "Avoid using diff content in the commit message - patch(1) might not work\n" . $herecurr);
2903 $commit_log_has_diff = 1;
2906 # Check for incorrect file permissions
2907 if ($line =~ /^new (file )?mode.*[7531]\d{0,2}$/) {
2908 my $permhere = $here . "FILE: $realfile\n";
2909 if ($realfile !~ m@scripts/@ &&
2910 $realfile !~ /\.(py|pl|awk|sh)$/) {
2911 ERROR("EXECUTE_PERMISSIONS",
2912 "do not set execute permissions for source files\n" . $permhere);
2916 # Check the patch for a From:
2917 if (decode("MIME-Header", $line) =~ /^From:\s*(.*)/) {
2919 my $curline = $linenr;
2920 while(defined($rawlines[$curline]) && ($rawlines[$curline++] =~ /^[ \t]\s*(.*)/)) {
2923 $author = encode("utf8", $author) if ($line =~ /=\?utf-8\?/i);
2925 $author = reformat_email($author);
2928 # Check the patch for a signoff:
2929 if ($line =~ /^\s*signed-off-by:\s*(.*)/i) {
2932 if ($author ne '' && $authorsignoff != 1) {
2933 if (same_email_addresses($1, $author)) {
2937 my ($email_name, $email_comment, $email_address, $comment1) = parse_email($ctx);
2938 my ($author_name, $author_comment, $author_address, $comment2) = parse_email($author);
2940 if (lc $email_address eq lc $author_address && $email_name eq $author_name) {
2943 } elsif (lc $email_address eq lc $author_address) {
2946 } elsif ($email_name eq $author_name) {
2950 my $address1 = $email_address;
2951 my $address2 = $author_address;
2953 if ($address1 =~ /(\S+)\+\S+(\@.*)/) {
2956 if ($address2 =~ /(\S+)\+\S+(\@.*)/) {
2959 if ($address1 eq $address2) {
2967 # Check for patch separator
2968 if ($line =~ /^---$/) {
2969 $has_patch_separator = 1;
2973 # Check if MAINTAINERS is being updated. If so, there's probably no need to
2974 # emit the "does MAINTAINERS need updating?" message on file add/move/delete
2975 if ($line =~ /^\s*MAINTAINERS\s*\|/) {
2976 $reported_maintainer_file = 1;
2979 # Check signature styles
2980 if (!$in_header_lines &&
2981 $line =~ /^(\s*)([a-z0-9_-]+by:|$signature_tags)(\s*)(.*)/i) {
2982 my $space_before = $1;
2984 my $space_after = $3;
2986 my $ucfirst_sign_off = ucfirst(lc($sign_off));
2988 if ($sign_off !~ /$signature_tags/) {
2989 my $suggested_signature = find_standard_signature($sign_off);
2990 if ($suggested_signature eq "") {
2991 WARN("BAD_SIGN_OFF",
2992 "Non-standard signature: $sign_off\n" . $herecurr);
2994 if (WARN("BAD_SIGN_OFF",
2995 "Non-standard signature: '$sign_off' - perhaps '$suggested_signature'?\n" . $herecurr) &&
2997 $fixed[$fixlinenr] =~ s/$sign_off/$suggested_signature/;
3001 if (defined $space_before && $space_before ne "") {
3002 if (WARN("BAD_SIGN_OFF",
3003 "Do not use whitespace before $ucfirst_sign_off\n" . $herecurr) &&
3005 $fixed[$fixlinenr] =
3006 "$ucfirst_sign_off $email";
3009 if ($sign_off =~ /-by:$/i && $sign_off ne $ucfirst_sign_off) {
3010 if (WARN("BAD_SIGN_OFF",
3011 "'$ucfirst_sign_off' is the preferred signature form\n" . $herecurr) &&
3013 $fixed[$fixlinenr] =
3014 "$ucfirst_sign_off $email";
3018 if (!defined $space_after || $space_after ne " ") {
3019 if (WARN("BAD_SIGN_OFF",
3020 "Use a single space after $ucfirst_sign_off\n" . $herecurr) &&
3022 $fixed[$fixlinenr] =
3023 "$ucfirst_sign_off $email";
3027 my ($email_name, $name_comment, $email_address, $comment) = parse_email($email);
3028 my $suggested_email = format_email(($email_name, $name_comment, $email_address, $comment));
3029 if ($suggested_email eq "") {
3030 ERROR("BAD_SIGN_OFF",
3031 "Unrecognized email address: '$email'\n" . $herecurr);
3033 my $dequoted = $suggested_email;
3034 $dequoted =~ s/^"//;
3035 $dequoted =~ s/" </ </;
3036 # Don't force email to have quotes
3037 # Allow just an angle bracketed address
3038 if (!same_email_addresses($email, $suggested_email)) {
3039 if (WARN("BAD_SIGN_OFF",
3040 "email address '$email' might be better as '$suggested_email'\n" . $herecurr) &&
3042 $fixed[$fixlinenr] =~ s/\Q$email\E/$suggested_email/;
3046 # Address part shouldn't have comments
3047 my $stripped_address = $email_address;
3048 $stripped_address =~ s/\([^\(\)]*\)//g;
3049 if ($email_address ne $stripped_address) {
3050 if (WARN("BAD_SIGN_OFF",
3051 "address part of email should not have comments: '$email_address'\n" . $herecurr) &&
3053 $fixed[$fixlinenr] =~ s/\Q$email_address\E/$stripped_address/;
3057 # Only one name comment should be allowed
3058 my $comment_count = () = $name_comment =~ /\([^\)]+\)/g;
3059 if ($comment_count > 1) {
3060 WARN("BAD_SIGN_OFF",
3061 "Use a single name comment in email: '$email'\n" . $herecurr);
3065 # stable@vger.kernel.org or stable@kernel.org shouldn't
3066 # have an email name. In addition comments should strictly
3068 if ($email =~ /^.*stable\@(?:vger\.)?kernel\.org/i) {
3069 if (($comment ne "" && $comment !~ /^#.+/) ||
3070 ($email_name ne "")) {
3071 my $cur_name = $email_name;
3072 my $new_comment = $comment;
3073 $cur_name =~ s/[a-zA-Z\s\-\"]+//g;
3075 # Remove brackets enclosing comment text
3076 # and # from start of comments to get comment text
3077 $new_comment =~ s/^\((.*)\)$/$1/;
3078 $new_comment =~ s/^\[(.*)\]$/$1/;
3079 $new_comment =~ s/^[\s\#]+|\s+$//g;
3081 $new_comment = trim("$new_comment $cur_name") if ($cur_name ne $new_comment);
3082 $new_comment = " # $new_comment" if ($new_comment ne "");
3083 my $new_email = "$email_address$new_comment";
3085 if (WARN("BAD_STABLE_ADDRESS_STYLE",
3086 "Invalid email format for stable: '$email', prefer '$new_email'\n" . $herecurr) &&
3088 $fixed[$fixlinenr] =~ s/\Q$email\E/$new_email/;
3091 } elsif ($comment ne "" && $comment !~ /^(?:#.+|\(.+\))$/) {
3092 my $new_comment = $comment;
3094 # Extract comment text from within brackets or
3095 # c89 style /*...*/ comments
3096 $new_comment =~ s/^\[(.*)\]$/$1/;
3097 $new_comment =~ s/^\/\*(.*)\*\/$/$1/;
3099 $new_comment = trim($new_comment);
3100 $new_comment =~ s/^[^\w]$//; # Single lettered comment with non word character is usually a typo
3101 $new_comment = "($new_comment)" if ($new_comment ne "");
3102 my $new_email = format_email($email_name, $name_comment, $email_address, $new_comment);
3104 if (WARN("BAD_SIGN_OFF",
3105 "Unexpected content after email: '$email', should be: '$new_email'\n" . $herecurr) &&
3107 $fixed[$fixlinenr] =~ s/\Q$email\E/$new_email/;
3112 # Check for duplicate signatures
3113 my $sig_nospace = $line;
3114 $sig_nospace =~ s/\s//g;
3115 $sig_nospace = lc($sig_nospace);
3116 if (defined $signatures{$sig_nospace}) {
3117 WARN("BAD_SIGN_OFF",
3118 "Duplicate signature\n" . $herecurr);
3120 $signatures{$sig_nospace} = 1;
3123 # Check Co-developed-by: immediately followed by Signed-off-by: with same name and email
3124 if ($sign_off =~ /^co-developed-by:$/i) {
3125 if ($email eq $author) {
3126 WARN("BAD_SIGN_OFF",
3127 "Co-developed-by: should not be used to attribute nominal patch author '$author'\n" . "$here\n" . $rawline);
3129 if (!defined $lines[$linenr]) {
3130 WARN("BAD_SIGN_OFF",
3131 "Co-developed-by: must be immediately followed by Signed-off-by:\n" . "$here\n" . $rawline);
3132 } elsif ($rawlines[$linenr] !~ /^\s*signed-off-by:\s*(.*)/i) {
3133 WARN("BAD_SIGN_OFF",
3134 "Co-developed-by: must be immediately followed by Signed-off-by:\n" . "$here\n" . $rawline . "\n" .$rawlines[$linenr]);
3135 } elsif ($1 ne $email) {
3136 WARN("BAD_SIGN_OFF",
3137 "Co-developed-by and Signed-off-by: name/email do not match \n" . "$here\n" . $rawline . "\n" .$rawlines[$linenr]);
3142 # Check email subject for common tools that don't need to be mentioned
3143 if ($in_header_lines &&
3144 $line =~ /^Subject:.*\b(?:checkpatch|sparse|smatch)\b[^:]/i) {
3145 WARN("EMAIL_SUBJECT",
3146 "A patch subject line should describe the change not the tool that found it\n" . $herecurr);
3149 # Check for Gerrit Change-Ids not in any patch context
3150 if ($realfile eq '' && !$has_patch_separator && $line =~ /^\s*change-id:/i) {
3151 if (ERROR("GERRIT_CHANGE_ID",
3152 "Remove Gerrit Change-Id's before submitting upstream\n" . $herecurr) &&
3154 fix_delete_line($fixlinenr, $rawline);
3158 # Check if the commit log is in a possible stack dump
3159 if ($in_commit_log && !$commit_log_possible_stack_dump &&
3160 ($line =~ /^\s*(?:WARNING:|BUG:)/ ||
3161 $line =~ /^\s*\[\s*\d+\.\d{6,6}\s*\]/ ||
3163 $line =~ /^\s*\[\<[0-9a-fA-F]{8,}\>\]/) ||
3164 $line =~ /^(?:\s+\w+:\s+[0-9a-fA-F]+){3,3}/ ||
3165 $line =~ /^\s*\#\d+\s*\[[0-9a-fA-F]+\]\s*\w+ at [0-9a-fA-F]+/) {
3166 # stack dump address styles
3167 $commit_log_possible_stack_dump = 1;
3170 # Check for line lengths > 75 in commit log, warn once
3171 if ($in_commit_log && !$commit_log_long_line &&
3172 length($line) > 75 &&
3173 !($line =~ /^\s*[a-zA-Z0-9_\/\.]+\s+\|\s+\d+/ ||
3174 # file delta changes
3175 $line =~ /^\s*(?:[\w\.\-]+\/)++[\w\.\-]+:/ ||
3177 $line =~ /^\s*(?:Fixes:|Link:|$signature_tags)/i ||
3178 # A Fixes: or Link: line or signature tag line
3179 $commit_log_possible_stack_dump)) {
3180 WARN("COMMIT_LOG_LONG_LINE",
3181 "Possible unwrapped commit description (prefer a maximum 75 chars per line)\n" . $herecurr);
3182 $commit_log_long_line = 1;
3185 # Reset possible stack dump if a blank line is found
3186 if ($in_commit_log && $commit_log_possible_stack_dump &&
3188 $commit_log_possible_stack_dump = 0;
3191 # Check for lines starting with a #
3192 if ($in_commit_log && $line =~ /^#/) {
3193 if (WARN("COMMIT_COMMENT_SYMBOL",
3194 "Commit log lines starting with '#' are dropped by git as comments\n" . $herecurr) &&
3196 $fixed[$fixlinenr] =~ s/^/ /;
3200 # Check for git id commit length and improperly formed commit descriptions
3201 # A correctly formed commit description is:
3202 # commit <SHA-1 hash length 12+ chars> ("Complete commit subject")
3203 # with the commit subject '("' prefix and '")' suffix
3204 # This is a fairly compilicated block as it tests for what appears to be
3205 # bare SHA-1 hash with minimum length of 5. It also avoids several types of
3206 # possible SHA-1 matches.
3207 # A commit match can span multiple lines so this block attempts to find a
3208 # complete typical commit on a maximum of 3 lines
3209 if ($perl_version_ok &&
3210 $in_commit_log && !$commit_log_possible_stack_dump &&
3211 $line !~ /^\s*(?:Link|Patchwork|http|https|BugLink|base-commit):/i &&
3212 $line !~ /^This reverts commit [0-9a-f]{7,40}/ &&
3213 (($line =~ /\bcommit\s+[0-9a-f]{5,}\b/i ||
3214 ($line =~ /\bcommit\s*$/i && defined($rawlines[$linenr]) && $rawlines[$linenr] =~ /^\s*[0-9a-f]{5,}\b/i)) ||
3215 ($line =~ /(?:\s|^)[0-9a-f]{12,40}(?:[\s"'\(\[]|$)/i &&
3216 $line !~ /[\<\[][0-9a-f]{12,40}[\>\]]/i &&
3217 $line !~ /\bfixes:\s*[0-9a-f]{12,40}/i))) {
3218 my $init_char = "c";
3219 my $orig_commit = "";
3224 my $id = '0123456789ab';
3225 my $orig_desc = "commit description";
3226 my $description = "";
3227 my $herectx = $herecurr;
3232 if ($line =~ /(?:\bcommit\s+[0-9a-f]{5,}|\bcommit\s*$)/i) {
3233 for (my $n = 0; $n < 2; $n++) {
3234 if ($input =~ /\bcommit\s+[0-9a-f]{5,}\s*($balanced_parens)/i) {
3237 # Always strip leading/trailing parens then double quotes if existing
3238 $orig_desc = substr($orig_desc, 1, -1);
3239 if ($orig_desc =~ /^".*"$/) {
3240 $orig_desc = substr($orig_desc, 1, -1);
3245 last if ($#lines < $linenr + $n);
3246 $input .= " " . trim($rawlines[$linenr + $n]);
3247 $herectx .= "$rawlines[$linenr + $n]\n";
3249 $herectx = $herecurr if (!$has_parens);
3252 if ($input =~ /\b(c)ommit\s+([0-9a-f]{5,})\b/i) {
3254 $orig_commit = lc($2);
3255 $short = 0 if ($input =~ /\bcommit\s+[0-9a-f]{12,40}/i);
3256 $long = 1 if ($input =~ /\bcommit\s+[0-9a-f]{41,}/i);
3257 $space = 0 if ($input =~ /\bcommit [0-9a-f]/i);
3258 $case = 0 if ($input =~ /\b[Cc]ommit\s+[0-9a-f]{5,40}[^A-F]/);
3259 } elsif ($input =~ /\b([0-9a-f]{12,40})\b/i) {
3260 $orig_commit = lc($1);
3263 ($id, $description) = git_commit_info($orig_commit,
3267 ($short || $long || $space || $case || ($orig_desc ne $description) || !$has_quotes) &&
3268 $last_git_commit_id_linenr != $linenr - 1) {
3269 ERROR("GIT_COMMIT_ID",
3270 "Please use git commit description style 'commit <12+ chars of sha1> (\"<title line>\")' - ie: '${init_char}ommit $id (\"$description\")'\n" . $herectx);
3272 #don't report the next line if this line ends in commit and the sha1 hash is the next line
3273 $last_git_commit_id_linenr = $linenr if ($line =~ /\bcommit\s*$/i);
3276 # Check for added, moved or deleted files
3277 if (!$reported_maintainer_file && !$in_commit_log &&
3278 ($line =~ /^(?:new|deleted) file mode\s*\d+\s*$/ ||
3279 $line =~ /^rename (?:from|to) [\w\/\.\-]+\s*$/ ||
3280 ($line =~ /\{\s*([\w\/\.\-]*)\s*\=\>\s*([\w\/\.\-]*)\s*\}/ &&
3281 (defined($1) || defined($2))))) {
3283 $reported_maintainer_file = 1;
3284 WARN("FILE_PATH_CHANGES",
3285 "added, moved or deleted file(s), does MAINTAINERS need updating?\n" . $herecurr);
3288 # Check for adding new DT bindings not in schema format
3289 if (!$in_commit_log &&
3290 ($line =~ /^new file mode\s*\d+\s*$/) &&
3291 ($realfile =~ m@^Documentation/devicetree/bindings/.*\.txt$@)) {
3292 WARN("DT_SCHEMA_BINDING_PATCH",
3293 "DT bindings should be in DT schema format. See: Documentation/devicetree/bindings/writing-schema.rst\n");
3296 # Check for wrappage within a valid hunk of the file
3297 if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) {
3298 ERROR("CORRUPTED_PATCH",
3299 "patch seems to be corrupt (line wrapped?)\n" .
3300 $herecurr) if (!$emitted_corrupt++);
3303 # UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
3304 if (($realfile =~ /^$/ || $line =~ /^\+/) &&
3305 $rawline !~ m/^$UTF8*$/) {
3306 my ($utf8_prefix) = ($rawline =~ /^($UTF8*)/);
3308 my $blank = copy_spacing($rawline);
3309 my $ptr = substr($blank, 0, length($utf8_prefix)) . "^";
3310 my $hereptr = "$hereline$ptr\n";
3313 "Invalid UTF-8, patch and commit message should be encoded in UTF-8\n" . $hereptr);
3316 # Check if it's the start of a commit log
3317 # (not a header line and we haven't seen the patch filename)
3318 if ($in_header_lines && $realfile =~ /^$/ &&
3319 !($rawline =~ /^\s+(?:\S|$)/ ||
3320 $rawline =~ /^(?:commit\b|from\b|[\w-]+:)/i)) {
3321 $in_header_lines = 0;
3323 $has_commit_log = 1;
3326 # Check if there is UTF-8 in a commit log when a mail header has explicitly
3327 # declined it, i.e defined some charset where it is missing.
3328 if ($in_header_lines &&
3329 $rawline =~ /^Content-Type:.+charset="(.+)".*$/ &&
3331 $non_utf8_charset = 1;
3334 if ($in_commit_log && $non_utf8_charset && $realfile =~ /^$/ &&
3335 $rawline =~ /$NON_ASCII_UTF8/) {
3336 WARN("UTF8_BEFORE_PATCH",
3337 "8-bit UTF-8 used in possible commit log\n" . $herecurr);
3340 # Check for absolute kernel paths in commit message
3341 if ($tree && $in_commit_log) {
3342 while ($line =~ m{(?:^|\s)(/\S*)}g) {
3345 if ($file =~ m{^(.*?)(?::\d+)+:?$} &&
3346 check_absolute_file($1, $herecurr)) {
3349 check_absolute_file($file, $herecurr);
3354 # Check for various typo / spelling mistakes
3355 if (defined($misspellings) &&
3356 ($in_commit_log || $line =~ /^(?:\+|Subject:)/i)) {
3357 while ($rawline =~ /(?:^|[^\w\-'`])($misspellings)(?:[^\w\-'`]|$)/gi) {
3359 my $blank = copy_spacing($rawline);
3360 my $ptr = substr($blank, 0, $-[1]) . "^" x length($typo);
3361 my $hereptr = "$hereline$ptr\n";
3362 my $typo_fix = $spelling_fix{lc($typo)};
3363 $typo_fix = ucfirst($typo_fix) if ($typo =~ /^[A-Z]/);
3364 $typo_fix = uc($typo_fix) if ($typo =~ /^[A-Z]+$/);
3365 my $msg_level = \&WARN;
3366 $msg_level = \&CHK if ($file);
3367 if (&{$msg_level}("TYPO_SPELLING",
3368 "'$typo' may be misspelled - perhaps '$typo_fix'?\n" . $hereptr) &&
3370 $fixed[$fixlinenr] =~ s/(^|[^A-Za-z@])($typo)($|[^A-Za-z@])/$1$typo_fix$3/;
3375 # check for invalid commit id
3376 if ($in_commit_log && $line =~ /(^fixes:|\bcommit)\s+([0-9a-f]{6,40})\b/i) {
3379 ($id, $description) = git_commit_info($2, undef, undef);
3380 if (!defined($id)) {
3381 WARN("UNKNOWN_COMMIT_ID",
3382 "Unknown commit id '$2', maybe rebased or not pulled?\n" . $herecurr);
3386 # check for repeated words separated by a single space
3387 # avoid false positive from list command eg, '-rw-r--r-- 1 root root'
3388 if (($rawline =~ /^\+/ || $in_commit_log) &&
3389 $rawline !~ /[bcCdDlMnpPs\?-][rwxsStT-]{9}/) {
3390 pos($rawline) = 1 if (!$in_commit_log);
3391 while ($rawline =~ /\b($word_pattern) (?=($word_pattern))/g) {
3395 my $start_pos = $-[1];
3396 my $end_pos = $+[2];
3397 if ($first =~ /(?:struct|union|enum)/) {
3398 pos($rawline) += length($first) + length($second) + 1;
3402 next if (lc($first) ne lc($second));
3403 next if ($first eq 'long');
3405 # check for character before and after the word matches
3406 my $start_char = '';
3408 $start_char = substr($rawline, $start_pos - 1, 1) if ($start_pos > ($in_commit_log ? 0 : 1));
3409 $end_char = substr($rawline, $end_pos, 1) if ($end_pos < length($rawline));
3411 next if ($start_char =~ /^\S$/);
3412 next if (index(" \t.,;?!", $end_char) == -1);
3414 # avoid repeating hex occurrences like 'ff ff fe 09 ...'
3415 if ($first =~ /\b[0-9a-f]{2,}\b/i) {
3416 next if (!exists($allow_repeated_words{lc($first)}));
3419 if (WARN("REPEATED_WORD",
3420 "Possible repeated word: '$first'\n" . $herecurr) &&
3422 $fixed[$fixlinenr] =~ s/\b$first $second\b/$first/;
3426 # if it's a repeated word on consecutive lines in a comment block
3427 if ($prevline =~ /$;+\s*$/ &&
3428 $prevrawline =~ /($word_pattern)\s*$/) {
3430 if ($rawline =~ /^\+\s*\*\s*$last_word /) {
3431 if (WARN("REPEATED_WORD",
3432 "Possible repeated word: '$last_word'\n" . $hereprev) &&
3434 $fixed[$fixlinenr] =~ s/(\+\s*\*\s*)$last_word /$1/;
3440 # ignore non-hunk lines and lines being removed
3441 next if (!$hunk_line || $line =~ /^-/);
3443 #trailing whitespace
3444 if ($line =~ /^\+.*\015/) {
3445 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
3446 if (ERROR("DOS_LINE_ENDINGS",
3447 "DOS line endings\n" . $herevet) &&
3449 $fixed[$fixlinenr] =~ s/[\s\015]+$//;
3451 } elsif ($rawline =~ /^\+.*\S\s+$/ || $rawline =~ /^\+\s+$/) {
3452 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
3453 if (ERROR("TRAILING_WHITESPACE",
3454 "trailing whitespace\n" . $herevet) &&
3456 $fixed[$fixlinenr] =~ s/\s+$//;
3462 # Check for FSF mailing addresses.
3463 if ($rawline =~ /\bwrite to the Free/i ||
3464 $rawline =~ /\b675\s+Mass\s+Ave/i ||
3465 $rawline =~ /\b59\s+Temple\s+Pl/i ||
3466 $rawline =~ /\b51\s+Franklin\s+St/i) {
3467 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
3468 my $msg_level = \&ERROR;
3469 $msg_level = \&CHK if ($file);
3470 &{$msg_level}("FSF_MAILING_ADDRESS",
3471 "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)
3474 # check for Kconfig help text having a real description
3475 # Only applies when adding the entry originally, after that we do not have
3476 # sufficient context to determine whether it is indeed long enough.
3477 if ($realfile =~ /Kconfig/ &&
3478 # 'choice' is usually the last thing on the line (though
3479 # Kconfig supports named choices), so use a word boundary
3480 # (\b) rather than a whitespace character (\s)
3481 $line =~ /^\+\s*(?:config|menuconfig|choice)\b/) {
3484 my $ln = $linenr + 1;
3488 for (; $cnt > 0 && defined $lines[$ln - 1]; $ln++) {
3489 $f = $lines[$ln - 1];
3490 $cnt-- if ($lines[$ln - 1] !~ /^-/);
3491 $is_end = $lines[$ln - 1] =~ /^\+/;
3493 next if ($f =~ /^-/);
3494 last if (!$file && $f =~ /^\@\@/);
3496 if ($lines[$ln - 1] =~ /^\+\s*(?:bool|tristate|prompt)\s*["']/) {
3498 } elsif ($lines[$ln - 1] =~ /^\+\s*(?:---)?help(?:---)?$/) {
3505 next if ($f =~ /^$/);
3507 # This only checks context lines in the patch
3508 # and so hopefully shouldn't trigger false
3509 # positives, even though some of these are
3510 # common words in help texts
3511 if ($f =~ /^\s*(?:config|menuconfig|choice|endchoice|
3512 if|endif|menu|endmenu|source)\b/x) {
3518 if ($is_start && $is_end && $length < $min_conf_desc_length) {
3519 WARN("CONFIG_DESCRIPTION",
3520 "please write a paragraph that describes the config symbol fully\n" . $herecurr);
3522 #print "is_start<$is_start> is_end<$is_end> length<$length>\n";
3525 # check MAINTAINERS entries
3526 if ($realfile =~ /^MAINTAINERS$/) {
3527 # check MAINTAINERS entries for the right form
3528 if ($rawline =~ /^\+[A-Z]:/ &&
3529 $rawline !~ /^\+[A-Z]:\t\S/) {
3530 if (WARN("MAINTAINERS_STYLE",
3531 "MAINTAINERS entries use one tab after TYPE:\n" . $herecurr) &&
3533 $fixed[$fixlinenr] =~ s/^(\+[A-Z]):\s*/$1:\t/;
3536 # check MAINTAINERS entries for the right ordering too
3537 my $preferred_order = 'MRLSWQBCPTFXNK';
3538 if ($rawline =~ /^\+[A-Z]:/ &&
3539 $prevrawline =~ /^[\+ ][A-Z]:/) {
3540 $rawline =~ /^\+([A-Z]):\s*(.*)/;
3543 $prevrawline =~ /^[\+ ]([A-Z]):\s*(.*)/;
3546 my $curindex = index($preferred_order, $cur);
3547 my $previndex = index($preferred_order, $prev);
3548 if ($curindex < 0) {
3549 WARN("MAINTAINERS_STYLE",
3550 "Unknown MAINTAINERS entry type: '$cur'\n" . $herecurr);
3552 if ($previndex >= 0 && $curindex < $previndex) {
3553 WARN("MAINTAINERS_STYLE",
3554 "Misordered MAINTAINERS entry - list '$cur:' before '$prev:'\n" . $hereprev);
3555 } elsif ((($prev eq 'F' && $cur eq 'F') ||
3556 ($prev eq 'X' && $cur eq 'X')) &&
3557 ($prevval cmp $curval) > 0) {
3558 WARN("MAINTAINERS_STYLE",
3559 "Misordered MAINTAINERS entry - list file patterns in alphabetic order\n" . $hereprev);
3565 if (($realfile =~ /Makefile.*/ || $realfile =~ /Kbuild.*/) &&
3566 ($line =~ /\+(EXTRA_[A-Z]+FLAGS).*/)) {
3569 'EXTRA_AFLAGS' => 'asflags-y',
3570 'EXTRA_CFLAGS' => 'ccflags-y',
3571 'EXTRA_CPPFLAGS' => 'cppflags-y',
3572 'EXTRA_LDFLAGS' => 'ldflags-y',
3575 WARN("DEPRECATED_VARIABLE",
3576 "Use of $flag is deprecated, please use \`$replacement->{$flag} instead.\n" . $herecurr) if ($replacement->{$flag});
3579 # check for DT compatible documentation
3580 if (defined $root &&
3581 (($realfile =~ /\.dtsi?$/ && $line =~ /^\+\s*compatible\s*=\s*\"/) ||
3582 ($realfile =~ /\.[ch]$/ && $line =~ /^\+.*\.compatible\s*=\s*\"/))) {
3584 my @compats = $rawline =~ /\"([a-zA-Z0-9\-\,\.\+_]+)\"/g;
3586 my $dt_path = $root . "/Documentation/devicetree/bindings/";
3587 my $vp_file = $dt_path . "vendor-prefixes.yaml";
3589 foreach my $compat (@compats) {
3590 my $compat2 = $compat;
3591 $compat2 =~ s/\,[a-zA-Z0-9]*\-/\,<\.\*>\-/;
3592 my $compat3 = $compat;
3593 $compat3 =~ s/\,([a-z]*)[0-9]*\-/\,$1<\.\*>\-/;
3594 `grep -Erq "$compat|$compat2|$compat3" $dt_path`;
3596 WARN("UNDOCUMENTED_DT_STRING",
3597 "DT compatible string \"$compat\" appears un-documented -- check $dt_path\n" . $herecurr);
3600 next if $compat !~ /^([a-zA-Z0-9\-]+)\,/;
3602 `grep -Eq "\\"\\^\Q$vendor\E,\\.\\*\\":" $vp_file`;
3604 WARN("UNDOCUMENTED_DT_STRING",
3605 "DT compatible string vendor \"$vendor\" appears un-documented -- check $vp_file\n" . $herecurr);
3610 # check for using SPDX license tag at beginning of files
3611 if ($realline == $checklicenseline) {
3612 if ($rawline =~ /^[ \+]\s*\#\!\s*\//) {
3613 $checklicenseline = 2;
3614 } elsif ($rawline =~ /^\+/) {
3616 if ($realfile =~ /\.(h|s|S)$/) {
3618 } elsif ($realfile =~ /\.(c|dts|dtsi)$/) {
3620 } elsif (($checklicenseline == 2) || $realfile =~ /\.(sh|pl|py|awk|tc|yaml)$/) {
3622 } elsif ($realfile =~ /\.rst$/) {
3626 # check SPDX comment style for .[chsS] files
3627 if ($realfile =~ /\.[chsS]$/ &&
3628 $rawline =~ /SPDX-License-Identifier:/ &&
3629 $rawline !~ m@^\+\s*\Q$comment\E\s*@) {
3630 WARN("SPDX_LICENSE_TAG",
3631 "Improper SPDX comment style for '$realfile', please use '$comment' instead\n" . $herecurr);
3634 if ($comment !~ /^$/ &&
3635 $rawline !~ m@^\+\Q$comment\E SPDX-License-Identifier: @) {
3636 WARN("SPDX_LICENSE_TAG",
3637 "Missing or malformed SPDX-License-Identifier tag in line $checklicenseline\n" . $herecurr);
3638 } elsif ($rawline =~ /(SPDX-License-Identifier: .*)/) {
3639 my $spdx_license = $1;
3640 if (!is_SPDX_License_valid($spdx_license)) {
3641 WARN("SPDX_LICENSE_TAG",
3642 "'$spdx_license' is not supported in LICENSES/...\n" . $herecurr);
3644 if ($realfile =~ m@^Documentation/devicetree/bindings/@ &&
3645 not $spdx_license =~ /GPL-2\.0.*BSD-2-Clause/) {
3646 my $msg_level = \&WARN;
3647 $msg_level = \&CHK if ($file);
3648 if (&{$msg_level}("SPDX_LICENSE_TAG",
3650 "DT binding documents should be licensed (GPL-2.0-only OR BSD-2-Clause)\n" . $herecurr) &&
3652 $fixed[$fixlinenr] =~ s/SPDX-License-Identifier: .*/SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)/;
3659 # check for embedded filenames
3660 if ($rawline =~ /^\+.*\Q$realfile\E/) {
3661 WARN("EMBEDDED_FILENAME",
3662 "It's generally not useful to have the filename in the file\n" . $herecurr);
3665 # check we are in a valid source file if not then ignore this hunk
3666 next if ($realfile !~ /\.(h|c|s|S|sh|dtsi|dts)$/);
3668 # check for using SPDX-License-Identifier on the wrong line number
3669 if ($realline != $checklicenseline &&
3670 $rawline =~ /\bSPDX-License-Identifier:/ &&
3671 substr($line, @-, @+ - @-) eq "$;" x (@+ - @-)) {
3672 WARN("SPDX_LICENSE_TAG",
3673 "Misplaced SPDX-License-Identifier tag - use line $checklicenseline instead\n" . $herecurr);
3676 # line length limit (with some exclusions)
3678 # There are a few types of lines that may extend beyond $max_line_length:
3679 # logging functions like pr_info that end in a string
3680 # lines with a single string
3681 # #defines that are a single string
3682 # lines with an RFC3986 like URL
3684 # There are 3 different line length message types:
3685 # LONG_LINE_COMMENT a comment starts before but extends beyond $max_line_length
3686 # LONG_LINE_STRING a string starts before but extends beyond $max_line_length
3687 # LONG_LINE all other lines longer than $max_line_length
3689 # if LONG_LINE is ignored, the other 2 types are also ignored
3692 if ($line =~ /^\+/ && $length > $max_line_length) {
3693 my $msg_type = "LONG_LINE";
3695 # Check the allowed long line types first
3697 # logging functions that end in a string that starts
3698 # before $max_line_length
3699 if ($line =~ /^\+\s*$logFunctions\s*\(\s*(?:(?:KERN_\S+\s*|[^"]*))?($String\s*(?:|,|\)\s*;)\s*)$/ &&
3700 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3703 # lines with only strings (w/ possible termination)
3704 # #defines with only strings
3705 } elsif ($line =~ /^\+\s*$String\s*(?:\s*|,|\)\s*;)\s*$/ ||
3706 $line =~ /^\+\s*#\s*define\s+\w+\s+$String$/) {
3709 # More special cases
3710 } elsif ($line =~ /^\+.*\bEFI_GUID\s*\(/ ||
3711 $line =~ /^\+\s*(?:\w+)?\s*DEFINE_PER_CPU/) {
3714 # URL ($rawline is used in case the URL is in a comment)
3715 } elsif ($rawline =~ /^\+.*\b[a-z][\w\.\+\-]*:\/\/\S+/i) {
3718 # Otherwise set the alternate message types
3720 # a comment starts before $max_line_length
3721 } elsif ($line =~ /($;[\s$;]*)$/ &&
3722 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3723 $msg_type = "LONG_LINE_COMMENT"
3725 # a quoted string starts before $max_line_length
3726 } elsif ($sline =~ /\s*($String(?:\s*(?:\\|,\s*|\)\s*;\s*))?)$/ &&
3727 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3728 $msg_type = "LONG_LINE_STRING"
3731 if ($msg_type ne "" &&
3732 (show_type("LONG_LINE") || show_type($msg_type))) {
3733 my $msg_level = \&WARN;
3734 $msg_level = \&CHK if ($file);
3735 &{$msg_level}($msg_type,
3736 "line length of $length exceeds $max_line_length columns\n" . $herecurr);
3740 # check for adding lines without a newline.
3741 if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
3742 if (WARN("MISSING_EOF_NEWLINE",
3743 "adding a line without newline at end of file\n" . $herecurr) &&
3745 fix_delete_line($fixlinenr+1, "No newline at end of file");
3749 # check for .L prefix local symbols in .S files
3750 if ($realfile =~ /\.S$/ &&
3751 $line =~ /^\+\s*(?:[A-Z]+_)?SYM_[A-Z]+_(?:START|END)(?:_[A-Z_]+)?\s*\(\s*\.L/) {
3752 WARN("AVOID_L_PREFIX",
3753 "Avoid using '.L' prefixed local symbol names for denoting a range of code via 'SYM_*_START/END' annotations; see Documentation/asm-annotations.rst\n" . $herecurr);
3756 # check we are in a valid source file C or perl if not then ignore this hunk
3757 next if ($realfile !~ /\.(h|c|pl|dtsi|dts)$/);
3759 # at the beginning of a line any tabs must come first and anything
3760 # more than $tabsize must use tabs.
3761 if ($rawline =~ /^\+\s* \t\s*\S/ ||
3762 $rawline =~ /^\+\s* \s*/) {
3763 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
3765 if (ERROR("CODE_INDENT",
3766 "code indent should use tabs where possible\n" . $herevet) &&
3768 $fixed[$fixlinenr] =~ s/^\+([ \t]+)/"\+" . tabify($1)/e;
3772 # check for space before tabs.
3773 if ($rawline =~ /^\+/ && $rawline =~ / \t/) {
3774 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
3775 if (WARN("SPACE_BEFORE_TAB",
3776 "please, no space before tabs\n" . $herevet) &&
3778 while ($fixed[$fixlinenr] =~
3779 s/(^\+.*) {$tabsize,$tabsize}\t/$1\t\t/) {}
3780 while ($fixed[$fixlinenr] =~
3781 s/(^\+.*) +\t/$1\t/) {}
3785 # check for assignments on the start of a line
3786 if ($sline =~ /^\+\s+($Assignment)[^=]/) {
3788 if (CHK("ASSIGNMENT_CONTINUATIONS",
3789 "Assignment operator '$1' should be on the previous line\n" . $hereprev) &&
3790 $fix && $prevrawline =~ /^\+/) {
3791 # add assignment operator to the previous line, remove from current line
3792 $fixed[$fixlinenr - 1] .= " $operator";
3793 $fixed[$fixlinenr] =~ s/\Q$operator\E\s*//;
3797 # check for && or || at the start of a line
3798 if ($rawline =~ /^\+\s*(&&|\|\|)/) {
3800 if (CHK("LOGICAL_CONTINUATIONS",
3801 "Logical continuations should be on the previous line\n" . $hereprev) &&
3802 $fix && $prevrawline =~ /^\+/) {
3803 # insert logical operator at last non-comment, non-whitepsace char on previous line
3804 $prevline =~ /[\s$;]*$/;
3805 my $line_end = substr($prevrawline, $-[0]);
3806 $fixed[$fixlinenr - 1] =~ s/\Q$line_end\E$/ $operator$line_end/;
3807 $fixed[$fixlinenr] =~ s/\Q$operator\E\s*//;
3811 # check indentation starts on a tab stop
3812 if ($perl_version_ok &&
3813 $sline =~ /^\+\t+( +)(?:$c90_Keywords\b|\{\s*$|\}\s*(?:else\b|while\b|\s*$)|$Declare\s*$Ident\s*[;=])/) {
3814 my $indent = length($1);
3815 if ($indent % $tabsize) {
3817 "Statements should start on a tabstop\n" . $herecurr) &&
3819 $fixed[$fixlinenr] =~ s@(^\+\t+) +@$1 . "\t" x ($indent/$tabsize)@e;
3824 # check multi-line statement indentation matches previous line
3825 if ($perl_version_ok &&
3826 $prevline =~ /^\+([ \t]*)((?:$c90_Keywords(?:\s+if)\s*)|(?:$Declare\s*)?(?:$Ident|\(\s*\*\s*$Ident\s*\))\s*|(?:\*\s*)*$Lval\s*=\s*$Ident\s*)\(.*(\&\&|\|\||,)\s*$/) {
3827 $prevline =~ /^\+(\t*)(.*)$/;
3831 my $pos = pos_last_openparen($rest);
3833 $line =~ /^(\+| )([ \t]*)/;
3836 my $goodtabindent = $oldindent .
3837 "\t" x ($pos / $tabsize) .
3838 " " x ($pos % $tabsize);
3839 my $goodspaceindent = $oldindent . " " x $pos;
3841 if ($newindent ne $goodtabindent &&
3842 $newindent ne $goodspaceindent) {
3844 if (CHK("PARENTHESIS_ALIGNMENT",
3845 "Alignment should match open parenthesis\n" . $hereprev) &&
3846 $fix && $line =~ /^\+/) {
3847 $fixed[$fixlinenr] =~
3848 s/^\+[ \t]*/\+$goodtabindent/;
3854 # check for space after cast like "(int) foo" or "(struct foo) bar"
3855 # avoid checking a few false positives:
3856 # "sizeof(<type>)" or "__alignof__(<type>)"
3857 # function pointer declarations like "(*foo)(int) = bar;"
3858 # structure definitions like "(struct foo) { 0 };"
3859 # multiline macros that define functions
3860 # known attributes or the __attribute__ keyword
3861 if ($line =~ /^\+(.*)\(\s*$Type\s*\)([ \t]++)((?![={]|\\$|$Attribute|__attribute__))/ &&
3862 (!defined($1) || $1 !~ /\b(?:sizeof|__alignof__)\s*$/)) {
3864 "No space is necessary after a cast\n" . $herecurr) &&
3866 $fixed[$fixlinenr] =~
3867 s/(\(\s*$Type\s*\))[ \t]+/$1/;
3871 # Block comment styles
3872 # Networking with an initial /*
3873 if ($realfile =~ m@^(drivers/net/|net/)@ &&
3874 $prevrawline =~ /^\+[ \t]*\/\*[ \t]*$/ &&
3875 $rawline =~ /^\+[ \t]*\*/ &&
3876 $realline > 3) { # Do not warn about the initial copyright comment block after SPDX-License-Identifier
3877 WARN("NETWORKING_BLOCK_COMMENT_STYLE",
3878 "networking block comments don't use an empty /* line, use /* Comment...\n" . $hereprev);
3881 # Block comments use * on subsequent lines
3882 if ($prevline =~ /$;[ \t]*$/ && #ends in comment
3883 $prevrawline =~ /^\+.*?\/\*/ && #starting /*
3884 $prevrawline !~ /\*\/[ \t]*$/ && #no trailing */
3885 $rawline =~ /^\+/ && #line is new
3886 $rawline !~ /^\+[ \t]*\*/) { #no leading *
3887 WARN("BLOCK_COMMENT_STYLE",
3888 "Block comments use * on subsequent lines\n" . $hereprev);
3891 # Block comments use */ on trailing lines
3892 if ($rawline !~ m@^\+[ \t]*\*/[ \t]*$@ && #trailing */
3893 $rawline !~ m@^\+.*/\*.*\*/[ \t]*$@ && #inline /*...*/
3894 $rawline !~ m@^\+.*\*{2,}/[ \t]*$@ && #trailing **/
3895 $rawline =~ m@^\+[ \t]*.+\*\/[ \t]*$@) { #non blank */
3896 WARN("BLOCK_COMMENT_STYLE",
3897 "Block comments use a trailing */ on a separate line\n" . $herecurr);
3900 # Block comment * alignment
3901 if ($prevline =~ /$;[ \t]*$/ && #ends in comment
3902 $line =~ /^\+[ \t]*$;/ && #leading comment
3903 $rawline =~ /^\+[ \t]*\*/ && #leading *
3904 (($prevrawline =~ /^\+.*?\/\*/ && #leading /*
3905 $prevrawline !~ /\*\/[ \t]*$/) || #no trailing */
3906 $prevrawline =~ /^\+[ \t]*\*/)) { #leading *
3908 $prevrawline =~ m@^\+([ \t]*/?)\*@;
3910 $oldindent = expand_tabs($1);
3912 $prevrawline =~ m@^\+(.*/?)\*@;
3913 $oldindent = expand_tabs($1);
3915 $rawline =~ m@^\+([ \t]*)\*@;
3917 $newindent = expand_tabs($newindent);
3918 if (length($oldindent) ne length($newindent)) {
3919 WARN("BLOCK_COMMENT_STYLE",
3920 "Block comments should align the * on each line\n" . $hereprev);
3924 # check for missing blank lines after struct/union declarations
3925 # with exceptions for various attributes and macros
3926 if ($prevline =~ /^[\+ ]};?\s*$/ &&
3928 !($line =~ /^\+\s*$/ ||
3929 $line =~ /^\+\s*EXPORT_SYMBOL/ ||
3930 $line =~ /^\+\s*MODULE_/i ||
3931 $line =~ /^\+\s*\#\s*(?:end|elif|else)/ ||
3932 $line =~ /^\+[a-z_]*init/ ||
3933 $line =~ /^\+\s*(?:static\s+)?[A-Z_]*ATTR/ ||
3934 $line =~ /^\+\s*DECLARE/ ||
3935 $line =~ /^\+\s*builtin_[\w_]*driver/ ||
3936 $line =~ /^\+\s*__setup/)) {
3937 if (CHK("LINE_SPACING",
3938 "Please use a blank line after function/struct/union/enum declarations\n" . $hereprev) &&
3940 fix_insert_line($fixlinenr, "\+");
3944 # check for multiple consecutive blank lines
3945 if ($prevline =~ /^[\+ ]\s*$/ &&
3946 $line =~ /^\+\s*$/ &&
3947 $last_blank_line != ($linenr - 1)) {
3948 if (CHK("LINE_SPACING",
3949 "Please don't use multiple blank lines\n" . $hereprev) &&
3951 fix_delete_line($fixlinenr, $rawline);
3954 $last_blank_line = $linenr;
3957 # check for missing blank lines after declarations
3958 # (declarations must have the same indentation and not be at the start of line)
3959 if (($prevline =~ /\+(\s+)\S/) && $sline =~ /^\+$1\S/) {
3963 # remove $Attribute/$Sparse uses to simplify comparisons
3964 $sl =~ s/\b(?:$Attribute|$Sparse)\b//g;
3965 $pl =~ s/\b(?:$Attribute|$Sparse)\b//g;
3966 if (($pl =~ /^\+\s+$Declare\s*$Ident\s*[=,;:\[]/ ||
3967 # function pointer declarations
3968 $pl =~ /^\+\s+$Declare\s*\(\s*\*\s*$Ident\s*\)\s*[=,;:\[\(]/ ||
3969 # foo bar; where foo is some local typedef or #define
3970 $pl =~ /^\+\s+$Ident(?:\s+|\s*\*\s*)$Ident\s*[=,;\[]/ ||
3971 # known declaration macros
3972 $pl =~ /^\+\s+$declaration_macros/) &&
3973 # for "else if" which can look like "$Ident $Ident"
3974 !($pl =~ /^\+\s+$c90_Keywords\b/ ||
3975 # other possible extensions of declaration lines
3976 $pl =~ /(?:$Compare|$Assignment|$Operators)\s*$/ ||
3977 # not starting a section or a macro "\" extended line
3978 $pl =~ /(?:\{\s*|\\)$/) &&
3979 # looks like a declaration
3980 !($sl =~ /^\+\s+$Declare\s*$Ident\s*[=,;:\[]/ ||
3981 # function pointer declarations
3982 $sl =~ /^\+\s+$Declare\s*\(\s*\*\s*$Ident\s*\)\s*[=,;:\[\(]/ ||
3983 # foo bar; where foo is some local typedef or #define
3984 $sl =~ /^\+\s+$Ident(?:\s+|\s*\*\s*)$Ident\s*[=,;\[]/ ||
3985 # known declaration macros
3986 $sl =~ /^\+\s+$declaration_macros/ ||
3987 # start of struct or union or enum
3988 $sl =~ /^\+\s+(?:static\s+)?(?:const\s+)?(?:union|struct|enum|typedef)\b/ ||
3989 # start or end of block or continuation of declaration
3990 $sl =~ /^\+\s+(?:$|[\{\}\.\#\"\?\:\(\[])/ ||
3991 # bitfield continuation
3992 $sl =~ /^\+\s+$Ident\s*:\s*\d+\s*[,;]/ ||
3993 # other possible extensions of declaration lines
3994 $sl =~ /^\+\s+\(?\s*(?:$Compare|$Assignment|$Operators)/)) {
3995 if (WARN("LINE_SPACING",
3996 "Missing a blank line after declarations\n" . $hereprev) &&
3998 fix_insert_line($fixlinenr, "\+");
4003 # check for spaces at the beginning of a line.
4005 # 1) within comments
4006 # 2) indented preprocessor commands
4008 if ($rawline =~ /^\+ / && $line !~ /^\+ *(?:$;|#|$Ident:)/) {
4009 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
4010 if (WARN("LEADING_SPACE",
4011 "please, no spaces at the start of a line\n" . $herevet) &&
4013 $fixed[$fixlinenr] =~ s/^\+([ \t]+)/"\+" . tabify($1)/e;
4017 # check we are in a valid C source file if not then ignore this hunk
4018 next if ($realfile !~ /\.(h|c)$/);
4020 # check for unusual line ending [ or (
4021 if ($line =~ /^\+.*([\[\(])\s*$/) {
4022 CHK("OPEN_ENDED_LINE",
4023 "Lines should not end with a '$1'\n" . $herecurr);
4026 # check if this appears to be the start function declaration, save the name
4027 if ($sline =~ /^\+\{\s*$/ &&
4028 $prevline =~ /^\+(?:(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*)?($Ident)\(/) {
4029 $context_function = $1;
4032 # check if this appears to be the end of function declaration
4033 if ($sline =~ /^\+\}\s*$/) {
4034 undef $context_function;
4037 # check indentation of any line with a bare else
4038 # (but not if it is a multiple line "if (foo) return bar; else return baz;")
4039 # if the previous line is a break or return and is indented 1 tab more...
4040 if ($sline =~ /^\+([\t]+)(?:}[ \t]*)?else(?:[ \t]*{)?\s*$/) {
4041 my $tabs = length($1) + 1;
4042 if ($prevline =~ /^\+\t{$tabs,$tabs}break\b/ ||
4043 ($prevline =~ /^\+\t{$tabs,$tabs}return\b/ &&
4044 defined $lines[$linenr] &&
4045 $lines[$linenr] !~ /^[ \+]\t{$tabs,$tabs}return/)) {
4046 WARN("UNNECESSARY_ELSE",
4047 "else is not generally useful after a break or return\n" . $hereprev);
4051 # check indentation of a line with a break;
4052 # if the previous line is a goto, return or break
4053 # and is indented the same # of tabs
4054 if ($sline =~ /^\+([\t]+)break\s*;\s*$/) {
4056 if ($prevline =~ /^\+$tabs(goto|return|break)\b/) {
4057 if (WARN("UNNECESSARY_BREAK",
4058 "break is not useful after a $1\n" . $hereprev) &&
4060 fix_delete_line($fixlinenr, $rawline);
4065 # check for RCS/CVS revision markers
4066 if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) {
4068 "CVS style keyword markers, these will _not_ be updated\n". $herecurr);
4071 # check for old HOTPLUG __dev<foo> section markings
4072 if ($line =~ /\b(__dev(init|exit)(data|const|))\b/) {
4073 WARN("HOTPLUG_SECTION",
4074 "Using $1 is unnecessary\n" . $herecurr);
4077 # Check for potential 'bare' types
4078 my ($stat, $cond, $line_nr_next, $remain_next, $off_next,
4080 #print "LINE<$line>\n";
4081 if ($linenr > $suppress_statement &&
4082 $realcnt && $sline =~ /.\s*\S/) {
4083 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
4084 ctx_statement_block($linenr, $realcnt, 0);
4085 $stat =~ s/\n./\n /g;
4086 $cond =~ s/\n./\n /g;
4088 #print "linenr<$linenr> <$stat>\n";
4089 # If this statement has no statement boundaries within
4090 # it there is no point in retrying a statement scan
4091 # until we hit end of it.
4092 my $frag = $stat; $frag =~ s/;+\s*$//;
4093 if ($frag !~ /(?:{|;)/) {
4094 #print "skip<$line_nr_next>\n";
4095 $suppress_statement = $line_nr_next;
4098 # Find the real next line.
4099 $realline_next = $line_nr_next;
4100 if (defined $realline_next &&
4101 (!defined $lines[$realline_next - 1] ||
4102 substr($lines[$realline_next - 1], $off_next) =~ /^\s*$/)) {
4109 # Ignore goto labels.
4110 if ($s =~ /$Ident:\*$/s) {
4112 # Ignore functions being called
4113 } elsif ($s =~ /^.\s*$Ident\s*\(/s) {
4115 } elsif ($s =~ /^.\s*else\b/s) {
4117 # declarations always start with types
4118 } 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) {
4121 possible($type, "A:" . $s);
4123 # definitions in global scope can only start with types
4124 } elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b\s*(?!:)/s) {
4125 possible($1, "B:" . $s);
4128 # any (foo ... *) is a pointer cast, and foo is a type
4129 while ($s =~ /\(($Ident)(?:\s+$Sparse)*[\s\*]+\s*\)/sg) {
4130 possible($1, "C:" . $s);
4133 # Check for any sort of function declaration.
4134 # int foo(something bar, other baz);
4135 # void (*store_gdt)(x86_descr_ptr *);
4136 if ($prev_values eq 'E' && $s =~ /^(.(?:typedef\s*)?(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*(?:\b$Ident|\(\*\s*$Ident\))\s*)\(/s) {
4137 my ($name_len) = length($1);
4140 substr($ctx, 0, $name_len + 1, '');
4141 $ctx =~ s/\)[^\)]*$//;
4143 for my $arg (split(/\s*,\s*/, $ctx)) {
4144 if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$/s) {
4146 possible($1, "D:" . $s);
4154 # Checks which may be anchored in the context.
4157 # Check for switch () and associated case and default
4158 # statements should be at the same indent.
4159 if ($line=~/\bswitch\s*\(.*\)/) {
4162 my @ctx = ctx_block_outer($linenr, $realcnt);
4164 for my $ctx (@ctx) {
4165 my ($clen, $cindent) = line_stats($ctx);
4166 if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
4167 $indent != $cindent) {
4168 $err .= "$sep$ctx\n";
4175 ERROR("SWITCH_CASE_INDENT_LEVEL",
4176 "switch and case should be at the same indent\n$hereline$err");
4180 # if/while/etc brace do not go on next line, unless defining a do while loop,
4181 # or if that brace on the next line is for something else
4182 if ($line =~ /(.*)\b((?:if|while|for|switch|(?:[a-z_]+|)for_each[a-z_]+)\s*\(|do\b|else\b)/ && $line !~ /^.\s*\#/) {
4183 my $pre_ctx = "$1$2";
4185 my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0);
4187 if ($line =~ /^\+\t{6,}/) {
4188 WARN("DEEP_INDENTATION",
4189 "Too many leading tabs - consider code refactoring\n" . $herecurr);
4192 my $ctx_cnt = $realcnt - $#ctx - 1;
4193 my $ctx = join("\n", @ctx);
4195 my $ctx_ln = $linenr;
4196 my $ctx_skip = $realcnt;
4198 while ($ctx_skip > $ctx_cnt || ($ctx_skip == $ctx_cnt &&
4199 defined $lines[$ctx_ln - 1] &&
4200 $lines[$ctx_ln - 1] =~ /^-/)) {
4201 ##print "SKIP<$ctx_skip> CNT<$ctx_cnt>\n";
4202 $ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/);
4206 #print "realcnt<$realcnt> ctx_cnt<$ctx_cnt>\n";
4207 #print "pre<$pre_ctx>\nline<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>\n";
4209 if ($ctx !~ /{\s*/ && defined($lines[$ctx_ln - 1]) && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
4211 "that open brace { should be on the previous line\n" .
4212 "$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
4214 if ($level == 0 && $pre_ctx !~ /}\s*while\s*\($/ &&
4215 $ctx =~ /\)\s*\;\s*$/ &&
4216 defined $lines[$ctx_ln - 1])
4218 my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
4219 if ($nindent > $indent) {
4220 WARN("TRAILING_SEMICOLON",
4221 "trailing semicolon indicates no statements, indent implies otherwise\n" .
4222 "$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
4227 # Check relative indent for conditionals and blocks.
4228 if ($line =~ /\b(?:(?:if|while|for|(?:[a-z_]+|)for_each[a-z_]+)\s*\(|(?:do|else)\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) {
4229 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
4230 ctx_statement_block($linenr, $realcnt, 0)
4231 if (!defined $stat);
4232 my ($s, $c) = ($stat, $cond);
4234 substr($s, 0, length($c), '');
4236 # remove inline comments
4240 # Find out how long the conditional actually is.
4241 my @newlines = ($c =~ /\n/gs);
4242 my $cond_lines = 1 + $#newlines;
4244 # Make sure we remove the line prefixes as we have
4245 # none on the first line, and are going to readd them
4248 while ($s =~ /\n\s+\\\n/) {
4249 $cond_lines += $s =~ s/\n\s+\\\n/\n/g;
4252 # We want to check the first line inside the block
4253 # starting at the end of the conditional, so remove:
4254 # 1) any blank line termination
4255 # 2) any opening brace { on end of the line
4257 my $continuation = 0;
4259 $s =~ s/^.*\bdo\b//;
4261 if ($s =~ s/^\s*\\//) {
4264 if ($s =~ s/^\s*?\n//) {
4269 # Also ignore a loop construct at the end of a
4270 # preprocessor statement.
4271 if (($prevline =~ /^.\s*#\s*define\s/ ||
4272 $prevline =~ /\\\s*$/) && $continuation == 0) {
4278 while ($cond_ptr != $cond_lines) {
4279 $cond_ptr = $cond_lines;
4281 # If we see an #else/#elif then the code
4283 if ($s =~ /^\s*\#\s*(?:else|elif)/) {
4288 # 1) blank lines, they should be at 0,
4289 # 2) preprocessor lines, and
4291 if ($continuation ||
4293 $s =~ /^\s*#\s*?/ ||
4294 $s =~ /^\s*$Ident\s*:/) {
4295 $continuation = ($s =~ /^.*?\\\n/) ? 1 : 0;
4296 if ($s =~ s/^.*?\n//) {
4302 my (undef, $sindent) = line_stats("+" . $s);
4303 my $stat_real = raw_line($linenr, $cond_lines);
4305 # Check if either of these lines are modified, else
4306 # this is not this patch's fault.
4307 if (!defined($stat_real) ||
4308 $stat !~ /^\+/ && $stat_real !~ /^\+/) {
4311 if (defined($stat_real) && $cond_lines > 1) {
4312 $stat_real = "[...]\n$stat_real";
4315 #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";
4317 if ($check && $s ne '' &&
4318 (($sindent % $tabsize) != 0 ||
4319 ($sindent < $indent) ||
4320 ($sindent == $indent &&
4321 ($s !~ /^\s*(?:\}|\{|else\b)/)) ||
4322 ($sindent > $indent + $tabsize))) {
4323 WARN("SUSPECT_CODE_INDENT",
4324 "suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n");
4328 # Track the 'values' across context and added lines.
4329 my $opline = $line; $opline =~ s/^./ /;
4330 my ($curr_values, $curr_vars) =
4331 annotate_values($opline . "\n", $prev_values);
4332 $curr_values = $prev_values . $curr_values;
4334 my $outline = $opline; $outline =~ s/\t/ /g;
4335 print "$linenr > .$outline\n";
4336 print "$linenr > $curr_values\n";
4337 print "$linenr > $curr_vars\n";
4339 $prev_values = substr($curr_values, -1);
4341 #ignore lines not being added
4342 next if ($line =~ /^[^\+]/);
4344 # check for self assignments used to avoid compiler warnings
4345 # e.g.: int foo = foo, *bar = NULL;
4346 # struct foo bar = *(&(bar));
4347 if ($line =~ /^\+\s*(?:$Declare)?([A-Za-z_][A-Za-z\d_]*)\s*=/) {
4349 if ($line =~ /^\+\s*(?:$Declare)?$var\s*=\s*(?:$var|\*\s*\(?\s*&\s*\(?\s*$var\s*\)?\s*\)?)\s*[;,]/) {
4350 WARN("SELF_ASSIGNMENT",
4351 "Do not use self-assignments to avoid compiler warnings\n" . $herecurr);
4355 # check for dereferences that span multiple lines
4356 if ($prevline =~ /^\+.*$Lval\s*(?:\.|->)\s*$/ &&
4357 $line =~ /^\+\s*(?!\#\s*(?!define\s+|if))\s*$Lval/) {
4358 $prevline =~ /($Lval\s*(?:\.|->))\s*$/;
4360 $line =~ /^.\s*($Lval)/;
4363 WARN("MULTILINE_DEREFERENCE",
4364 "Avoid multiple line dereference - prefer '$ref'\n" . $hereprev);
4367 # check for declarations of signed or unsigned without int
4368 while ($line =~ m{\b($Declare)\s*(?!char\b|short\b|int\b|long\b)\s*($Ident)?\s*[=,;\[\)\(]}g) {
4371 $var = "" if (!defined $var);
4372 if ($type =~ /^(?:(?:$Storage|$Inline|$Attribute)\s+)*((?:un)?signed)((?:\s*\*)*)\s*$/) {
4376 $pointer = "" if (!defined $pointer);
4378 if (WARN("UNSPECIFIED_INT",
4379 "Prefer '" . trim($sign) . " int" . rtrim($pointer) . "' to bare use of '$sign" . rtrim($pointer) . "'\n" . $herecurr) &&
4381 my $decl = trim($sign) . " int ";
4382 my $comp_pointer = $pointer;
4383 $comp_pointer =~ s/\s//g;
4384 $decl .= $comp_pointer;
4385 $decl = rtrim($decl) if ($var eq "");
4386 $fixed[$fixlinenr] =~ s@\b$sign\s*\Q$pointer\E\s*$var\b@$decl$var@;
4391 # TEST: allow direct testing of the type matcher.
4393 if ($line =~ /^.\s*$Declare\s*$/) {
4395 "TEST: is type\n" . $herecurr);
4396 } elsif ($dbg_type > 1 && $line =~ /^.+($Declare)/) {
4397 ERROR("TEST_NOT_TYPE",
4398 "TEST: is not type ($1 is)\n". $herecurr);
4402 # TEST: allow direct testing of the attribute matcher.
4404 if ($line =~ /^.\s*$Modifier\s*$/) {
4406 "TEST: is attr\n" . $herecurr);
4407 } elsif ($dbg_attr > 1 && $line =~ /^.+($Modifier)/) {
4408 ERROR("TEST_NOT_ATTR",
4409 "TEST: is not attr ($1 is)\n". $herecurr);
4414 # check for initialisation to aggregates open brace on the next line
4415 if ($line =~ /^.\s*{/ &&
4416 $prevline =~ /(?:^|[^=])=\s*$/) {
4417 if (ERROR("OPEN_BRACE",
4418 "that open brace { should be on the previous line\n" . $hereprev) &&
4419 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
4420 fix_delete_line($fixlinenr - 1, $prevrawline);
4421 fix_delete_line($fixlinenr, $rawline);
4422 my $fixedline = $prevrawline;
4423 $fixedline =~ s/\s*=\s*$/ = {/;
4424 fix_insert_line($fixlinenr, $fixedline);
4426 $fixedline =~ s/^(.\s*)\{\s*/$1/;
4427 fix_insert_line($fixlinenr, $fixedline);
4432 # Checks which are anchored on the added line.
4435 # check for malformed paths in #include statements (uses RAW line)
4436 if ($rawline =~ m{^.\s*\#\s*include\s+[<"](.*)[">]}) {
4438 if ($path =~ m{//}) {
4439 ERROR("MALFORMED_INCLUDE",
4440 "malformed #include filename\n" . $herecurr);
4442 if ($path =~ "^uapi/" && $realfile =~ m@\binclude/uapi/@) {
4443 ERROR("UAPI_INCLUDE",
4444 "No #include in ...include/uapi/... should use a uapi/ path prefix\n" . $herecurr);
4448 # no C99 // comments
4449 if ($line =~ m{//}) {
4450 if (ERROR("C99_COMMENTS",
4451 "do not use C99 // comments\n" . $herecurr) &&
4453 my $line = $fixed[$fixlinenr];
4454 if ($line =~ /\/\/(.*)$/) {
4455 my $comment = trim($1);
4456 $fixed[$fixlinenr] =~ s@\/\/(.*)$@/\* $comment \*/@;
4460 # Remove C99 comments.
4462 $opline =~ s@//.*@@;
4464 # EXPORT_SYMBOL should immediately follow the thing it is exporting, consider
4465 # the whole statement.
4466 #print "APW <$lines[$realline_next - 1]>\n";
4467 if (defined $realline_next &&
4468 exists $lines[$realline_next - 1] &&
4469 !defined $suppress_export{$realline_next} &&
4470 ($lines[$realline_next - 1] =~ /EXPORT_SYMBOL.*\((.*)\)/)) {
4471 # Handle definitions which produce identifiers with
4474 # EXPORT_SYMBOL(something_foo);
4476 $name =~ s/^\s*($Ident).*/$1/;
4477 if ($stat =~ /^(?:.\s*}\s*\n)?.([A-Z_]+)\s*\(\s*($Ident)/ &&
4478 $name =~ /^${Ident}_$2/) {
4479 #print "FOO C name<$name>\n";
4480 $suppress_export{$realline_next} = 1;
4482 } elsif ($stat !~ /(?:
4484 ^.DEFINE_$Ident\(\Q$name\E\)|
4485 ^.DECLARE_$Ident\(\Q$name\E\)|
4486 ^.LIST_HEAD\(\Q$name\E\)|
4487 ^.(?:$Storage\s+)?$Type\s*\(\s*\*\s*\Q$name\E\s*\)\s*\(|
4488 \b\Q$name\E(?:\s+$Attribute)*\s*(?:;|=|\[|\()
4490 #print "FOO A<$lines[$realline_next - 1]> stat<$stat> name<$name>\n";
4491 $suppress_export{$realline_next} = 2;
4493 $suppress_export{$realline_next} = 1;
4496 if (!defined $suppress_export{$linenr} &&
4497 $prevline =~ /^.\s*$/ &&
4498 ($line =~ /EXPORT_SYMBOL.*\((.*)\)/)) {
4499 #print "FOO B <$lines[$linenr - 1]>\n";
4500 $suppress_export{$linenr} = 2;
4502 if (defined $suppress_export{$linenr} &&
4503 $suppress_export{$linenr} == 2) {
4504 WARN("EXPORT_SYMBOL",
4505 "EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
4508 # check for global initialisers.
4509 if ($line =~ /^\+$Type\s*$Ident(?:\s+$Modifier)*\s*=\s*($zero_initializer)\s*;/ &&
4510 !exclude_global_initialisers($realfile)) {
4511 if (ERROR("GLOBAL_INITIALISERS",
4512 "do not initialise globals to $1\n" . $herecurr) &&
4514 $fixed[$fixlinenr] =~ s/(^.$Type\s*$Ident(?:\s+$Modifier)*)\s*=\s*$zero_initializer\s*;/$1;/;
4517 # check for static initialisers.
4518 if ($line =~ /^\+.*\bstatic\s.*=\s*($zero_initializer)\s*;/) {
4519 if (ERROR("INITIALISED_STATIC",
4520 "do not initialise statics to $1\n" .
4523 $fixed[$fixlinenr] =~ s/(\bstatic\s.*?)\s*=\s*$zero_initializer\s*;/$1;/;
4527 # check for misordered declarations of char/short/int/long with signed/unsigned
4528 while ($sline =~ m{(\b$TypeMisordered\b)}g) {
4530 WARN("MISORDERED_TYPE",
4531 "type '$tmp' should be specified in [[un]signed] [short|int|long|long long] order\n" . $herecurr);
4534 # check for unnecessary <signed> int declarations of short/long/long long
4535 while ($sline =~ m{\b($TypeMisordered(\s*\*)*|$C90_int_types)\b}g) {
4536 my $type = trim($1);
4537 next if ($type !~ /\bint\b/);
4538 next if ($type !~ /\b(?:short|long\s+long|long)\b/);
4539 my $new_type = $type;
4540 $new_type =~ s/\b\s*int\s*\b/ /;
4541 $new_type =~ s/\b\s*(?:un)?signed\b\s*/ /;
4542 $new_type =~ s/^const\s+//;
4543 $new_type = "unsigned $new_type" if ($type =~ /\bunsigned\b/);
4544 $new_type = "const $new_type" if ($type =~ /^const\b/);
4545 $new_type =~ s/\s+/ /g;
4546 $new_type = trim($new_type);
4547 if (WARN("UNNECESSARY_INT",
4548 "Prefer '$new_type' over '$type' as the int is unnecessary\n" . $herecurr) &&
4550 $fixed[$fixlinenr] =~ s/\b\Q$type\E\b/$new_type/;
4554 # check for static const char * arrays.
4555 if ($line =~ /\bstatic\s+const\s+char\s*\*\s*(\w+)\s*\[\s*\]\s*=\s*/) {
4556 WARN("STATIC_CONST_CHAR_ARRAY",
4557 "static const char * array should probably be static const char * const\n" .
4561 # check for initialized const char arrays that should be static const
4562 if ($line =~ /^\+\s*const\s+(char|unsigned\s+char|_*u8|(?:[us]_)?int8_t)\s+\w+\s*\[\s*(?:\w+\s*)?\]\s*=\s*"/) {
4563 if (WARN("STATIC_CONST_CHAR_ARRAY",
4564 "const array should probably be static const\n" . $herecurr) &&
4566 $fixed[$fixlinenr] =~ s/(^.\s*)const\b/${1}static const/;
4570 # check for static char foo[] = "bar" declarations.
4571 if ($line =~ /\bstatic\s+char\s+(\w+)\s*\[\s*\]\s*=\s*"/) {
4572 WARN("STATIC_CONST_CHAR_ARRAY",
4573 "static char array declaration should probably be static const char\n" .
4577 # check for const <foo> const where <foo> is not a pointer or array type
4578 if ($sline =~ /\bconst\s+($BasicType)\s+const\b/) {
4580 if ($sline =~ /\bconst\s+\Q$found\E\s+const\b\s*\*/) {
4582 "'const $found const *' should probably be 'const $found * const'\n" . $herecurr);
4583 } elsif ($sline !~ /\bconst\s+\Q$found\E\s+const\s+\w+\s*\[/) {
4585 "'const $found const' should probably be 'const $found'\n" . $herecurr);
4589 # check for const static or static <non ptr type> const declarations
4590 # prefer 'static const <foo>' over 'const static <foo>' and 'static <foo> const'
4591 if ($sline =~ /^\+\s*const\s+static\s+($Type)\b/ ||
4592 $sline =~ /^\+\s*static\s+($BasicType)\s+const\b/) {
4593 if (WARN("STATIC_CONST",
4594 "Move const after static - use 'static const $1'\n" . $herecurr) &&
4596 $fixed[$fixlinenr] =~ s/\bconst\s+static\b/static const/;
4597 $fixed[$fixlinenr] =~ s/\bstatic\s+($BasicType)\s+const\b/static const $1/;
4601 # check for non-global char *foo[] = {"bar", ...} declarations.
4602 if ($line =~ /^.\s+(?:static\s+|const\s+)?char\s+\*\s*\w+\s*\[\s*\]\s*=\s*\{/) {
4603 WARN("STATIC_CONST_CHAR_ARRAY",
4604 "char * array declaration might be better as static const\n" .
4608 # check for sizeof(foo)/sizeof(foo[0]) that could be ARRAY_SIZE(foo)
4609 if ($line =~ m@\bsizeof\s*\(\s*($Lval)\s*\)@) {
4611 if ($line =~ m@\b(sizeof\s*\(\s*\Q$array\E\s*\)\s*/\s*sizeof\s*\(\s*\Q$array\E\s*\[\s*0\s*\]\s*\))@) {
4613 if (WARN("ARRAY_SIZE",
4614 "Prefer ARRAY_SIZE($array)\n" . $herecurr) &&
4616 $fixed[$fixlinenr] =~ s/\Q$array_div\E/ARRAY_SIZE($array)/;
4621 # check for function declarations without arguments like "int foo()"
4622 if ($line =~ /(\b$Type\s*$Ident)\s*\(\s*\)/) {
4623 if (ERROR("FUNCTION_WITHOUT_ARGS",
4624 "Bad function definition - $1() should probably be $1(void)\n" . $herecurr) &&
4626 $fixed[$fixlinenr] =~ s/(\b($Type)\s+($Ident))\s*\(\s*\)/$2 $3(void)/;
4630 # check for new typedefs, only function parameters and sparse annotations
4632 if ($line =~ /\btypedef\s/ &&
4633 $line !~ /\btypedef\s+$Type\s*\(\s*\*?$Ident\s*\)\s*\(/ &&
4634 $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ &&
4635 $line !~ /\b$typeTypedefs\b/ &&
4636 $line !~ /\b__bitwise\b/) {
4637 WARN("NEW_TYPEDEFS",
4638 "do not add new typedefs\n" . $herecurr);
4641 # * goes on variable not on type
4643 while ($line =~ m{(\($NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)\))}g) {
4645 my ($ident, $from, $to) = ($1, $2, $2);
4647 # Should start with a space.
4648 $to =~ s/^(\S)/ $1/;
4649 # Should not end with a space.
4651 # '*'s should not have spaces between.
4652 while ($to =~ s/\*\s+\*/\*\*/) {
4655 ## print "1: from<$from> to<$to> ident<$ident>\n";
4657 if (ERROR("POINTER_LOCATION",
4658 "\"(foo$from)\" should be \"(foo$to)\"\n" . $herecurr) &&
4660 my $sub_from = $ident;
4661 my $sub_to = $ident;
4662 $sub_to =~ s/\Q$from\E/$to/;
4663 $fixed[$fixlinenr] =~
4664 s@\Q$sub_from\E@$sub_to@;
4668 while ($line =~ m{(\b$NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)($Ident))}g) {
4670 my ($match, $from, $to, $ident) = ($1, $2, $2, $3);
4672 # Should start with a space.
4673 $to =~ s/^(\S)/ $1/;
4674 # Should not end with a space.
4676 # '*'s should not have spaces between.
4677 while ($to =~ s/\*\s+\*/\*\*/) {
4679 # Modifiers should have spaces.
4680 $to =~ s/(\b$Modifier$)/$1 /;
4682 ## print "2: from<$from> to<$to> ident<$ident>\n";
4683 if ($from ne $to && $ident !~ /^$Modifier$/) {
4684 if (ERROR("POINTER_LOCATION",
4685 "\"foo${from}bar\" should be \"foo${to}bar\"\n" . $herecurr) &&
4688 my $sub_from = $match;
4689 my $sub_to = $match;
4690 $sub_to =~ s/\Q$from\E/$to/;
4691 $fixed[$fixlinenr] =~
4692 s@\Q$sub_from\E@$sub_to@;
4697 # avoid BUG() or BUG_ON()
4698 if ($line =~ /\b(?:BUG|BUG_ON)\b/) {
4699 my $msg_level = \&WARN;
4700 $msg_level = \&CHK if ($file);
4701 &{$msg_level}("AVOID_BUG",
4702 "Avoid crashing the kernel - try using WARN_ON & recovery code rather than BUG() or BUG_ON()\n" . $herecurr);
4705 # avoid LINUX_VERSION_CODE
4706 if ($line =~ /\bLINUX_VERSION_CODE\b/) {
4707 WARN("LINUX_VERSION_CODE",
4708 "LINUX_VERSION_CODE should be avoided, code should be for the version to which it is merged\n" . $herecurr);
4711 # check for uses of printk_ratelimit
4712 if ($line =~ /\bprintk_ratelimit\s*\(/) {
4713 WARN("PRINTK_RATELIMITED",
4714 "Prefer printk_ratelimited or pr_<level>_ratelimited to printk_ratelimit\n" . $herecurr);
4717 # printk should use KERN_* levels
4718 if ($line =~ /\bprintk\s*\(\s*(?!KERN_[A-Z]+\b)/) {
4719 WARN("PRINTK_WITHOUT_KERN_LEVEL",
4720 "printk() should include KERN_<LEVEL> facility level\n" . $herecurr);
4723 # prefer variants of (subsystem|netdev|dev|pr)_<level> to printk(KERN_<LEVEL>
4724 if ($line =~ /\b(printk(_once|_ratelimited)?)\s*\(\s*KERN_([A-Z]+)/) {
4728 $modifier = "" if (!defined($modifier));
4729 my $level = lc($orig);
4730 $level = "warn" if ($level eq "warning");
4731 my $level2 = $level;
4732 $level2 = "dbg" if ($level eq "debug");
4733 $level .= $modifier;
4734 $level2 .= $modifier;
4735 WARN("PREFER_PR_LEVEL",
4736 "Prefer [subsystem eg: netdev]_$level2([subsystem]dev, ... then dev_$level2(dev, ... then pr_$level(... to $printk(KERN_$orig ...\n" . $herecurr);
4739 # prefer dev_<level> to dev_printk(KERN_<LEVEL>
4740 if ($line =~ /\bdev_printk\s*\(\s*KERN_([A-Z]+)/) {
4742 my $level = lc($orig);
4743 $level = "warn" if ($level eq "warning");
4744 $level = "dbg" if ($level eq "debug");
4745 WARN("PREFER_DEV_LEVEL",
4746 "Prefer dev_$level(... to dev_printk(KERN_$orig, ...\n" . $herecurr);
4749 # trace_printk should not be used in production code.
4750 if ($line =~ /\b(trace_printk|trace_puts|ftrace_vprintk)\s*\(/) {
4751 WARN("TRACE_PRINTK",
4752 "Do not use $1() in production code (this can be ignored if built only with a debug config option)\n" . $herecurr);
4755 # ENOSYS means "bad syscall nr" and nothing else. This will have a small
4756 # number of false positives, but assembly files are not checked, so at
4757 # least the arch entry code will not trigger this warning.
4758 if ($line =~ /\bENOSYS\b/) {
4760 "ENOSYS means 'invalid syscall nr' and nothing else\n" . $herecurr);
4763 # ENOTSUPP is not a standard error code and should be avoided in new patches.
4764 # Folks usually mean EOPNOTSUPP (also called ENOTSUP), when they type ENOTSUPP.
4765 # Similarly to ENOSYS warning a small number of false positives is expected.
4766 if (!$file && $line =~ /\bENOTSUPP\b/) {
4767 if (WARN("ENOTSUPP",
4768 "ENOTSUPP is not a SUSV4 error code, prefer EOPNOTSUPP\n" . $herecurr) &&
4770 $fixed[$fixlinenr] =~ s/\bENOTSUPP\b/EOPNOTSUPP/;
4774 # function brace can't be on same line, except for #defines of do while,
4775 # or if closed on same line
4776 if ($perl_version_ok &&
4777 $sline =~ /$Type\s*$Ident\s*$balanced_parens\s*\{/ &&
4778 $sline !~ /\#\s*define\b.*do\s*\{/ &&
4780 if (ERROR("OPEN_BRACE",
4781 "open brace '{' following function definitions go on the next line\n" . $herecurr) &&
4783 fix_delete_line($fixlinenr, $rawline);
4784 my $fixed_line = $rawline;
4785 $fixed_line =~ /(^..*$Type\s*$Ident\(.*\)\s*)\{(.*)$/;
4788 fix_insert_line($fixlinenr, ltrim($line1));
4789 fix_insert_line($fixlinenr, "\+{");
4790 if ($line2 !~ /^\s*$/) {
4791 fix_insert_line($fixlinenr, "\+\t" . trim($line2));
4796 # open braces for enum, union and struct go on the same line.
4797 if ($line =~ /^.\s*{/ &&
4798 $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
4799 if (ERROR("OPEN_BRACE",
4800 "open brace '{' following $1 go on the same line\n" . $hereprev) &&
4801 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
4802 fix_delete_line($fixlinenr - 1, $prevrawline);
4803 fix_delete_line($fixlinenr, $rawline);
4804 my $fixedline = rtrim($prevrawline) . " {";
4805 fix_insert_line($fixlinenr, $fixedline);
4806 $fixedline = $rawline;
4807 $fixedline =~ s/^(.\s*)\{\s*/$1\t/;
4808 if ($fixedline !~ /^\+\s*$/) {
4809 fix_insert_line($fixlinenr, $fixedline);
4814 # missing space after union, struct or enum definition
4815 if ($line =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident){1,2}[=\{]/) {
4817 "missing space after $1 definition\n" . $herecurr) &&
4819 $fixed[$fixlinenr] =~
4820 s/^(.\s*(?:typedef\s+)?(?:enum|union|struct)(?:\s+$Ident){1,2})([=\{])/$1 $2/;
4824 # Function pointer declarations
4825 # check spacing between type, funcptr, and args
4826 # canonical declaration is "type (*funcptr)(args...)"
4827 if ($line =~ /^.\s*($Declare)\((\s*)\*(\s*)($Ident)(\s*)\)(\s*)\(/) {
4829 my $pre_pointer_space = $2;
4830 my $post_pointer_space = $3;
4832 my $post_funcname_space = $5;
4833 my $pre_args_space = $6;
4835 # the $Declare variable will capture all spaces after the type
4836 # so check it for a missing trailing missing space but pointer return types
4837 # don't need a space so don't warn for those.
4838 my $post_declare_space = "";
4839 if ($declare =~ /(\s+)$/) {
4840 $post_declare_space = $1;
4841 $declare = rtrim($declare);
4843 if ($declare !~ /\*$/ && $post_declare_space =~ /^$/) {
4845 "missing space after return type\n" . $herecurr);
4846 $post_declare_space = " ";
4849 # unnecessary space "type (*funcptr)(args...)"
4850 # This test is not currently implemented because these declarations are
4852 # int foo(int bar, ...)
4853 # and this is form shouldn't/doesn't generate a checkpatch warning.
4855 # elsif ($declare =~ /\s{2,}$/) {
4857 # "Multiple spaces after return type\n" . $herecurr);
4860 # unnecessary space "type ( *funcptr)(args...)"
4861 if (defined $pre_pointer_space &&
4862 $pre_pointer_space =~ /^\s/) {
4864 "Unnecessary space after function pointer open parenthesis\n" . $herecurr);
4867 # unnecessary space "type (* funcptr)(args...)"
4868 if (defined $post_pointer_space &&
4869 $post_pointer_space =~ /^\s/) {
4871 "Unnecessary space before function pointer name\n" . $herecurr);
4874 # unnecessary space "type (*funcptr )(args...)"
4875 if (defined $post_funcname_space &&
4876 $post_funcname_space =~ /^\s/) {
4878 "Unnecessary space after function pointer name\n" . $herecurr);
4881 # unnecessary space "type (*funcptr) (args...)"
4882 if (defined $pre_args_space &&
4883 $pre_args_space =~ /^\s/) {
4885 "Unnecessary space before function pointer arguments\n" . $herecurr);
4888 if (show_type("SPACING") && $fix) {
4889 $fixed[$fixlinenr] =~
4890 s/^(.\s*)$Declare\s*\(\s*\*\s*$Ident\s*\)\s*\(/$1 . $declare . $post_declare_space . '(*' . $funcname . ')('/ex;
4894 # check for spacing round square brackets; allowed:
4895 # 1. with a type on the left -- int [] a;
4896 # 2. at the beginning of a line for slice initialisers -- [0...10] = 5,
4897 # 3. inside a curly brace -- = { [0...10] = 5 }
4898 while ($line =~ /(.*?\s)\[/g) {
4899 my ($where, $prefix) = ($-[1], $1);
4900 if ($prefix !~ /$Type\s+$/ &&
4901 ($where != 0 || $prefix !~ /^.\s+$/) &&
4902 $prefix !~ /[{,:]\s+$/) {
4903 if (ERROR("BRACKET_SPACE",
4904 "space prohibited before open square bracket '['\n" . $herecurr) &&
4906 $fixed[$fixlinenr] =~
4907 s/^(\+.*?)\s+\[/$1\[/;
4912 # check for spaces between functions and their parentheses.
4913 while ($line =~ /($Ident)\s+\(/g) {
4915 my $ctx_before = substr($line, 0, $-[1]);
4916 my $ctx = "$ctx_before$name";
4918 # Ignore those directives where spaces _are_ permitted.
4920 if|for|while|switch|return|case|
4921 volatile|__volatile__|
4922 __attribute__|format|__extension__|
4925 # cpp #define statements have non-optional spaces, ie
4926 # if there is a space between the name and the open
4927 # parenthesis it is simply not a parameter group.
4928 } elsif ($ctx_before =~ /^.\s*\#\s*define\s*$/) {
4930 # cpp #elif statement condition may start with a (
4931 } elsif ($ctx =~ /^.\s*\#\s*elif\s*$/) {
4933 # If this whole things ends with a type its most
4934 # likely a typedef for a function.
4935 } elsif ($ctx =~ /$Type$/) {
4939 "space prohibited between function name and open parenthesis '('\n" . $herecurr) &&
4941 $fixed[$fixlinenr] =~
4942 s/\b$name\s+\(/$name\(/;
4947 # Check operator spacing.
4948 if (!($line=~/\#\s*include/)) {
4949 my $fixed_line = "";
4953 <<=|>>=|<=|>=|==|!=|
4954 \+=|-=|\*=|\/=|%=|\^=|\|=|&=|
4955 =>|->|<<|>>|<|>|=|!|~|
4956 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%|
4959 my @elements = split(/($ops|;)/, $opline);
4961 ## print("element count: <" . $#elements . ">\n");
4962 ## foreach my $el (@elements) {
4963 ## print("el: <$el>\n");
4966 my @fix_elements = ();
4969 foreach my $el (@elements) {
4970 push(@fix_elements, substr($rawline, $off, length($el)));
4971 $off += length($el);
4976 my $blank = copy_spacing($opline);
4977 my $last_after = -1;
4979 for (my $n = 0; $n < $#elements; $n += 2) {
4981 my $good = $fix_elements[$n] . $fix_elements[$n + 1];
4983 ## print("n: <$n> good: <$good>\n");
4985 $off += length($elements[$n]);
4987 # Pick up the preceding and succeeding characters.
4988 my $ca = substr($opline, 0, $off);
4990 if (length($opline) >= ($off + length($elements[$n + 1]))) {
4991 $cc = substr($opline, $off + length($elements[$n + 1]));
4993 my $cb = "$ca$;$cc";
4996 $a = 'V' if ($elements[$n] ne '');
4997 $a = 'W' if ($elements[$n] =~ /\s$/);
4998 $a = 'C' if ($elements[$n] =~ /$;$/);
4999 $a = 'B' if ($elements[$n] =~ /(\[|\()$/);
5000 $a = 'O' if ($elements[$n] eq '');
5001 $a = 'E' if ($ca =~ /^\s*$/);
5003 my $op = $elements[$n + 1];
5006 if (defined $elements[$n + 2]) {
5007 $c = 'V' if ($elements[$n + 2] ne '');
5008 $c = 'W' if ($elements[$n + 2] =~ /^\s/);
5009 $c = 'C' if ($elements[$n + 2] =~ /^$;/);
5010 $c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
5011 $c = 'O' if ($elements[$n + 2] eq '');
5012 $c = 'E' if ($elements[$n + 2] =~ /^\s*\\$/);
5017 my $ctx = "${a}x${c}";
5019 my $at = "(ctx:$ctx)";
5021 my $ptr = substr($blank, 0, $off) . "^";
5022 my $hereptr = "$hereline$ptr\n";
5024 # Pull out the value of this operator.
5025 my $op_type = substr($curr_values, $off + 1, 1);
5027 # Get the full operator variant.
5028 my $opv = $op . substr($curr_vars, $off, 1);
5030 # Ignore operators passed as parameters.
5031 if ($op_type ne 'V' &&
5032 $ca =~ /\s$/ && $cc =~ /^\s*[,\)]/) {
5035 # } elsif ($op =~ /^$;+$/) {
5037 # ; should have either the end of line or a space or \ after it
5038 } elsif ($op eq ';') {
5039 if ($ctx !~ /.x[WEBC]/ &&
5040 $cc !~ /^\\/ && $cc !~ /^;/) {
5041 if (ERROR("SPACING",
5042 "space required after that '$op' $at\n" . $hereptr)) {
5043 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]) . " ";
5049 } elsif ($op eq '//') {
5051 # : when part of a bitfield
5052 } elsif ($opv eq ':B') {
5053 # skip the bitfield test for now
5057 } elsif ($op eq '->') {
5058 if ($ctx =~ /Wx.|.xW/) {
5059 if (ERROR("SPACING",
5060 "spaces prohibited around that '$op' $at\n" . $hereptr)) {
5061 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
5062 if (defined $fix_elements[$n + 2]) {
5063 $fix_elements[$n + 2] =~ s/^\s+//;
5069 # , must not have a space before and must have a space on the right.
5070 } elsif ($op eq ',') {
5071 my $rtrim_before = 0;
5072 my $space_after = 0;
5073 if ($ctx =~ /Wx./) {
5074 if (ERROR("SPACING",
5075 "space prohibited before that '$op' $at\n" . $hereptr)) {
5080 if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) {
5081 if (ERROR("SPACING",
5082 "space required after that '$op' $at\n" . $hereptr)) {
5088 if ($rtrim_before || $space_after) {
5089 if ($rtrim_before) {
5090 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
5092 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]);
5099 # '*' as part of a type definition -- reported already.
5100 } elsif ($opv eq '*_') {
5101 #warn "'*' is part of type\n";
5103 # unary operators should have a space before and
5104 # none after. May be left adjacent to another
5105 # unary operator, or a cast
5106 } elsif ($op eq '!' || $op eq '~' ||
5107 $opv eq '*U' || $opv eq '-U' ||
5108 $opv eq '&U' || $opv eq '&&U') {
5109 if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
5110 if (ERROR("SPACING",
5111 "space required before that '$op' $at\n" . $hereptr)) {
5112 if ($n != $last_after + 2) {
5113 $good = $fix_elements[$n] . " " . ltrim($fix_elements[$n + 1]);
5118 if ($op eq '*' && $cc =~/\s*$Modifier\b/) {
5119 # A unary '*' may be const
5121 } elsif ($ctx =~ /.xW/) {
5122 if (ERROR("SPACING",
5123 "space prohibited after that '$op' $at\n" . $hereptr)) {
5124 $good = $fix_elements[$n] . rtrim($fix_elements[$n + 1]);
5125 if (defined $fix_elements[$n + 2]) {
5126 $fix_elements[$n + 2] =~ s/^\s+//;
5132 # unary ++ and unary -- are allowed no space on one side.
5133 } elsif ($op eq '++' or $op eq '--') {
5134 if ($ctx !~ /[WEOBC]x[^W]/ && $ctx !~ /[^W]x[WOBEC]/) {
5135 if (ERROR("SPACING",
5136 "space required one side of that '$op' $at\n" . $hereptr)) {
5137 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]) . " ";
5141 if ($ctx =~ /Wx[BE]/ ||
5142 ($ctx =~ /Wx./ && $cc =~ /^;/)) {
5143 if (ERROR("SPACING",
5144 "space prohibited before that '$op' $at\n" . $hereptr)) {
5145 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
5149 if ($ctx =~ /ExW/) {
5150 if (ERROR("SPACING",
5151 "space prohibited after that '$op' $at\n" . $hereptr)) {
5152 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]);
5153 if (defined $fix_elements[$n + 2]) {
5154 $fix_elements[$n + 2] =~ s/^\s+//;
5160 # << and >> may either have or not have spaces both sides
5161 } elsif ($op eq '<<' or $op eq '>>' or
5162 $op eq '&' or $op eq '^' or $op eq '|' or
5163 $op eq '+' or $op eq '-' or
5164 $op eq '*' or $op eq '/' or
5168 if (defined $fix_elements[$n + 2] && $ctx !~ /[EW]x[EW]/) {
5170 "spaces preferred around that '$op' $at\n" . $hereptr)) {
5171 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
5172 $fix_elements[$n + 2] =~ s/^\s+//;
5175 } elsif (!defined $fix_elements[$n + 2] && $ctx !~ /Wx[OE]/) {
5177 "space preferred before that '$op' $at\n" . $hereptr)) {
5178 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]);
5182 } elsif ($ctx =~ /Wx[^WCE]|[^WCE]xW/) {
5183 if (ERROR("SPACING",
5184 "need consistent spacing around '$op' $at\n" . $hereptr)) {
5185 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
5186 if (defined $fix_elements[$n + 2]) {
5187 $fix_elements[$n + 2] =~ s/^\s+//;
5193 # A colon needs no spaces before when it is
5194 # terminating a case value or a label.
5195 } elsif ($opv eq ':C' || $opv eq ':L') {
5196 if ($ctx =~ /Wx./ and $realfile !~ m@.*\.lds\.h$@) {
5197 if (ERROR("SPACING",
5198 "space prohibited before that '$op' $at\n" . $hereptr)) {
5199 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
5204 # All the others need spaces both sides.
5205 } elsif ($ctx !~ /[EWC]x[CWE]/) {
5208 # Ignore email addresses <foo@bar>
5210 $cc =~ /^\S+\@\S+>/) ||
5212 $ca =~ /<\S+\@\S+$/))
5217 # for asm volatile statements
5218 # ignore a colon with another
5219 # colon immediately before or after
5221 ($ca =~ /:$/ || $cc =~ /^:/)) {
5225 # messages are ERROR, but ?: are CHK
5227 my $msg_level = \&ERROR;
5228 $msg_level = \&CHK if (($op eq '?:' || $op eq '?' || $op eq ':') && $ctx =~ /VxV/);
5230 if (&{$msg_level}("SPACING",
5231 "spaces required around that '$op' $at\n" . $hereptr)) {
5232 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
5233 if (defined $fix_elements[$n + 2]) {
5234 $fix_elements[$n + 2] =~ s/^\s+//;
5240 $off += length($elements[$n + 1]);
5242 ## print("n: <$n> GOOD: <$good>\n");
5244 $fixed_line = $fixed_line . $good;
5247 if (($#elements % 2) == 0) {
5248 $fixed_line = $fixed_line . $fix_elements[$#elements];
5251 if ($fix && $line_fixed && $fixed_line ne $fixed[$fixlinenr]) {
5252 $fixed[$fixlinenr] = $fixed_line;
5258 # check for whitespace before a non-naked semicolon
5259 if ($line =~ /^\+.*\S\s+;\s*$/) {
5261 "space prohibited before semicolon\n" . $herecurr) &&
5263 1 while $fixed[$fixlinenr] =~
5264 s/^(\+.*\S)\s+;/$1;/;
5268 # check for multiple assignments
5269 if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
5270 CHK("MULTIPLE_ASSIGNMENTS",
5271 "multiple assignments should be avoided\n" . $herecurr);
5274 ## # check for multiple declarations, allowing for a function declaration
5276 ## if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
5277 ## $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
5279 ## # Remove any bracketed sections to ensure we do not
5280 ## # falsely report the parameters of functions.
5282 ## while ($ln =~ s/\([^\(\)]*\)//g) {
5284 ## if ($ln =~ /,/) {
5285 ## WARN("MULTIPLE_DECLARATION",
5286 ## "declaring multiple variables together should be avoided\n" . $herecurr);
5290 #need space before brace following if, while, etc
5291 if (($line =~ /\(.*\)\{/ && $line !~ /\($Type\)\{/) ||
5292 $line =~ /\b(?:else|do)\{/) {
5293 if (ERROR("SPACING",
5294 "space required before the open brace '{'\n" . $herecurr) &&
5296 $fixed[$fixlinenr] =~ s/^(\+.*(?:do|else|\)))\{/$1 {/;
5300 ## # check for blank lines before declarations
5301 ## if ($line =~ /^.\t+$Type\s+$Ident(?:\s*=.*)?;/ &&
5302 ## $prevrawline =~ /^.\s*$/) {
5304 ## "No blank lines before declarations\n" . $hereprev);
5308 # closing brace should have a space following it when it has anything
5310 if ($line =~ /}(?!(?:,|;|\)|\}))\S/) {
5311 if (ERROR("SPACING",
5312 "space required after that close brace '}'\n" . $herecurr) &&
5314 $fixed[$fixlinenr] =~
5315 s/}((?!(?:,|;|\)))\S)/} $1/;
5319 # check spacing on square brackets
5320 if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
5321 if (ERROR("SPACING",
5322 "space prohibited after that open square bracket '['\n" . $herecurr) &&
5324 $fixed[$fixlinenr] =~
5328 if ($line =~ /\s\]/) {
5329 if (ERROR("SPACING",
5330 "space prohibited before that close square bracket ']'\n" . $herecurr) &&
5332 $fixed[$fixlinenr] =~
5337 # check spacing on parentheses
5338 if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
5339 $line !~ /for\s*\(\s+;/) {
5340 if (ERROR("SPACING",
5341 "space prohibited after that open parenthesis '('\n" . $herecurr) &&
5343 $fixed[$fixlinenr] =~
5347 if ($line =~ /(\s+)\)/ && $line !~ /^.\s*\)/ &&
5348 $line !~ /for\s*\(.*;\s+\)/ &&
5349 $line !~ /:\s+\)/) {
5350 if (ERROR("SPACING",
5351 "space prohibited before that close parenthesis ')'\n" . $herecurr) &&
5353 $fixed[$fixlinenr] =~
5358 # check unnecessary parentheses around addressof/dereference single $Lvals
5359 # ie: &(foo->bar) should be &foo->bar and *(foo->bar) should be *foo->bar
5361 while ($line =~ /(?:[^&]&\s*|\*)\(\s*($Ident\s*(?:$Member\s*)+)\s*\)/g) {
5363 if (CHK("UNNECESSARY_PARENTHESES",
5364 "Unnecessary parentheses around $var\n" . $herecurr) &&
5366 $fixed[$fixlinenr] =~ s/\(\s*\Q$var\E\s*\)/$var/;
5370 # check for unnecessary parentheses around function pointer uses
5371 # ie: (foo->bar)(); should be foo->bar();
5372 # but not "if (foo->bar) (" to avoid some false positives
5373 if ($line =~ /(\bif\s*|)(\(\s*$Ident\s*(?:$Member\s*)+\))[ \t]*\(/ && $1 !~ /^if/) {
5375 if (CHK("UNNECESSARY_PARENTHESES",
5376 "Unnecessary parentheses around function pointer $var\n" . $herecurr) &&
5378 my $var2 = deparenthesize($var);
5380 $fixed[$fixlinenr] =~ s/\Q$var\E/$var2/;
5384 # check for unnecessary parentheses around comparisons in if uses
5385 # when !drivers/staging or command-line uses --strict
5386 if (($realfile !~ m@^(?:drivers/staging/)@ || $check_orig) &&
5387 $perl_version_ok && defined($stat) &&
5388 $stat =~ /(^.\s*if\s*($balanced_parens))/) {
5390 my $test = substr($2, 1, -1);
5392 while ($test =~ /(?:^|[^\w\&\!\~])+\s*\(\s*([\&\!\~]?\s*$Lval\s*(?:$Compare\s*$FuncArg)?)\s*\)/g) {
5394 # avoid parentheses around potential macro args
5395 next if ($match =~ /^\s*\w+\s*$/);
5396 if (!defined($herectx)) {
5397 $herectx = $here . "\n";
5398 my $cnt = statement_rawlines($if_stat);
5399 for (my $n = 0; $n < $cnt; $n++) {
5400 my $rl = raw_line($linenr, $n);
5401 $herectx .= $rl . "\n";
5402 last if $rl =~ /^[ \+].*\{/;
5405 CHK("UNNECESSARY_PARENTHESES",
5406 "Unnecessary parentheses around '$match'\n" . $herectx);
5410 # check that goto labels aren't indented (allow a single space indentation)
5411 # and ignore bitfield definitions like foo:1
5412 # Strictly, labels can have whitespace after the identifier and before the :
5413 # but this is not allowed here as many ?: uses would appear to be labels
5414 if ($sline =~ /^.\s+[A-Za-z_][A-Za-z\d_]*:(?!\s*\d+)/ &&
5415 $sline !~ /^. [A-Za-z\d_][A-Za-z\d_]*:/ &&
5416 $sline !~ /^.\s+default:/) {
5417 if (WARN("INDENTED_LABEL",
5418 "labels should not be indented\n" . $herecurr) &&
5420 $fixed[$fixlinenr] =~
5425 # check if a statement with a comma should be two statements like:
5426 # foo = bar(), /* comma should be semicolon */
5428 if (defined($stat) &&
5429 $stat =~ /^\+\s*(?:$Lval\s*$Assignment\s*)?$FuncArg\s*,\s*(?:$Lval\s*$Assignment\s*)?$FuncArg\s*;\s*$/) {
5430 my $cnt = statement_rawlines($stat);
5431 my $herectx = get_stat_here($linenr, $cnt, $here);
5432 WARN("SUSPECT_COMMA_SEMICOLON",
5433 "Possible comma where semicolon could be used\n" . $herectx);
5436 # return is not a function
5437 if (defined($stat) && $stat =~ /^.\s*return(\s*)\(/s) {
5439 if ($perl_version_ok &&
5440 $stat =~ /^.\s*return\s*($balanced_parens)\s*;\s*$/) {
5442 $value = deparenthesize($value);
5443 if ($value =~ m/^\s*$FuncArg\s*(?:\?|$)/) {
5444 ERROR("RETURN_PARENTHESES",
5445 "return is not a function, parentheses are not required\n" . $herecurr);
5447 } elsif ($spacing !~ /\s+/) {
5449 "space required before the open parenthesis '('\n" . $herecurr);
5453 # unnecessary return in a void function
5454 # at end-of-function, with the previous line a single leading tab, then return;
5455 # and the line before that not a goto label target like "out:"
5456 if ($sline =~ /^[ \+]}\s*$/ &&
5457 $prevline =~ /^\+\treturn\s*;\s*$/ &&
5459 $lines[$linenr - 3] =~ /^[ +]/ &&
5460 $lines[$linenr - 3] !~ /^[ +]\s*$Ident\s*:/) {
5462 "void function return statements are not generally useful\n" . $hereprev);
5465 # if statements using unnecessary parentheses - ie: if ((foo == bar))
5466 if ($perl_version_ok &&
5467 $line =~ /\bif\s*((?:\(\s*){2,})/) {
5468 my $openparens = $1;
5469 my $count = $openparens =~ tr@\(@\(@;
5471 if ($line =~ /\bif\s*(?:\(\s*){$count,$count}$LvalOrFunc\s*($Compare)\s*$LvalOrFunc(?:\s*\)){$count,$count}/) {
5472 my $comp = $4; #Not $1 because of $LvalOrFunc
5473 $msg = " - maybe == should be = ?" if ($comp eq "==");
5474 WARN("UNNECESSARY_PARENTHESES",
5475 "Unnecessary parentheses$msg\n" . $herecurr);
5479 # comparisons with a constant or upper case identifier on the left
5480 # avoid cases like "foo + BAR < baz"
5481 # only fix matches surrounded by parentheses to avoid incorrect
5482 # conversions like "FOO < baz() + 5" being "misfixed" to "baz() > FOO + 5"
5483 if ($perl_version_ok &&
5484 $line =~ /^\+(.*)\b($Constant|[A-Z_][A-Z0-9_]*)\s*($Compare)\s*($LvalOrFunc)/) {
5489 my $newcomp = $comp;
5490 if ($lead !~ /(?:$Operators|\.)\s*$/ &&
5491 $to !~ /^(?:Constant|[A-Z_][A-Z0-9_]*)$/ &&
5492 WARN("CONSTANT_COMPARISON",
5493 "Comparisons should place the constant on the right side of the test\n" . $herecurr) &&
5497 } elsif ($comp eq "<=") {
5499 } elsif ($comp eq ">") {
5501 } elsif ($comp eq ">=") {
5504 $fixed[$fixlinenr] =~ s/\(\s*\Q$const\E\s*$Compare\s*\Q$to\E\s*\)/($to $newcomp $const)/;
5508 # Return of what appears to be an errno should normally be negative
5509 if ($sline =~ /\breturn(?:\s*\(+\s*|\s+)(E[A-Z]+)(?:\s*\)+\s*|\s*)[;:,]/) {
5511 if ($name ne 'EOF' && $name ne 'ERROR' && $name !~ /^EPOLL/) {
5512 WARN("USE_NEGATIVE_ERRNO",
5513 "return of an errno should typically be negative (ie: return -$1)\n" . $herecurr);
5517 # Need a space before open parenthesis after if, while etc
5518 if ($line =~ /\b(if|while|for|switch)\(/) {
5519 if (ERROR("SPACING",
5520 "space required before the open parenthesis '('\n" . $herecurr) &&
5522 $fixed[$fixlinenr] =~
5523 s/\b(if|while|for|switch)\(/$1 \(/;
5527 # Check for illegal assignment in if conditional -- and check for trailing
5528 # statements after the conditional.
5529 if ($line =~ /do\s*(?!{)/) {
5530 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
5531 ctx_statement_block($linenr, $realcnt, 0)
5532 if (!defined $stat);
5533 my ($stat_next) = ctx_statement_block($line_nr_next,
5534 $remain_next, $off_next);
5535 $stat_next =~ s/\n./\n /g;
5536 ##print "stat<$stat> stat_next<$stat_next>\n";
5538 if ($stat_next =~ /^\s*while\b/) {
5539 # If the statement carries leading newlines,
5540 # then count those as offsets.
5542 ($stat_next =~ /^((?:\s*\n[+-])*\s*)/s);
5544 statement_rawlines($whitespace) - 1;
5546 $suppress_whiletrailers{$line_nr_next +
5550 if (!defined $suppress_whiletrailers{$linenr} &&
5551 defined($stat) && defined($cond) &&
5552 $line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) {
5553 my ($s, $c) = ($stat, $cond);
5555 if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/s) {
5556 if (ERROR("ASSIGN_IN_IF",
5557 "do not use assignment in if condition\n" . $herecurr) &&
5558 $fix && $perl_version_ok) {
5559 if ($rawline =~ /^\+(\s+)if\s*\(\s*(\!)?\s*\(\s*(($Lval)\s*=\s*$LvalOrFunc)\s*\)\s*(?:($Compare)\s*($FuncArg))?\s*\)\s*(\{)?\s*$/) {
5567 fix_delete_line($fixlinenr, $rawline);
5568 fix_insert_line($fixlinenr, "$space$statement;");
5569 my $newline = "${space}if (";
5570 $newline .= '!' if defined($not);
5571 $newline .= '(' if (defined $not && defined($test) && defined($against));
5572 $newline .= "$assigned";
5573 $newline .= " $test $against" if (defined($test) && defined($against));
5574 $newline .= ')' if (defined $not && defined($test) && defined($against));
5576 $newline .= " {" if (defined($brace));
5577 fix_insert_line($fixlinenr + 1, $newline);
5582 # Find out what is on the end of the line after the
5584 substr($s, 0, length($c), '');
5586 $s =~ s/$;//g; # Remove any comments
5587 if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ &&
5588 $c !~ /}\s*while\s*/)
5590 # Find out how long the conditional actually is.
5591 my @newlines = ($c =~ /\n/gs);
5592 my $cond_lines = 1 + $#newlines;
5595 $stat_real = raw_line($linenr, $cond_lines)
5596 . "\n" if ($cond_lines);
5597 if (defined($stat_real) && $cond_lines > 1) {
5598 $stat_real = "[...]\n$stat_real";
5601 ERROR("TRAILING_STATEMENTS",
5602 "trailing statements should be on next line\n" . $herecurr . $stat_real);
5606 # Check for bitwise tests written as boolean
5618 WARN("HEXADECIMAL_BOOLEAN_TEST",
5619 "boolean test with hexadecimal, perhaps just 1 \& or \|?\n" . $herecurr);
5622 # if and else should not have general statements after it
5623 if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/) {
5625 $s =~ s/$;//g; # Remove any comments
5626 if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) {
5627 ERROR("TRAILING_STATEMENTS",
5628 "trailing statements should be on next line\n" . $herecurr);
5631 # if should not continue a brace
5632 if ($line =~ /}\s*if\b/) {
5633 ERROR("TRAILING_STATEMENTS",
5634 "trailing statements should be on next line (or did you mean 'else if'?)\n" .
5637 # case and default should not have general statements after them
5638 if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
5640 (?:\s*$;*)(?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$|
5644 ERROR("TRAILING_STATEMENTS",
5645 "trailing statements should be on next line\n" . $herecurr);
5648 # Check for }<nl>else {, these must be at the same
5649 # indent level to be relevant to each other.
5650 if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ &&
5651 $previndent == $indent) {
5652 if (ERROR("ELSE_AFTER_BRACE",
5653 "else should follow close brace '}'\n" . $hereprev) &&
5654 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
5655 fix_delete_line($fixlinenr - 1, $prevrawline);
5656 fix_delete_line($fixlinenr, $rawline);
5657 my $fixedline = $prevrawline;
5658 $fixedline =~ s/}\s*$//;
5659 if ($fixedline !~ /^\+\s*$/) {
5660 fix_insert_line($fixlinenr, $fixedline);
5662 $fixedline = $rawline;
5663 $fixedline =~ s/^(.\s*)else/$1} else/;
5664 fix_insert_line($fixlinenr, $fixedline);
5668 if ($prevline=~/}\s*$/ and $line=~/^.\s*while\s*/ &&
5669 $previndent == $indent) {
5670 my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0);
5672 # Find out what is on the end of the line after the
5674 substr($s, 0, length($c), '');
5677 if ($s =~ /^\s*;/) {
5678 if (ERROR("WHILE_AFTER_BRACE",
5679 "while should follow close brace '}'\n" . $hereprev) &&
5680 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
5681 fix_delete_line($fixlinenr - 1, $prevrawline);
5682 fix_delete_line($fixlinenr, $rawline);
5683 my $fixedline = $prevrawline;
5684 my $trailing = $rawline;
5685 $trailing =~ s/^\+//;
5686 $trailing = trim($trailing);
5687 $fixedline =~ s/}\s*$/} $trailing/;
5688 fix_insert_line($fixlinenr, $fixedline);
5693 #Specific variable tests
5694 while ($line =~ m{($Constant|$Lval)}g) {
5698 if ($var !~ /^$Constant$/ &&
5699 $var =~ /[A-Z][a-z]|[a-z][A-Z]/ &&
5700 #Ignore some autogenerated defines and enum values
5701 $var !~ /^(?:[A-Z]+_){1,5}[A-Z]{1,3}[a-z]/ &&
5702 #Ignore Page<foo> variants
5703 $var !~ /^(?:Clear|Set|TestClear|TestSet|)Page[A-Z]/ &&
5704 #Ignore SI style variants like nS, mV and dB
5705 #(ie: max_uV, regulator_min_uA_show, RANGE_mA_VALUE)
5706 $var !~ /^(?:[a-z0-9_]*|[A-Z0-9_]*)?_?[a-z][A-Z](?:_[a-z0-9_]+|_[A-Z0-9_]+)?$/ &&
5707 #Ignore some three character SI units explicitly, like MiB and KHz
5708 $var !~ /^(?:[a-z_]*?)_?(?:[KMGT]iB|[KMGT]?Hz)(?:_[a-z_]+)?$/) {
5709 while ($var =~ m{($Ident)}g) {
5711 next if ($word !~ /[A-Z][a-z]|[a-z][A-Z]/);
5713 seed_camelcase_includes();
5714 if (!$file && !$camelcase_file_seeded) {
5715 seed_camelcase_file($realfile);
5716 $camelcase_file_seeded = 1;
5719 if (!defined $camelcase{$word}) {
5720 $camelcase{$word} = 1;
5722 "Avoid CamelCase: <$word>\n" . $herecurr);
5728 #no spaces allowed after \ in define
5729 if ($line =~ /\#\s*define.*\\\s+$/) {
5730 if (WARN("WHITESPACE_AFTER_LINE_CONTINUATION",
5731 "Whitespace after \\ makes next lines useless\n" . $herecurr) &&
5733 $fixed[$fixlinenr] =~ s/\s+$//;
5737 # warn if <asm/foo.h> is #included and <linux/foo.h> is available and includes
5738 # itself <asm/foo.h> (uses RAW line)
5739 if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) {
5741 my $checkfile = "include/linux/$file";
5742 if (-f "$root/$checkfile" &&
5743 $realfile ne $checkfile &&
5744 $1 !~ /$allowed_asm_includes/)
5746 my $asminclude = `grep -Ec "#include\\s+<asm/$file>" $root/$checkfile`;
5747 if ($asminclude > 0) {
5748 if ($realfile =~ m{^arch/}) {
5749 CHK("ARCH_INCLUDE_LINUX",
5750 "Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
5752 WARN("INCLUDE_LINUX",
5753 "Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
5759 # multi-statement macros should be enclosed in a do while loop, grab the
5760 # first statement and ensure its the whole macro if its not enclosed
5761 # in a known good container
5762 if ($realfile !~ m@/vmlinux.lds.h$@ &&
5763 $line =~ /^.\s*\#\s*define\s*$Ident(\()?/) {
5766 my ($off, $dstat, $dcond, $rest);
5768 my $has_flow_statement = 0;
5769 my $has_arg_concat = 0;
5770 ($dstat, $dcond, $ln, $cnt, $off) =
5771 ctx_statement_block($linenr, $realcnt, 0);
5773 #print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n";
5774 #print "LINE<$lines[$ln-1]> len<" . length($lines[$ln-1]) . "\n";
5776 $has_flow_statement = 1 if ($ctx =~ /\b(goto|return)\b/);
5777 $has_arg_concat = 1 if ($ctx =~ /\#\#/ && $ctx !~ /\#\#\s*(?:__VA_ARGS__|args)\b/);
5779 $dstat =~ s/^.\s*\#\s*define\s+$Ident(\([^\)]*\))?\s*//;
5780 my $define_args = $1;
5781 my $define_stmt = $dstat;
5784 if (defined $define_args && $define_args ne "") {
5785 $define_args = substr($define_args, 1, length($define_args) - 2);
5786 $define_args =~ s/\s*//g;
5787 $define_args =~ s/\\\+?//g;
5788 @def_args = split(",", $define_args);
5792 $dstat =~ s/\\\n.//g;
5793 $dstat =~ s/^\s*//s;
5794 $dstat =~ s/\s*$//s;
5796 # Flatten any parentheses and braces
5797 while ($dstat =~ s/\([^\(\)]*\)/1u/ ||
5798 $dstat =~ s/\{[^\{\}]*\}/1u/ ||
5799 $dstat =~ s/.\[[^\[\]]*\]/1u/)
5803 # Flatten any obvious string concatenation.
5804 while ($dstat =~ s/($String)\s*$Ident/$1/ ||
5805 $dstat =~ s/$Ident\s*($String)/$1/)
5809 # Make asm volatile uses seem like a generic function
5810 $dstat =~ s/\b_*asm_*\s+_*volatile_*\b/asm_volatile/g;
5812 my $exceptions = qr{
5825 #print "REST<$rest> dstat<$dstat> ctx<$ctx>\n";
5828 my $stmt_cnt = statement_rawlines($ctx);
5829 my $herectx = get_stat_here($linenr, $stmt_cnt, $here);
5832 $dstat !~ /^(?:$Ident|-?$Constant),$/ && # 10, // foo(),
5833 $dstat !~ /^(?:$Ident|-?$Constant);$/ && # foo();
5834 $dstat !~ /^[!~-]?(?:$Lval|$Constant)$/ && # 10 // foo() // !foo // ~foo // -foo // foo->bar // foo.bar->baz
5835 $dstat !~ /^'X'$/ && $dstat !~ /^'XX'$/ && # character constants
5836 $dstat !~ /$exceptions/ &&
5837 $dstat !~ /^\.$Ident\s*=/ && # .foo =
5838 $dstat !~ /^(?:\#\s*$Ident|\#\s*$Constant)\s*$/ && # stringification #foo
5839 $dstat !~ /^do\s*$Constant\s*while\s*$Constant;?$/ && # do {...} while (...); // do {...} while (...)
5840 $dstat !~ /^while\s*$Constant\s*$Constant\s*$/ && # while (...) {...}
5841 $dstat !~ /^for\s*$Constant$/ && # for (...)
5842 $dstat !~ /^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ && # for (...) bar()
5843 $dstat !~ /^do\s*{/ && # do {...
5844 $dstat !~ /^\(\{/ && # ({...
5845 $ctx !~ /^.\s*#\s*define\s+TRACE_(?:SYSTEM|INCLUDE_FILE|INCLUDE_PATH)\b/)
5847 if ($dstat =~ /^\s*if\b/) {
5848 ERROR("MULTISTATEMENT_MACRO_USE_DO_WHILE",
5849 "Macros starting with if should be enclosed by a do - while loop to avoid possible if/else logic defects\n" . "$herectx");
5850 } elsif ($dstat =~ /;/) {
5851 ERROR("MULTISTATEMENT_MACRO_USE_DO_WHILE",
5852 "Macros with multiple statements should be enclosed in a do - while loop\n" . "$herectx");
5854 ERROR("COMPLEX_MACRO",
5855 "Macros with complex values should be enclosed in parentheses\n" . "$herectx");
5860 # Make $define_stmt single line, comment-free, etc
5861 my @stmt_array = split('\n', $define_stmt);
5864 foreach my $l (@stmt_array) {
5869 } elsif ($l =~ /^[\+ ]/) {
5870 $define_stmt .= substr($l, 1);
5873 $define_stmt =~ s/$;//g;
5874 $define_stmt =~ s/\s+/ /g;
5875 $define_stmt = trim($define_stmt);
5877 # check if any macro arguments are reused (ignore '...' and 'type')
5878 foreach my $arg (@def_args) {
5879 next if ($arg =~ /\.\.\./);
5880 next if ($arg =~ /^type$/i);
5881 my $tmp_stmt = $define_stmt;
5882 $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;
5883 $tmp_stmt =~ s/\#+\s*$arg\b//g;
5884 $tmp_stmt =~ s/\b$arg\s*\#\#//g;
5885 my $use_cnt = () = $tmp_stmt =~ /\b$arg\b/g;
5887 CHK("MACRO_ARG_REUSE",
5888 "Macro argument reuse '$arg' - possible side-effects?\n" . "$herectx");
5890 # check if any macro arguments may have other precedence issues
5891 if ($tmp_stmt =~ m/($Operators)?\s*\b$arg\b\s*($Operators)?/m &&
5892 ((defined($1) && $1 ne ',') ||
5893 (defined($2) && $2 ne ','))) {
5894 CHK("MACRO_ARG_PRECEDENCE",
5895 "Macro argument '$arg' may be better as '($arg)' to avoid precedence issues\n" . "$herectx");
5899 # check for macros with flow control, but without ## concatenation
5900 # ## concatenation is commonly a macro that defines a function so ignore those
5901 if ($has_flow_statement && !$has_arg_concat) {
5902 my $cnt = statement_rawlines($ctx);
5903 my $herectx = get_stat_here($linenr, $cnt, $here);
5905 WARN("MACRO_WITH_FLOW_CONTROL",
5906 "Macros with flow control statements should be avoided\n" . "$herectx");
5909 # check for line continuations outside of #defines, preprocessor #, and asm
5912 if ($prevline !~ /^..*\\$/ &&
5913 $line !~ /^\+\s*\#.*\\$/ && # preprocessor
5914 $line !~ /^\+.*\b(__asm__|asm)\b.*\\$/ && # asm
5915 $line =~ /^\+.*\\$/) {
5916 WARN("LINE_CONTINUATIONS",
5917 "Avoid unnecessary line continuations\n" . $herecurr);
5921 # do {} while (0) macro tests:
5922 # single-statement macros do not need to be enclosed in do while (0) loop,
5923 # macro should not end with a semicolon
5924 if ($perl_version_ok &&
5925 $realfile !~ m@/vmlinux.lds.h$@ &&
5926 $line =~ /^.\s*\#\s*define\s+$Ident(\()?/) {
5929 my ($off, $dstat, $dcond, $rest);
5931 ($dstat, $dcond, $ln, $cnt, $off) =
5932 ctx_statement_block($linenr, $realcnt, 0);
5935 $dstat =~ s/\\\n.//g;
5938 if ($dstat =~ /^\+\s*#\s*define\s+$Ident\s*${balanced_parens}\s*do\s*{(.*)\s*}\s*while\s*\(\s*0\s*\)\s*([;\s]*)\s*$/) {
5943 my $cnt = statement_rawlines($ctx);
5944 my $herectx = get_stat_here($linenr, $cnt, $here);
5946 if (($stmts =~ tr/;/;/) == 1 &&
5947 $stmts !~ /^\s*(if|while|for|switch)\b/) {
5948 WARN("SINGLE_STATEMENT_DO_WHILE_MACRO",
5949 "Single statement macros should not use a do {} while (0) loop\n" . "$herectx");
5951 if (defined $semis && $semis ne "") {
5952 WARN("DO_WHILE_MACRO_WITH_TRAILING_SEMICOLON",
5953 "do {} while (0) macros should not be semicolon terminated\n" . "$herectx");
5955 } elsif ($dstat =~ /^\+\s*#\s*define\s+$Ident.*;\s*$/) {
5957 my $cnt = statement_rawlines($ctx);
5958 my $herectx = get_stat_here($linenr, $cnt, $here);
5960 WARN("TRAILING_SEMICOLON",
5961 "macros should not use a trailing semicolon\n" . "$herectx");
5965 # check for redundant bracing round if etc
5966 if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) {
5967 my ($level, $endln, @chunks) =
5968 ctx_statement_full($linenr, $realcnt, 1);
5969 #print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n";
5970 #print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n";
5971 if ($#chunks > 0 && $level == 0) {
5975 my $herectx = $here . "\n";
5976 my $ln = $linenr - 1;
5977 for my $chunk (@chunks) {
5978 my ($cond, $block) = @{$chunk};
5980 # If the condition carries leading newlines, then count those as offsets.
5981 my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s);
5982 my $offset = statement_rawlines($whitespace) - 1;
5984 $allowed[$allow] = 0;
5985 #print "COND<$cond> whitespace<$whitespace> offset<$offset>\n";
5987 # We have looked at and allowed this specific line.
5988 $suppress_ifbraces{$ln + $offset} = 1;
5990 $herectx .= "$rawlines[$ln + $offset]\n[...]\n";
5991 $ln += statement_rawlines($block) - 1;
5993 substr($block, 0, length($cond), '');
5995 $seen++ if ($block =~ /^\s*{/);
5997 #print "cond<$cond> block<$block> allowed<$allowed[$allow]>\n";
5998 if (statement_lines($cond) > 1) {
5999 #print "APW: ALLOWED: cond<$cond>\n";
6000 $allowed[$allow] = 1;
6002 if ($block =~/\b(?:if|for|while)\b/) {
6003 #print "APW: ALLOWED: block<$block>\n";
6004 $allowed[$allow] = 1;
6006 if (statement_block_size($block) > 1) {
6007 #print "APW: ALLOWED: lines block<$block>\n";
6008 $allowed[$allow] = 1;
6013 my $sum_allowed = 0;
6014 foreach (@allowed) {
6017 if ($sum_allowed == 0) {
6019 "braces {} are not necessary for any arm of this statement\n" . $herectx);
6020 } elsif ($sum_allowed != $allow &&
6023 "braces {} should be used on all arms of this statement\n" . $herectx);
6028 if (!defined $suppress_ifbraces{$linenr - 1} &&
6029 $line =~ /\b(if|while|for|else)\b/) {
6032 # Check the pre-context.
6033 if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) {
6034 #print "APW: ALLOWED: pre<$1>\n";
6038 my ($level, $endln, @chunks) =
6039 ctx_statement_full($linenr, $realcnt, $-[0]);
6041 # Check the condition.
6042 my ($cond, $block) = @{$chunks[0]};
6043 #print "CHECKING<$linenr> cond<$cond> block<$block>\n";
6044 if (defined $cond) {
6045 substr($block, 0, length($cond), '');
6047 if (statement_lines($cond) > 1) {
6048 #print "APW: ALLOWED: cond<$cond>\n";
6051 if ($block =~/\b(?:if|for|while)\b/) {
6052 #print "APW: ALLOWED: block<$block>\n";
6055 if (statement_block_size($block) > 1) {
6056 #print "APW: ALLOWED: lines block<$block>\n";
6059 # Check the post-context.
6060 if (defined $chunks[1]) {
6061 my ($cond, $block) = @{$chunks[1]};
6062 if (defined $cond) {
6063 substr($block, 0, length($cond), '');
6065 if ($block =~ /^\s*\{/) {
6066 #print "APW: ALLOWED: chunk-1 block<$block>\n";
6070 if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
6071 my $cnt = statement_rawlines($block);
6072 my $herectx = get_stat_here($linenr, $cnt, $here);
6075 "braces {} are not necessary for single statement blocks\n" . $herectx);
6079 # check for single line unbalanced braces
6080 if ($sline =~ /^.\s*\}\s*else\s*$/ ||
6081 $sline =~ /^.\s*else\s*\{\s*$/) {
6082 CHK("BRACES", "Unbalanced braces around else statement\n" . $herecurr);
6085 # check for unnecessary blank lines around braces
6086 if (($line =~ /^.\s*}\s*$/ && $prevrawline =~ /^.\s*$/)) {
6088 "Blank lines aren't necessary before a close brace '}'\n" . $hereprev) &&
6089 $fix && $prevrawline =~ /^\+/) {
6090 fix_delete_line($fixlinenr - 1, $prevrawline);
6093 if (($rawline =~ /^.\s*$/ && $prevline =~ /^..*{\s*$/)) {
6095 "Blank lines aren't necessary after an open brace '{'\n" . $hereprev) &&
6097 fix_delete_line($fixlinenr, $rawline);
6101 # no volatiles please
6102 my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
6103 if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
6105 "Use of volatile is usually wrong: see Documentation/process/volatile-considered-harmful.rst\n" . $herecurr);
6108 # Check for user-visible strings broken across lines, which breaks the ability
6109 # to grep for the string. Make exceptions when the previous string ends in a
6110 # newline (multiple lines in one string constant) or '\t', '\r', ';', or '{'
6111 # (common in inline assembly) or is a octal \123 or hexadecimal \xaf value
6112 if ($line =~ /^\+\s*$String/ &&
6113 $prevline =~ /"\s*$/ &&
6114 $prevrawline !~ /(?:\\(?:[ntr]|[0-7]{1,3}|x[0-9a-fA-F]{1,2})|;\s*|\{\s*)"\s*$/) {
6115 if (WARN("SPLIT_STRING",
6116 "quoted string split across lines\n" . $hereprev) &&
6118 $prevrawline =~ /^\+.*"\s*$/ &&
6119 $last_coalesced_string_linenr != $linenr - 1) {
6120 my $extracted_string = get_quoted_string($line, $rawline);
6121 my $comma_close = "";
6122 if ($rawline =~ /\Q$extracted_string\E(\s*\)\s*;\s*$|\s*,\s*)/) {
6126 fix_delete_line($fixlinenr - 1, $prevrawline);
6127 fix_delete_line($fixlinenr, $rawline);
6128 my $fixedline = $prevrawline;
6129 $fixedline =~ s/"\s*$//;
6130 $fixedline .= substr($extracted_string, 1) . trim($comma_close);
6131 fix_insert_line($fixlinenr - 1, $fixedline);
6132 $fixedline = $rawline;
6133 $fixedline =~ s/\Q$extracted_string\E\Q$comma_close\E//;
6134 if ($fixedline !~ /\+\s*$/) {
6135 fix_insert_line($fixlinenr, $fixedline);
6137 $last_coalesced_string_linenr = $linenr;
6141 # check for missing a space in a string concatenation
6142 if ($prevrawline =~ /[^\\]\w"$/ && $rawline =~ /^\+[\t ]+"\w/) {
6143 WARN('MISSING_SPACE',
6144 "break quoted strings at a space character\n" . $hereprev);
6147 # check for an embedded function name in a string when the function is known
6148 # This does not work very well for -f --file checking as it depends on patch
6149 # context providing the function name or a single line form for in-file
6150 # function declarations
6151 if ($line =~ /^\+.*$String/ &&
6152 defined($context_function) &&
6153 get_quoted_string($line, $rawline) =~ /\b$context_function\b/ &&
6154 length(get_quoted_string($line, $rawline)) != (length($context_function) + 2)) {
6155 WARN("EMBEDDED_FUNCTION_NAME",
6156 "Prefer using '\"%s...\", __func__' to using '$context_function', this function's name, in a string\n" . $herecurr);
6159 # check for unnecessary function tracing like uses
6160 # This does not use $logFunctions because there are many instances like
6161 # 'dprintk(FOO, "%s()\n", __func__);' which do not match $logFunctions
6162 if ($rawline =~ /^\+.*\([^"]*"$tracing_logging_tags{0,3}%s(?:\s*\(\s*\)\s*)?$tracing_logging_tags{0,3}(?:\\n)?"\s*,\s*__func__\s*\)\s*;/) {
6163 if (WARN("TRACING_LOGGING",
6164 "Unnecessary ftrace-like logging - prefer using ftrace\n" . $herecurr) &&
6166 fix_delete_line($fixlinenr, $rawline);
6170 # check for spaces before a quoted newline
6171 if ($rawline =~ /^.*\".*\s\\n/) {
6172 if (WARN("QUOTED_WHITESPACE_BEFORE_NEWLINE",
6173 "unnecessary whitespace before a quoted newline\n" . $herecurr) &&
6175 $fixed[$fixlinenr] =~ s/^(\+.*\".*)\s+\\n/$1\\n/;
6180 # concatenated string without spaces between elements
6181 if ($line =~ /$String[A-Z_]/ ||
6182 ($line =~ /([A-Za-z0-9_]+)$String/ && $1 !~ /^[Lu]$/)) {
6183 if (CHK("CONCATENATED_STRING",
6184 "Concatenated strings should use spaces between elements\n" . $herecurr) &&
6186 while ($line =~ /($String)/g) {
6187 my $extracted_string = substr($rawline, $-[0], $+[0] - $-[0]);
6188 $fixed[$fixlinenr] =~ s/\Q$extracted_string\E([A-Za-z0-9_])/$extracted_string $1/;
6189 $fixed[$fixlinenr] =~ s/([A-Za-z0-9_])\Q$extracted_string\E/$1 $extracted_string/;
6194 # uncoalesced string fragments
6195 if ($line =~ /$String\s*[Lu]?"/) {
6196 if (WARN("STRING_FRAGMENTS",
6197 "Consecutive strings are generally better as a single string\n" . $herecurr) &&
6199 while ($line =~ /($String)(?=\s*")/g) {
6200 my $extracted_string = substr($rawline, $-[0], $+[0] - $-[0]);
6201 $fixed[$fixlinenr] =~ s/\Q$extracted_string\E\s*"/substr($extracted_string, 0, -1)/e;
6206 # check for non-standard and hex prefixed decimal printf formats
6207 my $show_L = 1; #don't show the same defect twice
6209 while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) {
6210 my $string = substr($rawline, $-[1], $+[1] - $-[1]);
6211 $string =~ s/%%/__/g;
6213 if ($show_L && $string =~ /%[\*\d\.\$]*L([diouxX])/) {
6215 "\%L$1 is non-standard C, use %ll$1\n" . $herecurr);
6219 if ($show_Z && $string =~ /%[\*\d\.\$]*Z([diouxX])/) {
6221 "%Z$1 is non-standard C, use %z$1\n" . $herecurr);
6224 # check for 0x<decimal>
6225 if ($string =~ /0x%[\*\d\.\$\Llzth]*[diou]/) {
6226 ERROR("PRINTF_0XDECIMAL",
6227 "Prefixing 0x with decimal output is defective\n" . $herecurr);
6231 # check for line continuations in quoted strings with odd counts of "
6232 if ($rawline =~ /\\$/ && $sline =~ tr/"/"/ % 2) {
6233 WARN("LINE_CONTINUATIONS",
6234 "Avoid line continuations in quoted strings\n" . $herecurr);
6238 if ($line =~ /^.\s*\#\s*if\s+0\b/) {
6240 "Consider removing the code enclosed by this #if 0 and its #endif\n" . $herecurr);
6244 if ($line =~ /^.\s*\#\s*if\s+1\b/) {
6246 "Consider removing the #if 1 and its #endif\n" . $herecurr);
6249 # check for needless "if (<foo>) fn(<foo>)" uses
6250 if ($prevline =~ /\bif\s*\(\s*($Lval)\s*\)/) {
6251 my $tested = quotemeta($1);
6252 my $expr = '\s*\(\s*' . $tested . '\s*\)\s*;';
6253 if ($line =~ /\b(kfree|usb_free_urb|debugfs_remove(?:_recursive)?|(?:kmem_cache|mempool|dma_pool)_destroy)$expr/) {
6255 if (WARN('NEEDLESS_IF',
6256 "$func(NULL) is safe and this check is probably not required\n" . $hereprev) &&
6259 my $leading_tabs = "";
6260 my $new_leading_tabs = "";
6261 if ($lines[$linenr - 2] =~ /^\+(\t*)if\s*\(\s*$tested\s*\)\s*$/) {
6266 if ($lines[$linenr - 1] =~ /^\+(\t+)$func\s*\(\s*$tested\s*\)\s*;\s*$/) {
6267 $new_leading_tabs = $1;
6268 if (length($leading_tabs) + 1 ne length($new_leading_tabs)) {
6275 fix_delete_line($fixlinenr - 1, $prevrawline);
6276 $fixed[$fixlinenr] =~ s/^\+$new_leading_tabs/\+$leading_tabs/;
6282 # check for unnecessary "Out of Memory" messages
6283 if ($line =~ /^\+.*\b$logFunctions\s*\(/ &&
6284 $prevline =~ /^[ \+]\s*if\s*\(\s*(\!\s*|NULL\s*==\s*)?($Lval)(\s*==\s*NULL\s*)?\s*\)/ &&
6285 (defined $1 || defined $3) &&
6288 my $testline = $lines[$linenr - 3];
6290 my ($s, $c) = ctx_statement_block($linenr - 3, $realcnt, 0);
6291 # print("line: <$line>\nprevline: <$prevline>\ns: <$s>\nc: <$c>\n\n\n");
6293 if ($s =~ /(?:^|\n)[ \+]\s*(?:$Type\s*)?\Q$testval\E\s*=\s*(?:\([^\)]*\)\s*)?\s*$allocFunctions\s*\(/ &&
6294 $s !~ /\b__GFP_NOWARN\b/ ) {
6296 "Possible unnecessary 'out of memory' message\n" . $hereprev);
6300 # check for logging functions with KERN_<LEVEL>
6301 if ($line !~ /printk(?:_ratelimited|_once)?\s*\(/ &&
6302 $line =~ /\b$logFunctions\s*\(.*\b(KERN_[A-Z]+)\b/) {
6304 if (WARN("UNNECESSARY_KERN_LEVEL",
6305 "Possible unnecessary $level\n" . $herecurr) &&
6307 $fixed[$fixlinenr] =~ s/\s*$level\s*//;
6311 # check for logging continuations
6312 if ($line =~ /\bprintk\s*\(\s*KERN_CONT\b|\bpr_cont\s*\(/) {
6313 WARN("LOGGING_CONTINUATION",
6314 "Avoid logging continuation uses where feasible\n" . $herecurr);
6317 # check for unnecessary use of %h[xudi] and %hh[xudi] in logging functions
6318 if (defined $stat &&
6319 $line =~ /\b$logFunctions\s*\(/ &&
6320 index($stat, '"') >= 0) {
6321 my $lc = $stat =~ tr@\n@@;
6322 $lc = $lc + $linenr;
6323 my $stat_real = get_stat_real($linenr, $lc);
6324 pos($stat_real) = index($stat_real, '"');
6325 while ($stat_real =~ /[^\"%]*(%[\#\d\.\*\-]*(h+)[idux])/g) {
6328 my $lineoff = substr($stat_real, 0, $-[1]) =~ tr@\n@@;
6329 if (WARN("UNNECESSARY_MODIFIER",
6330 "Integer promotion: Using '$h' in '$pspec' is unnecessary\n" . "$here\n$stat_real\n") &&
6331 $fix && $fixed[$fixlinenr + $lineoff] =~ /^\+/) {
6334 $fixed[$fixlinenr + $lineoff] =~ s/\Q$pspec\E/$nspec/;
6339 # check for mask then right shift without a parentheses
6340 if ($perl_version_ok &&
6341 $line =~ /$LvalOrFunc\s*\&\s*($LvalOrFunc)\s*>>/ &&
6342 $4 !~ /^\&/) { # $LvalOrFunc may be &foo, ignore if so
6343 WARN("MASK_THEN_SHIFT",
6344 "Possible precedence defect with mask then right shift - may need parentheses\n" . $herecurr);
6347 # check for pointer comparisons to NULL
6348 if ($perl_version_ok) {
6349 while ($line =~ /\b$LvalOrFunc\s*(==|\!=)\s*NULL\b/g) {
6352 $equal = "" if ($4 eq "!=");
6353 if (CHK("COMPARISON_TO_NULL",
6354 "Comparison to NULL could be written \"${equal}${val}\"\n" . $herecurr) &&
6356 $fixed[$fixlinenr] =~ s/\b\Q$val\E\s*(?:==|\!=)\s*NULL\b/$equal$val/;
6361 # check for bad placement of section $InitAttribute (e.g.: __initdata)
6362 if ($line =~ /(\b$InitAttribute\b)/) {
6364 if ($line =~ /^\+\s*static\s+(?:const\s+)?(?:$attr\s+)?($NonptrTypeWithAttr)\s+(?:$attr\s+)?($Ident(?:\[[^]]*\])?)\s*[=;]/) {
6367 if ((($ptr =~ /\b(union|struct)\s+$attr\b/ &&
6368 ERROR("MISPLACED_INIT",
6369 "$attr should be placed after $var\n" . $herecurr)) ||
6370 ($ptr !~ /\b(union|struct)\s+$attr\b/ &&
6371 WARN("MISPLACED_INIT",
6372 "$attr should be placed after $var\n" . $herecurr))) &&
6374 $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;
6379 # check for $InitAttributeData (ie: __initdata) with const
6380 if ($line =~ /\bconst\b/ && $line =~ /($InitAttributeData)/) {
6382 $attr =~ /($InitAttributePrefix)(.*)/;
6383 my $attr_prefix = $1;
6385 if (ERROR("INIT_ATTRIBUTE",
6386 "Use of const init definition must use ${attr_prefix}initconst\n" . $herecurr) &&
6388 $fixed[$fixlinenr] =~
6389 s/$InitAttributeData/${attr_prefix}initconst/;
6393 # check for $InitAttributeConst (ie: __initconst) without const
6394 if ($line !~ /\bconst\b/ && $line =~ /($InitAttributeConst)/) {
6396 if (ERROR("INIT_ATTRIBUTE",
6397 "Use of $attr requires a separate use of const\n" . $herecurr) &&
6399 my $lead = $fixed[$fixlinenr] =~
6400 /(^\+\s*(?:static\s+))/;
6402 $lead = "$lead " if ($lead !~ /^\+$/);
6403 $lead = "${lead}const ";
6404 $fixed[$fixlinenr] =~ s/(^\+\s*(?:static\s+))/$lead/;
6408 # check for __read_mostly with const non-pointer (should just be const)
6409 if ($line =~ /\b__read_mostly\b/ &&
6410 $line =~ /($Type)\s*$Ident/ && $1 !~ /\*\s*$/ && $1 =~ /\bconst\b/) {
6411 if (ERROR("CONST_READ_MOSTLY",
6412 "Invalid use of __read_mostly with const type\n" . $herecurr) &&
6414 $fixed[$fixlinenr] =~ s/\s+__read_mostly\b//;
6418 # don't use __constant_<foo> functions outside of include/uapi/
6419 if ($realfile !~ m@^include/uapi/@ &&
6420 $line =~ /(__constant_(?:htons|ntohs|[bl]e(?:16|32|64)_to_cpu|cpu_to_[bl]e(?:16|32|64)))\s*\(/) {
6421 my $constant_func = $1;
6422 my $func = $constant_func;
6423 $func =~ s/^__constant_//;
6424 if (WARN("CONSTANT_CONVERSION",
6425 "$constant_func should be $func\n" . $herecurr) &&
6427 $fixed[$fixlinenr] =~ s/\b$constant_func\b/$func/g;
6431 # prefer usleep_range over udelay
6432 if ($line =~ /\budelay\s*\(\s*(\d+)\s*\)/) {
6434 # ignore udelay's < 10, however
6435 if (! ($delay < 10) ) {
6437 "usleep_range is preferred over udelay; see Documentation/timers/timers-howto.rst\n" . $herecurr);
6439 if ($delay > 2000) {
6441 "long udelay - prefer mdelay; see arch/arm/include/asm/delay.h\n" . $herecurr);
6445 # warn about unexpectedly long msleep's
6446 if ($line =~ /\bmsleep\s*\((\d+)\);/) {
6449 "msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.rst\n" . $herecurr);
6453 # check for comparisons of jiffies
6454 if ($line =~ /\bjiffies\s*$Compare|$Compare\s*jiffies\b/) {
6455 WARN("JIFFIES_COMPARISON",
6456 "Comparing jiffies is almost always wrong; prefer time_after, time_before and friends\n" . $herecurr);
6459 # check for comparisons of get_jiffies_64()
6460 if ($line =~ /\bget_jiffies_64\s*\(\s*\)\s*$Compare|$Compare\s*get_jiffies_64\s*\(\s*\)/) {
6461 WARN("JIFFIES_COMPARISON",
6462 "Comparing get_jiffies_64() is almost always wrong; prefer time_after64, time_before64 and friends\n" . $herecurr);
6465 # warn about #ifdefs in C files
6466 # if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
6467 # print "#ifdef in C files should be avoided\n";
6468 # print "$herecurr";
6472 # warn about spacing in #ifdefs
6473 if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) {
6474 if (ERROR("SPACING",
6475 "exactly one space required after that #$1\n" . $herecurr) &&
6477 $fixed[$fixlinenr] =~
6478 s/^(.\s*\#\s*(ifdef|ifndef|elif))\s{2,}/$1 /;
6483 # check for spinlock_t definitions without a comment.
6484 if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ ||
6485 $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) {
6487 if (!ctx_has_comment($first_line, $linenr)) {
6488 CHK("UNCOMMENTED_DEFINITION",
6489 "$1 definition without comment\n" . $herecurr);
6492 # check for memory barriers without a comment.
6499 my $barrier_stems = qr{
6507 my $all_barriers = qr{
6509 smp_(?:$barrier_stems)|
6510 virt_(?:$barrier_stems)
6513 if ($line =~ /\b(?:$all_barriers)\s*\(/) {
6514 if (!ctx_has_comment($first_line, $linenr)) {
6515 WARN("MEMORY_BARRIER",
6516 "memory barrier without comment\n" . $herecurr);
6520 my $underscore_smp_barriers = qr{__smp_(?:$barrier_stems)}x;
6522 if ($realfile !~ m@^include/asm-generic/@ &&
6523 $realfile !~ m@/barrier\.h$@ &&
6524 $line =~ m/\b(?:$underscore_smp_barriers)\s*\(/ &&
6525 $line !~ m/^.\s*\#\s*define\s+(?:$underscore_smp_barriers)\s*\(/) {
6526 WARN("MEMORY_BARRIER",
6527 "__smp memory barriers shouldn't be used outside barrier.h and asm-generic\n" . $herecurr);
6530 # check for waitqueue_active without a comment.
6531 if ($line =~ /\bwaitqueue_active\s*\(/) {
6532 if (!ctx_has_comment($first_line, $linenr)) {
6533 WARN("WAITQUEUE_ACTIVE",
6534 "waitqueue_active without comment\n" . $herecurr);
6538 # check for data_race without a comment.
6539 if ($line =~ /\bdata_race\s*\(/) {
6540 if (!ctx_has_comment($first_line, $linenr)) {
6542 "data_race without comment\n" . $herecurr);
6546 # check of hardware specific defines
6547 if ($line =~ m@^.\s*\#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
6549 "architecture specific defines should be avoided\n" . $herecurr);
6552 # check that the storage class is not after a type
6553 if ($line =~ /\b($Type)\s+($Storage)\b/) {
6554 WARN("STORAGE_CLASS",
6555 "storage class '$2' should be located before type '$1'\n" . $herecurr);
6557 # Check that the storage class is at the beginning of a declaration
6558 if ($line =~ /\b$Storage\b/ &&
6559 $line !~ /^.\s*$Storage/ &&
6560 $line =~ /^.\s*(.+?)\$Storage\s/ &&
6561 $1 !~ /[\,\)]\s*$/) {
6562 WARN("STORAGE_CLASS",
6563 "storage class should be at the beginning of the declaration\n" . $herecurr);
6566 # check the location of the inline attribute, that it is between
6567 # storage class and type.
6568 if ($line =~ /\b$Type\s+$Inline\b/ ||
6569 $line =~ /\b$Inline\s+$Storage\b/) {
6570 ERROR("INLINE_LOCATION",
6571 "inline keyword should sit between storage class and type\n" . $herecurr);
6574 # Check for __inline__ and __inline, prefer inline
6575 if ($realfile !~ m@\binclude/uapi/@ &&
6576 $line =~ /\b(__inline__|__inline)\b/) {
6578 "plain inline is preferred over $1\n" . $herecurr) &&
6580 $fixed[$fixlinenr] =~ s/\b(__inline__|__inline)\b/inline/;
6585 # Check for compiler attributes
6586 if ($realfile !~ m@\binclude/uapi/@ &&
6587 $rawline =~ /\b__attribute__\s*\(\s*($balanced_parens)\s*\)/) {
6589 $attr =~ s/\s*\(\s*(.*)\)\s*/$1/;
6592 "alias" => "__alias",
6593 "aligned" => "__aligned",
6594 "always_inline" => "__always_inline",
6595 "assume_aligned" => "__assume_aligned",
6597 "const" => "__attribute_const__",
6599 "designated_init" => "__designated_init",
6600 "externally_visible" => "__visible",
6601 "format" => "printf|scanf",
6602 "gnu_inline" => "__gnu_inline",
6603 "malloc" => "__malloc",
6605 "no_caller_saved_registers" => "__no_caller_saved_registers",
6606 "noclone" => "__noclone",
6607 "noinline" => "noinline",
6608 "nonstring" => "__nonstring",
6609 "noreturn" => "__noreturn",
6610 "packed" => "__packed",
6612 "section" => "__section",
6617 while ($attr =~ /\s*(\w+)\s*(${balanced_parens})?/g) {
6620 $params = $2 if defined($2);
6621 my $curr_attr = $orig_attr;
6622 $curr_attr =~ s/^[\s_]+|[\s_]+$//g;
6623 if (exists($attr_list{$curr_attr})) {
6624 my $new = $attr_list{$curr_attr};
6625 if ($curr_attr eq "format" && $params) {
6626 $params =~ /^\s*\(\s*(\w+)\s*,\s*(.*)/;
6629 $new = "$new$params";
6631 if (WARN("PREFER_DEFINED_ATTRIBUTE_MACRO",
6632 "Prefer $new over __attribute__(($orig_attr$params))\n" . $herecurr) &&
6634 my $remove = "\Q$orig_attr\E" . '\s*' . "\Q$params\E" . '(?:\s*,\s*)?';
6635 $fixed[$fixlinenr] =~ s/$remove//;
6636 $fixed[$fixlinenr] =~ s/\b__attribute__/$new __attribute__/;
6637 $fixed[$fixlinenr] =~ s/\}\Q$new\E/} $new/;
6638 $fixed[$fixlinenr] =~ s/ __attribute__\s*\(\s*\(\s*\)\s*\)//;
6643 # Check for __attribute__ unused, prefer __always_unused or __maybe_unused
6644 if ($attr =~ /^_*unused/) {
6645 WARN("PREFER_DEFINED_ATTRIBUTE_MACRO",
6646 "__always_unused or __maybe_unused is preferred over __attribute__((__unused__))\n" . $herecurr);
6650 # Check for __attribute__ weak, or __weak declarations (may have link issues)
6651 if ($perl_version_ok &&
6652 $line =~ /(?:$Declare|$DeclareMisordered)\s*$Ident\s*$balanced_parens\s*(?:$Attribute)?\s*;/ &&
6653 ($line =~ /\b__attribute__\s*\(\s*\(.*\bweak\b/ ||
6654 $line =~ /\b__weak\b/)) {
6655 ERROR("WEAK_DECLARATION",
6656 "Using weak declarations can have unintended link defects\n" . $herecurr);
6659 # check for c99 types like uint8_t used outside of uapi/ and tools/
6660 if ($realfile !~ m@\binclude/uapi/@ &&
6661 $realfile !~ m@\btools/@ &&
6662 $line =~ /\b($Declare)\s*$Ident\s*[=;,\[]/) {
6664 if ($type =~ /\b($typeC99Typedefs)\b/) {
6666 my $kernel_type = 'u';
6667 $kernel_type = 's' if ($type =~ /^_*[si]/);
6670 if (CHK("PREFER_KERNEL_TYPES",
6671 "Prefer kernel type '$kernel_type' over '$type'\n" . $herecurr) &&
6673 $fixed[$fixlinenr] =~ s/\b$type\b/$kernel_type/;
6678 # check for cast of C90 native int or longer types constants
6679 if ($line =~ /(\(\s*$C90_int_types\s*\)\s*)($Constant)\b/) {
6683 my $newconst = $const;
6684 $newconst =~ s/${Int_type}$//;
6685 $suffix .= 'U' if ($cast =~ /\bunsigned\b/);
6686 if ($cast =~ /\blong\s+long\b/) {
6688 } elsif ($cast =~ /\blong\b/) {
6691 if (WARN("TYPECAST_INT_CONSTANT",
6692 "Unnecessary typecast of c90 int constant - '$cast$const' could be '$const$suffix'\n" . $herecurr) &&
6694 $fixed[$fixlinenr] =~ s/\Q$cast\E$const\b/$newconst$suffix/;
6698 # check for sizeof(&)
6699 if ($line =~ /\bsizeof\s*\(\s*\&/) {
6700 WARN("SIZEOF_ADDRESS",
6701 "sizeof(& should be avoided\n" . $herecurr);
6704 # check for sizeof without parenthesis
6705 if ($line =~ /\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/) {
6706 if (WARN("SIZEOF_PARENTHESIS",
6707 "sizeof $1 should be sizeof($1)\n" . $herecurr) &&
6709 $fixed[$fixlinenr] =~ s/\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/"sizeof(" . trim($1) . ")"/ex;
6713 # check for struct spinlock declarations
6714 if ($line =~ /^.\s*\bstruct\s+spinlock\s+\w+\s*;/) {
6715 WARN("USE_SPINLOCK_T",
6716 "struct spinlock should be spinlock_t\n" . $herecurr);
6719 # check for seq_printf uses that could be seq_puts
6720 if ($sline =~ /\bseq_printf\s*\(.*"\s*\)\s*;\s*$/) {
6721 my $fmt = get_quoted_string($line, $rawline);
6724 if (WARN("PREFER_SEQ_PUTS",
6725 "Prefer seq_puts to seq_printf\n" . $herecurr) &&
6727 $fixed[$fixlinenr] =~ s/\bseq_printf\b/seq_puts/;
6732 # check for vsprintf extension %p<foo> misuses
6733 if ($perl_version_ok &&
6735 $stat =~ /^\+(?![^\{]*\{\s*).*\b(\w+)\s*\(.*$String\s*,/s &&
6736 $1 !~ /^_*volatile_*$/) {
6739 my $lc = $stat =~ tr@\n@@;
6740 $lc = $lc + $linenr;
6741 for (my $count = $linenr; $count <= $lc; $count++) {
6745 my $bad_specifier = "";
6746 my $fmt = get_quoted_string($lines[$count - 1], raw_line($count, 0));
6749 while ($fmt =~ /(\%[\*\d\.]*p(\w)(\w*))/g) {
6753 if ($extension !~ /[4SsBKRraEehMmIiUDdgVCbGNOxtf]/ ||
6754 ($extension eq "f" &&
6755 defined $qualifier && $qualifier !~ /^w/) ||
6756 ($extension eq "4" &&
6757 defined $qualifier && $qualifier !~ /^cc/)) {
6758 $bad_specifier = $specifier;
6761 if ($extension eq "x" && !defined($stat_real)) {
6762 if (!defined($stat_real)) {
6763 $stat_real = get_stat_real($linenr, $lc);
6765 WARN("VSPRINTF_SPECIFIER_PX",
6766 "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");
6769 if ($bad_specifier ne "") {
6770 my $stat_real = get_stat_real($linenr, $lc);
6771 my $ext_type = "Invalid";
6773 if ($bad_specifier =~ /p[Ff]/) {
6774 $use = " - use %pS instead";
6775 $use =~ s/pS/ps/ if ($bad_specifier =~ /pf/);
6778 WARN("VSPRINTF_POINTER_EXTENSION",
6779 "$ext_type vsprintf pointer extension '$bad_specifier'$use\n" . "$here\n$stat_real\n");
6784 # Check for misused memsets
6785 if ($perl_version_ok &&
6787 $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*$FuncArg\s*\)/) {
6793 if ($ms_size =~ /^(0x|)0$/i) {
6795 "memset to 0's uses 0 as the 2nd argument, not the 3rd\n" . "$here\n$stat\n");
6796 } elsif ($ms_size =~ /^(0x|)1$/i) {
6798 "single byte memset is suspicious. Swapped 2nd/3rd argument?\n" . "$here\n$stat\n");
6802 # Check for memcpy(foo, bar, ETH_ALEN) that could be ether_addr_copy(foo, bar)
6803 # if ($perl_version_ok &&
6805 # $stat =~ /^\+(?:.*?)\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
6806 # if (WARN("PREFER_ETHER_ADDR_COPY",
6807 # "Prefer ether_addr_copy() over memcpy() if the Ethernet addresses are __aligned(2)\n" . "$here\n$stat\n") &&
6809 # $fixed[$fixlinenr] =~ s/\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/ether_addr_copy($2, $7)/;
6813 # Check for memcmp(foo, bar, ETH_ALEN) that could be ether_addr_equal*(foo, bar)
6814 # if ($perl_version_ok &&
6816 # $stat =~ /^\+(?:.*?)\bmemcmp\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
6817 # WARN("PREFER_ETHER_ADDR_EQUAL",
6818 # "Prefer ether_addr_equal() or ether_addr_equal_unaligned() over memcmp()\n" . "$here\n$stat\n")
6821 # check for memset(foo, 0x0, ETH_ALEN) that could be eth_zero_addr
6822 # check for memset(foo, 0xFF, ETH_ALEN) that could be eth_broadcast_addr
6823 # if ($perl_version_ok &&
6825 # $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
6829 # if ($ms_val =~ /^(?:0x|)0+$/i) {
6830 # if (WARN("PREFER_ETH_ZERO_ADDR",
6831 # "Prefer eth_zero_addr over memset()\n" . "$here\n$stat\n") &&
6833 # $fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_zero_addr($2)/;
6835 # } elsif ($ms_val =~ /^(?:0xff|255)$/i) {
6836 # if (WARN("PREFER_ETH_BROADCAST_ADDR",
6837 # "Prefer eth_broadcast_addr() over memset()\n" . "$here\n$stat\n") &&
6839 # $fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_broadcast_addr($2)/;
6844 # strlcpy uses that should likely be strscpy
6845 if ($line =~ /\bstrlcpy\s*\(/) {
6847 "Prefer strscpy over strlcpy - see: https://lore.kernel.org/r/CAHk-=wgfRnXz0W3D37d01q3JFkr_i_uTL=V6A6G1oUZcprmknw\@mail.gmail.com/\n" . $herecurr);
6850 # typecasts on min/max could be min_t/max_t
6851 if ($perl_version_ok &&
6853 $stat =~ /^\+(?:.*?)\b(min|max)\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\)/) {
6854 if (defined $2 || defined $7) {
6856 my $cast1 = deparenthesize($2);
6858 my $cast2 = deparenthesize($7);
6862 if ($cast1 ne "" && $cast2 ne "" && $cast1 ne $cast2) {
6863 $cast = "$cast1 or $cast2";
6864 } elsif ($cast1 ne "") {
6870 "$call() should probably be ${call}_t($cast, $arg1, $arg2)\n" . "$here\n$stat\n");
6874 # check usleep_range arguments
6875 if ($perl_version_ok &&
6877 $stat =~ /^\+(?:.*?)\busleep_range\s*\(\s*($FuncArg)\s*,\s*($FuncArg)\s*\)/) {
6881 WARN("USLEEP_RANGE",
6882 "usleep_range should not use min == max args; see Documentation/timers/timers-howto.rst\n" . "$here\n$stat\n");
6883 } elsif ($min =~ /^\d+$/ && $max =~ /^\d+$/ &&
6885 WARN("USLEEP_RANGE",
6886 "usleep_range args reversed, use min then max; see Documentation/timers/timers-howto.rst\n" . "$here\n$stat\n");
6890 # check for naked sscanf
6891 if ($perl_version_ok &&
6893 $line =~ /\bsscanf\b/ &&
6894 ($stat !~ /$Ident\s*=\s*sscanf\s*$balanced_parens/ &&
6895 $stat !~ /\bsscanf\s*$balanced_parens\s*(?:$Compare)/ &&
6896 $stat !~ /(?:$Compare)\s*\bsscanf\s*$balanced_parens/)) {
6897 my $lc = $stat =~ tr@\n@@;
6898 $lc = $lc + $linenr;
6899 my $stat_real = get_stat_real($linenr, $lc);
6900 WARN("NAKED_SSCANF",
6901 "unchecked sscanf return value\n" . "$here\n$stat_real\n");
6904 # check for simple sscanf that should be kstrto<foo>
6905 if ($perl_version_ok &&
6907 $line =~ /\bsscanf\b/) {
6908 my $lc = $stat =~ tr@\n@@;
6909 $lc = $lc + $linenr;
6910 my $stat_real = get_stat_real($linenr, $lc);
6911 if ($stat_real =~ /\bsscanf\b\s*\(\s*$FuncArg\s*,\s*("[^"]+")/) {
6913 my $count = $format =~ tr@%@%@;
6915 $format =~ /^"\%(?i:ll[udxi]|[udxi]ll|ll|[hl]h?[udxi]|[udxi][hl]h?|[hl]h?|[udxi])"$/) {
6916 WARN("SSCANF_TO_KSTRTO",
6917 "Prefer kstrto<type> to single variable sscanf\n" . "$here\n$stat_real\n");
6922 # check for new externs in .h files.
6923 if ($realfile =~ /\.h$/ &&
6924 $line =~ /^\+\s*(extern\s+)$Type\s*$Ident\s*\(/s) {
6925 if (CHK("AVOID_EXTERNS",
6926 "extern prototypes should be avoided in .h files\n" . $herecurr) &&
6928 $fixed[$fixlinenr] =~ s/(.*)\bextern\b\s*(.*)/$1$2/;
6932 # check for new externs in .c files.
6933 if ($realfile =~ /\.c$/ && defined $stat &&
6934 $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s)
6936 my $function_name = $1;
6937 my $paren_space = $2;
6940 if (defined $cond) {
6941 substr($s, 0, length($cond), '');
6945 WARN("AVOID_EXTERNS",
6946 "externs should be avoided in .c files\n" . $herecurr);
6949 if ($paren_space =~ /\n/) {
6950 WARN("FUNCTION_ARGUMENTS",
6951 "arguments for function declarations should follow identifier\n" . $herecurr);
6954 } elsif ($realfile =~ /\.c$/ && defined $stat &&
6955 $stat =~ /^.\s*extern\s+/)
6957 WARN("AVOID_EXTERNS",
6958 "externs should be avoided in .c files\n" . $herecurr);
6961 # check for function declarations that have arguments without identifier names
6962 if (defined $stat &&
6963 $stat =~ /^.\s*(?:extern\s+)?$Type\s*(?:$Ident|\(\s*\*\s*$Ident\s*\))\s*\(\s*([^{]+)\s*\)\s*;/s &&
6965 my $args = trim($1);
6966 while ($args =~ m/\s*($Type\s*(?:$Ident|\(\s*\*\s*$Ident?\s*\)\s*$balanced_parens)?)/g) {
6968 if ($arg =~ /^$Type$/ && $arg !~ /enum\s+$Ident$/) {
6969 WARN("FUNCTION_ARGUMENTS",
6970 "function definition argument '$arg' should also have an identifier name\n" . $herecurr);
6975 # check for function definitions
6976 if ($perl_version_ok &&
6978 $stat =~ /^.\s*(?:$Storage\s+)?$Type\s*($Ident)\s*$balanced_parens\s*{/s) {
6979 $context_function = $1;
6981 # check for multiline function definition with misplaced open brace
6983 my $cnt = statement_rawlines($stat);
6984 my $herectx = $here . "\n";
6985 for (my $n = 0; $n < $cnt; $n++) {
6986 my $rl = raw_line($linenr, $n);
6987 $herectx .= $rl . "\n";
6988 $ok = 1 if ($rl =~ /^[ \+]\{/);
6989 $ok = 1 if ($rl =~ /\{/ && $n == 0);
6990 last if $rl =~ /^[ \+].*\{/;
6994 "open brace '{' following function definitions go on the next line\n" . $herectx);
6998 # checks for new __setup's
6999 if ($rawline =~ /\b__setup\("([^"]*)"/) {
7002 if (!grep(/$name/, @setup_docs)) {
7003 CHK("UNDOCUMENTED_SETUP",
7004 "__setup appears un-documented -- check Documentation/admin-guide/kernel-parameters.txt\n" . $herecurr);
7008 # check for pointless casting of alloc functions
7009 if ($line =~ /\*\s*\)\s*$allocFunctions\b/) {
7010 WARN("UNNECESSARY_CASTS",
7011 "unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
7015 # p = alloc(sizeof(struct foo), ...) should be p = alloc(sizeof(*p), ...)
7016 if ($perl_version_ok &&
7017 $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*((?:kv|k|v)[mz]alloc(?:_node)?)\s*\(\s*(sizeof\s*\(\s*struct\s+$Lval\s*\))/) {
7018 CHK("ALLOC_SIZEOF_STRUCT",
7019 "Prefer $3(sizeof(*$1)...) over $3($4...)\n" . $herecurr);
7022 # check for k[mz]alloc with multiplies that could be kmalloc_array/kcalloc
7023 if ($perl_version_ok &&
7025 $stat =~ /^\+\s*($Lval)\s*\=\s*(?:$balanced_parens)?\s*(k[mz]alloc)\s*\(\s*($FuncArg)\s*\*\s*($FuncArg)\s*,/) {
7029 my $newfunc = "kmalloc_array";
7030 $newfunc = "kcalloc" if ($oldfunc eq "kzalloc");
7033 if ($a1 =~ /^sizeof\s*\S/) {
7037 if ($r1 !~ /^sizeof\b/ && $r2 =~ /^sizeof\s*\S/ &&
7038 !($r1 =~ /^$Constant$/ || $r1 =~ /^[A-Z_][A-Z0-9_]*$/)) {
7039 my $cnt = statement_rawlines($stat);
7040 my $herectx = get_stat_here($linenr, $cnt, $here);
7042 if (WARN("ALLOC_WITH_MULTIPLY",
7043 "Prefer $newfunc over $oldfunc with multiply\n" . $herectx) &&
7046 $fixed[$fixlinenr] =~ s/\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*(k[mz]alloc)\s*\(\s*($FuncArg)\s*\*\s*($FuncArg)/$1 . ' = ' . "$newfunc(" . trim($r1) . ', ' . trim($r2)/e;
7051 # check for krealloc arg reuse
7052 if ($perl_version_ok &&
7053 $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*krealloc\s*\(\s*($Lval)\s*,/ &&
7055 WARN("KREALLOC_ARG_REUSE",
7056 "Reusing the krealloc arg is almost always a bug\n" . $herecurr);
7059 # check for alloc argument mismatch
7060 if ($line =~ /\b((?:devm_)?(?:kcalloc|kmalloc_array))\s*\(\s*sizeof\b/) {
7061 WARN("ALLOC_ARRAY_ARGS",
7062 "$1 uses number as first arg, sizeof is generally wrong\n" . $herecurr);
7065 # check for multiple semicolons
7066 if ($line =~ /;\s*;\s*$/) {
7067 if (WARN("ONE_SEMICOLON",
7068 "Statements terminations use 1 semicolon\n" . $herecurr) &&
7070 $fixed[$fixlinenr] =~ s/(\s*;\s*){2,}$/;/g;
7074 # check for #defines like: 1 << <digit> that could be BIT(digit), it is not exported to uapi
7075 if ($realfile !~ m@^include/uapi/@ &&
7076 $line =~ /#\s*define\s+\w+\s+\(?\s*1\s*([ulUL]*)\s*\<\<\s*(?:\d+|$Ident)\s*\)?/) {
7078 $ull = "_ULL" if (defined($1) && $1 =~ /ll/i);
7079 if (CHK("BIT_MACRO",
7080 "Prefer using the BIT$ull macro\n" . $herecurr) &&
7082 $fixed[$fixlinenr] =~ s/\(?\s*1\s*[ulUL]*\s*<<\s*(\d+|$Ident)\s*\)?/BIT${ull}($1)/;
7086 # check for IS_ENABLED() without CONFIG_<FOO> ($rawline for comments too)
7087 if ($rawline =~ /\bIS_ENABLED\s*\(\s*(\w+)\s*\)/ && $1 !~ /^${CONFIG_}/) {
7088 WARN("IS_ENABLED_CONFIG",
7089 "IS_ENABLED($1) is normally used as IS_ENABLED(${CONFIG_}$1)\n" . $herecurr);
7092 # check for #if defined CONFIG_<FOO> || defined CONFIG_<FOO>_MODULE
7093 if ($line =~ /^\+\s*#\s*if\s+defined(?:\s*\(?\s*|\s+)(${CONFIG_}[A-Z_]+)\s*\)?\s*\|\|\s*defined(?:\s*\(?\s*|\s+)\1_MODULE\s*\)?\s*$/) {
7095 if (WARN("PREFER_IS_ENABLED",
7096 "Prefer IS_ENABLED(<FOO>) to ${CONFIG_}<FOO> || ${CONFIG_}<FOO>_MODULE\n" . $herecurr) &&
7098 $fixed[$fixlinenr] = "\+#if IS_ENABLED($config)";
7102 # check for /* fallthrough */ like comment, prefer fallthrough;
7103 my @fallthroughs = (
7106 'lint -fallthrough[ \t]*',
7107 'intentional(?:ly)?[ \t]*fall(?:(?:s | |-)[Tt]|t)hr(?:ough|u|ew)',
7108 '(?:else,?\s*)?FALL(?:S | |-)?THR(?:OUGH|U|EW)[ \t.!]*(?:-[^\n\r]*)?',
7109 'Fall(?:(?:s | |-)[Tt]|t)hr(?:ough|u|ew)[ \t.!]*(?:-[^\n\r]*)?',
7110 'fall(?:s | |-)?thr(?:ough|u|ew)[ \t.!]*(?:-[^\n\r]*)?',
7112 if ($raw_comment ne '') {
7113 foreach my $ft (@fallthroughs) {
7114 if ($raw_comment =~ /$ft/) {
7115 my $msg_level = \&WARN;
7116 $msg_level = \&CHK if ($file);
7117 &{$msg_level}("PREFER_FALLTHROUGH",
7118 "Prefer 'fallthrough;' over fallthrough comment\n" . $herecurr);
7124 # check for switch/default statements without a break;
7125 if ($perl_version_ok &&
7127 $stat =~ /^\+[$;\s]*(?:case[$;\s]+\w+[$;\s]*:[$;\s]*|)*[$;\s]*\bdefault[$;\s]*:[$;\s]*;/g) {
7128 my $cnt = statement_rawlines($stat);
7129 my $herectx = get_stat_here($linenr, $cnt, $here);
7131 WARN("DEFAULT_NO_BREAK",
7132 "switch default: should use break\n" . $herectx);
7135 # check for gcc specific __FUNCTION__
7136 if ($line =~ /\b__FUNCTION__\b/) {
7137 if (WARN("USE_FUNC",
7138 "__func__ should be used instead of gcc specific __FUNCTION__\n" . $herecurr) &&
7140 $fixed[$fixlinenr] =~ s/\b__FUNCTION__\b/__func__/g;
7144 # check for uses of __DATE__, __TIME__, __TIMESTAMP__
7145 while ($line =~ /\b(__(?:DATE|TIME|TIMESTAMP)__)\b/g) {
7147 "Use of the '$1' macro makes the build non-deterministic\n" . $herecurr);
7150 # check for use of yield()
7151 if ($line =~ /\byield\s*\(\s*\)/) {
7153 "Using yield() is generally wrong. See yield() kernel-doc (sched/core.c)\n" . $herecurr);
7156 # check for comparisons against true and false
7157 if ($line =~ /\+\s*(.*?)\b(true|false|$Lval)\s*(==|\!=)\s*(true|false|$Lval)\b(.*)$/i) {
7165 ($arg, $otype) = ($otype, $arg) if ($arg =~ /^(?:true|false)$/i);
7167 my $type = lc($otype);
7168 if ($type =~ /^(?:true|false)$/) {
7169 if (("$test" eq "==" && "$type" eq "true") ||
7170 ("$test" eq "!=" && "$type" eq "false")) {
7174 CHK("BOOL_COMPARISON",
7175 "Using comparison to $otype is error prone\n" . $herecurr);
7177 ## maybe suggesting a correct construct would better
7178 ## "Using comparison to $otype is error prone. Perhaps use '${lead}${op}${arg}${trail}'\n" . $herecurr);
7183 # check for semaphores initialized locked
7184 if ($line =~ /^.\s*sema_init.+,\W?0\W?\)/) {
7185 WARN("CONSIDER_COMPLETION",
7186 "consider using a completion\n" . $herecurr);
7189 # recommend kstrto* over simple_strto* and strict_strto*
7190 if ($line =~ /\b((simple|strict)_(strto(l|ll|ul|ull)))\s*\(/) {
7191 WARN("CONSIDER_KSTRTO",
7192 "$1 is obsolete, use k$3 instead\n" . $herecurr);
7195 # check for __initcall(), use device_initcall() explicitly or more appropriate function please
7196 if ($line =~ /^.\s*__initcall\s*\(/) {
7197 WARN("USE_DEVICE_INITCALL",
7198 "please use device_initcall() or more appropriate function instead of __initcall() (see include/linux/init.h)\n" . $herecurr);
7201 # check for spin_is_locked(), suggest lockdep instead
7202 if ($line =~ /\bspin_is_locked\(/) {
7204 "Where possible, use lockdep_assert_held instead of assertions based on spin_is_locked\n" . $herecurr);
7207 # check for deprecated apis
7208 if ($line =~ /\b($deprecated_apis_search)\b\s*\(/) {
7209 my $deprecated_api = $1;
7210 my $new_api = $deprecated_apis{$deprecated_api};
7211 WARN("DEPRECATED_API",
7212 "Deprecated use of '$deprecated_api', prefer '$new_api' instead\n" . $herecurr);
7215 # check for various structs that are normally const (ops, kgdb, device_tree)
7216 # and avoid what seem like struct definitions 'struct foo {'
7217 if (defined($const_structs) &&
7218 $line !~ /\bconst\b/ &&
7219 $line =~ /\bstruct\s+($const_structs)\b(?!\s*\{)/) {
7220 WARN("CONST_STRUCT",
7221 "struct $1 should normally be const\n" . $herecurr);
7224 # use of NR_CPUS is usually wrong
7225 # ignore definitions of NR_CPUS and usage to define arrays as likely right
7226 # ignore designated initializers using NR_CPUS
7227 if ($line =~ /\bNR_CPUS\b/ &&
7228 $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ &&
7229 $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ &&
7230 $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ &&
7231 $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ &&
7232 $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/ &&
7233 $line !~ /^.\s*\.\w+\s*=\s*.*\bNR_CPUS\b/)
7236 "usage of NR_CPUS is often wrong - consider using cpu_possible(), num_possible_cpus(), for_each_possible_cpu(), etc\n" . $herecurr);
7239 # Use of __ARCH_HAS_<FOO> or ARCH_HAVE_<BAR> is wrong.
7240 if ($line =~ /\+\s*#\s*define\s+((?:__)?ARCH_(?:HAS|HAVE)\w*)\b/) {
7241 ERROR("DEFINE_ARCH_HAS",
7242 "#define of '$1' is wrong - use Kconfig variables or standard guards instead\n" . $herecurr);
7245 # likely/unlikely comparisons similar to "(likely(foo) > 0)"
7246 if ($perl_version_ok &&
7247 $line =~ /\b((?:un)?likely)\s*\(\s*$FuncArg\s*\)\s*$Compare/) {
7248 WARN("LIKELY_MISUSE",
7249 "Using $1 should generally have parentheses around the comparison\n" . $herecurr);
7252 # return sysfs_emit(foo, fmt, ...) fmt without newline
7253 if ($line =~ /\breturn\s+sysfs_emit\s*\(\s*$FuncArg\s*,\s*($String)/ &&
7254 substr($rawline, $-[6], $+[6] - $-[6]) !~ /\\n"$/) {
7255 my $offset = $+[6] - 1;
7256 if (WARN("SYSFS_EMIT",
7257 "return sysfs_emit(...) formats should include a terminating newline\n" . $herecurr) &&
7259 substr($fixed[$fixlinenr], $offset, 0) = '\\n';
7263 # nested likely/unlikely calls
7264 if ($line =~ /\b(?:(?:un)?likely)\s*\(\s*!?\s*(IS_ERR(?:_OR_NULL|_VALUE)?|WARN)/) {
7265 WARN("LIKELY_MISUSE",
7266 "nested (un)?likely() calls, $1 already uses unlikely() internally\n" . $herecurr);
7269 # whine mightly about in_atomic
7270 if ($line =~ /\bin_atomic\s*\(/) {
7271 if ($realfile =~ m@^drivers/@) {
7273 "do not use in_atomic in drivers\n" . $herecurr);
7274 } elsif ($realfile !~ m@^kernel/@) {
7276 "use of in_atomic() is incorrect outside core kernel code\n" . $herecurr);
7280 # check for lockdep_set_novalidate_class
7281 if ($line =~ /^.\s*lockdep_set_novalidate_class\s*\(/ ||
7282 $line =~ /__lockdep_no_validate__\s*\)/ ) {
7283 if ($realfile !~ m@^kernel/lockdep@ &&
7284 $realfile !~ m@^include/linux/lockdep@ &&
7285 $realfile !~ m@^drivers/base/core@) {
7287 "lockdep_no_validate class is reserved for device->mutex.\n" . $herecurr);
7291 if ($line =~ /debugfs_create_\w+.*\b$mode_perms_world_writable\b/ ||
7292 $line =~ /DEVICE_ATTR.*\b$mode_perms_world_writable\b/) {
7293 WARN("EXPORTED_WORLD_WRITABLE",
7294 "Exporting world writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr);
7297 # check for DEVICE_ATTR uses that could be DEVICE_ATTR_<FOO>
7298 # and whether or not function naming is typical and if
7299 # DEVICE_ATTR permissions uses are unusual too
7300 if ($perl_version_ok &&
7302 $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*\)/) {
7307 my $octal_perms = perms_to_octal($perms);
7308 if ($show =~ /^${var}_show$/ &&
7309 $store =~ /^${var}_store$/ &&
7310 $octal_perms eq "0644") {
7311 if (WARN("DEVICE_ATTR_RW",
7312 "Use DEVICE_ATTR_RW\n" . $herecurr) &&
7314 $fixed[$fixlinenr] =~ s/\bDEVICE_ATTR\s*\(\s*$var\s*,\s*\Q$perms\E\s*,\s*$show\s*,\s*$store\s*\)/DEVICE_ATTR_RW(${var})/;
7316 } elsif ($show =~ /^${var}_show$/ &&
7317 $store =~ /^NULL$/ &&
7318 $octal_perms eq "0444") {
7319 if (WARN("DEVICE_ATTR_RO",
7320 "Use DEVICE_ATTR_RO\n" . $herecurr) &&
7322 $fixed[$fixlinenr] =~ s/\bDEVICE_ATTR\s*\(\s*$var\s*,\s*\Q$perms\E\s*,\s*$show\s*,\s*NULL\s*\)/DEVICE_ATTR_RO(${var})/;
7324 } elsif ($show =~ /^NULL$/ &&
7325 $store =~ /^${var}_store$/ &&
7326 $octal_perms eq "0200") {
7327 if (WARN("DEVICE_ATTR_WO",
7328 "Use DEVICE_ATTR_WO\n" . $herecurr) &&
7330 $fixed[$fixlinenr] =~ s/\bDEVICE_ATTR\s*\(\s*$var\s*,\s*\Q$perms\E\s*,\s*NULL\s*,\s*$store\s*\)/DEVICE_ATTR_WO(${var})/;
7332 } elsif ($octal_perms eq "0644" ||
7333 $octal_perms eq "0444" ||
7334 $octal_perms eq "0200") {
7335 my $newshow = "$show";
7336 $newshow = "${var}_show" if ($show ne "NULL" && $show ne "${var}_show");
7337 my $newstore = $store;
7338 $newstore = "${var}_store" if ($store ne "NULL" && $store ne "${var}_store");
7340 if ($show ne $newshow) {
7341 $rename .= " '$show' to '$newshow'";
7343 if ($store ne $newstore) {
7344 $rename .= " '$store' to '$newstore'";
7346 WARN("DEVICE_ATTR_FUNCTIONS",
7347 "Consider renaming function(s)$rename\n" . $herecurr);
7349 WARN("DEVICE_ATTR_PERMS",
7350 "DEVICE_ATTR unusual permissions '$perms' used\n" . $herecurr);
7354 # Mode permission misuses where it seems decimal should be octal
7355 # This uses a shortcut match to avoid unnecessary uses of a slow foreach loop
7356 # o Ignore module_param*(...) uses with a decimal 0 permission as that has a
7357 # specific definition of not visible in sysfs.
7358 # o Ignore proc_create*(...) uses with a decimal 0 permission as that means
7359 # use the default permissions
7360 if ($perl_version_ok &&
7362 $line =~ /$mode_perms_search/) {
7363 foreach my $entry (@mode_permission_funcs) {
7364 my $func = $entry->[0];
7365 my $arg_pos = $entry->[1];
7367 my $lc = $stat =~ tr@\n@@;
7368 $lc = $lc + $linenr;
7369 my $stat_real = get_stat_real($linenr, $lc);
7374 $skip_args = "(?:\\s*$FuncArg\\s*,\\s*){$arg_pos,$arg_pos}";
7376 my $test = "\\b$func\\s*\\(${skip_args}($FuncArg(?:\\|\\s*$FuncArg)*)\\s*[,\\)]";
7377 if ($stat =~ /$test/) {
7379 $val = $6 if ($skip_args ne "");
7380 if (!($func =~ /^(?:module_param|proc_create)/ && $val eq "0") &&
7381 (($val =~ /^$Int$/ && $val !~ /^$Octal$/) ||
7382 ($val =~ /^$Octal$/ && length($val) ne 4))) {
7383 ERROR("NON_OCTAL_PERMISSIONS",
7384 "Use 4 digit octal (0777) not decimal permissions\n" . "$here\n" . $stat_real);
7386 if ($val =~ /^$Octal$/ && (oct($val) & 02)) {
7387 ERROR("EXPORTED_WORLD_WRITABLE",
7388 "Exporting writable files is usually an error. Consider more restrictive permissions.\n" . "$here\n" . $stat_real);
7394 # check for uses of S_<PERMS> that could be octal for readability
7395 while ($line =~ m{\b($multi_mode_perms_string_search)\b}g) {
7397 my $octal = perms_to_octal($oval);
7398 if (WARN("SYMBOLIC_PERMS",
7399 "Symbolic permissions '$oval' are not preferred. Consider using octal permissions '$octal'.\n" . $herecurr) &&
7401 $fixed[$fixlinenr] =~ s/\Q$oval\E/$octal/;
7405 # validate content of MODULE_LICENSE against list from include/linux/module.h
7406 if ($line =~ /\bMODULE_LICENSE\s*\(\s*($String)\s*\)/) {
7407 my $extracted_string = get_quoted_string($line, $rawline);
7408 my $valid_licenses = qr{
7411 GPL\ and\ additional\ rights|
7417 if ($extracted_string !~ /^"(?:$valid_licenses)"$/x) {
7418 WARN("MODULE_LICENSE",
7419 "unknown module license " . $extracted_string . "\n" . $herecurr);
7423 # check for sysctl duplicate constants
7424 if ($line =~ /\.extra[12]\s*=\s*&(zero|one|int_max)\b/) {
7425 WARN("DUPLICATED_SYSCTL_CONST",
7426 "duplicated sysctl range checking value '$1', consider using the shared one in include/linux/sysctl.h\n" . $herecurr);
7430 # If we have no input at all, then there is nothing to report on
7431 # so just keep quiet.
7432 if ($#rawlines == -1) {
7436 # In mailback mode only produce a report in the negative, for
7437 # things that appear to be patches.
7438 if ($mailback && ($clean == 1 || !$is_patch)) {
7442 # This is not a patch, and we are in 'no-patch' mode so
7444 if (!$chk_patch && !$is_patch) {
7448 if (!$is_patch && $filename !~ /cover-letter\.patch$/) {
7449 ERROR("NOT_UNIFIED_DIFF",
7450 "Does not appear to be a unified-diff format patch\n");
7452 if ($is_patch && $has_commit_log && $chk_signoff) {
7453 if ($signoff == 0) {
7454 ERROR("MISSING_SIGN_OFF",
7455 "Missing Signed-off-by: line(s)\n");
7456 } elsif ($authorsignoff != 1) {
7457 # authorsignoff values:
7458 # 0 -> missing sign off
7459 # 1 -> sign off identical
7460 # 2 -> names and addresses match, comments mismatch
7461 # 3 -> addresses match, names different
7462 # 4 -> names match, addresses different
7463 # 5 -> names match, addresses excluding subaddress details (refer RFC 5233) match
7465 my $sob_msg = "'From: $author' != 'Signed-off-by: $author_sob'";
7467 if ($authorsignoff == 0) {
7468 ERROR("NO_AUTHOR_SIGN_OFF",
7469 "Missing Signed-off-by: line by nominal patch author '$author'\n");
7470 } elsif ($authorsignoff == 2) {
7471 CHK("FROM_SIGN_OFF_MISMATCH",
7472 "From:/Signed-off-by: email comments mismatch: $sob_msg\n");
7473 } elsif ($authorsignoff == 3) {
7474 WARN("FROM_SIGN_OFF_MISMATCH",
7475 "From:/Signed-off-by: email name mismatch: $sob_msg\n");
7476 } elsif ($authorsignoff == 4) {
7477 WARN("FROM_SIGN_OFF_MISMATCH",
7478 "From:/Signed-off-by: email address mismatch: $sob_msg\n");
7479 } elsif ($authorsignoff == 5) {
7480 WARN("FROM_SIGN_OFF_MISMATCH",
7481 "From:/Signed-off-by: email subaddress mismatch: $sob_msg\n");
7486 print report_dump();
7487 if ($summary && !($clean == 1 && $quiet == 1)) {
7488 print "$filename " if ($summary_file);
7489 print "total: $cnt_error errors, $cnt_warn warnings, " .
7490 (($check)? "$cnt_chk checks, " : "") .
7491 "$cnt_lines lines checked\n";
7495 # If there were any defects found and not already fixing them
7496 if (!$clean and !$fix) {
7499 NOTE: For some of the reported defects, checkpatch may be able to
7500 mechanically convert to the typical style using --fix or --fix-inplace.
7503 # If there were whitespace errors which cleanpatch can fix
7504 # then suggest that.
7505 if ($rpt_cleaners) {
7509 NOTE: Whitespace errors detected.
7510 You may wish to use scripts/cleanpatch or scripts/cleanfile
7515 if ($clean == 0 && $fix &&
7516 ("@rawlines" ne "@fixed" ||
7517 $#fixed_inserted >= 0 || $#fixed_deleted >= 0)) {
7518 my $newfile = $filename;
7519 $newfile .= ".EXPERIMENTAL-checkpatch-fixes" if (!$fix_inplace);
7523 @fixed = fix_inserted_deleted_lines(\@fixed, \@fixed_inserted, \@fixed_deleted);
7525 open($f, '>', $newfile)
7526 or die "$P: Can't open $newfile for write\n";
7527 foreach my $fixed_line (@fixed) {
7530 if ($linecount > 3) {
7531 $fixed_line =~ s/^\+//;
7532 print $f $fixed_line . "\n";
7535 print $f $fixed_line . "\n";
7543 Wrote EXPERIMENTAL --fix correction(s) to '$newfile'
7545 Do _NOT_ trust the results written to this file.
7546 Do _NOT_ submit these changes without inspecting them for correctness.
7548 This EXPERIMENTAL file is simply a convenience to help rewrite patches.
7549 No warranties, expressed or implied...
7557 print "$vname has no obvious style problems and is ready for submission.\n";
7559 print "$vname has style problems, please review.\n";