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);
46 my $gitroot = $ENV{'GIT_DIR'};
47 $gitroot = ".git" if !defined($gitroot);
55 my $configuration_file = ".checkpatch.conf";
56 my $max_line_length = 100;
57 my $ignore_perl_version = 0;
58 my $minimum_perl_version = 5.10.0;
59 my $min_conf_desc_length = 4;
60 my $spelling_file = "$D/spelling.txt";
62 my $codespellfile = "/usr/share/codespell/dictionary.txt";
63 my $conststructsfile = "$D/const_structs.checkpatch";
66 my $allow_c99_comments = 1; # Can be overridden by --ignore C99_COMMENT_TOLERANCE
67 # git output parsing needs US English output, so first set backtick child process LANGUAGE
68 my $git_command ='export LANGUAGE=en_US.UTF-8; git';
70 my ${CONFIG_} = "CONFIG_";
76 Usage: $P [OPTION]... [FILE]...
81 --no-tree run without a kernel tree
82 --no-signoff do not check for 'Signed-off-by' line
83 --patch treat FILE as patchfile (default)
84 --emacs emacs compile window format
85 --terse one line per report
86 --showfile emit diffed file position, not input file position
87 -g, --git treat FILE as a single commit or git revision range
88 single git commit with:
92 multiple git commits with:
96 git merges are ignored
97 -f, --file treat FILE as regular source file
98 --subjective, --strict enable more subjective tests
99 --list-types list the possible message types
100 --types TYPE(,TYPE2...) show only these comma separated message types
101 --ignore TYPE(,TYPE2...) ignore various comma separated message types
102 --show-types show the specific message type in the output
103 --max-line-length=n set the maximum line length, (default $max_line_length)
104 if exceeded, warn on patches
105 requires --strict for use with --file
106 --min-conf-desc-length=n set the min description length, if shorter, warn
107 --tab-size=n set the number of spaces for tab (default $tabsize)
108 --root=PATH PATH to the kernel tree root
109 --no-summary suppress the per-file summary
110 --mailback only produce a report in case of warnings/errors
111 --summary-file include the filename in summary
112 --debug KEY=[0|1] turn on/off debugging of KEY, where KEY is one of
113 'values', 'possible', 'type', and 'attr' (default
115 --test-only=WORD report only warnings/errors containing WORD
117 --fix EXPERIMENTAL - may create horrible results
118 If correctable single-line errors exist, create
119 "<inputfile>.EXPERIMENTAL-checkpatch-fixes"
120 with potential errors corrected to the preferred
122 --fix-inplace EXPERIMENTAL - may create horrible results
123 Is the same as --fix, but overwrites the input
124 file. It's your fault if there's no backup or git
125 --ignore-perl-version override checking of perl version. expect
127 --codespell Use the codespell dictionary for spelling/typos
128 (default:/usr/share/codespell/dictionary.txt)
129 --codespellfile Use this codespell dictionary
130 --typedefsfile Read additional types from this file
131 --color[=WHEN] Use colors 'always', 'never', or only when output
132 is a terminal ('auto'). Default is 'auto'.
133 --kconfig-prefix=WORD use WORD as a prefix for Kconfig symbols (default
135 -h, --help, --version display this help and exit
137 When FILE is - read standard input.
145 return grep { !$seen{$_}++ } @_;
155 open(my $script, '<', abs_path($P)) or
156 die "$P: Can't read '$P' $!\n";
158 my $text = <$script>;
162 # Also catch when type or level is passed through a variable
163 for ($text =~ /(?:(?:\bCHK|\bWARN|\bERROR|&\{\$msg_level})\s*\(|\$msg_type\s*=)\s*"([^"]+)"/g) {
166 @types = sort(uniq(@types));
167 print("#\tMessage type\n\n");
168 foreach my $type (@types) {
169 print(++$count . "\t" . $type . "\n");
175 my $conf = which_conf($configuration_file);
178 open(my $conffile, '<', "$conf")
179 or warn "$P: Can't find a readable $configuration_file file $!\n";
181 while (<$conffile>) {
184 $line =~ s/\s*\n?$//g;
188 next if ($line =~ m/^\s*#/);
189 next if ($line =~ m/^\s*$/);
191 my @words = split(" ", $line);
192 foreach my $word (@words) {
193 last if ($word =~ m/^#/);
194 push (@conf_args, $word);
198 unshift(@ARGV, @conf_args) if @conf_args;
201 # Perl's Getopt::Long allows options to take optional arguments after a space.
202 # Prevent --color by itself from consuming other arguments
204 if ($_ eq "--color" || $_ eq "-color") {
205 $_ = "--color=$color";
210 'q|quiet+' => \$quiet,
212 'signoff!' => \$chk_signoff,
213 'patch!' => \$chk_patch,
216 'showfile!' => \$showfile,
219 'subjective!' => \$check,
220 'strict!' => \$check,
221 'ignore=s' => \@ignore,
223 'show-types!' => \$show_types,
224 'list-types!' => \$list_types,
225 'max-line-length=i' => \$max_line_length,
226 'min-conf-desc-length=i' => \$min_conf_desc_length,
227 'tab-size=i' => \$tabsize,
229 'summary!' => \$summary,
230 'mailback!' => \$mailback,
231 'summary-file!' => \$summary_file,
233 'fix-inplace!' => \$fix_inplace,
234 'ignore-perl-version!' => \$ignore_perl_version,
235 'debug=s' => \%debug,
236 'test-only=s' => \$tst_only,
237 'codespell!' => \$codespell,
238 'codespellfile=s' => \$codespellfile,
239 'typedefsfile=s' => \$typedefsfile,
240 'color=s' => \$color,
241 'no-color' => \$color, #keep old behaviors of -nocolor
242 'nocolor' => \$color, #keep old behaviors of -nocolor
243 'kconfig-prefix=s' => \${CONFIG_},
250 list_types(0) if ($list_types);
252 $fix = 1 if ($fix_inplace);
253 $check_orig = $check;
255 die "$P: --git cannot be used with --file or --fix\n" if ($git && ($file || $fix));
259 my $perl_version_ok = 1;
260 if ($^V && $^V lt $minimum_perl_version) {
261 $perl_version_ok = 0;
262 printf "$P: requires at least perl version %vd\n", $minimum_perl_version;
263 exit(1) if (!$ignore_perl_version);
266 #if no filenames are given, push '-' to read patch from stdin
271 if ($color =~ /^[01]$/) {
273 } elsif ($color =~ /^always$/i) {
275 } elsif ($color =~ /^never$/i) {
277 } elsif ($color =~ /^auto$/i) {
278 $color = (-t STDOUT);
280 die "$P: Invalid color mode: $color\n";
283 # skip TAB size 1 to avoid additional checks on $tabsize - 1
284 die "$P: Invalid TAB size: $tabsize\n" if ($tabsize < 2);
286 sub hash_save_array_words {
287 my ($hashRef, $arrayRef) = @_;
289 my @array = split(/,/, join(',', @$arrayRef));
290 foreach my $word (@array) {
291 $word =~ s/\s*\n?$//g;
294 $word =~ tr/[a-z]/[A-Z]/;
296 next if ($word =~ m/^\s*#/);
297 next if ($word =~ m/^\s*$/);
303 sub hash_show_words {
304 my ($hashRef, $prefix) = @_;
306 if (keys %$hashRef) {
307 print "\nNOTE: $prefix message types:";
308 foreach my $word (sort keys %$hashRef) {
315 hash_save_array_words(\%ignore_type, \@ignore);
316 hash_save_array_words(\%use_type, \@use);
319 my $dbg_possible = 0;
322 for my $key (keys %debug) {
324 eval "\${dbg_$key} = '$debug{$key}';";
328 my $rpt_cleaners = 0;
337 if (!top_of_kernel_tree($root)) {
338 die "$P: $root: --root does not point at a valid tree\n";
341 if (top_of_kernel_tree('.')) {
343 } elsif ($0 =~ m@(.*)/scripts/[^/]*$@ &&
344 top_of_kernel_tree($1)) {
349 if (!defined $root) {
350 print "Must be run from the top-level dir. of a kernel tree\n";
355 my $emitted_corrupt = 0;
358 [A-Za-z_][A-Za-z\d_]*
359 (?:\s*\#\#\s*[A-Za-z_][A-Za-z\d_]*)*
361 our $Storage = qr{extern|static|asmlinkage};
375 our $InitAttributePrefix = qr{__(?:mem|cpu|dev|net_|)};
376 our $InitAttributeData = qr{$InitAttributePrefix(?:initdata\b)};
377 our $InitAttributeConst = qr{$InitAttributePrefix(?:initconst\b)};
378 our $InitAttributeInit = qr{$InitAttributePrefix(?:init\b)};
379 our $InitAttribute = qr{$InitAttributeData|$InitAttributeConst|$InitAttributeInit};
381 # Notes to $Attribute:
382 # We need \b after 'init' otherwise 'initconst' will cause a false positive in a check
404 ____cacheline_aligned|
405 ____cacheline_aligned_in_smp|
406 ____cacheline_internodealigned_in_smp|
410 our $Inline = qr{inline|__always_inline|noinline|__inline|__inline__};
411 our $Member = qr{->$Ident|\.$Ident|\[[^]]*\]};
412 our $Lval = qr{$Ident(?:$Member)*};
414 our $Int_type = qr{(?i)llu|ull|ll|lu|ul|l|u};
415 our $Binary = qr{(?i)0b[01]+$Int_type?};
416 our $Hex = qr{(?i)0x[0-9a-f]+$Int_type?};
417 our $Int = qr{[0-9]+$Int_type?};
418 our $Octal = qr{0[0-7]+$Int_type?};
419 our $String = qr{"[X\t]*"};
420 our $Float_hex = qr{(?i)0x[0-9a-f]+p-?[0-9]+[fl]?};
421 our $Float_dec = qr{(?i)(?:[0-9]+\.[0-9]*|[0-9]*\.[0-9]+)(?:e-?[0-9]+)?[fl]?};
422 our $Float_int = qr{(?i)[0-9]+e-?[0-9]+[fl]?};
423 our $Float = qr{$Float_hex|$Float_dec|$Float_int};
424 our $Constant = qr{$Float|$Binary|$Octal|$Hex|$Int};
425 our $Assignment = qr{\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=};
426 our $Compare = qr{<=|>=|==|!=|<|(?<!-)>};
427 our $Arithmetic = qr{\+|-|\*|\/|%};
431 &&|\|\||,|\^|\+\+|--|&|\||$Arithmetic
434 our $c90_Keywords = qr{do|for|while|if|else|return|goto|continue|switch|default|case|break}x;
438 our $NonptrTypeMisordered;
439 our $NonptrTypeWithAttr;
443 our $DeclareMisordered;
445 our $NON_ASCII_UTF8 = qr{
446 [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
447 | \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
448 | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
449 | \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
450 | \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
451 | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
452 | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
456 [\x09\x0A\x0D\x20-\x7E] # ASCII
460 our $typeC99Typedefs = qr{(?:__)?(?:[us]_?)?int_?(?:8|16|32|64)_t};
461 our $typeOtherOSTypedefs = qr{(?x:
462 u_(?:char|short|int|long) | # bsd
463 u(?:nchar|short|int|long) # sysv
465 our $typeKernelTypedefs = qr{(?x:
466 (?:__)?(?:u|s|be|le)(?:8|16|32|64)|
469 our $typeTypedefs = qr{(?x:
471 $typeOtherOSTypedefs\b|
472 $typeKernelTypedefs\b
475 our $zero_initializer = qr{(?:(?:0[xX])?0+$Int_type?|NULL|false)\b};
477 our $logFunctions = qr{(?x:
478 printk(?:_ratelimited|_once|_deferred_once|_deferred|)|
479 (?:[a-z0-9]+_){1,2}(?:printk|emerg|alert|crit|err|warning|warn|notice|info|debug|dbg|vdbg|devel|cont|WARN)(?:_ratelimited|_once|)|
481 WARN(?:_RATELIMIT|_ONCE|)|
484 seq_vprintf|seq_printf|seq_puts
487 our $allocFunctions = qr{(?x:
489 (?:kv|k|v)[czm]alloc(?:_node|_array)? |
492 (?:\w+)?alloc_skb(?:_ip_align)? |
493 # dev_alloc_skb/netdev_alloc_skb, et al
497 our $signature_tags = qr{(?xi:
509 our @typeListMisordered = (
510 qr{char\s+(?:un)?signed},
511 qr{int\s+(?:(?:un)?signed\s+)?short\s},
512 qr{int\s+short(?:\s+(?:un)?signed)},
513 qr{short\s+int(?:\s+(?:un)?signed)},
514 qr{(?:un)?signed\s+int\s+short},
515 qr{short\s+(?:un)?signed},
516 qr{long\s+int\s+(?:un)?signed},
517 qr{int\s+long\s+(?:un)?signed},
518 qr{long\s+(?:un)?signed\s+int},
519 qr{int\s+(?:un)?signed\s+long},
520 qr{int\s+(?:un)?signed},
521 qr{int\s+long\s+long\s+(?:un)?signed},
522 qr{long\s+long\s+int\s+(?:un)?signed},
523 qr{long\s+long\s+(?:un)?signed\s+int},
524 qr{long\s+long\s+(?:un)?signed},
525 qr{long\s+(?:un)?signed},
530 qr{(?:(?:un)?signed\s+)?char},
531 qr{(?:(?:un)?signed\s+)?short\s+int},
532 qr{(?:(?:un)?signed\s+)?short},
533 qr{(?:(?:un)?signed\s+)?int},
534 qr{(?:(?:un)?signed\s+)?long\s+int},
535 qr{(?:(?:un)?signed\s+)?long\s+long\s+int},
536 qr{(?:(?:un)?signed\s+)?long\s+long},
537 qr{(?:(?:un)?signed\s+)?long},
546 qr{${Ident}_handler},
547 qr{${Ident}_handler_fn},
551 our $C90_int_types = qr{(?x:
552 long\s+long\s+int\s+(?:un)?signed|
553 long\s+long\s+(?:un)?signed\s+int|
554 long\s+long\s+(?:un)?signed|
555 (?:(?:un)?signed\s+)?long\s+long\s+int|
556 (?:(?:un)?signed\s+)?long\s+long|
557 int\s+long\s+long\s+(?:un)?signed|
558 int\s+(?:(?:un)?signed\s+)?long\s+long|
560 long\s+int\s+(?:un)?signed|
561 long\s+(?:un)?signed\s+int|
562 long\s+(?:un)?signed|
563 (?:(?:un)?signed\s+)?long\s+int|
564 (?:(?:un)?signed\s+)?long|
565 int\s+long\s+(?:un)?signed|
566 int\s+(?:(?:un)?signed\s+)?long|
569 (?:(?:un)?signed\s+)?int
572 our @typeListFile = ();
573 our @typeListWithAttr = (
575 qr{struct\s+$InitAttribute\s+$Ident},
576 qr{union\s+$InitAttribute\s+$Ident},
579 our @modifierList = (
582 our @modifierListFile = ();
584 our @mode_permission_funcs = (
586 ["module_param_(?:array|named|string)", 4],
587 ["module_param_array_named", 5],
588 ["debugfs_create_(?:file|u8|u16|u32|u64|x8|x16|x32|x64|size_t|atomic_t|bool|blob|regset32|u32_array)", 2],
589 ["proc_create(?:_data|)", 2],
590 ["(?:CLASS|DEVICE|SENSOR|SENSOR_DEVICE|IIO_DEVICE)_ATTR", 2],
591 ["IIO_DEV_ATTR_[A-Z_]+", 1],
592 ["SENSOR_(?:DEVICE_|)ATTR_2", 2],
593 ["SENSOR_TEMPLATE(?:_2|)", 3],
597 my $word_pattern = '\b[A-Z]?[a-z]{2,}\b';
599 #Create a search pattern for all these functions to speed up a loop below
600 our $mode_perms_search = "";
601 foreach my $entry (@mode_permission_funcs) {
602 $mode_perms_search .= '|' if ($mode_perms_search ne "");
603 $mode_perms_search .= $entry->[0];
605 $mode_perms_search = "(?:${mode_perms_search})";
607 our %deprecated_apis = (
608 "synchronize_rcu_bh" => "synchronize_rcu",
609 "synchronize_rcu_bh_expedited" => "synchronize_rcu_expedited",
610 "call_rcu_bh" => "call_rcu",
611 "rcu_barrier_bh" => "rcu_barrier",
612 "synchronize_sched" => "synchronize_rcu",
613 "synchronize_sched_expedited" => "synchronize_rcu_expedited",
614 "call_rcu_sched" => "call_rcu",
615 "rcu_barrier_sched" => "rcu_barrier",
616 "get_state_synchronize_sched" => "get_state_synchronize_rcu",
617 "cond_synchronize_sched" => "cond_synchronize_rcu",
620 #Create a search pattern for all these strings to speed up a loop below
621 our $deprecated_apis_search = "";
622 foreach my $entry (keys %deprecated_apis) {
623 $deprecated_apis_search .= '|' if ($deprecated_apis_search ne "");
624 $deprecated_apis_search .= $entry;
626 $deprecated_apis_search = "(?:${deprecated_apis_search})";
628 our $mode_perms_world_writable = qr{
636 our %mode_permission_string_types = (
655 #Create a search pattern for all these strings to speed up a loop below
656 our $mode_perms_string_search = "";
657 foreach my $entry (keys %mode_permission_string_types) {
658 $mode_perms_string_search .= '|' if ($mode_perms_string_search ne "");
659 $mode_perms_string_search .= $entry;
661 our $single_mode_perms_string_search = "(?:${mode_perms_string_search})";
662 our $multi_mode_perms_string_search = qr{
663 ${single_mode_perms_string_search}
664 (?:\s*\|\s*${single_mode_perms_string_search})*
670 return trim($string) if ($string =~ /^\s*0[0-7]{3,3}\s*$/);
677 while ($string =~ /\b(($single_mode_perms_string_search)\b(?:\s*\|\s*)?\s*)/g) {
678 $curpos = pos($string);
681 last if ($lastpos > 0 && ($curpos - length($omatch) != $lastpos));
683 $to |= $mode_permission_string_types{$match};
684 $val .= '\s*\|\s*' if ($val ne "");
688 $oval =~ s/^\s*\|\s*//;
689 $oval =~ s/\s*\|\s*$//;
690 return sprintf("%04o", $to);
693 our $allowed_asm_includes = qr{(?x:
699 # memory.h: ARM has a custom one
701 # Load common spelling mistakes and build regular expression list.
705 if (open(my $spelling, '<', $spelling_file)) {
706 while (<$spelling>) {
709 $line =~ s/\s*\n?$//g;
712 next if ($line =~ m/^\s*#/);
713 next if ($line =~ m/^\s*$/);
715 my ($suspect, $fix) = split(/\|\|/, $line);
717 $spelling_fix{$suspect} = $fix;
721 warn "No typos will be found - file '$spelling_file': $!\n";
725 if (open(my $spelling, '<', $codespellfile)) {
726 while (<$spelling>) {
729 $line =~ s/\s*\n?$//g;
732 next if ($line =~ m/^\s*#/);
733 next if ($line =~ m/^\s*$/);
734 next if ($line =~ m/, disabled/i);
738 my ($suspect, $fix) = split(/->/, $line);
740 $spelling_fix{$suspect} = $fix;
744 warn "No codespell typos will be found - file '$codespellfile': $!\n";
748 $misspellings = join("|", sort keys %spelling_fix) if keys %spelling_fix;
751 my ($wordsRef, $file) = @_;
753 if (open(my $words, '<', $file)) {
757 $line =~ s/\s*\n?$//g;
760 next if ($line =~ m/^\s*#/);
761 next if ($line =~ m/^\s*$/);
763 print("$file: '$line' invalid - ignored\n");
767 $$wordsRef .= '|' if (defined $$wordsRef);
778 if (show_type("CONST_STRUCT")) {
779 read_words(\$const_structs, $conststructsfile)
780 or warn "No structs that should be const will be found - file '$conststructsfile': $!\n";
783 if (defined($typedefsfile)) {
784 my $typeOtherTypedefs;
785 read_words(\$typeOtherTypedefs, $typedefsfile)
786 or warn "No additional types will be considered - file '$typedefsfile': $!\n";
787 $typeTypedefs .= '|' . $typeOtherTypedefs if (defined $typeOtherTypedefs);
791 my $mods = "(?x: \n" . join("|\n ", (@modifierList, @modifierListFile)) . "\n)";
792 my $all = "(?x: \n" . join("|\n ", (@typeList, @typeListFile)) . "\n)";
793 my $Misordered = "(?x: \n" . join("|\n ", @typeListMisordered) . "\n)";
794 my $allWithAttr = "(?x: \n" . join("|\n ", @typeListWithAttr) . "\n)";
795 $Modifier = qr{(?:$Attribute|$Sparse|$mods)};
801 (?:$Modifier\s+|const\s+)*
803 (?:typeof|__typeof__)\s*\([^\)]*\)|
807 (?:\s+$Modifier|\s+const)*
809 $NonptrTypeMisordered = qr{
810 (?:$Modifier\s+|const\s+)*
814 (?:\s+$Modifier|\s+const)*
816 $NonptrTypeWithAttr = qr{
817 (?:$Modifier\s+|const\s+)*
819 (?:typeof|__typeof__)\s*\([^\)]*\)|
823 (?:\s+$Modifier|\s+const)*
827 (?:(?:\s|\*|\[\])+\s*const|(?:\s|\*\s*(?:const\s*)?|\[\])+|(?:\s*\[\s*\])+){0,4}
828 (?:\s+$Inline|\s+$Modifier)*
830 $TypeMisordered = qr{
831 $NonptrTypeMisordered
832 (?:(?:\s|\*|\[\])+\s*const|(?:\s|\*\s*(?:const\s*)?|\[\])+|(?:\s*\[\s*\])+){0,4}
833 (?:\s+$Inline|\s+$Modifier)*
835 $Declare = qr{(?:$Storage\s+(?:$Inline\s+)?)?$Type};
836 $DeclareMisordered = qr{(?:$Storage\s+(?:$Inline\s+)?)?$TypeMisordered};
840 our $Typecast = qr{\s*(\(\s*$NonptrType\s*\)){0,1}\s*};
842 # Using $balanced_parens, $LvalOrFunc, or $FuncArg
843 # requires at least perl version v5.10.0
844 # Any use must be runtime checked with $^V
846 our $balanced_parens = qr/(\((?:[^\(\)]++|(?-1))*\))/;
847 our $LvalOrFunc = qr{((?:[\&\*]\s*)?$Lval)\s*($balanced_parens{0,1})\s*};
848 our $FuncArg = qr{$Typecast{0,1}($LvalOrFunc|$Constant|$String)};
850 our $declaration_macros = qr{(?x:
851 (?:$Storage\s+)?(?:[A-Z_][A-Z0-9]*_){0,2}(?:DEFINE|DECLARE)(?:_[A-Z0-9]+){1,6}\s*\(|
852 (?:$Storage\s+)?[HLP]?LIST_HEAD\s*\(|
853 (?:SKCIPHER_REQUEST|SHASH_DESC|AHASH_REQUEST)_ON_STACK\s*\(
858 return "" if (!defined($string));
860 while ($string =~ /^\s*\(.*\)\s*$/) {
861 $string =~ s@^\s*\(\s*@@;
862 $string =~ s@\s*\)\s*$@@;
865 $string =~ s@\s+@ @g;
870 sub seed_camelcase_file {
873 return if (!(-f $file));
877 open(my $include_file, '<', "$file")
878 or warn "$P: Can't read '$file' $!\n";
879 my $text = <$include_file>;
880 close($include_file);
882 my @lines = split('\n', $text);
884 foreach my $line (@lines) {
885 next if ($line !~ /(?:[A-Z][a-z]|[a-z][A-Z])/);
886 if ($line =~ /^[ \t]*(?:#[ \t]*define|typedef\s+$Type)\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)/) {
888 } elsif ($line =~ /^\s*$Declare\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)\s*[\(\[,;]/) {
890 } elsif ($line =~ /^\s*(?:union|struct|enum)\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)\s*[;\{]/) {
896 our %maintained_status = ();
898 sub is_maintained_obsolete {
901 return 0 if (!$tree || !(-e "$root/scripts/get_maintainer.pl"));
903 if (!exists($maintained_status{$filename})) {
904 $maintained_status{$filename} = `perl $root/scripts/get_maintainer.pl --status --nom --nol --nogit --nogit-fallback -f $filename 2>&1`;
907 return $maintained_status{$filename} =~ /obsolete/i;
910 sub is_SPDX_License_valid {
913 return 1 if (!$tree || which("python") eq "" || !(-e "$root/scripts/spdxcheck.py") || !(-e "$gitroot"));
915 my $root_path = abs_path($root);
916 my $status = `cd "$root_path"; echo "$license" | python scripts/spdxcheck.py -`;
917 return 0 if ($status ne "");
921 my $camelcase_seeded = 0;
922 sub seed_camelcase_includes {
923 return if ($camelcase_seeded);
926 my $camelcase_cache = "";
927 my @include_files = ();
929 $camelcase_seeded = 1;
932 my $git_last_include_commit = `${git_command} log --no-merges --pretty=format:"%h%n" -1 -- include`;
933 chomp $git_last_include_commit;
934 $camelcase_cache = ".checkpatch-camelcase.git.$git_last_include_commit";
936 my $last_mod_date = 0;
937 $files = `find $root/include -name "*.h"`;
938 @include_files = split('\n', $files);
939 foreach my $file (@include_files) {
940 my $date = POSIX::strftime("%Y%m%d%H%M",
941 localtime((stat $file)[9]));
942 $last_mod_date = $date if ($last_mod_date < $date);
944 $camelcase_cache = ".checkpatch-camelcase.date.$last_mod_date";
947 if ($camelcase_cache ne "" && -f $camelcase_cache) {
948 open(my $camelcase_file, '<', "$camelcase_cache")
949 or warn "$P: Can't read '$camelcase_cache' $!\n";
950 while (<$camelcase_file>) {
954 close($camelcase_file);
960 $files = `${git_command} ls-files "include/*.h"`;
961 @include_files = split('\n', $files);
964 foreach my $file (@include_files) {
965 seed_camelcase_file($file);
968 if ($camelcase_cache ne "") {
969 unlink glob ".checkpatch-camelcase.*";
970 open(my $camelcase_file, '>', "$camelcase_cache")
971 or warn "$P: Can't write '$camelcase_cache' $!\n";
972 foreach (sort { lc($a) cmp lc($b) } keys(%camelcase)) {
973 print $camelcase_file ("$_\n");
975 close($camelcase_file);
979 sub git_is_single_file {
982 return 0 if ((which("git") eq "") || !(-e "$gitroot"));
984 my $output = `${git_command} ls-files -- $filename 2>/dev/null`;
985 my $count = $output =~ tr/\n//;
986 return $count eq 1 && $output =~ m{^${filename}$};
989 sub git_commit_info {
990 my ($commit, $id, $desc) = @_;
992 return ($id, $desc) if ((which("git") eq "") || !(-e "$gitroot"));
994 my $output = `${git_command} log --no-color --format='%H %s' -1 $commit 2>&1`;
995 $output =~ s/^\s*//gm;
996 my @lines = split("\n", $output);
998 return ($id, $desc) if ($#lines < 0);
1000 if ($lines[0] =~ /^error: short SHA1 $commit is ambiguous/) {
1001 # Maybe one day convert this block of bash into something that returns
1002 # all matching commit ids, but it's very slow...
1004 # echo "checking commits $1..."
1005 # git rev-list --remotes | grep -i "^$1" |
1006 # while read line ; do
1007 # git log --format='%H %s' -1 $line |
1008 # echo "commit $(cut -c 1-12,41-)"
1010 } elsif ($lines[0] =~ /^fatal: ambiguous argument '$commit': unknown revision or path not in the working tree\./) {
1013 $id = substr($lines[0], 0, 12);
1014 $desc = substr($lines[0], 41);
1017 return ($id, $desc);
1020 $chk_signoff = 0 if ($file);
1025 my @fixed_inserted = ();
1026 my @fixed_deleted = ();
1029 # If input is git commits, extract all commits from the commit expressions.
1030 # For example, HEAD-3 means we need check 'HEAD, HEAD~1, HEAD~2'.
1031 die "$P: No git repository found\n" if ($git && !-e "$gitroot");
1035 foreach my $commit_expr (@ARGV) {
1037 if ($commit_expr =~ m/^(.*)-(\d+)$/) {
1038 $git_range = "-$2 $1";
1039 } elsif ($commit_expr =~ m/\.\./) {
1040 $git_range = "$commit_expr";
1042 $git_range = "-1 $commit_expr";
1044 my $lines = `${git_command} log --no-color --no-merges --pretty=format:'%H %s' $git_range`;
1045 foreach my $line (split(/\n/, $lines)) {
1046 $line =~ /^([0-9a-fA-F]{40,40}) (.*)$/;
1047 next if (!defined($1) || !defined($2));
1050 unshift(@commits, $sha1);
1051 $git_commits{$sha1} = $subject;
1054 die "$P: no git commits after extraction!\n" if (@commits == 0);
1059 $allow_c99_comments = !defined $ignore_type{"C99_COMMENT_TOLERANCE"};
1060 for my $filename (@ARGV) {
1062 my $is_git_file = git_is_single_file($filename);
1063 my $oldfile = $file;
1064 $file = 1 if ($is_git_file);
1066 open($FILE, '-|', "git format-patch -M --stdout -1 $filename") ||
1067 die "$P: $filename: git format-patch failed - $!\n";
1069 open($FILE, '-|', "diff -u /dev/null $filename") ||
1070 die "$P: $filename: diff failed - $!\n";
1071 } elsif ($filename eq '-') {
1072 open($FILE, '<&STDIN');
1074 open($FILE, '<', "$filename") ||
1075 die "$P: $filename: open failed - $!\n";
1077 if ($filename eq '-') {
1078 $vname = 'Your patch';
1080 $vname = "Commit " . substr($filename, 0, 12) . ' ("' . $git_commits{$filename} . '")';
1086 push(@rawlines, $_);
1087 $vname = qq("$1") if ($filename eq '-' && $_ =~ m/^Subject:\s+(.+)/i);
1091 if ($#ARGV > 0 && $quiet == 0) {
1092 print '-' x length($vname) . "\n";
1094 print '-' x length($vname) . "\n";
1097 if (!process($filename)) {
1103 @fixed_inserted = ();
1104 @fixed_deleted = ();
1106 @modifierListFile = ();
1109 $file = $oldfile if ($is_git_file);
1113 hash_show_words(\%use_type, "Used");
1114 hash_show_words(\%ignore_type, "Ignored");
1116 if (!$perl_version_ok) {
1119 NOTE: perl $^V is not modern enough to detect all possible issues.
1120 An upgrade to at least perl $minimum_perl_version is suggested.
1126 NOTE: If any of the errors are false positives, please report
1127 them to the maintainer, see CHECKPATCH in MAINTAINERS.
1134 sub top_of_kernel_tree {
1138 "COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
1139 "README", "Documentation", "arch", "include", "drivers",
1140 "fs", "init", "ipc", "kernel", "lib", "scripts",
1143 foreach my $check (@tree_check) {
1144 if (! -e $root . '/' . $check) {
1152 my ($formatted_email) = @_;
1155 my $name_comment = "";
1159 if ($formatted_email =~ /^(.*)<(\S+\@\S+)>(.*)$/) {
1162 $comment = $3 if defined $3;
1163 } elsif ($formatted_email =~ /^\s*<(\S+\@\S+)>(.*)$/) {
1165 $comment = $2 if defined $2;
1166 } elsif ($formatted_email =~ /(\S+\@\S+)(.*)$/) {
1168 $comment = $2 if defined $2;
1169 $formatted_email =~ s/\Q$address\E.*$//;
1170 $name = $formatted_email;
1171 $name = trim($name);
1172 $name =~ s/^\"|\"$//g;
1173 # If there's a name left after stripping spaces and
1174 # leading quotes, and the address doesn't have both
1175 # leading and trailing angle brackets, the address
1177 # "joe smith joe@smith.com" bad
1178 # "joe smith <joe@smith.com" bad
1179 if ($name ne "" && $address !~ /^<[^>]+>$/) {
1186 $comment = trim($comment);
1187 $name = trim($name);
1188 $name =~ s/^\"|\"$//g;
1189 if ($name =~ s/(\s*\([^\)]+\))\s*//) {
1190 $name_comment = trim($1);
1192 $address = trim($address);
1193 $address =~ s/^\<|\>$//g;
1195 if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
1196 $name =~ s/(?<!\\)"/\\"/g; ##escape quotes
1197 $name = "\"$name\"";
1200 return ($name, $name_comment, $address, $comment);
1204 my ($name, $name_comment, $address, $comment) = @_;
1206 my $formatted_email;
1208 $name_comment = trim($name_comment);
1209 $comment = trim($comment);
1210 $name = trim($name);
1211 $name =~ s/^\"|\"$//g;
1212 $address = trim($address);
1214 if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
1215 $name =~ s/(?<!\\)"/\\"/g; ##escape quotes
1216 $name = "\"$name\"";
1219 if ("$name" eq "") {
1220 $formatted_email = "$address";
1222 $formatted_email = "$name$name_comment <$address>";
1224 $formatted_email .= "$comment";
1225 return $formatted_email;
1228 sub reformat_email {
1231 my ($email_name, $name_comment, $email_address, $comment) = parse_email($email);
1232 return format_email($email_name, $name_comment, $email_address, $comment);
1235 sub same_email_addresses {
1236 my ($email1, $email2, $match_comment) = @_;
1238 my ($email1_name, $name1_comment, $email1_address, $comment1) = parse_email($email1);
1239 my ($email2_name, $name2_comment, $email2_address, $comment2) = parse_email($email2);
1241 if ($match_comment != 1) {
1242 return $email1_name eq $email2_name &&
1243 $email1_address eq $email2_address;
1245 return $email1_name eq $email2_name &&
1246 $email1_address eq $email2_address &&
1247 $name1_comment eq $name2_comment &&
1248 $comment1 eq $comment2;
1254 foreach my $path (split(/:/, $ENV{PATH})) {
1255 if (-e "$path/$bin") {
1256 return "$path/$bin";
1266 foreach my $path (split(/:/, ".:$ENV{HOME}:.scripts")) {
1267 if (-e "$path/$conf") {
1268 return "$path/$conf";
1280 for my $c (split(//, $str)) {
1284 for (; ($n % $tabsize) != 0; $n++) {
1296 (my $res = shift) =~ tr/\t/ /c;
1303 # Drop the diff line leader and expand tabs
1305 $line = expand_tabs($line);
1307 # Pick the indent from the front of the line.
1308 my ($white) = ($line =~ /^(\s*)/);
1310 return (length($line), length($white));
1313 my $sanitise_quote = '';
1315 sub sanitise_line_reset {
1316 my ($in_comment) = @_;
1319 $sanitise_quote = '*/';
1321 $sanitise_quote = '';
1334 # Always copy over the diff marker.
1335 $res = substr($line, 0, 1);
1337 for ($off = 1; $off < length($line); $off++) {
1338 $c = substr($line, $off, 1);
1340 # Comments we are whacking completely including the begin
1341 # and end, all to $;.
1342 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
1343 $sanitise_quote = '*/';
1345 substr($res, $off, 2, "$;$;");
1349 if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') {
1350 $sanitise_quote = '';
1351 substr($res, $off, 2, "$;$;");
1355 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '//') {
1356 $sanitise_quote = '//';
1358 substr($res, $off, 2, $sanitise_quote);
1363 # A \ in a string means ignore the next character.
1364 if (($sanitise_quote eq "'" || $sanitise_quote eq '"') &&
1366 substr($res, $off, 2, 'XX');
1371 if ($c eq "'" || $c eq '"') {
1372 if ($sanitise_quote eq '') {
1373 $sanitise_quote = $c;
1375 substr($res, $off, 1, $c);
1377 } elsif ($sanitise_quote eq $c) {
1378 $sanitise_quote = '';
1382 #print "c<$c> SQ<$sanitise_quote>\n";
1383 if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") {
1384 substr($res, $off, 1, $;);
1385 } elsif ($off != 0 && $sanitise_quote eq '//' && $c ne "\t") {
1386 substr($res, $off, 1, $;);
1387 } elsif ($off != 0 && $sanitise_quote && $c ne "\t") {
1388 substr($res, $off, 1, 'X');
1390 substr($res, $off, 1, $c);
1394 if ($sanitise_quote eq '//') {
1395 $sanitise_quote = '';
1398 # The pathname on a #include may be surrounded by '<' and '>'.
1399 if ($res =~ /^.\s*\#\s*include\s+\<(.*)\>/) {
1400 my $clean = 'X' x length($1);
1401 $res =~ s@\<.*\>@<$clean>@;
1403 # The whole of a #error is a string.
1404 } elsif ($res =~ /^.\s*\#\s*(?:error|warning)\s+(.*)\b/) {
1405 my $clean = 'X' x length($1);
1406 $res =~ s@(\#\s*(?:error|warning)\s+).*@$1$clean@;
1409 if ($allow_c99_comments && $res =~ m@(//.*$)@) {
1411 $res =~ s/\Q$match\E/"$;" x length($match)/e;
1417 sub get_quoted_string {
1418 my ($line, $rawline) = @_;
1420 return "" if (!defined($line) || !defined($rawline));
1421 return "" if ($line !~ m/($String)/g);
1422 return substr($rawline, $-[0], $+[0] - $-[0]);
1425 sub ctx_statement_block {
1426 my ($linenr, $remain, $off) = @_;
1427 my $line = $linenr - 1;
1430 my $coff = $off - 1;
1444 @stack = (['', 0]) if ($#stack == -1);
1446 #warn "CSB: blk<$blk> remain<$remain>\n";
1447 # If we are about to drop off the end, pull in more
1450 for (; $remain > 0; $line++) {
1451 last if (!defined $lines[$line]);
1452 next if ($lines[$line] =~ /^-/);
1455 $blk .= $lines[$line] . "\n";
1456 $len = length($blk);
1460 # Bail if there is no further context.
1461 #warn "CSB: blk<$blk> off<$off> len<$len>\n";
1465 if ($level == 0 && substr($blk, $off) =~ /^.\s*#\s*define/) {
1471 $c = substr($blk, $off, 1);
1472 $remainder = substr($blk, $off);
1474 #warn "CSB: c<$c> type<$type> level<$level> remainder<$remainder> coff_set<$coff_set>\n";
1476 # Handle nested #if/#else.
1477 if ($remainder =~ /^#\s*(?:ifndef|ifdef|if)\s/) {
1478 push(@stack, [ $type, $level ]);
1479 } elsif ($remainder =~ /^#\s*(?:else|elif)\b/) {
1480 ($type, $level) = @{$stack[$#stack - 1]};
1481 } elsif ($remainder =~ /^#\s*endif\b/) {
1482 ($type, $level) = @{pop(@stack)};
1485 # Statement ends at the ';' or a close '}' at the
1487 if ($level == 0 && $c eq ';') {
1491 # An else is really a conditional as long as its not else if
1492 if ($level == 0 && $coff_set == 0 &&
1493 (!defined($p) || $p =~ /(?:\s|\}|\+)/) &&
1494 $remainder =~ /^(else)(?:\s|{)/ &&
1495 $remainder !~ /^else\s+if\b/) {
1496 $coff = $off + length($1) - 1;
1498 #warn "CSB: mark coff<$coff> soff<$soff> 1<$1>\n";
1499 #warn "[" . substr($blk, $soff, $coff - $soff + 1) . "]\n";
1502 if (($type eq '' || $type eq '(') && $c eq '(') {
1506 if ($type eq '(' && $c eq ')') {
1508 $type = ($level != 0)? '(' : '';
1510 if ($level == 0 && $coff < $soff) {
1513 #warn "CSB: mark coff<$coff>\n";
1516 if (($type eq '' || $type eq '{') && $c eq '{') {
1520 if ($type eq '{' && $c eq '}') {
1522 $type = ($level != 0)? '{' : '';
1525 if (substr($blk, $off + 1, 1) eq ';') {
1531 # Preprocessor commands end at the newline unless escaped.
1532 if ($type eq '#' && $c eq "\n" && $p ne "\\") {
1540 # We are truly at the end, so shuffle to the next line.
1547 my $statement = substr($blk, $soff, $off - $soff + 1);
1548 my $condition = substr($blk, $soff, $coff - $soff + 1);
1550 #warn "STATEMENT<$statement>\n";
1551 #warn "CONDITION<$condition>\n";
1553 #print "coff<$coff> soff<$off> loff<$loff>\n";
1555 return ($statement, $condition,
1556 $line, $remain + 1, $off - $loff + 1, $level);
1559 sub statement_lines {
1562 # Strip the diff line prefixes and rip blank lines at start and end.
1563 $stmt =~ s/(^|\n)./$1/g;
1567 my @stmt_lines = ($stmt =~ /\n/g);
1569 return $#stmt_lines + 2;
1572 sub statement_rawlines {
1575 my @stmt_lines = ($stmt =~ /\n/g);
1577 return $#stmt_lines + 2;
1580 sub statement_block_size {
1583 $stmt =~ s/(^|\n)./$1/g;
1589 my @stmt_lines = ($stmt =~ /\n/g);
1590 my @stmt_statements = ($stmt =~ /;/g);
1592 my $stmt_lines = $#stmt_lines + 2;
1593 my $stmt_statements = $#stmt_statements + 1;
1595 if ($stmt_lines > $stmt_statements) {
1598 return $stmt_statements;
1602 sub ctx_statement_full {
1603 my ($linenr, $remain, $off) = @_;
1604 my ($statement, $condition, $level);
1608 # Grab the first conditional/block pair.
1609 ($statement, $condition, $linenr, $remain, $off, $level) =
1610 ctx_statement_block($linenr, $remain, $off);
1611 #print "F: c<$condition> s<$statement> remain<$remain>\n";
1612 push(@chunks, [ $condition, $statement ]);
1613 if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
1614 return ($level, $linenr, @chunks);
1617 # Pull in the following conditional/block pairs and see if they
1618 # could continue the statement.
1620 ($statement, $condition, $linenr, $remain, $off, $level) =
1621 ctx_statement_block($linenr, $remain, $off);
1622 #print "C: c<$condition> s<$statement> remain<$remain>\n";
1623 last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
1625 push(@chunks, [ $condition, $statement ]);
1628 return ($level, $linenr, @chunks);
1632 my ($linenr, $remain, $outer, $open, $close, $off) = @_;
1634 my $start = $linenr - 1;
1641 my @stack = ($level);
1642 for ($line = $start; $remain > 0; $line++) {
1643 next if ($rawlines[$line] =~ /^-/);
1646 $blk .= $rawlines[$line];
1648 # Handle nested #if/#else.
1649 if ($lines[$line] =~ /^.\s*#\s*(?:ifndef|ifdef|if)\s/) {
1650 push(@stack, $level);
1651 } elsif ($lines[$line] =~ /^.\s*#\s*(?:else|elif)\b/) {
1652 $level = $stack[$#stack - 1];
1653 } elsif ($lines[$line] =~ /^.\s*#\s*endif\b/) {
1654 $level = pop(@stack);
1657 foreach my $c (split(//, $lines[$line])) {
1658 ##print "C<$c>L<$level><$open$close>O<$off>\n";
1664 if ($c eq $close && $level > 0) {
1666 last if ($level == 0);
1667 } elsif ($c eq $open) {
1672 if (!$outer || $level <= 1) {
1673 push(@res, $rawlines[$line]);
1676 last if ($level == 0);
1679 return ($level, @res);
1681 sub ctx_block_outer {
1682 my ($linenr, $remain) = @_;
1684 my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0);
1688 my ($linenr, $remain) = @_;
1690 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0);
1694 my ($linenr, $remain, $off) = @_;
1696 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
1699 sub ctx_block_level {
1700 my ($linenr, $remain) = @_;
1702 return ctx_block_get($linenr, $remain, 0, '{', '}', 0);
1704 sub ctx_statement_level {
1705 my ($linenr, $remain, $off) = @_;
1707 return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
1710 sub ctx_locate_comment {
1711 my ($first_line, $end_line) = @_;
1713 # If c99 comment on the current line, or the line before or after
1714 my ($current_comment) = ($rawlines[$end_line - 1] =~ m@^\+.*(//.*$)@);
1715 return $current_comment if (defined $current_comment);
1716 ($current_comment) = ($rawlines[$end_line - 2] =~ m@^[\+ ].*(//.*$)@);
1717 return $current_comment if (defined $current_comment);
1718 ($current_comment) = ($rawlines[$end_line] =~ m@^[\+ ].*(//.*$)@);
1719 return $current_comment if (defined $current_comment);
1721 # Catch a comment on the end of the line itself.
1722 ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@);
1723 return $current_comment if (defined $current_comment);
1725 # Look through the context and try and figure out if there is a
1728 $current_comment = '';
1729 for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
1730 my $line = $rawlines[$linenr - 1];
1732 if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
1735 if ($line =~ m@/\*@) {
1738 if (!$in_comment && $current_comment ne '') {
1739 $current_comment = '';
1741 $current_comment .= $line . "\n" if ($in_comment);
1742 if ($line =~ m@\*/@) {
1747 chomp($current_comment);
1748 return($current_comment);
1750 sub ctx_has_comment {
1751 my ($first_line, $end_line) = @_;
1752 my $cmt = ctx_locate_comment($first_line, $end_line);
1754 ##print "LINE: $rawlines[$end_line - 1 ]\n";
1755 ##print "CMMT: $cmt\n";
1757 return ($cmt ne '');
1761 my ($linenr, $cnt) = @_;
1763 my $offset = $linenr - 1;
1768 $line = $rawlines[$offset++];
1769 next if (defined($line) && $line =~ /^-/);
1777 my ($linenr, $lc) = @_;
1779 my $stat_real = raw_line($linenr, 0);
1780 for (my $count = $linenr + 1; $count <= $lc; $count++) {
1781 $stat_real = $stat_real . "\n" . raw_line($count, 0);
1788 my ($linenr, $cnt, $here) = @_;
1790 my $herectx = $here . "\n";
1791 for (my $n = 0; $n < $cnt; $n++) {
1792 $herectx .= raw_line($linenr, $n) . "\n";
1803 while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
1806 $coded = sprintf("^%c", unpack('C', $2) + 64);
1815 my $av_preprocessor = 0;
1820 sub annotate_reset {
1821 $av_preprocessor = 0;
1823 @av_paren_type = ('E');
1824 $av_pend_colon = 'O';
1827 sub annotate_values {
1828 my ($stream, $type) = @_;
1831 my $var = '_' x length($stream);
1834 print "$stream\n" if ($dbg_values > 1);
1836 while (length($cur)) {
1837 @av_paren_type = ('E') if ($#av_paren_type < 0);
1838 print " <" . join('', @av_paren_type) .
1839 "> <$type> <$av_pending>" if ($dbg_values > 1);
1840 if ($cur =~ /^(\s+)/o) {
1841 print "WS($1)\n" if ($dbg_values > 1);
1842 if ($1 =~ /\n/ && $av_preprocessor) {
1843 $type = pop(@av_paren_type);
1844 $av_preprocessor = 0;
1847 } elsif ($cur =~ /^(\(\s*$Type\s*)\)/ && $av_pending eq '_') {
1848 print "CAST($1)\n" if ($dbg_values > 1);
1849 push(@av_paren_type, $type);
1852 } elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\(|\s*$)/) {
1853 print "DECLARE($1)\n" if ($dbg_values > 1);
1856 } elsif ($cur =~ /^($Modifier)\s*/) {
1857 print "MODIFIER($1)\n" if ($dbg_values > 1);
1860 } elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) {
1861 print "DEFINE($1,$2)\n" if ($dbg_values > 1);
1862 $av_preprocessor = 1;
1863 push(@av_paren_type, $type);
1869 } elsif ($cur =~ /^(\#\s*(?:undef\s*$Ident|include\b))/o) {
1870 print "UNDEF($1)\n" if ($dbg_values > 1);
1871 $av_preprocessor = 1;
1872 push(@av_paren_type, $type);
1874 } elsif ($cur =~ /^(\#\s*(?:ifdef|ifndef|if))/o) {
1875 print "PRE_START($1)\n" if ($dbg_values > 1);
1876 $av_preprocessor = 1;
1878 push(@av_paren_type, $type);
1879 push(@av_paren_type, $type);
1882 } elsif ($cur =~ /^(\#\s*(?:else|elif))/o) {
1883 print "PRE_RESTART($1)\n" if ($dbg_values > 1);
1884 $av_preprocessor = 1;
1886 push(@av_paren_type, $av_paren_type[$#av_paren_type]);
1890 } elsif ($cur =~ /^(\#\s*(?:endif))/o) {
1891 print "PRE_END($1)\n" if ($dbg_values > 1);
1893 $av_preprocessor = 1;
1895 # Assume all arms of the conditional end as this
1896 # one does, and continue as if the #endif was not here.
1897 pop(@av_paren_type);
1898 push(@av_paren_type, $type);
1901 } elsif ($cur =~ /^(\\\n)/o) {
1902 print "PRECONT($1)\n" if ($dbg_values > 1);
1904 } elsif ($cur =~ /^(__attribute__)\s*\(?/o) {
1905 print "ATTR($1)\n" if ($dbg_values > 1);
1906 $av_pending = $type;
1909 } elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
1910 print "SIZEOF($1)\n" if ($dbg_values > 1);
1916 } elsif ($cur =~ /^(if|while|for)\b/o) {
1917 print "COND($1)\n" if ($dbg_values > 1);
1921 } elsif ($cur =~/^(case)/o) {
1922 print "CASE($1)\n" if ($dbg_values > 1);
1923 $av_pend_colon = 'C';
1926 } elsif ($cur =~/^(return|else|goto|typeof|__typeof__)\b/o) {
1927 print "KEYWORD($1)\n" if ($dbg_values > 1);
1930 } elsif ($cur =~ /^(\()/o) {
1931 print "PAREN('$1')\n" if ($dbg_values > 1);
1932 push(@av_paren_type, $av_pending);
1936 } elsif ($cur =~ /^(\))/o) {
1937 my $new_type = pop(@av_paren_type);
1938 if ($new_type ne '_') {
1940 print "PAREN('$1') -> $type\n"
1941 if ($dbg_values > 1);
1943 print "PAREN('$1')\n" if ($dbg_values > 1);
1946 } elsif ($cur =~ /^($Ident)\s*\(/o) {
1947 print "FUNC($1)\n" if ($dbg_values > 1);
1951 } elsif ($cur =~ /^($Ident\s*):(?:\s*\d+\s*(,|=|;))?/) {
1952 if (defined $2 && $type eq 'C' || $type eq 'T') {
1953 $av_pend_colon = 'B';
1954 } elsif ($type eq 'E') {
1955 $av_pend_colon = 'L';
1957 print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1);
1960 } elsif ($cur =~ /^($Ident|$Constant)/o) {
1961 print "IDENT($1)\n" if ($dbg_values > 1);
1964 } elsif ($cur =~ /^($Assignment)/o) {
1965 print "ASSIGN($1)\n" if ($dbg_values > 1);
1968 } elsif ($cur =~/^(;|{|})/) {
1969 print "END($1)\n" if ($dbg_values > 1);
1971 $av_pend_colon = 'O';
1973 } elsif ($cur =~/^(,)/) {
1974 print "COMMA($1)\n" if ($dbg_values > 1);
1977 } elsif ($cur =~ /^(\?)/o) {
1978 print "QUESTION($1)\n" if ($dbg_values > 1);
1981 } elsif ($cur =~ /^(:)/o) {
1982 print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1);
1984 substr($var, length($res), 1, $av_pend_colon);
1985 if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') {
1990 $av_pend_colon = 'O';
1992 } elsif ($cur =~ /^(\[)/o) {
1993 print "CLOSE($1)\n" if ($dbg_values > 1);
1996 } elsif ($cur =~ /^(-(?![->])|\+(?!\+)|\*|\&\&|\&)/o) {
1999 print "OPV($1)\n" if ($dbg_values > 1);
2006 substr($var, length($res), 1, $variant);
2009 } elsif ($cur =~ /^($Operators)/o) {
2010 print "OP($1)\n" if ($dbg_values > 1);
2011 if ($1 ne '++' && $1 ne '--') {
2015 } elsif ($cur =~ /(^.)/o) {
2016 print "C($1)\n" if ($dbg_values > 1);
2019 $cur = substr($cur, length($1));
2020 $res .= $type x length($1);
2024 return ($res, $var);
2028 my ($possible, $line) = @_;
2029 my $notPermitted = qr{(?:
2046 ^(?:typedef|struct|enum)\b
2048 warn "CHECK<$possible> ($line)\n" if ($dbg_possible > 2);
2049 if ($possible !~ $notPermitted) {
2050 # Check for modifiers.
2051 $possible =~ s/\s*$Storage\s*//g;
2052 $possible =~ s/\s*$Sparse\s*//g;
2053 if ($possible =~ /^\s*$/) {
2055 } elsif ($possible =~ /\s/) {
2056 $possible =~ s/\s*$Type\s*//g;
2057 for my $modifier (split(' ', $possible)) {
2058 if ($modifier !~ $notPermitted) {
2059 warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
2060 push(@modifierListFile, $modifier);
2065 warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
2066 push(@typeListFile, $possible);
2070 warn "NOTPOSS: $possible ($line)\n" if ($dbg_possible > 1);
2079 $type =~ tr/[a-z]/[A-Z]/;
2081 return defined $use_type{$type} if (scalar keys %use_type > 0);
2083 return !defined $ignore_type{$type};
2087 my ($level, $type, $msg) = @_;
2089 if (!show_type($type) ||
2090 (defined $tst_only && $msg !~ /\Q$tst_only\E/)) {
2095 if ($level eq 'ERROR') {
2097 } elsif ($level eq 'WARNING') {
2103 $output .= $prefix . $level . ':';
2105 $output .= BLUE if ($color);
2106 $output .= "$type:";
2108 $output .= RESET if ($color);
2109 $output .= ' ' . $msg . "\n";
2112 my @lines = split("\n", $output, -1);
2113 splice(@lines, 1, 1);
2114 $output = join("\n", @lines);
2116 $output = (split('\n', $output))[0] . "\n" if ($terse);
2118 push(our @report, $output);
2127 sub fixup_current_range {
2128 my ($lineRef, $offset, $length) = @_;
2130 if ($$lineRef =~ /^\@\@ -\d+,\d+ \+(\d+),(\d+) \@\@/) {
2133 my $no = $o + $offset;
2134 my $nl = $l + $length;
2135 $$lineRef =~ s/\+$o,$l \@\@/\+$no,$nl \@\@/;
2139 sub fix_inserted_deleted_lines {
2140 my ($linesRef, $insertedRef, $deletedRef) = @_;
2142 my $range_last_linenr = 0;
2143 my $delta_offset = 0;
2148 my $next_insert = 0;
2149 my $next_delete = 0;
2153 my $inserted = @{$insertedRef}[$next_insert++];
2154 my $deleted = @{$deletedRef}[$next_delete++];
2156 foreach my $old_line (@{$linesRef}) {
2158 my $line = $old_line; #don't modify the array
2159 if ($line =~ /^(?:\+\+\+|\-\-\-)\s+\S+/) { #new filename
2161 } elsif ($line =~ /^\@\@ -\d+,\d+ \+\d+,\d+ \@\@/) { #new hunk
2162 $range_last_linenr = $new_linenr;
2163 fixup_current_range(\$line, $delta_offset, 0);
2166 while (defined($deleted) && ${$deleted}{'LINENR'} == $old_linenr) {
2167 $deleted = @{$deletedRef}[$next_delete++];
2169 fixup_current_range(\$lines[$range_last_linenr], $delta_offset--, -1);
2172 while (defined($inserted) && ${$inserted}{'LINENR'} == $old_linenr) {
2173 push(@lines, ${$inserted}{'LINE'});
2174 $inserted = @{$insertedRef}[$next_insert++];
2176 fixup_current_range(\$lines[$range_last_linenr], $delta_offset++, 1);
2180 push(@lines, $line);
2190 sub fix_insert_line {
2191 my ($linenr, $line) = @_;
2197 push(@fixed_inserted, $inserted);
2200 sub fix_delete_line {
2201 my ($linenr, $line) = @_;
2208 push(@fixed_deleted, $deleted);
2212 my ($type, $msg) = @_;
2214 if (report("ERROR", $type, $msg)) {
2222 my ($type, $msg) = @_;
2224 if (report("WARNING", $type, $msg)) {
2232 my ($type, $msg) = @_;
2234 if ($check && report("CHECK", $type, $msg)) {
2242 sub check_absolute_file {
2243 my ($absolute, $herecurr) = @_;
2244 my $file = $absolute;
2246 ##print "absolute<$absolute>\n";
2248 # See if any suffix of this path is a path within the tree.
2249 while ($file =~ s@^[^/]*/@@) {
2250 if (-f "$root/$file") {
2251 ##print "file<$file>\n";
2259 # It is, so see if the prefix is acceptable.
2260 my $prefix = $absolute;
2261 substr($prefix, -length($file)) = '';
2263 ##print "prefix<$prefix>\n";
2264 if ($prefix ne ".../") {
2265 WARN("USE_RELATIVE_PATH",
2266 "use relative pathname instead of absolute in changelog text\n" . $herecurr);
2273 $string =~ s/^\s+|\s+$//g;
2281 $string =~ s/^\s+//;
2289 $string =~ s/\s+$//;
2294 sub string_find_replace {
2295 my ($string, $find, $replace) = @_;
2297 $string =~ s/$find/$replace/g;
2305 my $source_indent = $tabsize;
2306 my $max_spaces_before_tab = $source_indent - 1;
2307 my $spaces_to_tab = " " x $source_indent;
2309 #convert leading spaces to tabs
2310 1 while $leading =~ s@^([\t]*)$spaces_to_tab@$1\t@g;
2311 #Remove spaces before a tab
2312 1 while $leading =~ s@^([\t]*)( {1,$max_spaces_before_tab})\t@$1\t@g;
2317 sub pos_last_openparen {
2322 my $opens = $line =~ tr/\(/\(/;
2323 my $closes = $line =~ tr/\)/\)/;
2325 my $last_openparen = 0;
2327 if (($opens == 0) || ($closes >= $opens)) {
2331 my $len = length($line);
2333 for ($pos = 0; $pos < $len; $pos++) {
2334 my $string = substr($line, $pos);
2335 if ($string =~ /^($FuncArg|$balanced_parens)/) {
2336 $pos += length($1) - 1;
2337 } elsif (substr($line, $pos, 1) eq '(') {
2338 $last_openparen = $pos;
2339 } elsif (index($string, '(') == -1) {
2344 return length(expand_tabs(substr($line, 0, $last_openparen))) + 1;
2347 sub get_raw_comment {
2348 my ($line, $rawline) = @_;
2351 for my $i (0 .. (length($line) - 1)) {
2352 if (substr($line, $i, 1) eq "$;") {
2353 $comment .= substr($rawline, $i, 1);
2361 my $filename = shift;
2367 my $stashrawline="";
2377 my $authorsignoff = 0;
2378 my $author_sob = '';
2380 my $is_binding_patch = -1;
2381 my $in_header_lines = $file ? 0 : 1;
2382 my $in_commit_log = 0; #Scanning lines before patch
2383 my $has_patch_separator = 0; #Found a --- line
2384 my $has_commit_log = 0; #Encountered lines before patch
2385 my $commit_log_lines = 0; #Number of commit log lines
2386 my $commit_log_possible_stack_dump = 0;
2387 my $commit_log_long_line = 0;
2388 my $commit_log_has_diff = 0;
2389 my $reported_maintainer_file = 0;
2390 my $non_utf8_charset = 0;
2392 my $last_blank_line = 0;
2393 my $last_coalesced_string_linenr = -1;
2401 # Trace the real file/line as we go.
2406 my $context_function; #undef'd unless there's a known function
2408 my $comment_edge = 0;
2412 my $prev_values = 'E';
2415 my %suppress_ifbraces;
2416 my %suppress_whiletrailers;
2417 my %suppress_export;
2418 my $suppress_statement = 0;
2420 my %signatures = ();
2422 # Pre-scan the patch sanitizing the lines.
2423 # Pre-scan the patch looking for any __setup documentation.
2425 my @setup_docs = ();
2428 my $camelcase_file_seeded = 0;
2430 my $checklicenseline = 1;
2432 sanitise_line_reset();
2434 foreach my $rawline (@rawlines) {
2438 push(@fixed, $rawline) if ($fix);
2440 if ($rawline=~/^\+\+\+\s+(\S+)/) {
2442 if ($1 =~ m@Documentation/admin-guide/kernel-parameters.txt$@) {
2447 if ($rawline =~ /^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
2456 # Guestimate if this is a continuing comment. Run
2457 # the context looking for a comment "edge". If this
2458 # edge is a close comment then we must be in a comment
2462 for (my $ln = $linenr + 1; $cnt > 0; $ln++) {
2463 next if (defined $rawlines[$ln - 1] &&
2464 $rawlines[$ln - 1] =~ /^-/);
2466 #print "RAW<$rawlines[$ln - 1]>\n";
2467 last if (!defined $rawlines[$ln - 1]);
2468 if ($rawlines[$ln - 1] =~ m@(/\*|\*/)@ &&
2469 $rawlines[$ln - 1] !~ m@"[^"]*(?:/\*|\*/)[^"]*"@) {
2474 if (defined $edge && $edge eq '*/') {
2478 # Guestimate if this is a continuing comment. If this
2479 # is the start of a diff block and this line starts
2480 # ' *' then it is very likely a comment.
2481 if (!defined $edge &&
2482 $rawlines[$linenr] =~ m@^.\s*(?:\*\*+| \*)(?:\s|$)@)
2487 ##print "COMMENT:$in_comment edge<$edge> $rawline\n";
2488 sanitise_line_reset($in_comment);
2490 } elsif ($realcnt && $rawline =~ /^(?:\+| |$)/) {
2491 # Standardise the strings and chars within the input to
2492 # simplify matching -- only bother with positive lines.
2493 $line = sanitise_line($rawline);
2495 push(@lines, $line);
2498 $realcnt-- if ($line =~ /^(?:\+| |$)/);
2503 #print "==>$rawline\n";
2504 #print "-->$line\n";
2506 if ($setup_docs && $line =~ /^\+/) {
2507 push(@setup_docs, $line);
2516 foreach my $line (@lines) {
2519 my $sline = $line; #copy of $line
2520 $sline =~ s/$;/ /g; #with comments as spaces
2522 my $rawline = $rawlines[$linenr - 1];
2523 my $raw_comment = get_raw_comment($line, $rawline);
2525 # check if it's a mode change, rename or start of a patch
2526 if (!$in_commit_log &&
2527 ($line =~ /^ mode change [0-7]+ => [0-7]+ \S+\s*$/ ||
2528 ($line =~ /^rename (?:from|to) \S+\s*$/ ||
2529 $line =~ /^diff --git a\/[\w\/\.\_\-]+ b\/\S+\s*$/))) {
2533 #extract the line range in the file after the patch is applied
2534 if (!$in_commit_log &&
2535 $line =~ /^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@(.*)/) {
2538 $first_line = $linenr + 1;
2548 %suppress_ifbraces = ();
2549 %suppress_whiletrailers = ();
2550 %suppress_export = ();
2551 $suppress_statement = 0;
2552 if ($context =~ /\b(\w+)\s*\(/) {
2553 $context_function = $1;
2555 undef $context_function;
2559 # track the line number as we move through the hunk, note that
2560 # new versions of GNU diff omit the leading space on completely
2561 # blank context lines so we need to count that too.
2562 } elsif ($line =~ /^( |\+|$)/) {
2564 $realcnt-- if ($realcnt != 0);
2566 # Measure the line length and indent.
2567 ($length, $indent) = line_stats($rawline);
2569 # Track the previous line.
2570 ($prevline, $stashline) = ($stashline, $line);
2571 ($previndent, $stashindent) = ($stashindent, $indent);
2572 ($prevrawline, $stashrawline) = ($stashrawline, $rawline);
2574 #warn "line<$line>\n";
2576 } elsif ($realcnt == 1) {
2580 my $hunk_line = ($realcnt != 0);
2582 $here = "#$linenr: " if (!$file);
2583 $here = "#$realline: " if ($file);
2586 # extract the filename as it passes
2587 if ($line =~ /^diff --git.*?(\S+)$/) {
2589 $realfile =~ s@^([^/]*)/@@ if (!$file);
2592 } elsif ($line =~ /^\+\+\+\s+(\S+)/) {
2594 $realfile =~ s@^([^/]*)/@@ if (!$file);
2598 if (!$file && $tree && $p1_prefix ne '' &&
2599 -e "$root/$p1_prefix") {
2600 WARN("PATCH_PREFIX",
2601 "patch prefix '$p1_prefix' exists, appears to be a -p0 patch\n");
2604 if ($realfile =~ m@^include/asm/@) {
2605 ERROR("MODIFIED_INCLUDE_ASM",
2606 "do not modify files in include/asm, change architecture specific files in include/asm-<architecture>\n" . "$here$rawline\n");
2611 #make up the handle for any error we report on this line
2613 $prefix = "$realfile:$realline: "
2616 $prefix = "$filename:$realline: ";
2618 $prefix = "$filename:$linenr: ";
2623 if (is_maintained_obsolete($realfile)) {
2625 "$realfile is marked as 'obsolete' in the MAINTAINERS hierarchy. No unnecessary modifications please.\n");
2627 if ($realfile =~ m@^(?:drivers/net/|net/|drivers/staging/)@) {
2630 $check = $check_orig;
2632 $checklicenseline = 1;
2634 if ($realfile !~ /^MAINTAINERS/) {
2635 my $last_binding_patch = $is_binding_patch;
2637 $is_binding_patch = () = $realfile =~ m@^(?:Documentation/devicetree/|include/dt-bindings/)@;
2639 if (($last_binding_patch != -1) &&
2640 ($last_binding_patch ^ $is_binding_patch)) {
2641 WARN("DT_SPLIT_BINDING_PATCH",
2642 "DT binding docs and includes should be a separate patch. See: Documentation/devicetree/bindings/submitting-patches.rst\n");
2649 $here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
2651 my $hereline = "$here\n$rawline\n";
2652 my $herecurr = "$here\n$rawline\n";
2653 my $hereprev = "$here\n$prevrawline\n$rawline\n";
2655 $cnt_lines++ if ($realcnt != 0);
2657 # Verify the existence of a commit log if appropriate
2658 # 2 is used because a $signature is counted in $commit_log_lines
2659 if ($in_commit_log) {
2660 if ($line !~ /^\s*$/) {
2661 $commit_log_lines++; #could be a $signature
2663 } elsif ($has_commit_log && $commit_log_lines < 2) {
2664 WARN("COMMIT_MESSAGE",
2665 "Missing commit description - Add an appropriate one\n");
2666 $commit_log_lines = 2; #warn only once
2669 # Check if the commit log has what seems like a diff which can confuse patch
2670 if ($in_commit_log && !$commit_log_has_diff &&
2671 (($line =~ m@^\s+diff\b.*a/([\w/]+)@ &&
2672 $line =~ m@^\s+diff\b.*a/[\w/]+\s+b/$1\b@) ||
2673 $line =~ m@^\s*(?:\-\-\-\s+a/|\+\+\+\s+b/)@ ||
2674 $line =~ m/^\s*\@\@ \-\d+,\d+ \+\d+,\d+ \@\@/)) {
2675 ERROR("DIFF_IN_COMMIT_MSG",
2676 "Avoid using diff content in the commit message - patch(1) might not work\n" . $herecurr);
2677 $commit_log_has_diff = 1;
2680 # Check for incorrect file permissions
2681 if ($line =~ /^new (file )?mode.*[7531]\d{0,2}$/) {
2682 my $permhere = $here . "FILE: $realfile\n";
2683 if ($realfile !~ m@scripts/@ &&
2684 $realfile !~ /\.(py|pl|awk|sh)$/) {
2685 ERROR("EXECUTE_PERMISSIONS",
2686 "do not set execute permissions for source files\n" . $permhere);
2690 # Check the patch for a From:
2691 if (decode("MIME-Header", $line) =~ /^From:\s*(.*)/) {
2693 my $curline = $linenr;
2694 while(defined($rawlines[$curline]) && ($rawlines[$curline++] =~ /^[ \t]\s*(.*)/)) {
2697 $author = encode("utf8", $author) if ($line =~ /=\?utf-8\?/i);
2699 $author = reformat_email($author);
2702 # Check the patch for a signoff:
2703 if ($line =~ /^\s*signed-off-by:\s*(.*)/i) {
2706 if ($author ne '' && $authorsignoff != 1) {
2707 if (same_email_addresses($1, $author, 1)) {
2711 my ($email_name, $email_comment, $email_address, $comment1) = parse_email($ctx);
2712 my ($author_name, $author_comment, $author_address, $comment2) = parse_email($author);
2714 if ($email_address eq $author_address && $email_name eq $author_name) {
2717 } elsif ($email_address eq $author_address) {
2720 } elsif ($email_name eq $author_name) {
2724 my $address1 = $email_address;
2725 my $address2 = $author_address;
2727 if ($address1 =~ /(\S+)\+\S+(\@.*)/) {
2730 if ($address2 =~ /(\S+)\+\S+(\@.*)/) {
2733 if ($address1 eq $address2) {
2741 # Check for patch separator
2742 if ($line =~ /^---$/) {
2743 $has_patch_separator = 1;
2747 # Check if MAINTAINERS is being updated. If so, there's probably no need to
2748 # emit the "does MAINTAINERS need updating?" message on file add/move/delete
2749 if ($line =~ /^\s*MAINTAINERS\s*\|/) {
2750 $reported_maintainer_file = 1;
2753 # Check signature styles
2754 if (!$in_header_lines &&
2755 $line =~ /^(\s*)([a-z0-9_-]+by:|$signature_tags)(\s*)(.*)/i) {
2756 my $space_before = $1;
2758 my $space_after = $3;
2760 my $ucfirst_sign_off = ucfirst(lc($sign_off));
2762 if ($sign_off !~ /$signature_tags/) {
2763 WARN("BAD_SIGN_OFF",
2764 "Non-standard signature: $sign_off\n" . $herecurr);
2766 if (defined $space_before && $space_before ne "") {
2767 if (WARN("BAD_SIGN_OFF",
2768 "Do not use whitespace before $ucfirst_sign_off\n" . $herecurr) &&
2770 $fixed[$fixlinenr] =
2771 "$ucfirst_sign_off $email";
2774 if ($sign_off =~ /-by:$/i && $sign_off ne $ucfirst_sign_off) {
2775 if (WARN("BAD_SIGN_OFF",
2776 "'$ucfirst_sign_off' is the preferred signature form\n" . $herecurr) &&
2778 $fixed[$fixlinenr] =
2779 "$ucfirst_sign_off $email";
2783 if (!defined $space_after || $space_after ne " ") {
2784 if (WARN("BAD_SIGN_OFF",
2785 "Use a single space after $ucfirst_sign_off\n" . $herecurr) &&
2787 $fixed[$fixlinenr] =
2788 "$ucfirst_sign_off $email";
2792 my ($email_name, $name_comment, $email_address, $comment) = parse_email($email);
2793 my $suggested_email = format_email(($email_name, $name_comment, $email_address, $comment));
2794 if ($suggested_email eq "") {
2795 ERROR("BAD_SIGN_OFF",
2796 "Unrecognized email address: '$email'\n" . $herecurr);
2798 my $dequoted = $suggested_email;
2799 $dequoted =~ s/^"//;
2800 $dequoted =~ s/" </ </;
2801 # Don't force email to have quotes
2802 # Allow just an angle bracketed address
2803 if (!same_email_addresses($email, $suggested_email, 0)) {
2804 WARN("BAD_SIGN_OFF",
2805 "email address '$email' might be better as '$suggested_email'\n" . $herecurr);
2809 # Check for duplicate signatures
2810 my $sig_nospace = $line;
2811 $sig_nospace =~ s/\s//g;
2812 $sig_nospace = lc($sig_nospace);
2813 if (defined $signatures{$sig_nospace}) {
2814 WARN("BAD_SIGN_OFF",
2815 "Duplicate signature\n" . $herecurr);
2817 $signatures{$sig_nospace} = 1;
2820 # Check Co-developed-by: immediately followed by Signed-off-by: with same name and email
2821 if ($sign_off =~ /^co-developed-by:$/i) {
2822 if ($email eq $author) {
2823 WARN("BAD_SIGN_OFF",
2824 "Co-developed-by: should not be used to attribute nominal patch author '$author'\n" . "$here\n" . $rawline);
2826 if (!defined $lines[$linenr]) {
2827 WARN("BAD_SIGN_OFF",
2828 "Co-developed-by: must be immediately followed by Signed-off-by:\n" . "$here\n" . $rawline);
2829 } elsif ($rawlines[$linenr] !~ /^\s*signed-off-by:\s*(.*)/i) {
2830 WARN("BAD_SIGN_OFF",
2831 "Co-developed-by: must be immediately followed by Signed-off-by:\n" . "$here\n" . $rawline . "\n" .$rawlines[$linenr]);
2832 } elsif ($1 ne $email) {
2833 WARN("BAD_SIGN_OFF",
2834 "Co-developed-by and Signed-off-by: name/email do not match \n" . "$here\n" . $rawline . "\n" .$rawlines[$linenr]);
2839 # Check email subject for common tools that don't need to be mentioned
2840 if ($in_header_lines &&
2841 $line =~ /^Subject:.*\b(?:checkpatch|sparse|smatch)\b[^:]/i) {
2842 WARN("EMAIL_SUBJECT",
2843 "A patch subject line should describe the change not the tool that found it\n" . $herecurr);
2846 # Check for Gerrit Change-Ids not in any patch context
2847 if ($realfile eq '' && !$has_patch_separator && $line =~ /^\s*change-id:/i) {
2848 ERROR("GERRIT_CHANGE_ID",
2849 "Remove Gerrit Change-Id's before submitting upstream\n" . $herecurr);
2852 # Check if the commit log is in a possible stack dump
2853 if ($in_commit_log && !$commit_log_possible_stack_dump &&
2854 ($line =~ /^\s*(?:WARNING:|BUG:)/ ||
2855 $line =~ /^\s*\[\s*\d+\.\d{6,6}\s*\]/ ||
2857 $line =~ /^\s*\[\<[0-9a-fA-F]{8,}\>\]/) ||
2858 $line =~ /^(?:\s+\w+:\s+[0-9a-fA-F]+){3,3}/ ||
2859 $line =~ /^\s*\#\d+\s*\[[0-9a-fA-F]+\]\s*\w+ at [0-9a-fA-F]+/) {
2860 # stack dump address styles
2861 $commit_log_possible_stack_dump = 1;
2864 # Check for line lengths > 75 in commit log, warn once
2865 if ($in_commit_log && !$commit_log_long_line &&
2866 length($line) > 75 &&
2867 !($line =~ /^\s*[a-zA-Z0-9_\/\.]+\s+\|\s+\d+/ ||
2868 # file delta changes
2869 $line =~ /^\s*(?:[\w\.\-]+\/)++[\w\.\-]+:/ ||
2871 $line =~ /^\s*(?:Fixes:|Link:)/i ||
2872 # A Fixes: or Link: line
2873 $commit_log_possible_stack_dump)) {
2874 WARN("COMMIT_LOG_LONG_LINE",
2875 "Possible unwrapped commit description (prefer a maximum 75 chars per line)\n" . $herecurr);
2876 $commit_log_long_line = 1;
2879 # Reset possible stack dump if a blank line is found
2880 if ($in_commit_log && $commit_log_possible_stack_dump &&
2882 $commit_log_possible_stack_dump = 0;
2885 # Check for git id commit length and improperly formed commit descriptions
2886 if ($in_commit_log && !$commit_log_possible_stack_dump &&
2887 $line !~ /^\s*(?:Link|Patchwork|http|https|BugLink|base-commit):/i &&
2888 $line !~ /^This reverts commit [0-9a-f]{7,40}/ &&
2889 ($line =~ /\bcommit\s+[0-9a-f]{5,}\b/i ||
2890 ($line =~ /(?:\s|^)[0-9a-f]{12,40}(?:[\s"'\(\[]|$)/i &&
2891 $line !~ /[\<\[][0-9a-f]{12,40}[\>\]]/i &&
2892 $line !~ /\bfixes:\s*[0-9a-f]{12,40}/i))) {
2893 my $init_char = "c";
2894 my $orig_commit = "";
2901 my $id = '0123456789ab';
2902 my $orig_desc = "commit description";
2903 my $description = "";
2905 if ($line =~ /\b(c)ommit\s+([0-9a-f]{5,})\b/i) {
2907 $orig_commit = lc($2);
2908 } elsif ($line =~ /\b([0-9a-f]{12,40})\b/i) {
2909 $orig_commit = lc($1);
2912 $short = 0 if ($line =~ /\bcommit\s+[0-9a-f]{12,40}/i);
2913 $long = 1 if ($line =~ /\bcommit\s+[0-9a-f]{41,}/i);
2914 $space = 0 if ($line =~ /\bcommit [0-9a-f]/i);
2915 $case = 0 if ($line =~ /\b[Cc]ommit\s+[0-9a-f]{5,40}[^A-F]/);
2916 if ($line =~ /\bcommit\s+[0-9a-f]{5,}\s+\("([^"]+)"\)/i) {
2919 } elsif ($line =~ /\bcommit\s+[0-9a-f]{5,}\s*$/i &&
2920 defined $rawlines[$linenr] &&
2921 $rawlines[$linenr] =~ /^\s*\("([^"]+)"\)/) {
2924 } elsif ($line =~ /\bcommit\s+[0-9a-f]{5,}\s+\("[^"]+$/i &&
2925 defined $rawlines[$linenr] &&
2926 $rawlines[$linenr] =~ /^\s*[^"]+"\)/) {
2927 $line =~ /\bcommit\s+[0-9a-f]{5,}\s+\("([^"]+)$/i;
2929 $rawlines[$linenr] =~ /^\s*([^"]+)"\)/;
2930 $orig_desc .= " " . $1;
2934 ($id, $description) = git_commit_info($orig_commit,
2938 ($short || $long || $space || $case || ($orig_desc ne $description) || !$hasparens)) {
2939 ERROR("GIT_COMMIT_ID",
2940 "Please use git commit description style 'commit <12+ chars of sha1> (\"<title line>\")' - ie: '${init_char}ommit $id (\"$description\")'\n" . $herecurr);
2944 # Check for added, moved or deleted files
2945 if (!$reported_maintainer_file && !$in_commit_log &&
2946 ($line =~ /^(?:new|deleted) file mode\s*\d+\s*$/ ||
2947 $line =~ /^rename (?:from|to) [\w\/\.\-]+\s*$/ ||
2948 ($line =~ /\{\s*([\w\/\.\-]*)\s*\=\>\s*([\w\/\.\-]*)\s*\}/ &&
2949 (defined($1) || defined($2))))) {
2951 $reported_maintainer_file = 1;
2952 WARN("FILE_PATH_CHANGES",
2953 "added, moved or deleted file(s), does MAINTAINERS need updating?\n" . $herecurr);
2956 # Check for adding new DT bindings not in schema format
2957 if (!$in_commit_log &&
2958 ($line =~ /^new file mode\s*\d+\s*$/) &&
2959 ($realfile =~ m@^Documentation/devicetree/bindings/.*\.txt$@)) {
2960 WARN("DT_SCHEMA_BINDING_PATCH",
2961 "DT bindings should be in DT schema format. See: Documentation/devicetree/writing-schema.rst\n");
2964 # Check for wrappage within a valid hunk of the file
2965 if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) {
2966 ERROR("CORRUPTED_PATCH",
2967 "patch seems to be corrupt (line wrapped?)\n" .
2968 $herecurr) if (!$emitted_corrupt++);
2971 # UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
2972 if (($realfile =~ /^$/ || $line =~ /^\+/) &&
2973 $rawline !~ m/^$UTF8*$/) {
2974 my ($utf8_prefix) = ($rawline =~ /^($UTF8*)/);
2976 my $blank = copy_spacing($rawline);
2977 my $ptr = substr($blank, 0, length($utf8_prefix)) . "^";
2978 my $hereptr = "$hereline$ptr\n";
2981 "Invalid UTF-8, patch and commit message should be encoded in UTF-8\n" . $hereptr);
2984 # Check if it's the start of a commit log
2985 # (not a header line and we haven't seen the patch filename)
2986 if ($in_header_lines && $realfile =~ /^$/ &&
2987 !($rawline =~ /^\s+(?:\S|$)/ ||
2988 $rawline =~ /^(?:commit\b|from\b|[\w-]+:)/i)) {
2989 $in_header_lines = 0;
2991 $has_commit_log = 1;
2994 # Check if there is UTF-8 in a commit log when a mail header has explicitly
2995 # declined it, i.e defined some charset where it is missing.
2996 if ($in_header_lines &&
2997 $rawline =~ /^Content-Type:.+charset="(.+)".*$/ &&
2999 $non_utf8_charset = 1;
3002 if ($in_commit_log && $non_utf8_charset && $realfile =~ /^$/ &&
3003 $rawline =~ /$NON_ASCII_UTF8/) {
3004 WARN("UTF8_BEFORE_PATCH",
3005 "8-bit UTF-8 used in possible commit log\n" . $herecurr);
3008 # Check for absolute kernel paths in commit message
3009 if ($tree && $in_commit_log) {
3010 while ($line =~ m{(?:^|\s)(/\S*)}g) {
3013 if ($file =~ m{^(.*?)(?::\d+)+:?$} &&
3014 check_absolute_file($1, $herecurr)) {
3017 check_absolute_file($file, $herecurr);
3022 # Check for various typo / spelling mistakes
3023 if (defined($misspellings) &&
3024 ($in_commit_log || $line =~ /^(?:\+|Subject:)/i)) {
3025 while ($rawline =~ /(?:^|[^a-z@])($misspellings)(?:\b|$|[^a-z@])/gi) {
3027 my $typo_fix = $spelling_fix{lc($typo)};
3028 $typo_fix = ucfirst($typo_fix) if ($typo =~ /^[A-Z]/);
3029 $typo_fix = uc($typo_fix) if ($typo =~ /^[A-Z]+$/);
3030 my $msg_level = \&WARN;
3031 $msg_level = \&CHK if ($file);
3032 if (&{$msg_level}("TYPO_SPELLING",
3033 "'$typo' may be misspelled - perhaps '$typo_fix'?\n" . $herecurr) &&
3035 $fixed[$fixlinenr] =~ s/(^|[^A-Za-z@])($typo)($|[^A-Za-z@])/$1$typo_fix$3/;
3040 # check for invalid commit id
3041 if ($in_commit_log && $line =~ /(^fixes:|\bcommit)\s+([0-9a-f]{6,40})\b/i) {
3044 ($id, $description) = git_commit_info($2, undef, undef);
3045 if (!defined($id)) {
3046 WARN("UNKNOWN_COMMIT_ID",
3047 "Unknown commit id '$2', maybe rebased or not pulled?\n" . $herecurr);
3051 # check for repeated words separated by a single space
3052 if ($rawline =~ /^\+/ || $in_commit_log) {
3053 while ($rawline =~ /\b($word_pattern) (?=($word_pattern))/g) {
3058 if ($first =~ /(?:struct|union|enum)/) {
3059 pos($rawline) += length($first) + length($second) + 1;
3063 next if ($first ne $second);
3064 next if ($first eq 'long');
3066 if (WARN("REPEATED_WORD",
3067 "Possible repeated word: '$first'\n" . $herecurr) &&
3069 $fixed[$fixlinenr] =~ s/\b$first $second\b/$first/;
3073 # if it's a repeated word on consecutive lines in a comment block
3074 if ($prevline =~ /$;+\s*$/ &&
3075 $prevrawline =~ /($word_pattern)\s*$/) {
3077 if ($rawline =~ /^\+\s*\*\s*$last_word /) {
3078 if (WARN("REPEATED_WORD",
3079 "Possible repeated word: '$last_word'\n" . $hereprev) &&
3081 $fixed[$fixlinenr] =~ s/(\+\s*\*\s*)$last_word /$1/;
3087 # ignore non-hunk lines and lines being removed
3088 next if (!$hunk_line || $line =~ /^-/);
3090 #trailing whitespace
3091 if ($line =~ /^\+.*\015/) {
3092 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
3093 if (ERROR("DOS_LINE_ENDINGS",
3094 "DOS line endings\n" . $herevet) &&
3096 $fixed[$fixlinenr] =~ s/[\s\015]+$//;
3098 } elsif ($rawline =~ /^\+.*\S\s+$/ || $rawline =~ /^\+\s+$/) {
3099 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
3100 if (ERROR("TRAILING_WHITESPACE",
3101 "trailing whitespace\n" . $herevet) &&
3103 $fixed[$fixlinenr] =~ s/\s+$//;
3109 # Check for FSF mailing addresses.
3110 if ($rawline =~ /\bwrite to the Free/i ||
3111 $rawline =~ /\b675\s+Mass\s+Ave/i ||
3112 $rawline =~ /\b59\s+Temple\s+Pl/i ||
3113 $rawline =~ /\b51\s+Franklin\s+St/i) {
3114 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
3115 my $msg_level = \&ERROR;
3116 $msg_level = \&CHK if ($file);
3117 &{$msg_level}("FSF_MAILING_ADDRESS",
3118 "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)
3121 # check for Kconfig help text having a real description
3122 # Only applies when adding the entry originally, after that we do not have
3123 # sufficient context to determine whether it is indeed long enough.
3124 if ($realfile =~ /Kconfig/ &&
3125 # 'choice' is usually the last thing on the line (though
3126 # Kconfig supports named choices), so use a word boundary
3127 # (\b) rather than a whitespace character (\s)
3128 $line =~ /^\+\s*(?:config|menuconfig|choice)\b/) {
3131 my $ln = $linenr + 1;
3135 for (; $cnt > 0 && defined $lines[$ln - 1]; $ln++) {
3136 $f = $lines[$ln - 1];
3137 $cnt-- if ($lines[$ln - 1] !~ /^-/);
3138 $is_end = $lines[$ln - 1] =~ /^\+/;
3140 next if ($f =~ /^-/);
3141 last if (!$file && $f =~ /^\@\@/);
3143 if ($lines[$ln - 1] =~ /^\+\s*(?:bool|tristate|prompt)\s*["']/) {
3145 } elsif ($lines[$ln - 1] =~ /^\+\s*(?:---)?help(?:---)?$/) {
3152 next if ($f =~ /^$/);
3154 # This only checks context lines in the patch
3155 # and so hopefully shouldn't trigger false
3156 # positives, even though some of these are
3157 # common words in help texts
3158 if ($f =~ /^\s*(?:config|menuconfig|choice|endchoice|
3159 if|endif|menu|endmenu|source)\b/x) {
3165 if ($is_start && $is_end && $length < $min_conf_desc_length) {
3166 WARN("CONFIG_DESCRIPTION",
3167 "please write a paragraph that describes the config symbol fully\n" . $herecurr);
3169 #print "is_start<$is_start> is_end<$is_end> length<$length>\n";
3172 # check MAINTAINERS entries
3173 if ($realfile =~ /^MAINTAINERS$/) {
3174 # check MAINTAINERS entries for the right form
3175 if ($rawline =~ /^\+[A-Z]:/ &&
3176 $rawline !~ /^\+[A-Z]:\t\S/) {
3177 if (WARN("MAINTAINERS_STYLE",
3178 "MAINTAINERS entries use one tab after TYPE:\n" . $herecurr) &&
3180 $fixed[$fixlinenr] =~ s/^(\+[A-Z]):\s*/$1:\t/;
3183 # check MAINTAINERS entries for the right ordering too
3184 my $preferred_order = 'MRLSWQBCPTFXNK';
3185 if ($rawline =~ /^\+[A-Z]:/ &&
3186 $prevrawline =~ /^[\+ ][A-Z]:/) {
3187 $rawline =~ /^\+([A-Z]):\s*(.*)/;
3190 $prevrawline =~ /^[\+ ]([A-Z]):\s*(.*)/;
3193 my $curindex = index($preferred_order, $cur);
3194 my $previndex = index($preferred_order, $prev);
3195 if ($curindex < 0) {
3196 WARN("MAINTAINERS_STYLE",
3197 "Unknown MAINTAINERS entry type: '$cur'\n" . $herecurr);
3199 if ($previndex >= 0 && $curindex < $previndex) {
3200 WARN("MAINTAINERS_STYLE",
3201 "Misordered MAINTAINERS entry - list '$cur:' before '$prev:'\n" . $hereprev);
3202 } elsif ((($prev eq 'F' && $cur eq 'F') ||
3203 ($prev eq 'X' && $cur eq 'X')) &&
3204 ($prevval cmp $curval) > 0) {
3205 WARN("MAINTAINERS_STYLE",
3206 "Misordered MAINTAINERS entry - list file patterns in alphabetic order\n" . $hereprev);
3212 # discourage the use of boolean for type definition attributes of Kconfig options
3213 if ($realfile =~ /Kconfig/ &&
3214 $line =~ /^\+\s*\bboolean\b/) {
3215 WARN("CONFIG_TYPE_BOOLEAN",
3216 "Use of boolean is deprecated, please use bool instead.\n" . $herecurr);
3219 if (($realfile =~ /Makefile.*/ || $realfile =~ /Kbuild.*/) &&
3220 ($line =~ /\+(EXTRA_[A-Z]+FLAGS).*/)) {
3223 'EXTRA_AFLAGS' => 'asflags-y',
3224 'EXTRA_CFLAGS' => 'ccflags-y',
3225 'EXTRA_CPPFLAGS' => 'cppflags-y',
3226 'EXTRA_LDFLAGS' => 'ldflags-y',
3229 WARN("DEPRECATED_VARIABLE",
3230 "Use of $flag is deprecated, please use \`$replacement->{$flag} instead.\n" . $herecurr) if ($replacement->{$flag});
3233 # check for DT compatible documentation
3234 if (defined $root &&
3235 (($realfile =~ /\.dtsi?$/ && $line =~ /^\+\s*compatible\s*=\s*\"/) ||
3236 ($realfile =~ /\.[ch]$/ && $line =~ /^\+.*\.compatible\s*=\s*\"/))) {
3238 my @compats = $rawline =~ /\"([a-zA-Z0-9\-\,\.\+_]+)\"/g;
3240 my $dt_path = $root . "/Documentation/devicetree/bindings/";
3241 my $vp_file = $dt_path . "vendor-prefixes.yaml";
3243 foreach my $compat (@compats) {
3244 my $compat2 = $compat;
3245 $compat2 =~ s/\,[a-zA-Z0-9]*\-/\,<\.\*>\-/;
3246 my $compat3 = $compat;
3247 $compat3 =~ s/\,([a-z]*)[0-9]*\-/\,$1<\.\*>\-/;
3248 `grep -Erq "$compat|$compat2|$compat3" $dt_path`;
3250 WARN("UNDOCUMENTED_DT_STRING",
3251 "DT compatible string \"$compat\" appears un-documented -- check $dt_path\n" . $herecurr);
3254 next if $compat !~ /^([a-zA-Z0-9\-]+)\,/;
3256 `grep -Eq "\\"\\^\Q$vendor\E,\\.\\*\\":" $vp_file`;
3258 WARN("UNDOCUMENTED_DT_STRING",
3259 "DT compatible string vendor \"$vendor\" appears un-documented -- check $vp_file\n" . $herecurr);
3264 # check for using SPDX license tag at beginning of files
3265 if ($realline == $checklicenseline) {
3266 if ($rawline =~ /^[ \+]\s*\#\!\s*\//) {
3267 $checklicenseline = 2;
3268 } elsif ($rawline =~ /^\+/) {
3270 if ($realfile =~ /\.(h|s|S)$/) {
3272 } elsif ($realfile =~ /\.(c|dts|dtsi)$/) {
3274 } elsif (($checklicenseline == 2) || $realfile =~ /\.(sh|pl|py|awk|tc|yaml)$/) {
3276 } elsif ($realfile =~ /\.rst$/) {
3280 # check SPDX comment style for .[chsS] files
3281 if ($realfile =~ /\.[chsS]$/ &&
3282 $rawline =~ /SPDX-License-Identifier:/ &&
3283 $rawline !~ m@^\+\s*\Q$comment\E\s*@) {
3284 WARN("SPDX_LICENSE_TAG",
3285 "Improper SPDX comment style for '$realfile', please use '$comment' instead\n" . $herecurr);
3288 if ($comment !~ /^$/ &&
3289 $rawline !~ m@^\+\Q$comment\E SPDX-License-Identifier: @) {
3290 WARN("SPDX_LICENSE_TAG",
3291 "Missing or malformed SPDX-License-Identifier tag in line $checklicenseline\n" . $herecurr);
3292 } elsif ($rawline =~ /(SPDX-License-Identifier: .*)/) {
3293 my $spdx_license = $1;
3294 if (!is_SPDX_License_valid($spdx_license)) {
3295 WARN("SPDX_LICENSE_TAG",
3296 "'$spdx_license' is not supported in LICENSES/...\n" . $herecurr);
3298 if ($realfile =~ m@^Documentation/devicetree/bindings/@ &&
3299 not $spdx_license =~ /GPL-2\.0.*BSD-2-Clause/) {
3300 my $msg_level = \&WARN;
3301 $msg_level = \&CHK if ($file);
3302 if (&{$msg_level}("SPDX_LICENSE_TAG",
3304 "DT binding documents should be licensed (GPL-2.0-only OR BSD-2-Clause)\n" . $herecurr) &&
3306 $fixed[$fixlinenr] =~ s/SPDX-License-Identifier: .*/SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)/;
3313 # check for embedded filenames
3314 if ($rawline =~ /^\+.*\Q$realfile\E/) {
3315 WARN("EMBEDDED_FILENAME",
3316 "It's generally not useful to have the filename in the file\n" . $herecurr);
3319 # check we are in a valid source file if not then ignore this hunk
3320 next if ($realfile !~ /\.(h|c|s|S|sh|dtsi|dts)$/);
3322 # check for using SPDX-License-Identifier on the wrong line number
3323 if ($realline != $checklicenseline &&
3324 $rawline =~ /\bSPDX-License-Identifier:/ &&
3325 substr($line, @-, @+ - @-) eq "$;" x (@+ - @-)) {
3326 WARN("SPDX_LICENSE_TAG",
3327 "Misplaced SPDX-License-Identifier tag - use line $checklicenseline instead\n" . $herecurr);
3330 # line length limit (with some exclusions)
3332 # There are a few types of lines that may extend beyond $max_line_length:
3333 # logging functions like pr_info that end in a string
3334 # lines with a single string
3335 # #defines that are a single string
3336 # lines with an RFC3986 like URL
3338 # There are 3 different line length message types:
3339 # LONG_LINE_COMMENT a comment starts before but extends beyond $max_line_length
3340 # LONG_LINE_STRING a string starts before but extends beyond $max_line_length
3341 # LONG_LINE all other lines longer than $max_line_length
3343 # if LONG_LINE is ignored, the other 2 types are also ignored
3346 if ($line =~ /^\+/ && $length > $max_line_length) {
3347 my $msg_type = "LONG_LINE";
3349 # Check the allowed long line types first
3351 # logging functions that end in a string that starts
3352 # before $max_line_length
3353 if ($line =~ /^\+\s*$logFunctions\s*\(\s*(?:(?:KERN_\S+\s*|[^"]*))?($String\s*(?:|,|\)\s*;)\s*)$/ &&
3354 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3357 # lines with only strings (w/ possible termination)
3358 # #defines with only strings
3359 } elsif ($line =~ /^\+\s*$String\s*(?:\s*|,|\)\s*;)\s*$/ ||
3360 $line =~ /^\+\s*#\s*define\s+\w+\s+$String$/) {
3363 # More special cases
3364 } elsif ($line =~ /^\+.*\bEFI_GUID\s*\(/ ||
3365 $line =~ /^\+\s*(?:\w+)?\s*DEFINE_PER_CPU/) {
3368 # URL ($rawline is used in case the URL is in a comment)
3369 } elsif ($rawline =~ /^\+.*\b[a-z][\w\.\+\-]*:\/\/\S+/i) {
3372 # Otherwise set the alternate message types
3374 # a comment starts before $max_line_length
3375 } elsif ($line =~ /($;[\s$;]*)$/ &&
3376 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3377 $msg_type = "LONG_LINE_COMMENT"
3379 # a quoted string starts before $max_line_length
3380 } elsif ($sline =~ /\s*($String(?:\s*(?:\\|,\s*|\)\s*;\s*))?)$/ &&
3381 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3382 $msg_type = "LONG_LINE_STRING"
3385 if ($msg_type ne "" &&
3386 (show_type("LONG_LINE") || show_type($msg_type))) {
3387 my $msg_level = \&WARN;
3388 $msg_level = \&CHK if ($file);
3389 &{$msg_level}($msg_type,
3390 "line length of $length exceeds $max_line_length columns\n" . $herecurr);
3394 # check for adding lines without a newline.
3395 if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
3396 WARN("MISSING_EOF_NEWLINE",
3397 "adding a line without newline at end of file\n" . $herecurr);
3400 # check we are in a valid source file C or perl if not then ignore this hunk
3401 next if ($realfile !~ /\.(h|c|pl|dtsi|dts)$/);
3403 # at the beginning of a line any tabs must come first and anything
3404 # more than $tabsize must use tabs.
3405 if ($rawline =~ /^\+\s* \t\s*\S/ ||
3406 $rawline =~ /^\+\s* \s*/) {
3407 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
3409 if (ERROR("CODE_INDENT",
3410 "code indent should use tabs where possible\n" . $herevet) &&
3412 $fixed[$fixlinenr] =~ s/^\+([ \t]+)/"\+" . tabify($1)/e;
3416 # check for space before tabs.
3417 if ($rawline =~ /^\+/ && $rawline =~ / \t/) {
3418 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
3419 if (WARN("SPACE_BEFORE_TAB",
3420 "please, no space before tabs\n" . $herevet) &&
3422 while ($fixed[$fixlinenr] =~
3423 s/(^\+.*) {$tabsize,$tabsize}\t/$1\t\t/) {}
3424 while ($fixed[$fixlinenr] =~
3425 s/(^\+.*) +\t/$1\t/) {}
3429 # check for assignments on the start of a line
3430 if ($sline =~ /^\+\s+($Assignment)[^=]/) {
3431 CHK("ASSIGNMENT_CONTINUATIONS",
3432 "Assignment operator '$1' should be on the previous line\n" . $hereprev);
3435 # check for && or || at the start of a line
3436 if ($rawline =~ /^\+\s*(&&|\|\|)/) {
3437 CHK("LOGICAL_CONTINUATIONS",
3438 "Logical continuations should be on the previous line\n" . $hereprev);
3441 # check indentation starts on a tab stop
3442 if ($perl_version_ok &&
3443 $sline =~ /^\+\t+( +)(?:$c90_Keywords\b|\{\s*$|\}\s*(?:else\b|while\b|\s*$)|$Declare\s*$Ident\s*[;=])/) {
3444 my $indent = length($1);
3445 if ($indent % $tabsize) {
3447 "Statements should start on a tabstop\n" . $herecurr) &&
3449 $fixed[$fixlinenr] =~ s@(^\+\t+) +@$1 . "\t" x ($indent/$tabsize)@e;
3454 # check multi-line statement indentation matches previous line
3455 if ($perl_version_ok &&
3456 $prevline =~ /^\+([ \t]*)((?:$c90_Keywords(?:\s+if)\s*)|(?:$Declare\s*)?(?:$Ident|\(\s*\*\s*$Ident\s*\))\s*|(?:\*\s*)*$Lval\s*=\s*$Ident\s*)\(.*(\&\&|\|\||,)\s*$/) {
3457 $prevline =~ /^\+(\t*)(.*)$/;
3461 my $pos = pos_last_openparen($rest);
3463 $line =~ /^(\+| )([ \t]*)/;
3466 my $goodtabindent = $oldindent .
3467 "\t" x ($pos / $tabsize) .
3468 " " x ($pos % $tabsize);
3469 my $goodspaceindent = $oldindent . " " x $pos;
3471 if ($newindent ne $goodtabindent &&
3472 $newindent ne $goodspaceindent) {
3474 if (CHK("PARENTHESIS_ALIGNMENT",
3475 "Alignment should match open parenthesis\n" . $hereprev) &&
3476 $fix && $line =~ /^\+/) {
3477 $fixed[$fixlinenr] =~
3478 s/^\+[ \t]*/\+$goodtabindent/;
3484 # check for space after cast like "(int) foo" or "(struct foo) bar"
3485 # avoid checking a few false positives:
3486 # "sizeof(<type>)" or "__alignof__(<type>)"
3487 # function pointer declarations like "(*foo)(int) = bar;"
3488 # structure definitions like "(struct foo) { 0 };"
3489 # multiline macros that define functions
3490 # known attributes or the __attribute__ keyword
3491 if ($line =~ /^\+(.*)\(\s*$Type\s*\)([ \t]++)((?![={]|\\$|$Attribute|__attribute__))/ &&
3492 (!defined($1) || $1 !~ /\b(?:sizeof|__alignof__)\s*$/)) {
3494 "No space is necessary after a cast\n" . $herecurr) &&
3496 $fixed[$fixlinenr] =~
3497 s/(\(\s*$Type\s*\))[ \t]+/$1/;
3501 # Block comment styles
3502 # Networking with an initial /*
3503 if ($realfile =~ m@^(drivers/net/|net/)@ &&
3504 $prevrawline =~ /^\+[ \t]*\/\*[ \t]*$/ &&
3505 $rawline =~ /^\+[ \t]*\*/ &&
3506 $realline > 3) { # Do not warn about the initial copyright comment block after SPDX-License-Identifier
3507 WARN("NETWORKING_BLOCK_COMMENT_STYLE",
3508 "networking block comments don't use an empty /* line, use /* Comment...\n" . $hereprev);
3511 # Block comments use * on subsequent lines
3512 if ($prevline =~ /$;[ \t]*$/ && #ends in comment
3513 $prevrawline =~ /^\+.*?\/\*/ && #starting /*
3514 $prevrawline !~ /\*\/[ \t]*$/ && #no trailing */
3515 $rawline =~ /^\+/ && #line is new
3516 $rawline !~ /^\+[ \t]*\*/) { #no leading *
3517 WARN("BLOCK_COMMENT_STYLE",
3518 "Block comments use * on subsequent lines\n" . $hereprev);
3521 # Block comments use */ on trailing lines
3522 if ($rawline !~ m@^\+[ \t]*\*/[ \t]*$@ && #trailing */
3523 $rawline !~ m@^\+.*/\*.*\*/[ \t]*$@ && #inline /*...*/
3524 $rawline !~ m@^\+.*\*{2,}/[ \t]*$@ && #trailing **/
3525 $rawline =~ m@^\+[ \t]*.+\*\/[ \t]*$@) { #non blank */
3526 WARN("BLOCK_COMMENT_STYLE",
3527 "Block comments use a trailing */ on a separate line\n" . $herecurr);
3530 # Block comment * alignment
3531 if ($prevline =~ /$;[ \t]*$/ && #ends in comment
3532 $line =~ /^\+[ \t]*$;/ && #leading comment
3533 $rawline =~ /^\+[ \t]*\*/ && #leading *
3534 (($prevrawline =~ /^\+.*?\/\*/ && #leading /*
3535 $prevrawline !~ /\*\/[ \t]*$/) || #no trailing */
3536 $prevrawline =~ /^\+[ \t]*\*/)) { #leading *
3538 $prevrawline =~ m@^\+([ \t]*/?)\*@;
3540 $oldindent = expand_tabs($1);
3542 $prevrawline =~ m@^\+(.*/?)\*@;
3543 $oldindent = expand_tabs($1);
3545 $rawline =~ m@^\+([ \t]*)\*@;
3547 $newindent = expand_tabs($newindent);
3548 if (length($oldindent) ne length($newindent)) {
3549 WARN("BLOCK_COMMENT_STYLE",
3550 "Block comments should align the * on each line\n" . $hereprev);
3554 # check for missing blank lines after struct/union declarations
3555 # with exceptions for various attributes and macros
3556 if ($prevline =~ /^[\+ ]};?\s*$/ &&
3558 !($line =~ /^\+\s*$/ ||
3559 $line =~ /^\+\s*EXPORT_SYMBOL/ ||
3560 $line =~ /^\+\s*MODULE_/i ||
3561 $line =~ /^\+\s*\#\s*(?:end|elif|else)/ ||
3562 $line =~ /^\+[a-z_]*init/ ||
3563 $line =~ /^\+\s*(?:static\s+)?[A-Z_]*ATTR/ ||
3564 $line =~ /^\+\s*DECLARE/ ||
3565 $line =~ /^\+\s*builtin_[\w_]*driver/ ||
3566 $line =~ /^\+\s*__setup/)) {
3567 if (CHK("LINE_SPACING",
3568 "Please use a blank line after function/struct/union/enum declarations\n" . $hereprev) &&
3570 fix_insert_line($fixlinenr, "\+");
3574 # check for multiple consecutive blank lines
3575 if ($prevline =~ /^[\+ ]\s*$/ &&
3576 $line =~ /^\+\s*$/ &&
3577 $last_blank_line != ($linenr - 1)) {
3578 if (CHK("LINE_SPACING",
3579 "Please don't use multiple blank lines\n" . $hereprev) &&
3581 fix_delete_line($fixlinenr, $rawline);
3584 $last_blank_line = $linenr;
3587 # check for missing blank lines after declarations
3588 if ($sline =~ /^\+\s+\S/ && #Not at char 1
3589 # actual declarations
3590 ($prevline =~ /^\+\s+$Declare\s*$Ident\s*[=,;:\[]/ ||
3591 # function pointer declarations
3592 $prevline =~ /^\+\s+$Declare\s*\(\s*\*\s*$Ident\s*\)\s*[=,;:\[\(]/ ||
3593 # foo bar; where foo is some local typedef or #define
3594 $prevline =~ /^\+\s+$Ident(?:\s+|\s*\*\s*)$Ident\s*[=,;\[]/ ||
3595 # known declaration macros
3596 $prevline =~ /^\+\s+$declaration_macros/) &&
3597 # for "else if" which can look like "$Ident $Ident"
3598 !($prevline =~ /^\+\s+$c90_Keywords\b/ ||
3599 # other possible extensions of declaration lines
3600 $prevline =~ /(?:$Compare|$Assignment|$Operators)\s*$/ ||
3601 # not starting a section or a macro "\" extended line
3602 $prevline =~ /(?:\{\s*|\\)$/) &&
3603 # looks like a declaration
3604 !($sline =~ /^\+\s+$Declare\s*$Ident\s*[=,;:\[]/ ||
3605 # function pointer declarations
3606 $sline =~ /^\+\s+$Declare\s*\(\s*\*\s*$Ident\s*\)\s*[=,;:\[\(]/ ||
3607 # foo bar; where foo is some local typedef or #define
3608 $sline =~ /^\+\s+$Ident(?:\s+|\s*\*\s*)$Ident\s*[=,;\[]/ ||
3609 # known declaration macros
3610 $sline =~ /^\+\s+$declaration_macros/ ||
3611 # start of struct or union or enum
3612 $sline =~ /^\+\s+(?:static\s+)?(?:const\s+)?(?:union|struct|enum|typedef)\b/ ||
3613 # start or end of block or continuation of declaration
3614 $sline =~ /^\+\s+(?:$|[\{\}\.\#\"\?\:\(\[])/ ||
3615 # bitfield continuation
3616 $sline =~ /^\+\s+$Ident\s*:\s*\d+\s*[,;]/ ||
3617 # other possible extensions of declaration lines
3618 $sline =~ /^\+\s+\(?\s*(?:$Compare|$Assignment|$Operators)/) &&
3619 # indentation of previous and current line are the same
3620 (($prevline =~ /\+(\s+)\S/) && $sline =~ /^\+$1\S/)) {
3621 if (WARN("LINE_SPACING",
3622 "Missing a blank line after declarations\n" . $hereprev) &&
3624 fix_insert_line($fixlinenr, "\+");
3628 # check for spaces at the beginning of a line.
3630 # 1) within comments
3631 # 2) indented preprocessor commands
3633 if ($rawline =~ /^\+ / && $line !~ /^\+ *(?:$;|#|$Ident:)/) {
3634 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
3635 if (WARN("LEADING_SPACE",
3636 "please, no spaces at the start of a line\n" . $herevet) &&
3638 $fixed[$fixlinenr] =~ s/^\+([ \t]+)/"\+" . tabify($1)/e;
3642 # check we are in a valid C source file if not then ignore this hunk
3643 next if ($realfile !~ /\.(h|c)$/);
3645 # check for unusual line ending [ or (
3646 if ($line =~ /^\+.*([\[\(])\s*$/) {
3647 CHK("OPEN_ENDED_LINE",
3648 "Lines should not end with a '$1'\n" . $herecurr);
3651 # check if this appears to be the start function declaration, save the name
3652 if ($sline =~ /^\+\{\s*$/ &&
3653 $prevline =~ /^\+(?:(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*)?($Ident)\(/) {
3654 $context_function = $1;
3657 # check if this appears to be the end of function declaration
3658 if ($sline =~ /^\+\}\s*$/) {
3659 undef $context_function;
3662 # check indentation of any line with a bare else
3663 # (but not if it is a multiple line "if (foo) return bar; else return baz;")
3664 # if the previous line is a break or return and is indented 1 tab more...
3665 if ($sline =~ /^\+([\t]+)(?:}[ \t]*)?else(?:[ \t]*{)?\s*$/) {
3666 my $tabs = length($1) + 1;
3667 if ($prevline =~ /^\+\t{$tabs,$tabs}break\b/ ||
3668 ($prevline =~ /^\+\t{$tabs,$tabs}return\b/ &&
3669 defined $lines[$linenr] &&
3670 $lines[$linenr] !~ /^[ \+]\t{$tabs,$tabs}return/)) {
3671 WARN("UNNECESSARY_ELSE",
3672 "else is not generally useful after a break or return\n" . $hereprev);
3676 # check indentation of a line with a break;
3677 # if the previous line is a goto or return and is indented the same # of tabs
3678 if ($sline =~ /^\+([\t]+)break\s*;\s*$/) {
3680 if ($prevline =~ /^\+$tabs(?:goto|return)\b/) {
3681 WARN("UNNECESSARY_BREAK",
3682 "break is not useful after a goto or return\n" . $hereprev);
3686 # check for RCS/CVS revision markers
3687 if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) {
3689 "CVS style keyword markers, these will _not_ be updated\n". $herecurr);
3692 # check for old HOTPLUG __dev<foo> section markings
3693 if ($line =~ /\b(__dev(init|exit)(data|const|))\b/) {
3694 WARN("HOTPLUG_SECTION",
3695 "Using $1 is unnecessary\n" . $herecurr);
3698 # Check for potential 'bare' types
3699 my ($stat, $cond, $line_nr_next, $remain_next, $off_next,
3701 #print "LINE<$line>\n";
3702 if ($linenr > $suppress_statement &&
3703 $realcnt && $sline =~ /.\s*\S/) {
3704 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
3705 ctx_statement_block($linenr, $realcnt, 0);
3706 $stat =~ s/\n./\n /g;
3707 $cond =~ s/\n./\n /g;
3709 #print "linenr<$linenr> <$stat>\n";
3710 # If this statement has no statement boundaries within
3711 # it there is no point in retrying a statement scan
3712 # until we hit end of it.
3713 my $frag = $stat; $frag =~ s/;+\s*$//;
3714 if ($frag !~ /(?:{|;)/) {
3715 #print "skip<$line_nr_next>\n";
3716 $suppress_statement = $line_nr_next;
3719 # Find the real next line.
3720 $realline_next = $line_nr_next;
3721 if (defined $realline_next &&
3722 (!defined $lines[$realline_next - 1] ||
3723 substr($lines[$realline_next - 1], $off_next) =~ /^\s*$/)) {
3730 # Ignore goto labels.
3731 if ($s =~ /$Ident:\*$/s) {
3733 # Ignore functions being called
3734 } elsif ($s =~ /^.\s*$Ident\s*\(/s) {
3736 } elsif ($s =~ /^.\s*else\b/s) {
3738 # declarations always start with types
3739 } 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) {
3742 possible($type, "A:" . $s);
3744 # definitions in global scope can only start with types
3745 } elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b\s*(?!:)/s) {
3746 possible($1, "B:" . $s);
3749 # any (foo ... *) is a pointer cast, and foo is a type
3750 while ($s =~ /\(($Ident)(?:\s+$Sparse)*[\s\*]+\s*\)/sg) {
3751 possible($1, "C:" . $s);
3754 # Check for any sort of function declaration.
3755 # int foo(something bar, other baz);
3756 # void (*store_gdt)(x86_descr_ptr *);
3757 if ($prev_values eq 'E' && $s =~ /^(.(?:typedef\s*)?(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*(?:\b$Ident|\(\*\s*$Ident\))\s*)\(/s) {
3758 my ($name_len) = length($1);
3761 substr($ctx, 0, $name_len + 1, '');
3762 $ctx =~ s/\)[^\)]*$//;
3764 for my $arg (split(/\s*,\s*/, $ctx)) {
3765 if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$/s) {
3767 possible($1, "D:" . $s);
3775 # Checks which may be anchored in the context.
3778 # Check for switch () and associated case and default
3779 # statements should be at the same indent.
3780 if ($line=~/\bswitch\s*\(.*\)/) {
3783 my @ctx = ctx_block_outer($linenr, $realcnt);
3785 for my $ctx (@ctx) {
3786 my ($clen, $cindent) = line_stats($ctx);
3787 if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
3788 $indent != $cindent) {
3789 $err .= "$sep$ctx\n";
3796 ERROR("SWITCH_CASE_INDENT_LEVEL",
3797 "switch and case should be at the same indent\n$hereline$err");
3801 # if/while/etc brace do not go on next line, unless defining a do while loop,
3802 # or if that brace on the next line is for something else
3803 if ($line =~ /(.*)\b((?:if|while|for|switch|(?:[a-z_]+|)for_each[a-z_]+)\s*\(|do\b|else\b)/ && $line !~ /^.\s*\#/) {
3804 my $pre_ctx = "$1$2";
3806 my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0);
3808 if ($line =~ /^\+\t{6,}/) {
3809 WARN("DEEP_INDENTATION",
3810 "Too many leading tabs - consider code refactoring\n" . $herecurr);
3813 my $ctx_cnt = $realcnt - $#ctx - 1;
3814 my $ctx = join("\n", @ctx);
3816 my $ctx_ln = $linenr;
3817 my $ctx_skip = $realcnt;
3819 while ($ctx_skip > $ctx_cnt || ($ctx_skip == $ctx_cnt &&
3820 defined $lines[$ctx_ln - 1] &&
3821 $lines[$ctx_ln - 1] =~ /^-/)) {
3822 ##print "SKIP<$ctx_skip> CNT<$ctx_cnt>\n";
3823 $ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/);
3827 #print "realcnt<$realcnt> ctx_cnt<$ctx_cnt>\n";
3828 #print "pre<$pre_ctx>\nline<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>\n";
3830 if ($ctx !~ /{\s*/ && defined($lines[$ctx_ln - 1]) && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
3832 "that open brace { should be on the previous line\n" .
3833 "$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
3835 if ($level == 0 && $pre_ctx !~ /}\s*while\s*\($/ &&
3836 $ctx =~ /\)\s*\;\s*$/ &&
3837 defined $lines[$ctx_ln - 1])
3839 my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
3840 if ($nindent > $indent) {
3841 WARN("TRAILING_SEMICOLON",
3842 "trailing semicolon indicates no statements, indent implies otherwise\n" .
3843 "$here\n$ctx\n$rawlines[$ctx_ln - 1]\n");
3848 # Check relative indent for conditionals and blocks.
3849 if ($line =~ /\b(?:(?:if|while|for|(?:[a-z_]+|)for_each[a-z_]+)\s*\(|(?:do|else)\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) {
3850 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
3851 ctx_statement_block($linenr, $realcnt, 0)
3852 if (!defined $stat);
3853 my ($s, $c) = ($stat, $cond);
3855 substr($s, 0, length($c), '');
3857 # remove inline comments
3861 # Find out how long the conditional actually is.
3862 my @newlines = ($c =~ /\n/gs);
3863 my $cond_lines = 1 + $#newlines;
3865 # Make sure we remove the line prefixes as we have
3866 # none on the first line, and are going to readd them
3869 while ($s =~ /\n\s+\\\n/) {
3870 $cond_lines += $s =~ s/\n\s+\\\n/\n/g;
3873 # We want to check the first line inside the block
3874 # starting at the end of the conditional, so remove:
3875 # 1) any blank line termination
3876 # 2) any opening brace { on end of the line
3878 my $continuation = 0;
3880 $s =~ s/^.*\bdo\b//;
3882 if ($s =~ s/^\s*\\//) {
3885 if ($s =~ s/^\s*?\n//) {
3890 # Also ignore a loop construct at the end of a
3891 # preprocessor statement.
3892 if (($prevline =~ /^.\s*#\s*define\s/ ||
3893 $prevline =~ /\\\s*$/) && $continuation == 0) {
3899 while ($cond_ptr != $cond_lines) {
3900 $cond_ptr = $cond_lines;
3902 # If we see an #else/#elif then the code
3904 if ($s =~ /^\s*\#\s*(?:else|elif)/) {
3909 # 1) blank lines, they should be at 0,
3910 # 2) preprocessor lines, and
3912 if ($continuation ||
3914 $s =~ /^\s*#\s*?/ ||
3915 $s =~ /^\s*$Ident\s*:/) {
3916 $continuation = ($s =~ /^.*?\\\n/) ? 1 : 0;
3917 if ($s =~ s/^.*?\n//) {
3923 my (undef, $sindent) = line_stats("+" . $s);
3924 my $stat_real = raw_line($linenr, $cond_lines);
3926 # Check if either of these lines are modified, else
3927 # this is not this patch's fault.
3928 if (!defined($stat_real) ||
3929 $stat !~ /^\+/ && $stat_real !~ /^\+/) {
3932 if (defined($stat_real) && $cond_lines > 1) {
3933 $stat_real = "[...]\n$stat_real";
3936 #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";
3938 if ($check && $s ne '' &&
3939 (($sindent % $tabsize) != 0 ||
3940 ($sindent < $indent) ||
3941 ($sindent == $indent &&
3942 ($s !~ /^\s*(?:\}|\{|else\b)/)) ||
3943 ($sindent > $indent + $tabsize))) {
3944 WARN("SUSPECT_CODE_INDENT",
3945 "suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n");
3949 # Track the 'values' across context and added lines.
3950 my $opline = $line; $opline =~ s/^./ /;
3951 my ($curr_values, $curr_vars) =
3952 annotate_values($opline . "\n", $prev_values);
3953 $curr_values = $prev_values . $curr_values;
3955 my $outline = $opline; $outline =~ s/\t/ /g;
3956 print "$linenr > .$outline\n";
3957 print "$linenr > $curr_values\n";
3958 print "$linenr > $curr_vars\n";
3960 $prev_values = substr($curr_values, -1);
3962 #ignore lines not being added
3963 next if ($line =~ /^[^\+]/);
3965 # check for self assignments used to avoid compiler warnings
3966 # e.g.: int foo = foo, *bar = NULL;
3967 # struct foo bar = *(&(bar));
3968 if ($line =~ /^\+\s*(?:$Declare)?([A-Za-z_][A-Za-z\d_]*)\s*=/) {
3970 if ($line =~ /^\+\s*(?:$Declare)?$var\s*=\s*(?:$var|\*\s*\(?\s*&\s*\(?\s*$var\s*\)?\s*\)?)\s*[;,]/) {
3971 WARN("SELF_ASSIGNMENT",
3972 "Do not use self-assignments to avoid compiler warnings\n" . $herecurr);
3976 # check for dereferences that span multiple lines
3977 if ($prevline =~ /^\+.*$Lval\s*(?:\.|->)\s*$/ &&
3978 $line =~ /^\+\s*(?!\#\s*(?!define\s+|if))\s*$Lval/) {
3979 $prevline =~ /($Lval\s*(?:\.|->))\s*$/;
3981 $line =~ /^.\s*($Lval)/;
3984 WARN("MULTILINE_DEREFERENCE",
3985 "Avoid multiple line dereference - prefer '$ref'\n" . $hereprev);
3988 # check for declarations of signed or unsigned without int
3989 while ($line =~ m{\b($Declare)\s*(?!char\b|short\b|int\b|long\b)\s*($Ident)?\s*[=,;\[\)\(]}g) {
3992 $var = "" if (!defined $var);
3993 if ($type =~ /^(?:(?:$Storage|$Inline|$Attribute)\s+)*((?:un)?signed)((?:\s*\*)*)\s*$/) {
3997 $pointer = "" if (!defined $pointer);
3999 if (WARN("UNSPECIFIED_INT",
4000 "Prefer '" . trim($sign) . " int" . rtrim($pointer) . "' to bare use of '$sign" . rtrim($pointer) . "'\n" . $herecurr) &&
4002 my $decl = trim($sign) . " int ";
4003 my $comp_pointer = $pointer;
4004 $comp_pointer =~ s/\s//g;
4005 $decl .= $comp_pointer;
4006 $decl = rtrim($decl) if ($var eq "");
4007 $fixed[$fixlinenr] =~ s@\b$sign\s*\Q$pointer\E\s*$var\b@$decl$var@;
4012 # TEST: allow direct testing of the type matcher.
4014 if ($line =~ /^.\s*$Declare\s*$/) {
4016 "TEST: is type\n" . $herecurr);
4017 } elsif ($dbg_type > 1 && $line =~ /^.+($Declare)/) {
4018 ERROR("TEST_NOT_TYPE",
4019 "TEST: is not type ($1 is)\n". $herecurr);
4023 # TEST: allow direct testing of the attribute matcher.
4025 if ($line =~ /^.\s*$Modifier\s*$/) {
4027 "TEST: is attr\n" . $herecurr);
4028 } elsif ($dbg_attr > 1 && $line =~ /^.+($Modifier)/) {
4029 ERROR("TEST_NOT_ATTR",
4030 "TEST: is not attr ($1 is)\n". $herecurr);
4035 # check for initialisation to aggregates open brace on the next line
4036 if ($line =~ /^.\s*{/ &&
4037 $prevline =~ /(?:^|[^=])=\s*$/) {
4038 if (ERROR("OPEN_BRACE",
4039 "that open brace { should be on the previous line\n" . $hereprev) &&
4040 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
4041 fix_delete_line($fixlinenr - 1, $prevrawline);
4042 fix_delete_line($fixlinenr, $rawline);
4043 my $fixedline = $prevrawline;
4044 $fixedline =~ s/\s*=\s*$/ = {/;
4045 fix_insert_line($fixlinenr, $fixedline);
4047 $fixedline =~ s/^(.\s*)\{\s*/$1/;
4048 fix_insert_line($fixlinenr, $fixedline);
4053 # Checks which are anchored on the added line.
4056 # check for malformed paths in #include statements (uses RAW line)
4057 if ($rawline =~ m{^.\s*\#\s*include\s+[<"](.*)[">]}) {
4059 if ($path =~ m{//}) {
4060 ERROR("MALFORMED_INCLUDE",
4061 "malformed #include filename\n" . $herecurr);
4063 if ($path =~ "^uapi/" && $realfile =~ m@\binclude/uapi/@) {
4064 ERROR("UAPI_INCLUDE",
4065 "No #include in ...include/uapi/... should use a uapi/ path prefix\n" . $herecurr);
4069 # no C99 // comments
4070 if ($line =~ m{//}) {
4071 if (ERROR("C99_COMMENTS",
4072 "do not use C99 // comments\n" . $herecurr) &&
4074 my $line = $fixed[$fixlinenr];
4075 if ($line =~ /\/\/(.*)$/) {
4076 my $comment = trim($1);
4077 $fixed[$fixlinenr] =~ s@\/\/(.*)$@/\* $comment \*/@;
4081 # Remove C99 comments.
4083 $opline =~ s@//.*@@;
4085 # EXPORT_SYMBOL should immediately follow the thing it is exporting, consider
4086 # the whole statement.
4087 #print "APW <$lines[$realline_next - 1]>\n";
4088 if (defined $realline_next &&
4089 exists $lines[$realline_next - 1] &&
4090 !defined $suppress_export{$realline_next} &&
4091 ($lines[$realline_next - 1] =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
4092 $lines[$realline_next - 1] =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
4093 # Handle definitions which produce identifiers with
4096 # EXPORT_SYMBOL(something_foo);
4098 if ($stat =~ /^(?:.\s*}\s*\n)?.([A-Z_]+)\s*\(\s*($Ident)/ &&
4099 $name =~ /^${Ident}_$2/) {
4100 #print "FOO C name<$name>\n";
4101 $suppress_export{$realline_next} = 1;
4103 } elsif ($stat !~ /(?:
4105 ^.DEFINE_$Ident\(\Q$name\E\)|
4106 ^.DECLARE_$Ident\(\Q$name\E\)|
4107 ^.LIST_HEAD\(\Q$name\E\)|
4108 ^.(?:$Storage\s+)?$Type\s*\(\s*\*\s*\Q$name\E\s*\)\s*\(|
4109 \b\Q$name\E(?:\s+$Attribute)*\s*(?:;|=|\[|\()
4111 #print "FOO A<$lines[$realline_next - 1]> stat<$stat> name<$name>\n";
4112 $suppress_export{$realline_next} = 2;
4114 $suppress_export{$realline_next} = 1;
4117 if (!defined $suppress_export{$linenr} &&
4118 $prevline =~ /^.\s*$/ &&
4119 ($line =~ /EXPORT_SYMBOL.*\((.*)\)/ ||
4120 $line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
4121 #print "FOO B <$lines[$linenr - 1]>\n";
4122 $suppress_export{$linenr} = 2;
4124 if (defined $suppress_export{$linenr} &&
4125 $suppress_export{$linenr} == 2) {
4126 WARN("EXPORT_SYMBOL",
4127 "EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
4130 # check for global initialisers.
4131 if ($line =~ /^\+$Type\s*$Ident(?:\s+$Modifier)*\s*=\s*($zero_initializer)\s*;/) {
4132 if (ERROR("GLOBAL_INITIALISERS",
4133 "do not initialise globals to $1\n" . $herecurr) &&
4135 $fixed[$fixlinenr] =~ s/(^.$Type\s*$Ident(?:\s+$Modifier)*)\s*=\s*$zero_initializer\s*;/$1;/;
4138 # check for static initialisers.
4139 if ($line =~ /^\+.*\bstatic\s.*=\s*($zero_initializer)\s*;/) {
4140 if (ERROR("INITIALISED_STATIC",
4141 "do not initialise statics to $1\n" .
4144 $fixed[$fixlinenr] =~ s/(\bstatic\s.*?)\s*=\s*$zero_initializer\s*;/$1;/;
4148 # check for misordered declarations of char/short/int/long with signed/unsigned
4149 while ($sline =~ m{(\b$TypeMisordered\b)}g) {
4151 WARN("MISORDERED_TYPE",
4152 "type '$tmp' should be specified in [[un]signed] [short|int|long|long long] order\n" . $herecurr);
4155 # check for unnecessary <signed> int declarations of short/long/long long
4156 while ($sline =~ m{\b($TypeMisordered(\s*\*)*|$C90_int_types)\b}g) {
4157 my $type = trim($1);
4158 next if ($type !~ /\bint\b/);
4159 next if ($type !~ /\b(?:short|long\s+long|long)\b/);
4160 my $new_type = $type;
4161 $new_type =~ s/\b\s*int\s*\b/ /;
4162 $new_type =~ s/\b\s*(?:un)?signed\b\s*/ /;
4163 $new_type =~ s/^const\s+//;
4164 $new_type = "unsigned $new_type" if ($type =~ /\bunsigned\b/);
4165 $new_type = "const $new_type" if ($type =~ /^const\b/);
4166 $new_type =~ s/\s+/ /g;
4167 $new_type = trim($new_type);
4168 if (WARN("UNNECESSARY_INT",
4169 "Prefer '$new_type' over '$type' as the int is unnecessary\n" . $herecurr) &&
4171 $fixed[$fixlinenr] =~ s/\b\Q$type\E\b/$new_type/;
4175 # check for static const char * arrays.
4176 if ($line =~ /\bstatic\s+const\s+char\s*\*\s*(\w+)\s*\[\s*\]\s*=\s*/) {
4177 WARN("STATIC_CONST_CHAR_ARRAY",
4178 "static const char * array should probably be static const char * const\n" .
4182 # check for initialized const char arrays that should be static const
4183 if ($line =~ /^\+\s*const\s+(char|unsigned\s+char|_*u8|(?:[us]_)?int8_t)\s+\w+\s*\[\s*(?:\w+\s*)?\]\s*=\s*"/) {
4184 if (WARN("STATIC_CONST_CHAR_ARRAY",
4185 "const array should probably be static const\n" . $herecurr) &&
4187 $fixed[$fixlinenr] =~ s/(^.\s*)const\b/${1}static const/;
4191 # check for static char foo[] = "bar" declarations.
4192 if ($line =~ /\bstatic\s+char\s+(\w+)\s*\[\s*\]\s*=\s*"/) {
4193 WARN("STATIC_CONST_CHAR_ARRAY",
4194 "static char array declaration should probably be static const char\n" .
4198 # check for const <foo> const where <foo> is not a pointer or array type
4199 if ($sline =~ /\bconst\s+($BasicType)\s+const\b/) {
4201 if ($sline =~ /\bconst\s+\Q$found\E\s+const\b\s*\*/) {
4203 "'const $found const *' should probably be 'const $found * const'\n" . $herecurr);
4204 } elsif ($sline !~ /\bconst\s+\Q$found\E\s+const\s+\w+\s*\[/) {
4206 "'const $found const' should probably be 'const $found'\n" . $herecurr);
4210 # check for non-global char *foo[] = {"bar", ...} declarations.
4211 if ($line =~ /^.\s+(?:static\s+|const\s+)?char\s+\*\s*\w+\s*\[\s*\]\s*=\s*\{/) {
4212 WARN("STATIC_CONST_CHAR_ARRAY",
4213 "char * array declaration might be better as static const\n" .
4217 # check for sizeof(foo)/sizeof(foo[0]) that could be ARRAY_SIZE(foo)
4218 if ($line =~ m@\bsizeof\s*\(\s*($Lval)\s*\)@) {
4220 if ($line =~ m@\b(sizeof\s*\(\s*\Q$array\E\s*\)\s*/\s*sizeof\s*\(\s*\Q$array\E\s*\[\s*0\s*\]\s*\))@) {
4222 if (WARN("ARRAY_SIZE",
4223 "Prefer ARRAY_SIZE($array)\n" . $herecurr) &&
4225 $fixed[$fixlinenr] =~ s/\Q$array_div\E/ARRAY_SIZE($array)/;
4230 # check for function declarations without arguments like "int foo()"
4231 if ($line =~ /(\b$Type\s*$Ident)\s*\(\s*\)/) {
4232 if (ERROR("FUNCTION_WITHOUT_ARGS",
4233 "Bad function definition - $1() should probably be $1(void)\n" . $herecurr) &&
4235 $fixed[$fixlinenr] =~ s/(\b($Type)\s+($Ident))\s*\(\s*\)/$2 $3(void)/;
4239 # check for new typedefs, only function parameters and sparse annotations
4241 if ($line =~ /\btypedef\s/ &&
4242 $line !~ /\btypedef\s+$Type\s*\(\s*\*?$Ident\s*\)\s*\(/ &&
4243 $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ &&
4244 $line !~ /\b$typeTypedefs\b/ &&
4245 $line !~ /\b__bitwise\b/) {
4246 WARN("NEW_TYPEDEFS",
4247 "do not add new typedefs\n" . $herecurr);
4250 # * goes on variable not on type
4252 while ($line =~ m{(\($NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)\))}g) {
4254 my ($ident, $from, $to) = ($1, $2, $2);
4256 # Should start with a space.
4257 $to =~ s/^(\S)/ $1/;
4258 # Should not end with a space.
4260 # '*'s should not have spaces between.
4261 while ($to =~ s/\*\s+\*/\*\*/) {
4264 ## print "1: from<$from> to<$to> ident<$ident>\n";
4266 if (ERROR("POINTER_LOCATION",
4267 "\"(foo$from)\" should be \"(foo$to)\"\n" . $herecurr) &&
4269 my $sub_from = $ident;
4270 my $sub_to = $ident;
4271 $sub_to =~ s/\Q$from\E/$to/;
4272 $fixed[$fixlinenr] =~
4273 s@\Q$sub_from\E@$sub_to@;
4277 while ($line =~ m{(\b$NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)($Ident))}g) {
4279 my ($match, $from, $to, $ident) = ($1, $2, $2, $3);
4281 # Should start with a space.
4282 $to =~ s/^(\S)/ $1/;
4283 # Should not end with a space.
4285 # '*'s should not have spaces between.
4286 while ($to =~ s/\*\s+\*/\*\*/) {
4288 # Modifiers should have spaces.
4289 $to =~ s/(\b$Modifier$)/$1 /;
4291 ## print "2: from<$from> to<$to> ident<$ident>\n";
4292 if ($from ne $to && $ident !~ /^$Modifier$/) {
4293 if (ERROR("POINTER_LOCATION",
4294 "\"foo${from}bar\" should be \"foo${to}bar\"\n" . $herecurr) &&
4297 my $sub_from = $match;
4298 my $sub_to = $match;
4299 $sub_to =~ s/\Q$from\E/$to/;
4300 $fixed[$fixlinenr] =~
4301 s@\Q$sub_from\E@$sub_to@;
4306 # avoid BUG() or BUG_ON()
4307 if ($line =~ /\b(?:BUG|BUG_ON)\b/) {
4308 my $msg_level = \&WARN;
4309 $msg_level = \&CHK if ($file);
4310 &{$msg_level}("AVOID_BUG",
4311 "Avoid crashing the kernel - try using WARN_ON & recovery code rather than BUG() or BUG_ON()\n" . $herecurr);
4314 # avoid LINUX_VERSION_CODE
4315 if ($line =~ /\bLINUX_VERSION_CODE\b/) {
4316 WARN("LINUX_VERSION_CODE",
4317 "LINUX_VERSION_CODE should be avoided, code should be for the version to which it is merged\n" . $herecurr);
4320 # check for uses of printk_ratelimit
4321 if ($line =~ /\bprintk_ratelimit\s*\(/) {
4322 WARN("PRINTK_RATELIMITED",
4323 "Prefer printk_ratelimited or pr_<level>_ratelimited to printk_ratelimit\n" . $herecurr);
4326 # printk should use KERN_* levels
4327 if ($line =~ /\bprintk\s*\(\s*(?!KERN_[A-Z]+\b)/) {
4328 WARN("PRINTK_WITHOUT_KERN_LEVEL",
4329 "printk() should include KERN_<LEVEL> facility level\n" . $herecurr);
4332 if ($line =~ /\bprintk\s*\(\s*KERN_([A-Z]+)/) {
4334 my $level = lc($orig);
4335 $level = "warn" if ($level eq "warning");
4336 my $level2 = $level;
4337 $level2 = "dbg" if ($level eq "debug");
4338 WARN("PREFER_PR_LEVEL",
4339 "Prefer [subsystem eg: netdev]_$level2([subsystem]dev, ... then dev_$level2(dev, ... then pr_$level(... to printk(KERN_$orig ...\n" . $herecurr);
4342 if ($line =~ /\bdev_printk\s*\(\s*KERN_([A-Z]+)/) {
4344 my $level = lc($orig);
4345 $level = "warn" if ($level eq "warning");
4346 $level = "dbg" if ($level eq "debug");
4347 WARN("PREFER_DEV_LEVEL",
4348 "Prefer dev_$level(... to dev_printk(KERN_$orig, ...\n" . $herecurr);
4351 # trace_printk should not be used in production code.
4352 if ($line =~ /\b(trace_printk|trace_puts|ftrace_vprintk)\s*\(/) {
4353 WARN("TRACE_PRINTK",
4354 "Do not use $1() in production code (this can be ignored if built only with a debug config option)\n" . $herecurr);
4357 # ENOSYS means "bad syscall nr" and nothing else. This will have a small
4358 # number of false positives, but assembly files are not checked, so at
4359 # least the arch entry code will not trigger this warning.
4360 if ($line =~ /\bENOSYS\b/) {
4362 "ENOSYS means 'invalid syscall nr' and nothing else\n" . $herecurr);
4365 # ENOTSUPP is not a standard error code and should be avoided in new patches.
4366 # Folks usually mean EOPNOTSUPP (also called ENOTSUP), when they type ENOTSUPP.
4367 # Similarly to ENOSYS warning a small number of false positives is expected.
4368 if (!$file && $line =~ /\bENOTSUPP\b/) {
4369 if (WARN("ENOTSUPP",
4370 "ENOTSUPP is not a SUSV4 error code, prefer EOPNOTSUPP\n" . $herecurr) &&
4372 $fixed[$fixlinenr] =~ s/\bENOTSUPP\b/EOPNOTSUPP/;
4376 # function brace can't be on same line, except for #defines of do while,
4377 # or if closed on same line
4378 if ($perl_version_ok &&
4379 $sline =~ /$Type\s*$Ident\s*$balanced_parens\s*\{/ &&
4380 $sline !~ /\#\s*define\b.*do\s*\{/ &&
4382 if (ERROR("OPEN_BRACE",
4383 "open brace '{' following function definitions go on the next line\n" . $herecurr) &&
4385 fix_delete_line($fixlinenr, $rawline);
4386 my $fixed_line = $rawline;
4387 $fixed_line =~ /(^..*$Type\s*$Ident\(.*\)\s*)\{(.*)$/;
4390 fix_insert_line($fixlinenr, ltrim($line1));
4391 fix_insert_line($fixlinenr, "\+{");
4392 if ($line2 !~ /^\s*$/) {
4393 fix_insert_line($fixlinenr, "\+\t" . trim($line2));
4398 # open braces for enum, union and struct go on the same line.
4399 if ($line =~ /^.\s*{/ &&
4400 $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
4401 if (ERROR("OPEN_BRACE",
4402 "open brace '{' following $1 go on the same line\n" . $hereprev) &&
4403 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
4404 fix_delete_line($fixlinenr - 1, $prevrawline);
4405 fix_delete_line($fixlinenr, $rawline);
4406 my $fixedline = rtrim($prevrawline) . " {";
4407 fix_insert_line($fixlinenr, $fixedline);
4408 $fixedline = $rawline;
4409 $fixedline =~ s/^(.\s*)\{\s*/$1\t/;
4410 if ($fixedline !~ /^\+\s*$/) {
4411 fix_insert_line($fixlinenr, $fixedline);
4416 # missing space after union, struct or enum definition
4417 if ($line =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident){1,2}[=\{]/) {
4419 "missing space after $1 definition\n" . $herecurr) &&
4421 $fixed[$fixlinenr] =~
4422 s/^(.\s*(?:typedef\s+)?(?:enum|union|struct)(?:\s+$Ident){1,2})([=\{])/$1 $2/;
4426 # Function pointer declarations
4427 # check spacing between type, funcptr, and args
4428 # canonical declaration is "type (*funcptr)(args...)"
4429 if ($line =~ /^.\s*($Declare)\((\s*)\*(\s*)($Ident)(\s*)\)(\s*)\(/) {
4431 my $pre_pointer_space = $2;
4432 my $post_pointer_space = $3;
4434 my $post_funcname_space = $5;
4435 my $pre_args_space = $6;
4437 # the $Declare variable will capture all spaces after the type
4438 # so check it for a missing trailing missing space but pointer return types
4439 # don't need a space so don't warn for those.
4440 my $post_declare_space = "";
4441 if ($declare =~ /(\s+)$/) {
4442 $post_declare_space = $1;
4443 $declare = rtrim($declare);
4445 if ($declare !~ /\*$/ && $post_declare_space =~ /^$/) {
4447 "missing space after return type\n" . $herecurr);
4448 $post_declare_space = " ";
4451 # unnecessary space "type (*funcptr)(args...)"
4452 # This test is not currently implemented because these declarations are
4454 # int foo(int bar, ...)
4455 # and this is form shouldn't/doesn't generate a checkpatch warning.
4457 # elsif ($declare =~ /\s{2,}$/) {
4459 # "Multiple spaces after return type\n" . $herecurr);
4462 # unnecessary space "type ( *funcptr)(args...)"
4463 if (defined $pre_pointer_space &&
4464 $pre_pointer_space =~ /^\s/) {
4466 "Unnecessary space after function pointer open parenthesis\n" . $herecurr);
4469 # unnecessary space "type (* funcptr)(args...)"
4470 if (defined $post_pointer_space &&
4471 $post_pointer_space =~ /^\s/) {
4473 "Unnecessary space before function pointer name\n" . $herecurr);
4476 # unnecessary space "type (*funcptr )(args...)"
4477 if (defined $post_funcname_space &&
4478 $post_funcname_space =~ /^\s/) {
4480 "Unnecessary space after function pointer name\n" . $herecurr);
4483 # unnecessary space "type (*funcptr) (args...)"
4484 if (defined $pre_args_space &&
4485 $pre_args_space =~ /^\s/) {
4487 "Unnecessary space before function pointer arguments\n" . $herecurr);
4490 if (show_type("SPACING") && $fix) {
4491 $fixed[$fixlinenr] =~
4492 s/^(.\s*)$Declare\s*\(\s*\*\s*$Ident\s*\)\s*\(/$1 . $declare . $post_declare_space . '(*' . $funcname . ')('/ex;
4496 # check for spacing round square brackets; allowed:
4497 # 1. with a type on the left -- int [] a;
4498 # 2. at the beginning of a line for slice initialisers -- [0...10] = 5,
4499 # 3. inside a curly brace -- = { [0...10] = 5 }
4500 while ($line =~ /(.*?\s)\[/g) {
4501 my ($where, $prefix) = ($-[1], $1);
4502 if ($prefix !~ /$Type\s+$/ &&
4503 ($where != 0 || $prefix !~ /^.\s+$/) &&
4504 $prefix !~ /[{,:]\s+$/) {
4505 if (ERROR("BRACKET_SPACE",
4506 "space prohibited before open square bracket '['\n" . $herecurr) &&
4508 $fixed[$fixlinenr] =~
4509 s/^(\+.*?)\s+\[/$1\[/;
4514 # check for spaces between functions and their parentheses.
4515 while ($line =~ /($Ident)\s+\(/g) {
4517 my $ctx_before = substr($line, 0, $-[1]);
4518 my $ctx = "$ctx_before$name";
4520 # Ignore those directives where spaces _are_ permitted.
4522 if|for|while|switch|return|case|
4523 volatile|__volatile__|
4524 __attribute__|format|__extension__|
4527 # cpp #define statements have non-optional spaces, ie
4528 # if there is a space between the name and the open
4529 # parenthesis it is simply not a parameter group.
4530 } elsif ($ctx_before =~ /^.\s*\#\s*define\s*$/) {
4532 # cpp #elif statement condition may start with a (
4533 } elsif ($ctx =~ /^.\s*\#\s*elif\s*$/) {
4535 # If this whole things ends with a type its most
4536 # likely a typedef for a function.
4537 } elsif ($ctx =~ /$Type$/) {
4541 "space prohibited between function name and open parenthesis '('\n" . $herecurr) &&
4543 $fixed[$fixlinenr] =~
4544 s/\b$name\s+\(/$name\(/;
4549 # Check operator spacing.
4550 if (!($line=~/\#\s*include/)) {
4551 my $fixed_line = "";
4555 <<=|>>=|<=|>=|==|!=|
4556 \+=|-=|\*=|\/=|%=|\^=|\|=|&=|
4557 =>|->|<<|>>|<|>|=|!|~|
4558 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%|
4561 my @elements = split(/($ops|;)/, $opline);
4563 ## print("element count: <" . $#elements . ">\n");
4564 ## foreach my $el (@elements) {
4565 ## print("el: <$el>\n");
4568 my @fix_elements = ();
4571 foreach my $el (@elements) {
4572 push(@fix_elements, substr($rawline, $off, length($el)));
4573 $off += length($el);
4578 my $blank = copy_spacing($opline);
4579 my $last_after = -1;
4581 for (my $n = 0; $n < $#elements; $n += 2) {
4583 my $good = $fix_elements[$n] . $fix_elements[$n + 1];
4585 ## print("n: <$n> good: <$good>\n");
4587 $off += length($elements[$n]);
4589 # Pick up the preceding and succeeding characters.
4590 my $ca = substr($opline, 0, $off);
4592 if (length($opline) >= ($off + length($elements[$n + 1]))) {
4593 $cc = substr($opline, $off + length($elements[$n + 1]));
4595 my $cb = "$ca$;$cc";
4598 $a = 'V' if ($elements[$n] ne '');
4599 $a = 'W' if ($elements[$n] =~ /\s$/);
4600 $a = 'C' if ($elements[$n] =~ /$;$/);
4601 $a = 'B' if ($elements[$n] =~ /(\[|\()$/);
4602 $a = 'O' if ($elements[$n] eq '');
4603 $a = 'E' if ($ca =~ /^\s*$/);
4605 my $op = $elements[$n + 1];
4608 if (defined $elements[$n + 2]) {
4609 $c = 'V' if ($elements[$n + 2] ne '');
4610 $c = 'W' if ($elements[$n + 2] =~ /^\s/);
4611 $c = 'C' if ($elements[$n + 2] =~ /^$;/);
4612 $c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
4613 $c = 'O' if ($elements[$n + 2] eq '');
4614 $c = 'E' if ($elements[$n + 2] =~ /^\s*\\$/);
4619 my $ctx = "${a}x${c}";
4621 my $at = "(ctx:$ctx)";
4623 my $ptr = substr($blank, 0, $off) . "^";
4624 my $hereptr = "$hereline$ptr\n";
4626 # Pull out the value of this operator.
4627 my $op_type = substr($curr_values, $off + 1, 1);
4629 # Get the full operator variant.
4630 my $opv = $op . substr($curr_vars, $off, 1);
4632 # Ignore operators passed as parameters.
4633 if ($op_type ne 'V' &&
4634 $ca =~ /\s$/ && $cc =~ /^\s*[,\)]/) {
4637 # } elsif ($op =~ /^$;+$/) {
4639 # ; should have either the end of line or a space or \ after it
4640 } elsif ($op eq ';') {
4641 if ($ctx !~ /.x[WEBC]/ &&
4642 $cc !~ /^\\/ && $cc !~ /^;/) {
4643 if (ERROR("SPACING",
4644 "space required after that '$op' $at\n" . $hereptr)) {
4645 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]) . " ";
4651 } elsif ($op eq '//') {
4653 # : when part of a bitfield
4654 } elsif ($opv eq ':B') {
4655 # skip the bitfield test for now
4659 } elsif ($op eq '->') {
4660 if ($ctx =~ /Wx.|.xW/) {
4661 if (ERROR("SPACING",
4662 "spaces prohibited around that '$op' $at\n" . $hereptr)) {
4663 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
4664 if (defined $fix_elements[$n + 2]) {
4665 $fix_elements[$n + 2] =~ s/^\s+//;
4671 # , must not have a space before and must have a space on the right.
4672 } elsif ($op eq ',') {
4673 my $rtrim_before = 0;
4674 my $space_after = 0;
4675 if ($ctx =~ /Wx./) {
4676 if (ERROR("SPACING",
4677 "space prohibited before that '$op' $at\n" . $hereptr)) {
4682 if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) {
4683 if (ERROR("SPACING",
4684 "space required after that '$op' $at\n" . $hereptr)) {
4690 if ($rtrim_before || $space_after) {
4691 if ($rtrim_before) {
4692 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
4694 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]);
4701 # '*' as part of a type definition -- reported already.
4702 } elsif ($opv eq '*_') {
4703 #warn "'*' is part of type\n";
4705 # unary operators should have a space before and
4706 # none after. May be left adjacent to another
4707 # unary operator, or a cast
4708 } elsif ($op eq '!' || $op eq '~' ||
4709 $opv eq '*U' || $opv eq '-U' ||
4710 $opv eq '&U' || $opv eq '&&U') {
4711 if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
4712 if (ERROR("SPACING",
4713 "space required before that '$op' $at\n" . $hereptr)) {
4714 if ($n != $last_after + 2) {
4715 $good = $fix_elements[$n] . " " . ltrim($fix_elements[$n + 1]);
4720 if ($op eq '*' && $cc =~/\s*$Modifier\b/) {
4721 # A unary '*' may be const
4723 } elsif ($ctx =~ /.xW/) {
4724 if (ERROR("SPACING",
4725 "space prohibited after that '$op' $at\n" . $hereptr)) {
4726 $good = $fix_elements[$n] . rtrim($fix_elements[$n + 1]);
4727 if (defined $fix_elements[$n + 2]) {
4728 $fix_elements[$n + 2] =~ s/^\s+//;
4734 # unary ++ and unary -- are allowed no space on one side.
4735 } elsif ($op eq '++' or $op eq '--') {
4736 if ($ctx !~ /[WEOBC]x[^W]/ && $ctx !~ /[^W]x[WOBEC]/) {
4737 if (ERROR("SPACING",
4738 "space required one side of that '$op' $at\n" . $hereptr)) {
4739 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]) . " ";
4743 if ($ctx =~ /Wx[BE]/ ||
4744 ($ctx =~ /Wx./ && $cc =~ /^;/)) {
4745 if (ERROR("SPACING",
4746 "space prohibited before that '$op' $at\n" . $hereptr)) {
4747 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
4751 if ($ctx =~ /ExW/) {
4752 if (ERROR("SPACING",
4753 "space prohibited after that '$op' $at\n" . $hereptr)) {
4754 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]);
4755 if (defined $fix_elements[$n + 2]) {
4756 $fix_elements[$n + 2] =~ s/^\s+//;
4762 # << and >> may either have or not have spaces both sides
4763 } elsif ($op eq '<<' or $op eq '>>' or
4764 $op eq '&' or $op eq '^' or $op eq '|' or
4765 $op eq '+' or $op eq '-' or
4766 $op eq '*' or $op eq '/' or
4770 if (defined $fix_elements[$n + 2] && $ctx !~ /[EW]x[EW]/) {
4772 "spaces preferred around that '$op' $at\n" . $hereptr)) {
4773 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
4774 $fix_elements[$n + 2] =~ s/^\s+//;
4777 } elsif (!defined $fix_elements[$n + 2] && $ctx !~ /Wx[OE]/) {
4779 "space preferred before that '$op' $at\n" . $hereptr)) {
4780 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]);
4784 } elsif ($ctx =~ /Wx[^WCE]|[^WCE]xW/) {
4785 if (ERROR("SPACING",
4786 "need consistent spacing around '$op' $at\n" . $hereptr)) {
4787 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
4788 if (defined $fix_elements[$n + 2]) {
4789 $fix_elements[$n + 2] =~ s/^\s+//;
4795 # A colon needs no spaces before when it is
4796 # terminating a case value or a label.
4797 } elsif ($opv eq ':C' || $opv eq ':L') {
4798 if ($ctx =~ /Wx./) {
4799 if (ERROR("SPACING",
4800 "space prohibited before that '$op' $at\n" . $hereptr)) {
4801 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
4806 # All the others need spaces both sides.
4807 } elsif ($ctx !~ /[EWC]x[CWE]/) {
4810 # Ignore email addresses <foo@bar>
4812 $cc =~ /^\S+\@\S+>/) ||
4814 $ca =~ /<\S+\@\S+$/))
4819 # for asm volatile statements
4820 # ignore a colon with another
4821 # colon immediately before or after
4823 ($ca =~ /:$/ || $cc =~ /^:/)) {
4827 # messages are ERROR, but ?: are CHK
4829 my $msg_level = \&ERROR;
4830 $msg_level = \&CHK if (($op eq '?:' || $op eq '?' || $op eq ':') && $ctx =~ /VxV/);
4832 if (&{$msg_level}("SPACING",
4833 "spaces required around that '$op' $at\n" . $hereptr)) {
4834 $good = rtrim($fix_elements[$n]) . " " . trim($fix_elements[$n + 1]) . " ";
4835 if (defined $fix_elements[$n + 2]) {
4836 $fix_elements[$n + 2] =~ s/^\s+//;
4842 $off += length($elements[$n + 1]);
4844 ## print("n: <$n> GOOD: <$good>\n");
4846 $fixed_line = $fixed_line . $good;
4849 if (($#elements % 2) == 0) {
4850 $fixed_line = $fixed_line . $fix_elements[$#elements];
4853 if ($fix && $line_fixed && $fixed_line ne $fixed[$fixlinenr]) {
4854 $fixed[$fixlinenr] = $fixed_line;
4860 # check for whitespace before a non-naked semicolon
4861 if ($line =~ /^\+.*\S\s+;\s*$/) {
4863 "space prohibited before semicolon\n" . $herecurr) &&
4865 1 while $fixed[$fixlinenr] =~
4866 s/^(\+.*\S)\s+;/$1;/;
4870 # check for multiple assignments
4871 if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
4872 CHK("MULTIPLE_ASSIGNMENTS",
4873 "multiple assignments should be avoided\n" . $herecurr);
4876 ## # check for multiple declarations, allowing for a function declaration
4878 ## if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
4879 ## $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
4881 ## # Remove any bracketed sections to ensure we do not
4882 ## # falsly report the parameters of functions.
4884 ## while ($ln =~ s/\([^\(\)]*\)//g) {
4886 ## if ($ln =~ /,/) {
4887 ## WARN("MULTIPLE_DECLARATION",
4888 ## "declaring multiple variables together should be avoided\n" . $herecurr);
4892 #need space before brace following if, while, etc
4893 if (($line =~ /\(.*\)\{/ && $line !~ /\($Type\)\{/) ||
4894 $line =~ /\b(?:else|do)\{/) {
4895 if (ERROR("SPACING",
4896 "space required before the open brace '{'\n" . $herecurr) &&
4898 $fixed[$fixlinenr] =~ s/^(\+.*(?:do|else|\)))\{/$1 {/;
4902 ## # check for blank lines before declarations
4903 ## if ($line =~ /^.\t+$Type\s+$Ident(?:\s*=.*)?;/ &&
4904 ## $prevrawline =~ /^.\s*$/) {
4906 ## "No blank lines before declarations\n" . $hereprev);
4910 # closing brace should have a space following it when it has anything
4912 if ($line =~ /}(?!(?:,|;|\)|\}))\S/) {
4913 if (ERROR("SPACING",
4914 "space required after that close brace '}'\n" . $herecurr) &&
4916 $fixed[$fixlinenr] =~
4917 s/}((?!(?:,|;|\)))\S)/} $1/;
4921 # check spacing on square brackets
4922 if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
4923 if (ERROR("SPACING",
4924 "space prohibited after that open square bracket '['\n" . $herecurr) &&
4926 $fixed[$fixlinenr] =~
4930 if ($line =~ /\s\]/) {
4931 if (ERROR("SPACING",
4932 "space prohibited before that close square bracket ']'\n" . $herecurr) &&
4934 $fixed[$fixlinenr] =~
4939 # check spacing on parentheses
4940 if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
4941 $line !~ /for\s*\(\s+;/) {
4942 if (ERROR("SPACING",
4943 "space prohibited after that open parenthesis '('\n" . $herecurr) &&
4945 $fixed[$fixlinenr] =~
4949 if ($line =~ /(\s+)\)/ && $line !~ /^.\s*\)/ &&
4950 $line !~ /for\s*\(.*;\s+\)/ &&
4951 $line !~ /:\s+\)/) {
4952 if (ERROR("SPACING",
4953 "space prohibited before that close parenthesis ')'\n" . $herecurr) &&
4955 $fixed[$fixlinenr] =~
4960 # check unnecessary parentheses around addressof/dereference single $Lvals
4961 # ie: &(foo->bar) should be &foo->bar and *(foo->bar) should be *foo->bar
4963 while ($line =~ /(?:[^&]&\s*|\*)\(\s*($Ident\s*(?:$Member\s*)+)\s*\)/g) {
4965 if (CHK("UNNECESSARY_PARENTHESES",
4966 "Unnecessary parentheses around $var\n" . $herecurr) &&
4968 $fixed[$fixlinenr] =~ s/\(\s*\Q$var\E\s*\)/$var/;
4972 # check for unnecessary parentheses around function pointer uses
4973 # ie: (foo->bar)(); should be foo->bar();
4974 # but not "if (foo->bar) (" to avoid some false positives
4975 if ($line =~ /(\bif\s*|)(\(\s*$Ident\s*(?:$Member\s*)+\))[ \t]*\(/ && $1 !~ /^if/) {
4977 if (CHK("UNNECESSARY_PARENTHESES",
4978 "Unnecessary parentheses around function pointer $var\n" . $herecurr) &&
4980 my $var2 = deparenthesize($var);
4982 $fixed[$fixlinenr] =~ s/\Q$var\E/$var2/;
4986 # check for unnecessary parentheses around comparisons in if uses
4987 # when !drivers/staging or command-line uses --strict
4988 if (($realfile !~ m@^(?:drivers/staging/)@ || $check_orig) &&
4989 $perl_version_ok && defined($stat) &&
4990 $stat =~ /(^.\s*if\s*($balanced_parens))/) {
4992 my $test = substr($2, 1, -1);
4994 while ($test =~ /(?:^|[^\w\&\!\~])+\s*\(\s*([\&\!\~]?\s*$Lval\s*(?:$Compare\s*$FuncArg)?)\s*\)/g) {
4996 # avoid parentheses around potential macro args
4997 next if ($match =~ /^\s*\w+\s*$/);
4998 if (!defined($herectx)) {
4999 $herectx = $here . "\n";
5000 my $cnt = statement_rawlines($if_stat);
5001 for (my $n = 0; $n < $cnt; $n++) {
5002 my $rl = raw_line($linenr, $n);
5003 $herectx .= $rl . "\n";
5004 last if $rl =~ /^[ \+].*\{/;
5007 CHK("UNNECESSARY_PARENTHESES",
5008 "Unnecessary parentheses around '$match'\n" . $herectx);
5012 #goto labels aren't indented, allow a single space however
5013 if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
5014 !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
5015 if (WARN("INDENTED_LABEL",
5016 "labels should not be indented\n" . $herecurr) &&
5018 $fixed[$fixlinenr] =~
5023 # check if a statement with a comma should be two statements like:
5024 # foo = bar(), /* comma should be semicolon */
5026 if (defined($stat) &&
5027 $stat =~ /^\+\s*(?:$Lval\s*$Assignment\s*)?$FuncArg\s*,\s*(?:$Lval\s*$Assignment\s*)?$FuncArg\s*;\s*$/) {
5028 my $cnt = statement_rawlines($stat);
5029 my $herectx = get_stat_here($linenr, $cnt, $here);
5030 WARN("SUSPECT_COMMA_SEMICOLON",
5031 "Possible comma where semicolon could be used\n" . $herectx);
5034 # return is not a function
5035 if (defined($stat) && $stat =~ /^.\s*return(\s*)\(/s) {
5037 if ($perl_version_ok &&
5038 $stat =~ /^.\s*return\s*($balanced_parens)\s*;\s*$/) {
5040 $value = deparenthesize($value);
5041 if ($value =~ m/^\s*$FuncArg\s*(?:\?|$)/) {
5042 ERROR("RETURN_PARENTHESES",
5043 "return is not a function, parentheses are not required\n" . $herecurr);
5045 } elsif ($spacing !~ /\s+/) {
5047 "space required before the open parenthesis '('\n" . $herecurr);
5051 # unnecessary return in a void function
5052 # at end-of-function, with the previous line a single leading tab, then return;
5053 # and the line before that not a goto label target like "out:"
5054 if ($sline =~ /^[ \+]}\s*$/ &&
5055 $prevline =~ /^\+\treturn\s*;\s*$/ &&
5057 $lines[$linenr - 3] =~ /^[ +]/ &&
5058 $lines[$linenr - 3] !~ /^[ +]\s*$Ident\s*:/) {
5060 "void function return statements are not generally useful\n" . $hereprev);
5063 # if statements using unnecessary parentheses - ie: if ((foo == bar))
5064 if ($perl_version_ok &&
5065 $line =~ /\bif\s*((?:\(\s*){2,})/) {
5066 my $openparens = $1;
5067 my $count = $openparens =~ tr@\(@\(@;
5069 if ($line =~ /\bif\s*(?:\(\s*){$count,$count}$LvalOrFunc\s*($Compare)\s*$LvalOrFunc(?:\s*\)){$count,$count}/) {
5070 my $comp = $4; #Not $1 because of $LvalOrFunc
5071 $msg = " - maybe == should be = ?" if ($comp eq "==");
5072 WARN("UNNECESSARY_PARENTHESES",
5073 "Unnecessary parentheses$msg\n" . $herecurr);
5077 # comparisons with a constant or upper case identifier on the left
5078 # avoid cases like "foo + BAR < baz"
5079 # only fix matches surrounded by parentheses to avoid incorrect
5080 # conversions like "FOO < baz() + 5" being "misfixed" to "baz() > FOO + 5"
5081 if ($perl_version_ok &&
5082 $line =~ /^\+(.*)\b($Constant|[A-Z_][A-Z0-9_]*)\s*($Compare)\s*($LvalOrFunc)/) {
5087 my $newcomp = $comp;
5088 if ($lead !~ /(?:$Operators|\.)\s*$/ &&
5089 $to !~ /^(?:Constant|[A-Z_][A-Z0-9_]*)$/ &&
5090 WARN("CONSTANT_COMPARISON",
5091 "Comparisons should place the constant on the right side of the test\n" . $herecurr) &&
5095 } elsif ($comp eq "<=") {
5097 } elsif ($comp eq ">") {
5099 } elsif ($comp eq ">=") {
5102 $fixed[$fixlinenr] =~ s/\(\s*\Q$const\E\s*$Compare\s*\Q$to\E\s*\)/($to $newcomp $const)/;
5106 # Return of what appears to be an errno should normally be negative
5107 if ($sline =~ /\breturn(?:\s*\(+\s*|\s+)(E[A-Z]+)(?:\s*\)+\s*|\s*)[;:,]/) {
5109 if ($name ne 'EOF' && $name ne 'ERROR') {
5110 WARN("USE_NEGATIVE_ERRNO",
5111 "return of an errno should typically be negative (ie: return -$1)\n" . $herecurr);
5115 # Need a space before open parenthesis after if, while etc
5116 if ($line =~ /\b(if|while|for|switch)\(/) {
5117 if (ERROR("SPACING",
5118 "space required before the open parenthesis '('\n" . $herecurr) &&
5120 $fixed[$fixlinenr] =~
5121 s/\b(if|while|for|switch)\(/$1 \(/;
5125 # Check for illegal assignment in if conditional -- and check for trailing
5126 # statements after the conditional.
5127 if ($line =~ /do\s*(?!{)/) {
5128 ($stat, $cond, $line_nr_next, $remain_next, $off_next) =
5129 ctx_statement_block($linenr, $realcnt, 0)
5130 if (!defined $stat);
5131 my ($stat_next) = ctx_statement_block($line_nr_next,
5132 $remain_next, $off_next);
5133 $stat_next =~ s/\n./\n /g;
5134 ##print "stat<$stat> stat_next<$stat_next>\n";
5136 if ($stat_next =~ /^\s*while\b/) {
5137 # If the statement carries leading newlines,
5138 # then count those as offsets.
5140 ($stat_next =~ /^((?:\s*\n[+-])*\s*)/s);
5142 statement_rawlines($whitespace) - 1;
5144 $suppress_whiletrailers{$line_nr_next +
5148 if (!defined $suppress_whiletrailers{$linenr} &&
5149 defined($stat) && defined($cond) &&
5150 $line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) {
5151 my ($s, $c) = ($stat, $cond);
5153 if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/s) {
5154 if (ERROR("ASSIGN_IN_IF",
5155 "do not use assignment in if condition\n" . $herecurr) &&
5156 $fix && $perl_version_ok) {
5157 if ($rawline =~ /^\+(\s+)if\s*\(\s*(\!)?\s*\(\s*(($Lval)\s*=\s*$LvalOrFunc)\s*\)\s*(?:($Compare)\s*($FuncArg))?\s*\)\s*(\{)?\s*$/) {
5165 fix_delete_line($fixlinenr, $rawline);
5166 fix_insert_line($fixlinenr, "$space$statement;");
5167 my $newline = "${space}if (";
5168 $newline .= '!' if defined($not);
5169 $newline .= '(' if (defined $not && defined($test) && defined($against));
5170 $newline .= "$assigned";
5171 $newline .= " $test $against" if (defined($test) && defined($against));
5172 $newline .= ')' if (defined $not && defined($test) && defined($against));
5174 $newline .= " {" if (defined($brace));
5175 fix_insert_line($fixlinenr + 1, $newline);
5180 # Find out what is on the end of the line after the
5182 substr($s, 0, length($c), '');
5184 $s =~ s/$;//g; # Remove any comments
5185 if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ &&
5186 $c !~ /}\s*while\s*/)
5188 # Find out how long the conditional actually is.
5189 my @newlines = ($c =~ /\n/gs);
5190 my $cond_lines = 1 + $#newlines;
5193 $stat_real = raw_line($linenr, $cond_lines)
5194 . "\n" if ($cond_lines);
5195 if (defined($stat_real) && $cond_lines > 1) {
5196 $stat_real = "[...]\n$stat_real";
5199 ERROR("TRAILING_STATEMENTS",
5200 "trailing statements should be on next line\n" . $herecurr . $stat_real);
5204 # Check for bitwise tests written as boolean
5216 WARN("HEXADECIMAL_BOOLEAN_TEST",
5217 "boolean test with hexadecimal, perhaps just 1 \& or \|?\n" . $herecurr);
5220 # if and else should not have general statements after it
5221 if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/) {
5223 $s =~ s/$;//g; # Remove any comments
5224 if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) {
5225 ERROR("TRAILING_STATEMENTS",
5226 "trailing statements should be on next line\n" . $herecurr);
5229 # if should not continue a brace
5230 if ($line =~ /}\s*if\b/) {
5231 ERROR("TRAILING_STATEMENTS",
5232 "trailing statements should be on next line (or did you mean 'else if'?)\n" .
5235 # case and default should not have general statements after them
5236 if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
5238 (?:\s*$;*)(?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$|
5242 ERROR("TRAILING_STATEMENTS",
5243 "trailing statements should be on next line\n" . $herecurr);
5246 # Check for }<nl>else {, these must be at the same
5247 # indent level to be relevant to each other.
5248 if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ &&
5249 $previndent == $indent) {
5250 if (ERROR("ELSE_AFTER_BRACE",
5251 "else should follow close brace '}'\n" . $hereprev) &&
5252 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
5253 fix_delete_line($fixlinenr - 1, $prevrawline);
5254 fix_delete_line($fixlinenr, $rawline);
5255 my $fixedline = $prevrawline;
5256 $fixedline =~ s/}\s*$//;
5257 if ($fixedline !~ /^\+\s*$/) {
5258 fix_insert_line($fixlinenr, $fixedline);
5260 $fixedline = $rawline;
5261 $fixedline =~ s/^(.\s*)else/$1} else/;
5262 fix_insert_line($fixlinenr, $fixedline);
5266 if ($prevline=~/}\s*$/ and $line=~/^.\s*while\s*/ &&
5267 $previndent == $indent) {
5268 my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0);
5270 # Find out what is on the end of the line after the
5272 substr($s, 0, length($c), '');
5275 if ($s =~ /^\s*;/) {
5276 if (ERROR("WHILE_AFTER_BRACE",
5277 "while should follow close brace '}'\n" . $hereprev) &&
5278 $fix && $prevline =~ /^\+/ && $line =~ /^\+/) {
5279 fix_delete_line($fixlinenr - 1, $prevrawline);
5280 fix_delete_line($fixlinenr, $rawline);
5281 my $fixedline = $prevrawline;
5282 my $trailing = $rawline;
5283 $trailing =~ s/^\+//;
5284 $trailing = trim($trailing);
5285 $fixedline =~ s/}\s*$/} $trailing/;
5286 fix_insert_line($fixlinenr, $fixedline);
5291 #Specific variable tests
5292 while ($line =~ m{($Constant|$Lval)}g) {
5296 if ($var !~ /^$Constant$/ &&
5297 $var =~ /[A-Z][a-z]|[a-z][A-Z]/ &&
5298 #Ignore Page<foo> variants
5299 $var !~ /^(?:Clear|Set|TestClear|TestSet|)Page[A-Z]/ &&
5300 #Ignore SI style variants like nS, mV and dB
5301 #(ie: max_uV, regulator_min_uA_show, RANGE_mA_VALUE)
5302 $var !~ /^(?:[a-z0-9_]*|[A-Z0-9_]*)?_?[a-z][A-Z](?:_[a-z0-9_]+|_[A-Z0-9_]+)?$/ &&
5303 #Ignore some three character SI units explicitly, like MiB and KHz
5304 $var !~ /^(?:[a-z_]*?)_?(?:[KMGT]iB|[KMGT]?Hz)(?:_[a-z_]+)?$/) {
5305 while ($var =~ m{($Ident)}g) {
5307 next if ($word !~ /[A-Z][a-z]|[a-z][A-Z]/);
5309 seed_camelcase_includes();
5310 if (!$file && !$camelcase_file_seeded) {
5311 seed_camelcase_file($realfile);
5312 $camelcase_file_seeded = 1;
5315 if (!defined $camelcase{$word}) {
5316 $camelcase{$word} = 1;
5318 "Avoid CamelCase: <$word>\n" . $herecurr);
5324 #no spaces allowed after \ in define
5325 if ($line =~ /\#\s*define.*\\\s+$/) {
5326 if (WARN("WHITESPACE_AFTER_LINE_CONTINUATION",
5327 "Whitespace after \\ makes next lines useless\n" . $herecurr) &&
5329 $fixed[$fixlinenr] =~ s/\s+$//;
5333 # warn if <asm/foo.h> is #included and <linux/foo.h> is available and includes
5334 # itself <asm/foo.h> (uses RAW line)
5335 if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) {
5337 my $checkfile = "include/linux/$file";
5338 if (-f "$root/$checkfile" &&
5339 $realfile ne $checkfile &&
5340 $1 !~ /$allowed_asm_includes/)
5342 my $asminclude = `grep -Ec "#include\\s+<asm/$file>" $root/$checkfile`;
5343 if ($asminclude > 0) {
5344 if ($realfile =~ m{^arch/}) {
5345 CHK("ARCH_INCLUDE_LINUX",
5346 "Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
5348 WARN("INCLUDE_LINUX",
5349 "Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
5355 # multi-statement macros should be enclosed in a do while loop, grab the
5356 # first statement and ensure its the whole macro if its not enclosed
5357 # in a known good container
5358 if ($realfile !~ m@/vmlinux.lds.h$@ &&
5359 $line =~ /^.\s*\#\s*define\s*$Ident(\()?/) {
5362 my ($off, $dstat, $dcond, $rest);
5364 my $has_flow_statement = 0;
5365 my $has_arg_concat = 0;
5366 ($dstat, $dcond, $ln, $cnt, $off) =
5367 ctx_statement_block($linenr, $realcnt, 0);
5369 #print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n";
5370 #print "LINE<$lines[$ln-1]> len<" . length($lines[$ln-1]) . "\n";
5372 $has_flow_statement = 1 if ($ctx =~ /\b(goto|return)\b/);
5373 $has_arg_concat = 1 if ($ctx =~ /\#\#/ && $ctx !~ /\#\#\s*(?:__VA_ARGS__|args)\b/);
5375 $dstat =~ s/^.\s*\#\s*define\s+$Ident(\([^\)]*\))?\s*//;
5376 my $define_args = $1;
5377 my $define_stmt = $dstat;
5380 if (defined $define_args && $define_args ne "") {
5381 $define_args = substr($define_args, 1, length($define_args) - 2);
5382 $define_args =~ s/\s*//g;
5383 $define_args =~ s/\\\+?//g;
5384 @def_args = split(",", $define_args);
5388 $dstat =~ s/\\\n.//g;
5389 $dstat =~ s/^\s*//s;
5390 $dstat =~ s/\s*$//s;
5392 # Flatten any parentheses and braces
5393 while ($dstat =~ s/\([^\(\)]*\)/1u/ ||
5394 $dstat =~ s/\{[^\{\}]*\}/1u/ ||
5395 $dstat =~ s/.\[[^\[\]]*\]/1u/)
5399 # Flatten any obvious string concatenation.
5400 while ($dstat =~ s/($String)\s*$Ident/$1/ ||
5401 $dstat =~ s/$Ident\s*($String)/$1/)
5405 # Make asm volatile uses seem like a generic function
5406 $dstat =~ s/\b_*asm_*\s+_*volatile_*\b/asm_volatile/g;
5408 my $exceptions = qr{
5421 #print "REST<$rest> dstat<$dstat> ctx<$ctx>\n";
5424 my $stmt_cnt = statement_rawlines($ctx);
5425 my $herectx = get_stat_here($linenr, $stmt_cnt, $here);
5428 $dstat !~ /^(?:$Ident|-?$Constant),$/ && # 10, // foo(),
5429 $dstat !~ /^(?:$Ident|-?$Constant);$/ && # foo();
5430 $dstat !~ /^[!~-]?(?:$Lval|$Constant)$/ && # 10 // foo() // !foo // ~foo // -foo // foo->bar // foo.bar->baz
5431 $dstat !~ /^'X'$/ && $dstat !~ /^'XX'$/ && # character constants
5432 $dstat !~ /$exceptions/ &&
5433 $dstat !~ /^\.$Ident\s*=/ && # .foo =
5434 $dstat !~ /^(?:\#\s*$Ident|\#\s*$Constant)\s*$/ && # stringification #foo
5435 $dstat !~ /^do\s*$Constant\s*while\s*$Constant;?$/ && # do {...} while (...); // do {...} while (...)
5436 $dstat !~ /^while\s*$Constant\s*$Constant\s*$/ && # while (...) {...}
5437 $dstat !~ /^for\s*$Constant$/ && # for (...)
5438 $dstat !~ /^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ && # for (...) bar()
5439 $dstat !~ /^do\s*{/ && # do {...
5440 $dstat !~ /^\(\{/ && # ({...
5441 $ctx !~ /^.\s*#\s*define\s+TRACE_(?:SYSTEM|INCLUDE_FILE|INCLUDE_PATH)\b/)
5443 if ($dstat =~ /^\s*if\b/) {
5444 ERROR("MULTISTATEMENT_MACRO_USE_DO_WHILE",
5445 "Macros starting with if should be enclosed by a do - while loop to avoid possible if/else logic defects\n" . "$herectx");
5446 } elsif ($dstat =~ /;/) {
5447 ERROR("MULTISTATEMENT_MACRO_USE_DO_WHILE",
5448 "Macros with multiple statements should be enclosed in a do - while loop\n" . "$herectx");
5450 ERROR("COMPLEX_MACRO",
5451 "Macros with complex values should be enclosed in parentheses\n" . "$herectx");
5456 # Make $define_stmt single line, comment-free, etc
5457 my @stmt_array = split('\n', $define_stmt);
5460 foreach my $l (@stmt_array) {
5465 } elsif ($l =~ /^[\+ ]/) {
5466 $define_stmt .= substr($l, 1);
5469 $define_stmt =~ s/$;//g;
5470 $define_stmt =~ s/\s+/ /g;
5471 $define_stmt = trim($define_stmt);
5473 # check if any macro arguments are reused (ignore '...' and 'type')
5474 foreach my $arg (@def_args) {
5475 next if ($arg =~ /\.\.\./);
5476 next if ($arg =~ /^type$/i);
5477 my $tmp_stmt = $define_stmt;
5478 $tmp_stmt =~ s/\b(sizeof|typeof|__typeof__|__builtin\w+|typecheck\s*\(\s*$Type\s*,|\#+)\s*\(*\s*$arg\s*\)*\b//g;
5479 $tmp_stmt =~ s/\#+\s*$arg\b//g;
5480 $tmp_stmt =~ s/\b$arg\s*\#\#//g;
5481 my $use_cnt = () = $tmp_stmt =~ /\b$arg\b/g;
5483 CHK("MACRO_ARG_REUSE",
5484 "Macro argument reuse '$arg' - possible side-effects?\n" . "$herectx");
5486 # check if any macro arguments may have other precedence issues
5487 if ($tmp_stmt =~ m/($Operators)?\s*\b$arg\b\s*($Operators)?/m &&
5488 ((defined($1) && $1 ne ',') ||
5489 (defined($2) && $2 ne ','))) {
5490 CHK("MACRO_ARG_PRECEDENCE",
5491 "Macro argument '$arg' may be better as '($arg)' to avoid precedence issues\n" . "$herectx");
5495 # check for macros with flow control, but without ## concatenation
5496 # ## concatenation is commonly a macro that defines a function so ignore those
5497 if ($has_flow_statement && !$has_arg_concat) {
5498 my $cnt = statement_rawlines($ctx);
5499 my $herectx = get_stat_here($linenr, $cnt, $here);
5501 WARN("MACRO_WITH_FLOW_CONTROL",
5502 "Macros with flow control statements should be avoided\n" . "$herectx");
5505 # check for line continuations outside of #defines, preprocessor #, and asm
5508 if ($prevline !~ /^..*\\$/ &&
5509 $line !~ /^\+\s*\#.*\\$/ && # preprocessor
5510 $line !~ /^\+.*\b(__asm__|asm)\b.*\\$/ && # asm
5511 $line =~ /^\+.*\\$/) {
5512 WARN("LINE_CONTINUATIONS",
5513 "Avoid unnecessary line continuations\n" . $herecurr);
5517 # do {} while (0) macro tests:
5518 # single-statement macros do not need to be enclosed in do while (0) loop,
5519 # macro should not end with a semicolon
5520 if ($perl_version_ok &&
5521 $realfile !~ m@/vmlinux.lds.h$@ &&
5522 $line =~ /^.\s*\#\s*define\s+$Ident(\()?/) {
5525 my ($off, $dstat, $dcond, $rest);
5527 ($dstat, $dcond, $ln, $cnt, $off) =
5528 ctx_statement_block($linenr, $realcnt, 0);
5531 $dstat =~ s/\\\n.//g;
5534 if ($dstat =~ /^\+\s*#\s*define\s+$Ident\s*${balanced_parens}\s*do\s*{(.*)\s*}\s*while\s*\(\s*0\s*\)\s*([;\s]*)\s*$/) {
5539 my $cnt = statement_rawlines($ctx);
5540 my $herectx = get_stat_here($linenr, $cnt, $here);
5542 if (($stmts =~ tr/;/;/) == 1 &&
5543 $stmts !~ /^\s*(if|while|for|switch)\b/) {
5544 WARN("SINGLE_STATEMENT_DO_WHILE_MACRO",
5545 "Single statement macros should not use a do {} while (0) loop\n" . "$herectx");
5547 if (defined $semis && $semis ne "") {
5548 WARN("DO_WHILE_MACRO_WITH_TRAILING_SEMICOLON",
5549 "do {} while (0) macros should not be semicolon terminated\n" . "$herectx");
5551 } elsif ($dstat =~ /^\+\s*#\s*define\s+$Ident.*;\s*$/) {
5553 my $cnt = statement_rawlines($ctx);
5554 my $herectx = get_stat_here($linenr, $cnt, $here);
5556 WARN("TRAILING_SEMICOLON",
5557 "macros should not use a trailing semicolon\n" . "$herectx");
5561 # check for redundant bracing round if etc
5562 if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) {
5563 my ($level, $endln, @chunks) =
5564 ctx_statement_full($linenr, $realcnt, 1);
5565 #print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n";
5566 #print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n";
5567 if ($#chunks > 0 && $level == 0) {
5571 my $herectx = $here . "\n";
5572 my $ln = $linenr - 1;
5573 for my $chunk (@chunks) {
5574 my ($cond, $block) = @{$chunk};
5576 # If the condition carries leading newlines, then count those as offsets.
5577 my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s);
5578 my $offset = statement_rawlines($whitespace) - 1;
5580 $allowed[$allow] = 0;
5581 #print "COND<$cond> whitespace<$whitespace> offset<$offset>\n";
5583 # We have looked at and allowed this specific line.
5584 $suppress_ifbraces{$ln + $offset} = 1;
5586 $herectx .= "$rawlines[$ln + $offset]\n[...]\n";
5587 $ln += statement_rawlines($block) - 1;
5589 substr($block, 0, length($cond), '');
5591 $seen++ if ($block =~ /^\s*{/);
5593 #print "cond<$cond> block<$block> allowed<$allowed[$allow]>\n";
5594 if (statement_lines($cond) > 1) {
5595 #print "APW: ALLOWED: cond<$cond>\n";
5596 $allowed[$allow] = 1;
5598 if ($block =~/\b(?:if|for|while)\b/) {
5599 #print "APW: ALLOWED: block<$block>\n";
5600 $allowed[$allow] = 1;
5602 if (statement_block_size($block) > 1) {
5603 #print "APW: ALLOWED: lines block<$block>\n";
5604 $allowed[$allow] = 1;
5609 my $sum_allowed = 0;
5610 foreach (@allowed) {
5613 if ($sum_allowed == 0) {
5615 "braces {} are not necessary for any arm of this statement\n" . $herectx);
5616 } elsif ($sum_allowed != $allow &&
5619 "braces {} should be used on all arms of this statement\n" . $herectx);
5624 if (!defined $suppress_ifbraces{$linenr - 1} &&
5625 $line =~ /\b(if|while|for|else)\b/) {
5628 # Check the pre-context.
5629 if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) {
5630 #print "APW: ALLOWED: pre<$1>\n";
5634 my ($level, $endln, @chunks) =
5635 ctx_statement_full($linenr, $realcnt, $-[0]);
5637 # Check the condition.
5638 my ($cond, $block) = @{$chunks[0]};
5639 #print "CHECKING<$linenr> cond<$cond> block<$block>\n";
5640 if (defined $cond) {
5641 substr($block, 0, length($cond), '');
5643 if (statement_lines($cond) > 1) {
5644 #print "APW: ALLOWED: cond<$cond>\n";
5647 if ($block =~/\b(?:if|for|while)\b/) {
5648 #print "APW: ALLOWED: block<$block>\n";
5651 if (statement_block_size($block) > 1) {
5652 #print "APW: ALLOWED: lines block<$block>\n";
5655 # Check the post-context.
5656 if (defined $chunks[1]) {
5657 my ($cond, $block) = @{$chunks[1]};
5658 if (defined $cond) {
5659 substr($block, 0, length($cond), '');
5661 if ($block =~ /^\s*\{/) {
5662 #print "APW: ALLOWED: chunk-1 block<$block>\n";
5666 if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
5667 my $cnt = statement_rawlines($block);
5668 my $herectx = get_stat_here($linenr, $cnt, $here);
5671 "braces {} are not necessary for single statement blocks\n" . $herectx);
5675 # check for single line unbalanced braces
5676 if ($sline =~ /^.\s*\}\s*else\s*$/ ||
5677 $sline =~ /^.\s*else\s*\{\s*$/) {
5678 CHK("BRACES", "Unbalanced braces around else statement\n" . $herecurr);
5681 # check for unnecessary blank lines around braces
5682 if (($line =~ /^.\s*}\s*$/ && $prevrawline =~ /^.\s*$/)) {
5684 "Blank lines aren't necessary before a close brace '}'\n" . $hereprev) &&
5685 $fix && $prevrawline =~ /^\+/) {
5686 fix_delete_line($fixlinenr - 1, $prevrawline);
5689 if (($rawline =~ /^.\s*$/ && $prevline =~ /^..*{\s*$/)) {
5691 "Blank lines aren't necessary after an open brace '{'\n" . $hereprev) &&
5693 fix_delete_line($fixlinenr, $rawline);
5697 # no volatiles please
5698 my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
5699 if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
5701 "Use of volatile is usually wrong: see Documentation/process/volatile-considered-harmful.rst\n" . $herecurr);
5704 # Check for user-visible strings broken across lines, which breaks the ability
5705 # to grep for the string. Make exceptions when the previous string ends in a
5706 # newline (multiple lines in one string constant) or '\t', '\r', ';', or '{'
5707 # (common in inline assembly) or is a octal \123 or hexadecimal \xaf value
5708 if ($line =~ /^\+\s*$String/ &&
5709 $prevline =~ /"\s*$/ &&
5710 $prevrawline !~ /(?:\\(?:[ntr]|[0-7]{1,3}|x[0-9a-fA-F]{1,2})|;\s*|\{\s*)"\s*$/) {
5711 if (WARN("SPLIT_STRING",
5712 "quoted string split across lines\n" . $hereprev) &&
5714 $prevrawline =~ /^\+.*"\s*$/ &&
5715 $last_coalesced_string_linenr != $linenr - 1) {
5716 my $extracted_string = get_quoted_string($line, $rawline);
5717 my $comma_close = "";
5718 if ($rawline =~ /\Q$extracted_string\E(\s*\)\s*;\s*$|\s*,\s*)/) {
5722 fix_delete_line($fixlinenr - 1, $prevrawline);
5723 fix_delete_line($fixlinenr, $rawline);
5724 my $fixedline = $prevrawline;
5725 $fixedline =~ s/"\s*$//;
5726 $fixedline .= substr($extracted_string, 1) . trim($comma_close);
5727 fix_insert_line($fixlinenr - 1, $fixedline);
5728 $fixedline = $rawline;
5729 $fixedline =~ s/\Q$extracted_string\E\Q$comma_close\E//;
5730 if ($fixedline !~ /\+\s*$/) {
5731 fix_insert_line($fixlinenr, $fixedline);
5733 $last_coalesced_string_linenr = $linenr;
5737 # check for missing a space in a string concatenation
5738 if ($prevrawline =~ /[^\\]\w"$/ && $rawline =~ /^\+[\t ]+"\w/) {
5739 WARN('MISSING_SPACE',
5740 "break quoted strings at a space character\n" . $hereprev);
5743 # check for an embedded function name in a string when the function is known
5744 # This does not work very well for -f --file checking as it depends on patch
5745 # context providing the function name or a single line form for in-file
5746 # function declarations
5747 if ($line =~ /^\+.*$String/ &&
5748 defined($context_function) &&
5749 get_quoted_string($line, $rawline) =~ /\b$context_function\b/ &&
5750 length(get_quoted_string($line, $rawline)) != (length($context_function) + 2)) {
5751 WARN("EMBEDDED_FUNCTION_NAME",
5752 "Prefer using '\"%s...\", __func__' to using '$context_function', this function's name, in a string\n" . $herecurr);
5755 # check for spaces before a quoted newline
5756 if ($rawline =~ /^.*\".*\s\\n/) {
5757 if (WARN("QUOTED_WHITESPACE_BEFORE_NEWLINE",
5758 "unnecessary whitespace before a quoted newline\n" . $herecurr) &&
5760 $fixed[$fixlinenr] =~ s/^(\+.*\".*)\s+\\n/$1\\n/;
5765 # concatenated string without spaces between elements
5766 if ($line =~ /$String[A-Za-z0-9_]/ || $line =~ /[A-Za-z0-9_]$String/) {
5767 if (CHK("CONCATENATED_STRING",
5768 "Concatenated strings should use spaces between elements\n" . $herecurr) &&
5770 while ($line =~ /($String)/g) {
5771 my $extracted_string = substr($rawline, $-[0], $+[0] - $-[0]);
5772 $fixed[$fixlinenr] =~ s/\Q$extracted_string\E([A-Za-z0-9_])/$extracted_string $1/;
5773 $fixed[$fixlinenr] =~ s/([A-Za-z0-9_])\Q$extracted_string\E/$1 $extracted_string/;
5778 # uncoalesced string fragments
5779 if ($line =~ /$String\s*"/) {
5780 if (WARN("STRING_FRAGMENTS",
5781 "Consecutive strings are generally better as a single string\n" . $herecurr) &&
5783 while ($line =~ /($String)(?=\s*")/g) {
5784 my $extracted_string = substr($rawline, $-[0], $+[0] - $-[0]);
5785 $fixed[$fixlinenr] =~ s/\Q$extracted_string\E\s*"/substr($extracted_string, 0, -1)/e;
5790 # check for non-standard and hex prefixed decimal printf formats
5791 my $show_L = 1; #don't show the same defect twice
5793 while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) {
5794 my $string = substr($rawline, $-[1], $+[1] - $-[1]);
5795 $string =~ s/%%/__/g;
5797 if ($show_L && $string =~ /%[\*\d\.\$]*L([diouxX])/) {
5799 "\%L$1 is non-standard C, use %ll$1\n" . $herecurr);
5803 if ($show_Z && $string =~ /%[\*\d\.\$]*Z([diouxX])/) {
5805 "%Z$1 is non-standard C, use %z$1\n" . $herecurr);
5808 # check for 0x<decimal>
5809 if ($string =~ /0x%[\*\d\.\$\Llzth]*[diou]/) {
5810 ERROR("PRINTF_0XDECIMAL",
5811 "Prefixing 0x with decimal output is defective\n" . $herecurr);
5815 # check for line continuations in quoted strings with odd counts of "
5816 if ($rawline =~ /\\$/ && $sline =~ tr/"/"/ % 2) {
5817 WARN("LINE_CONTINUATIONS",
5818 "Avoid line continuations in quoted strings\n" . $herecurr);
5822 if ($line =~ /^.\s*\#\s*if\s+0\b/) {
5824 "Consider removing the code enclosed by this #if 0 and its #endif\n" . $herecurr);
5828 if ($line =~ /^.\s*\#\s*if\s+1\b/) {
5830 "Consider removing the #if 1 and its #endif\n" . $herecurr);
5833 # check for needless "if (<foo>) fn(<foo>)" uses
5834 if ($prevline =~ /\bif\s*\(\s*($Lval)\s*\)/) {
5835 my $tested = quotemeta($1);
5836 my $expr = '\s*\(\s*' . $tested . '\s*\)\s*;';
5837 if ($line =~ /\b(kfree|usb_free_urb|debugfs_remove(?:_recursive)?|(?:kmem_cache|mempool|dma_pool)_destroy)$expr/) {
5839 if (WARN('NEEDLESS_IF',
5840 "$func(NULL) is safe and this check is probably not required\n" . $hereprev) &&
5843 my $leading_tabs = "";
5844 my $new_leading_tabs = "";
5845 if ($lines[$linenr - 2] =~ /^\+(\t*)if\s*\(\s*$tested\s*\)\s*$/) {
5850 if ($lines[$linenr - 1] =~ /^\+(\t+)$func\s*\(\s*$tested\s*\)\s*;\s*$/) {
5851 $new_leading_tabs = $1;
5852 if (length($leading_tabs) + 1 ne length($new_leading_tabs)) {
5859 fix_delete_line($fixlinenr - 1, $prevrawline);
5860 $fixed[$fixlinenr] =~ s/^\+$new_leading_tabs/\+$leading_tabs/;
5866 # check for unnecessary "Out of Memory" messages
5867 if ($line =~ /^\+.*\b$logFunctions\s*\(/ &&
5868 $prevline =~ /^[ \+]\s*if\s*\(\s*(\!\s*|NULL\s*==\s*)?($Lval)(\s*==\s*NULL\s*)?\s*\)/ &&
5869 (defined $1 || defined $3) &&
5872 my $testline = $lines[$linenr - 3];
5874 my ($s, $c) = ctx_statement_block($linenr - 3, $realcnt, 0);
5875 # print("line: <$line>\nprevline: <$prevline>\ns: <$s>\nc: <$c>\n\n\n");
5877 if ($s =~ /(?:^|\n)[ \+]\s*(?:$Type\s*)?\Q$testval\E\s*=\s*(?:\([^\)]*\)\s*)?\s*$allocFunctions\s*\(/ &&
5878 $s !~ /\b__GFP_NOWARN\b/ ) {
5880 "Possible unnecessary 'out of memory' message\n" . $hereprev);
5884 # check for logging functions with KERN_<LEVEL>
5885 if ($line !~ /printk(?:_ratelimited|_once)?\s*\(/ &&
5886 $line =~ /\b$logFunctions\s*\(.*\b(KERN_[A-Z]+)\b/) {
5888 if (WARN("UNNECESSARY_KERN_LEVEL",
5889 "Possible unnecessary $level\n" . $herecurr) &&
5891 $fixed[$fixlinenr] =~ s/\s*$level\s*//;
5895 # check for logging continuations
5896 if ($line =~ /\bprintk\s*\(\s*KERN_CONT\b|\bpr_cont\s*\(/) {
5897 WARN("LOGGING_CONTINUATION",
5898 "Avoid logging continuation uses where feasible\n" . $herecurr);
5901 # check for mask then right shift without a parentheses
5902 if ($perl_version_ok &&
5903 $line =~ /$LvalOrFunc\s*\&\s*($LvalOrFunc)\s*>>/ &&
5904 $4 !~ /^\&/) { # $LvalOrFunc may be &foo, ignore if so
5905 WARN("MASK_THEN_SHIFT",
5906 "Possible precedence defect with mask then right shift - may need parentheses\n" . $herecurr);
5909 # check for pointer comparisons to NULL
5910 if ($perl_version_ok) {
5911 while ($line =~ /\b$LvalOrFunc\s*(==|\!=)\s*NULL\b/g) {
5914 $equal = "" if ($4 eq "!=");
5915 if (CHK("COMPARISON_TO_NULL",
5916 "Comparison to NULL could be written \"${equal}${val}\"\n" . $herecurr) &&
5918 $fixed[$fixlinenr] =~ s/\b\Q$val\E\s*(?:==|\!=)\s*NULL\b/$equal$val/;
5923 # check for bad placement of section $InitAttribute (e.g.: __initdata)
5924 if ($line =~ /(\b$InitAttribute\b)/) {
5926 if ($line =~ /^\+\s*static\s+(?:const\s+)?(?:$attr\s+)?($NonptrTypeWithAttr)\s+(?:$attr\s+)?($Ident(?:\[[^]]*\])?)\s*[=;]/) {
5929 if ((($ptr =~ /\b(union|struct)\s+$attr\b/ &&
5930 ERROR("MISPLACED_INIT",
5931 "$attr should be placed after $var\n" . $herecurr)) ||
5932 ($ptr !~ /\b(union|struct)\s+$attr\b/ &&
5933 WARN("MISPLACED_INIT",
5934 "$attr should be placed after $var\n" . $herecurr))) &&
5936 $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;
5941 # check for $InitAttributeData (ie: __initdata) with const
5942 if ($line =~ /\bconst\b/ && $line =~ /($InitAttributeData)/) {
5944 $attr =~ /($InitAttributePrefix)(.*)/;
5945 my $attr_prefix = $1;
5947 if (ERROR("INIT_ATTRIBUTE",
5948 "Use of const init definition must use ${attr_prefix}initconst\n" . $herecurr) &&
5950 $fixed[$fixlinenr] =~
5951 s/$InitAttributeData/${attr_prefix}initconst/;
5955 # check for $InitAttributeConst (ie: __initconst) without const
5956 if ($line !~ /\bconst\b/ && $line =~ /($InitAttributeConst)/) {
5958 if (ERROR("INIT_ATTRIBUTE",
5959 "Use of $attr requires a separate use of const\n" . $herecurr) &&
5961 my $lead = $fixed[$fixlinenr] =~
5962 /(^\+\s*(?:static\s+))/;
5964 $lead = "$lead " if ($lead !~ /^\+$/);
5965 $lead = "${lead}const ";
5966 $fixed[$fixlinenr] =~ s/(^\+\s*(?:static\s+))/$lead/;
5970 # check for __read_mostly with const non-pointer (should just be const)
5971 if ($line =~ /\b__read_mostly\b/ &&
5972 $line =~ /($Type)\s*$Ident/ && $1 !~ /\*\s*$/ && $1 =~ /\bconst\b/) {
5973 if (ERROR("CONST_READ_MOSTLY",
5974 "Invalid use of __read_mostly with const type\n" . $herecurr) &&
5976 $fixed[$fixlinenr] =~ s/\s+__read_mostly\b//;
5980 # don't use __constant_<foo> functions outside of include/uapi/
5981 if ($realfile !~ m@^include/uapi/@ &&
5982 $line =~ /(__constant_(?:htons|ntohs|[bl]e(?:16|32|64)_to_cpu|cpu_to_[bl]e(?:16|32|64)))\s*\(/) {
5983 my $constant_func = $1;
5984 my $func = $constant_func;
5985 $func =~ s/^__constant_//;
5986 if (WARN("CONSTANT_CONVERSION",
5987 "$constant_func should be $func\n" . $herecurr) &&
5989 $fixed[$fixlinenr] =~ s/\b$constant_func\b/$func/g;
5993 # prefer usleep_range over udelay
5994 if ($line =~ /\budelay\s*\(\s*(\d+)\s*\)/) {
5996 # ignore udelay's < 10, however
5997 if (! ($delay < 10) ) {
5999 "usleep_range is preferred over udelay; see Documentation/timers/timers-howto.rst\n" . $herecurr);
6001 if ($delay > 2000) {
6003 "long udelay - prefer mdelay; see arch/arm/include/asm/delay.h\n" . $herecurr);
6007 # warn about unexpectedly long msleep's
6008 if ($line =~ /\bmsleep\s*\((\d+)\);/) {
6011 "msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.rst\n" . $herecurr);
6015 # check for comparisons of jiffies
6016 if ($line =~ /\bjiffies\s*$Compare|$Compare\s*jiffies\b/) {
6017 WARN("JIFFIES_COMPARISON",
6018 "Comparing jiffies is almost always wrong; prefer time_after, time_before and friends\n" . $herecurr);
6021 # check for comparisons of get_jiffies_64()
6022 if ($line =~ /\bget_jiffies_64\s*\(\s*\)\s*$Compare|$Compare\s*get_jiffies_64\s*\(\s*\)/) {
6023 WARN("JIFFIES_COMPARISON",
6024 "Comparing get_jiffies_64() is almost always wrong; prefer time_after64, time_before64 and friends\n" . $herecurr);
6027 # warn about #ifdefs in C files
6028 # if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
6029 # print "#ifdef in C files should be avoided\n";
6030 # print "$herecurr";
6034 # warn about spacing in #ifdefs
6035 if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) {
6036 if (ERROR("SPACING",
6037 "exactly one space required after that #$1\n" . $herecurr) &&
6039 $fixed[$fixlinenr] =~
6040 s/^(.\s*\#\s*(ifdef|ifndef|elif))\s{2,}/$1 /;
6045 # check for spinlock_t definitions without a comment.
6046 if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ ||
6047 $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) {
6049 if (!ctx_has_comment($first_line, $linenr)) {
6050 CHK("UNCOMMENTED_DEFINITION",
6051 "$1 definition without comment\n" . $herecurr);
6054 # check for memory barriers without a comment.
6061 my $barrier_stems = qr{
6069 my $all_barriers = qr{
6071 smp_(?:$barrier_stems)|
6072 virt_(?:$barrier_stems)
6075 if ($line =~ /\b(?:$all_barriers)\s*\(/) {
6076 if (!ctx_has_comment($first_line, $linenr)) {
6077 WARN("MEMORY_BARRIER",
6078 "memory barrier without comment\n" . $herecurr);
6082 my $underscore_smp_barriers = qr{__smp_(?:$barrier_stems)}x;
6084 if ($realfile !~ m@^include/asm-generic/@ &&
6085 $realfile !~ m@/barrier\.h$@ &&
6086 $line =~ m/\b(?:$underscore_smp_barriers)\s*\(/ &&
6087 $line !~ m/^.\s*\#\s*define\s+(?:$underscore_smp_barriers)\s*\(/) {
6088 WARN("MEMORY_BARRIER",
6089 "__smp memory barriers shouldn't be used outside barrier.h and asm-generic\n" . $herecurr);
6092 # check for waitqueue_active without a comment.
6093 if ($line =~ /\bwaitqueue_active\s*\(/) {
6094 if (!ctx_has_comment($first_line, $linenr)) {
6095 WARN("WAITQUEUE_ACTIVE",
6096 "waitqueue_active without comment\n" . $herecurr);
6100 # check for data_race without a comment.
6101 if ($line =~ /\bdata_race\s*\(/) {
6102 if (!ctx_has_comment($first_line, $linenr)) {
6104 "data_race without comment\n" . $herecurr);
6108 # check of hardware specific defines
6109 if ($line =~ m@^.\s*\#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
6111 "architecture specific defines should be avoided\n" . $herecurr);
6114 # check that the storage class is not after a type
6115 if ($line =~ /\b($Type)\s+($Storage)\b/) {
6116 WARN("STORAGE_CLASS",
6117 "storage class '$2' should be located before type '$1'\n" . $herecurr);
6119 # Check that the storage class is at the beginning of a declaration
6120 if ($line =~ /\b$Storage\b/ &&
6121 $line !~ /^.\s*$Storage/ &&
6122 $line =~ /^.\s*(.+?)\$Storage\s/ &&
6123 $1 !~ /[\,\)]\s*$/) {
6124 WARN("STORAGE_CLASS",
6125 "storage class should be at the beginning of the declaration\n" . $herecurr);
6128 # check the location of the inline attribute, that it is between
6129 # storage class and type.
6130 if ($line =~ /\b$Type\s+$Inline\b/ ||
6131 $line =~ /\b$Inline\s+$Storage\b/) {
6132 ERROR("INLINE_LOCATION",
6133 "inline keyword should sit between storage class and type\n" . $herecurr);
6136 # Check for __inline__ and __inline, prefer inline
6137 if ($realfile !~ m@\binclude/uapi/@ &&
6138 $line =~ /\b(__inline__|__inline)\b/) {
6140 "plain inline is preferred over $1\n" . $herecurr) &&
6142 $fixed[$fixlinenr] =~ s/\b(__inline__|__inline)\b/inline/;
6147 # Check for __attribute__ packed, prefer __packed
6148 if ($realfile !~ m@\binclude/uapi/@ &&
6149 $line =~ /\b__attribute__\s*\(\s*\(.*\bpacked\b/) {
6150 WARN("PREFER_PACKED",
6151 "__packed is preferred over __attribute__((packed))\n" . $herecurr);
6154 # Check for __attribute__ aligned, prefer __aligned
6155 if ($realfile !~ m@\binclude/uapi/@ &&
6156 $line =~ /\b__attribute__\s*\(\s*\(.*aligned/) {
6157 WARN("PREFER_ALIGNED",
6158 "__aligned(size) is preferred over __attribute__((aligned(size)))\n" . $herecurr);
6161 # Check for __attribute__ section, prefer __section
6162 if ($realfile !~ m@\binclude/uapi/@ &&
6163 $line =~ /\b__attribute__\s*\(\s*\(.*_*section_*\s*\(\s*("[^"]*")/) {
6164 my $old = substr($rawline, $-[1], $+[1] - $-[1]);
6165 my $new = substr($old, 1, -1);
6166 if (WARN("PREFER_SECTION",
6167 "__section($new) is preferred over __attribute__((section($old)))\n" . $herecurr) &&
6169 $fixed[$fixlinenr] =~ s/\b__attribute__\s*\(\s*\(\s*_*section_*\s*\(\s*\Q$old\E\s*\)\s*\)\s*\)/__section($new)/;
6173 # Check for __attribute__ format(printf, prefer __printf
6174 if ($realfile !~ m@\binclude/uapi/@ &&
6175 $line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf/) {
6176 if (WARN("PREFER_PRINTF",
6177 "__printf(string-index, first-to-check) is preferred over __attribute__((format(printf, string-index, first-to-check)))\n" . $herecurr) &&
6179 $fixed[$fixlinenr] =~ s/\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf\s*,\s*(.*)\)\s*\)\s*\)/"__printf(" . trim($1) . ")"/ex;
6184 # Check for __attribute__ format(scanf, prefer __scanf
6185 if ($realfile !~ m@\binclude/uapi/@ &&
6186 $line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*scanf\b/) {
6187 if (WARN("PREFER_SCANF",
6188 "__scanf(string-index, first-to-check) is preferred over __attribute__((format(scanf, string-index, first-to-check)))\n" . $herecurr) &&
6190 $fixed[$fixlinenr] =~ s/\b__attribute__\s*\(\s*\(\s*format\s*\(\s*scanf\s*,\s*(.*)\)\s*\)\s*\)/"__scanf(" . trim($1) . ")"/ex;
6194 # Check for __attribute__ weak, or __weak declarations (may have link issues)
6195 if ($perl_version_ok &&
6196 $line =~ /(?:$Declare|$DeclareMisordered)\s*$Ident\s*$balanced_parens\s*(?:$Attribute)?\s*;/ &&
6197 ($line =~ /\b__attribute__\s*\(\s*\(.*\bweak\b/ ||
6198 $line =~ /\b__weak\b/)) {
6199 ERROR("WEAK_DECLARATION",
6200 "Using weak declarations can have unintended link defects\n" . $herecurr);
6203 # check for c99 types like uint8_t used outside of uapi/ and tools/
6204 if ($realfile !~ m@\binclude/uapi/@ &&
6205 $realfile !~ m@\btools/@ &&
6206 $line =~ /\b($Declare)\s*$Ident\s*[=;,\[]/) {
6208 if ($type =~ /\b($typeC99Typedefs)\b/) {
6210 my $kernel_type = 'u';
6211 $kernel_type = 's' if ($type =~ /^_*[si]/);
6214 if (CHK("PREFER_KERNEL_TYPES",
6215 "Prefer kernel type '$kernel_type' over '$type'\n" . $herecurr) &&
6217 $fixed[$fixlinenr] =~ s/\b$type\b/$kernel_type/;
6222 # check for cast of C90 native int or longer types constants
6223 if ($line =~ /(\(\s*$C90_int_types\s*\)\s*)($Constant)\b/) {
6226 if (WARN("TYPECAST_INT_CONSTANT",
6227 "Unnecessary typecast of c90 int constant\n" . $herecurr) &&
6230 my $newconst = $const;
6231 $newconst =~ s/${Int_type}$//;
6232 $suffix .= 'U' if ($cast =~ /\bunsigned\b/);
6233 if ($cast =~ /\blong\s+long\b/) {
6235 } elsif ($cast =~ /\blong\b/) {
6238 $fixed[$fixlinenr] =~ s/\Q$cast\E$const\b/$newconst$suffix/;
6242 # check for sizeof(&)
6243 if ($line =~ /\bsizeof\s*\(\s*\&/) {
6244 WARN("SIZEOF_ADDRESS",
6245 "sizeof(& should be avoided\n" . $herecurr);
6248 # check for sizeof without parenthesis
6249 if ($line =~ /\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/) {
6250 if (WARN("SIZEOF_PARENTHESIS",
6251 "sizeof $1 should be sizeof($1)\n" . $herecurr) &&
6253 $fixed[$fixlinenr] =~ s/\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/"sizeof(" . trim($1) . ")"/ex;
6257 # check for struct spinlock declarations
6258 if ($line =~ /^.\s*\bstruct\s+spinlock\s+\w+\s*;/) {
6259 WARN("USE_SPINLOCK_T",
6260 "struct spinlock should be spinlock_t\n" . $herecurr);
6263 # check for seq_printf uses that could be seq_puts
6264 if ($sline =~ /\bseq_printf\s*\(.*"\s*\)\s*;\s*$/) {
6265 my $fmt = get_quoted_string($line, $rawline);
6268 if (WARN("PREFER_SEQ_PUTS",
6269 "Prefer seq_puts to seq_printf\n" . $herecurr) &&
6271 $fixed[$fixlinenr] =~ s/\bseq_printf\b/seq_puts/;
6276 # check for vsprintf extension %p<foo> misuses
6277 if ($perl_version_ok &&
6279 $stat =~ /^\+(?![^\{]*\{\s*).*\b(\w+)\s*\(.*$String\s*,/s &&
6280 $1 !~ /^_*volatile_*$/) {
6283 my $lc = $stat =~ tr@\n@@;
6284 $lc = $lc + $linenr;
6285 for (my $count = $linenr; $count <= $lc; $count++) {
6289 my $bad_specifier = "";
6290 my $fmt = get_quoted_string($lines[$count - 1], raw_line($count, 0));
6293 while ($fmt =~ /(\%[\*\d\.]*p(\w)(\w*))/g) {
6297 if ($extension !~ /[SsBKRraEehMmIiUDdgVCbGNOxtf]/ ||
6298 ($extension eq "f" &&
6299 defined $qualifier && $qualifier !~ /^w/)) {
6300 $bad_specifier = $specifier;
6303 if ($extension eq "x" && !defined($stat_real)) {
6304 if (!defined($stat_real)) {
6305 $stat_real = get_stat_real($linenr, $lc);
6307 WARN("VSPRINTF_SPECIFIER_PX",
6308 "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");
6311 if ($bad_specifier ne "") {
6312 my $stat_real = get_stat_real($linenr, $lc);
6313 my $ext_type = "Invalid";
6315 if ($bad_specifier =~ /p[Ff]/) {
6316 $use = " - use %pS instead";
6317 $use =~ s/pS/ps/ if ($bad_specifier =~ /pf/);
6320 WARN("VSPRINTF_POINTER_EXTENSION",
6321 "$ext_type vsprintf pointer extension '$bad_specifier'$use\n" . "$here\n$stat_real\n");
6326 # Check for misused memsets
6327 if ($perl_version_ok &&
6329 $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*$FuncArg\s*\)/) {
6335 if ($ms_size =~ /^(0x|)0$/i) {
6337 "memset to 0's uses 0 as the 2nd argument, not the 3rd\n" . "$here\n$stat\n");
6338 } elsif ($ms_size =~ /^(0x|)1$/i) {
6340 "single byte memset is suspicious. Swapped 2nd/3rd argument?\n" . "$here\n$stat\n");
6344 # Check for memcpy(foo, bar, ETH_ALEN) that could be ether_addr_copy(foo, bar)
6345 # if ($perl_version_ok &&
6347 # $stat =~ /^\+(?:.*?)\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
6348 # if (WARN("PREFER_ETHER_ADDR_COPY",
6349 # "Prefer ether_addr_copy() over memcpy() if the Ethernet addresses are __aligned(2)\n" . "$here\n$stat\n") &&
6351 # $fixed[$fixlinenr] =~ s/\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/ether_addr_copy($2, $7)/;
6355 # Check for memcmp(foo, bar, ETH_ALEN) that could be ether_addr_equal*(foo, bar)
6356 # if ($perl_version_ok &&
6358 # $stat =~ /^\+(?:.*?)\bmemcmp\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
6359 # WARN("PREFER_ETHER_ADDR_EQUAL",
6360 # "Prefer ether_addr_equal() or ether_addr_equal_unaligned() over memcmp()\n" . "$here\n$stat\n")
6363 # check for memset(foo, 0x0, ETH_ALEN) that could be eth_zero_addr
6364 # check for memset(foo, 0xFF, ETH_ALEN) that could be eth_broadcast_addr
6365 # if ($perl_version_ok &&
6367 # $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
6371 # if ($ms_val =~ /^(?:0x|)0+$/i) {
6372 # if (WARN("PREFER_ETH_ZERO_ADDR",
6373 # "Prefer eth_zero_addr over memset()\n" . "$here\n$stat\n") &&
6375 # $fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_zero_addr($2)/;
6377 # } elsif ($ms_val =~ /^(?:0xff|255)$/i) {
6378 # if (WARN("PREFER_ETH_BROADCAST_ADDR",
6379 # "Prefer eth_broadcast_addr() over memset()\n" . "$here\n$stat\n") &&
6381 # $fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_broadcast_addr($2)/;
6386 # typecasts on min/max could be min_t/max_t
6387 if ($perl_version_ok &&
6389 $stat =~ /^\+(?:.*?)\b(min|max)\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\)/) {
6390 if (defined $2 || defined $7) {
6392 my $cast1 = deparenthesize($2);
6394 my $cast2 = deparenthesize($7);
6398 if ($cast1 ne "" && $cast2 ne "" && $cast1 ne $cast2) {
6399 $cast = "$cast1 or $cast2";
6400 } elsif ($cast1 ne "") {
6406 "$call() should probably be ${call}_t($cast, $arg1, $arg2)\n" . "$here\n$stat\n");
6410 # check usleep_range arguments
6411 if ($perl_version_ok &&
6413 $stat =~ /^\+(?:.*?)\busleep_range\s*\(\s*($FuncArg)\s*,\s*($FuncArg)\s*\)/) {
6417 WARN("USLEEP_RANGE",
6418 "usleep_range should not use min == max args; see Documentation/timers/timers-howto.rst\n" . "$here\n$stat\n");
6419 } elsif ($min =~ /^\d+$/ && $max =~ /^\d+$/ &&
6421 WARN("USLEEP_RANGE",
6422 "usleep_range args reversed, use min then max; see Documentation/timers/timers-howto.rst\n" . "$here\n$stat\n");
6426 # check for naked sscanf
6427 if ($perl_version_ok &&
6429 $line =~ /\bsscanf\b/ &&
6430 ($stat !~ /$Ident\s*=\s*sscanf\s*$balanced_parens/ &&
6431 $stat !~ /\bsscanf\s*$balanced_parens\s*(?:$Compare)/ &&
6432 $stat !~ /(?:$Compare)\s*\bsscanf\s*$balanced_parens/)) {
6433 my $lc = $stat =~ tr@\n@@;
6434 $lc = $lc + $linenr;
6435 my $stat_real = get_stat_real($linenr, $lc);
6436 WARN("NAKED_SSCANF",
6437 "unchecked sscanf return value\n" . "$here\n$stat_real\n");
6440 # check for simple sscanf that should be kstrto<foo>
6441 if ($perl_version_ok &&
6443 $line =~ /\bsscanf\b/) {
6444 my $lc = $stat =~ tr@\n@@;
6445 $lc = $lc + $linenr;
6446 my $stat_real = get_stat_real($linenr, $lc);
6447 if ($stat_real =~ /\bsscanf\b\s*\(\s*$FuncArg\s*,\s*("[^"]+")/) {
6449 my $count = $format =~ tr@%@%@;
6451 $format =~ /^"\%(?i:ll[udxi]|[udxi]ll|ll|[hl]h?[udxi]|[udxi][hl]h?|[hl]h?|[udxi])"$/) {
6452 WARN("SSCANF_TO_KSTRTO",
6453 "Prefer kstrto<type> to single variable sscanf\n" . "$here\n$stat_real\n");
6458 # check for new externs in .h files.
6459 if ($realfile =~ /\.h$/ &&
6460 $line =~ /^\+\s*(extern\s+)$Type\s*$Ident\s*\(/s) {
6461 if (CHK("AVOID_EXTERNS",
6462 "extern prototypes should be avoided in .h files\n" . $herecurr) &&
6464 $fixed[$fixlinenr] =~ s/(.*)\bextern\b\s*(.*)/$1$2/;
6468 # check for new externs in .c files.
6469 if ($realfile =~ /\.c$/ && defined $stat &&
6470 $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s)
6472 my $function_name = $1;
6473 my $paren_space = $2;
6476 if (defined $cond) {
6477 substr($s, 0, length($cond), '');
6481 WARN("AVOID_EXTERNS",
6482 "externs should be avoided in .c files\n" . $herecurr);
6485 if ($paren_space =~ /\n/) {
6486 WARN("FUNCTION_ARGUMENTS",
6487 "arguments for function declarations should follow identifier\n" . $herecurr);
6490 } elsif ($realfile =~ /\.c$/ && defined $stat &&
6491 $stat =~ /^.\s*extern\s+/)
6493 WARN("AVOID_EXTERNS",
6494 "externs should be avoided in .c files\n" . $herecurr);
6497 # check for function declarations that have arguments without identifier names
6498 if (defined $stat &&
6499 $stat =~ /^.\s*(?:extern\s+)?$Type\s*(?:$Ident|\(\s*\*\s*$Ident\s*\))\s*\(\s*([^{]+)\s*\)\s*;/s &&
6501 my $args = trim($1);
6502 while ($args =~ m/\s*($Type\s*(?:$Ident|\(\s*\*\s*$Ident?\s*\)\s*$balanced_parens)?)/g) {
6504 if ($arg =~ /^$Type$/ && $arg !~ /enum\s+$Ident$/) {
6505 WARN("FUNCTION_ARGUMENTS",
6506 "function definition argument '$arg' should also have an identifier name\n" . $herecurr);
6511 # check for function definitions
6512 if ($perl_version_ok &&
6514 $stat =~ /^.\s*(?:$Storage\s+)?$Type\s*($Ident)\s*$balanced_parens\s*{/s) {
6515 $context_function = $1;
6517 # check for multiline function definition with misplaced open brace
6519 my $cnt = statement_rawlines($stat);
6520 my $herectx = $here . "\n";
6521 for (my $n = 0; $n < $cnt; $n++) {
6522 my $rl = raw_line($linenr, $n);
6523 $herectx .= $rl . "\n";
6524 $ok = 1 if ($rl =~ /^[ \+]\{/);
6525 $ok = 1 if ($rl =~ /\{/ && $n == 0);
6526 last if $rl =~ /^[ \+].*\{/;
6530 "open brace '{' following function definitions go on the next line\n" . $herectx);
6534 # checks for new __setup's
6535 if ($rawline =~ /\b__setup\("([^"]*)"/) {
6538 if (!grep(/$name/, @setup_docs)) {
6539 CHK("UNDOCUMENTED_SETUP",
6540 "__setup appears un-documented -- check Documentation/admin-guide/kernel-parameters.txt\n" . $herecurr);
6544 # check for pointless casting of alloc functions
6545 if ($line =~ /\*\s*\)\s*$allocFunctions\b/) {
6546 WARN("UNNECESSARY_CASTS",
6547 "unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
6551 # p = alloc(sizeof(struct foo), ...) should be p = alloc(sizeof(*p), ...)
6552 if ($perl_version_ok &&
6553 $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*((?:kv|k|v)[mz]alloc(?:_node)?)\s*\(\s*(sizeof\s*\(\s*struct\s+$Lval\s*\))/) {
6554 CHK("ALLOC_SIZEOF_STRUCT",
6555 "Prefer $3(sizeof(*$1)...) over $3($4...)\n" . $herecurr);
6558 # check for k[mz]alloc with multiplies that could be kmalloc_array/kcalloc
6559 if ($perl_version_ok &&
6561 $stat =~ /^\+\s*($Lval)\s*\=\s*(?:$balanced_parens)?\s*(k[mz]alloc)\s*\(\s*($FuncArg)\s*\*\s*($FuncArg)\s*,/) {
6565 my $newfunc = "kmalloc_array";
6566 $newfunc = "kcalloc" if ($oldfunc eq "kzalloc");
6569 if ($a1 =~ /^sizeof\s*\S/) {
6573 if ($r1 !~ /^sizeof\b/ && $r2 =~ /^sizeof\s*\S/ &&
6574 !($r1 =~ /^$Constant$/ || $r1 =~ /^[A-Z_][A-Z0-9_]*$/)) {
6575 my $cnt = statement_rawlines($stat);
6576 my $herectx = get_stat_here($linenr, $cnt, $here);
6578 if (WARN("ALLOC_WITH_MULTIPLY",
6579 "Prefer $newfunc over $oldfunc with multiply\n" . $herectx) &&
6582 $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;
6587 # check for krealloc arg reuse
6588 if ($perl_version_ok &&
6589 $line =~ /\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*krealloc\s*\(\s*($Lval)\s*,/ &&
6591 WARN("KREALLOC_ARG_REUSE",
6592 "Reusing the krealloc arg is almost always a bug\n" . $herecurr);
6595 # check for alloc argument mismatch
6596 if ($line =~ /\b(kcalloc|kmalloc_array)\s*\(\s*sizeof\b/) {
6597 WARN("ALLOC_ARRAY_ARGS",
6598 "$1 uses number as first arg, sizeof is generally wrong\n" . $herecurr);
6601 # check for multiple semicolons
6602 if ($line =~ /;\s*;\s*$/) {
6603 if (WARN("ONE_SEMICOLON",
6604 "Statements terminations use 1 semicolon\n" . $herecurr) &&
6606 $fixed[$fixlinenr] =~ s/(\s*;\s*){2,}$/;/g;
6610 # check for #defines like: 1 << <digit> that could be BIT(digit), it is not exported to uapi
6611 if ($realfile !~ m@^include/uapi/@ &&
6612 $line =~ /#\s*define\s+\w+\s+\(?\s*1\s*([ulUL]*)\s*\<\<\s*(?:\d+|$Ident)\s*\)?/) {
6614 $ull = "_ULL" if (defined($1) && $1 =~ /ll/i);
6615 if (CHK("BIT_MACRO",
6616 "Prefer using the BIT$ull macro\n" . $herecurr) &&
6618 $fixed[$fixlinenr] =~ s/\(?\s*1\s*[ulUL]*\s*<<\s*(\d+|$Ident)\s*\)?/BIT${ull}($1)/;
6622 # check for IS_ENABLED() without CONFIG_<FOO> ($rawline for comments too)
6623 if ($rawline =~ /\bIS_ENABLED\s*\(\s*(\w+)\s*\)/ && $1 !~ /^${CONFIG_}/) {
6624 WARN("IS_ENABLED_CONFIG",
6625 "IS_ENABLED($1) is normally used as IS_ENABLED(${CONFIG_}$1)\n" . $herecurr);
6628 # check for #if defined CONFIG_<FOO> || defined CONFIG_<FOO>_MODULE
6629 if ($line =~ /^\+\s*#\s*if\s+defined(?:\s*\(?\s*|\s+)(${CONFIG_}[A-Z_]+)\s*\)?\s*\|\|\s*defined(?:\s*\(?\s*|\s+)\1_MODULE\s*\)?\s*$/) {
6631 if (WARN("PREFER_IS_ENABLED",
6632 "Prefer IS_ENABLED(<FOO>) to ${CONFIG_}<FOO> || ${CONFIG_}<FOO>_MODULE\n" . $herecurr) &&
6634 $fixed[$fixlinenr] = "\+#if IS_ENABLED($config)";
6638 # check for /* fallthrough */ like comment, prefer fallthrough;
6639 my @fallthroughs = (
6642 'lint -fallthrough[ \t]*',
6643 'intentional(?:ly)?[ \t]*fall(?:(?:s | |-)[Tt]|t)hr(?:ough|u|ew)',
6644 '(?:else,?\s*)?FALL(?:S | |-)?THR(?:OUGH|U|EW)[ \t.!]*(?:-[^\n\r]*)?',
6645 'Fall(?:(?:s | |-)[Tt]|t)hr(?:ough|u|ew)[ \t.!]*(?:-[^\n\r]*)?',
6646 'fall(?:s | |-)?thr(?:ough|u|ew)[ \t.!]*(?:-[^\n\r]*)?',
6648 if ($raw_comment ne '') {
6649 foreach my $ft (@fallthroughs) {
6650 if ($raw_comment =~ /$ft/) {
6651 my $msg_level = \&WARN;
6652 $msg_level = \&CHK if ($file);
6653 &{$msg_level}("PREFER_FALLTHROUGH",
6654 "Prefer 'fallthrough;' over fallthrough comment\n" . $herecurr);
6660 # check for switch/default statements without a break;
6661 if ($perl_version_ok &&
6663 $stat =~ /^\+[$;\s]*(?:case[$;\s]+\w+[$;\s]*:[$;\s]*|)*[$;\s]*\bdefault[$;\s]*:[$;\s]*;/g) {
6664 my $cnt = statement_rawlines($stat);
6665 my $herectx = get_stat_here($linenr, $cnt, $here);
6667 WARN("DEFAULT_NO_BREAK",
6668 "switch default: should use break\n" . $herectx);
6671 # check for gcc specific __FUNCTION__
6672 if ($line =~ /\b__FUNCTION__\b/) {
6673 if (WARN("USE_FUNC",
6674 "__func__ should be used instead of gcc specific __FUNCTION__\n" . $herecurr) &&
6676 $fixed[$fixlinenr] =~ s/\b__FUNCTION__\b/__func__/g;
6680 # check for uses of __DATE__, __TIME__, __TIMESTAMP__
6681 while ($line =~ /\b(__(?:DATE|TIME|TIMESTAMP)__)\b/g) {
6683 "Use of the '$1' macro makes the build non-deterministic\n" . $herecurr);
6686 # check for use of yield()
6687 if ($line =~ /\byield\s*\(\s*\)/) {
6689 "Using yield() is generally wrong. See yield() kernel-doc (sched/core.c)\n" . $herecurr);
6692 # check for comparisons against true and false
6693 if ($line =~ /\+\s*(.*?)\b(true|false|$Lval)\s*(==|\!=)\s*(true|false|$Lval)\b(.*)$/i) {
6701 ($arg, $otype) = ($otype, $arg) if ($arg =~ /^(?:true|false)$/i);
6703 my $type = lc($otype);
6704 if ($type =~ /^(?:true|false)$/) {
6705 if (("$test" eq "==" && "$type" eq "true") ||
6706 ("$test" eq "!=" && "$type" eq "false")) {
6710 CHK("BOOL_COMPARISON",
6711 "Using comparison to $otype is error prone\n" . $herecurr);
6713 ## maybe suggesting a correct construct would better
6714 ## "Using comparison to $otype is error prone. Perhaps use '${lead}${op}${arg}${trail}'\n" . $herecurr);
6719 # check for semaphores initialized locked
6720 if ($line =~ /^.\s*sema_init.+,\W?0\W?\)/) {
6721 WARN("CONSIDER_COMPLETION",
6722 "consider using a completion\n" . $herecurr);
6725 # recommend kstrto* over simple_strto* and strict_strto*
6726 if ($line =~ /\b((simple|strict)_(strto(l|ll|ul|ull)))\s*\(/) {
6727 WARN("CONSIDER_KSTRTO",
6728 "$1 is obsolete, use k$3 instead\n" . $herecurr);
6731 # check for __initcall(), use device_initcall() explicitly or more appropriate function please
6732 if ($line =~ /^.\s*__initcall\s*\(/) {
6733 WARN("USE_DEVICE_INITCALL",
6734 "please use device_initcall() or more appropriate function instead of __initcall() (see include/linux/init.h)\n" . $herecurr);
6737 # check for spin_is_locked(), suggest lockdep instead
6738 if ($line =~ /\bspin_is_locked\(/) {
6740 "Where possible, use lockdep_assert_held instead of assertions based on spin_is_locked\n" . $herecurr);
6743 # check for deprecated apis
6744 if ($line =~ /\b($deprecated_apis_search)\b\s*\(/) {
6745 my $deprecated_api = $1;
6746 my $new_api = $deprecated_apis{$deprecated_api};
6747 WARN("DEPRECATED_API",
6748 "Deprecated use of '$deprecated_api', prefer '$new_api' instead\n" . $herecurr);
6751 # check for various structs that are normally const (ops, kgdb, device_tree)
6752 # and avoid what seem like struct definitions 'struct foo {'
6753 if (defined($const_structs) &&
6754 $line !~ /\bconst\b/ &&
6755 $line =~ /\bstruct\s+($const_structs)\b(?!\s*\{)/) {
6756 WARN("CONST_STRUCT",
6757 "struct $1 should normally be const\n" . $herecurr);
6760 # use of NR_CPUS is usually wrong
6761 # ignore definitions of NR_CPUS and usage to define arrays as likely right
6762 if ($line =~ /\bNR_CPUS\b/ &&
6763 $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ &&
6764 $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ &&
6765 $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ &&
6766 $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ &&
6767 $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/)
6770 "usage of NR_CPUS is often wrong - consider using cpu_possible(), num_possible_cpus(), for_each_possible_cpu(), etc\n" . $herecurr);
6773 # Use of __ARCH_HAS_<FOO> or ARCH_HAVE_<BAR> is wrong.
6774 if ($line =~ /\+\s*#\s*define\s+((?:__)?ARCH_(?:HAS|HAVE)\w*)\b/) {
6775 ERROR("DEFINE_ARCH_HAS",
6776 "#define of '$1' is wrong - use Kconfig variables or standard guards instead\n" . $herecurr);
6779 # likely/unlikely comparisons similar to "(likely(foo) > 0)"
6780 if ($perl_version_ok &&
6781 $line =~ /\b((?:un)?likely)\s*\(\s*$FuncArg\s*\)\s*$Compare/) {
6782 WARN("LIKELY_MISUSE",
6783 "Using $1 should generally have parentheses around the comparison\n" . $herecurr);
6786 # nested likely/unlikely calls
6787 if ($line =~ /\b(?:(?:un)?likely)\s*\(\s*!?\s*(IS_ERR(?:_OR_NULL|_VALUE)?|WARN)/) {
6788 WARN("LIKELY_MISUSE",
6789 "nested (un)?likely() calls, $1 already uses unlikely() internally\n" . $herecurr);
6792 # whine mightly about in_atomic
6793 if ($line =~ /\bin_atomic\s*\(/) {
6794 if ($realfile =~ m@^drivers/@) {
6796 "do not use in_atomic in drivers\n" . $herecurr);
6797 } elsif ($realfile !~ m@^kernel/@) {
6799 "use of in_atomic() is incorrect outside core kernel code\n" . $herecurr);
6803 # check for mutex_trylock_recursive usage
6804 if ($line =~ /mutex_trylock_recursive/) {
6806 "recursive locking is bad, do not use this ever.\n" . $herecurr);
6809 # check for lockdep_set_novalidate_class
6810 if ($line =~ /^.\s*lockdep_set_novalidate_class\s*\(/ ||
6811 $line =~ /__lockdep_no_validate__\s*\)/ ) {
6812 if ($realfile !~ m@^kernel/lockdep@ &&
6813 $realfile !~ m@^include/linux/lockdep@ &&
6814 $realfile !~ m@^drivers/base/core@) {
6816 "lockdep_no_validate class is reserved for device->mutex.\n" . $herecurr);
6820 if ($line =~ /debugfs_create_\w+.*\b$mode_perms_world_writable\b/ ||
6821 $line =~ /DEVICE_ATTR.*\b$mode_perms_world_writable\b/) {
6822 WARN("EXPORTED_WORLD_WRITABLE",
6823 "Exporting world writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr);
6826 # check for DEVICE_ATTR uses that could be DEVICE_ATTR_<FOO>
6827 # and whether or not function naming is typical and if
6828 # DEVICE_ATTR permissions uses are unusual too
6829 if ($perl_version_ok &&
6831 $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*\)/) {
6836 my $octal_perms = perms_to_octal($perms);
6837 if ($show =~ /^${var}_show$/ &&
6838 $store =~ /^${var}_store$/ &&
6839 $octal_perms eq "0644") {
6840 if (WARN("DEVICE_ATTR_RW",
6841 "Use DEVICE_ATTR_RW\n" . $herecurr) &&
6843 $fixed[$fixlinenr] =~ s/\bDEVICE_ATTR\s*\(\s*$var\s*,\s*\Q$perms\E\s*,\s*$show\s*,\s*$store\s*\)/DEVICE_ATTR_RW(${var})/;
6845 } elsif ($show =~ /^${var}_show$/ &&
6846 $store =~ /^NULL$/ &&
6847 $octal_perms eq "0444") {
6848 if (WARN("DEVICE_ATTR_RO",
6849 "Use DEVICE_ATTR_RO\n" . $herecurr) &&
6851 $fixed[$fixlinenr] =~ s/\bDEVICE_ATTR\s*\(\s*$var\s*,\s*\Q$perms\E\s*,\s*$show\s*,\s*NULL\s*\)/DEVICE_ATTR_RO(${var})/;
6853 } elsif ($show =~ /^NULL$/ &&
6854 $store =~ /^${var}_store$/ &&
6855 $octal_perms eq "0200") {
6856 if (WARN("DEVICE_ATTR_WO",
6857 "Use DEVICE_ATTR_WO\n" . $herecurr) &&
6859 $fixed[$fixlinenr] =~ s/\bDEVICE_ATTR\s*\(\s*$var\s*,\s*\Q$perms\E\s*,\s*NULL\s*,\s*$store\s*\)/DEVICE_ATTR_WO(${var})/;
6861 } elsif ($octal_perms eq "0644" ||
6862 $octal_perms eq "0444" ||
6863 $octal_perms eq "0200") {
6864 my $newshow = "$show";
6865 $newshow = "${var}_show" if ($show ne "NULL" && $show ne "${var}_show");
6866 my $newstore = $store;
6867 $newstore = "${var}_store" if ($store ne "NULL" && $store ne "${var}_store");
6869 if ($show ne $newshow) {
6870 $rename .= " '$show' to '$newshow'";
6872 if ($store ne $newstore) {
6873 $rename .= " '$store' to '$newstore'";
6875 WARN("DEVICE_ATTR_FUNCTIONS",
6876 "Consider renaming function(s)$rename\n" . $herecurr);
6878 WARN("DEVICE_ATTR_PERMS",
6879 "DEVICE_ATTR unusual permissions '$perms' used\n" . $herecurr);
6883 # Mode permission misuses where it seems decimal should be octal
6884 # This uses a shortcut match to avoid unnecessary uses of a slow foreach loop
6885 # o Ignore module_param*(...) uses with a decimal 0 permission as that has a
6886 # specific definition of not visible in sysfs.
6887 # o Ignore proc_create*(...) uses with a decimal 0 permission as that means
6888 # use the default permissions
6889 if ($perl_version_ok &&
6891 $line =~ /$mode_perms_search/) {
6892 foreach my $entry (@mode_permission_funcs) {
6893 my $func = $entry->[0];
6894 my $arg_pos = $entry->[1];
6896 my $lc = $stat =~ tr@\n@@;
6897 $lc = $lc + $linenr;
6898 my $stat_real = get_stat_real($linenr, $lc);
6903 $skip_args = "(?:\\s*$FuncArg\\s*,\\s*){$arg_pos,$arg_pos}";
6905 my $test = "\\b$func\\s*\\(${skip_args}($FuncArg(?:\\|\\s*$FuncArg)*)\\s*[,\\)]";
6906 if ($stat =~ /$test/) {
6908 $val = $6 if ($skip_args ne "");
6909 if (!($func =~ /^(?:module_param|proc_create)/ && $val eq "0") &&
6910 (($val =~ /^$Int$/ && $val !~ /^$Octal$/) ||
6911 ($val =~ /^$Octal$/ && length($val) ne 4))) {
6912 ERROR("NON_OCTAL_PERMISSIONS",
6913 "Use 4 digit octal (0777) not decimal permissions\n" . "$here\n" . $stat_real);
6915 if ($val =~ /^$Octal$/ && (oct($val) & 02)) {
6916 ERROR("EXPORTED_WORLD_WRITABLE",
6917 "Exporting writable files is usually an error. Consider more restrictive permissions.\n" . "$here\n" . $stat_real);
6923 # check for uses of S_<PERMS> that could be octal for readability
6924 while ($line =~ m{\b($multi_mode_perms_string_search)\b}g) {
6926 my $octal = perms_to_octal($oval);
6927 if (WARN("SYMBOLIC_PERMS",
6928 "Symbolic permissions '$oval' are not preferred. Consider using octal permissions '$octal'.\n" . $herecurr) &&
6930 $fixed[$fixlinenr] =~ s/\Q$oval\E/$octal/;
6934 # validate content of MODULE_LICENSE against list from include/linux/module.h
6935 if ($line =~ /\bMODULE_LICENSE\s*\(\s*($String)\s*\)/) {
6936 my $extracted_string = get_quoted_string($line, $rawline);
6937 my $valid_licenses = qr{
6940 GPL\ and\ additional\ rights|
6946 if ($extracted_string !~ /^"(?:$valid_licenses)"$/x) {
6947 WARN("MODULE_LICENSE",
6948 "unknown module license " . $extracted_string . "\n" . $herecurr);
6952 # check for sysctl duplicate constants
6953 if ($line =~ /\.extra[12]\s*=\s*&(zero|one|int_max)\b/) {
6954 WARN("DUPLICATED_SYSCTL_CONST",
6955 "duplicated sysctl range checking value '$1', consider using the shared one in include/linux/sysctl.h\n" . $herecurr);
6959 # If we have no input at all, then there is nothing to report on
6960 # so just keep quiet.
6961 if ($#rawlines == -1) {
6965 # In mailback mode only produce a report in the negative, for
6966 # things that appear to be patches.
6967 if ($mailback && ($clean == 1 || !$is_patch)) {
6971 # This is not a patch, and we are are in 'no-patch' mode so
6973 if (!$chk_patch && !$is_patch) {
6977 if (!$is_patch && $filename !~ /cover-letter\.patch$/) {
6978 ERROR("NOT_UNIFIED_DIFF",
6979 "Does not appear to be a unified-diff format patch\n");
6981 if ($is_patch && $has_commit_log && $chk_signoff) {
6982 if ($signoff == 0) {
6983 ERROR("MISSING_SIGN_OFF",
6984 "Missing Signed-off-by: line(s)\n");
6985 } elsif ($authorsignoff != 1) {
6986 # authorsignoff values:
6987 # 0 -> missing sign off
6988 # 1 -> sign off identical
6989 # 2 -> names and addresses match, comments mismatch
6990 # 3 -> addresses match, names different
6991 # 4 -> names match, addresses different
6992 # 5 -> names match, addresses excluding subaddress details (refer RFC 5233) match
6994 my $sob_msg = "'From: $author' != 'Signed-off-by: $author_sob'";
6996 if ($authorsignoff == 0) {
6997 ERROR("NO_AUTHOR_SIGN_OFF",
6998 "Missing Signed-off-by: line by nominal patch author '$author'\n");
6999 } elsif ($authorsignoff == 2) {
7000 CHK("FROM_SIGN_OFF_MISMATCH",
7001 "From:/Signed-off-by: email comments mismatch: $sob_msg\n");
7002 } elsif ($authorsignoff == 3) {
7003 WARN("FROM_SIGN_OFF_MISMATCH",
7004 "From:/Signed-off-by: email name mismatch: $sob_msg\n");
7005 } elsif ($authorsignoff == 4) {
7006 WARN("FROM_SIGN_OFF_MISMATCH",
7007 "From:/Signed-off-by: email address mismatch: $sob_msg\n");
7008 } elsif ($authorsignoff == 5) {
7009 WARN("FROM_SIGN_OFF_MISMATCH",
7010 "From:/Signed-off-by: email subaddress mismatch: $sob_msg\n");
7015 print report_dump();
7016 if ($summary && !($clean == 1 && $quiet == 1)) {
7017 print "$filename " if ($summary_file);
7018 print "total: $cnt_error errors, $cnt_warn warnings, " .
7019 (($check)? "$cnt_chk checks, " : "") .
7020 "$cnt_lines lines checked\n";
7024 # If there were any defects found and not already fixing them
7025 if (!$clean and !$fix) {
7028 NOTE: For some of the reported defects, checkpatch may be able to
7029 mechanically convert to the typical style using --fix or --fix-inplace.
7032 # If there were whitespace errors which cleanpatch can fix
7033 # then suggest that.
7034 if ($rpt_cleaners) {
7038 NOTE: Whitespace errors detected.
7039 You may wish to use scripts/cleanpatch or scripts/cleanfile
7044 if ($clean == 0 && $fix &&
7045 ("@rawlines" ne "@fixed" ||
7046 $#fixed_inserted >= 0 || $#fixed_deleted >= 0)) {
7047 my $newfile = $filename;
7048 $newfile .= ".EXPERIMENTAL-checkpatch-fixes" if (!$fix_inplace);
7052 @fixed = fix_inserted_deleted_lines(\@fixed, \@fixed_inserted, \@fixed_deleted);
7054 open($f, '>', $newfile)
7055 or die "$P: Can't open $newfile for write\n";
7056 foreach my $fixed_line (@fixed) {
7059 if ($linecount > 3) {
7060 $fixed_line =~ s/^\+//;
7061 print $f $fixed_line . "\n";
7064 print $f $fixed_line . "\n";
7072 Wrote EXPERIMENTAL --fix correction(s) to '$newfile'
7074 Do _NOT_ trust the results written to this file.
7075 Do _NOT_ submit these changes without inspecting them for correctness.
7077 This EXPERIMENTAL file is simply a convenience to help rewrite patches.
7078 No warranties, expressed or implied...
7086 print "$vname has no obvious style problems and is ready for submission.\n";
7088 print "$vname has style problems, please review.\n";