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  '-v' => 0,
358  '-fpascal-strings' => 0,
359  '-mmacosx-version-min' => 0, # This is really a 1 argument, but always has '='
360  '-miphoneos-version-min' => 0 # This is really a 1 argument, but always has '='
361);
362
363my %IgnoredOptionMap = (
364  '-MT' => 1,  # Ignore these preprocessor options.
365  '-MF' => 1,
366
367  '-fsyntax-only' => 0,
368  '-save-temps' => 0,
369  '-install_name' => 1,
370  '-exported_symbols_list' => 1,
371  '-current_version' => 1,
372  '-compatibility_version' => 1,
373  '-init' => 1,
374  '-e' => 1,
375  '-seg1addr' => 1,
376  '-bundle_loader' => 1,
377  '-multiply_defined' => 1,
378  '-sectorder' => 3,
379  '--param' => 1,
380  '-u' => 1,
381  '--serialize-diagnostics' => 1
382);
383
384my %LangMap = (
385  'c'   => 'c',
386  'cp'  => 'c++',
387  'cpp' => 'c++',
388  'cxx' => 'c++',
389  'txx' => 'c++',
390  'cc'  => 'c++',
391  'ii'  => 'c++',
392  'i'   => 'c-cpp-output',
393  'm'   => 'objective-c',
394  'mi'  => 'objective-c-cpp-output',
395  'mm'  => 'objective-c++'
396);
397
398my %UniqueOptions = (
399  '-isysroot' => 0  
400);
401
402##----------------------------------------------------------------------------##
403# Languages accepted.
404##----------------------------------------------------------------------------##
405
406my %LangsAccepted = (
407  "objective-c" => 1,
408  "c" => 1,
409  "c++" => 1,
410  "objective-c++" => 1
411);
412
413##----------------------------------------------------------------------------##
414#  Main Logic.
415##----------------------------------------------------------------------------##
416
417my $Action = 'link';
418my @CompileOpts;
419my @LinkOpts;
420my @Files;
421my $Lang;
422my $Output;
423my %Uniqued;
424
425# Forward arguments to gcc.
426my $Status = system($Compiler,@ARGV);
427if  (defined $ENV{'CCC_ANALYZER_LOG'}) {
428  print "$Compiler @ARGV\n";
429}
430if ($Status) { exit($Status >> 8); }
431
432# Get the analysis options.
433my $Analyses = $ENV{'CCC_ANALYZER_ANALYSIS'};
434
435# Get the plugins to load.
436my $Plugins = $ENV{'CCC_ANALYZER_PLUGINS'};
437
438# Get the store model.
439my $StoreModel = $ENV{'CCC_ANALYZER_STORE_MODEL'};
440
441# Get the constraints engine.
442my $ConstraintsModel = $ENV{'CCC_ANALYZER_CONSTRAINTS_MODEL'};
443
444#Get the internal stats setting.
445my $InternalStats = $ENV{'CCC_ANALYZER_INTERNAL_STATS'};
446
447# Get the output format.
448my $OutputFormat = $ENV{'CCC_ANALYZER_OUTPUT_FORMAT'};
449if (!defined $OutputFormat) { $OutputFormat = "html"; }
450
451# Determine the level of verbosity.
452my $Verbose = 0;
453if (defined $ENV{CCC_ANALYZER_VERBOSE}) { $Verbose = 1; }
454if (defined $ENV{CCC_ANALYZER_LOG}) { $Verbose = 2; }
455
456# Get the HTML output directory.
457my $HtmlDir = $ENV{'CCC_ANALYZER_HTML'};
458
459my %DisabledArchs = ('ppc' => 1, 'ppc64' => 1);
460my %ArchsSeen;
461my $HadArch = 0;
462
463# Process the arguments.
464foreach (my $i = 0; $i < scalar(@ARGV); ++$i) {
465  my $Arg = $ARGV[$i];  
466  my ($ArgKey) = split /=/,$Arg,2;
467
468  # Modes ccc-analyzer supports
469  if ($Arg =~ /^-(E|MM?)$/) { $Action = 'preprocess'; }
470  elsif ($Arg eq '-c') { $Action = 'compile'; }
471  elsif ($Arg =~ /^-print-prog-name/) { exit 0; }
472
473  # Specially handle duplicate cases of -arch
474  if ($Arg eq "-arch") {
475    my $arch = $ARGV[$i+1];
476    # We don't want to process 'ppc' because of Clang's lack of support
477    # for Altivec (also some #defines won't likely be defined correctly, etc.)
478    if (!(defined $DisabledArchs{$arch})) { $ArchsSeen{$arch} = 1; }
479    $HadArch = 1;
480    ++$i;
481    next;
482  }
483
484  # Options with possible arguments that should pass through to compiler.
485  if (defined $CompileOptionMap{$ArgKey}) {
486    my $Cnt = $CompileOptionMap{$ArgKey};
487    push @CompileOpts,$Arg;
488    while ($Cnt > 0) { ++$i; --$Cnt; push @CompileOpts, $ARGV[$i]; }
489    next;
490  }
491
492  # Options with possible arguments that should pass through to linker.
493  if (defined $LinkerOptionMap{$ArgKey}) {
494    my $Cnt = $LinkerOptionMap{$ArgKey};
495    push @LinkOpts,$Arg;
496    while ($Cnt > 0) { ++$i; --$Cnt; push @LinkOpts, $ARGV[$i]; }
497    next;
498  }
499
500  # Options with possible arguments that should pass through to both compiler
501  # and the linker.
502  if (defined $CompilerLinkerOptionMap{$ArgKey}) {
503    my $Cnt = $CompilerLinkerOptionMap{$ArgKey};
504    
505    # Check if this is an option that should have a unique value, and if so
506    # determine if the value was checked before.
507    if ($UniqueOptions{$Arg}) {
508      if (defined $Uniqued{$Arg}) {
509        $i += $Cnt;
510        next;
511      }
512      $Uniqued{$Arg} = 1;
513    }
514    
515    push @CompileOpts,$Arg;    
516    push @LinkOpts,$Arg;
517
518    while ($Cnt > 0) {
519      ++$i; --$Cnt;
520      push @CompileOpts, $ARGV[$i];
521      push @LinkOpts, $ARGV[$i];
522    }
523    next;
524  }
525  
526  # Ignored options.
527  if (defined $IgnoredOptionMap{$ArgKey}) {
528    my $Cnt = $IgnoredOptionMap{$ArgKey};
529    while ($Cnt > 0) {
530      ++$i; --$Cnt;
531    }
532    next;
533  }
534  
535  # Compile mode flags.
536  if ($Arg =~ /^-[D,I,U](.*)$/) {
537    my $Tmp = $Arg;    
538    if ($1 eq '') {
539      # FIXME: Check if we are going off the end.
540      ++$i;
541      $Tmp = $Arg . $ARGV[$i];
542    }
543    push @CompileOpts,$Tmp;
544    next;
545  }
546  
547  # Language.
548  if ($Arg eq '-x') {
549    $Lang = $ARGV[$i+1];
550    ++$i; next;
551  }
552
553  # Output file.
554  if ($Arg eq '-o') {
555    ++$i;
556    $Output = $ARGV[$i];
557    next;
558  }
559  
560  # Get the link mode.
561  if ($Arg =~ /^-[l,L,O]/) {
562    if ($Arg eq '-O') { push @LinkOpts,'-O1'; }
563    elsif ($Arg eq '-Os') { push @LinkOpts,'-O2'; }
564    else { push @LinkOpts,$Arg; }
565    next;
566  }
567  
568  if ($Arg =~ /^-std=/) {
569    push @CompileOpts,$Arg;
570    next;
571  }
572  
573#  if ($Arg =~ /^-f/) {
574#    # FIXME: Not sure if the remaining -fxxxx options have no arguments.
575#    push @CompileOpts,$Arg;
576#    push @LinkOpts,$Arg;  # FIXME: Not sure if these are link opts.
577#  }
578  
579  # Get the compiler/link mode.
580  if ($Arg =~ /^-F(.+)$/) {
581    my $Tmp = $Arg;
582    if ($1 eq '') {
583      # FIXME: Check if we are going off the end.
584      ++$i;
585      $Tmp = $Arg . $ARGV[$i];
586    }
587    push @CompileOpts,$Tmp;
588    push @LinkOpts,$Tmp;
589    next;
590  }
591
592  # Input files.
593  if ($Arg eq '-filelist') {
594    # FIXME: Make sure we aren't walking off the end.
595    open(IN, $ARGV[$i+1]);
596    while (<IN>) { s/\015?\012//; push @Files,$_; }
597    close(IN);
598    ++$i;
599    next;
600  }
601  
602  # Handle -Wno-.  We don't care about extra warnings, but
603  # we should suppress ones that we don't want to see.
604  if ($Arg =~ /^-Wno-/) {
605    push @CompileOpts, $Arg;
606    next;
607  }
608
609  if (!($Arg =~ /^-/)) {
610    push @Files, $Arg;
611    next;
612  }
613}
614
615if ($Action eq 'compile' or $Action eq 'link') {
616  my @Archs = keys %ArchsSeen;
617  # Skip the file if we don't support the architectures specified.
618  exit 0 if ($HadArch && scalar(@Archs) == 0);
619  
620  foreach my $file (@Files) {
621    # Determine the language for the file.
622    my $FileLang = $Lang;
623
624    if (!defined($FileLang)) {
625      # Infer the language from the extension.
626      if ($file =~ /[.]([^.]+)$/) {
627        $FileLang = $LangMap{$1};
628      }
629    }
630    
631    # FileLang still not defined?  Skip the file.
632    next if (!defined $FileLang);
633
634    # Language not accepted?
635    next if (!defined $LangsAccepted{$FileLang});
636
637    my @CmdArgs;
638    my @AnalyzeArgs;    
639    
640    if ($FileLang ne 'unknown') {
641      push @CmdArgs, '-x', $FileLang;
642    }
643
644    if (defined $StoreModel) {
645      push @AnalyzeArgs, "-analyzer-store=$StoreModel";
646    }
647
648    if (defined $ConstraintsModel) {
649      push @AnalyzeArgs, "-analyzer-constraints=$ConstraintsModel";
650    }
651
652    if (defined $InternalStats) {
653      push @AnalyzeArgs, "-analyzer-stats";
654    }
655    
656    if (defined $Analyses) {
657      push @AnalyzeArgs, split '\s+', $Analyses;
658    }
659
660    if (defined $Plugins) {
661      push @AnalyzeArgs, split '\s+', $Plugins;
662    }
663
664    if (defined $OutputFormat) {
665      push @AnalyzeArgs, "-analyzer-output=" . $OutputFormat;
666      if ($OutputFormat =~ /plist/) {
667        # Change "Output" to be a file.
668        my ($h, $f) = tempfile("report-XXXXXX", SUFFIX => ".plist",
669                               DIR => $HtmlDir);
670        $ResultFile = $f;
671        # If the HtmlDir is not set, we sould clean up the plist files.
672        if (!defined $HtmlDir || -z $HtmlDir) {
673        	$CleanupFile = $f; 
674        }
675      }
676    }
677
678    push @CmdArgs, @CompileOpts;
679    push @CmdArgs, $file;
680
681    if (scalar @Archs) {
682      foreach my $arch (@Archs) {
683        my @NewArgs;
684        push @NewArgs, '-arch', $arch;
685        push @NewArgs, @CmdArgs;
686        Analyze($Clang, \@NewArgs, \@AnalyzeArgs, $FileLang, $Output,
687                $Verbose, $HtmlDir, $file);
688      }
689    }
690    else {
691      Analyze($Clang, \@CmdArgs, \@AnalyzeArgs, $FileLang, $Output,
692              $Verbose, $HtmlDir, $file);
693    }
694  }
695}
696
697exit($Status >> 8);
698
699