Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1 | #!/usr/bin/perl -w |
Dave Jones | dbf004d | 2010-01-12 16:59:52 -0500 | [diff] [blame] | 2 | # (c) 2001, Dave Jones. (the file handling bit) |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 3 | # (c) 2005, Joel Schopp <jschopp@austin.ibm.com> (the ugly bit) |
Andy Whitcroft | 2a5a2c2 | 2009-01-06 14:41:23 -0800 | [diff] [blame] | 4 | # (c) 2007,2008, Andy Whitcroft <apw@uk.ibm.com> (new conditions, test suite) |
Andy Whitcroft | 015830b | 2010-10-26 14:23:17 -0700 | [diff] [blame] | 5 | # (c) 2008-2010 Andy Whitcroft <apw@canonical.com> |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 6 | # Licensed under the terms of the GNU GPL License version 2 |
| 7 | |
| 8 | use strict; |
| 9 | |
| 10 | my $P = $0; |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 11 | $P =~ s@.*/@@g; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 12 | |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 13 | my $V = '0.32'; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 14 | |
| 15 | use Getopt::Long qw(:config no_auto_abbrev); |
| 16 | |
| 17 | my $quiet = 0; |
| 18 | my $tree = 1; |
| 19 | my $chk_signoff = 1; |
| 20 | my $chk_patch = 1; |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 21 | my $tst_only; |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 22 | my $emacs = 0; |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 23 | my $terse = 0; |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 24 | my $file = 0; |
| 25 | my $check = 0; |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 26 | my $summary = 1; |
| 27 | my $mailback = 0; |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 28 | my $summary_file = 0; |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 29 | my $show_types = 0; |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 30 | my $root; |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 31 | my %debug; |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 32 | my %ignore_type = (); |
| 33 | my @ignore = (); |
Hannes Eder | 77f5b10 | 2009-09-21 17:04:37 -0700 | [diff] [blame] | 34 | my $help = 0; |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 35 | my $configuration_file = ".checkpatch.conf"; |
Hannes Eder | 77f5b10 | 2009-09-21 17:04:37 -0700 | [diff] [blame] | 36 | |
| 37 | sub help { |
| 38 | my ($exitcode) = @_; |
| 39 | |
| 40 | print << "EOM"; |
| 41 | Usage: $P [OPTION]... [FILE]... |
| 42 | Version: $V |
| 43 | |
| 44 | Options: |
| 45 | -q, --quiet quiet |
| 46 | --no-tree run without a kernel tree |
| 47 | --no-signoff do not check for 'Signed-off-by' line |
| 48 | --patch treat FILE as patchfile (default) |
| 49 | --emacs emacs compile window format |
| 50 | --terse one line per report |
| 51 | -f, --file treat FILE as regular source file |
| 52 | --subjective, --strict enable more subjective tests |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 53 | --ignore TYPE(,TYPE2...) ignore various comma separated message types |
| 54 | --show-types show the message "types" in the output |
Hannes Eder | 77f5b10 | 2009-09-21 17:04:37 -0700 | [diff] [blame] | 55 | --root=PATH PATH to the kernel tree root |
| 56 | --no-summary suppress the per-file summary |
| 57 | --mailback only produce a report in case of warnings/errors |
| 58 | --summary-file include the filename in summary |
| 59 | --debug KEY=[0|1] turn on/off debugging of KEY, where KEY is one of |
| 60 | 'values', 'possible', 'type', and 'attr' (default |
| 61 | is all off) |
| 62 | --test-only=WORD report only warnings/errors containing WORD |
| 63 | literally |
| 64 | -h, --help, --version display this help and exit |
| 65 | |
| 66 | When FILE is - read standard input. |
| 67 | EOM |
| 68 | |
| 69 | exit($exitcode); |
| 70 | } |
| 71 | |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 72 | my $conf = which_conf($configuration_file); |
| 73 | if (-f $conf) { |
| 74 | my @conf_args; |
| 75 | open(my $conffile, '<', "$conf") |
| 76 | or warn "$P: Can't find a readable $configuration_file file $!\n"; |
| 77 | |
| 78 | while (<$conffile>) { |
| 79 | my $line = $_; |
| 80 | |
| 81 | $line =~ s/\s*\n?$//g; |
| 82 | $line =~ s/^\s*//g; |
| 83 | $line =~ s/\s+/ /g; |
| 84 | |
| 85 | next if ($line =~ m/^\s*#/); |
| 86 | next if ($line =~ m/^\s*$/); |
| 87 | |
| 88 | my @words = split(" ", $line); |
| 89 | foreach my $word (@words) { |
| 90 | last if ($word =~ m/^#/); |
| 91 | push (@conf_args, $word); |
| 92 | } |
| 93 | } |
| 94 | close($conffile); |
| 95 | unshift(@ARGV, @conf_args) if @conf_args; |
| 96 | } |
| 97 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 98 | GetOptions( |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 99 | 'q|quiet+' => \$quiet, |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 100 | 'tree!' => \$tree, |
| 101 | 'signoff!' => \$chk_signoff, |
| 102 | 'patch!' => \$chk_patch, |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 103 | 'emacs!' => \$emacs, |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 104 | 'terse!' => \$terse, |
Hannes Eder | 77f5b10 | 2009-09-21 17:04:37 -0700 | [diff] [blame] | 105 | 'f|file!' => \$file, |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 106 | 'subjective!' => \$check, |
| 107 | 'strict!' => \$check, |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 108 | 'ignore=s' => \@ignore, |
| 109 | 'show-types!' => \$show_types, |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 110 | 'root=s' => \$root, |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 111 | 'summary!' => \$summary, |
| 112 | 'mailback!' => \$mailback, |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 113 | 'summary-file!' => \$summary_file, |
| 114 | |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 115 | 'debug=s' => \%debug, |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 116 | 'test-only=s' => \$tst_only, |
Hannes Eder | 77f5b10 | 2009-09-21 17:04:37 -0700 | [diff] [blame] | 117 | 'h|help' => \$help, |
| 118 | 'version' => \$help |
| 119 | ) or help(1); |
| 120 | |
| 121 | help(0) if ($help); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 122 | |
| 123 | my $exit = 0; |
| 124 | |
| 125 | if ($#ARGV < 0) { |
Hannes Eder | 77f5b10 | 2009-09-21 17:04:37 -0700 | [diff] [blame] | 126 | print "$P: no input files\n"; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 127 | exit(1); |
| 128 | } |
| 129 | |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 130 | @ignore = split(/,/, join(',',@ignore)); |
| 131 | foreach my $word (@ignore) { |
| 132 | $word =~ s/\s*\n?$//g; |
| 133 | $word =~ s/^\s*//g; |
| 134 | $word =~ s/\s+/ /g; |
| 135 | $word =~ tr/[a-z]/[A-Z]/; |
| 136 | |
| 137 | next if ($word =~ m/^\s*#/); |
| 138 | next if ($word =~ m/^\s*$/); |
| 139 | |
| 140 | $ignore_type{$word}++; |
| 141 | } |
| 142 | |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 143 | my $dbg_values = 0; |
| 144 | my $dbg_possible = 0; |
Andy Whitcroft | 7429c69 | 2008-07-23 21:29:06 -0700 | [diff] [blame] | 145 | my $dbg_type = 0; |
Andy Whitcroft | a1ef277 | 2008-10-15 22:02:17 -0700 | [diff] [blame] | 146 | my $dbg_attr = 0; |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 147 | for my $key (keys %debug) { |
Andy Whitcroft | 21caa13 | 2009-01-06 14:41:30 -0800 | [diff] [blame] | 148 | ## no critic |
| 149 | eval "\${dbg_$key} = '$debug{$key}';"; |
| 150 | die "$@" if ($@); |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 151 | } |
| 152 | |
Andy Whitcroft | d2c0a23 | 2010-10-26 14:23:12 -0700 | [diff] [blame] | 153 | my $rpt_cleaners = 0; |
| 154 | |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 155 | if ($terse) { |
| 156 | $emacs = 1; |
| 157 | $quiet++; |
| 158 | } |
| 159 | |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 160 | if ($tree) { |
| 161 | if (defined $root) { |
| 162 | if (!top_of_kernel_tree($root)) { |
| 163 | die "$P: $root: --root does not point at a valid tree\n"; |
| 164 | } |
| 165 | } else { |
| 166 | if (top_of_kernel_tree('.')) { |
| 167 | $root = '.'; |
| 168 | } elsif ($0 =~ m@(.*)/scripts/[^/]*$@ && |
| 169 | top_of_kernel_tree($1)) { |
| 170 | $root = $1; |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | if (!defined $root) { |
| 175 | print "Must be run from the top-level dir. of a kernel tree\n"; |
| 176 | exit(2); |
| 177 | } |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 178 | } |
| 179 | |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 180 | my $emitted_corrupt = 0; |
| 181 | |
Andy Whitcroft | 2ceb532 | 2009-10-26 16:50:14 -0700 | [diff] [blame] | 182 | our $Ident = qr{ |
| 183 | [A-Za-z_][A-Za-z\d_]* |
| 184 | (?:\s*\#\#\s*[A-Za-z_][A-Za-z\d_]*)* |
| 185 | }x; |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 186 | our $Storage = qr{extern|static|asmlinkage}; |
| 187 | our $Sparse = qr{ |
| 188 | __user| |
| 189 | __kernel| |
| 190 | __force| |
| 191 | __iomem| |
| 192 | __must_check| |
| 193 | __init_refok| |
Andy Whitcroft | 417495e | 2009-02-27 14:03:08 -0800 | [diff] [blame] | 194 | __kprobes| |
Sven Eckelmann | 165e72a | 2011-07-25 17:13:23 -0700 | [diff] [blame] | 195 | __ref| |
| 196 | __rcu |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 197 | }x; |
Wolfram Sang | 5213129 | 2010-03-05 13:43:51 -0800 | [diff] [blame] | 198 | |
| 199 | # Notes to $Attribute: |
| 200 | # We need \b after 'init' otherwise 'initconst' will cause a false positive in a check |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 201 | our $Attribute = qr{ |
| 202 | const| |
Joe Perches | 03f1df7 | 2010-10-26 14:23:16 -0700 | [diff] [blame] | 203 | __percpu| |
| 204 | __nocast| |
| 205 | __safe| |
| 206 | __bitwise__| |
| 207 | __packed__| |
| 208 | __packed2__| |
| 209 | __naked| |
| 210 | __maybe_unused| |
| 211 | __always_unused| |
| 212 | __noreturn| |
| 213 | __used| |
| 214 | __cold| |
| 215 | __noclone| |
| 216 | __deprecated| |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 217 | __read_mostly| |
| 218 | __kprobes| |
Wolfram Sang | 5213129 | 2010-03-05 13:43:51 -0800 | [diff] [blame] | 219 | __(?:mem|cpu|dev|)(?:initdata|initconst|init\b)| |
Andy Whitcroft | 24e1d81 | 2008-10-15 22:02:18 -0700 | [diff] [blame] | 220 | ____cacheline_aligned| |
| 221 | ____cacheline_aligned_in_smp| |
Andy Whitcroft | 5fe3af1 | 2009-01-06 14:41:18 -0800 | [diff] [blame] | 222 | ____cacheline_internodealigned_in_smp| |
| 223 | __weak |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 224 | }x; |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 225 | our $Modifier; |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 226 | our $Inline = qr{inline|__always_inline|noinline}; |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 227 | our $Member = qr{->$Ident|\.$Ident|\[[^]]*\]}; |
| 228 | our $Lval = qr{$Ident(?:$Member)*}; |
| 229 | |
Joe Perches | d7c76ba | 2012-01-10 15:09:58 -0800 | [diff] [blame] | 230 | our $Constant = qr{(?i:(?:[0-9]+|0x[0-9a-f]+)[ul]*)}; |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 231 | our $Assignment = qr{(?:\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=)}; |
Andy Whitcroft | 86f9d05 | 2009-01-06 14:41:24 -0800 | [diff] [blame] | 232 | our $Compare = qr{<=|>=|==|!=|<|>}; |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 233 | our $Operators = qr{ |
| 234 | <=|>=|==|!=| |
| 235 | =>|->|<<|>>|<|>|!|~| |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 236 | &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|% |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 237 | }x; |
| 238 | |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 239 | our $NonptrType; |
| 240 | our $Type; |
| 241 | our $Declare; |
| 242 | |
Joe Perches | 15662b3 | 2011-10-31 17:13:12 -0700 | [diff] [blame] | 243 | our $NON_ASCII_UTF8 = qr{ |
| 244 | [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 245 | | \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs |
| 246 | | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte |
| 247 | | \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates |
| 248 | | \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3 |
| 249 | | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15 |
| 250 | | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16 |
| 251 | }x; |
| 252 | |
Joe Perches | 15662b3 | 2011-10-31 17:13:12 -0700 | [diff] [blame] | 253 | our $UTF8 = qr{ |
| 254 | [\x09\x0A\x0D\x20-\x7E] # ASCII |
| 255 | | $NON_ASCII_UTF8 |
| 256 | }x; |
| 257 | |
Andy Whitcroft | 8ed22ca | 2008-10-15 22:02:32 -0700 | [diff] [blame] | 258 | our $typeTypedefs = qr{(?x: |
Andy Whitcroft | fb9e909 | 2009-09-21 17:04:38 -0700 | [diff] [blame] | 259 | (?:__)?(?:u|s|be|le)(?:8|16|32|64)| |
Andy Whitcroft | 8ed22ca | 2008-10-15 22:02:32 -0700 | [diff] [blame] | 260 | atomic_t |
| 261 | )}; |
| 262 | |
Joe Perches | 691e669 | 2010-03-05 13:43:51 -0800 | [diff] [blame] | 263 | our $logFunctions = qr{(?x: |
Joe Perches | 6e60c02 | 2011-07-25 17:13:27 -0700 | [diff] [blame] | 264 | printk(?:_ratelimited|_once|)| |
| 265 | [a-z0-9]+_(?:printk|emerg|alert|crit|err|warning|warn|notice|info|debug|dbg|vdbg|devel|cont|WARN)(?:_ratelimited|_once|)| |
| 266 | WARN(?:_RATELIMIT|_ONCE|)| |
Joe Perches | b053172 | 2011-05-24 17:13:40 -0700 | [diff] [blame] | 267 | panic| |
| 268 | MODULE_[A-Z_]+ |
Joe Perches | 691e669 | 2010-03-05 13:43:51 -0800 | [diff] [blame] | 269 | )}; |
| 270 | |
Joe Perches | 2011247 | 2011-07-25 17:13:23 -0700 | [diff] [blame] | 271 | our $signature_tags = qr{(?xi: |
| 272 | Signed-off-by:| |
| 273 | Acked-by:| |
| 274 | Tested-by:| |
| 275 | Reviewed-by:| |
| 276 | Reported-by:| |
| 277 | To:| |
| 278 | Cc: |
| 279 | )}; |
| 280 | |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 281 | our @typeList = ( |
| 282 | qr{void}, |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 283 | qr{(?:unsigned\s+)?char}, |
| 284 | qr{(?:unsigned\s+)?short}, |
| 285 | qr{(?:unsigned\s+)?int}, |
| 286 | qr{(?:unsigned\s+)?long}, |
| 287 | qr{(?:unsigned\s+)?long\s+int}, |
| 288 | qr{(?:unsigned\s+)?long\s+long}, |
| 289 | qr{(?:unsigned\s+)?long\s+long\s+int}, |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 290 | qr{unsigned}, |
| 291 | qr{float}, |
| 292 | qr{double}, |
| 293 | qr{bool}, |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 294 | qr{struct\s+$Ident}, |
| 295 | qr{union\s+$Ident}, |
| 296 | qr{enum\s+$Ident}, |
| 297 | qr{${Ident}_t}, |
| 298 | qr{${Ident}_handler}, |
| 299 | qr{${Ident}_handler_fn}, |
| 300 | ); |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 301 | our @modifierList = ( |
| 302 | qr{fastcall}, |
| 303 | ); |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 304 | |
Wolfram Sang | 7840a94 | 2010-08-09 17:20:57 -0700 | [diff] [blame] | 305 | our $allowed_asm_includes = qr{(?x: |
| 306 | irq| |
| 307 | memory |
| 308 | )}; |
| 309 | # memory.h: ARM has a custom one |
| 310 | |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 311 | sub build_types { |
Andy Whitcroft | d2172eb | 2008-07-23 21:29:07 -0700 | [diff] [blame] | 312 | my $mods = "(?x: \n" . join("|\n ", @modifierList) . "\n)"; |
| 313 | my $all = "(?x: \n" . join("|\n ", @typeList) . "\n)"; |
Andy Whitcroft | c8cb2ca | 2008-07-23 21:28:57 -0700 | [diff] [blame] | 314 | $Modifier = qr{(?:$Attribute|$Sparse|$mods)}; |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 315 | $NonptrType = qr{ |
Andy Whitcroft | d2172eb | 2008-07-23 21:29:07 -0700 | [diff] [blame] | 316 | (?:$Modifier\s+|const\s+)* |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 317 | (?: |
Andy Whitcroft | 6b48db2 | 2012-01-10 15:10:13 -0800 | [diff] [blame] | 318 | (?:typeof|__typeof__)\s*\([^\)]*\)| |
Andy Whitcroft | 8ed22ca | 2008-10-15 22:02:32 -0700 | [diff] [blame] | 319 | (?:$typeTypedefs\b)| |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 320 | (?:${all}\b) |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 321 | ) |
Andy Whitcroft | c8cb2ca | 2008-07-23 21:28:57 -0700 | [diff] [blame] | 322 | (?:\s+$Modifier|\s+const)* |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 323 | }x; |
| 324 | $Type = qr{ |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 325 | $NonptrType |
Andy Whitcroft | 6586386 | 2009-01-06 14:41:21 -0800 | [diff] [blame] | 326 | (?:[\s\*]+\s*const|[\s\*]+|(?:\s*\[\s*\])+)? |
Andy Whitcroft | c8cb2ca | 2008-07-23 21:28:57 -0700 | [diff] [blame] | 327 | (?:\s+$Inline|\s+$Modifier)* |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 328 | }x; |
| 329 | $Declare = qr{(?:$Storage\s+)?$Type}; |
| 330 | } |
| 331 | build_types(); |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 332 | |
Joe Perches | 7d2367a | 2011-07-25 17:13:22 -0700 | [diff] [blame] | 333 | our $match_balanced_parentheses = qr/(\((?:[^\(\)]+|(-1))*\))/; |
| 334 | |
| 335 | our $Typecast = qr{\s*(\(\s*$NonptrType\s*\)){0,1}\s*}; |
| 336 | our $LvalOrFunc = qr{($Lval)\s*($match_balanced_parentheses{0,1})\s*}; |
Joe Perches | d7c76ba | 2012-01-10 15:09:58 -0800 | [diff] [blame] | 337 | our $FuncArg = qr{$Typecast{0,1}($LvalOrFunc|$Constant)}; |
Joe Perches | 7d2367a | 2011-07-25 17:13:22 -0700 | [diff] [blame] | 338 | |
| 339 | sub deparenthesize { |
| 340 | my ($string) = @_; |
| 341 | return "" if (!defined($string)); |
| 342 | $string =~ s@^\s*\(\s*@@g; |
| 343 | $string =~ s@\s*\)\s*$@@g; |
| 344 | $string =~ s@\s+@ @g; |
| 345 | return $string; |
| 346 | } |
| 347 | |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 348 | $chk_signoff = 0 if ($file); |
| 349 | |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 350 | my @dep_includes = (); |
| 351 | my @dep_functions = (); |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 352 | my $removal = "Documentation/feature-removal-schedule.txt"; |
| 353 | if ($tree && -f "$root/$removal") { |
Andy Whitcroft | 21caa13 | 2009-01-06 14:41:30 -0800 | [diff] [blame] | 354 | open(my $REMOVE, '<', "$root/$removal") || |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 355 | die "$P: $removal: open failed - $!\n"; |
Andy Whitcroft | 21caa13 | 2009-01-06 14:41:30 -0800 | [diff] [blame] | 356 | while (<$REMOVE>) { |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 357 | if (/^Check:\s+(.*\S)/) { |
| 358 | for my $entry (split(/[, ]+/, $1)) { |
| 359 | if ($entry =~ m@include/(.*)@) { |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 360 | push(@dep_includes, $1); |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 361 | |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 362 | } elsif ($entry !~ m@/@) { |
| 363 | push(@dep_functions, $entry); |
| 364 | } |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 365 | } |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 366 | } |
| 367 | } |
Andy Whitcroft | 21caa13 | 2009-01-06 14:41:30 -0800 | [diff] [blame] | 368 | close($REMOVE); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 369 | } |
| 370 | |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 371 | my @rawlines = (); |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 372 | my @lines = (); |
| 373 | my $vname; |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 374 | for my $filename (@ARGV) { |
Andy Whitcroft | 21caa13 | 2009-01-06 14:41:30 -0800 | [diff] [blame] | 375 | my $FILE; |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 376 | if ($file) { |
Andy Whitcroft | 21caa13 | 2009-01-06 14:41:30 -0800 | [diff] [blame] | 377 | open($FILE, '-|', "diff -u /dev/null $filename") || |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 378 | die "$P: $filename: diff failed - $!\n"; |
Andy Whitcroft | 21caa13 | 2009-01-06 14:41:30 -0800 | [diff] [blame] | 379 | } elsif ($filename eq '-') { |
| 380 | open($FILE, '<&STDIN'); |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 381 | } else { |
Andy Whitcroft | 21caa13 | 2009-01-06 14:41:30 -0800 | [diff] [blame] | 382 | open($FILE, '<', "$filename") || |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 383 | die "$P: $filename: open failed - $!\n"; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 384 | } |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 385 | if ($filename eq '-') { |
| 386 | $vname = 'Your patch'; |
| 387 | } else { |
| 388 | $vname = $filename; |
| 389 | } |
Andy Whitcroft | 21caa13 | 2009-01-06 14:41:30 -0800 | [diff] [blame] | 390 | while (<$FILE>) { |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 391 | chomp; |
| 392 | push(@rawlines, $_); |
| 393 | } |
Andy Whitcroft | 21caa13 | 2009-01-06 14:41:30 -0800 | [diff] [blame] | 394 | close($FILE); |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 395 | if (!process($filename)) { |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 396 | $exit = 1; |
| 397 | } |
| 398 | @rawlines = (); |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 399 | @lines = (); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 400 | } |
| 401 | |
| 402 | exit($exit); |
| 403 | |
| 404 | sub top_of_kernel_tree { |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 405 | my ($root) = @_; |
| 406 | |
| 407 | my @tree_check = ( |
| 408 | "COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile", |
| 409 | "README", "Documentation", "arch", "include", "drivers", |
| 410 | "fs", "init", "ipc", "kernel", "lib", "scripts", |
| 411 | ); |
| 412 | |
| 413 | foreach my $check (@tree_check) { |
| 414 | if (! -e $root . '/' . $check) { |
| 415 | return 0; |
| 416 | } |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 417 | } |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 418 | return 1; |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 419 | } |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 420 | |
Joe Perches | 2011247 | 2011-07-25 17:13:23 -0700 | [diff] [blame] | 421 | sub parse_email { |
| 422 | my ($formatted_email) = @_; |
| 423 | |
| 424 | my $name = ""; |
| 425 | my $address = ""; |
| 426 | my $comment = ""; |
| 427 | |
| 428 | if ($formatted_email =~ /^(.*)<(\S+\@\S+)>(.*)$/) { |
| 429 | $name = $1; |
| 430 | $address = $2; |
| 431 | $comment = $3 if defined $3; |
| 432 | } elsif ($formatted_email =~ /^\s*<(\S+\@\S+)>(.*)$/) { |
| 433 | $address = $1; |
| 434 | $comment = $2 if defined $2; |
| 435 | } elsif ($formatted_email =~ /(\S+\@\S+)(.*)$/) { |
| 436 | $address = $1; |
| 437 | $comment = $2 if defined $2; |
| 438 | $formatted_email =~ s/$address.*$//; |
| 439 | $name = $formatted_email; |
| 440 | $name =~ s/^\s+|\s+$//g; |
| 441 | $name =~ s/^\"|\"$//g; |
| 442 | # If there's a name left after stripping spaces and |
| 443 | # leading quotes, and the address doesn't have both |
| 444 | # leading and trailing angle brackets, the address |
| 445 | # is invalid. ie: |
| 446 | # "joe smith joe@smith.com" bad |
| 447 | # "joe smith <joe@smith.com" bad |
| 448 | if ($name ne "" && $address !~ /^<[^>]+>$/) { |
| 449 | $name = ""; |
| 450 | $address = ""; |
| 451 | $comment = ""; |
| 452 | } |
| 453 | } |
| 454 | |
| 455 | $name =~ s/^\s+|\s+$//g; |
| 456 | $name =~ s/^\"|\"$//g; |
| 457 | $address =~ s/^\s+|\s+$//g; |
| 458 | $address =~ s/^\<|\>$//g; |
| 459 | |
| 460 | if ($name =~ /[^\w \-]/i) { ##has "must quote" chars |
| 461 | $name =~ s/(?<!\\)"/\\"/g; ##escape quotes |
| 462 | $name = "\"$name\""; |
| 463 | } |
| 464 | |
| 465 | return ($name, $address, $comment); |
| 466 | } |
| 467 | |
| 468 | sub format_email { |
| 469 | my ($name, $address) = @_; |
| 470 | |
| 471 | my $formatted_email; |
| 472 | |
| 473 | $name =~ s/^\s+|\s+$//g; |
| 474 | $name =~ s/^\"|\"$//g; |
| 475 | $address =~ s/^\s+|\s+$//g; |
| 476 | |
| 477 | if ($name =~ /[^\w \-]/i) { ##has "must quote" chars |
| 478 | $name =~ s/(?<!\\)"/\\"/g; ##escape quotes |
| 479 | $name = "\"$name\""; |
| 480 | } |
| 481 | |
| 482 | if ("$name" eq "") { |
| 483 | $formatted_email = "$address"; |
| 484 | } else { |
| 485 | $formatted_email = "$name <$address>"; |
| 486 | } |
| 487 | |
| 488 | return $formatted_email; |
| 489 | } |
| 490 | |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 491 | sub which_conf { |
| 492 | my ($conf) = @_; |
| 493 | |
| 494 | foreach my $path (split(/:/, ".:$ENV{HOME}:.scripts")) { |
| 495 | if (-e "$path/$conf") { |
| 496 | return "$path/$conf"; |
| 497 | } |
| 498 | } |
| 499 | |
| 500 | return ""; |
| 501 | } |
| 502 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 503 | sub expand_tabs { |
| 504 | my ($str) = @_; |
| 505 | |
| 506 | my $res = ''; |
| 507 | my $n = 0; |
| 508 | for my $c (split(//, $str)) { |
| 509 | if ($c eq "\t") { |
| 510 | $res .= ' '; |
| 511 | $n++; |
| 512 | for (; ($n % 8) != 0; $n++) { |
| 513 | $res .= ' '; |
| 514 | } |
| 515 | next; |
| 516 | } |
| 517 | $res .= $c; |
| 518 | $n++; |
| 519 | } |
| 520 | |
| 521 | return $res; |
| 522 | } |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 523 | sub copy_spacing { |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 524 | (my $res = shift) =~ tr/\t/ /c; |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 525 | return $res; |
| 526 | } |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 527 | |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 528 | sub line_stats { |
| 529 | my ($line) = @_; |
| 530 | |
| 531 | # Drop the diff line leader and expand tabs |
| 532 | $line =~ s/^.//; |
| 533 | $line = expand_tabs($line); |
| 534 | |
| 535 | # Pick the indent from the front of the line. |
| 536 | my ($white) = ($line =~ /^(\s*)/); |
| 537 | |
| 538 | return (length($line), length($white)); |
| 539 | } |
| 540 | |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 541 | my $sanitise_quote = ''; |
| 542 | |
| 543 | sub sanitise_line_reset { |
| 544 | my ($in_comment) = @_; |
| 545 | |
| 546 | if ($in_comment) { |
| 547 | $sanitise_quote = '*/'; |
| 548 | } else { |
| 549 | $sanitise_quote = ''; |
| 550 | } |
| 551 | } |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 552 | sub sanitise_line { |
| 553 | my ($line) = @_; |
| 554 | |
| 555 | my $res = ''; |
| 556 | my $l = ''; |
| 557 | |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 558 | my $qlen = 0; |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 559 | my $off = 0; |
| 560 | my $c; |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 561 | |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 562 | # Always copy over the diff marker. |
| 563 | $res = substr($line, 0, 1); |
| 564 | |
| 565 | for ($off = 1; $off < length($line); $off++) { |
| 566 | $c = substr($line, $off, 1); |
| 567 | |
| 568 | # Comments we are wacking completly including the begin |
| 569 | # and end, all to $;. |
| 570 | if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') { |
| 571 | $sanitise_quote = '*/'; |
| 572 | |
| 573 | substr($res, $off, 2, "$;$;"); |
| 574 | $off++; |
| 575 | next; |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 576 | } |
Andy Whitcroft | 81bc0e0 | 2008-10-15 22:02:26 -0700 | [diff] [blame] | 577 | if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') { |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 578 | $sanitise_quote = ''; |
| 579 | substr($res, $off, 2, "$;$;"); |
| 580 | $off++; |
| 581 | next; |
| 582 | } |
Daniel Walker | 113f04a | 2009-09-21 17:04:35 -0700 | [diff] [blame] | 583 | if ($sanitise_quote eq '' && substr($line, $off, 2) eq '//') { |
| 584 | $sanitise_quote = '//'; |
| 585 | |
| 586 | substr($res, $off, 2, $sanitise_quote); |
| 587 | $off++; |
| 588 | next; |
| 589 | } |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 590 | |
| 591 | # A \ in a string means ignore the next character. |
| 592 | if (($sanitise_quote eq "'" || $sanitise_quote eq '"') && |
| 593 | $c eq "\\") { |
| 594 | substr($res, $off, 2, 'XX'); |
| 595 | $off++; |
| 596 | next; |
| 597 | } |
| 598 | # Regular quotes. |
| 599 | if ($c eq "'" || $c eq '"') { |
| 600 | if ($sanitise_quote eq '') { |
| 601 | $sanitise_quote = $c; |
| 602 | |
| 603 | substr($res, $off, 1, $c); |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 604 | next; |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 605 | } elsif ($sanitise_quote eq $c) { |
| 606 | $sanitise_quote = ''; |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 607 | } |
| 608 | } |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 609 | |
Andy Whitcroft | fae17da | 2009-01-06 14:41:20 -0800 | [diff] [blame] | 610 | #print "c<$c> SQ<$sanitise_quote>\n"; |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 611 | if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") { |
| 612 | substr($res, $off, 1, $;); |
Daniel Walker | 113f04a | 2009-09-21 17:04:35 -0700 | [diff] [blame] | 613 | } elsif ($off != 0 && $sanitise_quote eq '//' && $c ne "\t") { |
| 614 | substr($res, $off, 1, $;); |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 615 | } elsif ($off != 0 && $sanitise_quote && $c ne "\t") { |
| 616 | substr($res, $off, 1, 'X'); |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 617 | } else { |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 618 | substr($res, $off, 1, $c); |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 619 | } |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 620 | } |
| 621 | |
Daniel Walker | 113f04a | 2009-09-21 17:04:35 -0700 | [diff] [blame] | 622 | if ($sanitise_quote eq '//') { |
| 623 | $sanitise_quote = ''; |
| 624 | } |
| 625 | |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 626 | # The pathname on a #include may be surrounded by '<' and '>'. |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 627 | if ($res =~ /^.\s*\#\s*include\s+\<(.*)\>/) { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 628 | my $clean = 'X' x length($1); |
| 629 | $res =~ s@\<.*\>@<$clean>@; |
| 630 | |
| 631 | # The whole of a #error is a string. |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 632 | } elsif ($res =~ /^.\s*\#\s*(?:error|warning)\s+(.*)\b/) { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 633 | my $clean = 'X' x length($1); |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 634 | $res =~ s@(\#\s*(?:error|warning)\s+).*@$1$clean@; |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 635 | } |
| 636 | |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 637 | return $res; |
| 638 | } |
| 639 | |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 640 | sub ctx_statement_block { |
| 641 | my ($linenr, $remain, $off) = @_; |
| 642 | my $line = $linenr - 1; |
| 643 | my $blk = ''; |
| 644 | my $soff = $off; |
| 645 | my $coff = $off - 1; |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 646 | my $coff_set = 0; |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 647 | |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 648 | my $loff = 0; |
| 649 | |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 650 | my $type = ''; |
| 651 | my $level = 0; |
Andy Whitcroft | a275064 | 2009-01-15 13:51:04 -0800 | [diff] [blame] | 652 | my @stack = (); |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 653 | my $p; |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 654 | my $c; |
| 655 | my $len = 0; |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 656 | |
| 657 | my $remainder; |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 658 | while (1) { |
Andy Whitcroft | a275064 | 2009-01-15 13:51:04 -0800 | [diff] [blame] | 659 | @stack = (['', 0]) if ($#stack == -1); |
| 660 | |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 661 | #warn "CSB: blk<$blk> remain<$remain>\n"; |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 662 | # If we are about to drop off the end, pull in more |
| 663 | # context. |
| 664 | if ($off >= $len) { |
| 665 | for (; $remain > 0; $line++) { |
Andy Whitcroft | dea3349 | 2008-10-15 22:02:25 -0700 | [diff] [blame] | 666 | last if (!defined $lines[$line]); |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 667 | next if ($lines[$line] =~ /^-/); |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 668 | $remain--; |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 669 | $loff = $len; |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 670 | $blk .= $lines[$line] . "\n"; |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 671 | $len = length($blk); |
| 672 | $line++; |
| 673 | last; |
| 674 | } |
| 675 | # Bail if there is no further context. |
| 676 | #warn "CSB: blk<$blk> off<$off> len<$len>\n"; |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 677 | if ($off >= $len) { |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 678 | last; |
| 679 | } |
Andy Whitcroft | f74bd19 | 2012-01-10 15:09:54 -0800 | [diff] [blame] | 680 | if ($level == 0 && substr($blk, $off) =~ /^.\s*#\s*define/) { |
| 681 | $level++; |
| 682 | $type = '#'; |
| 683 | } |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 684 | } |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 685 | $p = $c; |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 686 | $c = substr($blk, $off, 1); |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 687 | $remainder = substr($blk, $off); |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 688 | |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 689 | #warn "CSB: c<$c> type<$type> level<$level> remainder<$remainder> coff_set<$coff_set>\n"; |
Andy Whitcroft | 4635f4f | 2009-01-06 14:41:27 -0800 | [diff] [blame] | 690 | |
| 691 | # Handle nested #if/#else. |
| 692 | if ($remainder =~ /^#\s*(?:ifndef|ifdef|if)\s/) { |
| 693 | push(@stack, [ $type, $level ]); |
| 694 | } elsif ($remainder =~ /^#\s*(?:else|elif)\b/) { |
| 695 | ($type, $level) = @{$stack[$#stack - 1]}; |
| 696 | } elsif ($remainder =~ /^#\s*endif\b/) { |
| 697 | ($type, $level) = @{pop(@stack)}; |
| 698 | } |
| 699 | |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 700 | # Statement ends at the ';' or a close '}' at the |
| 701 | # outermost level. |
| 702 | if ($level == 0 && $c eq ';') { |
| 703 | last; |
| 704 | } |
| 705 | |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 706 | # An else is really a conditional as long as its not else if |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 707 | if ($level == 0 && $coff_set == 0 && |
| 708 | (!defined($p) || $p =~ /(?:\s|\}|\+)/) && |
| 709 | $remainder =~ /^(else)(?:\s|{)/ && |
| 710 | $remainder !~ /^else\s+if\b/) { |
| 711 | $coff = $off + length($1) - 1; |
| 712 | $coff_set = 1; |
| 713 | #warn "CSB: mark coff<$coff> soff<$soff> 1<$1>\n"; |
| 714 | #warn "[" . substr($blk, $soff, $coff - $soff + 1) . "]\n"; |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 715 | } |
| 716 | |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 717 | if (($type eq '' || $type eq '(') && $c eq '(') { |
| 718 | $level++; |
| 719 | $type = '('; |
| 720 | } |
| 721 | if ($type eq '(' && $c eq ')') { |
| 722 | $level--; |
| 723 | $type = ($level != 0)? '(' : ''; |
| 724 | |
| 725 | if ($level == 0 && $coff < $soff) { |
| 726 | $coff = $off; |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 727 | $coff_set = 1; |
| 728 | #warn "CSB: mark coff<$coff>\n"; |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 729 | } |
| 730 | } |
| 731 | if (($type eq '' || $type eq '{') && $c eq '{') { |
| 732 | $level++; |
| 733 | $type = '{'; |
| 734 | } |
| 735 | if ($type eq '{' && $c eq '}') { |
| 736 | $level--; |
| 737 | $type = ($level != 0)? '{' : ''; |
| 738 | |
| 739 | if ($level == 0) { |
Patrick Pannuto | b998e00 | 2010-08-09 17:21:03 -0700 | [diff] [blame] | 740 | if (substr($blk, $off + 1, 1) eq ';') { |
| 741 | $off++; |
| 742 | } |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 743 | last; |
| 744 | } |
| 745 | } |
Andy Whitcroft | f74bd19 | 2012-01-10 15:09:54 -0800 | [diff] [blame] | 746 | # Preprocessor commands end at the newline unless escaped. |
| 747 | if ($type eq '#' && $c eq "\n" && $p ne "\\") { |
| 748 | $level--; |
| 749 | $type = ''; |
| 750 | $off++; |
| 751 | last; |
| 752 | } |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 753 | $off++; |
| 754 | } |
Andy Whitcroft | a3bb97a | 2008-07-23 21:29:00 -0700 | [diff] [blame] | 755 | # We are truly at the end, so shuffle to the next line. |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 756 | if ($off == $len) { |
Andy Whitcroft | a3bb97a | 2008-07-23 21:29:00 -0700 | [diff] [blame] | 757 | $loff = $len + 1; |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 758 | $line++; |
| 759 | $remain--; |
| 760 | } |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 761 | |
| 762 | my $statement = substr($blk, $soff, $off - $soff + 1); |
| 763 | my $condition = substr($blk, $soff, $coff - $soff + 1); |
| 764 | |
| 765 | #warn "STATEMENT<$statement>\n"; |
| 766 | #warn "CONDITION<$condition>\n"; |
| 767 | |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 768 | #print "coff<$coff> soff<$off> loff<$loff>\n"; |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 769 | |
| 770 | return ($statement, $condition, |
| 771 | $line, $remain + 1, $off - $loff + 1, $level); |
| 772 | } |
| 773 | |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 774 | sub statement_lines { |
| 775 | my ($stmt) = @_; |
| 776 | |
| 777 | # Strip the diff line prefixes and rip blank lines at start and end. |
| 778 | $stmt =~ s/(^|\n)./$1/g; |
| 779 | $stmt =~ s/^\s*//; |
| 780 | $stmt =~ s/\s*$//; |
| 781 | |
| 782 | my @stmt_lines = ($stmt =~ /\n/g); |
| 783 | |
| 784 | return $#stmt_lines + 2; |
| 785 | } |
| 786 | |
| 787 | sub statement_rawlines { |
| 788 | my ($stmt) = @_; |
| 789 | |
| 790 | my @stmt_lines = ($stmt =~ /\n/g); |
| 791 | |
| 792 | return $#stmt_lines + 2; |
| 793 | } |
| 794 | |
| 795 | sub statement_block_size { |
| 796 | my ($stmt) = @_; |
| 797 | |
| 798 | $stmt =~ s/(^|\n)./$1/g; |
| 799 | $stmt =~ s/^\s*{//; |
| 800 | $stmt =~ s/}\s*$//; |
| 801 | $stmt =~ s/^\s*//; |
| 802 | $stmt =~ s/\s*$//; |
| 803 | |
| 804 | my @stmt_lines = ($stmt =~ /\n/g); |
| 805 | my @stmt_statements = ($stmt =~ /;/g); |
| 806 | |
| 807 | my $stmt_lines = $#stmt_lines + 2; |
| 808 | my $stmt_statements = $#stmt_statements + 1; |
| 809 | |
| 810 | if ($stmt_lines > $stmt_statements) { |
| 811 | return $stmt_lines; |
| 812 | } else { |
| 813 | return $stmt_statements; |
| 814 | } |
| 815 | } |
| 816 | |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 817 | sub ctx_statement_full { |
| 818 | my ($linenr, $remain, $off) = @_; |
| 819 | my ($statement, $condition, $level); |
| 820 | |
| 821 | my (@chunks); |
| 822 | |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 823 | # Grab the first conditional/block pair. |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 824 | ($statement, $condition, $linenr, $remain, $off, $level) = |
| 825 | ctx_statement_block($linenr, $remain, $off); |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 826 | #print "F: c<$condition> s<$statement> remain<$remain>\n"; |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 827 | push(@chunks, [ $condition, $statement ]); |
| 828 | if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) { |
| 829 | return ($level, $linenr, @chunks); |
| 830 | } |
| 831 | |
| 832 | # Pull in the following conditional/block pairs and see if they |
| 833 | # could continue the statement. |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 834 | for (;;) { |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 835 | ($statement, $condition, $linenr, $remain, $off, $level) = |
| 836 | ctx_statement_block($linenr, $remain, $off); |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 837 | #print "C: c<$condition> s<$statement> remain<$remain>\n"; |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 838 | last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s)); |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 839 | #print "C: push\n"; |
| 840 | push(@chunks, [ $condition, $statement ]); |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 841 | } |
| 842 | |
| 843 | return ($level, $linenr, @chunks); |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 844 | } |
| 845 | |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 846 | sub ctx_block_get { |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 847 | my ($linenr, $remain, $outer, $open, $close, $off) = @_; |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 848 | my $line; |
| 849 | my $start = $linenr - 1; |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 850 | my $blk = ''; |
| 851 | my @o; |
| 852 | my @c; |
| 853 | my @res = (); |
| 854 | |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 855 | my $level = 0; |
Andy Whitcroft | 4635f4f | 2009-01-06 14:41:27 -0800 | [diff] [blame] | 856 | my @stack = ($level); |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 857 | for ($line = $start; $remain > 0; $line++) { |
| 858 | next if ($rawlines[$line] =~ /^-/); |
| 859 | $remain--; |
| 860 | |
| 861 | $blk .= $rawlines[$line]; |
Andy Whitcroft | 4635f4f | 2009-01-06 14:41:27 -0800 | [diff] [blame] | 862 | |
| 863 | # Handle nested #if/#else. |
Andy Whitcroft | 01464f3 | 2010-10-26 14:23:19 -0700 | [diff] [blame] | 864 | if ($lines[$line] =~ /^.\s*#\s*(?:ifndef|ifdef|if)\s/) { |
Andy Whitcroft | 4635f4f | 2009-01-06 14:41:27 -0800 | [diff] [blame] | 865 | push(@stack, $level); |
Andy Whitcroft | 01464f3 | 2010-10-26 14:23:19 -0700 | [diff] [blame] | 866 | } elsif ($lines[$line] =~ /^.\s*#\s*(?:else|elif)\b/) { |
Andy Whitcroft | 4635f4f | 2009-01-06 14:41:27 -0800 | [diff] [blame] | 867 | $level = $stack[$#stack - 1]; |
Andy Whitcroft | 01464f3 | 2010-10-26 14:23:19 -0700 | [diff] [blame] | 868 | } elsif ($lines[$line] =~ /^.\s*#\s*endif\b/) { |
Andy Whitcroft | 4635f4f | 2009-01-06 14:41:27 -0800 | [diff] [blame] | 869 | $level = pop(@stack); |
| 870 | } |
| 871 | |
Andy Whitcroft | 01464f3 | 2010-10-26 14:23:19 -0700 | [diff] [blame] | 872 | foreach my $c (split(//, $lines[$line])) { |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 873 | ##print "C<$c>L<$level><$open$close>O<$off>\n"; |
| 874 | if ($off > 0) { |
| 875 | $off--; |
| 876 | next; |
| 877 | } |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 878 | |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 879 | if ($c eq $close && $level > 0) { |
| 880 | $level--; |
| 881 | last if ($level == 0); |
| 882 | } elsif ($c eq $open) { |
| 883 | $level++; |
| 884 | } |
| 885 | } |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 886 | |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 887 | if (!$outer || $level <= 1) { |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 888 | push(@res, $rawlines[$line]); |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 889 | } |
| 890 | |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 891 | last if ($level == 0); |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 892 | } |
| 893 | |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 894 | return ($level, @res); |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 895 | } |
| 896 | sub ctx_block_outer { |
| 897 | my ($linenr, $remain) = @_; |
| 898 | |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 899 | my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0); |
| 900 | return @r; |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 901 | } |
| 902 | sub ctx_block { |
| 903 | my ($linenr, $remain) = @_; |
| 904 | |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 905 | my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0); |
| 906 | return @r; |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 907 | } |
| 908 | sub ctx_statement { |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 909 | my ($linenr, $remain, $off) = @_; |
| 910 | |
| 911 | my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off); |
| 912 | return @r; |
| 913 | } |
| 914 | sub ctx_block_level { |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 915 | my ($linenr, $remain) = @_; |
| 916 | |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 917 | return ctx_block_get($linenr, $remain, 0, '{', '}', 0); |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 918 | } |
Andy Whitcroft | 9c0ca6f | 2007-10-16 23:29:38 -0700 | [diff] [blame] | 919 | sub ctx_statement_level { |
| 920 | my ($linenr, $remain, $off) = @_; |
| 921 | |
| 922 | return ctx_block_get($linenr, $remain, 0, '(', ')', $off); |
| 923 | } |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 924 | |
| 925 | sub ctx_locate_comment { |
| 926 | my ($first_line, $end_line) = @_; |
| 927 | |
| 928 | # Catch a comment on the end of the line itself. |
Andy Whitcroft | beae633 | 2008-07-23 21:28:59 -0700 | [diff] [blame] | 929 | my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@); |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 930 | return $current_comment if (defined $current_comment); |
| 931 | |
| 932 | # Look through the context and try and figure out if there is a |
| 933 | # comment. |
| 934 | my $in_comment = 0; |
| 935 | $current_comment = ''; |
| 936 | for (my $linenr = $first_line; $linenr < $end_line; $linenr++) { |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 937 | my $line = $rawlines[$linenr - 1]; |
| 938 | #warn " $line\n"; |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 939 | if ($linenr == $first_line and $line =~ m@^.\s*\*@) { |
| 940 | $in_comment = 1; |
| 941 | } |
| 942 | if ($line =~ m@/\*@) { |
| 943 | $in_comment = 1; |
| 944 | } |
| 945 | if (!$in_comment && $current_comment ne '') { |
| 946 | $current_comment = ''; |
| 947 | } |
| 948 | $current_comment .= $line . "\n" if ($in_comment); |
| 949 | if ($line =~ m@\*/@) { |
| 950 | $in_comment = 0; |
| 951 | } |
| 952 | } |
| 953 | |
| 954 | chomp($current_comment); |
| 955 | return($current_comment); |
| 956 | } |
| 957 | sub ctx_has_comment { |
| 958 | my ($first_line, $end_line) = @_; |
| 959 | my $cmt = ctx_locate_comment($first_line, $end_line); |
| 960 | |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 961 | ##print "LINE: $rawlines[$end_line - 1 ]\n"; |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 962 | ##print "CMMT: $cmt\n"; |
| 963 | |
| 964 | return ($cmt ne ''); |
| 965 | } |
| 966 | |
Andy Whitcroft | 4d001e4 | 2008-10-15 22:02:21 -0700 | [diff] [blame] | 967 | sub raw_line { |
| 968 | my ($linenr, $cnt) = @_; |
| 969 | |
| 970 | my $offset = $linenr - 1; |
| 971 | $cnt++; |
| 972 | |
| 973 | my $line; |
| 974 | while ($cnt) { |
| 975 | $line = $rawlines[$offset++]; |
| 976 | next if (defined($line) && $line =~ /^-/); |
| 977 | $cnt--; |
| 978 | } |
| 979 | |
| 980 | return $line; |
| 981 | } |
| 982 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 983 | sub cat_vet { |
| 984 | my ($vet) = @_; |
Andy Whitcroft | 9c0ca6f | 2007-10-16 23:29:38 -0700 | [diff] [blame] | 985 | my ($res, $coded); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 986 | |
Andy Whitcroft | 9c0ca6f | 2007-10-16 23:29:38 -0700 | [diff] [blame] | 987 | $res = ''; |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 988 | while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) { |
| 989 | $res .= $1; |
| 990 | if ($2 ne '') { |
| 991 | $coded = sprintf("^%c", unpack('C', $2) + 64); |
| 992 | $res .= $coded; |
| 993 | } |
Andy Whitcroft | 9c0ca6f | 2007-10-16 23:29:38 -0700 | [diff] [blame] | 994 | } |
| 995 | $res =~ s/$/\$/; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 996 | |
Andy Whitcroft | 9c0ca6f | 2007-10-16 23:29:38 -0700 | [diff] [blame] | 997 | return $res; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 998 | } |
| 999 | |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1000 | my $av_preprocessor = 0; |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 1001 | my $av_pending; |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1002 | my @av_paren_type; |
Andy Whitcroft | 1f65f94 | 2008-07-23 21:29:10 -0700 | [diff] [blame] | 1003 | my $av_pend_colon; |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1004 | |
| 1005 | sub annotate_reset { |
| 1006 | $av_preprocessor = 0; |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 1007 | $av_pending = '_'; |
| 1008 | @av_paren_type = ('E'); |
Andy Whitcroft | 1f65f94 | 2008-07-23 21:29:10 -0700 | [diff] [blame] | 1009 | $av_pend_colon = 'O'; |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1010 | } |
| 1011 | |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1012 | sub annotate_values { |
| 1013 | my ($stream, $type) = @_; |
| 1014 | |
| 1015 | my $res; |
Andy Whitcroft | 1f65f94 | 2008-07-23 21:29:10 -0700 | [diff] [blame] | 1016 | my $var = '_' x length($stream); |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1017 | my $cur = $stream; |
| 1018 | |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1019 | print "$stream\n" if ($dbg_values > 1); |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1020 | |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1021 | while (length($cur)) { |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1022 | @av_paren_type = ('E') if ($#av_paren_type < 0); |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 1023 | print " <" . join('', @av_paren_type) . |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 1024 | "> <$type> <$av_pending>" if ($dbg_values > 1); |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1025 | if ($cur =~ /^(\s+)/o) { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1026 | print "WS($1)\n" if ($dbg_values > 1); |
| 1027 | if ($1 =~ /\n/ && $av_preprocessor) { |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 1028 | $type = pop(@av_paren_type); |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1029 | $av_preprocessor = 0; |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1030 | } |
| 1031 | |
Florian Mickler | c023e473 | 2011-01-12 16:59:58 -0800 | [diff] [blame] | 1032 | } elsif ($cur =~ /^(\(\s*$Type\s*)\)/ && $av_pending eq '_') { |
Andy Whitcroft | 9446ef5 | 2010-10-26 14:23:13 -0700 | [diff] [blame] | 1033 | print "CAST($1)\n" if ($dbg_values > 1); |
| 1034 | push(@av_paren_type, $type); |
Andy Whitcroft | addcdce | 2012-01-10 15:10:11 -0800 | [diff] [blame] | 1035 | $type = 'c'; |
Andy Whitcroft | 9446ef5 | 2010-10-26 14:23:13 -0700 | [diff] [blame] | 1036 | |
Andy Whitcroft | e91b6e2 | 2010-10-26 14:23:11 -0700 | [diff] [blame] | 1037 | } elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\(|\s*$)/) { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1038 | print "DECLARE($1)\n" if ($dbg_values > 1); |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1039 | $type = 'T'; |
| 1040 | |
Andy Whitcroft | 389a2fe | 2008-07-23 21:29:05 -0700 | [diff] [blame] | 1041 | } elsif ($cur =~ /^($Modifier)\s*/) { |
| 1042 | print "MODIFIER($1)\n" if ($dbg_values > 1); |
| 1043 | $type = 'T'; |
| 1044 | |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 1045 | } elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) { |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 1046 | print "DEFINE($1,$2)\n" if ($dbg_values > 1); |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1047 | $av_preprocessor = 1; |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 1048 | push(@av_paren_type, $type); |
| 1049 | if ($2 ne '') { |
| 1050 | $av_pending = 'N'; |
| 1051 | } |
| 1052 | $type = 'E'; |
| 1053 | |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 1054 | } elsif ($cur =~ /^(\#\s*(?:undef\s*$Ident|include\b))/o) { |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 1055 | print "UNDEF($1)\n" if ($dbg_values > 1); |
| 1056 | $av_preprocessor = 1; |
| 1057 | push(@av_paren_type, $type); |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1058 | |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 1059 | } elsif ($cur =~ /^(\#\s*(?:ifdef|ifndef|if))/o) { |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 1060 | print "PRE_START($1)\n" if ($dbg_values > 1); |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1061 | $av_preprocessor = 1; |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 1062 | |
| 1063 | push(@av_paren_type, $type); |
| 1064 | push(@av_paren_type, $type); |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 1065 | $type = 'E'; |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 1066 | |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 1067 | } elsif ($cur =~ /^(\#\s*(?:else|elif))/o) { |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 1068 | print "PRE_RESTART($1)\n" if ($dbg_values > 1); |
| 1069 | $av_preprocessor = 1; |
| 1070 | |
| 1071 | push(@av_paren_type, $av_paren_type[$#av_paren_type]); |
| 1072 | |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 1073 | $type = 'E'; |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 1074 | |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 1075 | } elsif ($cur =~ /^(\#\s*(?:endif))/o) { |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 1076 | print "PRE_END($1)\n" if ($dbg_values > 1); |
| 1077 | |
| 1078 | $av_preprocessor = 1; |
| 1079 | |
| 1080 | # Assume all arms of the conditional end as this |
| 1081 | # one does, and continue as if the #endif was not here. |
| 1082 | pop(@av_paren_type); |
| 1083 | push(@av_paren_type, $type); |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 1084 | $type = 'E'; |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1085 | |
| 1086 | } elsif ($cur =~ /^(\\\n)/o) { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1087 | print "PRECONT($1)\n" if ($dbg_values > 1); |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1088 | |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 1089 | } elsif ($cur =~ /^(__attribute__)\s*\(?/o) { |
| 1090 | print "ATTR($1)\n" if ($dbg_values > 1); |
| 1091 | $av_pending = $type; |
| 1092 | $type = 'N'; |
| 1093 | |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1094 | } elsif ($cur =~ /^(sizeof)\s*(\()?/o) { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1095 | print "SIZEOF($1)\n" if ($dbg_values > 1); |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1096 | if (defined $2) { |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 1097 | $av_pending = 'V'; |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1098 | } |
| 1099 | $type = 'N'; |
| 1100 | |
Andy Whitcroft | 14b111c | 2008-10-15 22:02:16 -0700 | [diff] [blame] | 1101 | } elsif ($cur =~ /^(if|while|for)\b/o) { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1102 | print "COND($1)\n" if ($dbg_values > 1); |
Andy Whitcroft | 14b111c | 2008-10-15 22:02:16 -0700 | [diff] [blame] | 1103 | $av_pending = 'E'; |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1104 | $type = 'N'; |
| 1105 | |
Andy Whitcroft | 1f65f94 | 2008-07-23 21:29:10 -0700 | [diff] [blame] | 1106 | } elsif ($cur =~/^(case)/o) { |
| 1107 | print "CASE($1)\n" if ($dbg_values > 1); |
| 1108 | $av_pend_colon = 'C'; |
| 1109 | $type = 'N'; |
| 1110 | |
Andy Whitcroft | 14b111c | 2008-10-15 22:02:16 -0700 | [diff] [blame] | 1111 | } elsif ($cur =~/^(return|else|goto|typeof|__typeof__)\b/o) { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1112 | print "KEYWORD($1)\n" if ($dbg_values > 1); |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1113 | $type = 'N'; |
| 1114 | |
| 1115 | } elsif ($cur =~ /^(\()/o) { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1116 | print "PAREN('$1')\n" if ($dbg_values > 1); |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 1117 | push(@av_paren_type, $av_pending); |
| 1118 | $av_pending = '_'; |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1119 | $type = 'N'; |
| 1120 | |
| 1121 | } elsif ($cur =~ /^(\))/o) { |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 1122 | my $new_type = pop(@av_paren_type); |
| 1123 | if ($new_type ne '_') { |
| 1124 | $type = $new_type; |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1125 | print "PAREN('$1') -> $type\n" |
| 1126 | if ($dbg_values > 1); |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1127 | } else { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1128 | print "PAREN('$1')\n" if ($dbg_values > 1); |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1129 | } |
| 1130 | |
Andy Whitcroft | c8cb2ca | 2008-07-23 21:28:57 -0700 | [diff] [blame] | 1131 | } elsif ($cur =~ /^($Ident)\s*\(/o) { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1132 | print "FUNC($1)\n" if ($dbg_values > 1); |
Andy Whitcroft | c8cb2ca | 2008-07-23 21:28:57 -0700 | [diff] [blame] | 1133 | $type = 'V'; |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 1134 | $av_pending = 'V'; |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1135 | |
Andy Whitcroft | 8e761b0 | 2009-01-06 14:41:19 -0800 | [diff] [blame] | 1136 | } elsif ($cur =~ /^($Ident\s*):(?:\s*\d+\s*(,|=|;))?/) { |
| 1137 | if (defined $2 && $type eq 'C' || $type eq 'T') { |
Andy Whitcroft | 1f65f94 | 2008-07-23 21:29:10 -0700 | [diff] [blame] | 1138 | $av_pend_colon = 'B'; |
Andy Whitcroft | 8e761b0 | 2009-01-06 14:41:19 -0800 | [diff] [blame] | 1139 | } elsif ($type eq 'E') { |
| 1140 | $av_pend_colon = 'L'; |
Andy Whitcroft | 1f65f94 | 2008-07-23 21:29:10 -0700 | [diff] [blame] | 1141 | } |
| 1142 | print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1); |
| 1143 | $type = 'V'; |
| 1144 | |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1145 | } elsif ($cur =~ /^($Ident|$Constant)/o) { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1146 | print "IDENT($1)\n" if ($dbg_values > 1); |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1147 | $type = 'V'; |
| 1148 | |
| 1149 | } elsif ($cur =~ /^($Assignment)/o) { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1150 | print "ASSIGN($1)\n" if ($dbg_values > 1); |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1151 | $type = 'N'; |
| 1152 | |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 1153 | } elsif ($cur =~/^(;|{|})/) { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1154 | print "END($1)\n" if ($dbg_values > 1); |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 1155 | $type = 'E'; |
Andy Whitcroft | 1f65f94 | 2008-07-23 21:29:10 -0700 | [diff] [blame] | 1156 | $av_pend_colon = 'O'; |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 1157 | |
Andy Whitcroft | 8e761b0 | 2009-01-06 14:41:19 -0800 | [diff] [blame] | 1158 | } elsif ($cur =~/^(,)/) { |
| 1159 | print "COMMA($1)\n" if ($dbg_values > 1); |
| 1160 | $type = 'C'; |
| 1161 | |
Andy Whitcroft | 1f65f94 | 2008-07-23 21:29:10 -0700 | [diff] [blame] | 1162 | } elsif ($cur =~ /^(\?)/o) { |
| 1163 | print "QUESTION($1)\n" if ($dbg_values > 1); |
| 1164 | $type = 'N'; |
| 1165 | |
| 1166 | } elsif ($cur =~ /^(:)/o) { |
| 1167 | print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1); |
| 1168 | |
| 1169 | substr($var, length($res), 1, $av_pend_colon); |
| 1170 | if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') { |
| 1171 | $type = 'E'; |
| 1172 | } else { |
| 1173 | $type = 'N'; |
| 1174 | } |
| 1175 | $av_pend_colon = 'O'; |
| 1176 | |
Andy Whitcroft | 8e761b0 | 2009-01-06 14:41:19 -0800 | [diff] [blame] | 1177 | } elsif ($cur =~ /^(\[)/o) { |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 1178 | print "CLOSE($1)\n" if ($dbg_values > 1); |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1179 | $type = 'N'; |
| 1180 | |
Andy Whitcroft | 0d41386 | 2008-10-15 22:02:16 -0700 | [diff] [blame] | 1181 | } elsif ($cur =~ /^(-(?![->])|\+(?!\+)|\*|\&\&|\&)/o) { |
Andy Whitcroft | 74048ed | 2008-07-23 21:29:10 -0700 | [diff] [blame] | 1182 | my $variant; |
| 1183 | |
| 1184 | print "OPV($1)\n" if ($dbg_values > 1); |
| 1185 | if ($type eq 'V') { |
| 1186 | $variant = 'B'; |
| 1187 | } else { |
| 1188 | $variant = 'U'; |
| 1189 | } |
| 1190 | |
| 1191 | substr($var, length($res), 1, $variant); |
| 1192 | $type = 'N'; |
| 1193 | |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1194 | } elsif ($cur =~ /^($Operators)/o) { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1195 | print "OP($1)\n" if ($dbg_values > 1); |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1196 | if ($1 ne '++' && $1 ne '--') { |
| 1197 | $type = 'N'; |
| 1198 | } |
| 1199 | |
| 1200 | } elsif ($cur =~ /(^.)/o) { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1201 | print "C($1)\n" if ($dbg_values > 1); |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1202 | } |
| 1203 | if (defined $1) { |
| 1204 | $cur = substr($cur, length($1)); |
| 1205 | $res .= $type x length($1); |
| 1206 | } |
| 1207 | } |
| 1208 | |
Andy Whitcroft | 1f65f94 | 2008-07-23 21:29:10 -0700 | [diff] [blame] | 1209 | return ($res, $var); |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1210 | } |
| 1211 | |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 1212 | sub possible { |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 1213 | my ($possible, $line) = @_; |
Andy Whitcroft | 9a974fd | 2009-10-26 16:50:12 -0700 | [diff] [blame] | 1214 | my $notPermitted = qr{(?: |
Andy Whitcroft | 0776e59 | 2008-10-15 22:02:29 -0700 | [diff] [blame] | 1215 | ^(?: |
| 1216 | $Modifier| |
| 1217 | $Storage| |
| 1218 | $Type| |
Andy Whitcroft | 9a974fd | 2009-10-26 16:50:12 -0700 | [diff] [blame] | 1219 | DEFINE_\S+ |
| 1220 | )$| |
| 1221 | ^(?: |
Andy Whitcroft | 0776e59 | 2008-10-15 22:02:29 -0700 | [diff] [blame] | 1222 | goto| |
| 1223 | return| |
| 1224 | case| |
| 1225 | else| |
| 1226 | asm|__asm__| |
Andy Whitcroft | 89a8835 | 2012-01-10 15:10:00 -0800 | [diff] [blame] | 1227 | do| |
| 1228 | \#| |
| 1229 | \#\#| |
Andy Whitcroft | 9a974fd | 2009-10-26 16:50:12 -0700 | [diff] [blame] | 1230 | )(?:\s|$)| |
Andy Whitcroft | 0776e59 | 2008-10-15 22:02:29 -0700 | [diff] [blame] | 1231 | ^(?:typedef|struct|enum)\b |
Andy Whitcroft | 9a974fd | 2009-10-26 16:50:12 -0700 | [diff] [blame] | 1232 | )}x; |
| 1233 | warn "CHECK<$possible> ($line)\n" if ($dbg_possible > 2); |
| 1234 | if ($possible !~ $notPermitted) { |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 1235 | # Check for modifiers. |
| 1236 | $possible =~ s/\s*$Storage\s*//g; |
| 1237 | $possible =~ s/\s*$Sparse\s*//g; |
| 1238 | if ($possible =~ /^\s*$/) { |
| 1239 | |
| 1240 | } elsif ($possible =~ /\s/) { |
| 1241 | $possible =~ s/\s*$Type\s*//g; |
Andy Whitcroft | d250658 | 2008-07-23 21:29:09 -0700 | [diff] [blame] | 1242 | for my $modifier (split(' ', $possible)) { |
Andy Whitcroft | 9a974fd | 2009-10-26 16:50:12 -0700 | [diff] [blame] | 1243 | if ($modifier !~ $notPermitted) { |
| 1244 | warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible); |
| 1245 | push(@modifierList, $modifier); |
| 1246 | } |
Andy Whitcroft | d250658 | 2008-07-23 21:29:09 -0700 | [diff] [blame] | 1247 | } |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 1248 | |
| 1249 | } else { |
| 1250 | warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible); |
| 1251 | push(@typeList, $possible); |
| 1252 | } |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 1253 | build_types(); |
Andy Whitcroft | 0776e59 | 2008-10-15 22:02:29 -0700 | [diff] [blame] | 1254 | } else { |
| 1255 | warn "NOTPOSS: $possible ($line)\n" if ($dbg_possible > 1); |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 1256 | } |
| 1257 | } |
| 1258 | |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1259 | my $prefix = ''; |
| 1260 | |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1261 | sub show_type { |
| 1262 | return !defined $ignore_type{$_[0]}; |
| 1263 | } |
| 1264 | |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 1265 | sub report { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1266 | if (!show_type($_[1]) || |
| 1267 | (defined $tst_only && $_[2] !~ /\Q$tst_only\E/)) { |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1268 | return 0; |
| 1269 | } |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1270 | my $line; |
| 1271 | if ($show_types) { |
| 1272 | $line = "$prefix$_[0]:$_[1]: $_[2]\n"; |
| 1273 | } else { |
| 1274 | $line = "$prefix$_[0]: $_[2]\n"; |
| 1275 | } |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 1276 | $line = (split('\n', $line))[0] . "\n" if ($terse); |
| 1277 | |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 1278 | push(our @report, $line); |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1279 | |
| 1280 | return 1; |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 1281 | } |
| 1282 | sub report_dump { |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 1283 | our @report; |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 1284 | } |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1285 | |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 1286 | sub ERROR { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1287 | if (report("ERROR", $_[0], $_[1])) { |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1288 | our $clean = 0; |
| 1289 | our $cnt_error++; |
| 1290 | } |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 1291 | } |
| 1292 | sub WARN { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1293 | if (report("WARNING", $_[0], $_[1])) { |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1294 | our $clean = 0; |
| 1295 | our $cnt_warn++; |
| 1296 | } |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 1297 | } |
| 1298 | sub CHK { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1299 | if ($check && report("CHECK", $_[0], $_[1])) { |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1300 | our $clean = 0; |
| 1301 | our $cnt_chk++; |
| 1302 | } |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 1303 | } |
| 1304 | |
Andy Whitcroft | 6ecd967 | 2008-10-15 22:02:21 -0700 | [diff] [blame] | 1305 | sub check_absolute_file { |
| 1306 | my ($absolute, $herecurr) = @_; |
| 1307 | my $file = $absolute; |
| 1308 | |
| 1309 | ##print "absolute<$absolute>\n"; |
| 1310 | |
| 1311 | # See if any suffix of this path is a path within the tree. |
| 1312 | while ($file =~ s@^[^/]*/@@) { |
| 1313 | if (-f "$root/$file") { |
| 1314 | ##print "file<$file>\n"; |
| 1315 | last; |
| 1316 | } |
| 1317 | } |
| 1318 | if (! -f _) { |
| 1319 | return 0; |
| 1320 | } |
| 1321 | |
| 1322 | # It is, so see if the prefix is acceptable. |
| 1323 | my $prefix = $absolute; |
| 1324 | substr($prefix, -length($file)) = ''; |
| 1325 | |
| 1326 | ##print "prefix<$prefix>\n"; |
| 1327 | if ($prefix ne ".../") { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1328 | WARN("USE_RELATIVE_PATH", |
| 1329 | "use relative pathname instead of absolute in changelog text\n" . $herecurr); |
Andy Whitcroft | 6ecd967 | 2008-10-15 22:02:21 -0700 | [diff] [blame] | 1330 | } |
| 1331 | } |
| 1332 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1333 | sub process { |
| 1334 | my $filename = shift; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1335 | |
| 1336 | my $linenr=0; |
| 1337 | my $prevline=""; |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1338 | my $prevrawline=""; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1339 | my $stashline=""; |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1340 | my $stashrawline=""; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1341 | |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 1342 | my $length; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1343 | my $indent; |
| 1344 | my $previndent=0; |
| 1345 | my $stashindent=0; |
| 1346 | |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 1347 | our $clean = 1; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1348 | my $signoff = 0; |
| 1349 | my $is_patch = 0; |
| 1350 | |
Joe Perches | 15662b3 | 2011-10-31 17:13:12 -0700 | [diff] [blame] | 1351 | my $in_header_lines = 1; |
| 1352 | my $in_commit_log = 0; #Scanning lines before patch |
| 1353 | |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 1354 | our @report = (); |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1355 | our $cnt_lines = 0; |
| 1356 | our $cnt_error = 0; |
| 1357 | our $cnt_warn = 0; |
| 1358 | our $cnt_chk = 0; |
| 1359 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1360 | # Trace the real file/line as we go. |
| 1361 | my $realfile = ''; |
| 1362 | my $realline = 0; |
| 1363 | my $realcnt = 0; |
| 1364 | my $here = ''; |
| 1365 | my $in_comment = 0; |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1366 | my $comment_edge = 0; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1367 | my $first_line = 0; |
Wolfram Sang | 1e85572 | 2009-01-06 14:41:24 -0800 | [diff] [blame] | 1368 | my $p1_prefix = ''; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1369 | |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 1370 | my $prev_values = 'E'; |
| 1371 | |
| 1372 | # suppression flags |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1373 | my %suppress_ifbraces; |
Andy Whitcroft | 170d3a2 | 2008-10-15 22:02:30 -0700 | [diff] [blame] | 1374 | my %suppress_whiletrailers; |
Andy Whitcroft | 2b474a1 | 2009-10-26 16:50:16 -0700 | [diff] [blame] | 1375 | my %suppress_export; |
Andy Whitcroft | 3e469cd | 2012-01-10 15:10:01 -0800 | [diff] [blame] | 1376 | my $suppress_statement = 0; |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 1377 | |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1378 | # Pre-scan the patch sanitizing the lines. |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 1379 | # Pre-scan the patch looking for any __setup documentation. |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1380 | # |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 1381 | my @setup_docs = (); |
| 1382 | my $setup_docs = 0; |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1383 | |
| 1384 | sanitise_line_reset(); |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1385 | my $line; |
| 1386 | foreach my $rawline (@rawlines) { |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1387 | $linenr++; |
| 1388 | $line = $rawline; |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1389 | |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1390 | if ($rawline=~/^\+\+\+\s+(\S+)/) { |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 1391 | $setup_docs = 0; |
| 1392 | if ($1 =~ m@Documentation/kernel-parameters.txt$@) { |
| 1393 | $setup_docs = 1; |
| 1394 | } |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1395 | #next; |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 1396 | } |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1397 | if ($rawline=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) { |
| 1398 | $realline=$1-1; |
| 1399 | if (defined $2) { |
| 1400 | $realcnt=$3+1; |
| 1401 | } else { |
| 1402 | $realcnt=1+1; |
| 1403 | } |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 1404 | $in_comment = 0; |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1405 | |
| 1406 | # Guestimate if this is a continuing comment. Run |
| 1407 | # the context looking for a comment "edge". If this |
| 1408 | # edge is a close comment then we must be in a comment |
| 1409 | # at context start. |
| 1410 | my $edge; |
Andy Whitcroft | 01fa914 | 2008-10-15 22:02:19 -0700 | [diff] [blame] | 1411 | my $cnt = $realcnt; |
| 1412 | for (my $ln = $linenr + 1; $cnt > 0; $ln++) { |
| 1413 | next if (defined $rawlines[$ln - 1] && |
| 1414 | $rawlines[$ln - 1] =~ /^-/); |
| 1415 | $cnt--; |
| 1416 | #print "RAW<$rawlines[$ln - 1]>\n"; |
Andy Whitcroft | 721c1cb | 2009-01-06 14:41:16 -0800 | [diff] [blame] | 1417 | last if (!defined $rawlines[$ln - 1]); |
Andy Whitcroft | fae17da | 2009-01-06 14:41:20 -0800 | [diff] [blame] | 1418 | if ($rawlines[$ln - 1] =~ m@(/\*|\*/)@ && |
| 1419 | $rawlines[$ln - 1] !~ m@"[^"]*(?:/\*|\*/)[^"]*"@) { |
| 1420 | ($edge) = $1; |
| 1421 | last; |
| 1422 | } |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1423 | } |
| 1424 | if (defined $edge && $edge eq '*/') { |
| 1425 | $in_comment = 1; |
| 1426 | } |
| 1427 | |
| 1428 | # Guestimate if this is a continuing comment. If this |
| 1429 | # is the start of a diff block and this line starts |
| 1430 | # ' *' then it is very likely a comment. |
| 1431 | if (!defined $edge && |
Andy Whitcroft | 83242e0 | 2009-01-06 14:41:17 -0800 | [diff] [blame] | 1432 | $rawlines[$linenr] =~ m@^.\s*(?:\*\*+| \*)(?:\s|$)@) |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1433 | { |
| 1434 | $in_comment = 1; |
| 1435 | } |
| 1436 | |
| 1437 | ##print "COMMENT:$in_comment edge<$edge> $rawline\n"; |
| 1438 | sanitise_line_reset($in_comment); |
| 1439 | |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 1440 | } elsif ($realcnt && $rawline =~ /^(?:\+| |$)/) { |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1441 | # Standardise the strings and chars within the input to |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 1442 | # simplify matching -- only bother with positive lines. |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1443 | $line = sanitise_line($rawline); |
| 1444 | } |
| 1445 | push(@lines, $line); |
| 1446 | |
| 1447 | if ($realcnt > 1) { |
| 1448 | $realcnt-- if ($line =~ /^(?:\+| |$)/); |
| 1449 | } else { |
| 1450 | $realcnt = 0; |
| 1451 | } |
| 1452 | |
| 1453 | #print "==>$rawline\n"; |
| 1454 | #print "-->$line\n"; |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 1455 | |
| 1456 | if ($setup_docs && $line =~ /^\+/) { |
| 1457 | push(@setup_docs, $line); |
| 1458 | } |
| 1459 | } |
| 1460 | |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1461 | $prefix = ''; |
| 1462 | |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1463 | $realcnt = 0; |
| 1464 | $linenr = 0; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1465 | foreach my $line (@lines) { |
| 1466 | $linenr++; |
| 1467 | |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1468 | my $rawline = $rawlines[$linenr - 1]; |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1469 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1470 | #extract the line range in the file after the patch is applied |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1471 | if ($line=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) { |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1472 | $is_patch = 1; |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 1473 | $first_line = $linenr + 1; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1474 | $realline=$1-1; |
| 1475 | if (defined $2) { |
| 1476 | $realcnt=$3+1; |
| 1477 | } else { |
| 1478 | $realcnt=1+1; |
| 1479 | } |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1480 | annotate_reset(); |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 1481 | $prev_values = 'E'; |
| 1482 | |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1483 | %suppress_ifbraces = (); |
Andy Whitcroft | 170d3a2 | 2008-10-15 22:02:30 -0700 | [diff] [blame] | 1484 | %suppress_whiletrailers = (); |
Andy Whitcroft | 2b474a1 | 2009-10-26 16:50:16 -0700 | [diff] [blame] | 1485 | %suppress_export = (); |
Andy Whitcroft | 3e469cd | 2012-01-10 15:10:01 -0800 | [diff] [blame] | 1486 | $suppress_statement = 0; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1487 | next; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1488 | |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 1489 | # track the line number as we move through the hunk, note that |
| 1490 | # new versions of GNU diff omit the leading space on completely |
| 1491 | # blank context lines so we need to count that too. |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1492 | } elsif ($line =~ /^( |\+|$)/) { |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1493 | $realline++; |
Andy Whitcroft | d8aaf12 | 2007-06-23 17:16:44 -0700 | [diff] [blame] | 1494 | $realcnt-- if ($realcnt != 0); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1495 | |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 1496 | # Measure the line length and indent. |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1497 | ($length, $indent) = line_stats($rawline); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1498 | |
| 1499 | # Track the previous line. |
| 1500 | ($prevline, $stashline) = ($stashline, $line); |
| 1501 | ($previndent, $stashindent) = ($stashindent, $indent); |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1502 | ($prevrawline, $stashrawline) = ($stashrawline, $rawline); |
| 1503 | |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1504 | #warn "line<$line>\n"; |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1505 | |
Andy Whitcroft | d8aaf12 | 2007-06-23 17:16:44 -0700 | [diff] [blame] | 1506 | } elsif ($realcnt == 1) { |
| 1507 | $realcnt--; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1508 | } |
| 1509 | |
Andy Whitcroft | cc77cdc | 2009-10-26 16:50:13 -0700 | [diff] [blame] | 1510 | my $hunk_line = ($realcnt != 0); |
| 1511 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1512 | #make up the handle for any error we report on this line |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1513 | $prefix = "$filename:$realline: " if ($emacs && $file); |
| 1514 | $prefix = "$filename:$linenr: " if ($emacs && !$file); |
| 1515 | |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1516 | $here = "#$linenr: " if (!$file); |
| 1517 | $here = "#$realline: " if ($file); |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1518 | |
| 1519 | # extract the filename as it passes |
Rabin Vincent | 3bf9a00 | 2010-10-26 14:23:16 -0700 | [diff] [blame] | 1520 | if ($line =~ /^diff --git.*?(\S+)$/) { |
| 1521 | $realfile = $1; |
| 1522 | $realfile =~ s@^([^/]*)/@@; |
Joe Perches | 270c49a | 2012-01-10 15:09:50 -0800 | [diff] [blame] | 1523 | $in_commit_log = 0; |
Rabin Vincent | 3bf9a00 | 2010-10-26 14:23:16 -0700 | [diff] [blame] | 1524 | } elsif ($line =~ /^\+\+\+\s+(\S+)/) { |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1525 | $realfile = $1; |
Wolfram Sang | 1e85572 | 2009-01-06 14:41:24 -0800 | [diff] [blame] | 1526 | $realfile =~ s@^([^/]*)/@@; |
Joe Perches | 270c49a | 2012-01-10 15:09:50 -0800 | [diff] [blame] | 1527 | $in_commit_log = 0; |
Wolfram Sang | 1e85572 | 2009-01-06 14:41:24 -0800 | [diff] [blame] | 1528 | |
| 1529 | $p1_prefix = $1; |
Andy Whitcroft | e2f7aa4 | 2009-02-27 14:03:06 -0800 | [diff] [blame] | 1530 | if (!$file && $tree && $p1_prefix ne '' && |
| 1531 | -e "$root/$p1_prefix") { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1532 | WARN("PATCH_PREFIX", |
| 1533 | "patch prefix '$p1_prefix' exists, appears to be a -p0 patch\n"); |
Wolfram Sang | 1e85572 | 2009-01-06 14:41:24 -0800 | [diff] [blame] | 1534 | } |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1535 | |
Andy Whitcroft | c1ab332 | 2008-10-15 22:02:20 -0700 | [diff] [blame] | 1536 | if ($realfile =~ m@^include/asm/@) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1537 | ERROR("MODIFIED_INCLUDE_ASM", |
| 1538 | "do not modify files in include/asm, change architecture specific files in include/asm-<architecture>\n" . "$here$rawline\n"); |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1539 | } |
| 1540 | next; |
| 1541 | } |
| 1542 | |
Randy Dunlap | 389834b | 2007-06-08 13:47:03 -0700 | [diff] [blame] | 1543 | $here .= "FILE: $realfile:$realline:" if ($realcnt != 0); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1544 | |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1545 | my $hereline = "$here\n$rawline\n"; |
| 1546 | my $herecurr = "$here\n$rawline\n"; |
| 1547 | my $hereprev = "$here\n$prevrawline\n$rawline\n"; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1548 | |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1549 | $cnt_lines++ if ($realcnt != 0); |
| 1550 | |
Rabin Vincent | 3bf9a00 | 2010-10-26 14:23:16 -0700 | [diff] [blame] | 1551 | # Check for incorrect file permissions |
| 1552 | if ($line =~ /^new (file )?mode.*[7531]\d{0,2}$/) { |
| 1553 | my $permhere = $here . "FILE: $realfile\n"; |
| 1554 | if ($realfile =~ /(Makefile|Kconfig|\.c|\.h|\.S|\.tmpl)$/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1555 | ERROR("EXECUTE_PERMISSIONS", |
| 1556 | "do not set execute permissions for source files\n" . $permhere); |
Rabin Vincent | 3bf9a00 | 2010-10-26 14:23:16 -0700 | [diff] [blame] | 1557 | } |
| 1558 | } |
| 1559 | |
Joe Perches | 2011247 | 2011-07-25 17:13:23 -0700 | [diff] [blame] | 1560 | # Check the patch for a signoff: |
Andy Whitcroft | d8aaf12 | 2007-06-23 17:16:44 -0700 | [diff] [blame] | 1561 | if ($line =~ /^\s*signed-off-by:/i) { |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 1562 | $signoff++; |
Joe Perches | 15662b3 | 2011-10-31 17:13:12 -0700 | [diff] [blame] | 1563 | $in_commit_log = 0; |
Joe Perches | 2011247 | 2011-07-25 17:13:23 -0700 | [diff] [blame] | 1564 | } |
| 1565 | |
| 1566 | # Check signature styles |
Joe Perches | 270c49a | 2012-01-10 15:09:50 -0800 | [diff] [blame] | 1567 | if (!$in_header_lines && |
| 1568 | $line =~ /^(\s*)($signature_tags)(\s*)(.*)/) { |
Joe Perches | 2011247 | 2011-07-25 17:13:23 -0700 | [diff] [blame] | 1569 | my $space_before = $1; |
| 1570 | my $sign_off = $2; |
| 1571 | my $space_after = $3; |
| 1572 | my $email = $4; |
| 1573 | my $ucfirst_sign_off = ucfirst(lc($sign_off)); |
| 1574 | |
| 1575 | if (defined $space_before && $space_before ne "") { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1576 | WARN("BAD_SIGN_OFF", |
| 1577 | "Do not use whitespace before $ucfirst_sign_off\n" . $herecurr); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1578 | } |
Joe Perches | 2011247 | 2011-07-25 17:13:23 -0700 | [diff] [blame] | 1579 | if ($sign_off =~ /-by:$/i && $sign_off ne $ucfirst_sign_off) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1580 | WARN("BAD_SIGN_OFF", |
| 1581 | "'$ucfirst_sign_off' is the preferred signature form\n" . $herecurr); |
Joe Perches | 2011247 | 2011-07-25 17:13:23 -0700 | [diff] [blame] | 1582 | } |
| 1583 | if (!defined $space_after || $space_after ne " ") { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1584 | WARN("BAD_SIGN_OFF", |
| 1585 | "Use a single space after $ucfirst_sign_off\n" . $herecurr); |
Joe Perches | 2011247 | 2011-07-25 17:13:23 -0700 | [diff] [blame] | 1586 | } |
| 1587 | |
| 1588 | my ($email_name, $email_address, $comment) = parse_email($email); |
| 1589 | my $suggested_email = format_email(($email_name, $email_address)); |
| 1590 | if ($suggested_email eq "") { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1591 | ERROR("BAD_SIGN_OFF", |
| 1592 | "Unrecognized email address: '$email'\n" . $herecurr); |
Joe Perches | 2011247 | 2011-07-25 17:13:23 -0700 | [diff] [blame] | 1593 | } else { |
| 1594 | my $dequoted = $suggested_email; |
| 1595 | $dequoted =~ s/^"//; |
| 1596 | $dequoted =~ s/" </ </; |
| 1597 | # Don't force email to have quotes |
| 1598 | # Allow just an angle bracketed address |
| 1599 | if ("$dequoted$comment" ne $email && |
| 1600 | "<$email_address>$comment" ne $email && |
| 1601 | "$suggested_email$comment" ne $email) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1602 | WARN("BAD_SIGN_OFF", |
| 1603 | "email address '$email' might be better as '$suggested_email$comment'\n" . $herecurr); |
Joe Perches | 2011247 | 2011-07-25 17:13:23 -0700 | [diff] [blame] | 1604 | } |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1605 | } |
| 1606 | } |
| 1607 | |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 1608 | # Check for wrappage within a valid hunk of the file |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 1609 | if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1610 | ERROR("CORRUPTED_PATCH", |
| 1611 | "patch seems to be corrupt (line wrapped?)\n" . |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 1612 | $herecurr) if (!$emitted_corrupt++); |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 1613 | } |
| 1614 | |
Andy Whitcroft | 6ecd967 | 2008-10-15 22:02:21 -0700 | [diff] [blame] | 1615 | # Check for absolute kernel paths. |
| 1616 | if ($tree) { |
| 1617 | while ($line =~ m{(?:^|\s)(/\S*)}g) { |
| 1618 | my $file = $1; |
| 1619 | |
| 1620 | if ($file =~ m{^(.*?)(?::\d+)+:?$} && |
| 1621 | check_absolute_file($1, $herecurr)) { |
| 1622 | # |
| 1623 | } else { |
| 1624 | check_absolute_file($file, $herecurr); |
| 1625 | } |
| 1626 | } |
| 1627 | } |
| 1628 | |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 1629 | # UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php |
| 1630 | if (($realfile =~ /^$/ || $line =~ /^\+/) && |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 1631 | $rawline !~ m/^$UTF8*$/) { |
| 1632 | my ($utf8_prefix) = ($rawline =~ /^($UTF8*)/); |
| 1633 | |
| 1634 | my $blank = copy_spacing($rawline); |
| 1635 | my $ptr = substr($blank, 0, length($utf8_prefix)) . "^"; |
| 1636 | my $hereptr = "$hereline$ptr\n"; |
| 1637 | |
Joe Perches | 34d9921 | 2011-07-25 17:13:26 -0700 | [diff] [blame] | 1638 | CHK("INVALID_UTF8", |
| 1639 | "Invalid UTF-8, patch and commit message should be encoded in UTF-8\n" . $hereptr); |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 1640 | } |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1641 | |
Joe Perches | 15662b3 | 2011-10-31 17:13:12 -0700 | [diff] [blame] | 1642 | # Check if it's the start of a commit log |
| 1643 | # (not a header line and we haven't seen the patch filename) |
| 1644 | if ($in_header_lines && $realfile =~ /^$/ && |
Joe Perches | 270c49a | 2012-01-10 15:09:50 -0800 | [diff] [blame] | 1645 | $rawline !~ /^(commit\b|from\b|[\w-]+:).+$/i) { |
Joe Perches | 15662b3 | 2011-10-31 17:13:12 -0700 | [diff] [blame] | 1646 | $in_header_lines = 0; |
| 1647 | $in_commit_log = 1; |
| 1648 | } |
| 1649 | |
| 1650 | # Still not yet in a patch, check for any UTF-8 |
| 1651 | if ($in_commit_log && $realfile =~ /^$/ && |
| 1652 | $rawline =~ /$NON_ASCII_UTF8/) { |
| 1653 | CHK("UTF8_BEFORE_PATCH", |
| 1654 | "8-bit UTF-8 used in possible commit log\n" . $herecurr); |
| 1655 | } |
| 1656 | |
Andy Whitcroft | 30670854 | 2008-10-15 22:02:28 -0700 | [diff] [blame] | 1657 | # ignore non-hunk lines and lines being removed |
| 1658 | next if (!$hunk_line || $line =~ /^-/); |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 1659 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1660 | #trailing whitespace |
Andy Whitcroft | 9c0ca6f | 2007-10-16 23:29:38 -0700 | [diff] [blame] | 1661 | if ($line =~ /^\+.*\015/) { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1662 | my $herevet = "$here\n" . cat_vet($rawline) . "\n"; |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1663 | ERROR("DOS_LINE_ENDINGS", |
| 1664 | "DOS line endings\n" . $herevet); |
Andy Whitcroft | 9c0ca6f | 2007-10-16 23:29:38 -0700 | [diff] [blame] | 1665 | |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1666 | } elsif ($rawline =~ /^\+.*\S\s+$/ || $rawline =~ /^\+\s+$/) { |
| 1667 | my $herevet = "$here\n" . cat_vet($rawline) . "\n"; |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1668 | ERROR("TRAILING_WHITESPACE", |
| 1669 | "trailing whitespace\n" . $herevet); |
Andy Whitcroft | d2c0a23 | 2010-10-26 14:23:12 -0700 | [diff] [blame] | 1670 | $rpt_cleaners = 1; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1671 | } |
Andy Whitcroft | 5368df2 | 2008-10-15 22:02:27 -0700 | [diff] [blame] | 1672 | |
Andi Kleen | 3354957 | 2010-05-24 14:33:29 -0700 | [diff] [blame] | 1673 | # check for Kconfig help text having a real description |
Andy Whitcroft | 9fe287d7 | 2010-10-26 14:23:15 -0700 | [diff] [blame] | 1674 | # Only applies when adding the entry originally, after that we do not have |
| 1675 | # sufficient context to determine whether it is indeed long enough. |
Andi Kleen | 3354957 | 2010-05-24 14:33:29 -0700 | [diff] [blame] | 1676 | if ($realfile =~ /Kconfig/ && |
Andy Whitcroft | a138580 | 2012-01-10 15:10:03 -0800 | [diff] [blame] | 1677 | $line =~ /.\s*config\s+/) { |
Andi Kleen | 3354957 | 2010-05-24 14:33:29 -0700 | [diff] [blame] | 1678 | my $length = 0; |
Andy Whitcroft | 9fe287d7 | 2010-10-26 14:23:15 -0700 | [diff] [blame] | 1679 | my $cnt = $realcnt; |
| 1680 | my $ln = $linenr + 1; |
| 1681 | my $f; |
Andy Whitcroft | a138580 | 2012-01-10 15:10:03 -0800 | [diff] [blame] | 1682 | my $is_start = 0; |
Andy Whitcroft | 9fe287d7 | 2010-10-26 14:23:15 -0700 | [diff] [blame] | 1683 | my $is_end = 0; |
Andy Whitcroft | a138580 | 2012-01-10 15:10:03 -0800 | [diff] [blame] | 1684 | for (; $cnt > 0 && defined $lines[$ln - 1]; $ln++) { |
Andy Whitcroft | 9fe287d7 | 2010-10-26 14:23:15 -0700 | [diff] [blame] | 1685 | $f = $lines[$ln - 1]; |
| 1686 | $cnt-- if ($lines[$ln - 1] !~ /^-/); |
| 1687 | $is_end = $lines[$ln - 1] =~ /^\+/; |
Andy Whitcroft | 9fe287d7 | 2010-10-26 14:23:15 -0700 | [diff] [blame] | 1688 | |
| 1689 | next if ($f =~ /^-/); |
Andy Whitcroft | a138580 | 2012-01-10 15:10:03 -0800 | [diff] [blame] | 1690 | |
| 1691 | if ($lines[$ln - 1] =~ /.\s*(?:bool|tristate)\s*\"/) { |
| 1692 | $is_start = 1; |
| 1693 | } elsif ($lines[$ln - 1] =~ /.\s*(?:---)?help(?:---)?$/) { |
| 1694 | $length = -1; |
| 1695 | } |
| 1696 | |
Andy Whitcroft | 9fe287d7 | 2010-10-26 14:23:15 -0700 | [diff] [blame] | 1697 | $f =~ s/^.//; |
Andi Kleen | 3354957 | 2010-05-24 14:33:29 -0700 | [diff] [blame] | 1698 | $f =~ s/#.*//; |
| 1699 | $f =~ s/^\s+//; |
| 1700 | next if ($f =~ /^$/); |
Andy Whitcroft | 9fe287d7 | 2010-10-26 14:23:15 -0700 | [diff] [blame] | 1701 | if ($f =~ /^\s*config\s/) { |
| 1702 | $is_end = 1; |
| 1703 | last; |
| 1704 | } |
Andi Kleen | 3354957 | 2010-05-24 14:33:29 -0700 | [diff] [blame] | 1705 | $length++; |
| 1706 | } |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1707 | WARN("CONFIG_DESCRIPTION", |
Andy Whitcroft | a138580 | 2012-01-10 15:10:03 -0800 | [diff] [blame] | 1708 | "please write a paragraph that describes the config symbol fully\n" . $herecurr) if ($is_start && $is_end && $length < 4); |
| 1709 | #print "is_start<$is_start> is_end<$is_end> length<$length>\n"; |
Andi Kleen | 3354957 | 2010-05-24 14:33:29 -0700 | [diff] [blame] | 1710 | } |
| 1711 | |
Arnaud Lacombe | c68e587 | 2011-08-15 01:07:14 -0400 | [diff] [blame] | 1712 | if (($realfile =~ /Makefile.*/ || $realfile =~ /Kbuild.*/) && |
| 1713 | ($line =~ /\+(EXTRA_[A-Z]+FLAGS).*/)) { |
| 1714 | my $flag = $1; |
| 1715 | my $replacement = { |
| 1716 | 'EXTRA_AFLAGS' => 'asflags-y', |
| 1717 | 'EXTRA_CFLAGS' => 'ccflags-y', |
| 1718 | 'EXTRA_CPPFLAGS' => 'cppflags-y', |
| 1719 | 'EXTRA_LDFLAGS' => 'ldflags-y', |
| 1720 | }; |
| 1721 | |
| 1722 | WARN("DEPRECATED_VARIABLE", |
| 1723 | "Use of $flag is deprecated, please use \`$replacement->{$flag} instead.\n" . $herecurr) if ($replacement->{$flag}); |
| 1724 | } |
| 1725 | |
Andy Whitcroft | 5368df2 | 2008-10-15 22:02:27 -0700 | [diff] [blame] | 1726 | # check we are in a valid source file if not then ignore this hunk |
| 1727 | next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/); |
| 1728 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1729 | #80 column limit |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 1730 | if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ && |
Andy Whitcroft | f4c014c | 2008-07-23 21:29:01 -0700 | [diff] [blame] | 1731 | $rawline !~ /^.\s*\*\s*\@$Ident\s/ && |
Joe Perches | 0fccc62 | 2011-05-24 17:13:41 -0700 | [diff] [blame] | 1732 | !($line =~ /^\+\s*$logFunctions\s*\(\s*(?:(KERN_\S+\s*|[^"]*))?"[X\t]*"\s*(?:|,|\)\s*;)\s*$/ || |
Joe Perches | 8bbea96 | 2010-08-09 17:21:01 -0700 | [diff] [blame] | 1733 | $line =~ /^\+\s*"[^"]*"\s*(?:\s*|,|\)\s*;)\s*$/) && |
Andy Whitcroft | f4c014c | 2008-07-23 21:29:01 -0700 | [diff] [blame] | 1734 | $length > 80) |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 1735 | { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1736 | WARN("LONG_LINE", |
| 1737 | "line over 80 characters\n" . $herecurr); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1738 | } |
| 1739 | |
Joe Perches | 5e79d96 | 2010-03-05 13:43:55 -0800 | [diff] [blame] | 1740 | # check for spaces before a quoted newline |
| 1741 | if ($rawline =~ /^.*\".*\s\\n/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1742 | WARN("QUOTED_WHITESPACE_BEFORE_NEWLINE", |
| 1743 | "unnecessary whitespace before a quoted newline\n" . $herecurr); |
Joe Perches | 5e79d96 | 2010-03-05 13:43:55 -0800 | [diff] [blame] | 1744 | } |
| 1745 | |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 1746 | # check for adding lines without a newline. |
| 1747 | if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1748 | WARN("MISSING_EOF_NEWLINE", |
| 1749 | "adding a line without newline at end of file\n" . $herecurr); |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 1750 | } |
| 1751 | |
Mike Frysinger | 42e41c5 | 2009-09-21 17:04:40 -0700 | [diff] [blame] | 1752 | # Blackfin: use hi/lo macros |
| 1753 | if ($realfile =~ m@arch/blackfin/.*\.S$@) { |
| 1754 | if ($line =~ /\.[lL][[:space:]]*=.*&[[:space:]]*0x[fF][fF][fF][fF]/) { |
| 1755 | my $herevet = "$here\n" . cat_vet($line) . "\n"; |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1756 | ERROR("LO_MACRO", |
| 1757 | "use the LO() macro, not (... & 0xFFFF)\n" . $herevet); |
Mike Frysinger | 42e41c5 | 2009-09-21 17:04:40 -0700 | [diff] [blame] | 1758 | } |
| 1759 | if ($line =~ /\.[hH][[:space:]]*=.*>>[[:space:]]*16/) { |
| 1760 | my $herevet = "$here\n" . cat_vet($line) . "\n"; |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1761 | ERROR("HI_MACRO", |
| 1762 | "use the HI() macro, not (... >> 16)\n" . $herevet); |
Mike Frysinger | 42e41c5 | 2009-09-21 17:04:40 -0700 | [diff] [blame] | 1763 | } |
| 1764 | } |
| 1765 | |
Andy Whitcroft | b9ea10d | 2008-10-15 22:02:24 -0700 | [diff] [blame] | 1766 | # check we are in a valid source file C or perl if not then ignore this hunk |
| 1767 | next if ($realfile !~ /\.(h|c|pl)$/); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1768 | |
| 1769 | # at the beginning of a line any tabs must come first and anything |
| 1770 | # more than 8 must use tabs. |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1771 | if ($rawline =~ /^\+\s* \t\s*\S/ || |
| 1772 | $rawline =~ /^\+\s* \s*/) { |
| 1773 | my $herevet = "$here\n" . cat_vet($rawline) . "\n"; |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1774 | ERROR("CODE_INDENT", |
| 1775 | "code indent should use tabs where possible\n" . $herevet); |
Andy Whitcroft | d2c0a23 | 2010-10-26 14:23:12 -0700 | [diff] [blame] | 1776 | $rpt_cleaners = 1; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1777 | } |
| 1778 | |
Alberto Panizzo | 08e4436 | 2010-03-05 13:43:54 -0800 | [diff] [blame] | 1779 | # check for space before tabs. |
| 1780 | if ($rawline =~ /^\+/ && $rawline =~ / \t/) { |
| 1781 | my $herevet = "$here\n" . cat_vet($rawline) . "\n"; |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1782 | WARN("SPACE_BEFORE_TAB", |
| 1783 | "please, no space before tabs\n" . $herevet); |
Alberto Panizzo | 08e4436 | 2010-03-05 13:43:54 -0800 | [diff] [blame] | 1784 | } |
| 1785 | |
Raffaele Recalcati | 5f7ddae | 2010-08-09 17:20:59 -0700 | [diff] [blame] | 1786 | # check for spaces at the beginning of a line. |
Andy Whitcroft | 6b4c5be | 2010-10-26 14:23:11 -0700 | [diff] [blame] | 1787 | # Exceptions: |
| 1788 | # 1) within comments |
| 1789 | # 2) indented preprocessor commands |
| 1790 | # 3) hanging labels |
| 1791 | if ($rawline =~ /^\+ / && $line !~ /\+ *(?:$;|#|$Ident:)/) { |
Raffaele Recalcati | 5f7ddae | 2010-08-09 17:20:59 -0700 | [diff] [blame] | 1792 | my $herevet = "$here\n" . cat_vet($rawline) . "\n"; |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1793 | WARN("LEADING_SPACE", |
| 1794 | "please, no spaces at the start of a line\n" . $herevet); |
Raffaele Recalcati | 5f7ddae | 2010-08-09 17:20:59 -0700 | [diff] [blame] | 1795 | } |
| 1796 | |
Andy Whitcroft | b9ea10d | 2008-10-15 22:02:24 -0700 | [diff] [blame] | 1797 | # check we are in a valid C source file if not then ignore this hunk |
| 1798 | next if ($realfile !~ /\.(h|c)$/); |
| 1799 | |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1800 | # check for RCS/CVS revision markers |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 1801 | if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1802 | WARN("CVS_KEYWORD", |
| 1803 | "CVS style keyword markers, these will _not_ be updated\n". $herecurr); |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1804 | } |
Andy Whitcroft | 22f2a2e | 2007-08-10 13:01:03 -0700 | [diff] [blame] | 1805 | |
Mike Frysinger | 42e41c5 | 2009-09-21 17:04:40 -0700 | [diff] [blame] | 1806 | # Blackfin: don't use __builtin_bfin_[cs]sync |
| 1807 | if ($line =~ /__builtin_bfin_csync/) { |
| 1808 | my $herevet = "$here\n" . cat_vet($line) . "\n"; |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1809 | ERROR("CSYNC", |
| 1810 | "use the CSYNC() macro in asm/blackfin.h\n" . $herevet); |
Mike Frysinger | 42e41c5 | 2009-09-21 17:04:40 -0700 | [diff] [blame] | 1811 | } |
| 1812 | if ($line =~ /__builtin_bfin_ssync/) { |
| 1813 | my $herevet = "$here\n" . cat_vet($line) . "\n"; |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1814 | ERROR("SSYNC", |
| 1815 | "use the SSYNC() macro in asm/blackfin.h\n" . $herevet); |
Mike Frysinger | 42e41c5 | 2009-09-21 17:04:40 -0700 | [diff] [blame] | 1816 | } |
| 1817 | |
Andy Whitcroft | 9c0ca6f | 2007-10-16 23:29:38 -0700 | [diff] [blame] | 1818 | # Check for potential 'bare' types |
Andy Whitcroft | 2b474a1 | 2009-10-26 16:50:16 -0700 | [diff] [blame] | 1819 | my ($stat, $cond, $line_nr_next, $remain_next, $off_next, |
| 1820 | $realline_next); |
Andy Whitcroft | 3e469cd | 2012-01-10 15:10:01 -0800 | [diff] [blame] | 1821 | #print "LINE<$line>\n"; |
| 1822 | if ($linenr >= $suppress_statement && |
| 1823 | $realcnt && $line =~ /.\s*\S/) { |
Andy Whitcroft | 170d3a2 | 2008-10-15 22:02:30 -0700 | [diff] [blame] | 1824 | ($stat, $cond, $line_nr_next, $remain_next, $off_next) = |
Andy Whitcroft | f5fe35d | 2008-07-23 21:29:03 -0700 | [diff] [blame] | 1825 | ctx_statement_block($linenr, $realcnt, 0); |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 1826 | $stat =~ s/\n./\n /g; |
| 1827 | $cond =~ s/\n./\n /g; |
| 1828 | |
Andy Whitcroft | 3e469cd | 2012-01-10 15:10:01 -0800 | [diff] [blame] | 1829 | #print "linenr<$linenr> <$stat>\n"; |
| 1830 | # If this statement has no statement boundaries within |
| 1831 | # it there is no point in retrying a statement scan |
| 1832 | # until we hit end of it. |
| 1833 | my $frag = $stat; $frag =~ s/;+\s*$//; |
| 1834 | if ($frag !~ /(?:{|;)/) { |
| 1835 | #print "skip<$line_nr_next>\n"; |
| 1836 | $suppress_statement = $line_nr_next; |
| 1837 | } |
Andy Whitcroft | f74bd19 | 2012-01-10 15:09:54 -0800 | [diff] [blame] | 1838 | |
Andy Whitcroft | 2b474a1 | 2009-10-26 16:50:16 -0700 | [diff] [blame] | 1839 | # Find the real next line. |
| 1840 | $realline_next = $line_nr_next; |
| 1841 | if (defined $realline_next && |
| 1842 | (!defined $lines[$realline_next - 1] || |
| 1843 | substr($lines[$realline_next - 1], $off_next) =~ /^\s*$/)) { |
| 1844 | $realline_next++; |
| 1845 | } |
| 1846 | |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 1847 | my $s = $stat; |
| 1848 | $s =~ s/{.*$//s; |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 1849 | |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1850 | # Ignore goto labels. |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 1851 | if ($s =~ /$Ident:\*$/s) { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1852 | |
| 1853 | # Ignore functions being called |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 1854 | } elsif ($s =~ /^.\s*$Ident\s*\(/s) { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1855 | |
Andy Whitcroft | 463f286 | 2009-09-21 17:04:34 -0700 | [diff] [blame] | 1856 | } elsif ($s =~ /^.\s*else\b/s) { |
| 1857 | |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 1858 | # declarations always start with types |
Andy Whitcroft | d250658 | 2008-07-23 21:29:09 -0700 | [diff] [blame] | 1859 | } elsif ($prev_values eq 'E' && $s =~ /^.\s*(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?((?:\s*$Ident)+?)\b(?:\s+$Sparse)?\s*\**\s*(?:$Ident|\(\*[^\)]*\))(?:\s*$Modifier)?\s*(?:;|=|,|\()/s) { |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 1860 | my $type = $1; |
| 1861 | $type =~ s/\s+/ /g; |
| 1862 | possible($type, "A:" . $s); |
| 1863 | |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 1864 | # definitions in global scope can only start with types |
Andy Whitcroft | a6a84062 | 2008-10-15 22:02:30 -0700 | [diff] [blame] | 1865 | } elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b\s*(?!:)/s) { |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 1866 | possible($1, "B:" . $s); |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 1867 | } |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 1868 | |
| 1869 | # any (foo ... *) is a pointer cast, and foo is a type |
Andy Whitcroft | 6586386 | 2009-01-06 14:41:21 -0800 | [diff] [blame] | 1870 | while ($s =~ /\(($Ident)(?:\s+$Sparse)*[\s\*]+\s*\)/sg) { |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 1871 | possible($1, "C:" . $s); |
Andy Whitcroft | 9c0ca6f | 2007-10-16 23:29:38 -0700 | [diff] [blame] | 1872 | } |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 1873 | |
| 1874 | # Check for any sort of function declaration. |
| 1875 | # int foo(something bar, other baz); |
| 1876 | # void (*store_gdt)(x86_descr_ptr *); |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 1877 | if ($prev_values eq 'E' && $s =~ /^(.(?:typedef\s*)?(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*(?:\b$Ident|\(\*\s*$Ident\))\s*)\(/s) { |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 1878 | my ($name_len) = length($1); |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 1879 | |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 1880 | my $ctx = $s; |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1881 | substr($ctx, 0, $name_len + 1, ''); |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 1882 | $ctx =~ s/\)[^\)]*$//; |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 1883 | |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 1884 | for my $arg (split(/\s*,\s*/, $ctx)) { |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 1885 | if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$/s) { |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 1886 | |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 1887 | possible($1, "D:" . $s); |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 1888 | } |
| 1889 | } |
| 1890 | } |
| 1891 | |
Andy Whitcroft | 9c0ca6f | 2007-10-16 23:29:38 -0700 | [diff] [blame] | 1892 | } |
| 1893 | |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 1894 | # |
| 1895 | # Checks which may be anchored in the context. |
| 1896 | # |
| 1897 | |
| 1898 | # Check for switch () and associated case and default |
| 1899 | # statements should be at the same indent. |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 1900 | if ($line=~/\bswitch\s*\(.*\)/) { |
| 1901 | my $err = ''; |
| 1902 | my $sep = ''; |
| 1903 | my @ctx = ctx_block_outer($linenr, $realcnt); |
| 1904 | shift(@ctx); |
| 1905 | for my $ctx (@ctx) { |
| 1906 | my ($clen, $cindent) = line_stats($ctx); |
| 1907 | if ($ctx =~ /^\+\s*(case\s+|default:)/ && |
| 1908 | $indent != $cindent) { |
| 1909 | $err .= "$sep$ctx\n"; |
| 1910 | $sep = ''; |
| 1911 | } else { |
| 1912 | $sep = "[...]\n"; |
| 1913 | } |
| 1914 | } |
| 1915 | if ($err ne '') { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1916 | ERROR("SWITCH_CASE_INDENT_LEVEL", |
| 1917 | "switch and case should be at the same indent\n$hereline$err"); |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 1918 | } |
| 1919 | } |
| 1920 | |
| 1921 | # if/while/etc brace do not go on next line, unless defining a do while loop, |
| 1922 | # or if that brace on the next line is for something else |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 1923 | if ($line =~ /(.*)\b((?:if|while|for|switch)\s*\(|do\b|else\b)/ && $line !~ /^.\s*\#/) { |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1924 | my $pre_ctx = "$1$2"; |
| 1925 | |
Andy Whitcroft | 9c0ca6f | 2007-10-16 23:29:38 -0700 | [diff] [blame] | 1926 | my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0); |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 1927 | my $ctx_cnt = $realcnt - $#ctx - 1; |
| 1928 | my $ctx = join("\n", @ctx); |
| 1929 | |
Andy Whitcroft | 548596d | 2008-07-23 21:29:01 -0700 | [diff] [blame] | 1930 | my $ctx_ln = $linenr; |
| 1931 | my $ctx_skip = $realcnt; |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 1932 | |
Andy Whitcroft | 548596d | 2008-07-23 21:29:01 -0700 | [diff] [blame] | 1933 | while ($ctx_skip > $ctx_cnt || ($ctx_skip == $ctx_cnt && |
| 1934 | defined $lines[$ctx_ln - 1] && |
| 1935 | $lines[$ctx_ln - 1] =~ /^-/)) { |
| 1936 | ##print "SKIP<$ctx_skip> CNT<$ctx_cnt>\n"; |
| 1937 | $ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/); |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1938 | $ctx_ln++; |
| 1939 | } |
Andy Whitcroft | 548596d | 2008-07-23 21:29:01 -0700 | [diff] [blame] | 1940 | |
Andy Whitcroft | 5321016 | 2008-07-23 21:29:03 -0700 | [diff] [blame] | 1941 | #print "realcnt<$realcnt> ctx_cnt<$ctx_cnt>\n"; |
| 1942 | #print "pre<$pre_ctx>\nline<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>\n"; |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1943 | |
| 1944 | if ($ctx !~ /{\s*/ && defined($lines[$ctx_ln -1]) && $lines[$ctx_ln - 1] =~ /^\+\s*{/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1945 | ERROR("OPEN_BRACE", |
| 1946 | "that open brace { should be on the previous line\n" . |
Andy Whitcroft | 01464f3 | 2010-10-26 14:23:19 -0700 | [diff] [blame] | 1947 | "$here\n$ctx\n$rawlines[$ctx_ln - 1]\n"); |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 1948 | } |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 1949 | if ($level == 0 && $pre_ctx !~ /}\s*while\s*\($/ && |
| 1950 | $ctx =~ /\)\s*\;\s*$/ && |
| 1951 | defined $lines[$ctx_ln - 1]) |
| 1952 | { |
Andy Whitcroft | 9c0ca6f | 2007-10-16 23:29:38 -0700 | [diff] [blame] | 1953 | my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]); |
| 1954 | if ($nindent > $indent) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 1955 | WARN("TRAILING_SEMICOLON", |
| 1956 | "trailing semicolon indicates no statements, indent implies otherwise\n" . |
Andy Whitcroft | 01464f3 | 2010-10-26 14:23:19 -0700 | [diff] [blame] | 1957 | "$here\n$ctx\n$rawlines[$ctx_ln - 1]\n"); |
Andy Whitcroft | 9c0ca6f | 2007-10-16 23:29:38 -0700 | [diff] [blame] | 1958 | } |
| 1959 | } |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 1960 | } |
| 1961 | |
Andy Whitcroft | 4d001e4 | 2008-10-15 22:02:21 -0700 | [diff] [blame] | 1962 | # Check relative indent for conditionals and blocks. |
| 1963 | if ($line =~ /\b(?:(?:if|while|for)\s*\(|do\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) { |
Andy Whitcroft | 3e469cd | 2012-01-10 15:10:01 -0800 | [diff] [blame] | 1964 | ($stat, $cond, $line_nr_next, $remain_next, $off_next) = |
| 1965 | ctx_statement_block($linenr, $realcnt, 0) |
| 1966 | if (!defined $stat); |
Andy Whitcroft | 4d001e4 | 2008-10-15 22:02:21 -0700 | [diff] [blame] | 1967 | my ($s, $c) = ($stat, $cond); |
| 1968 | |
| 1969 | substr($s, 0, length($c), ''); |
| 1970 | |
| 1971 | # Make sure we remove the line prefixes as we have |
| 1972 | # none on the first line, and are going to readd them |
| 1973 | # where necessary. |
| 1974 | $s =~ s/\n./\n/gs; |
| 1975 | |
| 1976 | # Find out how long the conditional actually is. |
Andy Whitcroft | 6f779c1 | 2008-10-15 22:02:27 -0700 | [diff] [blame] | 1977 | my @newlines = ($c =~ /\n/gs); |
| 1978 | my $cond_lines = 1 + $#newlines; |
Andy Whitcroft | 4d001e4 | 2008-10-15 22:02:21 -0700 | [diff] [blame] | 1979 | |
| 1980 | # We want to check the first line inside the block |
| 1981 | # starting at the end of the conditional, so remove: |
| 1982 | # 1) any blank line termination |
| 1983 | # 2) any opening brace { on end of the line |
| 1984 | # 3) any do (...) { |
| 1985 | my $continuation = 0; |
| 1986 | my $check = 0; |
| 1987 | $s =~ s/^.*\bdo\b//; |
| 1988 | $s =~ s/^\s*{//; |
| 1989 | if ($s =~ s/^\s*\\//) { |
| 1990 | $continuation = 1; |
| 1991 | } |
Andy Whitcroft | 9bd49ef | 2008-10-15 22:02:22 -0700 | [diff] [blame] | 1992 | if ($s =~ s/^\s*?\n//) { |
Andy Whitcroft | 4d001e4 | 2008-10-15 22:02:21 -0700 | [diff] [blame] | 1993 | $check = 1; |
| 1994 | $cond_lines++; |
| 1995 | } |
| 1996 | |
| 1997 | # Also ignore a loop construct at the end of a |
| 1998 | # preprocessor statement. |
| 1999 | if (($prevline =~ /^.\s*#\s*define\s/ || |
| 2000 | $prevline =~ /\\\s*$/) && $continuation == 0) { |
| 2001 | $check = 0; |
| 2002 | } |
| 2003 | |
Andy Whitcroft | 9bd49ef | 2008-10-15 22:02:22 -0700 | [diff] [blame] | 2004 | my $cond_ptr = -1; |
Andy Whitcroft | 740504c | 2008-10-15 22:02:35 -0700 | [diff] [blame] | 2005 | $continuation = 0; |
Andy Whitcroft | 9bd49ef | 2008-10-15 22:02:22 -0700 | [diff] [blame] | 2006 | while ($cond_ptr != $cond_lines) { |
| 2007 | $cond_ptr = $cond_lines; |
Andy Whitcroft | 4d001e4 | 2008-10-15 22:02:21 -0700 | [diff] [blame] | 2008 | |
Andy Whitcroft | f16fa28 | 2008-10-15 22:02:32 -0700 | [diff] [blame] | 2009 | # If we see an #else/#elif then the code |
| 2010 | # is not linear. |
| 2011 | if ($s =~ /^\s*\#\s*(?:else|elif)/) { |
| 2012 | $check = 0; |
| 2013 | } |
| 2014 | |
Andy Whitcroft | 9bd49ef | 2008-10-15 22:02:22 -0700 | [diff] [blame] | 2015 | # Ignore: |
| 2016 | # 1) blank lines, they should be at 0, |
| 2017 | # 2) preprocessor lines, and |
| 2018 | # 3) labels. |
Andy Whitcroft | 740504c | 2008-10-15 22:02:35 -0700 | [diff] [blame] | 2019 | if ($continuation || |
| 2020 | $s =~ /^\s*?\n/ || |
Andy Whitcroft | 9bd49ef | 2008-10-15 22:02:22 -0700 | [diff] [blame] | 2021 | $s =~ /^\s*#\s*?/ || |
| 2022 | $s =~ /^\s*$Ident\s*:/) { |
Andy Whitcroft | 740504c | 2008-10-15 22:02:35 -0700 | [diff] [blame] | 2023 | $continuation = ($s =~ /^.*?\\\n/) ? 1 : 0; |
Andy Whitcroft | 30dad6e | 2009-09-21 17:04:36 -0700 | [diff] [blame] | 2024 | if ($s =~ s/^.*?\n//) { |
| 2025 | $cond_lines++; |
| 2026 | } |
Andy Whitcroft | 9bd49ef | 2008-10-15 22:02:22 -0700 | [diff] [blame] | 2027 | } |
Andy Whitcroft | 4d001e4 | 2008-10-15 22:02:21 -0700 | [diff] [blame] | 2028 | } |
| 2029 | |
| 2030 | my (undef, $sindent) = line_stats("+" . $s); |
| 2031 | my $stat_real = raw_line($linenr, $cond_lines); |
| 2032 | |
| 2033 | # Check if either of these lines are modified, else |
| 2034 | # this is not this patch's fault. |
| 2035 | if (!defined($stat_real) || |
| 2036 | $stat !~ /^\+/ && $stat_real !~ /^\+/) { |
| 2037 | $check = 0; |
| 2038 | } |
| 2039 | if (defined($stat_real) && $cond_lines > 1) { |
| 2040 | $stat_real = "[...]\n$stat_real"; |
| 2041 | } |
| 2042 | |
Andy Whitcroft | 9bd49ef | 2008-10-15 22:02:22 -0700 | [diff] [blame] | 2043 | #print "line<$line> prevline<$prevline> indent<$indent> sindent<$sindent> check<$check> continuation<$continuation> s<$s> cond_lines<$cond_lines> stat_real<$stat_real> stat<$stat>\n"; |
Andy Whitcroft | 4d001e4 | 2008-10-15 22:02:21 -0700 | [diff] [blame] | 2044 | |
| 2045 | if ($check && (($sindent % 8) != 0 || |
| 2046 | ($sindent <= $indent && $s ne ''))) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2047 | WARN("SUSPECT_CODE_INDENT", |
| 2048 | "suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n"); |
Andy Whitcroft | 4d001e4 | 2008-10-15 22:02:21 -0700 | [diff] [blame] | 2049 | } |
| 2050 | } |
| 2051 | |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 2052 | # Track the 'values' across context and added lines. |
| 2053 | my $opline = $line; $opline =~ s/^./ /; |
Andy Whitcroft | 1f65f94 | 2008-07-23 21:29:10 -0700 | [diff] [blame] | 2054 | my ($curr_values, $curr_vars) = |
| 2055 | annotate_values($opline . "\n", $prev_values); |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 2056 | $curr_values = $prev_values . $curr_values; |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 2057 | if ($dbg_values) { |
| 2058 | my $outline = $opline; $outline =~ s/\t/ /g; |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2059 | print "$linenr > .$outline\n"; |
| 2060 | print "$linenr > $curr_values\n"; |
Andy Whitcroft | 1f65f94 | 2008-07-23 21:29:10 -0700 | [diff] [blame] | 2061 | print "$linenr > $curr_vars\n"; |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 2062 | } |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 2063 | $prev_values = substr($curr_values, -1); |
| 2064 | |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 2065 | #ignore lines not being added |
| 2066 | if ($line=~/^[^\+]/) {next;} |
| 2067 | |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 2068 | # TEST: allow direct testing of the type matcher. |
Andy Whitcroft | 7429c69 | 2008-07-23 21:29:06 -0700 | [diff] [blame] | 2069 | if ($dbg_type) { |
| 2070 | if ($line =~ /^.\s*$Declare\s*$/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2071 | ERROR("TEST_TYPE", |
| 2072 | "TEST: is type\n" . $herecurr); |
Andy Whitcroft | 7429c69 | 2008-07-23 21:29:06 -0700 | [diff] [blame] | 2073 | } elsif ($dbg_type > 1 && $line =~ /^.+($Declare)/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2074 | ERROR("TEST_NOT_TYPE", |
| 2075 | "TEST: is not type ($1 is)\n". $herecurr); |
Andy Whitcroft | 7429c69 | 2008-07-23 21:29:06 -0700 | [diff] [blame] | 2076 | } |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 2077 | next; |
| 2078 | } |
Andy Whitcroft | a1ef277 | 2008-10-15 22:02:17 -0700 | [diff] [blame] | 2079 | # TEST: allow direct testing of the attribute matcher. |
| 2080 | if ($dbg_attr) { |
Andy Whitcroft | 9360b0e | 2009-02-27 14:03:08 -0800 | [diff] [blame] | 2081 | if ($line =~ /^.\s*$Modifier\s*$/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2082 | ERROR("TEST_ATTR", |
| 2083 | "TEST: is attr\n" . $herecurr); |
Andy Whitcroft | 9360b0e | 2009-02-27 14:03:08 -0800 | [diff] [blame] | 2084 | } elsif ($dbg_attr > 1 && $line =~ /^.+($Modifier)/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2085 | ERROR("TEST_NOT_ATTR", |
| 2086 | "TEST: is not attr ($1 is)\n". $herecurr); |
Andy Whitcroft | a1ef277 | 2008-10-15 22:02:17 -0700 | [diff] [blame] | 2087 | } |
| 2088 | next; |
| 2089 | } |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 2090 | |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 2091 | # check for initialisation to aggregates open brace on the next line |
Andy Whitcroft | 99423c2 | 2009-10-26 16:50:15 -0700 | [diff] [blame] | 2092 | if ($line =~ /^.\s*{/ && |
| 2093 | $prevline =~ /(?:^|[^=])=\s*$/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2094 | ERROR("OPEN_BRACE", |
| 2095 | "that open brace { should be on the previous line\n" . $hereprev); |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 2096 | } |
| 2097 | |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 2098 | # |
| 2099 | # Checks which are anchored on the added line. |
| 2100 | # |
| 2101 | |
| 2102 | # check for malformed paths in #include statements (uses RAW line) |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2103 | if ($rawline =~ m{^.\s*\#\s*include\s+[<"](.*)[">]}) { |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 2104 | my $path = $1; |
| 2105 | if ($path =~ m{//}) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2106 | ERROR("MALFORMED_INCLUDE", |
| 2107 | "malformed #include filename\n" . |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 2108 | $herecurr); |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 2109 | } |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 2110 | } |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 2111 | |
| 2112 | # no C99 // comments |
| 2113 | if ($line =~ m{//}) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2114 | ERROR("C99_COMMENTS", |
| 2115 | "do not use C99 // comments\n" . $herecurr); |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 2116 | } |
| 2117 | # Remove C99 comments. |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2118 | $line =~ s@//.*@@; |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 2119 | $opline =~ s@//.*@@; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2120 | |
Andy Whitcroft | 2b474a1 | 2009-10-26 16:50:16 -0700 | [diff] [blame] | 2121 | # EXPORT_SYMBOL should immediately follow the thing it is exporting, consider |
| 2122 | # the whole statement. |
| 2123 | #print "APW <$lines[$realline_next - 1]>\n"; |
| 2124 | if (defined $realline_next && |
| 2125 | exists $lines[$realline_next - 1] && |
| 2126 | !defined $suppress_export{$realline_next} && |
| 2127 | ($lines[$realline_next - 1] =~ /EXPORT_SYMBOL.*\((.*)\)/ || |
| 2128 | $lines[$realline_next - 1] =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) { |
Andy Whitcroft | 3cbf62d | 2010-10-26 14:23:18 -0700 | [diff] [blame] | 2129 | # Handle definitions which produce identifiers with |
| 2130 | # a prefix: |
| 2131 | # XXX(foo); |
| 2132 | # EXPORT_SYMBOL(something_foo); |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 2133 | my $name = $1; |
Andy Whitcroft | 87a5387 | 2012-01-10 15:10:04 -0800 | [diff] [blame] | 2134 | if ($stat =~ /^(?:.\s*}\s*\n)?.([A-Z_]+)\s*\(\s*($Ident)/ && |
Andy Whitcroft | 3cbf62d | 2010-10-26 14:23:18 -0700 | [diff] [blame] | 2135 | $name =~ /^${Ident}_$2/) { |
| 2136 | #print "FOO C name<$name>\n"; |
| 2137 | $suppress_export{$realline_next} = 1; |
| 2138 | |
| 2139 | } elsif ($stat !~ /(?: |
Andy Whitcroft | 2b474a1 | 2009-10-26 16:50:16 -0700 | [diff] [blame] | 2140 | \n.}\s*$| |
Andy Whitcroft | 4801205 | 2008-10-15 22:02:34 -0700 | [diff] [blame] | 2141 | ^.DEFINE_$Ident\(\Q$name\E\)| |
| 2142 | ^.DECLARE_$Ident\(\Q$name\E\)| |
| 2143 | ^.LIST_HEAD\(\Q$name\E\)| |
Andy Whitcroft | 2b474a1 | 2009-10-26 16:50:16 -0700 | [diff] [blame] | 2144 | ^.(?:$Storage\s+)?$Type\s*\(\s*\*\s*\Q$name\E\s*\)\s*\(| |
| 2145 | \b\Q$name\E(?:\s+$Attribute)*\s*(?:;|=|\[|\() |
Andy Whitcroft | 4801205 | 2008-10-15 22:02:34 -0700 | [diff] [blame] | 2146 | )/x) { |
Andy Whitcroft | 2b474a1 | 2009-10-26 16:50:16 -0700 | [diff] [blame] | 2147 | #print "FOO A<$lines[$realline_next - 1]> stat<$stat> name<$name>\n"; |
| 2148 | $suppress_export{$realline_next} = 2; |
| 2149 | } else { |
| 2150 | $suppress_export{$realline_next} = 1; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2151 | } |
| 2152 | } |
Andy Whitcroft | 2b474a1 | 2009-10-26 16:50:16 -0700 | [diff] [blame] | 2153 | if (!defined $suppress_export{$linenr} && |
| 2154 | $prevline =~ /^.\s*$/ && |
| 2155 | ($line =~ /EXPORT_SYMBOL.*\((.*)\)/ || |
| 2156 | $line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) { |
| 2157 | #print "FOO B <$lines[$linenr - 1]>\n"; |
| 2158 | $suppress_export{$linenr} = 2; |
| 2159 | } |
| 2160 | if (defined $suppress_export{$linenr} && |
| 2161 | $suppress_export{$linenr} == 2) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2162 | WARN("EXPORT_SYMBOL", |
| 2163 | "EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr); |
Andy Whitcroft | 2b474a1 | 2009-10-26 16:50:16 -0700 | [diff] [blame] | 2164 | } |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2165 | |
Joe Eloff | 5150bda | 2010-08-09 17:21:00 -0700 | [diff] [blame] | 2166 | # check for global initialisers. |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2167 | if ($line =~ /^.$Type\s*$Ident\s*(?:\s+$Modifier)*\s*=\s*(0|NULL|false)\s*;/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2168 | ERROR("GLOBAL_INITIALISERS", |
| 2169 | "do not initialise globals to 0 or NULL\n" . |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 2170 | $herecurr); |
| 2171 | } |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 2172 | # check for static initialisers. |
Andy Whitcroft | 2d1bafd7 | 2009-01-06 14:41:28 -0800 | [diff] [blame] | 2173 | if ($line =~ /\bstatic\s.*=\s*(0|NULL|false)\s*;/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2174 | ERROR("INITIALISED_STATIC", |
| 2175 | "do not initialise statics to 0 or NULL\n" . |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 2176 | $herecurr); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2177 | } |
| 2178 | |
Joe Perches | cb710ec | 2010-10-26 14:23:20 -0700 | [diff] [blame] | 2179 | # check for static const char * arrays. |
| 2180 | if ($line =~ /\bstatic\s+const\s+char\s*\*\s*(\w+)\s*\[\s*\]\s*=\s*/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2181 | WARN("STATIC_CONST_CHAR_ARRAY", |
| 2182 | "static const char * array should probably be static const char * const\n" . |
Joe Perches | cb710ec | 2010-10-26 14:23:20 -0700 | [diff] [blame] | 2183 | $herecurr); |
| 2184 | } |
| 2185 | |
| 2186 | # check for static char foo[] = "bar" declarations. |
| 2187 | if ($line =~ /\bstatic\s+char\s+(\w+)\s*\[\s*\]\s*=\s*"/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2188 | WARN("STATIC_CONST_CHAR_ARRAY", |
| 2189 | "static char array declaration should probably be static const char\n" . |
Joe Perches | cb710ec | 2010-10-26 14:23:20 -0700 | [diff] [blame] | 2190 | $herecurr); |
| 2191 | } |
| 2192 | |
Joe Perches | 93ed0e2 | 2010-10-26 14:23:21 -0700 | [diff] [blame] | 2193 | # check for declarations of struct pci_device_id |
| 2194 | if ($line =~ /\bstruct\s+pci_device_id\s+\w+\s*\[\s*\]\s*\=\s*\{/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2195 | WARN("DEFINE_PCI_DEVICE_TABLE", |
| 2196 | "Use DEFINE_PCI_DEVICE_TABLE for struct pci_device_id\n" . $herecurr); |
Joe Perches | 93ed0e2 | 2010-10-26 14:23:21 -0700 | [diff] [blame] | 2197 | } |
| 2198 | |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 2199 | # check for new typedefs, only function parameters and sparse annotations |
| 2200 | # make sense. |
| 2201 | if ($line =~ /\btypedef\s/ && |
Andy Whitcroft | 8054576 | 2009-01-06 14:41:26 -0800 | [diff] [blame] | 2202 | $line !~ /\btypedef\s+$Type\s*\(\s*\*?$Ident\s*\)\s*\(/ && |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2203 | $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ && |
Andy Whitcroft | 8ed22ca | 2008-10-15 22:02:32 -0700 | [diff] [blame] | 2204 | $line !~ /\b$typeTypedefs\b/ && |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 2205 | $line !~ /\b__bitwise(?:__|)\b/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2206 | WARN("NEW_TYPEDEFS", |
| 2207 | "do not add new typedefs\n" . $herecurr); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2208 | } |
| 2209 | |
| 2210 | # * goes on variable not on type |
Andy Whitcroft | 6586386 | 2009-01-06 14:41:21 -0800 | [diff] [blame] | 2211 | # (char*[ const]) |
Andy Whitcroft | bfcb2cc | 2012-01-10 15:10:15 -0800 | [diff] [blame] | 2212 | while ($line =~ m{(\($NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)\))}g) { |
| 2213 | #print "AA<$1>\n"; |
| 2214 | my ($from, $to) = ($2, $2); |
Andy Whitcroft | d8aaf12 | 2007-06-23 17:16:44 -0700 | [diff] [blame] | 2215 | |
Andy Whitcroft | 6586386 | 2009-01-06 14:41:21 -0800 | [diff] [blame] | 2216 | # Should start with a space. |
| 2217 | $to =~ s/^(\S)/ $1/; |
| 2218 | # Should not end with a space. |
| 2219 | $to =~ s/\s+$//; |
| 2220 | # '*'s should not have spaces between. |
Andy Whitcroft | f9a0b3d | 2009-01-15 13:51:05 -0800 | [diff] [blame] | 2221 | while ($to =~ s/\*\s+\*/\*\*/) { |
Andy Whitcroft | 6586386 | 2009-01-06 14:41:21 -0800 | [diff] [blame] | 2222 | } |
Andy Whitcroft | d8aaf12 | 2007-06-23 17:16:44 -0700 | [diff] [blame] | 2223 | |
Andy Whitcroft | 6586386 | 2009-01-06 14:41:21 -0800 | [diff] [blame] | 2224 | #print "from<$from> to<$to>\n"; |
| 2225 | if ($from ne $to) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2226 | ERROR("POINTER_LOCATION", |
| 2227 | "\"(foo$from)\" should be \"(foo$to)\"\n" . $herecurr); |
Andy Whitcroft | 6586386 | 2009-01-06 14:41:21 -0800 | [diff] [blame] | 2228 | } |
Andy Whitcroft | bfcb2cc | 2012-01-10 15:10:15 -0800 | [diff] [blame] | 2229 | } |
| 2230 | while ($line =~ m{(\b$NonptrType(\s*(?:$Modifier\b\s*|\*\s*)+)($Ident))}g) { |
| 2231 | #print "BB<$1>\n"; |
| 2232 | my ($from, $to, $ident) = ($2, $2, $3); |
Andy Whitcroft | d8aaf12 | 2007-06-23 17:16:44 -0700 | [diff] [blame] | 2233 | |
Andy Whitcroft | 6586386 | 2009-01-06 14:41:21 -0800 | [diff] [blame] | 2234 | # Should start with a space. |
| 2235 | $to =~ s/^(\S)/ $1/; |
| 2236 | # Should not end with a space. |
| 2237 | $to =~ s/\s+$//; |
| 2238 | # '*'s should not have spaces between. |
Andy Whitcroft | f9a0b3d | 2009-01-15 13:51:05 -0800 | [diff] [blame] | 2239 | while ($to =~ s/\*\s+\*/\*\*/) { |
Andy Whitcroft | 6586386 | 2009-01-06 14:41:21 -0800 | [diff] [blame] | 2240 | } |
| 2241 | # Modifiers should have spaces. |
| 2242 | $to =~ s/(\b$Modifier$)/$1 /; |
| 2243 | |
Andy Whitcroft | 667026e | 2009-02-27 14:03:08 -0800 | [diff] [blame] | 2244 | #print "from<$from> to<$to> ident<$ident>\n"; |
| 2245 | if ($from ne $to && $ident !~ /^$Modifier$/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2246 | ERROR("POINTER_LOCATION", |
| 2247 | "\"foo${from}bar\" should be \"foo${to}bar\"\n" . $herecurr); |
Andy Whitcroft | 6586386 | 2009-01-06 14:41:21 -0800 | [diff] [blame] | 2248 | } |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2249 | } |
| 2250 | |
| 2251 | # # no BUG() or BUG_ON() |
| 2252 | # if ($line =~ /\b(BUG|BUG_ON)\b/) { |
| 2253 | # print "Try to use WARN_ON & Recovery code rather than BUG() or BUG_ON()\n"; |
| 2254 | # print "$herecurr"; |
| 2255 | # $clean = 0; |
| 2256 | # } |
| 2257 | |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 2258 | if ($line =~ /\bLINUX_VERSION_CODE\b/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2259 | WARN("LINUX_VERSION_CODE", |
| 2260 | "LINUX_VERSION_CODE should be avoided, code should be for the version to which it is merged\n" . $herecurr); |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 2261 | } |
| 2262 | |
Joe Perches | 1744122 | 2011-06-15 15:08:17 -0700 | [diff] [blame] | 2263 | # check for uses of printk_ratelimit |
| 2264 | if ($line =~ /\bprintk_ratelimit\s*\(/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2265 | WARN("PRINTK_RATELIMITED", |
| 2266 | "Prefer printk_ratelimited or pr_<level>_ratelimited to printk_ratelimit\n" . $herecurr); |
Joe Perches | 1744122 | 2011-06-15 15:08:17 -0700 | [diff] [blame] | 2267 | } |
| 2268 | |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 2269 | # printk should use KERN_* levels. Note that follow on printk's on the |
| 2270 | # same line do not need a level, so we use the current block context |
| 2271 | # to try and find and validate the current printk. In summary the current |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2272 | # printk includes all preceding printk's which have no newline on the end. |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 2273 | # we assume the first bad printk is the one to report. |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 2274 | if ($line =~ /\bprintk\((?!KERN_)\s*"/) { |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 2275 | my $ok = 0; |
| 2276 | for (my $ln = $linenr - 1; $ln >= $first_line; $ln--) { |
| 2277 | #print "CHECK<$lines[$ln - 1]\n"; |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2278 | # we have a preceding printk if it ends |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 2279 | # with "\n" ignore it, else it is to blame |
| 2280 | if ($lines[$ln - 1] =~ m{\bprintk\(}) { |
| 2281 | if ($rawlines[$ln - 1] !~ m{\\n"}) { |
| 2282 | $ok = 1; |
| 2283 | } |
| 2284 | last; |
| 2285 | } |
| 2286 | } |
| 2287 | if ($ok == 0) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2288 | WARN("PRINTK_WITHOUT_KERN_LEVEL", |
| 2289 | "printk() should include KERN_ facility level\n" . $herecurr); |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 2290 | } |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2291 | } |
| 2292 | |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 2293 | # function brace can't be on same line, except for #defines of do while, |
| 2294 | # or if closed on same line |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2295 | if (($line=~/$Type\s*$Ident\(.*\).*\s{/) and |
| 2296 | !($line=~/\#\s*define.*do\s{/) and !($line=~/}/)) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2297 | ERROR("OPEN_BRACE", |
| 2298 | "open brace '{' following function declarations go on the next line\n" . $herecurr); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2299 | } |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 2300 | |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 2301 | # open braces for enum, union and struct go on the same line. |
| 2302 | if ($line =~ /^.\s*{/ && |
| 2303 | $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2304 | ERROR("OPEN_BRACE", |
| 2305 | "open brace '{' following $1 go on the same line\n" . $hereprev); |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 2306 | } |
| 2307 | |
Andy Whitcroft | 0c73b4e | 2010-10-26 14:23:15 -0700 | [diff] [blame] | 2308 | # missing space after union, struct or enum definition |
| 2309 | if ($line =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?(?:\s+$Ident)?[=\{]/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2310 | WARN("SPACING", |
| 2311 | "missing space after $1 definition\n" . $herecurr); |
Andy Whitcroft | 0c73b4e | 2010-10-26 14:23:15 -0700 | [diff] [blame] | 2312 | } |
| 2313 | |
Andy Whitcroft | 8d31cfc | 2008-07-23 21:29:02 -0700 | [diff] [blame] | 2314 | # check for spacing round square brackets; allowed: |
| 2315 | # 1. with a type on the left -- int [] a; |
Andy Whitcroft | fe2a7db | 2008-10-15 22:02:15 -0700 | [diff] [blame] | 2316 | # 2. at the beginning of a line for slice initialisers -- [0...10] = 5, |
| 2317 | # 3. inside a curly brace -- = { [0...10] = 5 } |
Andy Whitcroft | 8d31cfc | 2008-07-23 21:29:02 -0700 | [diff] [blame] | 2318 | while ($line =~ /(.*?\s)\[/g) { |
| 2319 | my ($where, $prefix) = ($-[1], $1); |
| 2320 | if ($prefix !~ /$Type\s+$/ && |
Andy Whitcroft | fe2a7db | 2008-10-15 22:02:15 -0700 | [diff] [blame] | 2321 | ($where != 0 || $prefix !~ /^.\s+$/) && |
| 2322 | $prefix !~ /{\s+$/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2323 | ERROR("BRACKET_SPACE", |
| 2324 | "space prohibited before open square bracket '['\n" . $herecurr); |
Andy Whitcroft | 8d31cfc | 2008-07-23 21:29:02 -0700 | [diff] [blame] | 2325 | } |
| 2326 | } |
| 2327 | |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 2328 | # check for spaces between functions and their parentheses. |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 2329 | while ($line =~ /($Ident)\s+\(/g) { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 2330 | my $name = $1; |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 2331 | my $ctx_before = substr($line, 0, $-[1]); |
| 2332 | my $ctx = "$ctx_before$name"; |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 2333 | |
| 2334 | # Ignore those directives where spaces _are_ permitted. |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 2335 | if ($name =~ /^(?: |
| 2336 | if|for|while|switch|return|case| |
| 2337 | volatile|__volatile__| |
| 2338 | __attribute__|format|__extension__| |
| 2339 | asm|__asm__)$/x) |
| 2340 | { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 2341 | |
| 2342 | # cpp #define statements have non-optional spaces, ie |
| 2343 | # if there is a space between the name and the open |
| 2344 | # parenthesis it is simply not a parameter group. |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2345 | } elsif ($ctx_before =~ /^.\s*\#\s*define\s*$/) { |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 2346 | |
| 2347 | # cpp #elif statement condition may start with a ( |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2348 | } elsif ($ctx =~ /^.\s*\#\s*elif\s*$/) { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 2349 | |
| 2350 | # If this whole things ends with a type its most |
| 2351 | # likely a typedef for a function. |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 2352 | } elsif ($ctx =~ /$Type$/) { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 2353 | |
| 2354 | } else { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2355 | WARN("SPACING", |
| 2356 | "space prohibited between function name and open parenthesis '('\n" . $herecurr); |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 2357 | } |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 2358 | } |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 2359 | # Check operator spacing. |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2360 | if (!($line=~/\#\s*include/)) { |
Andy Whitcroft | 9c0ca6f | 2007-10-16 23:29:38 -0700 | [diff] [blame] | 2361 | my $ops = qr{ |
| 2362 | <<=|>>=|<=|>=|==|!=| |
| 2363 | \+=|-=|\*=|\/=|%=|\^=|\|=|&=| |
| 2364 | =>|->|<<|>>|<|>|=|!|~| |
Andy Whitcroft | 1f65f94 | 2008-07-23 21:29:10 -0700 | [diff] [blame] | 2365 | &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%| |
| 2366 | \?|: |
Andy Whitcroft | 9c0ca6f | 2007-10-16 23:29:38 -0700 | [diff] [blame] | 2367 | }x; |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2368 | my @elements = split(/($ops|;)/, $opline); |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 2369 | my $off = 0; |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 2370 | |
| 2371 | my $blank = copy_spacing($opline); |
| 2372 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2373 | for (my $n = 0; $n < $#elements; $n += 2) { |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 2374 | $off += length($elements[$n]); |
| 2375 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2376 | # Pick up the preceding and succeeding characters. |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 2377 | my $ca = substr($opline, 0, $off); |
| 2378 | my $cc = ''; |
| 2379 | if (length($opline) >= ($off + length($elements[$n + 1]))) { |
| 2380 | $cc = substr($opline, $off + length($elements[$n + 1])); |
| 2381 | } |
| 2382 | my $cb = "$ca$;$cc"; |
| 2383 | |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 2384 | my $a = ''; |
| 2385 | $a = 'V' if ($elements[$n] ne ''); |
| 2386 | $a = 'W' if ($elements[$n] =~ /\s$/); |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2387 | $a = 'C' if ($elements[$n] =~ /$;$/); |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 2388 | $a = 'B' if ($elements[$n] =~ /(\[|\()$/); |
| 2389 | $a = 'O' if ($elements[$n] eq ''); |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 2390 | $a = 'E' if ($ca =~ /^\s*$/); |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 2391 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2392 | my $op = $elements[$n + 1]; |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 2393 | |
| 2394 | my $c = ''; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2395 | if (defined $elements[$n + 2]) { |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 2396 | $c = 'V' if ($elements[$n + 2] ne ''); |
| 2397 | $c = 'W' if ($elements[$n + 2] =~ /^\s/); |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2398 | $c = 'C' if ($elements[$n + 2] =~ /^$;/); |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 2399 | $c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/); |
| 2400 | $c = 'O' if ($elements[$n + 2] eq ''); |
Andy Whitcroft | 8b1b337 | 2009-01-06 14:41:27 -0800 | [diff] [blame] | 2401 | $c = 'E' if ($elements[$n + 2] =~ /^\s*\\$/); |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 2402 | } else { |
| 2403 | $c = 'E'; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2404 | } |
| 2405 | |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 2406 | my $ctx = "${a}x${c}"; |
| 2407 | |
| 2408 | my $at = "(ctx:$ctx)"; |
| 2409 | |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 2410 | my $ptr = substr($blank, 0, $off) . "^"; |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 2411 | my $hereptr = "$hereline$ptr\n"; |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2412 | |
Andy Whitcroft | 74048ed | 2008-07-23 21:29:10 -0700 | [diff] [blame] | 2413 | # Pull out the value of this operator. |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 2414 | my $op_type = substr($curr_values, $off + 1, 1); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2415 | |
Andy Whitcroft | 1f65f94 | 2008-07-23 21:29:10 -0700 | [diff] [blame] | 2416 | # Get the full operator variant. |
| 2417 | my $opv = $op . substr($curr_vars, $off, 1); |
| 2418 | |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 2419 | # Ignore operators passed as parameters. |
| 2420 | if ($op_type ne 'V' && |
| 2421 | $ca =~ /\s$/ && $cc =~ /^\s*,/) { |
| 2422 | |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2423 | # # Ignore comments |
| 2424 | # } elsif ($op =~ /^$;+$/) { |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 2425 | |
Andy Whitcroft | d8aaf12 | 2007-06-23 17:16:44 -0700 | [diff] [blame] | 2426 | # ; should have either the end of line or a space or \ after it |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 2427 | } elsif ($op eq ';') { |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2428 | if ($ctx !~ /.x[WEBC]/ && |
| 2429 | $cc !~ /^\\/ && $cc !~ /^;/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2430 | ERROR("SPACING", |
| 2431 | "space required after that '$op' $at\n" . $hereptr); |
Andy Whitcroft | d8aaf12 | 2007-06-23 17:16:44 -0700 | [diff] [blame] | 2432 | } |
| 2433 | |
| 2434 | # // is a comment |
| 2435 | } elsif ($op eq '//') { |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2436 | |
Andy Whitcroft | 1f65f94 | 2008-07-23 21:29:10 -0700 | [diff] [blame] | 2437 | # No spaces for: |
| 2438 | # -> |
| 2439 | # : when part of a bitfield |
| 2440 | } elsif ($op eq '->' || $opv eq ':B') { |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 2441 | if ($ctx =~ /Wx.|.xW/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2442 | ERROR("SPACING", |
| 2443 | "spaces prohibited around that '$op' $at\n" . $hereptr); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2444 | } |
| 2445 | |
| 2446 | # , must have a space on the right. |
| 2447 | } elsif ($op eq ',') { |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2448 | if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2449 | ERROR("SPACING", |
| 2450 | "space required after that '$op' $at\n" . $hereptr); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2451 | } |
| 2452 | |
Andy Whitcroft | 9c0ca6f | 2007-10-16 23:29:38 -0700 | [diff] [blame] | 2453 | # '*' as part of a type definition -- reported already. |
Andy Whitcroft | 74048ed | 2008-07-23 21:29:10 -0700 | [diff] [blame] | 2454 | } elsif ($opv eq '*_') { |
Andy Whitcroft | 9c0ca6f | 2007-10-16 23:29:38 -0700 | [diff] [blame] | 2455 | #warn "'*' is part of type\n"; |
| 2456 | |
| 2457 | # unary operators should have a space before and |
| 2458 | # none after. May be left adjacent to another |
| 2459 | # unary operator, or a cast |
| 2460 | } elsif ($op eq '!' || $op eq '~' || |
Andy Whitcroft | 74048ed | 2008-07-23 21:29:10 -0700 | [diff] [blame] | 2461 | $opv eq '*U' || $opv eq '-U' || |
Andy Whitcroft | 0d41386 | 2008-10-15 22:02:16 -0700 | [diff] [blame] | 2462 | $opv eq '&U' || $opv eq '&&U') { |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2463 | if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2464 | ERROR("SPACING", |
| 2465 | "space required before that '$op' $at\n" . $hereptr); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2466 | } |
Andy Whitcroft | a3340b3 | 2009-02-27 14:03:07 -0800 | [diff] [blame] | 2467 | if ($op eq '*' && $cc =~/\s*$Modifier\b/) { |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 2468 | # A unary '*' may be const |
| 2469 | |
| 2470 | } elsif ($ctx =~ /.xW/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2471 | ERROR("SPACING", |
| 2472 | "space prohibited after that '$op' $at\n" . $hereptr); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2473 | } |
| 2474 | |
| 2475 | # unary ++ and unary -- are allowed no space on one side. |
| 2476 | } elsif ($op eq '++' or $op eq '--') { |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 2477 | if ($ctx !~ /[WEOBC]x[^W]/ && $ctx !~ /[^W]x[WOBEC]/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2478 | ERROR("SPACING", |
| 2479 | "space required one side of that '$op' $at\n" . $hereptr); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2480 | } |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 2481 | if ($ctx =~ /Wx[BE]/ || |
| 2482 | ($ctx =~ /Wx./ && $cc =~ /^;/)) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2483 | ERROR("SPACING", |
| 2484 | "space prohibited before that '$op' $at\n" . $hereptr); |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 2485 | } |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 2486 | if ($ctx =~ /ExW/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2487 | ERROR("SPACING", |
| 2488 | "space prohibited after that '$op' $at\n" . $hereptr); |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 2489 | } |
| 2490 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2491 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2492 | # << and >> may either have or not have spaces both sides |
Andy Whitcroft | 9c0ca6f | 2007-10-16 23:29:38 -0700 | [diff] [blame] | 2493 | } elsif ($op eq '<<' or $op eq '>>' or |
| 2494 | $op eq '&' or $op eq '^' or $op eq '|' or |
| 2495 | $op eq '+' or $op eq '-' or |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 2496 | $op eq '*' or $op eq '/' or |
| 2497 | $op eq '%') |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2498 | { |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 2499 | if ($ctx =~ /Wx[^WCE]|[^WCE]xW/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2500 | ERROR("SPACING", |
| 2501 | "need consistent spacing around '$op' $at\n" . |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 2502 | $hereptr); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2503 | } |
| 2504 | |
Andy Whitcroft | 1f65f94 | 2008-07-23 21:29:10 -0700 | [diff] [blame] | 2505 | # A colon needs no spaces before when it is |
| 2506 | # terminating a case value or a label. |
| 2507 | } elsif ($opv eq ':C' || $opv eq ':L') { |
| 2508 | if ($ctx =~ /Wx./) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2509 | ERROR("SPACING", |
| 2510 | "space prohibited before that '$op' $at\n" . $hereptr); |
Andy Whitcroft | 1f65f94 | 2008-07-23 21:29:10 -0700 | [diff] [blame] | 2511 | } |
| 2512 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2513 | # All the others need spaces both sides. |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2514 | } elsif ($ctx !~ /[EWC]x[CWE]/) { |
Andy Whitcroft | 1f65f94 | 2008-07-23 21:29:10 -0700 | [diff] [blame] | 2515 | my $ok = 0; |
| 2516 | |
Andy Whitcroft | 22f2a2e | 2007-08-10 13:01:03 -0700 | [diff] [blame] | 2517 | # Ignore email addresses <foo@bar> |
Andy Whitcroft | 1f65f94 | 2008-07-23 21:29:10 -0700 | [diff] [blame] | 2518 | if (($op eq '<' && |
| 2519 | $cc =~ /^\S+\@\S+>/) || |
| 2520 | ($op eq '>' && |
| 2521 | $ca =~ /<\S+\@\S+$/)) |
| 2522 | { |
| 2523 | $ok = 1; |
| 2524 | } |
| 2525 | |
| 2526 | # Ignore ?: |
| 2527 | if (($opv eq ':O' && $ca =~ /\?$/) || |
| 2528 | ($op eq '?' && $cc =~ /^:/)) { |
| 2529 | $ok = 1; |
| 2530 | } |
| 2531 | |
| 2532 | if ($ok == 0) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2533 | ERROR("SPACING", |
| 2534 | "spaces required around that '$op' $at\n" . $hereptr); |
Andy Whitcroft | 22f2a2e | 2007-08-10 13:01:03 -0700 | [diff] [blame] | 2535 | } |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2536 | } |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 2537 | $off += length($elements[$n + 1]); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2538 | } |
| 2539 | } |
| 2540 | |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 2541 | # check for multiple assignments |
| 2542 | if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2543 | CHK("MULTIPLE_ASSIGNMENTS", |
| 2544 | "multiple assignments should be avoided\n" . $herecurr); |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 2545 | } |
| 2546 | |
Andy Whitcroft | 22f2a2e | 2007-08-10 13:01:03 -0700 | [diff] [blame] | 2547 | ## # check for multiple declarations, allowing for a function declaration |
| 2548 | ## # continuation. |
| 2549 | ## if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ && |
| 2550 | ## $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) { |
| 2551 | ## |
| 2552 | ## # Remove any bracketed sections to ensure we do not |
| 2553 | ## # falsly report the parameters of functions. |
| 2554 | ## my $ln = $line; |
| 2555 | ## while ($ln =~ s/\([^\(\)]*\)//g) { |
| 2556 | ## } |
| 2557 | ## if ($ln =~ /,/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2558 | ## WARN("MULTIPLE_DECLARATION", |
| 2559 | ## "declaring multiple variables together should be avoided\n" . $herecurr); |
Andy Whitcroft | 22f2a2e | 2007-08-10 13:01:03 -0700 | [diff] [blame] | 2560 | ## } |
| 2561 | ## } |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 2562 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2563 | #need space before brace following if, while, etc |
Andy Whitcroft | 22f2a2e | 2007-08-10 13:01:03 -0700 | [diff] [blame] | 2564 | if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) || |
| 2565 | $line =~ /do{/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2566 | ERROR("SPACING", |
| 2567 | "space required before the open brace '{'\n" . $herecurr); |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 2568 | } |
| 2569 | |
| 2570 | # closing brace should have a space following it when it has anything |
| 2571 | # on the line |
| 2572 | if ($line =~ /}(?!(?:,|;|\)))\S/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2573 | ERROR("SPACING", |
| 2574 | "space required after that close brace '}'\n" . $herecurr); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2575 | } |
| 2576 | |
Andy Whitcroft | 22f2a2e | 2007-08-10 13:01:03 -0700 | [diff] [blame] | 2577 | # check spacing on square brackets |
| 2578 | if ($line =~ /\[\s/ && $line !~ /\[\s*$/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2579 | ERROR("SPACING", |
| 2580 | "space prohibited after that open square bracket '['\n" . $herecurr); |
Andy Whitcroft | 22f2a2e | 2007-08-10 13:01:03 -0700 | [diff] [blame] | 2581 | } |
| 2582 | if ($line =~ /\s\]/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2583 | ERROR("SPACING", |
| 2584 | "space prohibited before that close square bracket ']'\n" . $herecurr); |
Andy Whitcroft | 22f2a2e | 2007-08-10 13:01:03 -0700 | [diff] [blame] | 2585 | } |
| 2586 | |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2587 | # check spacing on parentheses |
Andy Whitcroft | 9c0ca6f | 2007-10-16 23:29:38 -0700 | [diff] [blame] | 2588 | if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ && |
| 2589 | $line !~ /for\s*\(\s+;/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2590 | ERROR("SPACING", |
| 2591 | "space prohibited after that open parenthesis '('\n" . $herecurr); |
Andy Whitcroft | 22f2a2e | 2007-08-10 13:01:03 -0700 | [diff] [blame] | 2592 | } |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 2593 | if ($line =~ /(\s+)\)/ && $line !~ /^.\s*\)/ && |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2594 | $line !~ /for\s*\(.*;\s+\)/ && |
| 2595 | $line !~ /:\s+\)/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2596 | ERROR("SPACING", |
| 2597 | "space prohibited before that close parenthesis ')'\n" . $herecurr); |
Andy Whitcroft | 22f2a2e | 2007-08-10 13:01:03 -0700 | [diff] [blame] | 2598 | } |
| 2599 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2600 | #goto labels aren't indented, allow a single space however |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 2601 | if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2602 | !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2603 | WARN("INDENTED_LABEL", |
| 2604 | "labels should not be indented\n" . $herecurr); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2605 | } |
| 2606 | |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2607 | # Return is not a function. |
| 2608 | if (defined($stat) && $stat =~ /^.\s*return(\s*)(\(.*);/s) { |
| 2609 | my $spacing = $1; |
| 2610 | my $value = $2; |
| 2611 | |
Andy Whitcroft | 86f9d05 | 2009-01-06 14:41:24 -0800 | [diff] [blame] | 2612 | # Flatten any parentheses |
Andy Whitcroft | fb2d2c1 | 2010-10-26 14:23:12 -0700 | [diff] [blame] | 2613 | $value =~ s/\(/ \(/g; |
| 2614 | $value =~ s/\)/\) /g; |
Andy Whitcroft | e01886a | 2012-01-10 15:10:08 -0800 | [diff] [blame] | 2615 | while ($value =~ s/\[[^\[\]]*\]/1/ || |
Andy Whitcroft | 63f17f8 | 2009-01-15 13:51:06 -0800 | [diff] [blame] | 2616 | $value !~ /(?:$Ident|-?$Constant)\s* |
| 2617 | $Compare\s* |
| 2618 | (?:$Ident|-?$Constant)/x && |
| 2619 | $value =~ s/\([^\(\)]*\)/1/) { |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2620 | } |
Andy Whitcroft | fb2d2c1 | 2010-10-26 14:23:12 -0700 | [diff] [blame] | 2621 | #print "value<$value>\n"; |
| 2622 | if ($value =~ /^\s*(?:$Ident|-?$Constant)\s*$/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2623 | ERROR("RETURN_PARENTHESES", |
| 2624 | "return is not a function, parentheses are not required\n" . $herecurr); |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2625 | |
| 2626 | } elsif ($spacing !~ /\s+/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2627 | ERROR("SPACING", |
| 2628 | "space required before the open parenthesis '('\n" . $herecurr); |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2629 | } |
| 2630 | } |
Andy Whitcroft | 53a3c44 | 2010-10-26 14:23:14 -0700 | [diff] [blame] | 2631 | # Return of what appears to be an errno should normally be -'ve |
| 2632 | if ($line =~ /^.\s*return\s*(E[A-Z]*)\s*;/) { |
| 2633 | my $name = $1; |
| 2634 | if ($name ne 'EOF' && $name ne 'ERROR') { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2635 | WARN("USE_NEGATIVE_ERRNO", |
| 2636 | "return of an errno should typically be -ve (return -$1)\n" . $herecurr); |
Andy Whitcroft | 53a3c44 | 2010-10-26 14:23:14 -0700 | [diff] [blame] | 2637 | } |
| 2638 | } |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2639 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2640 | # Need a space before open parenthesis after if, while etc |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 2641 | if ($line=~/\b(if|while|for|switch)\(/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2642 | ERROR("SPACING", "space required before the open parenthesis '('\n" . $herecurr); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2643 | } |
| 2644 | |
Andy Whitcroft | f5fe35d | 2008-07-23 21:29:03 -0700 | [diff] [blame] | 2645 | # Check for illegal assignment in if conditional -- and check for trailing |
| 2646 | # statements after the conditional. |
Andy Whitcroft | 170d3a2 | 2008-10-15 22:02:30 -0700 | [diff] [blame] | 2647 | if ($line =~ /do\s*(?!{)/) { |
Andy Whitcroft | 3e469cd | 2012-01-10 15:10:01 -0800 | [diff] [blame] | 2648 | ($stat, $cond, $line_nr_next, $remain_next, $off_next) = |
| 2649 | ctx_statement_block($linenr, $realcnt, 0) |
| 2650 | if (!defined $stat); |
Andy Whitcroft | 170d3a2 | 2008-10-15 22:02:30 -0700 | [diff] [blame] | 2651 | my ($stat_next) = ctx_statement_block($line_nr_next, |
| 2652 | $remain_next, $off_next); |
| 2653 | $stat_next =~ s/\n./\n /g; |
| 2654 | ##print "stat<$stat> stat_next<$stat_next>\n"; |
| 2655 | |
| 2656 | if ($stat_next =~ /^\s*while\b/) { |
| 2657 | # If the statement carries leading newlines, |
| 2658 | # then count those as offsets. |
| 2659 | my ($whitespace) = |
| 2660 | ($stat_next =~ /^((?:\s*\n[+-])*\s*)/s); |
| 2661 | my $offset = |
| 2662 | statement_rawlines($whitespace) - 1; |
| 2663 | |
| 2664 | $suppress_whiletrailers{$line_nr_next + |
| 2665 | $offset} = 1; |
| 2666 | } |
| 2667 | } |
| 2668 | if (!defined $suppress_whiletrailers{$linenr} && |
| 2669 | $line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) { |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 2670 | my ($s, $c) = ($stat, $cond); |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 2671 | |
Andy Whitcroft | b53c8e1 | 2009-01-06 14:41:29 -0800 | [diff] [blame] | 2672 | if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/s) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2673 | ERROR("ASSIGN_IN_IF", |
| 2674 | "do not use assignment in if condition\n" . $herecurr); |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 2675 | } |
| 2676 | |
| 2677 | # Find out what is on the end of the line after the |
| 2678 | # conditional. |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 2679 | substr($s, 0, length($c), ''); |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 2680 | $s =~ s/\n.*//g; |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 2681 | $s =~ s/$;//g; # Remove any comments |
Andy Whitcroft | 5321016 | 2008-07-23 21:29:03 -0700 | [diff] [blame] | 2682 | if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ && |
| 2683 | $c !~ /}\s*while\s*/) |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 2684 | { |
Andy Whitcroft | bb44ad3 | 2008-10-15 22:02:34 -0700 | [diff] [blame] | 2685 | # Find out how long the conditional actually is. |
| 2686 | my @newlines = ($c =~ /\n/gs); |
| 2687 | my $cond_lines = 1 + $#newlines; |
Hidetoshi Seto | 42bdf74 | 2010-03-05 13:43:50 -0800 | [diff] [blame] | 2688 | my $stat_real = ''; |
Andy Whitcroft | bb44ad3 | 2008-10-15 22:02:34 -0700 | [diff] [blame] | 2689 | |
Hidetoshi Seto | 42bdf74 | 2010-03-05 13:43:50 -0800 | [diff] [blame] | 2690 | $stat_real = raw_line($linenr, $cond_lines) |
| 2691 | . "\n" if ($cond_lines); |
Andy Whitcroft | bb44ad3 | 2008-10-15 22:02:34 -0700 | [diff] [blame] | 2692 | if (defined($stat_real) && $cond_lines > 1) { |
| 2693 | $stat_real = "[...]\n$stat_real"; |
| 2694 | } |
| 2695 | |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2696 | ERROR("TRAILING_STATEMENTS", |
| 2697 | "trailing statements should be on next line\n" . $herecurr . $stat_real); |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 2698 | } |
| 2699 | } |
| 2700 | |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 2701 | # Check for bitwise tests written as boolean |
| 2702 | if ($line =~ / |
| 2703 | (?: |
| 2704 | (?:\[|\(|\&\&|\|\|) |
| 2705 | \s*0[xX][0-9]+\s* |
| 2706 | (?:\&\&|\|\|) |
| 2707 | | |
| 2708 | (?:\&\&|\|\|) |
| 2709 | \s*0[xX][0-9]+\s* |
| 2710 | (?:\&\&|\|\||\)|\]) |
| 2711 | )/x) |
| 2712 | { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2713 | WARN("HEXADECIMAL_BOOLEAN_TEST", |
| 2714 | "boolean test with hexadecimal, perhaps just 1 \& or \|?\n" . $herecurr); |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 2715 | } |
| 2716 | |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 2717 | # if and else should not have general statements after it |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 2718 | if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/) { |
| 2719 | my $s = $1; |
| 2720 | $s =~ s/$;//g; # Remove any comments |
| 2721 | if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2722 | ERROR("TRAILING_STATEMENTS", |
| 2723 | "trailing statements should be on next line\n" . $herecurr); |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 2724 | } |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2725 | } |
Andy Whitcroft | 3966778 | 2009-01-15 13:51:06 -0800 | [diff] [blame] | 2726 | # if should not continue a brace |
| 2727 | if ($line =~ /}\s*if\b/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2728 | ERROR("TRAILING_STATEMENTS", |
| 2729 | "trailing statements should be on next line\n" . |
Andy Whitcroft | 3966778 | 2009-01-15 13:51:06 -0800 | [diff] [blame] | 2730 | $herecurr); |
| 2731 | } |
Andy Whitcroft | a1080bf | 2008-10-15 22:02:25 -0700 | [diff] [blame] | 2732 | # case and default should not have general statements after them |
| 2733 | if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g && |
| 2734 | $line !~ /\G(?: |
Andy Whitcroft | 3fef12d | 2008-10-15 22:02:36 -0700 | [diff] [blame] | 2735 | (?:\s*$;*)(?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$| |
Andy Whitcroft | a1080bf | 2008-10-15 22:02:25 -0700 | [diff] [blame] | 2736 | \s*return\s+ |
| 2737 | )/xg) |
| 2738 | { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2739 | ERROR("TRAILING_STATEMENTS", |
| 2740 | "trailing statements should be on next line\n" . $herecurr); |
Andy Whitcroft | a1080bf | 2008-10-15 22:02:25 -0700 | [diff] [blame] | 2741 | } |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2742 | |
| 2743 | # Check for }<nl>else {, these must be at the same |
| 2744 | # indent level to be relevant to each other. |
| 2745 | if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ and |
| 2746 | $previndent == $indent) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2747 | ERROR("ELSE_AFTER_BRACE", |
| 2748 | "else should follow close brace '}'\n" . $hereprev); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2749 | } |
| 2750 | |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 2751 | if ($prevline=~/}\s*$/ and $line=~/^.\s*while\s*/ and |
| 2752 | $previndent == $indent) { |
| 2753 | my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0); |
| 2754 | |
| 2755 | # Find out what is on the end of the line after the |
| 2756 | # conditional. |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 2757 | substr($s, 0, length($c), ''); |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 2758 | $s =~ s/\n.*//g; |
| 2759 | |
| 2760 | if ($s =~ /^\s*;/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2761 | ERROR("WHILE_AFTER_BRACE", |
| 2762 | "while should follow close brace '}'\n" . $hereprev); |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 2763 | } |
| 2764 | } |
| 2765 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2766 | #studly caps, commented out until figure out how to distinguish between use of existing and adding new |
| 2767 | # if (($line=~/[\w_][a-z\d]+[A-Z]/) and !($line=~/print/)) { |
| 2768 | # print "No studly caps, use _\n"; |
| 2769 | # print "$herecurr"; |
| 2770 | # $clean = 0; |
| 2771 | # } |
| 2772 | |
| 2773 | #no spaces allowed after \ in define |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2774 | if ($line=~/\#\s*define.*\\\s$/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2775 | WARN("WHITESPACE_AFTER_LINE_CONTINUATION", |
| 2776 | "Whitepspace after \\ makes next lines useless\n" . $herecurr); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2777 | } |
| 2778 | |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 2779 | #warn if <asm/foo.h> is #included and <linux/foo.h> is available (uses RAW line) |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2780 | if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) { |
Andy Whitcroft | e09dec4 | 2008-10-15 22:02:20 -0700 | [diff] [blame] | 2781 | my $file = "$1.h"; |
| 2782 | my $checkfile = "include/linux/$file"; |
| 2783 | if (-f "$root/$checkfile" && |
| 2784 | $realfile ne $checkfile && |
Wolfram Sang | 7840a94 | 2010-08-09 17:20:57 -0700 | [diff] [blame] | 2785 | $1 !~ /$allowed_asm_includes/) |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2786 | { |
Andy Whitcroft | e09dec4 | 2008-10-15 22:02:20 -0700 | [diff] [blame] | 2787 | if ($realfile =~ m{^arch/}) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2788 | CHK("ARCH_INCLUDE_LINUX", |
| 2789 | "Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr); |
Andy Whitcroft | e09dec4 | 2008-10-15 22:02:20 -0700 | [diff] [blame] | 2790 | } else { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2791 | WARN("INCLUDE_LINUX", |
| 2792 | "Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr); |
Andy Whitcroft | e09dec4 | 2008-10-15 22:02:20 -0700 | [diff] [blame] | 2793 | } |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2794 | } |
| 2795 | } |
| 2796 | |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 2797 | # multi-statement macros should be enclosed in a do while loop, grab the |
| 2798 | # first statement and ensure its the whole macro if its not enclosed |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2799 | # in a known good container |
Andy Whitcroft | b8f96a3 | 2008-07-23 21:29:07 -0700 | [diff] [blame] | 2800 | if ($realfile !~ m@/vmlinux.lds.h$@ && |
| 2801 | $line =~ /^.\s*\#\s*define\s*$Ident(\()?/) { |
Andy Whitcroft | d8aaf12 | 2007-06-23 17:16:44 -0700 | [diff] [blame] | 2802 | my $ln = $linenr; |
| 2803 | my $cnt = $realcnt; |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2804 | my ($off, $dstat, $dcond, $rest); |
| 2805 | my $ctx = ''; |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2806 | ($dstat, $dcond, $ln, $cnt, $off) = |
Andy Whitcroft | f74bd19 | 2012-01-10 15:09:54 -0800 | [diff] [blame] | 2807 | ctx_statement_block($linenr, $realcnt, 0); |
| 2808 | $ctx = $dstat; |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2809 | #print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n"; |
Andy Whitcroft | a3bb97a | 2008-07-23 21:29:00 -0700 | [diff] [blame] | 2810 | #print "LINE<$lines[$ln-1]> len<" . length($lines[$ln-1]) . "\n"; |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2811 | |
Andy Whitcroft | f74bd19 | 2012-01-10 15:09:54 -0800 | [diff] [blame] | 2812 | $dstat =~ s/^.\s*\#\s*define\s+$Ident(?:\([^\)]*\))?\s*//; |
Andy Whitcroft | 292f1a9 | 2008-07-23 21:29:11 -0700 | [diff] [blame] | 2813 | $dstat =~ s/$;//g; |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2814 | $dstat =~ s/\\\n.//g; |
| 2815 | $dstat =~ s/^\s*//s; |
| 2816 | $dstat =~ s/\s*$//s; |
| 2817 | |
| 2818 | # Flatten any parentheses and braces |
Andy Whitcroft | bf30d6e | 2008-10-15 22:02:33 -0700 | [diff] [blame] | 2819 | while ($dstat =~ s/\([^\(\)]*\)/1/ || |
| 2820 | $dstat =~ s/\{[^\{\}]*\}/1/ || |
Andy Whitcroft | c81769f | 2012-01-10 15:10:10 -0800 | [diff] [blame] | 2821 | $dstat =~ s/\[[^\[\]]*\]/1/) |
Andy Whitcroft | bf30d6e | 2008-10-15 22:02:33 -0700 | [diff] [blame] | 2822 | { |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 2823 | } |
Andy Whitcroft | d8aaf12 | 2007-06-23 17:16:44 -0700 | [diff] [blame] | 2824 | |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2825 | my $exceptions = qr{ |
| 2826 | $Declare| |
| 2827 | module_param_named| |
| 2828 | MODULE_PARAM_DESC| |
| 2829 | DECLARE_PER_CPU| |
| 2830 | DEFINE_PER_CPU| |
Andy Whitcroft | 383099f | 2009-01-06 14:41:18 -0800 | [diff] [blame] | 2831 | __typeof__\(| |
Stefani Seibold | 22fd2d3 | 2010-03-05 13:43:52 -0800 | [diff] [blame] | 2832 | union| |
| 2833 | struct| |
Andy Whitcroft | ea71a0a | 2009-09-21 17:04:38 -0700 | [diff] [blame] | 2834 | \.$Ident\s*=\s*| |
| 2835 | ^\"|\"$ |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2836 | }x; |
Andy Whitcroft | 5eaa20b | 2010-10-26 14:23:18 -0700 | [diff] [blame] | 2837 | #print "REST<$rest> dstat<$dstat> ctx<$ctx>\n"; |
Andy Whitcroft | f74bd19 | 2012-01-10 15:09:54 -0800 | [diff] [blame] | 2838 | if ($dstat ne '' && |
| 2839 | $dstat !~ /^(?:$Ident|-?$Constant),$/ && # 10, // foo(), |
| 2840 | $dstat !~ /^(?:$Ident|-?$Constant);$/ && # foo(); |
| 2841 | $dstat !~ /^(?:$Ident|-?$Constant)$/ && # 10 // foo() |
| 2842 | $dstat !~ /$exceptions/ && |
| 2843 | $dstat !~ /^\.$Ident\s*=/ && # .foo = |
Andy Whitcroft | 72f115f | 2012-01-10 15:10:06 -0800 | [diff] [blame] | 2844 | $dstat !~ /^do\s*$Constant\s*while\s*$Constant;?$/ && # do {...} while (...); // do {...} while (...) |
Andy Whitcroft | f74bd19 | 2012-01-10 15:09:54 -0800 | [diff] [blame] | 2845 | $dstat !~ /^for\s*$Constant$/ && # for (...) |
| 2846 | $dstat !~ /^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ && # for (...) bar() |
| 2847 | $dstat !~ /^do\s*{/ && # do {... |
| 2848 | $dstat !~ /^\({/) # ({... |
| 2849 | { |
| 2850 | $ctx =~ s/\n*$//; |
| 2851 | my $herectx = $here . "\n"; |
| 2852 | my $cnt = statement_rawlines($ctx); |
| 2853 | |
| 2854 | for (my $n = 0; $n < $cnt; $n++) { |
| 2855 | $herectx .= raw_line($linenr, $n) . "\n"; |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2856 | } |
| 2857 | |
Andy Whitcroft | f74bd19 | 2012-01-10 15:09:54 -0800 | [diff] [blame] | 2858 | if ($dstat =~ /;/) { |
| 2859 | ERROR("MULTISTATEMENT_MACRO_USE_DO_WHILE", |
| 2860 | "Macros with multiple statements should be enclosed in a do - while loop\n" . "$herectx"); |
| 2861 | } else { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2862 | ERROR("COMPLEX_MACRO", |
Andy Whitcroft | f74bd19 | 2012-01-10 15:09:54 -0800 | [diff] [blame] | 2863 | "Macros with complex values should be enclosed in parenthesis\n" . "$herectx"); |
Andy Whitcroft | d8aaf12 | 2007-06-23 17:16:44 -0700 | [diff] [blame] | 2864 | } |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 2865 | } |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2866 | } |
| 2867 | |
Mike Frysinger | 080ba92 | 2009-01-06 14:41:25 -0800 | [diff] [blame] | 2868 | # make sure symbols are always wrapped with VMLINUX_SYMBOL() ... |
| 2869 | # all assignments may have only one of the following with an assignment: |
| 2870 | # . |
| 2871 | # ALIGN(...) |
| 2872 | # VMLINUX_SYMBOL(...) |
| 2873 | if ($realfile eq 'vmlinux.lds.h' && $line =~ /(?:(?:^|\s)$Ident\s*=|=\s*$Ident(?:\s|$))/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2874 | WARN("MISSING_VMLINUX_SYMBOL", |
| 2875 | "vmlinux.lds.h needs VMLINUX_SYMBOL() around C-visible symbols\n" . $herecurr); |
Mike Frysinger | 080ba92 | 2009-01-06 14:41:25 -0800 | [diff] [blame] | 2876 | } |
| 2877 | |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 2878 | # check for redundant bracing round if etc |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 2879 | if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) { |
| 2880 | my ($level, $endln, @chunks) = |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2881 | ctx_statement_full($linenr, $realcnt, 1); |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 2882 | #print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n"; |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2883 | #print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n"; |
| 2884 | if ($#chunks > 0 && $level == 0) { |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 2885 | my $allowed = 0; |
| 2886 | my $seen = 0; |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 2887 | my $herectx = $here . "\n"; |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2888 | my $ln = $linenr - 1; |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 2889 | for my $chunk (@chunks) { |
| 2890 | my ($cond, $block) = @{$chunk}; |
| 2891 | |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 2892 | # If the condition carries leading newlines, then count those as offsets. |
| 2893 | my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s); |
| 2894 | my $offset = statement_rawlines($whitespace) - 1; |
| 2895 | |
| 2896 | #print "COND<$cond> whitespace<$whitespace> offset<$offset>\n"; |
| 2897 | |
| 2898 | # We have looked at and allowed this specific line. |
| 2899 | $suppress_ifbraces{$ln + $offset} = 1; |
| 2900 | |
| 2901 | $herectx .= "$rawlines[$ln + $offset]\n[...]\n"; |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2902 | $ln += statement_rawlines($block) - 1; |
| 2903 | |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 2904 | substr($block, 0, length($cond), ''); |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 2905 | |
| 2906 | $seen++ if ($block =~ /^\s*{/); |
| 2907 | |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2908 | #print "cond<$cond> block<$block> allowed<$allowed>\n"; |
| 2909 | if (statement_lines($cond) > 1) { |
| 2910 | #print "APW: ALLOWED: cond<$cond>\n"; |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 2911 | $allowed = 1; |
| 2912 | } |
| 2913 | if ($block =~/\b(?:if|for|while)\b/) { |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2914 | #print "APW: ALLOWED: block<$block>\n"; |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 2915 | $allowed = 1; |
| 2916 | } |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2917 | if (statement_block_size($block) > 1) { |
| 2918 | #print "APW: ALLOWED: lines block<$block>\n"; |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 2919 | $allowed = 1; |
| 2920 | } |
| 2921 | } |
| 2922 | if ($seen && !$allowed) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2923 | WARN("BRACES", |
| 2924 | "braces {} are not necessary for any arm of this statement\n" . $herectx); |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 2925 | } |
| 2926 | } |
| 2927 | } |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 2928 | if (!defined $suppress_ifbraces{$linenr - 1} && |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 2929 | $line =~ /\b(if|while|for|else)\b/) { |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2930 | my $allowed = 0; |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 2931 | |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2932 | # Check the pre-context. |
| 2933 | if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) { |
| 2934 | #print "APW: ALLOWED: pre<$1>\n"; |
| 2935 | $allowed = 1; |
| 2936 | } |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 2937 | |
| 2938 | my ($level, $endln, @chunks) = |
| 2939 | ctx_statement_full($linenr, $realcnt, $-[0]); |
| 2940 | |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2941 | # Check the condition. |
| 2942 | my ($cond, $block) = @{$chunks[0]}; |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 2943 | #print "CHECKING<$linenr> cond<$cond> block<$block>\n"; |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2944 | if (defined $cond) { |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 2945 | substr($block, 0, length($cond), ''); |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2946 | } |
| 2947 | if (statement_lines($cond) > 1) { |
| 2948 | #print "APW: ALLOWED: cond<$cond>\n"; |
| 2949 | $allowed = 1; |
| 2950 | } |
| 2951 | if ($block =~/\b(?:if|for|while)\b/) { |
| 2952 | #print "APW: ALLOWED: block<$block>\n"; |
| 2953 | $allowed = 1; |
| 2954 | } |
| 2955 | if (statement_block_size($block) > 1) { |
| 2956 | #print "APW: ALLOWED: lines block<$block>\n"; |
| 2957 | $allowed = 1; |
| 2958 | } |
| 2959 | # Check the post-context. |
| 2960 | if (defined $chunks[1]) { |
| 2961 | my ($cond, $block) = @{$chunks[1]}; |
| 2962 | if (defined $cond) { |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 2963 | substr($block, 0, length($cond), ''); |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 2964 | } |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2965 | if ($block =~ /^\s*\{/) { |
| 2966 | #print "APW: ALLOWED: chunk-1 block<$block>\n"; |
| 2967 | $allowed = 1; |
| 2968 | } |
| 2969 | } |
| 2970 | if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) { |
Justin P. Mattock | 6993248 | 2011-07-26 23:06:29 -0700 | [diff] [blame] | 2971 | my $herectx = $here . "\n"; |
Andy Whitcroft | f055663 | 2008-10-15 22:02:23 -0700 | [diff] [blame] | 2972 | my $cnt = statement_rawlines($block); |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2973 | |
Andy Whitcroft | f055663 | 2008-10-15 22:02:23 -0700 | [diff] [blame] | 2974 | for (my $n = 0; $n < $cnt; $n++) { |
Justin P. Mattock | 6993248 | 2011-07-26 23:06:29 -0700 | [diff] [blame] | 2975 | $herectx .= raw_line($linenr, $n) . "\n"; |
Andy Whitcroft | cf65504 | 2008-03-04 14:28:20 -0800 | [diff] [blame] | 2976 | } |
| 2977 | |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2978 | WARN("BRACES", |
| 2979 | "braces {} are not necessary for single statement blocks\n" . $herectx); |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 2980 | } |
| 2981 | } |
| 2982 | |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 2983 | # don't include deprecated include files (uses RAW line) |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 2984 | for my $inc (@dep_includes) { |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 2985 | if ($rawline =~ m@^.\s*\#\s*include\s*\<$inc>@) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2986 | ERROR("DEPRECATED_INCLUDE", |
| 2987 | "Don't use <$inc>: see Documentation/feature-removal-schedule.txt\n" . $herecurr); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2988 | } |
| 2989 | } |
| 2990 | |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 2991 | # don't use deprecated functions |
| 2992 | for my $func (@dep_functions) { |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 2993 | if ($line =~ /\b$func\b/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 2994 | ERROR("DEPRECATED_FUNCTION", |
| 2995 | "Don't use $func(): see Documentation/feature-removal-schedule.txt\n" . $herecurr); |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 2996 | } |
| 2997 | } |
| 2998 | |
| 2999 | # no volatiles please |
Andy Whitcroft | 6c72ffa | 2007-10-18 03:05:08 -0700 | [diff] [blame] | 3000 | my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b}; |
| 3001 | if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3002 | WARN("VOLATILE", |
| 3003 | "Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt\n" . $herecurr); |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 3004 | } |
| 3005 | |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 3006 | # warn about #if 0 |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 3007 | if ($line =~ /^.\s*\#\s*if\s+0\b/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3008 | CHK("REDUNDANT_CODE", |
| 3009 | "if this code is redundant consider removing it\n" . |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 3010 | $herecurr); |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 3011 | } |
| 3012 | |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 3013 | # check for needless kfree() checks |
| 3014 | if ($prevline =~ /\bif\s*\(([^\)]*)\)/) { |
| 3015 | my $expr = $1; |
| 3016 | if ($line =~ /\bkfree\(\Q$expr\E\);/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3017 | WARN("NEEDLESS_KFREE", |
| 3018 | "kfree(NULL) is safe this check is probably not required\n" . $hereprev); |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 3019 | } |
| 3020 | } |
Greg Kroah-Hartman | 4c432a8 | 2008-07-23 21:29:04 -0700 | [diff] [blame] | 3021 | # check for needless usb_free_urb() checks |
| 3022 | if ($prevline =~ /\bif\s*\(([^\)]*)\)/) { |
| 3023 | my $expr = $1; |
| 3024 | if ($line =~ /\busb_free_urb\(\Q$expr\E\);/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3025 | WARN("NEEDLESS_USB_FREE_URB", |
| 3026 | "usb_free_urb(NULL) is safe this check is probably not required\n" . $hereprev); |
Greg Kroah-Hartman | 4c432a8 | 2008-07-23 21:29:04 -0700 | [diff] [blame] | 3027 | } |
| 3028 | } |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 3029 | |
Patrick Pannuto | 1a15a25 | 2010-08-09 17:21:01 -0700 | [diff] [blame] | 3030 | # prefer usleep_range over udelay |
| 3031 | if ($line =~ /\budelay\s*\(\s*(\w+)\s*\)/) { |
| 3032 | # ignore udelay's < 10, however |
| 3033 | if (! (($1 =~ /(\d+)/) && ($1 < 10)) ) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3034 | CHK("USLEEP_RANGE", |
| 3035 | "usleep_range is preferred over udelay; see Documentation/timers/timers-howto.txt\n" . $line); |
Patrick Pannuto | 1a15a25 | 2010-08-09 17:21:01 -0700 | [diff] [blame] | 3036 | } |
| 3037 | } |
| 3038 | |
Patrick Pannuto | 09ef872 | 2010-08-09 17:21:02 -0700 | [diff] [blame] | 3039 | # warn about unexpectedly long msleep's |
| 3040 | if ($line =~ /\bmsleep\s*\((\d+)\);/) { |
| 3041 | if ($1 < 20) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3042 | WARN("MSLEEP", |
| 3043 | "msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt\n" . $line); |
Patrick Pannuto | 09ef872 | 2010-08-09 17:21:02 -0700 | [diff] [blame] | 3044 | } |
| 3045 | } |
| 3046 | |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 3047 | # warn about #ifdefs in C files |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 3048 | # if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) { |
Andy Whitcroft | 00df344 | 2007-06-08 13:47:06 -0700 | [diff] [blame] | 3049 | # print "#ifdef in C files should be avoided\n"; |
| 3050 | # print "$herecurr"; |
| 3051 | # $clean = 0; |
| 3052 | # } |
| 3053 | |
Andy Whitcroft | 22f2a2e | 2007-08-10 13:01:03 -0700 | [diff] [blame] | 3054 | # warn about spacing in #ifdefs |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 3055 | if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3056 | ERROR("SPACING", |
| 3057 | "exactly one space required after that #$1\n" . $herecurr); |
Andy Whitcroft | 22f2a2e | 2007-08-10 13:01:03 -0700 | [diff] [blame] | 3058 | } |
| 3059 | |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 3060 | # check for spinlock_t definitions without a comment. |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 3061 | if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ || |
| 3062 | $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) { |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 3063 | my $which = $1; |
| 3064 | if (!ctx_has_comment($first_line, $linenr)) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3065 | CHK("UNCOMMENTED_DEFINITION", |
| 3066 | "$1 definition without comment\n" . $herecurr); |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 3067 | } |
| 3068 | } |
| 3069 | # check for memory barriers without a comment. |
| 3070 | if ($line =~ /\b(mb|rmb|wmb|read_barrier_depends|smp_mb|smp_rmb|smp_wmb|smp_read_barrier_depends)\(/) { |
| 3071 | if (!ctx_has_comment($first_line, $linenr)) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3072 | CHK("MEMORY_BARRIER", |
| 3073 | "memory barrier without comment\n" . $herecurr); |
Andy Whitcroft | 4a0df2e | 2007-06-08 13:46:39 -0700 | [diff] [blame] | 3074 | } |
| 3075 | } |
| 3076 | # check of hardware specific defines |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 3077 | if ($line =~ m@^.\s*\#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3078 | CHK("ARCH_DEFINES", |
| 3079 | "architecture specific defines should be avoided\n" . $herecurr); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 3080 | } |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 3081 | |
Tobias Klauser | d4977c7 | 2010-05-24 14:33:30 -0700 | [diff] [blame] | 3082 | # Check that the storage class is at the beginning of a declaration |
| 3083 | if ($line =~ /\b$Storage\b/ && $line !~ /^.\s*$Storage\b/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3084 | WARN("STORAGE_CLASS", |
| 3085 | "storage class should be at the beginning of the declaration\n" . $herecurr) |
Tobias Klauser | d4977c7 | 2010-05-24 14:33:30 -0700 | [diff] [blame] | 3086 | } |
| 3087 | |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 3088 | # check the location of the inline attribute, that it is between |
| 3089 | # storage class and type. |
Andy Whitcroft | 9c0ca6f | 2007-10-16 23:29:38 -0700 | [diff] [blame] | 3090 | if ($line =~ /\b$Type\s+$Inline\b/ || |
| 3091 | $line =~ /\b$Inline\s+$Storage\b/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3092 | ERROR("INLINE_LOCATION", |
| 3093 | "inline keyword should sit between storage class and type\n" . $herecurr); |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 3094 | } |
| 3095 | |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 3096 | # Check for __inline__ and __inline, prefer inline |
| 3097 | if ($line =~ /\b(__inline__|__inline)\b/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3098 | WARN("INLINE", |
| 3099 | "plain inline is preferred over $1\n" . $herecurr); |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 3100 | } |
| 3101 | |
Joe Perches | 3d130fd | 2011-01-12 17:00:00 -0800 | [diff] [blame] | 3102 | # Check for __attribute__ packed, prefer __packed |
| 3103 | if ($line =~ /\b__attribute__\s*\(\s*\(.*\bpacked\b/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3104 | WARN("PREFER_PACKED", |
| 3105 | "__packed is preferred over __attribute__((packed))\n" . $herecurr); |
Joe Perches | 3d130fd | 2011-01-12 17:00:00 -0800 | [diff] [blame] | 3106 | } |
| 3107 | |
Joe Perches | 39b7e28 | 2011-07-25 17:13:24 -0700 | [diff] [blame] | 3108 | # Check for __attribute__ aligned, prefer __aligned |
| 3109 | if ($line =~ /\b__attribute__\s*\(\s*\(.*aligned/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3110 | WARN("PREFER_ALIGNED", |
| 3111 | "__aligned(size) is preferred over __attribute__((aligned(size)))\n" . $herecurr); |
Joe Perches | 39b7e28 | 2011-07-25 17:13:24 -0700 | [diff] [blame] | 3112 | } |
| 3113 | |
Joe Perches | 5f14d3b | 2012-01-10 15:09:52 -0800 | [diff] [blame] | 3114 | # Check for __attribute__ format(printf, prefer __printf |
| 3115 | if ($line =~ /\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf/) { |
| 3116 | WARN("PREFER_PRINTF", |
| 3117 | "__printf(string-index, first-to-check) is preferred over __attribute__((format(printf, string-index, first-to-check)))\n" . $herecurr); |
| 3118 | } |
| 3119 | |
Joe Perches | 8f53a9b | 2010-03-05 13:43:48 -0800 | [diff] [blame] | 3120 | # check for sizeof(&) |
| 3121 | if ($line =~ /\bsizeof\s*\(\s*\&/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3122 | WARN("SIZEOF_ADDRESS", |
| 3123 | "sizeof(& should be avoided\n" . $herecurr); |
Joe Perches | 8f53a9b | 2010-03-05 13:43:48 -0800 | [diff] [blame] | 3124 | } |
| 3125 | |
Joe Perches | 428e2fd | 2011-05-24 17:13:39 -0700 | [diff] [blame] | 3126 | # check for line continuations in quoted strings with odd counts of " |
| 3127 | if ($rawline =~ /\\$/ && $rawline =~ tr/"/"/ % 2) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3128 | WARN("LINE_CONTINUATIONS", |
| 3129 | "Avoid line continuations in quoted strings\n" . $herecurr); |
Joe Perches | 428e2fd | 2011-05-24 17:13:39 -0700 | [diff] [blame] | 3130 | } |
| 3131 | |
Andy Whitcroft | 554e165 | 2012-01-10 15:09:57 -0800 | [diff] [blame] | 3132 | # Check for misused memsets |
Joe Perches | d7c76ba | 2012-01-10 15:09:58 -0800 | [diff] [blame] | 3133 | if (defined $stat && |
| 3134 | $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*$FuncArg\s*\)/s) { |
Andy Whitcroft | 554e165 | 2012-01-10 15:09:57 -0800 | [diff] [blame] | 3135 | |
Joe Perches | d7c76ba | 2012-01-10 15:09:58 -0800 | [diff] [blame] | 3136 | my $ms_addr = $2; |
| 3137 | my $ms_val = $8; |
| 3138 | my $ms_size = $14; |
| 3139 | |
Andy Whitcroft | 554e165 | 2012-01-10 15:09:57 -0800 | [diff] [blame] | 3140 | if ($ms_size =~ /^(0x|)0$/i) { |
| 3141 | ERROR("MEMSET", |
Joe Perches | d7c76ba | 2012-01-10 15:09:58 -0800 | [diff] [blame] | 3142 | "memset to 0's uses 0 as the 2nd argument, not the 3rd\n" . "$here\n$stat\n"); |
Andy Whitcroft | 554e165 | 2012-01-10 15:09:57 -0800 | [diff] [blame] | 3143 | } elsif ($ms_size =~ /^(0x|)1$/i) { |
| 3144 | WARN("MEMSET", |
Joe Perches | d7c76ba | 2012-01-10 15:09:58 -0800 | [diff] [blame] | 3145 | "single byte memset is suspicious. Swapped 2nd/3rd argument?\n" . "$here\n$stat\n"); |
| 3146 | } |
| 3147 | } |
| 3148 | |
| 3149 | # typecasts on min/max could be min_t/max_t |
| 3150 | if (defined $stat && |
| 3151 | $stat =~ /^\+(?:.*?)\b(min|max)\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\)/) { |
| 3152 | if (defined $2 || defined $8) { |
| 3153 | my $call = $1; |
| 3154 | my $cast1 = deparenthesize($2); |
| 3155 | my $arg1 = $3; |
| 3156 | my $cast2 = deparenthesize($8); |
| 3157 | my $arg2 = $9; |
| 3158 | my $cast; |
| 3159 | |
| 3160 | if ($cast1 ne "" && $cast2 ne "") { |
| 3161 | $cast = "$cast1 or $cast2"; |
| 3162 | } elsif ($cast1 ne "") { |
| 3163 | $cast = $cast1; |
| 3164 | } else { |
| 3165 | $cast = $cast2; |
| 3166 | } |
| 3167 | WARN("MINMAX", |
| 3168 | "$call() should probably be ${call}_t($cast, $arg1, $arg2)\n" . "$here\n$stat\n"); |
Andy Whitcroft | 554e165 | 2012-01-10 15:09:57 -0800 | [diff] [blame] | 3169 | } |
| 3170 | } |
| 3171 | |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 3172 | # check for new externs in .c files. |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 3173 | if ($realfile =~ /\.c$/ && defined $stat && |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 3174 | $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s) |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 3175 | { |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 3176 | my $function_name = $1; |
| 3177 | my $paren_space = $2; |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 3178 | |
| 3179 | my $s = $stat; |
| 3180 | if (defined $cond) { |
| 3181 | substr($s, 0, length($cond), ''); |
| 3182 | } |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 3183 | if ($s =~ /^\s*;/ && |
| 3184 | $function_name ne 'uninitialized_var') |
| 3185 | { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3186 | WARN("AVOID_EXTERNS", |
| 3187 | "externs should be avoided in .c files\n" . $herecurr); |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 3188 | } |
| 3189 | |
| 3190 | if ($paren_space =~ /\n/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3191 | WARN("FUNCTION_ARGUMENTS", |
| 3192 | "arguments for function declarations should follow identifier\n" . $herecurr); |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 3193 | } |
Andy Whitcroft | 9c9ba34 | 2008-04-29 00:59:33 -0700 | [diff] [blame] | 3194 | |
| 3195 | } elsif ($realfile =~ /\.c$/ && defined $stat && |
| 3196 | $stat =~ /^.\s*extern\s+/) |
| 3197 | { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3198 | WARN("AVOID_EXTERNS", |
| 3199 | "externs should be avoided in .c files\n" . $herecurr); |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 3200 | } |
| 3201 | |
| 3202 | # checks for new __setup's |
| 3203 | if ($rawline =~ /\b__setup\("([^"]*)"/) { |
| 3204 | my $name = $1; |
| 3205 | |
| 3206 | if (!grep(/$name/, @setup_docs)) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3207 | CHK("UNDOCUMENTED_SETUP", |
| 3208 | "__setup appears un-documented -- check Documentation/kernel-parameters.txt\n" . $herecurr); |
Andy Whitcroft | de7d4f0 | 2007-07-15 23:37:22 -0700 | [diff] [blame] | 3209 | } |
Andy Whitcroft | 653d487 | 2007-06-23 17:16:34 -0700 | [diff] [blame] | 3210 | } |
Andy Whitcroft | 9c0ca6f | 2007-10-16 23:29:38 -0700 | [diff] [blame] | 3211 | |
| 3212 | # check for pointless casting of kmalloc return |
Joe Perches | caf2a54 | 2011-01-12 16:59:56 -0800 | [diff] [blame] | 3213 | if ($line =~ /\*\s*\)\s*[kv][czm]alloc(_node){0,1}\b/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3214 | WARN("UNNECESSARY_CASTS", |
| 3215 | "unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr); |
Andy Whitcroft | 9c0ca6f | 2007-10-16 23:29:38 -0700 | [diff] [blame] | 3216 | } |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 3217 | |
Joe Perches | caf2a54 | 2011-01-12 16:59:56 -0800 | [diff] [blame] | 3218 | # check for multiple semicolons |
| 3219 | if ($line =~ /;\s*;\s*$/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3220 | WARN("ONE_SEMICOLON", |
| 3221 | "Statements terminations use 1 semicolon\n" . $herecurr); |
Joe Perches | caf2a54 | 2011-01-12 16:59:56 -0800 | [diff] [blame] | 3222 | } |
| 3223 | |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 3224 | # check for gcc specific __FUNCTION__ |
| 3225 | if ($line =~ /__FUNCTION__/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3226 | WARN("USE_FUNC", |
| 3227 | "__func__ should be used instead of gcc specific __FUNCTION__\n" . $herecurr); |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 3228 | } |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 3229 | |
Thomas Gleixner | 4882720b | 2010-09-07 14:34:01 +0000 | [diff] [blame] | 3230 | # check for semaphores initialized locked |
| 3231 | if ($line =~ /^.\s*sema_init.+,\W?0\W?\)/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3232 | WARN("CONSIDER_COMPLETION", |
| 3233 | "consider using a completion\n" . $herecurr); |
Peter Zijlstra | 1704f47 | 2010-03-19 01:37:42 +0100 | [diff] [blame] | 3234 | |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 3235 | } |
Joe Perches | 67d0a07 | 2011-10-31 17:13:10 -0700 | [diff] [blame] | 3236 | # recommend kstrto* over simple_strto* and strict_strto* |
| 3237 | if ($line =~ /\b((simple|strict)_(strto(l|ll|ul|ull)))\s*\(/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3238 | WARN("CONSIDER_KSTRTO", |
Joe Perches | 67d0a07 | 2011-10-31 17:13:10 -0700 | [diff] [blame] | 3239 | "$1 is obsolete, use k$3 instead\n" . $herecurr); |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 3240 | } |
Michael Ellerman | f3db663 | 2008-07-23 21:28:57 -0700 | [diff] [blame] | 3241 | # check for __initcall(), use device_initcall() explicitly please |
| 3242 | if ($line =~ /^.\s*__initcall\s*\(/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3243 | WARN("USE_DEVICE_INITCALL", |
| 3244 | "please use device_initcall() instead of __initcall()\n" . $herecurr); |
Michael Ellerman | f3db663 | 2008-07-23 21:28:57 -0700 | [diff] [blame] | 3245 | } |
Emese Revfy | 7940484 | 2010-03-05 13:43:53 -0800 | [diff] [blame] | 3246 | # check for various ops structs, ensure they are const. |
| 3247 | my $struct_ops = qr{acpi_dock_ops| |
| 3248 | address_space_operations| |
| 3249 | backlight_ops| |
| 3250 | block_device_operations| |
| 3251 | dentry_operations| |
| 3252 | dev_pm_ops| |
| 3253 | dma_map_ops| |
| 3254 | extent_io_ops| |
| 3255 | file_lock_operations| |
| 3256 | file_operations| |
| 3257 | hv_ops| |
| 3258 | ide_dma_ops| |
| 3259 | intel_dvo_dev_ops| |
| 3260 | item_operations| |
| 3261 | iwl_ops| |
| 3262 | kgdb_arch| |
| 3263 | kgdb_io| |
| 3264 | kset_uevent_ops| |
| 3265 | lock_manager_operations| |
| 3266 | microcode_ops| |
| 3267 | mtrr_ops| |
| 3268 | neigh_ops| |
| 3269 | nlmsvc_binding| |
| 3270 | pci_raw_ops| |
| 3271 | pipe_buf_operations| |
| 3272 | platform_hibernation_ops| |
| 3273 | platform_suspend_ops| |
| 3274 | proto_ops| |
| 3275 | rpc_pipe_ops| |
| 3276 | seq_operations| |
| 3277 | snd_ac97_build_ops| |
| 3278 | soc_pcmcia_socket_ops| |
| 3279 | stacktrace_ops| |
| 3280 | sysfs_ops| |
| 3281 | tty_operations| |
| 3282 | usb_mon_operations| |
| 3283 | wd_ops}x; |
Andy Whitcroft | 6903ffb | 2009-01-15 13:51:07 -0800 | [diff] [blame] | 3284 | if ($line !~ /\bconst\b/ && |
Emese Revfy | 7940484 | 2010-03-05 13:43:53 -0800 | [diff] [blame] | 3285 | $line =~ /\bstruct\s+($struct_ops)\b/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3286 | WARN("CONST_STRUCT", |
| 3287 | "struct $1 should normally be const\n" . |
Andy Whitcroft | 6903ffb | 2009-01-15 13:51:07 -0800 | [diff] [blame] | 3288 | $herecurr); |
Andy Whitcroft | 2b6db5c | 2009-01-06 14:41:29 -0800 | [diff] [blame] | 3289 | } |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 3290 | |
| 3291 | # use of NR_CPUS is usually wrong |
| 3292 | # ignore definitions of NR_CPUS and usage to define arrays as likely right |
| 3293 | if ($line =~ /\bNR_CPUS\b/ && |
Andy Whitcroft | c45dcab | 2008-06-05 22:46:01 -0700 | [diff] [blame] | 3294 | $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ && |
| 3295 | $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ && |
Andy Whitcroft | 171ae1a | 2008-04-29 00:59:32 -0700 | [diff] [blame] | 3296 | $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ && |
| 3297 | $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ && |
| 3298 | $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/) |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 3299 | { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3300 | WARN("NR_CPUS", |
| 3301 | "usage of NR_CPUS is often wrong - consider using cpu_possible(), num_possible_cpus(), for_each_possible_cpu(), etc\n" . $herecurr); |
Andy Whitcroft | 773647a | 2008-03-28 14:15:58 -0700 | [diff] [blame] | 3302 | } |
Andy Whitcroft | 9c9ba34 | 2008-04-29 00:59:33 -0700 | [diff] [blame] | 3303 | |
| 3304 | # check for %L{u,d,i} in strings |
| 3305 | my $string; |
| 3306 | while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) { |
| 3307 | $string = substr($rawline, $-[1], $+[1] - $-[1]); |
Andy Whitcroft | 2a1bc5d | 2008-10-15 22:02:23 -0700 | [diff] [blame] | 3308 | $string =~ s/%%/__/g; |
Andy Whitcroft | 9c9ba34 | 2008-04-29 00:59:33 -0700 | [diff] [blame] | 3309 | if ($string =~ /(?<!%)%L[udi]/) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3310 | WARN("PRINTF_L", |
| 3311 | "\%Ld/%Lu are not-standard C, use %lld/%llu\n" . $herecurr); |
Andy Whitcroft | 9c9ba34 | 2008-04-29 00:59:33 -0700 | [diff] [blame] | 3312 | last; |
| 3313 | } |
| 3314 | } |
Andy Whitcroft | 691d77b | 2009-01-06 14:41:16 -0800 | [diff] [blame] | 3315 | |
| 3316 | # whine mightly about in_atomic |
| 3317 | if ($line =~ /\bin_atomic\s*\(/) { |
| 3318 | if ($realfile =~ m@^drivers/@) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3319 | ERROR("IN_ATOMIC", |
| 3320 | "do not use in_atomic in drivers\n" . $herecurr); |
Andy Whitcroft | f4a8773 | 2009-02-27 14:03:05 -0800 | [diff] [blame] | 3321 | } elsif ($realfile !~ m@^kernel/@) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3322 | WARN("IN_ATOMIC", |
| 3323 | "use of in_atomic() is incorrect outside core kernel code\n" . $herecurr); |
Andy Whitcroft | 691d77b | 2009-01-06 14:41:16 -0800 | [diff] [blame] | 3324 | } |
| 3325 | } |
Peter Zijlstra | 1704f47 | 2010-03-19 01:37:42 +0100 | [diff] [blame] | 3326 | |
| 3327 | # check for lockdep_set_novalidate_class |
| 3328 | if ($line =~ /^.\s*lockdep_set_novalidate_class\s*\(/ || |
| 3329 | $line =~ /__lockdep_no_validate__\s*\)/ ) { |
| 3330 | if ($realfile !~ m@^kernel/lockdep@ && |
| 3331 | $realfile !~ m@^include/linux/lockdep@ && |
| 3332 | $realfile !~ m@^drivers/base/core@) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3333 | ERROR("LOCKDEP", |
| 3334 | "lockdep_no_validate class is reserved for device->mutex.\n" . $herecurr); |
Peter Zijlstra | 1704f47 | 2010-03-19 01:37:42 +0100 | [diff] [blame] | 3335 | } |
| 3336 | } |
Dave Jones | 88f8831 | 2011-01-12 16:59:59 -0800 | [diff] [blame] | 3337 | |
| 3338 | if ($line =~ /debugfs_create_file.*S_IWUGO/ || |
| 3339 | $line =~ /DEVICE_ATTR.*S_IWUGO/ ) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3340 | WARN("EXPORTED_WORLD_WRITABLE", |
| 3341 | "Exporting world writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr); |
Dave Jones | 88f8831 | 2011-01-12 16:59:59 -0800 | [diff] [blame] | 3342 | } |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 3343 | } |
| 3344 | |
| 3345 | # If we have no input at all, then there is nothing to report on |
| 3346 | # so just keep quiet. |
| 3347 | if ($#rawlines == -1) { |
| 3348 | exit(0); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 3349 | } |
| 3350 | |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 3351 | # In mailback mode only produce a report in the negative, for |
| 3352 | # things that appear to be patches. |
| 3353 | if ($mailback && ($clean == 1 || !$is_patch)) { |
| 3354 | exit(0); |
| 3355 | } |
| 3356 | |
| 3357 | # This is not a patch, and we are are in 'no-patch' mode so |
| 3358 | # just keep quiet. |
| 3359 | if (!$chk_patch && !$is_patch) { |
| 3360 | exit(0); |
| 3361 | } |
| 3362 | |
| 3363 | if (!$is_patch) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3364 | ERROR("NOT_UNIFIED_DIFF", |
| 3365 | "Does not appear to be a unified-diff format patch\n"); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 3366 | } |
| 3367 | if ($is_patch && $chk_signoff && $signoff == 0) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3368 | ERROR("MISSING_SIGN_OFF", |
| 3369 | "Missing Signed-off-by: line(s)\n"); |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 3370 | } |
| 3371 | |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 3372 | print report_dump(); |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 3373 | if ($summary && !($clean == 1 && $quiet == 1)) { |
| 3374 | print "$filename " if ($summary_file); |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 3375 | print "total: $cnt_error errors, $cnt_warn warnings, " . |
| 3376 | (($check)? "$cnt_chk checks, " : "") . |
| 3377 | "$cnt_lines lines checked\n"; |
| 3378 | print "\n" if ($quiet == 0); |
Andy Whitcroft | f0a594c | 2007-07-19 01:48:34 -0700 | [diff] [blame] | 3379 | } |
Andy Whitcroft | 8905a67 | 2007-11-28 16:21:06 -0800 | [diff] [blame] | 3380 | |
Andy Whitcroft | d2c0a23 | 2010-10-26 14:23:12 -0700 | [diff] [blame] | 3381 | if ($quiet == 0) { |
| 3382 | # If there were whitespace errors which cleanpatch can fix |
| 3383 | # then suggest that. |
| 3384 | if ($rpt_cleaners) { |
| 3385 | print "NOTE: whitespace errors detected, you may wish to use scripts/cleanpatch or\n"; |
| 3386 | print " scripts/cleanfile\n\n"; |
Mike Frysinger | b078121 | 2011-03-22 16:34:43 -0700 | [diff] [blame] | 3387 | $rpt_cleaners = 0; |
Andy Whitcroft | d2c0a23 | 2010-10-26 14:23:12 -0700 | [diff] [blame] | 3388 | } |
| 3389 | } |
| 3390 | |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3391 | if (keys %ignore_type) { |
| 3392 | print "NOTE: Ignored message types:"; |
| 3393 | foreach my $ignore (sort keys %ignore_type) { |
| 3394 | print " $ignore"; |
| 3395 | } |
| 3396 | print "\n"; |
| 3397 | print "\n" if ($quiet == 0); |
| 3398 | } |
| 3399 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 3400 | if ($clean == 1 && $quiet == 0) { |
Andy Whitcroft | c2fdda0 | 2008-02-08 04:20:54 -0800 | [diff] [blame] | 3401 | print "$vname has no obvious style problems and is ready for submission.\n" |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 3402 | } |
| 3403 | if ($clean == 0 && $quiet == 0) { |
Joe Perches | 000d1cc1 | 2011-07-25 17:13:25 -0700 | [diff] [blame] | 3404 | print << "EOM"; |
| 3405 | $vname has style problems, please review. |
| 3406 | |
| 3407 | If any of these errors are false positives, please report |
| 3408 | them to the maintainer, see CHECKPATCH in MAINTAINERS. |
| 3409 | EOM |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 3410 | } |
Andy Whitcroft | 13214ad | 2008-02-08 04:22:03 -0800 | [diff] [blame] | 3411 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 3412 | return $clean; |
| 3413 | } |