ccc-analyzer revision 90b0bc6f41bc68ec7fb59b60a0fd8a61530e1d9d
1#!/usr/bin/env perl
2#
3#                     The LLVM Compiler Infrastructure
4#
5# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
7#
8##===----------------------------------------------------------------------===##
9#
10#  A script designed to interpose between the build system and gcc.  It invokes
11#  both gcc and the static analyzer.
12#
13##===----------------------------------------------------------------------===##
14
15use strict;
16use warnings;
17use FindBin;
18use Cwd qw/ getcwd abs_path /;
19use File::Temp qw/ tempfile /;
20use File::Path qw / mkpath /;
21use File::Basename;
22use Text::ParseWords;
23
24##===----------------------------------------------------------------------===##
25# Compiler command setup.
26##===----------------------------------------------------------------------===##
27
28my $Compiler;
29my $Clang;
30my $DefaultCCompiler;
31my $DefaultCXXCompiler;
32
33if (`uname -a` =~ m/Darwin/) { 
34	$DefaultCCompiler = 'clang';
35	$DefaultCXXCompiler = 'clang++'; 
36} else {
37    $DefaultCCompiler = 'gcc';
38    $DefaultCXXCompiler = 'g++'; 	
39}
40
41if ($FindBin::Script =~ /c\+\+-analyzer/) {
42  $Compiler = $ENV{'CCC_CXX'};
43  if (!defined $Compiler) { $Compiler = $DefaultCXXCompiler; }
44  
45  $Clang = $ENV{'CLANG_CXX'};
46  if (!defined $Clang) { $Clang = 'clang++'; }
47}
48else {
49  $Compiler = $ENV{'CCC_CC'};
50  if (!defined $Compiler) { $Compiler = $DefaultCCompiler; }
51
52  $Clang = $ENV{'CLANG'};
53  if (!defined $Clang) { $Clang = 'clang'; }
54}
55
56##===----------------------------------------------------------------------===##
57# Cleanup.
58##===----------------------------------------------------------------------===##
59
60my $ReportFailures = $ENV{'CCC_REPORT_FAILURES'};
61if (!defined $ReportFailures) { $ReportFailures = 1; }
62
63my $CleanupFile;
64my $ResultFile;
65
66# Remove any stale files at exit.
67END { 
68  if (defined $ResultFile && -z $ResultFile) {
69    `rm -f $ResultFile`;
70  }
71  if (defined $CleanupFile) {
72    `rm -f $CleanupFile`;
73  }
74}
75
76##----------------------------------------------------------------------------##
77#  Process Clang Crashes.
78##----------------------------------------------------------------------------##
79
80sub GetPPExt {
81  my $Lang = shift;
82  if ($Lang =~ /objective-c\+\+/) { return ".mii" };
83  if ($Lang =~ /objective-c/) { return ".mi"; }
84  if ($Lang =~ /c\+\+/) { return ".ii"; }
85  return ".i";
86}
87
88# Set this to 1 if we want to include 'parser rejects' files.
89my $IncludeParserRejects = 0;
90my $ParserRejects = "Parser Rejects";
91my $AttributeIgnored = "Attribute Ignored";
92my $OtherError = "Other Error";
93
94sub ProcessClangFailure {
95  my ($Clang, $Lang, $file, $Args, $HtmlDir, $ErrorType, $ofile) = @_;
96  my $Dir = "$HtmlDir/failures";
97  mkpath $Dir;
98  
99  my $prefix = "clang_crash";
100  if ($ErrorType eq $ParserRejects) {
101    $prefix = "clang_parser_rejects";
102  }
103  elsif ($ErrorType eq $AttributeIgnored) {
104    $prefix = "clang_attribute_ignored";
105  }
106  elsif ($ErrorType eq $OtherError) {
107    $prefix = "clang_other_error";
108  }
109
110  # Generate the preprocessed file with Clang.
111  my ($PPH, $PPFile) = tempfile( $prefix . "_XXXXXX",
112                                 SUFFIX => GetPPExt($Lang),
113                                 DIR => $Dir);
114  system $Clang, @$Args, "-E", "-o", $PPFile;
115  close ($PPH);
116  
117  # Create the info file.
118  open (OUT, ">", "$PPFile.info.txt") or die "Cannot open $PPFile.info.txt\n";
119  print OUT abs_path($file), "\n";
120  print OUT "$ErrorType\n";
121  print OUT "@$Args\n";
122  close OUT;
123  `uname -a >> $PPFile.info.txt 2>&1`;
124  `$Compiler -v >> $PPFile.info.txt 2>&1`;
125  system 'mv',$ofile,"$PPFile.stderr.txt";
126  return (basename $PPFile);
127}
128
129##----------------------------------------------------------------------------##
130#  Running the analyzer.
131##----------------------------------------------------------------------------##
132
133sub GetCCArgs {
134  my $mode = shift;
135  my $Args = shift;
136  
137  pipe (FROM_CHILD, TO_PARENT);
138  my $pid = fork();
139  if ($pid == 0) {
140    close FROM_CHILD;
141    open(STDOUT,">&", \*TO_PARENT);
142    open(STDERR,">&", \*TO_PARENT);
143    exec $Clang, "-###", $mode, @$Args;
144  }  
145  close(TO_PARENT);
146  my $line;
147  while (<FROM_CHILD>) {
148    next if (!/-cc1/);
149    $line = $_;
150  }
151
152  waitpid($pid,0);
153  close(FROM_CHILD);
154  
155  die "could not find clang line\n" if (!defined $line);
156  # Strip the newline and initial whitspace
157  chomp $line;
158  $line =~ s/^\s+//;
159  my @items = quotewords('\s+', 0, $line);
160  my $cmd = shift @items;
161  die "cannot find 'clang' in 'clang' command\n" if (!($cmd =~ /clang/));
162  return \@items;
163}
164
165sub Analyze {
166  my ($Clang, $OriginalArgs, $AnalyzeArgs, $Lang, $Output, $Verbose, $HtmlDir,
167      $file) = @_;
168
169  my @Args = @$OriginalArgs;
170  my $Cmd;
171  my @CmdArgs;
172  my @CmdArgsSansAnalyses;
173
174  if ($Lang =~ /header/) {
175    exit 0 if (!defined ($Output));
176    $Cmd = 'cp';
177    push @CmdArgs, $file;
178    # Remove the PCH extension.
179    $Output =~ s/[.]gch$//;
180    push @CmdArgs, $Output;
181    @CmdArgsSansAnalyses = @CmdArgs;
182  }
183  else {
184    $Cmd = $Clang;
185
186    # Create arguments for doing regular parsing.
187    my $SyntaxArgs = GetCCArgs("-fsyntax-only", \@Args);
188    @CmdArgsSansAnalyses = @$SyntaxArgs;
189
190    # Create arguments for doing static analysis.
191    if (defined $ResultFile) {
192      push @Args, '-o', $ResultFile;
193    }
194    elsif (defined $HtmlDir) {
195      push @Args, '-o', $HtmlDir;
196    }
197    if ($Verbose) {
198      push @Args, "-Xclang", "-analyzer-display-progress";
199    }
200
201    foreach my $arg (@$AnalyzeArgs) {
202      push @Args, "-Xclang", $arg;
203    }
204
205    # Display Ubiviz graph?
206    if (defined $ENV{'CCC_UBI'}) {   
207      push @Args, "-Xclang", "-analyzer-viz-egraph-ubigraph";
208    }
209
210    my $AnalysisArgs = GetCCArgs("--analyze", \@Args);
211    @CmdArgs = @$AnalysisArgs;
212  }
213
214  my @PrintArgs;
215  my $dir;
216
217  if ($Verbose) {
218    $dir = getcwd();
219    print STDERR "\n[LOCATION]: $dir\n";
220    push @PrintArgs,"'$Cmd'";
221    foreach my $arg (@CmdArgs) {
222        push @PrintArgs,"\'$arg\'";
223    }
224  }
225  if ($Verbose == 1) {
226    # We MUST print to stderr.  Some clients use the stdout output of
227    # gcc for various purposes. 
228    print STDERR join(' ', @PrintArgs);
229    print STDERR "\n";
230  }
231  elsif ($Verbose == 2) {
232    print STDERR "#SHELL (cd '$dir' && @PrintArgs)\n";
233  }
234
235  # Capture the STDERR of clang and send it to a temporary file.
236  # Capture the STDOUT of clang and reroute it to ccc-analyzer's STDERR.
237  # We save the output file in the 'crashes' directory if clang encounters
238  # any problems with the file.  
239  pipe (FROM_CHILD, TO_PARENT);
240  my $pid = fork();
241  if ($pid == 0) {
242    close FROM_CHILD;
243    open(STDOUT,">&", \*TO_PARENT);
244    open(STDERR,">&", \*TO_PARENT);
245    exec $Cmd, @CmdArgs;
246  }
247
248  close TO_PARENT;
249  my ($ofh, $ofile) = tempfile("clang_output_XXXXXX", DIR => $HtmlDir);
250  
251  while (<FROM_CHILD>) {
252    print $ofh $_;
253    print STDERR $_;
254  }
255
256  waitpid($pid,0);
257  close(FROM_CHILD);
258  my $Result = $?;
259
260  # Did the command die because of a signal?
261  if ($ReportFailures) {
262    if ($Result & 127 and $Cmd eq $Clang and defined $HtmlDir) {
263      ProcessClangFailure($Clang, $Lang, $file, \@CmdArgsSansAnalyses,
264                          $HtmlDir, "Crash", $ofile);
265    }
266    elsif ($Result) {
267      if ($IncludeParserRejects && !($file =~/conftest/)) {
268        ProcessClangFailure($Clang, $Lang, $file, \@CmdArgsSansAnalyses,
269                            $HtmlDir, $ParserRejects, $ofile);
270      } else {
271        ProcessClangFailure($Clang, $Lang, $file, \@CmdArgsSansAnalyses,
272                            $HtmlDir, $OtherError, $ofile);      	
273      }
274    }
275    else {
276      # Check if there were any unhandled attributes.
277      if (open(CHILD, $ofile)) {
278        my %attributes_not_handled;
279
280        # Don't flag warnings about the following attributes that we
281        # know are currently not supported by Clang.
282        $attributes_not_handled{"cdecl"} = 1;
283
284        my $ppfile;
285        while (<CHILD>) {
286          next if (! /warning: '([^\']+)' attribute ignored/);
287
288          # Have we already spotted this unhandled attribute?
289          next if (defined $attributes_not_handled{$1});
290          $attributes_not_handled{$1} = 1;
291        
292          # Get the name of the attribute file.
293          my $dir = "$HtmlDir/failures";
294          my $afile = "$dir/attribute_ignored_$1.txt";
295        
296          # Only create another preprocessed file if the attribute file
297          # doesn't exist yet.
298          next if (-e $afile);
299        
300          # Add this file to the list of files that contained this attribute.
301          # Generate a preprocessed file if we haven't already.
302          if (!(defined $ppfile)) {
303            $ppfile = ProcessClangFailure($Clang, $Lang, $file,
304                                          \@CmdArgsSansAnalyses,
305                                          $HtmlDir, $AttributeIgnored, $ofile);
306          }
307
308          mkpath $dir;
309          open(AFILE, ">$afile");
310          print AFILE "$ppfile\n";
311          close(AFILE);
312        }
313        close CHILD;
314      }
315    }
316  }
317  
318  unlink($ofile);
319}
320
321##----------------------------------------------------------------------------##
322#  Lookup tables.
323##----------------------------------------------------------------------------##
324
325my %CompileOptionMap = (
326  '-nostdinc' => 0,
327  '-fblocks' => 0,
328  '-fno-builtin' => 0,
329  '-fobjc-gc-only' => 0,
330  '-fobjc-gc' => 0,
331  '-ffreestanding' => 0,
332  '-include' => 1,
333  '-idirafter' => 1,
334  '-imacros' => 1,
335  '-iprefix' => 1,
336  '-iquote' => 1,
337  '-isystem' => 1,
338  '-iwithprefix' => 1,
339  '-iwithprefixbefore' => 1
340);
341
342my %LinkerOptionMap = (
343  '-framework' => 1,
344  '-fobjc-link-runtime' => 0
345);
346
347my %CompilerLinkerOptionMap = (
348  '-fobjc-arc' => 0,
349  '-fno-objc-arc' => 0,
350  '-fobjc-abi-version' => 0, # This is really a 1 argument, but always has '='
351  '-fobjc-legacy-dispatch' => 0,
352  '-mios-simulator-version-min' => 0, # This really has 1 argument, but always has '='
353  '-isysroot' => 1,
354  '-arch' => 1,
355  '-m32' => 0,
356  '-m64' => 0,
357  '-stdlib' => 0, # This is really a 1 argument, but always has '='
358  '-v' => 0,
359  '-fpascal-strings' => 0,
360  '-mmacosx-version-min' => 0, # This is really a 1 argument, but always has '='
361  '-miphoneos-version-min' => 0 # This is really a 1 argument, but always has '='
362);
363
364my %IgnoredOptionMap = (
365  '-MT' => 1,  # Ignore these preprocessor options.
366  '-MF' => 1,
367
368  '-fsyntax-only' => 0,
369  '-save-temps' => 0,
370  '-install_name' => 1,
371  '-exported_symbols_list' => 1,
372  '-current_version' => 1,
373  '-compatibility_version' => 1,
374  '-init' => 1,
375  '-e' => 1,
376  '-seg1addr' => 1,
377  '-bundle_loader' => 1,
378  '-multiply_defined' => 1,
379  '-sectorder' => 3,
380  '--param' => 1,
381  '-u' => 1,
382  '--serialize-diagnostics' => 1
383);
384
385my %LangMap = (
386  'c'   => 'c',
387  'cp'  => 'c++',
388  'cpp' => 'c++',
389  'cxx' => 'c++',
390  'txx' => 'c++',
391  'cc'  => 'c++',
392  'ii'  => 'c++',
393  'i'   => 'c-cpp-output',
394  'm'   => 'objective-c',
395  'mi'  => 'objective-c-cpp-output',
396  'mm'  => 'objective-c++'
397);
398
399my %UniqueOptions = (
400  '-isysroot' => 0  
401);
402
403##----------------------------------------------------------------------------##
404# Languages accepted.
405##----------------------------------------------------------------------------##
406
407my %LangsAccepted = (
408  "objective-c" => 1,
409  "c" => 1,
410  "c++" => 1,
411  "objective-c++" => 1
412);
413
414##----------------------------------------------------------------------------##
415#  Main Logic.
416##----------------------------------------------------------------------------##
417
418my $Action = 'link';
419my @CompileOpts;
420my @LinkOpts;
421my @Files;
422my $Lang;
423my $Output;
424my %Uniqued;
425
426# Forward arguments to gcc.
427my $Status = system($Compiler,@ARGV);
428if  (defined $ENV{'CCC_ANALYZER_LOG'}) {
429  print "$Compiler @ARGV\n";
430}
431if ($Status) { exit($Status >> 8); }
432
433# Get the analysis options.
434my $Analyses = $ENV{'CCC_ANALYZER_ANALYSIS'};
435
436# Get the plugins to load.
437my $Plugins = $ENV{'CCC_ANALYZER_PLUGINS'};
438
439# Get the store model.
440my $StoreModel = $ENV{'CCC_ANALYZER_STORE_MODEL'};
441
442# Get the constraints engine.
443my $ConstraintsModel = $ENV{'CCC_ANALYZER_CONSTRAINTS_MODEL'};
444
445#Get the internal stats setting.
446my $InternalStats = $ENV{'CCC_ANALYZER_INTERNAL_STATS'};
447
448# Get the output format.
449my $OutputFormat = $ENV{'CCC_ANALYZER_OUTPUT_FORMAT'};
450if (!defined $OutputFormat) { $OutputFormat = "html"; }
451
452# Determine the level of verbosity.
453my $Verbose = 0;
454if (defined $ENV{CCC_ANALYZER_VERBOSE}) { $Verbose = 1; }
455if (defined $ENV{CCC_ANALYZER_LOG}) { $Verbose = 2; }
456
457# Get the HTML output directory.
458my $HtmlDir = $ENV{'CCC_ANALYZER_HTML'};
459
460my %DisabledArchs = ('ppc' => 1, 'ppc64' => 1);
461my %ArchsSeen;
462my $HadArch = 0;
463
464# Process the arguments.
465foreach (my $i = 0; $i < scalar(@ARGV); ++$i) {
466  my $Arg = $ARGV[$i];  
467  my ($ArgKey) = split /=/,$Arg,2;
468
469  # Modes ccc-analyzer supports
470  if ($Arg =~ /^-(E|MM?)$/) { $Action = 'preprocess'; }
471  elsif ($Arg eq '-c') { $Action = 'compile'; }
472  elsif ($Arg =~ /^-print-prog-name/) { exit 0; }
473
474  # Specially handle duplicate cases of -arch
475  if ($Arg eq "-arch") {
476    my $arch = $ARGV[$i+1];
477    # We don't want to process 'ppc' because of Clang's lack of support
478    # for Altivec (also some #defines won't likely be defined correctly, etc.)
479    if (!(defined $DisabledArchs{$arch})) { $ArchsSeen{$arch} = 1; }
480    $HadArch = 1;
481    ++$i;
482    next;
483  }
484
485  # Options with possible arguments that should pass through to compiler.
486  if (defined $CompileOptionMap{$ArgKey}) {
487    my $Cnt = $CompileOptionMap{$ArgKey};
488    push @CompileOpts,$Arg;
489    while ($Cnt > 0) { ++$i; --$Cnt; push @CompileOpts, $ARGV[$i]; }
490    next;
491  }
492
493  # Options with possible arguments that should pass through to linker.
494  if (defined $LinkerOptionMap{$ArgKey}) {
495    my $Cnt = $LinkerOptionMap{$ArgKey};
496    push @LinkOpts,$Arg;
497    while ($Cnt > 0) { ++$i; --$Cnt; push @LinkOpts, $ARGV[$i]; }
498    next;
499  }
500
501  # Options with possible arguments that should pass through to both compiler
502  # and the linker.
503  if (defined $CompilerLinkerOptionMap{$ArgKey}) {
504    my $Cnt = $CompilerLinkerOptionMap{$ArgKey};
505    
506    # Check if this is an option that should have a unique value, and if so
507    # determine if the value was checked before.
508    if ($UniqueOptions{$Arg}) {
509      if (defined $Uniqued{$Arg}) {
510        $i += $Cnt;
511        next;
512      }
513      $Uniqued{$Arg} = 1;
514    }
515    
516    push @CompileOpts,$Arg;    
517    push @LinkOpts,$Arg;
518
519    while ($Cnt > 0) {
520      ++$i; --$Cnt;
521      push @CompileOpts, $ARGV[$i];
522      push @LinkOpts, $ARGV[$i];
523    }
524    next;
525  }
526  
527  # Ignored options.
528  if (defined $IgnoredOptionMap{$ArgKey}) {
529    my $Cnt = $IgnoredOptionMap{$ArgKey};
530    while ($Cnt > 0) {
531      ++$i; --$Cnt;
532    }
533    next;
534  }
535  
536  # Compile mode flags.
537  if ($Arg =~ /^-[D,I,U](.*)$/) {
538    my $Tmp = $Arg;    
539    if ($1 eq '') {
540      # FIXME: Check if we are going off the end.
541      ++$i;
542      $Tmp = $Arg . $ARGV[$i];
543    }
544    push @CompileOpts,$Tmp;
545    next;
546  }
547  
548  # Language.
549  if ($Arg eq '-x') {
550    $Lang = $ARGV[$i+1];
551    ++$i; next;
552  }
553
554  # Output file.
555  if ($Arg eq '-o') {
556    ++$i;
557    $Output = $ARGV[$i];
558    next;
559  }
560  
561  # Get the link mode.
562  if ($Arg =~ /^-[l,L,O]/) {
563    if ($Arg eq '-O') { push @LinkOpts,'-O1'; }
564    elsif ($Arg eq '-Os') { push @LinkOpts,'-O2'; }
565    else { push @LinkOpts,$Arg; }
566    next;
567  }
568  
569  if ($Arg =~ /^-std=/) {
570    push @CompileOpts,$Arg;
571    next;
572  }
573  
574#  if ($Arg =~ /^-f/) {
575#    # FIXME: Not sure if the remaining -fxxxx options have no arguments.
576#    push @CompileOpts,$Arg;
577#    push @LinkOpts,$Arg;  # FIXME: Not sure if these are link opts.
578#  }
579  
580  # Get the compiler/link mode.
581  if ($Arg =~ /^-F(.+)$/) {
582    my $Tmp = $Arg;
583    if ($1 eq '') {
584      # FIXME: Check if we are going off the end.
585      ++$i;
586      $Tmp = $Arg . $ARGV[$i];
587    }
588    push @CompileOpts,$Tmp;
589    push @LinkOpts,$Tmp;
590    next;
591  }
592
593  # Input files.
594  if ($Arg eq '-filelist') {
595    # FIXME: Make sure we aren't walking off the end.
596    open(IN, $ARGV[$i+1]);
597    while (<IN>) { s/\015?\012//; push @Files,$_; }
598    close(IN);
599    ++$i;
600    next;
601  }
602  
603  # Handle -Wno-.  We don't care about extra warnings, but
604  # we should suppress ones that we don't want to see.
605  if ($Arg =~ /^-Wno-/) {
606    push @CompileOpts, $Arg;
607    next;
608  }
609
610  if (!($Arg =~ /^-/)) {
611    push @Files, $Arg;
612    next;
613  }
614}
615
616if ($Action eq 'compile' or $Action eq 'link') {
617  my @Archs = keys %ArchsSeen;
618  # Skip the file if we don't support the architectures specified.
619  exit 0 if ($HadArch && scalar(@Archs) == 0);
620  
621  foreach my $file (@Files) {
622    # Determine the language for the file.
623    my $FileLang = $Lang;
624
625    if (!defined($FileLang)) {
626      # Infer the language from the extension.
627      if ($file =~ /[.]([^.]+)$/) {
628        $FileLang = $LangMap{$1};
629      }
630    }
631    
632    # FileLang still not defined?  Skip the file.
633    next if (!defined $FileLang);
634
635    # Language not accepted?
636    next if (!defined $LangsAccepted{$FileLang});
637
638    my @CmdArgs;
639    my @AnalyzeArgs;    
640    
641    if ($FileLang ne 'unknown') {
642      push @CmdArgs, '-x', $FileLang;
643    }
644
645    if (defined $StoreModel) {
646      push @AnalyzeArgs, "-analyzer-store=$StoreModel";
647    }
648
649    if (defined $ConstraintsModel) {
650      push @AnalyzeArgs, "-analyzer-constraints=$ConstraintsModel";
651    }
652
653    if (defined $InternalStats) {
654      push @AnalyzeArgs, "-analyzer-stats";
655    }
656    
657    if (defined $Analyses) {
658      push @AnalyzeArgs, split '\s+', $Analyses;
659    }
660
661    if (defined $Plugins) {
662      push @AnalyzeArgs, split '\s+', $Plugins;
663    }
664
665    if (defined $OutputFormat) {
666      push @AnalyzeArgs, "-analyzer-output=" . $OutputFormat;
667      if ($OutputFormat =~ /plist/) {
668        # Change "Output" to be a file.
669        my ($h, $f) = tempfile("report-XXXXXX", SUFFIX => ".plist",
670                               DIR => $HtmlDir);
671        $ResultFile = $f;
672        # If the HtmlDir is not set, we sould clean up the plist files.
673        if (!defined $HtmlDir || -z $HtmlDir) {
674        	$CleanupFile = $f; 
675        }
676      }
677    }
678
679    push @CmdArgs, @CompileOpts;
680    push @CmdArgs, $file;
681
682    if (scalar @Archs) {
683      foreach my $arch (@Archs) {
684        my @NewArgs;
685        push @NewArgs, '-arch', $arch;
686        push @NewArgs, @CmdArgs;
687        Analyze($Clang, \@NewArgs, \@AnalyzeArgs, $FileLang, $Output,
688                $Verbose, $HtmlDir, $file);
689      }
690    }
691    else {
692      Analyze($Clang, \@CmdArgs, \@AnalyzeArgs, $FileLang, $Output,
693              $Verbose, $HtmlDir, $file);
694    }
695  }
696}
697
698exit($Status >> 8);
699
700