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