checkpatch.pl 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337
  1. #!/usr/bin/perl -w
  2. # (c) 2001, Dave Jones. <davej@codemonkey.org.uk> (the file handling bit)
  3. # (c) 2005, Joel Schopp <jschopp@austin.ibm.com> (the ugly bit)
  4. # (c) 2007, Andy Whitcroft <apw@uk.ibm.com> (new conditions, test suite, etc)
  5. # Licensed under the terms of the GNU GPL License version 2
  6. use strict;
  7. my $P = $0;
  8. $P =~ s@.*/@@g;
  9. my $V = '0.21';
  10. use Getopt::Long qw(:config no_auto_abbrev);
  11. my $quiet = 0;
  12. my $tree = 1;
  13. my $chk_signoff = 1;
  14. my $chk_patch = 1;
  15. my $tst_only;
  16. my $emacs = 0;
  17. my $terse = 0;
  18. my $file = 0;
  19. my $check = 0;
  20. my $summary = 1;
  21. my $mailback = 0;
  22. my $summary_file = 0;
  23. my $root;
  24. my %debug;
  25. GetOptions(
  26. 'q|quiet+' => \$quiet,
  27. 'tree!' => \$tree,
  28. 'signoff!' => \$chk_signoff,
  29. 'patch!' => \$chk_patch,
  30. 'emacs!' => \$emacs,
  31. 'terse!' => \$terse,
  32. 'file!' => \$file,
  33. 'subjective!' => \$check,
  34. 'strict!' => \$check,
  35. 'root=s' => \$root,
  36. 'summary!' => \$summary,
  37. 'mailback!' => \$mailback,
  38. 'summary-file!' => \$summary_file,
  39. 'debug=s' => \%debug,
  40. 'test-only=s' => \$tst_only,
  41. ) or exit;
  42. my $exit = 0;
  43. if ($#ARGV < 0) {
  44. print "usage: $P [options] patchfile\n";
  45. print "version: $V\n";
  46. print "options: -q => quiet\n";
  47. print " --no-tree => run without a kernel tree\n";
  48. print " --terse => one line per report\n";
  49. print " --emacs => emacs compile window format\n";
  50. print " --file => check a source file\n";
  51. print " --strict => enable more subjective tests\n";
  52. print " --root => path to the kernel tree root\n";
  53. print " --no-summary => suppress the per-file summary\n";
  54. print " --summary-file => include the filename in summary\n";
  55. exit(1);
  56. }
  57. my $dbg_values = 0;
  58. my $dbg_possible = 0;
  59. my $dbg_type = 0;
  60. for my $key (keys %debug) {
  61. eval "\${dbg_$key} = '$debug{$key}';"
  62. }
  63. if ($terse) {
  64. $emacs = 1;
  65. $quiet++;
  66. }
  67. if ($tree) {
  68. if (defined $root) {
  69. if (!top_of_kernel_tree($root)) {
  70. die "$P: $root: --root does not point at a valid tree\n";
  71. }
  72. } else {
  73. if (top_of_kernel_tree('.')) {
  74. $root = '.';
  75. } elsif ($0 =~ m@(.*)/scripts/[^/]*$@ &&
  76. top_of_kernel_tree($1)) {
  77. $root = $1;
  78. }
  79. }
  80. if (!defined $root) {
  81. print "Must be run from the top-level dir. of a kernel tree\n";
  82. exit(2);
  83. }
  84. }
  85. my $emitted_corrupt = 0;
  86. our $Ident = qr{[A-Za-z_][A-Za-z\d_]*};
  87. our $Storage = qr{extern|static|asmlinkage};
  88. our $Sparse = qr{
  89. __user|
  90. __kernel|
  91. __force|
  92. __iomem|
  93. __must_check|
  94. __init_refok|
  95. __kprobes
  96. }x;
  97. our $Attribute = qr{
  98. const|
  99. __read_mostly|
  100. __kprobes|
  101. __(?:mem|cpu|dev|)(?:initdata|init)
  102. }x;
  103. our $Modifier;
  104. our $Inline = qr{inline|__always_inline|noinline};
  105. our $Member = qr{->$Ident|\.$Ident|\[[^]]*\]};
  106. our $Lval = qr{$Ident(?:$Member)*};
  107. our $Constant = qr{(?:[0-9]+|0x[0-9a-fA-F]+)[UL]*};
  108. our $Assignment = qr{(?:\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=)};
  109. our $Operators = qr{
  110. <=|>=|==|!=|
  111. =>|->|<<|>>|<|>|!|~|
  112. &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%
  113. }x;
  114. our $NonptrType;
  115. our $Type;
  116. our $Declare;
  117. our $UTF8 = qr {
  118. [\x09\x0A\x0D\x20-\x7E] # ASCII
  119. | [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
  120. | \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
  121. | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
  122. | \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
  123. | \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
  124. | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
  125. | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
  126. }x;
  127. our @typeList = (
  128. qr{void},
  129. qr{(?:unsigned\s+)?char},
  130. qr{(?:unsigned\s+)?short},
  131. qr{(?:unsigned\s+)?int},
  132. qr{(?:unsigned\s+)?long},
  133. qr{(?:unsigned\s+)?long\s+int},
  134. qr{(?:unsigned\s+)?long\s+long},
  135. qr{(?:unsigned\s+)?long\s+long\s+int},
  136. qr{unsigned},
  137. qr{float},
  138. qr{double},
  139. qr{bool},
  140. qr{(?:__)?(?:u|s|be|le)(?:8|16|32|64)},
  141. qr{struct\s+$Ident},
  142. qr{union\s+$Ident},
  143. qr{enum\s+$Ident},
  144. qr{${Ident}_t},
  145. qr{${Ident}_handler},
  146. qr{${Ident}_handler_fn},
  147. );
  148. our @modifierList = (
  149. qr{fastcall},
  150. );
  151. sub build_types {
  152. my $mods = "(?x: \n" . join("|\n ", @modifierList) . "\n)";
  153. my $all = "(?x: \n" . join("|\n ", @typeList) . "\n)";
  154. $Modifier = qr{(?:$Attribute|$Sparse|$mods)};
  155. $NonptrType = qr{
  156. (?:$Modifier\s+|const\s+)*
  157. (?:
  158. (?:typeof|__typeof__)\s*\(\s*\**\s*$Ident\s*\)|
  159. (?:${all}\b)
  160. )
  161. (?:\s+$Modifier|\s+const)*
  162. }x;
  163. $Type = qr{
  164. $NonptrType
  165. (?:\s*\*+\s*const|\s*\*+|(?:\s*\[\s*\])+)?
  166. (?:\s+$Inline|\s+$Modifier)*
  167. }x;
  168. $Declare = qr{(?:$Storage\s+)?$Type};
  169. }
  170. build_types();
  171. $chk_signoff = 0 if ($file);
  172. my @dep_includes = ();
  173. my @dep_functions = ();
  174. my $removal = "Documentation/feature-removal-schedule.txt";
  175. if ($tree && -f "$root/$removal") {
  176. open(REMOVE, "<$root/$removal") ||
  177. die "$P: $removal: open failed - $!\n";
  178. while (<REMOVE>) {
  179. if (/^Check:\s+(.*\S)/) {
  180. for my $entry (split(/[, ]+/, $1)) {
  181. if ($entry =~ m@include/(.*)@) {
  182. push(@dep_includes, $1);
  183. } elsif ($entry !~ m@/@) {
  184. push(@dep_functions, $entry);
  185. }
  186. }
  187. }
  188. }
  189. }
  190. my @rawlines = ();
  191. my @lines = ();
  192. my $vname;
  193. for my $filename (@ARGV) {
  194. if ($file) {
  195. open(FILE, "diff -u /dev/null $filename|") ||
  196. die "$P: $filename: diff failed - $!\n";
  197. } else {
  198. open(FILE, "<$filename") ||
  199. die "$P: $filename: open failed - $!\n";
  200. }
  201. if ($filename eq '-') {
  202. $vname = 'Your patch';
  203. } else {
  204. $vname = $filename;
  205. }
  206. while (<FILE>) {
  207. chomp;
  208. push(@rawlines, $_);
  209. }
  210. close(FILE);
  211. if (!process($filename)) {
  212. $exit = 1;
  213. }
  214. @rawlines = ();
  215. @lines = ();
  216. }
  217. exit($exit);
  218. sub top_of_kernel_tree {
  219. my ($root) = @_;
  220. my @tree_check = (
  221. "COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
  222. "README", "Documentation", "arch", "include", "drivers",
  223. "fs", "init", "ipc", "kernel", "lib", "scripts",
  224. );
  225. foreach my $check (@tree_check) {
  226. if (! -e $root . '/' . $check) {
  227. return 0;
  228. }
  229. }
  230. return 1;
  231. }
  232. sub expand_tabs {
  233. my ($str) = @_;
  234. my $res = '';
  235. my $n = 0;
  236. for my $c (split(//, $str)) {
  237. if ($c eq "\t") {
  238. $res .= ' ';
  239. $n++;
  240. for (; ($n % 8) != 0; $n++) {
  241. $res .= ' ';
  242. }
  243. next;
  244. }
  245. $res .= $c;
  246. $n++;
  247. }
  248. return $res;
  249. }
  250. sub copy_spacing {
  251. (my $res = shift) =~ tr/\t/ /c;
  252. return $res;
  253. }
  254. sub line_stats {
  255. my ($line) = @_;
  256. # Drop the diff line leader and expand tabs
  257. $line =~ s/^.//;
  258. $line = expand_tabs($line);
  259. # Pick the indent from the front of the line.
  260. my ($white) = ($line =~ /^(\s*)/);
  261. return (length($line), length($white));
  262. }
  263. my $sanitise_quote = '';
  264. sub sanitise_line_reset {
  265. my ($in_comment) = @_;
  266. if ($in_comment) {
  267. $sanitise_quote = '*/';
  268. } else {
  269. $sanitise_quote = '';
  270. }
  271. }
  272. sub sanitise_line {
  273. my ($line) = @_;
  274. my $res = '';
  275. my $l = '';
  276. my $qlen = 0;
  277. my $off = 0;
  278. my $c;
  279. # Always copy over the diff marker.
  280. $res = substr($line, 0, 1);
  281. for ($off = 1; $off < length($line); $off++) {
  282. $c = substr($line, $off, 1);
  283. # Comments we are wacking completly including the begin
  284. # and end, all to $;.
  285. if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
  286. $sanitise_quote = '*/';
  287. substr($res, $off, 2, "$;$;");
  288. $off++;
  289. next;
  290. }
  291. if (substr($line, $off, 2) eq '*/') {
  292. $sanitise_quote = '';
  293. substr($res, $off, 2, "$;$;");
  294. $off++;
  295. next;
  296. }
  297. # A \ in a string means ignore the next character.
  298. if (($sanitise_quote eq "'" || $sanitise_quote eq '"') &&
  299. $c eq "\\") {
  300. substr($res, $off, 2, 'XX');
  301. $off++;
  302. next;
  303. }
  304. # Regular quotes.
  305. if ($c eq "'" || $c eq '"') {
  306. if ($sanitise_quote eq '') {
  307. $sanitise_quote = $c;
  308. substr($res, $off, 1, $c);
  309. next;
  310. } elsif ($sanitise_quote eq $c) {
  311. $sanitise_quote = '';
  312. }
  313. }
  314. #print "SQ:$sanitise_quote\n";
  315. if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") {
  316. substr($res, $off, 1, $;);
  317. } elsif ($off != 0 && $sanitise_quote && $c ne "\t") {
  318. substr($res, $off, 1, 'X');
  319. } else {
  320. substr($res, $off, 1, $c);
  321. }
  322. }
  323. # The pathname on a #include may be surrounded by '<' and '>'.
  324. if ($res =~ /^.\s*\#\s*include\s+\<(.*)\>/) {
  325. my $clean = 'X' x length($1);
  326. $res =~ s@\<.*\>@<$clean>@;
  327. # The whole of a #error is a string.
  328. } elsif ($res =~ /^.\s*\#\s*(?:error|warning)\s+(.*)\b/) {
  329. my $clean = 'X' x length($1);
  330. $res =~ s@(\#\s*(?:error|warning)\s+).*@$1$clean@;
  331. }
  332. return $res;
  333. }
  334. sub ctx_statement_block {
  335. my ($linenr, $remain, $off) = @_;
  336. my $line = $linenr - 1;
  337. my $blk = '';
  338. my $soff = $off;
  339. my $coff = $off - 1;
  340. my $coff_set = 0;
  341. my $loff = 0;
  342. my $type = '';
  343. my $level = 0;
  344. my $p;
  345. my $c;
  346. my $len = 0;
  347. my $remainder;
  348. while (1) {
  349. #warn "CSB: blk<$blk> remain<$remain>\n";
  350. # If we are about to drop off the end, pull in more
  351. # context.
  352. if ($off >= $len) {
  353. for (; $remain > 0; $line++) {
  354. next if ($lines[$line] =~ /^-/);
  355. $remain--;
  356. $loff = $len;
  357. $blk .= $lines[$line] . "\n";
  358. $len = length($blk);
  359. $line++;
  360. last;
  361. }
  362. # Bail if there is no further context.
  363. #warn "CSB: blk<$blk> off<$off> len<$len>\n";
  364. if ($off >= $len) {
  365. last;
  366. }
  367. }
  368. $p = $c;
  369. $c = substr($blk, $off, 1);
  370. $remainder = substr($blk, $off);
  371. #warn "CSB: c<$c> type<$type> level<$level> remainder<$remainder> coff_set<$coff_set>\n";
  372. # Statement ends at the ';' or a close '}' at the
  373. # outermost level.
  374. if ($level == 0 && $c eq ';') {
  375. last;
  376. }
  377. # An else is really a conditional as long as its not else if
  378. if ($level == 0 && $coff_set == 0 &&
  379. (!defined($p) || $p =~ /(?:\s|\}|\+)/) &&
  380. $remainder =~ /^(else)(?:\s|{)/ &&
  381. $remainder !~ /^else\s+if\b/) {
  382. $coff = $off + length($1) - 1;
  383. $coff_set = 1;
  384. #warn "CSB: mark coff<$coff> soff<$soff> 1<$1>\n";
  385. #warn "[" . substr($blk, $soff, $coff - $soff + 1) . "]\n";
  386. }
  387. if (($type eq '' || $type eq '(') && $c eq '(') {
  388. $level++;
  389. $type = '(';
  390. }
  391. if ($type eq '(' && $c eq ')') {
  392. $level--;
  393. $type = ($level != 0)? '(' : '';
  394. if ($level == 0 && $coff < $soff) {
  395. $coff = $off;
  396. $coff_set = 1;
  397. #warn "CSB: mark coff<$coff>\n";
  398. }
  399. }
  400. if (($type eq '' || $type eq '{') && $c eq '{') {
  401. $level++;
  402. $type = '{';
  403. }
  404. if ($type eq '{' && $c eq '}') {
  405. $level--;
  406. $type = ($level != 0)? '{' : '';
  407. if ($level == 0) {
  408. last;
  409. }
  410. }
  411. $off++;
  412. }
  413. # We are truly at the end, so shuffle to the next line.
  414. if ($off == $len) {
  415. $loff = $len + 1;
  416. $line++;
  417. $remain--;
  418. }
  419. my $statement = substr($blk, $soff, $off - $soff + 1);
  420. my $condition = substr($blk, $soff, $coff - $soff + 1);
  421. #warn "STATEMENT<$statement>\n";
  422. #warn "CONDITION<$condition>\n";
  423. #print "coff<$coff> soff<$off> loff<$loff>\n";
  424. return ($statement, $condition,
  425. $line, $remain + 1, $off - $loff + 1, $level);
  426. }
  427. sub statement_lines {
  428. my ($stmt) = @_;
  429. # Strip the diff line prefixes and rip blank lines at start and end.
  430. $stmt =~ s/(^|\n)./$1/g;
  431. $stmt =~ s/^\s*//;
  432. $stmt =~ s/\s*$//;
  433. my @stmt_lines = ($stmt =~ /\n/g);
  434. return $#stmt_lines + 2;
  435. }
  436. sub statement_rawlines {
  437. my ($stmt) = @_;
  438. my @stmt_lines = ($stmt =~ /\n/g);
  439. return $#stmt_lines + 2;
  440. }
  441. sub statement_block_size {
  442. my ($stmt) = @_;
  443. $stmt =~ s/(^|\n)./$1/g;
  444. $stmt =~ s/^\s*{//;
  445. $stmt =~ s/}\s*$//;
  446. $stmt =~ s/^\s*//;
  447. $stmt =~ s/\s*$//;
  448. my @stmt_lines = ($stmt =~ /\n/g);
  449. my @stmt_statements = ($stmt =~ /;/g);
  450. my $stmt_lines = $#stmt_lines + 2;
  451. my $stmt_statements = $#stmt_statements + 1;
  452. if ($stmt_lines > $stmt_statements) {
  453. return $stmt_lines;
  454. } else {
  455. return $stmt_statements;
  456. }
  457. }
  458. sub ctx_statement_full {
  459. my ($linenr, $remain, $off) = @_;
  460. my ($statement, $condition, $level);
  461. my (@chunks);
  462. # Grab the first conditional/block pair.
  463. ($statement, $condition, $linenr, $remain, $off, $level) =
  464. ctx_statement_block($linenr, $remain, $off);
  465. #print "F: c<$condition> s<$statement> remain<$remain>\n";
  466. push(@chunks, [ $condition, $statement ]);
  467. if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
  468. return ($level, $linenr, @chunks);
  469. }
  470. # Pull in the following conditional/block pairs and see if they
  471. # could continue the statement.
  472. for (;;) {
  473. ($statement, $condition, $linenr, $remain, $off, $level) =
  474. ctx_statement_block($linenr, $remain, $off);
  475. #print "C: c<$condition> s<$statement> remain<$remain>\n";
  476. last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
  477. #print "C: push\n";
  478. push(@chunks, [ $condition, $statement ]);
  479. }
  480. return ($level, $linenr, @chunks);
  481. }
  482. sub ctx_block_get {
  483. my ($linenr, $remain, $outer, $open, $close, $off) = @_;
  484. my $line;
  485. my $start = $linenr - 1;
  486. my $blk = '';
  487. my @o;
  488. my @c;
  489. my @res = ();
  490. my $level = 0;
  491. for ($line = $start; $remain > 0; $line++) {
  492. next if ($rawlines[$line] =~ /^-/);
  493. $remain--;
  494. $blk .= $rawlines[$line];
  495. foreach my $c (split(//, $rawlines[$line])) {
  496. ##print "C<$c>L<$level><$open$close>O<$off>\n";
  497. if ($off > 0) {
  498. $off--;
  499. next;
  500. }
  501. if ($c eq $close && $level > 0) {
  502. $level--;
  503. last if ($level == 0);
  504. } elsif ($c eq $open) {
  505. $level++;
  506. }
  507. }
  508. if (!$outer || $level <= 1) {
  509. push(@res, $rawlines[$line]);
  510. }
  511. last if ($level == 0);
  512. }
  513. return ($level, @res);
  514. }
  515. sub ctx_block_outer {
  516. my ($linenr, $remain) = @_;
  517. my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0);
  518. return @r;
  519. }
  520. sub ctx_block {
  521. my ($linenr, $remain) = @_;
  522. my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0);
  523. return @r;
  524. }
  525. sub ctx_statement {
  526. my ($linenr, $remain, $off) = @_;
  527. my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
  528. return @r;
  529. }
  530. sub ctx_block_level {
  531. my ($linenr, $remain) = @_;
  532. return ctx_block_get($linenr, $remain, 0, '{', '}', 0);
  533. }
  534. sub ctx_statement_level {
  535. my ($linenr, $remain, $off) = @_;
  536. return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
  537. }
  538. sub ctx_locate_comment {
  539. my ($first_line, $end_line) = @_;
  540. # Catch a comment on the end of the line itself.
  541. my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@);
  542. return $current_comment if (defined $current_comment);
  543. # Look through the context and try and figure out if there is a
  544. # comment.
  545. my $in_comment = 0;
  546. $current_comment = '';
  547. for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
  548. my $line = $rawlines[$linenr - 1];
  549. #warn " $line\n";
  550. if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
  551. $in_comment = 1;
  552. }
  553. if ($line =~ m@/\*@) {
  554. $in_comment = 1;
  555. }
  556. if (!$in_comment && $current_comment ne '') {
  557. $current_comment = '';
  558. }
  559. $current_comment .= $line . "\n" if ($in_comment);
  560. if ($line =~ m@\*/@) {
  561. $in_comment = 0;
  562. }
  563. }
  564. chomp($current_comment);
  565. return($current_comment);
  566. }
  567. sub ctx_has_comment {
  568. my ($first_line, $end_line) = @_;
  569. my $cmt = ctx_locate_comment($first_line, $end_line);
  570. ##print "LINE: $rawlines[$end_line - 1 ]\n";
  571. ##print "CMMT: $cmt\n";
  572. return ($cmt ne '');
  573. }
  574. sub cat_vet {
  575. my ($vet) = @_;
  576. my ($res, $coded);
  577. $res = '';
  578. while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
  579. $res .= $1;
  580. if ($2 ne '') {
  581. $coded = sprintf("^%c", unpack('C', $2) + 64);
  582. $res .= $coded;
  583. }
  584. }
  585. $res =~ s/$/\$/;
  586. return $res;
  587. }
  588. my $av_preprocessor = 0;
  589. my $av_pending;
  590. my @av_paren_type;
  591. my $av_pend_colon;
  592. sub annotate_reset {
  593. $av_preprocessor = 0;
  594. $av_pending = '_';
  595. @av_paren_type = ('E');
  596. $av_pend_colon = 'O';
  597. }
  598. sub annotate_values {
  599. my ($stream, $type) = @_;
  600. my $res;
  601. my $var = '_' x length($stream);
  602. my $cur = $stream;
  603. print "$stream\n" if ($dbg_values > 1);
  604. while (length($cur)) {
  605. @av_paren_type = ('E') if ($#av_paren_type < 0);
  606. print " <" . join('', @av_paren_type) .
  607. "> <$type> <$av_pending>" if ($dbg_values > 1);
  608. if ($cur =~ /^(\s+)/o) {
  609. print "WS($1)\n" if ($dbg_values > 1);
  610. if ($1 =~ /\n/ && $av_preprocessor) {
  611. $type = pop(@av_paren_type);
  612. $av_preprocessor = 0;
  613. }
  614. } elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\()/) {
  615. print "DECLARE($1)\n" if ($dbg_values > 1);
  616. $type = 'T';
  617. } elsif ($cur =~ /^($Modifier)\s*/) {
  618. print "MODIFIER($1)\n" if ($dbg_values > 1);
  619. $type = 'T';
  620. } elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) {
  621. print "DEFINE($1,$2)\n" if ($dbg_values > 1);
  622. $av_preprocessor = 1;
  623. push(@av_paren_type, $type);
  624. if ($2 ne '') {
  625. $av_pending = 'N';
  626. }
  627. $type = 'E';
  628. } elsif ($cur =~ /^(\#\s*(?:undef\s*$Ident|include\b))/o) {
  629. print "UNDEF($1)\n" if ($dbg_values > 1);
  630. $av_preprocessor = 1;
  631. push(@av_paren_type, $type);
  632. } elsif ($cur =~ /^(\#\s*(?:ifdef|ifndef|if))/o) {
  633. print "PRE_START($1)\n" if ($dbg_values > 1);
  634. $av_preprocessor = 1;
  635. push(@av_paren_type, $type);
  636. push(@av_paren_type, $type);
  637. $type = 'E';
  638. } elsif ($cur =~ /^(\#\s*(?:else|elif))/o) {
  639. print "PRE_RESTART($1)\n" if ($dbg_values > 1);
  640. $av_preprocessor = 1;
  641. push(@av_paren_type, $av_paren_type[$#av_paren_type]);
  642. $type = 'E';
  643. } elsif ($cur =~ /^(\#\s*(?:endif))/o) {
  644. print "PRE_END($1)\n" if ($dbg_values > 1);
  645. $av_preprocessor = 1;
  646. # Assume all arms of the conditional end as this
  647. # one does, and continue as if the #endif was not here.
  648. pop(@av_paren_type);
  649. push(@av_paren_type, $type);
  650. $type = 'E';
  651. } elsif ($cur =~ /^(\\\n)/o) {
  652. print "PRECONT($1)\n" if ($dbg_values > 1);
  653. } elsif ($cur =~ /^(__attribute__)\s*\(?/o) {
  654. print "ATTR($1)\n" if ($dbg_values > 1);
  655. $av_pending = $type;
  656. $type = 'N';
  657. } elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
  658. print "SIZEOF($1)\n" if ($dbg_values > 1);
  659. if (defined $2) {
  660. $av_pending = 'V';
  661. }
  662. $type = 'N';
  663. } elsif ($cur =~ /^(if|while|typeof|__typeof__|for)\b/o) {
  664. print "COND($1)\n" if ($dbg_values > 1);
  665. $av_pending = 'N';
  666. $type = 'N';
  667. } elsif ($cur =~/^(case)/o) {
  668. print "CASE($1)\n" if ($dbg_values > 1);
  669. $av_pend_colon = 'C';
  670. $type = 'N';
  671. } elsif ($cur =~/^(return|else|goto)/o) {
  672. print "KEYWORD($1)\n" if ($dbg_values > 1);
  673. $type = 'N';
  674. } elsif ($cur =~ /^(\()/o) {
  675. print "PAREN('$1')\n" if ($dbg_values > 1);
  676. push(@av_paren_type, $av_pending);
  677. $av_pending = '_';
  678. $type = 'N';
  679. } elsif ($cur =~ /^(\))/o) {
  680. my $new_type = pop(@av_paren_type);
  681. if ($new_type ne '_') {
  682. $type = $new_type;
  683. print "PAREN('$1') -> $type\n"
  684. if ($dbg_values > 1);
  685. } else {
  686. print "PAREN('$1')\n" if ($dbg_values > 1);
  687. }
  688. } elsif ($cur =~ /^($Ident)\s*\(/o) {
  689. print "FUNC($1)\n" if ($dbg_values > 1);
  690. $type = 'V';
  691. $av_pending = 'V';
  692. } elsif ($cur =~ /^($Ident\s*):/) {
  693. if ($type eq 'E') {
  694. $av_pend_colon = 'L';
  695. } elsif ($type eq 'T') {
  696. $av_pend_colon = 'B';
  697. }
  698. print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1);
  699. $type = 'V';
  700. } elsif ($cur =~ /^($Ident|$Constant)/o) {
  701. print "IDENT($1)\n" if ($dbg_values > 1);
  702. $type = 'V';
  703. } elsif ($cur =~ /^($Assignment)/o) {
  704. print "ASSIGN($1)\n" if ($dbg_values > 1);
  705. $type = 'N';
  706. } elsif ($cur =~/^(;|{|})/) {
  707. print "END($1)\n" if ($dbg_values > 1);
  708. $type = 'E';
  709. $av_pend_colon = 'O';
  710. } elsif ($cur =~ /^(\?)/o) {
  711. print "QUESTION($1)\n" if ($dbg_values > 1);
  712. $type = 'N';
  713. } elsif ($cur =~ /^(:)/o) {
  714. print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1);
  715. substr($var, length($res), 1, $av_pend_colon);
  716. if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') {
  717. $type = 'E';
  718. } else {
  719. $type = 'N';
  720. }
  721. $av_pend_colon = 'O';
  722. } elsif ($cur =~ /^(;|\[)/o) {
  723. print "CLOSE($1)\n" if ($dbg_values > 1);
  724. $type = 'N';
  725. } elsif ($cur =~ /^(-(?![->])|\+(?!\+)|\*|\&(?!\&))/o) {
  726. my $variant;
  727. print "OPV($1)\n" if ($dbg_values > 1);
  728. if ($type eq 'V') {
  729. $variant = 'B';
  730. } else {
  731. $variant = 'U';
  732. }
  733. substr($var, length($res), 1, $variant);
  734. $type = 'N';
  735. } elsif ($cur =~ /^($Operators)/o) {
  736. print "OP($1)\n" if ($dbg_values > 1);
  737. if ($1 ne '++' && $1 ne '--') {
  738. $type = 'N';
  739. }
  740. } elsif ($cur =~ /(^.)/o) {
  741. print "C($1)\n" if ($dbg_values > 1);
  742. }
  743. if (defined $1) {
  744. $cur = substr($cur, length($1));
  745. $res .= $type x length($1);
  746. }
  747. }
  748. return ($res, $var);
  749. }
  750. sub possible {
  751. my ($possible, $line) = @_;
  752. print "CHECK<$possible> ($line)\n" if ($dbg_possible > 1);
  753. if ($possible !~ /^(?:$Modifier|$Storage|$Type|DEFINE_\S+)$/ &&
  754. $possible ne 'goto' && $possible ne 'return' &&
  755. $possible ne 'case' && $possible ne 'else' &&
  756. $possible ne 'asm' && $possible ne '__asm__' &&
  757. $possible !~ /^(typedef|struct|enum)\b/) {
  758. # Check for modifiers.
  759. $possible =~ s/\s*$Storage\s*//g;
  760. $possible =~ s/\s*$Sparse\s*//g;
  761. if ($possible =~ /^\s*$/) {
  762. } elsif ($possible =~ /\s/) {
  763. $possible =~ s/\s*$Type\s*//g;
  764. for my $modifier (split(' ', $possible)) {
  765. warn "MODIFIER: $modifier ($possible) ($line)\n" if ($dbg_possible);
  766. push(@modifierList, $modifier);
  767. }
  768. } else {
  769. warn "POSSIBLE: $possible ($line)\n" if ($dbg_possible);
  770. push(@typeList, $possible);
  771. }
  772. build_types();
  773. }
  774. }
  775. my $prefix = '';
  776. sub report {
  777. if (defined $tst_only && $_[0] !~ /\Q$tst_only\E/) {
  778. return 0;
  779. }
  780. my $line = $prefix . $_[0];
  781. $line = (split('\n', $line))[0] . "\n" if ($terse);
  782. push(our @report, $line);
  783. return 1;
  784. }
  785. sub report_dump {
  786. our @report;
  787. }
  788. sub ERROR {
  789. if (report("ERROR: $_[0]\n")) {
  790. our $clean = 0;
  791. our $cnt_error++;
  792. }
  793. }
  794. sub WARN {
  795. if (report("WARNING: $_[0]\n")) {
  796. our $clean = 0;
  797. our $cnt_warn++;
  798. }
  799. }
  800. sub CHK {
  801. if ($check && report("CHECK: $_[0]\n")) {
  802. our $clean = 0;
  803. our $cnt_chk++;
  804. }
  805. }
  806. sub process {
  807. my $filename = shift;
  808. my $linenr=0;
  809. my $prevline="";
  810. my $prevrawline="";
  811. my $stashline="";
  812. my $stashrawline="";
  813. my $length;
  814. my $indent;
  815. my $previndent=0;
  816. my $stashindent=0;
  817. our $clean = 1;
  818. my $signoff = 0;
  819. my $is_patch = 0;
  820. our @report = ();
  821. our $cnt_lines = 0;
  822. our $cnt_error = 0;
  823. our $cnt_warn = 0;
  824. our $cnt_chk = 0;
  825. # Trace the real file/line as we go.
  826. my $realfile = '';
  827. my $realline = 0;
  828. my $realcnt = 0;
  829. my $here = '';
  830. my $in_comment = 0;
  831. my $comment_edge = 0;
  832. my $first_line = 0;
  833. my $prev_values = 'E';
  834. # suppression flags
  835. my %suppress_ifbraces;
  836. # Pre-scan the patch sanitizing the lines.
  837. # Pre-scan the patch looking for any __setup documentation.
  838. #
  839. my @setup_docs = ();
  840. my $setup_docs = 0;
  841. sanitise_line_reset();
  842. my $line;
  843. foreach my $rawline (@rawlines) {
  844. $linenr++;
  845. $line = $rawline;
  846. if ($rawline=~/^\+\+\+\s+(\S+)/) {
  847. $setup_docs = 0;
  848. if ($1 =~ m@Documentation/kernel-parameters.txt$@) {
  849. $setup_docs = 1;
  850. }
  851. #next;
  852. }
  853. if ($rawline=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
  854. $realline=$1-1;
  855. if (defined $2) {
  856. $realcnt=$3+1;
  857. } else {
  858. $realcnt=1+1;
  859. }
  860. $in_comment = 0;
  861. # Guestimate if this is a continuing comment. Run
  862. # the context looking for a comment "edge". If this
  863. # edge is a close comment then we must be in a comment
  864. # at context start.
  865. my $edge;
  866. for (my $ln = $linenr + 1; $ln < ($linenr + $realcnt); $ln++) {
  867. next if ($line =~ /^-/);
  868. ($edge) = ($rawlines[$ln - 1] =~ m@(/\*|\*/)@);
  869. last if (defined $edge);
  870. }
  871. if (defined $edge && $edge eq '*/') {
  872. $in_comment = 1;
  873. }
  874. # Guestimate if this is a continuing comment. If this
  875. # is the start of a diff block and this line starts
  876. # ' *' then it is very likely a comment.
  877. if (!defined $edge &&
  878. $rawlines[$linenr] =~ m@^.\s* \*(?:\s|$)@)
  879. {
  880. $in_comment = 1;
  881. }
  882. ##print "COMMENT:$in_comment edge<$edge> $rawline\n";
  883. sanitise_line_reset($in_comment);
  884. } elsif ($realcnt && $rawline =~ /^(?:\+| |$)/) {
  885. # Standardise the strings and chars within the input to
  886. # simplify matching -- only bother with positive lines.
  887. $line = sanitise_line($rawline);
  888. }
  889. push(@lines, $line);
  890. if ($realcnt > 1) {
  891. $realcnt-- if ($line =~ /^(?:\+| |$)/);
  892. } else {
  893. $realcnt = 0;
  894. }
  895. #print "==>$rawline\n";
  896. #print "-->$line\n";
  897. if ($setup_docs && $line =~ /^\+/) {
  898. push(@setup_docs, $line);
  899. }
  900. }
  901. $prefix = '';
  902. $realcnt = 0;
  903. $linenr = 0;
  904. foreach my $line (@lines) {
  905. $linenr++;
  906. my $rawline = $rawlines[$linenr - 1];
  907. #extract the line range in the file after the patch is applied
  908. if ($line=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
  909. $is_patch = 1;
  910. $first_line = $linenr + 1;
  911. $realline=$1-1;
  912. if (defined $2) {
  913. $realcnt=$3+1;
  914. } else {
  915. $realcnt=1+1;
  916. }
  917. annotate_reset();
  918. $prev_values = 'E';
  919. %suppress_ifbraces = ();
  920. next;
  921. # track the line number as we move through the hunk, note that
  922. # new versions of GNU diff omit the leading space on completely
  923. # blank context lines so we need to count that too.
  924. } elsif ($line =~ /^( |\+|$)/) {
  925. $realline++;
  926. $realcnt-- if ($realcnt != 0);
  927. # Measure the line length and indent.
  928. ($length, $indent) = line_stats($rawline);
  929. # Track the previous line.
  930. ($prevline, $stashline) = ($stashline, $line);
  931. ($previndent, $stashindent) = ($stashindent, $indent);
  932. ($prevrawline, $stashrawline) = ($stashrawline, $rawline);
  933. #warn "line<$line>\n";
  934. } elsif ($realcnt == 1) {
  935. $realcnt--;
  936. }
  937. #make up the handle for any error we report on this line
  938. $prefix = "$filename:$realline: " if ($emacs && $file);
  939. $prefix = "$filename:$linenr: " if ($emacs && !$file);
  940. $here = "#$linenr: " if (!$file);
  941. $here = "#$realline: " if ($file);
  942. # extract the filename as it passes
  943. if ($line=~/^\+\+\+\s+(\S+)/) {
  944. $realfile = $1;
  945. $realfile =~ s@^[^/]*/@@;
  946. if ($realfile =~ m@include/asm/@) {
  947. ERROR("do not modify files in include/asm, change architecture specific files in include/asm-<architecture>\n" . "$here$rawline\n");
  948. }
  949. next;
  950. }
  951. $here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
  952. my $hereline = "$here\n$rawline\n";
  953. my $herecurr = "$here\n$rawline\n";
  954. my $hereprev = "$here\n$prevrawline\n$rawline\n";
  955. $cnt_lines++ if ($realcnt != 0);
  956. #check the patch for a signoff:
  957. if ($line =~ /^\s*signed-off-by:/i) {
  958. # This is a signoff, if ugly, so do not double report.
  959. $signoff++;
  960. if (!($line =~ /^\s*Signed-off-by:/)) {
  961. WARN("Signed-off-by: is the preferred form\n" .
  962. $herecurr);
  963. }
  964. if ($line =~ /^\s*signed-off-by:\S/i) {
  965. WARN("space required after Signed-off-by:\n" .
  966. $herecurr);
  967. }
  968. }
  969. # Check for wrappage within a valid hunk of the file
  970. if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) {
  971. ERROR("patch seems to be corrupt (line wrapped?)\n" .
  972. $herecurr) if (!$emitted_corrupt++);
  973. }
  974. # UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
  975. if (($realfile =~ /^$/ || $line =~ /^\+/) &&
  976. $rawline !~ m/^$UTF8*$/) {
  977. my ($utf8_prefix) = ($rawline =~ /^($UTF8*)/);
  978. my $blank = copy_spacing($rawline);
  979. my $ptr = substr($blank, 0, length($utf8_prefix)) . "^";
  980. my $hereptr = "$hereline$ptr\n";
  981. ERROR("Invalid UTF-8, patch and commit message should be encoded in UTF-8\n" . $hereptr);
  982. }
  983. #ignore lines being removed
  984. if ($line=~/^-/) {next;}
  985. # check we are in a valid source file if not then ignore this hunk
  986. next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/);
  987. #trailing whitespace
  988. if ($line =~ /^\+.*\015/) {
  989. my $herevet = "$here\n" . cat_vet($rawline) . "\n";
  990. ERROR("DOS line endings\n" . $herevet);
  991. } elsif ($rawline =~ /^\+.*\S\s+$/ || $rawline =~ /^\+\s+$/) {
  992. my $herevet = "$here\n" . cat_vet($rawline) . "\n";
  993. ERROR("trailing whitespace\n" . $herevet);
  994. }
  995. #80 column limit
  996. if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ &&
  997. $rawline !~ /^.\s*\*\s*\@$Ident\s/ &&
  998. $line !~ /^\+\s*printk\s*\(\s*(?:KERN_\S+\s*)?"[X\t]*"\s*(?:,|\)\s*;)\s*$/ &&
  999. $length > 80)
  1000. {
  1001. WARN("line over 80 characters\n" . $herecurr);
  1002. }
  1003. # check for adding lines without a newline.
  1004. if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
  1005. WARN("adding a line without newline at end of file\n" . $herecurr);
  1006. }
  1007. # check we are in a valid source file *.[hc] if not then ignore this hunk
  1008. next if ($realfile !~ /\.[hc]$/);
  1009. # at the beginning of a line any tabs must come first and anything
  1010. # more than 8 must use tabs.
  1011. if ($rawline =~ /^\+\s* \t\s*\S/ ||
  1012. $rawline =~ /^\+\s* \s*/) {
  1013. my $herevet = "$here\n" . cat_vet($rawline) . "\n";
  1014. ERROR("code indent should use tabs where possible\n" . $herevet);
  1015. }
  1016. # check for RCS/CVS revision markers
  1017. if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) {
  1018. WARN("CVS style keyword markers, these will _not_ be updated\n". $herecurr);
  1019. }
  1020. # Check for potential 'bare' types
  1021. my ($stat, $cond, $line_nr_next, $remain_next);
  1022. if ($realcnt && $line =~ /.\s*\S/) {
  1023. ($stat, $cond, $line_nr_next, $remain_next) =
  1024. ctx_statement_block($linenr, $realcnt, 0);
  1025. $stat =~ s/\n./\n /g;
  1026. $cond =~ s/\n./\n /g;
  1027. my $s = $stat;
  1028. $s =~ s/{.*$//s;
  1029. # Ignore goto labels.
  1030. if ($s =~ /$Ident:\*$/s) {
  1031. # Ignore functions being called
  1032. } elsif ($s =~ /^.\s*$Ident\s*\(/s) {
  1033. # declarations always start with types
  1034. } 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) {
  1035. my $type = $1;
  1036. $type =~ s/\s+/ /g;
  1037. possible($type, "A:" . $s);
  1038. # definitions in global scope can only start with types
  1039. } elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b/s) {
  1040. possible($1, "B:" . $s);
  1041. }
  1042. # any (foo ... *) is a pointer cast, and foo is a type
  1043. while ($s =~ /\(($Ident)(?:\s+$Sparse)*\s*\*+\s*\)/sg) {
  1044. possible($1, "C:" . $s);
  1045. }
  1046. # Check for any sort of function declaration.
  1047. # int foo(something bar, other baz);
  1048. # void (*store_gdt)(x86_descr_ptr *);
  1049. if ($prev_values eq 'E' && $s =~ /^(.(?:typedef\s*)?(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*(?:\b$Ident|\(\*\s*$Ident\))\s*)\(/s) {
  1050. my ($name_len) = length($1);
  1051. my $ctx = $s;
  1052. substr($ctx, 0, $name_len + 1, '');
  1053. $ctx =~ s/\)[^\)]*$//;
  1054. for my $arg (split(/\s*,\s*/, $ctx)) {
  1055. if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$/s) {
  1056. possible($1, "D:" . $s);
  1057. }
  1058. }
  1059. }
  1060. }
  1061. #
  1062. # Checks which may be anchored in the context.
  1063. #
  1064. # Check for switch () and associated case and default
  1065. # statements should be at the same indent.
  1066. if ($line=~/\bswitch\s*\(.*\)/) {
  1067. my $err = '';
  1068. my $sep = '';
  1069. my @ctx = ctx_block_outer($linenr, $realcnt);
  1070. shift(@ctx);
  1071. for my $ctx (@ctx) {
  1072. my ($clen, $cindent) = line_stats($ctx);
  1073. if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
  1074. $indent != $cindent) {
  1075. $err .= "$sep$ctx\n";
  1076. $sep = '';
  1077. } else {
  1078. $sep = "[...]\n";
  1079. }
  1080. }
  1081. if ($err ne '') {
  1082. ERROR("switch and case should be at the same indent\n$hereline$err");
  1083. }
  1084. }
  1085. if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
  1086. $line !~ /\G(?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$/g) {
  1087. ERROR("trailing statements should be on next line\n" . $herecurr);
  1088. }
  1089. # if/while/etc brace do not go on next line, unless defining a do while loop,
  1090. # or if that brace on the next line is for something else
  1091. if ($line =~ /(.*)\b((?:if|while|for|switch)\s*\(|do\b|else\b)/ && $line !~ /^.\s*\#/) {
  1092. my $pre_ctx = "$1$2";
  1093. my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0);
  1094. my $ctx_cnt = $realcnt - $#ctx - 1;
  1095. my $ctx = join("\n", @ctx);
  1096. my $ctx_ln = $linenr;
  1097. my $ctx_skip = $realcnt;
  1098. while ($ctx_skip > $ctx_cnt || ($ctx_skip == $ctx_cnt &&
  1099. defined $lines[$ctx_ln - 1] &&
  1100. $lines[$ctx_ln - 1] =~ /^-/)) {
  1101. ##print "SKIP<$ctx_skip> CNT<$ctx_cnt>\n";
  1102. $ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/);
  1103. $ctx_ln++;
  1104. }
  1105. #print "realcnt<$realcnt> ctx_cnt<$ctx_cnt>\n";
  1106. #print "pre<$pre_ctx>\nline<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>\n";
  1107. if ($ctx !~ /{\s*/ && defined($lines[$ctx_ln -1]) && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
  1108. ERROR("that open brace { should be on the previous line\n" .
  1109. "$here\n$ctx\n$lines[$ctx_ln - 1]\n");
  1110. }
  1111. if ($level == 0 && $pre_ctx !~ /}\s*while\s*\($/ &&
  1112. $ctx =~ /\)\s*\;\s*$/ &&
  1113. defined $lines[$ctx_ln - 1])
  1114. {
  1115. my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
  1116. if ($nindent > $indent) {
  1117. WARN("trailing semicolon indicates no statements, indent implies otherwise\n" .
  1118. "$here\n$ctx\n$lines[$ctx_ln - 1]\n");
  1119. }
  1120. }
  1121. }
  1122. # Track the 'values' across context and added lines.
  1123. my $opline = $line; $opline =~ s/^./ /;
  1124. my ($curr_values, $curr_vars) =
  1125. annotate_values($opline . "\n", $prev_values);
  1126. $curr_values = $prev_values . $curr_values;
  1127. if ($dbg_values) {
  1128. my $outline = $opline; $outline =~ s/\t/ /g;
  1129. print "$linenr > .$outline\n";
  1130. print "$linenr > $curr_values\n";
  1131. print "$linenr > $curr_vars\n";
  1132. }
  1133. $prev_values = substr($curr_values, -1);
  1134. #ignore lines not being added
  1135. if ($line=~/^[^\+]/) {next;}
  1136. # TEST: allow direct testing of the type matcher.
  1137. if ($dbg_type) {
  1138. if ($line =~ /^.\s*$Declare\s*$/) {
  1139. ERROR("TEST: is type\n" . $herecurr);
  1140. } elsif ($dbg_type > 1 && $line =~ /^.+($Declare)/) {
  1141. ERROR("TEST: is not type ($1 is)\n". $herecurr);
  1142. }
  1143. next;
  1144. }
  1145. # check for initialisation to aggregates open brace on the next line
  1146. if ($prevline =~ /$Declare\s*$Ident\s*=\s*$/ &&
  1147. $line =~ /^.\s*{/) {
  1148. ERROR("that open brace { should be on the previous line\n" . $hereprev);
  1149. }
  1150. #
  1151. # Checks which are anchored on the added line.
  1152. #
  1153. # check for malformed paths in #include statements (uses RAW line)
  1154. if ($rawline =~ m{^.\s*\#\s*include\s+[<"](.*)[">]}) {
  1155. my $path = $1;
  1156. if ($path =~ m{//}) {
  1157. ERROR("malformed #include filename\n" .
  1158. $herecurr);
  1159. }
  1160. }
  1161. # no C99 // comments
  1162. if ($line =~ m{//}) {
  1163. ERROR("do not use C99 // comments\n" . $herecurr);
  1164. }
  1165. # Remove C99 comments.
  1166. $line =~ s@//.*@@;
  1167. $opline =~ s@//.*@@;
  1168. #EXPORT_SYMBOL should immediately follow its function closing }.
  1169. if (($line =~ /EXPORT_SYMBOL.*\((.*)\)/) ||
  1170. ($line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
  1171. my $name = $1;
  1172. if (($prevline !~ /^}/) &&
  1173. ($prevline !~ /^\+}/) &&
  1174. ($prevline !~ /^ }/) &&
  1175. ($prevline !~ /^.DECLARE_$Ident\(\Q$name\E\)/) &&
  1176. ($prevline !~ /^.LIST_HEAD\(\Q$name\E\)/) &&
  1177. ($prevline !~ /^.$Type\s*\(\s*\*\s*\Q$name\E\s*\)\s*\(/) &&
  1178. ($prevline !~ /\b\Q$name\E(?:\s+$Attribute)?\s*(?:;|=|\[)/)) {
  1179. WARN("EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
  1180. }
  1181. }
  1182. # check for external initialisers.
  1183. if ($line =~ /^.$Type\s*$Ident\s*(?:\s+$Modifier)*\s*=\s*(0|NULL|false)\s*;/) {
  1184. ERROR("do not initialise externals to 0 or NULL\n" .
  1185. $herecurr);
  1186. }
  1187. # check for static initialisers.
  1188. if ($line =~ /\s*static\s.*=\s*(0|NULL|false)\s*;/) {
  1189. ERROR("do not initialise statics to 0 or NULL\n" .
  1190. $herecurr);
  1191. }
  1192. # check for new typedefs, only function parameters and sparse annotations
  1193. # make sense.
  1194. if ($line =~ /\btypedef\s/ &&
  1195. $line !~ /\btypedef\s+$Type\s+\(\s*\*?$Ident\s*\)\s*\(/ &&
  1196. $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ &&
  1197. $line !~ /\b__bitwise(?:__|)\b/) {
  1198. WARN("do not add new typedefs\n" . $herecurr);
  1199. }
  1200. # * goes on variable not on type
  1201. if ($line =~ m{\($NonptrType(\*+)(?:\s+const)?\)}) {
  1202. ERROR("\"(foo$1)\" should be \"(foo $1)\"\n" .
  1203. $herecurr);
  1204. } elsif ($line =~ m{\($NonptrType\s+(\*+)(?!\s+const)\s+\)}) {
  1205. ERROR("\"(foo $1 )\" should be \"(foo $1)\"\n" .
  1206. $herecurr);
  1207. } elsif ($line =~ m{\b$NonptrType(\*+)(?:\s+(?:$Attribute|$Sparse))?\s+[A-Za-z\d_]+}) {
  1208. ERROR("\"foo$1 bar\" should be \"foo $1bar\"\n" .
  1209. $herecurr);
  1210. } elsif ($line =~ m{\b$NonptrType\s+(\*+)(?!\s+(?:$Attribute|$Sparse))\s+[A-Za-z\d_]+}) {
  1211. ERROR("\"foo $1 bar\" should be \"foo $1bar\"\n" .
  1212. $herecurr);
  1213. }
  1214. # # no BUG() or BUG_ON()
  1215. # if ($line =~ /\b(BUG|BUG_ON)\b/) {
  1216. # print "Try to use WARN_ON & Recovery code rather than BUG() or BUG_ON()\n";
  1217. # print "$herecurr";
  1218. # $clean = 0;
  1219. # }
  1220. if ($line =~ /\bLINUX_VERSION_CODE\b/) {
  1221. WARN("LINUX_VERSION_CODE should be avoided, code should be for the version to which it is merged\n" . $herecurr);
  1222. }
  1223. # printk should use KERN_* levels. Note that follow on printk's on the
  1224. # same line do not need a level, so we use the current block context
  1225. # to try and find and validate the current printk. In summary the current
  1226. # printk includes all preceeding printk's which have no newline on the end.
  1227. # we assume the first bad printk is the one to report.
  1228. if ($line =~ /\bprintk\((?!KERN_)\s*"/) {
  1229. my $ok = 0;
  1230. for (my $ln = $linenr - 1; $ln >= $first_line; $ln--) {
  1231. #print "CHECK<$lines[$ln - 1]\n";
  1232. # we have a preceeding printk if it ends
  1233. # with "\n" ignore it, else it is to blame
  1234. if ($lines[$ln - 1] =~ m{\bprintk\(}) {
  1235. if ($rawlines[$ln - 1] !~ m{\\n"}) {
  1236. $ok = 1;
  1237. }
  1238. last;
  1239. }
  1240. }
  1241. if ($ok == 0) {
  1242. WARN("printk() should include KERN_ facility level\n" . $herecurr);
  1243. }
  1244. }
  1245. # function brace can't be on same line, except for #defines of do while,
  1246. # or if closed on same line
  1247. if (($line=~/$Type\s*$Ident\(.*\).*\s{/) and
  1248. !($line=~/\#\s*define.*do\s{/) and !($line=~/}/)) {
  1249. ERROR("open brace '{' following function declarations go on the next line\n" . $herecurr);
  1250. }
  1251. # open braces for enum, union and struct go on the same line.
  1252. if ($line =~ /^.\s*{/ &&
  1253. $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
  1254. ERROR("open brace '{' following $1 go on the same line\n" . $hereprev);
  1255. }
  1256. # check for spacing round square brackets; allowed:
  1257. # 1. with a type on the left -- int [] a;
  1258. # 2. at the beginning of a line for slice initialisers -- [0...10] = 5,
  1259. # 3. inside a curly brace -- = { [0...10] = 5 }
  1260. while ($line =~ /(.*?\s)\[/g) {
  1261. my ($where, $prefix) = ($-[1], $1);
  1262. if ($prefix !~ /$Type\s+$/ &&
  1263. ($where != 0 || $prefix !~ /^.\s+$/) &&
  1264. $prefix !~ /{\s+$/) {
  1265. ERROR("space prohibited before open square bracket '['\n" . $herecurr);
  1266. }
  1267. }
  1268. # check for spaces between functions and their parentheses.
  1269. while ($line =~ /($Ident)\s+\(/g) {
  1270. my $name = $1;
  1271. my $ctx_before = substr($line, 0, $-[1]);
  1272. my $ctx = "$ctx_before$name";
  1273. # Ignore those directives where spaces _are_ permitted.
  1274. if ($name =~ /^(?:
  1275. if|for|while|switch|return|case|
  1276. volatile|__volatile__|
  1277. __attribute__|format|__extension__|
  1278. asm|__asm__)$/x)
  1279. {
  1280. # cpp #define statements have non-optional spaces, ie
  1281. # if there is a space between the name and the open
  1282. # parenthesis it is simply not a parameter group.
  1283. } elsif ($ctx_before =~ /^.\s*\#\s*define\s*$/) {
  1284. # cpp #elif statement condition may start with a (
  1285. } elsif ($ctx =~ /^.\s*\#\s*elif\s*$/) {
  1286. # If this whole things ends with a type its most
  1287. # likely a typedef for a function.
  1288. } elsif ($ctx =~ /$Type$/) {
  1289. } else {
  1290. WARN("space prohibited between function name and open parenthesis '('\n" . $herecurr);
  1291. }
  1292. }
  1293. # Check operator spacing.
  1294. if (!($line=~/\#\s*include/)) {
  1295. my $ops = qr{
  1296. <<=|>>=|<=|>=|==|!=|
  1297. \+=|-=|\*=|\/=|%=|\^=|\|=|&=|
  1298. =>|->|<<|>>|<|>|=|!|~|
  1299. &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%|
  1300. \?|:
  1301. }x;
  1302. my @elements = split(/($ops|;)/, $opline);
  1303. my $off = 0;
  1304. my $blank = copy_spacing($opline);
  1305. for (my $n = 0; $n < $#elements; $n += 2) {
  1306. $off += length($elements[$n]);
  1307. # Pick up the preceeding and succeeding characters.
  1308. my $ca = substr($opline, 0, $off);
  1309. my $cc = '';
  1310. if (length($opline) >= ($off + length($elements[$n + 1]))) {
  1311. $cc = substr($opline, $off + length($elements[$n + 1]));
  1312. }
  1313. my $cb = "$ca$;$cc";
  1314. my $a = '';
  1315. $a = 'V' if ($elements[$n] ne '');
  1316. $a = 'W' if ($elements[$n] =~ /\s$/);
  1317. $a = 'C' if ($elements[$n] =~ /$;$/);
  1318. $a = 'B' if ($elements[$n] =~ /(\[|\()$/);
  1319. $a = 'O' if ($elements[$n] eq '');
  1320. $a = 'E' if ($ca =~ /^\s*$/);
  1321. my $op = $elements[$n + 1];
  1322. my $c = '';
  1323. if (defined $elements[$n + 2]) {
  1324. $c = 'V' if ($elements[$n + 2] ne '');
  1325. $c = 'W' if ($elements[$n + 2] =~ /^\s/);
  1326. $c = 'C' if ($elements[$n + 2] =~ /^$;/);
  1327. $c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
  1328. $c = 'O' if ($elements[$n + 2] eq '');
  1329. $c = 'E' if ($elements[$n + 2] =~ /\s*\\$/);
  1330. } else {
  1331. $c = 'E';
  1332. }
  1333. my $ctx = "${a}x${c}";
  1334. my $at = "(ctx:$ctx)";
  1335. my $ptr = substr($blank, 0, $off) . "^";
  1336. my $hereptr = "$hereline$ptr\n";
  1337. # Pull out the value of this operator.
  1338. my $op_type = substr($curr_values, $off + 1, 1);
  1339. # Get the full operator variant.
  1340. my $opv = $op . substr($curr_vars, $off, 1);
  1341. # Ignore operators passed as parameters.
  1342. if ($op_type ne 'V' &&
  1343. $ca =~ /\s$/ && $cc =~ /^\s*,/) {
  1344. # # Ignore comments
  1345. # } elsif ($op =~ /^$;+$/) {
  1346. # ; should have either the end of line or a space or \ after it
  1347. } elsif ($op eq ';') {
  1348. if ($ctx !~ /.x[WEBC]/ &&
  1349. $cc !~ /^\\/ && $cc !~ /^;/) {
  1350. ERROR("space required after that '$op' $at\n" . $hereptr);
  1351. }
  1352. # // is a comment
  1353. } elsif ($op eq '//') {
  1354. # No spaces for:
  1355. # ->
  1356. # : when part of a bitfield
  1357. } elsif ($op eq '->' || $opv eq ':B') {
  1358. if ($ctx =~ /Wx.|.xW/) {
  1359. ERROR("spaces prohibited around that '$op' $at\n" . $hereptr);
  1360. }
  1361. # , must have a space on the right.
  1362. } elsif ($op eq ',') {
  1363. if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) {
  1364. ERROR("space required after that '$op' $at\n" . $hereptr);
  1365. }
  1366. # '*' as part of a type definition -- reported already.
  1367. } elsif ($opv eq '*_') {
  1368. #warn "'*' is part of type\n";
  1369. # unary operators should have a space before and
  1370. # none after. May be left adjacent to another
  1371. # unary operator, or a cast
  1372. } elsif ($op eq '!' || $op eq '~' ||
  1373. $opv eq '*U' || $opv eq '-U' ||
  1374. $opv eq '&U') {
  1375. if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
  1376. ERROR("space required before that '$op' $at\n" . $hereptr);
  1377. }
  1378. if ($op eq '*' && $cc =~/\s*const\b/) {
  1379. # A unary '*' may be const
  1380. } elsif ($ctx =~ /.xW/) {
  1381. ERROR("space prohibited after that '$op' $at\n" . $hereptr);
  1382. }
  1383. # unary ++ and unary -- are allowed no space on one side.
  1384. } elsif ($op eq '++' or $op eq '--') {
  1385. if ($ctx !~ /[WEOBC]x[^W]/ && $ctx !~ /[^W]x[WOBEC]/) {
  1386. ERROR("space required one side of that '$op' $at\n" . $hereptr);
  1387. }
  1388. if ($ctx =~ /Wx[BE]/ ||
  1389. ($ctx =~ /Wx./ && $cc =~ /^;/)) {
  1390. ERROR("space prohibited before that '$op' $at\n" . $hereptr);
  1391. }
  1392. if ($ctx =~ /ExW/) {
  1393. ERROR("space prohibited after that '$op' $at\n" . $hereptr);
  1394. }
  1395. # << and >> may either have or not have spaces both sides
  1396. } elsif ($op eq '<<' or $op eq '>>' or
  1397. $op eq '&' or $op eq '^' or $op eq '|' or
  1398. $op eq '+' or $op eq '-' or
  1399. $op eq '*' or $op eq '/' or
  1400. $op eq '%')
  1401. {
  1402. if ($ctx =~ /Wx[^WCE]|[^WCE]xW/) {
  1403. ERROR("need consistent spacing around '$op' $at\n" .
  1404. $hereptr);
  1405. }
  1406. # A colon needs no spaces before when it is
  1407. # terminating a case value or a label.
  1408. } elsif ($opv eq ':C' || $opv eq ':L') {
  1409. if ($ctx =~ /Wx./) {
  1410. ERROR("space prohibited before that '$op' $at\n" . $hereptr);
  1411. }
  1412. # All the others need spaces both sides.
  1413. } elsif ($ctx !~ /[EWC]x[CWE]/) {
  1414. my $ok = 0;
  1415. # Ignore email addresses <foo@bar>
  1416. if (($op eq '<' &&
  1417. $cc =~ /^\S+\@\S+>/) ||
  1418. ($op eq '>' &&
  1419. $ca =~ /<\S+\@\S+$/))
  1420. {
  1421. $ok = 1;
  1422. }
  1423. # Ignore ?:
  1424. if (($opv eq ':O' && $ca =~ /\?$/) ||
  1425. ($op eq '?' && $cc =~ /^:/)) {
  1426. $ok = 1;
  1427. }
  1428. if ($ok == 0) {
  1429. ERROR("spaces required around that '$op' $at\n" . $hereptr);
  1430. }
  1431. }
  1432. $off += length($elements[$n + 1]);
  1433. }
  1434. }
  1435. # check for multiple assignments
  1436. if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
  1437. CHK("multiple assignments should be avoided\n" . $herecurr);
  1438. }
  1439. ## # check for multiple declarations, allowing for a function declaration
  1440. ## # continuation.
  1441. ## if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
  1442. ## $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
  1443. ##
  1444. ## # Remove any bracketed sections to ensure we do not
  1445. ## # falsly report the parameters of functions.
  1446. ## my $ln = $line;
  1447. ## while ($ln =~ s/\([^\(\)]*\)//g) {
  1448. ## }
  1449. ## if ($ln =~ /,/) {
  1450. ## WARN("declaring multiple variables together should be avoided\n" . $herecurr);
  1451. ## }
  1452. ## }
  1453. #need space before brace following if, while, etc
  1454. if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) ||
  1455. $line =~ /do{/) {
  1456. ERROR("space required before the open brace '{'\n" . $herecurr);
  1457. }
  1458. # closing brace should have a space following it when it has anything
  1459. # on the line
  1460. if ($line =~ /}(?!(?:,|;|\)))\S/) {
  1461. ERROR("space required after that close brace '}'\n" . $herecurr);
  1462. }
  1463. # check spacing on square brackets
  1464. if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
  1465. ERROR("space prohibited after that open square bracket '['\n" . $herecurr);
  1466. }
  1467. if ($line =~ /\s\]/) {
  1468. ERROR("space prohibited before that close square bracket ']'\n" . $herecurr);
  1469. }
  1470. # check spacing on parentheses
  1471. if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
  1472. $line !~ /for\s*\(\s+;/) {
  1473. ERROR("space prohibited after that open parenthesis '('\n" . $herecurr);
  1474. }
  1475. if ($line =~ /(\s+)\)/ && $line !~ /^.\s*\)/ &&
  1476. $line !~ /for\s*\(.*;\s+\)/ &&
  1477. $line !~ /:\s+\)/) {
  1478. ERROR("space prohibited before that close parenthesis ')'\n" . $herecurr);
  1479. }
  1480. #goto labels aren't indented, allow a single space however
  1481. if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
  1482. !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
  1483. WARN("labels should not be indented\n" . $herecurr);
  1484. }
  1485. # Return is not a function.
  1486. if (defined($stat) && $stat =~ /^.\s*return(\s*)(\(.*);/s) {
  1487. my $spacing = $1;
  1488. my $value = $2;
  1489. # Flatten any parentheses and braces
  1490. $value =~ s/\)\(/\) \(/g;
  1491. while ($value =~ s/\([^\(\)]*\)/1/) {
  1492. }
  1493. if ($value =~ /^(?:$Ident|-?$Constant)$/) {
  1494. ERROR("return is not a function, parentheses are not required\n" . $herecurr);
  1495. } elsif ($spacing !~ /\s+/) {
  1496. ERROR("space required before the open parenthesis '('\n" . $herecurr);
  1497. }
  1498. }
  1499. # Need a space before open parenthesis after if, while etc
  1500. if ($line=~/\b(if|while|for|switch)\(/) {
  1501. ERROR("space required before the open parenthesis '('\n" . $herecurr);
  1502. }
  1503. # Check for illegal assignment in if conditional -- and check for trailing
  1504. # statements after the conditional.
  1505. if ($line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) {
  1506. my ($s, $c) = ($stat, $cond);
  1507. if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/) {
  1508. ERROR("do not use assignment in if condition\n" . $herecurr);
  1509. }
  1510. # Find out what is on the end of the line after the
  1511. # conditional.
  1512. substr($s, 0, length($c), '');
  1513. $s =~ s/\n.*//g;
  1514. $s =~ s/$;//g; # Remove any comments
  1515. if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ &&
  1516. $c !~ /}\s*while\s*/)
  1517. {
  1518. ERROR("trailing statements should be on next line\n" . $herecurr);
  1519. }
  1520. }
  1521. # Check relative indent for conditionals and blocks.
  1522. if ($line =~ /\b(?:(?:if|while|for)\s*\(|do\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) {
  1523. my ($s, $c) = ($stat, $cond);
  1524. substr($s, 0, length($c), '');
  1525. # Make sure we remove the line prefixes as we have
  1526. # none on the first line, and are going to readd them
  1527. # where necessary.
  1528. $s =~ s/\n./\n/gs;
  1529. # We want to check the first line inside the block
  1530. # starting at the end of the conditional, so remove:
  1531. # 1) any blank line termination
  1532. # 2) any opening brace { on end of the line
  1533. # 3) any do (...) {
  1534. my $continuation = 0;
  1535. my $check = 0;
  1536. $s =~ s/^.*\bdo\b//;
  1537. $s =~ s/^\s*{//;
  1538. if ($s =~ s/^\s*\\//) {
  1539. $continuation = 1;
  1540. }
  1541. if ($s =~ s/^\s*\n//) {
  1542. $check = 1;
  1543. }
  1544. # Also ignore a loop construct at the end of a
  1545. # preprocessor statement.
  1546. if (($prevline =~ /^.\s*#\s*define\s/ ||
  1547. $prevline =~ /\\\s*$/) && $continuation == 0) {
  1548. $check = 0;
  1549. }
  1550. # Ignore the current line if its is a preprocessor
  1551. # line.
  1552. if ($s =~ /^\s*#\s*/) {
  1553. $check = 0;
  1554. }
  1555. my (undef, $sindent) = line_stats("+" . $s);
  1556. ##print "line<$line> prevline<$prevline> indent<$indent> sindent<$sindent> check<$check> continuation<$continuation> s<$s>\n";
  1557. if ($check && (($sindent % 8) != 0 ||
  1558. ($sindent <= $indent && $s ne ''))) {
  1559. WARN("suspect code indent for conditional statements\n" . $herecurr);
  1560. }
  1561. }
  1562. # Check for bitwise tests written as boolean
  1563. if ($line =~ /
  1564. (?:
  1565. (?:\[|\(|\&\&|\|\|)
  1566. \s*0[xX][0-9]+\s*
  1567. (?:\&\&|\|\|)
  1568. |
  1569. (?:\&\&|\|\|)
  1570. \s*0[xX][0-9]+\s*
  1571. (?:\&\&|\|\||\)|\])
  1572. )/x)
  1573. {
  1574. WARN("boolean test with hexadecimal, perhaps just 1 \& or \|?\n" . $herecurr);
  1575. }
  1576. # if and else should not have general statements after it
  1577. if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/) {
  1578. my $s = $1;
  1579. $s =~ s/$;//g; # Remove any comments
  1580. if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) {
  1581. ERROR("trailing statements should be on next line\n" . $herecurr);
  1582. }
  1583. }
  1584. # Check for }<nl>else {, these must be at the same
  1585. # indent level to be relevant to each other.
  1586. if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ and
  1587. $previndent == $indent) {
  1588. ERROR("else should follow close brace '}'\n" . $hereprev);
  1589. }
  1590. if ($prevline=~/}\s*$/ and $line=~/^.\s*while\s*/ and
  1591. $previndent == $indent) {
  1592. my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0);
  1593. # Find out what is on the end of the line after the
  1594. # conditional.
  1595. substr($s, 0, length($c), '');
  1596. $s =~ s/\n.*//g;
  1597. if ($s =~ /^\s*;/) {
  1598. ERROR("while should follow close brace '}'\n" . $hereprev);
  1599. }
  1600. }
  1601. #studly caps, commented out until figure out how to distinguish between use of existing and adding new
  1602. # if (($line=~/[\w_][a-z\d]+[A-Z]/) and !($line=~/print/)) {
  1603. # print "No studly caps, use _\n";
  1604. # print "$herecurr";
  1605. # $clean = 0;
  1606. # }
  1607. #no spaces allowed after \ in define
  1608. if ($line=~/\#\s*define.*\\\s$/) {
  1609. WARN("Whitepspace after \\ makes next lines useless\n" . $herecurr);
  1610. }
  1611. #warn if <asm/foo.h> is #included and <linux/foo.h> is available (uses RAW line)
  1612. if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) {
  1613. my $checkfile = "include/linux/$1.h";
  1614. if (-f "$root/$checkfile" && $realfile ne $checkfile &&
  1615. $1 ne 'irq')
  1616. {
  1617. WARN("Use #include <linux/$1.h> instead of <asm/$1.h>\n" .
  1618. $herecurr);
  1619. }
  1620. }
  1621. # multi-statement macros should be enclosed in a do while loop, grab the
  1622. # first statement and ensure its the whole macro if its not enclosed
  1623. # in a known good container
  1624. if ($realfile !~ m@/vmlinux.lds.h$@ &&
  1625. $line =~ /^.\s*\#\s*define\s*$Ident(\()?/) {
  1626. my $ln = $linenr;
  1627. my $cnt = $realcnt;
  1628. my ($off, $dstat, $dcond, $rest);
  1629. my $ctx = '';
  1630. my $args = defined($1);
  1631. # Find the end of the macro and limit our statement
  1632. # search to that.
  1633. while ($cnt > 0 && defined $lines[$ln - 1] &&
  1634. $lines[$ln - 1] =~ /^(?:-|..*\\$)/)
  1635. {
  1636. $ctx .= $rawlines[$ln - 1] . "\n";
  1637. $cnt-- if ($lines[$ln - 1] !~ /^-/);
  1638. $ln++;
  1639. }
  1640. $ctx .= $rawlines[$ln - 1];
  1641. ($dstat, $dcond, $ln, $cnt, $off) =
  1642. ctx_statement_block($linenr, $ln - $linenr + 1, 0);
  1643. #print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n";
  1644. #print "LINE<$lines[$ln-1]> len<" . length($lines[$ln-1]) . "\n";
  1645. # Extract the remainder of the define (if any) and
  1646. # rip off surrounding spaces, and trailing \'s.
  1647. $rest = '';
  1648. while ($off != 0 || ($cnt > 0 && $rest =~ /(?:^|\\)\s*$/)) {
  1649. #print "ADDING $off <" . substr($lines[$ln - 1], $off) . ">\n";
  1650. if ($off != 0 || $lines[$ln - 1] !~ /^-/) {
  1651. $rest .= substr($lines[$ln - 1], $off) . "\n";
  1652. $cnt--;
  1653. }
  1654. $ln++;
  1655. $off = 0;
  1656. }
  1657. $rest =~ s/\\\n.//g;
  1658. $rest =~ s/^\s*//s;
  1659. $rest =~ s/\s*$//s;
  1660. # Clean up the original statement.
  1661. if ($args) {
  1662. substr($dstat, 0, length($dcond), '');
  1663. } else {
  1664. $dstat =~ s/^.\s*\#\s*define\s+$Ident\s*//;
  1665. }
  1666. $dstat =~ s/$;//g;
  1667. $dstat =~ s/\\\n.//g;
  1668. $dstat =~ s/^\s*//s;
  1669. $dstat =~ s/\s*$//s;
  1670. # Flatten any parentheses and braces
  1671. while ($dstat =~ s/\([^\(\)]*\)/1/) {
  1672. }
  1673. while ($dstat =~ s/\{[^\{\}]*\}/1/) {
  1674. }
  1675. my $exceptions = qr{
  1676. $Declare|
  1677. module_param_named|
  1678. MODULE_PARAM_DESC|
  1679. DECLARE_PER_CPU|
  1680. DEFINE_PER_CPU|
  1681. __typeof__\(
  1682. }x;
  1683. #print "REST<$rest>\n";
  1684. if ($rest ne '') {
  1685. if ($rest !~ /while\s*\(/ &&
  1686. $dstat !~ /$exceptions/)
  1687. {
  1688. ERROR("Macros with multiple statements should be enclosed in a do - while loop\n" . "$here\n$ctx\n");
  1689. }
  1690. } elsif ($ctx !~ /;/) {
  1691. if ($dstat ne '' &&
  1692. $dstat !~ /^(?:$Ident|-?$Constant)$/ &&
  1693. $dstat !~ /$exceptions/ &&
  1694. $dstat =~ /$Operators/)
  1695. {
  1696. ERROR("Macros with complex values should be enclosed in parenthesis\n" . "$here\n$ctx\n");
  1697. }
  1698. }
  1699. }
  1700. # check for redundant bracing round if etc
  1701. if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) {
  1702. my ($level, $endln, @chunks) =
  1703. ctx_statement_full($linenr, $realcnt, 1);
  1704. #print "chunks<$#chunks> linenr<$linenr> endln<$endln> level<$level>\n";
  1705. #print "APW: <<$chunks[1][0]>><<$chunks[1][1]>>\n";
  1706. if ($#chunks > 0 && $level == 0) {
  1707. my $allowed = 0;
  1708. my $seen = 0;
  1709. my $herectx = $here . "\n";
  1710. my $ln = $linenr - 1;
  1711. for my $chunk (@chunks) {
  1712. my ($cond, $block) = @{$chunk};
  1713. # If the condition carries leading newlines, then count those as offsets.
  1714. my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s);
  1715. my $offset = statement_rawlines($whitespace) - 1;
  1716. #print "COND<$cond> whitespace<$whitespace> offset<$offset>\n";
  1717. # We have looked at and allowed this specific line.
  1718. $suppress_ifbraces{$ln + $offset} = 1;
  1719. $herectx .= "$rawlines[$ln + $offset]\n[...]\n";
  1720. $ln += statement_rawlines($block) - 1;
  1721. substr($block, 0, length($cond), '');
  1722. $seen++ if ($block =~ /^\s*{/);
  1723. #print "cond<$cond> block<$block> allowed<$allowed>\n";
  1724. if (statement_lines($cond) > 1) {
  1725. #print "APW: ALLOWED: cond<$cond>\n";
  1726. $allowed = 1;
  1727. }
  1728. if ($block =~/\b(?:if|for|while)\b/) {
  1729. #print "APW: ALLOWED: block<$block>\n";
  1730. $allowed = 1;
  1731. }
  1732. if (statement_block_size($block) > 1) {
  1733. #print "APW: ALLOWED: lines block<$block>\n";
  1734. $allowed = 1;
  1735. }
  1736. }
  1737. if ($seen && !$allowed) {
  1738. WARN("braces {} are not necessary for any arm of this statement\n" . $herectx);
  1739. }
  1740. }
  1741. }
  1742. if (!defined $suppress_ifbraces{$linenr - 1} &&
  1743. $line =~ /\b(if|while|for|else)\b/) {
  1744. my $allowed = 0;
  1745. # Check the pre-context.
  1746. if (substr($line, 0, $-[0]) =~ /(\}\s*)$/) {
  1747. #print "APW: ALLOWED: pre<$1>\n";
  1748. $allowed = 1;
  1749. }
  1750. my ($level, $endln, @chunks) =
  1751. ctx_statement_full($linenr, $realcnt, $-[0]);
  1752. # Check the condition.
  1753. my ($cond, $block) = @{$chunks[0]};
  1754. #print "CHECKING<$linenr> cond<$cond> block<$block>\n";
  1755. if (defined $cond) {
  1756. substr($block, 0, length($cond), '');
  1757. }
  1758. if (statement_lines($cond) > 1) {
  1759. #print "APW: ALLOWED: cond<$cond>\n";
  1760. $allowed = 1;
  1761. }
  1762. if ($block =~/\b(?:if|for|while)\b/) {
  1763. #print "APW: ALLOWED: block<$block>\n";
  1764. $allowed = 1;
  1765. }
  1766. if (statement_block_size($block) > 1) {
  1767. #print "APW: ALLOWED: lines block<$block>\n";
  1768. $allowed = 1;
  1769. }
  1770. # Check the post-context.
  1771. if (defined $chunks[1]) {
  1772. my ($cond, $block) = @{$chunks[1]};
  1773. if (defined $cond) {
  1774. substr($block, 0, length($cond), '');
  1775. }
  1776. if ($block =~ /^\s*\{/) {
  1777. #print "APW: ALLOWED: chunk-1 block<$block>\n";
  1778. $allowed = 1;
  1779. }
  1780. }
  1781. if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
  1782. my $herectx = $here . "\n";;
  1783. my $end = $linenr + statement_rawlines($block) - 1;
  1784. for (my $ln = $linenr - 1; $ln < $end; $ln++) {
  1785. $herectx .= $rawlines[$ln] . "\n";;
  1786. }
  1787. WARN("braces {} are not necessary for single statement blocks\n" . $herectx);
  1788. }
  1789. }
  1790. # don't include deprecated include files (uses RAW line)
  1791. for my $inc (@dep_includes) {
  1792. if ($rawline =~ m@^.\s*\#\s*include\s*\<$inc>@) {
  1793. ERROR("Don't use <$inc>: see Documentation/feature-removal-schedule.txt\n" . $herecurr);
  1794. }
  1795. }
  1796. # don't use deprecated functions
  1797. for my $func (@dep_functions) {
  1798. if ($line =~ /\b$func\b/) {
  1799. ERROR("Don't use $func(): see Documentation/feature-removal-schedule.txt\n" . $herecurr);
  1800. }
  1801. }
  1802. # no volatiles please
  1803. my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
  1804. if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
  1805. WARN("Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt\n" . $herecurr);
  1806. }
  1807. # SPIN_LOCK_UNLOCKED & RW_LOCK_UNLOCKED are deprecated
  1808. if ($line =~ /\b(SPIN_LOCK_UNLOCKED|RW_LOCK_UNLOCKED)/) {
  1809. ERROR("Use of $1 is deprecated: see Documentation/spinlocks.txt\n" . $herecurr);
  1810. }
  1811. # warn about #if 0
  1812. if ($line =~ /^.\s*\#\s*if\s+0\b/) {
  1813. CHK("if this code is redundant consider removing it\n" .
  1814. $herecurr);
  1815. }
  1816. # check for needless kfree() checks
  1817. if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
  1818. my $expr = $1;
  1819. if ($line =~ /\bkfree\(\Q$expr\E\);/) {
  1820. WARN("kfree(NULL) is safe this check is probably not required\n" . $hereprev);
  1821. }
  1822. }
  1823. # check for needless usb_free_urb() checks
  1824. if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
  1825. my $expr = $1;
  1826. if ($line =~ /\busb_free_urb\(\Q$expr\E\);/) {
  1827. WARN("usb_free_urb(NULL) is safe this check is probably not required\n" . $hereprev);
  1828. }
  1829. }
  1830. # warn about #ifdefs in C files
  1831. # if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
  1832. # print "#ifdef in C files should be avoided\n";
  1833. # print "$herecurr";
  1834. # $clean = 0;
  1835. # }
  1836. # warn about spacing in #ifdefs
  1837. if ($line =~ /^.\s*\#\s*(ifdef|ifndef|elif)\s\s+/) {
  1838. ERROR("exactly one space required after that #$1\n" . $herecurr);
  1839. }
  1840. # check for spinlock_t definitions without a comment.
  1841. if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/ ||
  1842. $line =~ /^.\s*(DEFINE_MUTEX)\s*\(/) {
  1843. my $which = $1;
  1844. if (!ctx_has_comment($first_line, $linenr)) {
  1845. CHK("$1 definition without comment\n" . $herecurr);
  1846. }
  1847. }
  1848. # check for memory barriers without a comment.
  1849. if ($line =~ /\b(mb|rmb|wmb|read_barrier_depends|smp_mb|smp_rmb|smp_wmb|smp_read_barrier_depends)\(/) {
  1850. if (!ctx_has_comment($first_line, $linenr)) {
  1851. CHK("memory barrier without comment\n" . $herecurr);
  1852. }
  1853. }
  1854. # check of hardware specific defines
  1855. if ($line =~ m@^.\s*\#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
  1856. CHK("architecture specific defines should be avoided\n" . $herecurr);
  1857. }
  1858. # check the location of the inline attribute, that it is between
  1859. # storage class and type.
  1860. if ($line =~ /\b$Type\s+$Inline\b/ ||
  1861. $line =~ /\b$Inline\s+$Storage\b/) {
  1862. ERROR("inline keyword should sit between storage class and type\n" . $herecurr);
  1863. }
  1864. # Check for __inline__ and __inline, prefer inline
  1865. if ($line =~ /\b(__inline__|__inline)\b/) {
  1866. WARN("plain inline is preferred over $1\n" . $herecurr);
  1867. }
  1868. # check for new externs in .c files.
  1869. if ($realfile =~ /\.c$/ && defined $stat &&
  1870. $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s)
  1871. {
  1872. my $function_name = $1;
  1873. my $paren_space = $2;
  1874. my $s = $stat;
  1875. if (defined $cond) {
  1876. substr($s, 0, length($cond), '');
  1877. }
  1878. if ($s =~ /^\s*;/ &&
  1879. $function_name ne 'uninitialized_var')
  1880. {
  1881. WARN("externs should be avoided in .c files\n" . $herecurr);
  1882. }
  1883. if ($paren_space =~ /\n/) {
  1884. WARN("arguments for function declarations should follow identifier\n" . $herecurr);
  1885. }
  1886. } elsif ($realfile =~ /\.c$/ && defined $stat &&
  1887. $stat =~ /^.\s*extern\s+/)
  1888. {
  1889. WARN("externs should be avoided in .c files\n" . $herecurr);
  1890. }
  1891. # checks for new __setup's
  1892. if ($rawline =~ /\b__setup\("([^"]*)"/) {
  1893. my $name = $1;
  1894. if (!grep(/$name/, @setup_docs)) {
  1895. CHK("__setup appears un-documented -- check Documentation/kernel-parameters.txt\n" . $herecurr);
  1896. }
  1897. }
  1898. # check for pointless casting of kmalloc return
  1899. if ($line =~ /\*\s*\)\s*k[czm]alloc\b/) {
  1900. WARN("unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
  1901. }
  1902. # check for gcc specific __FUNCTION__
  1903. if ($line =~ /__FUNCTION__/) {
  1904. WARN("__func__ should be used instead of gcc specific __FUNCTION__\n" . $herecurr);
  1905. }
  1906. # check for semaphores used as mutexes
  1907. if ($line =~ /^.\s*(DECLARE_MUTEX|init_MUTEX)\s*\(/) {
  1908. WARN("mutexes are preferred for single holder semaphores\n" . $herecurr);
  1909. }
  1910. # check for semaphores used as mutexes
  1911. if ($line =~ /^.\s*init_MUTEX_LOCKED\s*\(/) {
  1912. WARN("consider using a completion\n" . $herecurr);
  1913. }
  1914. # recommend strict_strto* over simple_strto*
  1915. if ($line =~ /\bsimple_(strto.*?)\s*\(/) {
  1916. WARN("consider using strict_$1 in preference to simple_$1\n" . $herecurr);
  1917. }
  1918. # check for __initcall(), use device_initcall() explicitly please
  1919. if ($line =~ /^.\s*__initcall\s*\(/) {
  1920. WARN("please use device_initcall() instead of __initcall()\n" . $herecurr);
  1921. }
  1922. # use of NR_CPUS is usually wrong
  1923. # ignore definitions of NR_CPUS and usage to define arrays as likely right
  1924. if ($line =~ /\bNR_CPUS\b/ &&
  1925. $line !~ /^.\s*\s*#\s*if\b.*\bNR_CPUS\b/ &&
  1926. $line !~ /^.\s*\s*#\s*define\b.*\bNR_CPUS\b/ &&
  1927. $line !~ /^.\s*$Declare\s.*\[[^\]]*NR_CPUS[^\]]*\]/ &&
  1928. $line !~ /\[[^\]]*\.\.\.[^\]]*NR_CPUS[^\]]*\]/ &&
  1929. $line !~ /\[[^\]]*NR_CPUS[^\]]*\.\.\.[^\]]*\]/)
  1930. {
  1931. WARN("usage of NR_CPUS is often wrong - consider using cpu_possible(), num_possible_cpus(), for_each_possible_cpu(), etc\n" . $herecurr);
  1932. }
  1933. # check for %L{u,d,i} in strings
  1934. my $string;
  1935. while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) {
  1936. $string = substr($rawline, $-[1], $+[1] - $-[1]);
  1937. if ($string =~ /(?<!%)%L[udi]/) {
  1938. WARN("\%Ld/%Lu are not-standard C, use %lld/%llu\n" . $herecurr);
  1939. last;
  1940. }
  1941. }
  1942. }
  1943. # If we have no input at all, then there is nothing to report on
  1944. # so just keep quiet.
  1945. if ($#rawlines == -1) {
  1946. exit(0);
  1947. }
  1948. # In mailback mode only produce a report in the negative, for
  1949. # things that appear to be patches.
  1950. if ($mailback && ($clean == 1 || !$is_patch)) {
  1951. exit(0);
  1952. }
  1953. # This is not a patch, and we are are in 'no-patch' mode so
  1954. # just keep quiet.
  1955. if (!$chk_patch && !$is_patch) {
  1956. exit(0);
  1957. }
  1958. if (!$is_patch) {
  1959. ERROR("Does not appear to be a unified-diff format patch\n");
  1960. }
  1961. if ($is_patch && $chk_signoff && $signoff == 0) {
  1962. ERROR("Missing Signed-off-by: line(s)\n");
  1963. }
  1964. print report_dump();
  1965. if ($summary && !($clean == 1 && $quiet == 1)) {
  1966. print "$filename " if ($summary_file);
  1967. print "total: $cnt_error errors, $cnt_warn warnings, " .
  1968. (($check)? "$cnt_chk checks, " : "") .
  1969. "$cnt_lines lines checked\n";
  1970. print "\n" if ($quiet == 0);
  1971. }
  1972. if ($clean == 1 && $quiet == 0) {
  1973. print "$vname has no obvious style problems and is ready for submission.\n"
  1974. }
  1975. if ($clean == 0 && $quiet == 0) {
  1976. print "$vname has style problems, please review. If any of these errors\n";
  1977. print "are false positives report them to the maintainer, see\n";
  1978. print "CHECKPATCH in MAINTAINERS.\n";
  1979. }
  1980. return $clean;
  1981. }