blob: 79421caba91fc4dcc684236ec882ef9c2631c67b [file] [log] [blame]
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001#!/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 wrap a build so that all calls to gcc are intercepted
11# and piped to the static analyzer.
12#
13##===----------------------------------------------------------------------===##
14
15use strict;
16use warnings;
Ted Kremenek22d6a632008-04-02 20:43:36 +000017use FindBin qw($RealBin);
Ted Kremeneka6e24812008-04-19 18:05:48 +000018use Digest::MD5;
Ted Kremenek7a4648d2008-05-02 22:04:53 +000019use File::Basename;
Ted Kremenek23cfca32008-06-16 22:40:14 +000020use Term::ANSIColor;
21use Term::ANSIColor qw(:constants);
Ted Kremenekcd25c132008-12-03 19:50:37 +000022use Cwd qw/ getcwd abs_path /;
Ted Kremenek7cba1122008-09-22 01:35:58 +000023use Sys::Hostname;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +000024
25my $Verbose = 0; # Verbose output from this script.
26my $Prog = "scan-build";
Ted Kremenekf4cdf412008-05-23 18:17:05 +000027my $BuildName;
28my $BuildDate;
Ted Kremenek95aa1052008-09-04 17:52:41 +000029my $CXX; # Leave undefined initially.
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +000030
Ted Kremenek0e689382008-09-11 18:17:51 +000031my $TERM = $ENV{'TERM'};
32my $UseColor = (defined $TERM and $TERM eq 'xterm-color' and -t STDOUT
33 and defined $ENV{'SCAN_BUILD_COLOR'});
Ted Kremenek23cfca32008-06-16 22:40:14 +000034
Ted Kremenek7cba1122008-09-22 01:35:58 +000035my $UserName = HtmlEscape(getpwuid($<) || 'unknown');
36my $HostName = HtmlEscape(hostname() || 'unknown');
37my $CurrentDir = HtmlEscape(getcwd());
38my $CurrentDirSuffix = basename($CurrentDir);
39
40my $CmdArgs;
41
42my $HtmlTitle;
43
44my $Date = localtime();
45
Ted Kremenekb7770c02008-07-15 17:06:13 +000046##----------------------------------------------------------------------------##
47# Diagnostics
48##----------------------------------------------------------------------------##
49
Ted Kremenek23cfca32008-06-16 22:40:14 +000050sub Diag {
51 if ($UseColor) {
52 print BOLD, MAGENTA "$Prog: @_";
53 print RESET;
54 }
55 else {
56 print "$Prog: @_";
57 }
58}
59
Ted Kremenek991c54b2008-08-08 20:46:42 +000060sub DiagCrashes {
61 my $Dir = shift;
Ted Kremenek938eef12009-02-17 23:31:05 +000062 Diag ("The analyzer encountered problems on some source files.\n");
63 Diag ("Preprocessed versions of these sources were deposited in '$Dir/failures'.\n");
Ted Kremenek991c54b2008-08-08 20:46:42 +000064 Diag ("Please consider submitting a bug report using these files:\n");
65 Diag (" http://clang.llvm.org/StaticAnalysisUsage.html#filingbugs\n")
66}
67
Ted Kremenek23cfca32008-06-16 22:40:14 +000068sub DieDiag {
69 if ($UseColor) {
70 print BOLD, RED "$Prog: ";
71 print RESET, RED @_;
72 print RESET;
73 }
74 else {
75 print "$Prog: ", @_;
76 }
77 exit(0);
78}
79
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +000080##----------------------------------------------------------------------------##
Ted Kremenekb7770c02008-07-15 17:06:13 +000081# Some initial preprocessing of Clang options.
82##----------------------------------------------------------------------------##
83
Ted Kremenek833da022009-03-29 00:31:32 +000084# First, look for 'clang-cc' in libexec.
Ted Kremenekfd9df0e2009-05-09 19:19:28 +000085my $ClangCCSB = Cwd::realpath("$RealBin/libexec/clang-cc");
Ted Kremenek833da022009-03-29 00:31:32 +000086# Second, look for 'clang-cc' in the same directory as scan-build.
Ted Kremenekfd9df0e2009-05-09 19:19:28 +000087if (!defined $ClangCCSB || ! -x $ClangCCSB) {
88 $ClangCCSB = Cwd::realpath("$RealBin/clang-cc");
Ted Kremenek43b7bd32009-03-09 23:14:38 +000089}
Ted Kremenek833da022009-03-29 00:31:32 +000090# Third, look for 'clang-cc' in ../libexec
Ted Kremenekfd9df0e2009-05-09 19:19:28 +000091if (!defined $ClangCCSB || ! -x $ClangCCSB) {
92 $ClangCCSB = Cwd::realpath("$RealBin/../libexec/clang-cc");
93}
94# Finally, default to looking for 'clang-cc' in the path.
95if (!defined $ClangCCSB || ! -x $ClangCCSB) {
96 $ClangCCSB = "clang-cc";
97}
98my $ClangCC = $ClangCCSB;
99
100# Now find 'clang'
101my $ClangSB = Cwd::realpath("$RealBin/bin/clang");
Ted Kremenek8d10cdd2009-02-20 04:34:29 +0000102if (!defined $ClangSB || ! -x $ClangSB) {
Ted Kremenekfd9df0e2009-05-09 19:19:28 +0000103 $ClangSB = Cwd::realpath("$RealBin/clang");
104}
105# Third, look for 'clang' in ../bin
106if (!defined $ClangSB || ! -x $ClangSB) {
107 $ClangSB = Cwd::realpath("$RealBin/../bin/clang");
Ted Kremenekb7770c02008-07-15 17:06:13 +0000108}
Ted Kremenek833da022009-03-29 00:31:32 +0000109# Finally, default to looking for 'clang-cc' in the path.
110if (!defined $ClangSB || ! -x $ClangSB) {
Ted Kremenekfd9df0e2009-05-09 19:19:28 +0000111 $ClangSB = "clang";
Ted Kremenek833da022009-03-29 00:31:32 +0000112}
113my $Clang = $ClangSB;
Ted Kremenekb7770c02008-07-15 17:06:13 +0000114
Ted Kremenekfd9df0e2009-05-09 19:19:28 +0000115
Ted Kremenekb7770c02008-07-15 17:06:13 +0000116my %AvailableAnalyses;
117
118# Query clang for analysis options.
Ted Kremenekfd9df0e2009-05-09 19:19:28 +0000119open(PIPE, "-|", $ClangCC, "--help") or
120 DieDiag("Cannot execute '$ClangCC'\n");
Ted Kremenek63c20172008-08-04 17:34:06 +0000121
Ted Kremenekb7770c02008-07-15 17:06:13 +0000122my $FoundAnalysis = 0;
123
124while(<PIPE>) {
125 if ($FoundAnalysis == 0) {
Ted Kremenek938eef12009-02-17 23:31:05 +0000126 if (/Checks and Analyses/) {
Ted Kremenekb7770c02008-07-15 17:06:13 +0000127 $FoundAnalysis = 1;
128 }
Ted Kremenekb7770c02008-07-15 17:06:13 +0000129 next;
130 }
131
132 if (/^\s\s\s\s([^\s]+)\s(.+)$/) {
133 next if ($1 =~ /-dump/ or $1 =~ /-view/
134 or $1 =~ /-checker-simple/ or $1 =~ /-warn-uninit/);
135
136 $AvailableAnalyses{$1} = $2;
137 next;
Ted Kremenek938eef12009-02-17 23:31:05 +0000138 }
Ted Kremenekb7770c02008-07-15 17:06:13 +0000139 last;
140}
141
142close (PIPE);
143
144my %AnalysesDefaultEnabled = (
145 '-warn-dead-stores' => 1,
146 '-checker-cfref' => 1,
Ted Kremenek90125992008-07-15 23:41:32 +0000147 '-warn-objc-methodsigs' => 1,
Ted Kremenekd76c6a32009-02-25 21:08:30 +0000148 # Do not enable the missing -dealloc check by default.
149 # '-warn-objc-missing-dealloc' => 1,
Ted Kremenek5d443492008-09-18 06:34:16 +0000150 '-warn-objc-unused-ivars' => 1,
Ted Kremenek3a92d6d2009-07-24 02:52:07 +0000151 '-warn-security-syntactic' => 1
Ted Kremenekb7770c02008-07-15 17:06:13 +0000152);
153
154##----------------------------------------------------------------------------##
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000155# GetHTMLRunDir - Construct an HTML directory name for the current sub-run.
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000156##----------------------------------------------------------------------------##
157
Sam Bishopa0e22662008-04-02 03:35:43 +0000158sub GetHTMLRunDir {
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000159
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000160 die "Not enough arguments." if (@_ == 0);
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000161 my $Dir = shift @_;
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000162
163 my $TmpMode = 0;
164 if (!defined $Dir) {
Ted Kremenekffda0b42008-10-31 05:48:42 +0000165 if (`uname` =~ /Darwin/) {
166 $Dir = $ENV{'TMPDIR'};
167 if (!defined $Dir) { $Dir = "/tmp"; }
168 }
169 else {
170 $Dir = "/tmp";
171 }
172
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000173 $TmpMode = 1;
174 }
Ted Kremenekbf762c92009-02-24 02:38:02 +0000175
176 # Chop off any trailing '/' characters.
177 while ($Dir =~ /\/$/) { chop $Dir; }
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000178
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000179 # Get current date and time.
180
181 my @CurrentTime = localtime();
182
183 my $year = $CurrentTime[5] + 1900;
184 my $day = $CurrentTime[3];
185 my $month = $CurrentTime[4] + 1;
186
Ted Kremenek9d7405f2008-05-14 17:23:56 +0000187 my $DateString = sprintf("%d-%02d-%02d", $year, $month, $day);
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000188
189 # Determine the run number.
190
191 my $RunNumber;
192
193 if (-d $Dir) {
194
195 if (! -r $Dir) {
Ted Kremenek23cfca32008-06-16 22:40:14 +0000196 DieDiag("directory '$Dir' exists but is not readable.\n");
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000197 }
198
199 # Iterate over all files in the specified directory.
200
201 my $max = 0;
202
203 opendir(DIR, $Dir);
Ted Kremenek29da6c52008-08-07 17:57:34 +0000204 my @FILES = grep { -d "$Dir/$_" } readdir(DIR);
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000205 closedir(DIR);
206
207 foreach my $f (@FILES) {
208
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000209 # Strip the prefix '$Prog-' if we are dumping files to /tmp.
210 if ($TmpMode) {
211 next if (!($f =~ /^$Prog-(.+)/));
212 $f = $1;
213 }
214
Ted Kremenekebb74132008-09-21 06:58:09 +0000215
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000216 my @x = split/-/, $f;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000217 next if (scalar(@x) != 4);
218 next if ($x[0] != $year);
219 next if ($x[1] != $month);
220 next if ($x[2] != $day);
221
222 if ($x[3] > $max) {
223 $max = $x[3];
224 }
225 }
226
227 $RunNumber = $max + 1;
228 }
229 else {
230
231 if (-x $Dir) {
Ted Kremenek23cfca32008-06-16 22:40:14 +0000232 DieDiag("'$Dir' exists but is not a directory.\n");
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000233 }
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000234
235 if ($TmpMode) {
Ted Kremenek445fa772008-10-10 00:17:08 +0000236 DieDiag("The directory '/tmp' does not exist or cannot be accessed.\n");
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000237 }
238
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000239 # $Dir does not exist. It will be automatically created by the
240 # clang driver. Set the run number to 1.
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000241
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000242 $RunNumber = 1;
243 }
244
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000245 die "RunNumber must be defined!" if (!defined $RunNumber);
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000246
247 # Append the run number.
Ted Kremenekfc0898a2008-09-04 23:56:36 +0000248 my $NewDir;
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000249 if ($TmpMode) {
Ted Kremenekfc0898a2008-09-04 23:56:36 +0000250 $NewDir = "$Dir/$Prog-$DateString-$RunNumber";
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000251 }
252 else {
Ted Kremenekfc0898a2008-09-04 23:56:36 +0000253 $NewDir = "$Dir/$DateString-$RunNumber";
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000254 }
Ted Kremenekfc0898a2008-09-04 23:56:36 +0000255 system 'mkdir','-p',$NewDir;
256 return $NewDir;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000257}
258
Sam Bishopa0e22662008-04-02 03:35:43 +0000259sub SetHtmlEnv {
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000260
261 die "Wrong number of arguments." if (scalar(@_) != 2);
262
263 my $Args = shift;
264 my $Dir = shift;
265
266 die "No build command." if (scalar(@$Args) == 0);
267
268 my $Cmd = $$Args[0];
269
270 if ($Cmd =~ /configure/) {
271 return;
272 }
273
274 if ($Verbose) {
Ted Kremenek23cfca32008-06-16 22:40:14 +0000275 Diag("Emitting reports for this run to '$Dir'.\n");
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000276 }
277
278 $ENV{'CCC_ANALYZER_HTML'} = $Dir;
279}
280
281##----------------------------------------------------------------------------##
Ted Kremenek57cf4462008-04-18 15:09:30 +0000282# ComputeDigest - Compute a digest of the specified file.
283##----------------------------------------------------------------------------##
284
285sub ComputeDigest {
286 my $FName = shift;
Ted Kremenek23cfca32008-06-16 22:40:14 +0000287 DieDiag("Cannot read $FName to compute Digest.\n") if (! -r $FName);
Ted Kremeneka6e24812008-04-19 18:05:48 +0000288
289 # Use Digest::MD5. We don't have to be cryptographically secure. We're
Ted Kremenek7ea02e62008-04-19 18:07:44 +0000290 # just looking for duplicate files that come from a non-malicious source.
291 # We use Digest::MD5 because it is a standard Perl module that should
Ted Kremenek63c20172008-08-04 17:34:06 +0000292 # come bundled on most systems.
Ted Kremenek23cfca32008-06-16 22:40:14 +0000293 open(FILE, $FName) or DieDiag("Cannot open $FName when computing Digest.\n");
Ted Kremeneka6e24812008-04-19 18:05:48 +0000294 binmode FILE;
295 my $Result = Digest::MD5->new->addfile(*FILE)->hexdigest;
296 close(FILE);
297
Ted Kremenek63c20172008-08-04 17:34:06 +0000298 # Return the digest.
Ted Kremeneka6e24812008-04-19 18:05:48 +0000299 return $Result;
Ted Kremenek57cf4462008-04-18 15:09:30 +0000300}
301
302##----------------------------------------------------------------------------##
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000303# UpdatePrefix - Compute the common prefix of files.
304##----------------------------------------------------------------------------##
305
306my $Prefix;
307
308sub UpdatePrefix {
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000309 my $x = shift;
310 my $y = basename($x);
311 $x =~ s/\Q$y\E$//;
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000312
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000313 if (!defined $Prefix) {
314 $Prefix = $x;
315 return;
316 }
317
Ted Kremenek20b2bae2008-09-11 21:15:10 +0000318 chop $Prefix while (!($x =~ /^\Q$Prefix/));
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000319}
320
321sub GetPrefix {
322 return $Prefix;
323}
324
325##----------------------------------------------------------------------------##
326# UpdateInFilePath - Update the path in the report file.
327##----------------------------------------------------------------------------##
328
329sub UpdateInFilePath {
330 my $fname = shift;
331 my $regex = shift;
332 my $newtext = shift;
Ted Kremenek63c20172008-08-04 17:34:06 +0000333
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000334 open (RIN, $fname) or die "cannot open $fname";
Ted Kremenek63c20172008-08-04 17:34:06 +0000335 open (ROUT, ">", "$fname.tmp") or die "cannot open $fname.tmp";
336
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000337 while (<RIN>) {
338 s/$regex/$newtext/;
339 print ROUT $_;
340 }
Ted Kremenek63c20172008-08-04 17:34:06 +0000341
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000342 close (ROUT);
343 close (RIN);
Ted Kremenek20161e92008-07-15 20:18:21 +0000344 system("mv", "$fname.tmp", $fname);
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000345}
346
347##----------------------------------------------------------------------------##
Ted Kremenek5744dc22008-04-02 18:03:36 +0000348# ScanFile - Scan a report file for various identifying attributes.
349##----------------------------------------------------------------------------##
350
Ted Kremenek57cf4462008-04-18 15:09:30 +0000351# Sometimes a source file is scanned more than once, and thus produces
352# multiple error reports. We use a cache to solve this problem.
353
354my %AlreadyScanned;
355
Ted Kremenek5744dc22008-04-02 18:03:36 +0000356sub ScanFile {
357
358 my $Index = shift;
359 my $Dir = shift;
360 my $FName = shift;
361
Ted Kremenek57cf4462008-04-18 15:09:30 +0000362 # Compute a digest for the report file. Determine if we have already
363 # scanned a file that looks just like it.
364
365 my $digest = ComputeDigest("$Dir/$FName");
366
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000367 if (defined $AlreadyScanned{$digest}) {
Ted Kremenek57cf4462008-04-18 15:09:30 +0000368 # Redundant file. Remove it.
Ted Kremenek20161e92008-07-15 20:18:21 +0000369 system ("rm", "-f", "$Dir/$FName");
Ted Kremenek57cf4462008-04-18 15:09:30 +0000370 return;
371 }
372
373 $AlreadyScanned{$digest} = 1;
374
Ted Kremenek809709f2008-04-18 16:58:34 +0000375 # At this point the report file is not world readable. Make it happen.
Ted Kremenek20161e92008-07-15 20:18:21 +0000376 system ("chmod", "644", "$Dir/$FName");
Ted Kremenek684bb092008-04-18 15:18:20 +0000377
378 # Scan the report file for tags.
Ted Kremenek23cfca32008-06-16 22:40:14 +0000379 open(IN, "$Dir/$FName") or DieDiag("Cannot open '$Dir/$FName'\n");
Ted Kremenek5744dc22008-04-02 18:03:36 +0000380
Ted Kremeneka26ddab2009-01-27 01:53:39 +0000381 my $BugType = "";
Ted Kremenek22d6a632008-04-02 20:43:36 +0000382 my $BugFile = "";
Ted Kremenekebb74132008-09-21 06:58:09 +0000383 my $BugCategory;
Ted Kremenek22d6a632008-04-02 20:43:36 +0000384 my $BugPathLength = 1;
385 my $BugLine = 0;
Ted Kremenekebb74132008-09-21 06:58:09 +0000386 my $found = 0;
387
Ted Kremenek5744dc22008-04-02 18:03:36 +0000388 while (<IN>) {
Ted Kremenekebb74132008-09-21 06:58:09 +0000389
390 last if ($found == 5);
391
Ted Kremeneka26ddab2009-01-27 01:53:39 +0000392 if (/<!-- BUGTYPE (.*) -->$/) {
393 $BugType = $1;
Ted Kremenekebb74132008-09-21 06:58:09 +0000394 ++$found;
Ted Kremenek5744dc22008-04-02 18:03:36 +0000395 }
Ted Kremenek22d6a632008-04-02 20:43:36 +0000396 elsif (/<!-- BUGFILE (.*) -->$/) {
Ted Kremenek990c2f42008-12-03 19:19:23 +0000397 $BugFile = abs_path($1);
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000398 UpdatePrefix($BugFile);
Ted Kremenekebb74132008-09-21 06:58:09 +0000399 ++$found;
Ted Kremenek22d6a632008-04-02 20:43:36 +0000400 }
401 elsif (/<!-- BUGPATHLENGTH (.*) -->$/) {
402 $BugPathLength = $1;
Ted Kremenekebb74132008-09-21 06:58:09 +0000403 ++$found;
Ted Kremenek22d6a632008-04-02 20:43:36 +0000404 }
405 elsif (/<!-- BUGLINE (.*) -->$/) {
406 $BugLine = $1;
Ted Kremenekebb74132008-09-21 06:58:09 +0000407 ++$found;
408 }
409 elsif (/<!-- BUGCATEGORY (.*) -->$/) {
410 $BugCategory = $1;
411 ++$found;
Ted Kremenek22d6a632008-04-02 20:43:36 +0000412 }
Ted Kremenek5744dc22008-04-02 18:03:36 +0000413 }
414
415 close(IN);
Ted Kremenekebb74132008-09-21 06:58:09 +0000416
417 if (!defined $BugCategory) {
418 $BugCategory = "Other";
419 }
Ted Kremenek5744dc22008-04-02 18:03:36 +0000420
Ted Kremeneka26ddab2009-01-27 01:53:39 +0000421 push @$Index,[ $FName, $BugCategory, $BugType, $BugFile, $BugLine,
Ted Kremenek81983112008-09-28 04:13:09 +0000422 $BugPathLength ];
Ted Kremenek22d6a632008-04-02 20:43:36 +0000423}
424
425##----------------------------------------------------------------------------##
Ted Kremenek3ce12072008-09-22 17:50:47 +0000426# CopyFiles - Copy resource files to target directory.
Ted Kremenek22d6a632008-04-02 20:43:36 +0000427##----------------------------------------------------------------------------##
428
Ted Kremenek3ce12072008-09-22 17:50:47 +0000429sub CopyFiles {
Ted Kremenek22d6a632008-04-02 20:43:36 +0000430
431 my $Dir = shift;
Ted Kremeneke15fa272008-10-13 21:46:42 +0000432
433 my $JS = Cwd::realpath("$RealBin/sorttable.js");
Ted Kremenek22d6a632008-04-02 20:43:36 +0000434
Ted Kremenek23cfca32008-06-16 22:40:14 +0000435 DieDiag("Cannot find 'sorttable.js'.\n")
Ted Kremeneke15fa272008-10-13 21:46:42 +0000436 if (! -r $JS);
Ted Kremenek22d6a632008-04-02 20:43:36 +0000437
Ted Kremeneke15fa272008-10-13 21:46:42 +0000438 system ("cp", $JS, "$Dir");
Ted Kremenek22d6a632008-04-02 20:43:36 +0000439
Ted Kremenek23cfca32008-06-16 22:40:14 +0000440 DieDiag("Could not copy 'sorttable.js' to '$Dir'.\n")
Ted Kremenek22d6a632008-04-02 20:43:36 +0000441 if (! -r "$Dir/sorttable.js");
Ted Kremenek3ce12072008-09-22 17:50:47 +0000442
Ted Kremeneke15fa272008-10-13 21:46:42 +0000443 my $CSS = Cwd::realpath("$RealBin/scanview.css");
444
Ted Kremenek3ce12072008-09-22 17:50:47 +0000445 DieDiag("Cannot find 'scanview.css'.\n")
Ted Kremeneke15fa272008-10-13 21:46:42 +0000446 if (! -r $CSS);
Ted Kremenek3ce12072008-09-22 17:50:47 +0000447
Ted Kremeneke15fa272008-10-13 21:46:42 +0000448 system ("cp", $CSS, "$Dir");
Ted Kremenek3ce12072008-09-22 17:50:47 +0000449
450 DieDiag("Could not copy 'scanview.css' to '$Dir'.\n")
Ted Kremeneke15fa272008-10-13 21:46:42 +0000451 if (! -r $CSS);
Ted Kremenek5744dc22008-04-02 18:03:36 +0000452}
453
454##----------------------------------------------------------------------------##
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000455# Postprocess - Postprocess the results of an analysis scan.
456##----------------------------------------------------------------------------##
457
Sam Bishopa0e22662008-04-02 03:35:43 +0000458sub Postprocess {
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000459
460 my $Dir = shift;
Ted Kremenek684bb092008-04-18 15:18:20 +0000461 my $BaseDir = shift;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000462
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000463 die "No directory specified." if (!defined $Dir);
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000464
465 if (! -d $Dir) {
Ted Kremenek23cfca32008-06-16 22:40:14 +0000466 Diag("No bugs found.\n");
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000467 return 0;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000468 }
469
470 opendir(DIR, $Dir);
Ted Kremenek938eef12009-02-17 23:31:05 +0000471 my @files = grep { /^report-.*\.html$/ } readdir(DIR);
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000472 closedir(DIR);
473
Ted Kremenek938eef12009-02-17 23:31:05 +0000474 if (scalar(@files) == 0 and ! -e "$Dir/failures") {
Ted Kremenek23cfca32008-06-16 22:40:14 +0000475 Diag("Removing directory '$Dir' because it contains no reports.\n");
Ted Kremenek20161e92008-07-15 20:18:21 +0000476 system ("rm", "-fR", $Dir);
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000477 return 0;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000478 }
Ted Kremenek5744dc22008-04-02 18:03:36 +0000479
Ted Kremenek991c54b2008-08-08 20:46:42 +0000480 # Scan each report file and build an index.
481 my @Index;
Ted Kremenek5744dc22008-04-02 18:03:36 +0000482 foreach my $file (@files) { ScanFile(\@Index, $Dir, $file); }
483
Ted Kremenek938eef12009-02-17 23:31:05 +0000484 # Scan the failures directory and use the information in the .info files
Ted Kremenekd52e4252008-08-25 20:45:07 +0000485 # to update the common prefix directory.
Ted Kremenek938eef12009-02-17 23:31:05 +0000486 my @failures;
487 my @attributes_ignored;
488 if (-d "$Dir/failures") {
489 opendir(DIR, "$Dir/failures");
490 @failures = grep { /[.]info.txt$/ && !/attribute_ignored/; } readdir(DIR);
Ted Kremenekd52e4252008-08-25 20:45:07 +0000491 closedir(DIR);
Ted Kremenek938eef12009-02-17 23:31:05 +0000492 opendir(DIR, "$Dir/failures");
493 @attributes_ignored = grep { /^attribute_ignored/; } readdir(DIR);
494 closedir(DIR);
495 foreach my $file (@failures) {
496 open IN, "$Dir/failures/$file" or DieDiag("cannot open $file\n");
Ted Kremenekd52e4252008-08-25 20:45:07 +0000497 my $Path = <IN>;
498 if (defined $Path) { UpdatePrefix($Path); }
499 close IN;
500 }
501 }
502
Ted Kremenek63c20172008-08-04 17:34:06 +0000503 # Generate an index.html file.
504 my $FName = "$Dir/index.html";
505 open(OUT, ">", $FName) or DieDiag("Cannot create file '$FName'\n");
Ted Kremenek5744dc22008-04-02 18:03:36 +0000506
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000507 # Print out the header.
508
Ted Kremenek5744dc22008-04-02 18:03:36 +0000509print OUT <<ENDTEXT;
510<html>
511<head>
Ted Kremenek7cba1122008-09-22 01:35:58 +0000512<title>${HtmlTitle}</title>
Ted Kremenekf1435452008-09-23 22:34:51 +0000513<link type="text/css" rel="stylesheet" href="scanview.css"/>
Ted Kremenek22d6a632008-04-02 20:43:36 +0000514<script src="sorttable.js"></script>
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000515<script language='javascript' type="text/javascript">
516function SetDisplay(RowClass, DisplayVal)
517{
518 var Rows = document.getElementsByTagName("tr");
519 for ( var i = 0 ; i < Rows.length; ++i ) {
520 if (Rows[i].className == RowClass) {
521 Rows[i].style.display = DisplayVal;
522 }
523 }
524}
Ted Kremenekebb74132008-09-21 06:58:09 +0000525
Ted Kremenek2350a462008-10-28 19:56:52 +0000526function CopyCheckedStateToCheckButtons(SummaryCheckButton) {
527 var Inputs = document.getElementsByTagName("input");
528 for ( var i = 0 ; i < Inputs.length; ++i ) {
529 if (Inputs[i].type == "checkbox") {
530 if(Inputs[i] != SummaryCheckButton) {
531 Inputs[i].checked = SummaryCheckButton.checked;
532 Inputs[i].onclick();
533 }
534 }
535 }
536}
537
Ted Kremenek999e1202008-10-28 20:09:57 +0000538function returnObjById( id ) {
539 if (document.getElementById)
540 var returnVar = document.getElementById(id);
541 else if (document.all)
542 var returnVar = document.all[id];
543 else if (document.layers)
544 var returnVar = document.layers[id];
545 return returnVar;
546}
547
548var NumUnchecked = 0;
549
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000550function ToggleDisplay(CheckButton, ClassName) {
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000551 if (CheckButton.checked) {
552 SetDisplay(ClassName, "");
Ted Kremenek999e1202008-10-28 20:09:57 +0000553 if (--NumUnchecked == 0) {
554 returnObjById("AllBugsCheck").checked = true;
555 }
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000556 }
557 else {
558 SetDisplay(ClassName, "none");
Ted Kremenek999e1202008-10-28 20:09:57 +0000559 NumUnchecked++;
560 returnObjById("AllBugsCheck").checked = false;
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000561 }
562}
563</script>
Ted Kremenek1d1abb12008-09-22 17:52:58 +0000564<!-- SUMMARYENDHEAD -->
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000565</head>
566<body>
Ted Kremenek7cba1122008-09-22 01:35:58 +0000567<h1>${HtmlTitle}</h1>
568
569<table>
570<tr><th>User:</th><td>${UserName}\@${HostName}</td></tr>
571<tr><th>Working Directory:</th><td>${CurrentDir}</td></tr>
572<tr><th>Command Line:</th><td>${CmdArgs}</td></tr>
573<tr><th>Date:</th><td>${Date}</td></tr>
574ENDTEXT
575
576print OUT "<tr><th>Version:</th><td>${BuildName} (${BuildDate})</td></tr>\n"
577 if (defined($BuildName) && defined($BuildDate));
578
579print OUT <<ENDTEXT;
580</table>
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000581ENDTEXT
582
Ted Kremenek991c54b2008-08-08 20:46:42 +0000583 if (scalar(@files)) {
584 # Print out the summary table.
585 my %Totals;
Ted Kremenekebb74132008-09-21 06:58:09 +0000586
Ted Kremenek991c54b2008-08-08 20:46:42 +0000587 for my $row ( @Index ) {
Ted Kremenekebb74132008-09-21 06:58:09 +0000588 my $bug_type = ($row->[2]);
589 my $bug_category = ($row->[1]);
590 my $key = "$bug_category:$bug_type";
591
592 if (!defined $Totals{$key}) { $Totals{$key} = [1,$bug_category,$bug_type]; }
593 else { $Totals{$key}->[0]++; }
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000594 }
Ted Kremenek991c54b2008-08-08 20:46:42 +0000595
Ted Kremenek7cba1122008-09-22 01:35:58 +0000596 print OUT "<h2>Bug Summary</h2>";
Ted Kremenek991c54b2008-08-08 20:46:42 +0000597
598 if (defined $BuildName) {
599 print OUT "\n<p>Results in this analysis run are based on analyzer build <b>$BuildName</b>.</p>\n"
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000600 }
Ted Kremenekf4cdf412008-05-23 18:17:05 +0000601
Ted Kremenek2350a462008-10-28 19:56:52 +0000602 my $TotalBugs = scalar(@Index);
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000603print OUT <<ENDTEXT;
Ted Kremenekebb74132008-09-21 06:58:09 +0000604<table>
605<thead><tr><td>Bug Type</td><td>Quantity</td><td class="sorttable_nosort">Display?</td></tr></thead>
Ted Kremenek999e1202008-10-28 20:09:57 +0000606<tr style="font-weight:bold"><td class="SUMM_DESC">All Bugs</td><td class="Q">$TotalBugs</td><td><center><input type="checkbox" id="AllBugsCheck" onClick="CopyCheckedStateToCheckButtons(this);" checked/></center></td></tr>
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000607ENDTEXT
608
Ted Kremenekebb74132008-09-21 06:58:09 +0000609 my $last_category;
610
611 for my $key (
612 sort {
613 my $x = $Totals{$a};
614 my $y = $Totals{$b};
615 my $res = $x->[1] cmp $y->[1];
616 $res = $x->[2] cmp $y->[2] if ($res == 0);
617 $res
618 } keys %Totals )
619 {
620 my $val = $Totals{$key};
621 my $category = $val->[1];
622 if (!defined $last_category or $last_category ne $category) {
623 $last_category = $category;
624 print OUT "<tr><th>$category</th><th colspan=2></th></tr>\n";
625 }
626 my $x = lc $key;
627 $x =~ s/[ ,'":\/()]+/_/g;
628 print OUT "<tr><td class=\"SUMM_DESC\">";
629 print OUT $val->[2];
Ted Kremenek2350a462008-10-28 19:56:52 +0000630 print OUT "</td><td class=\"Q\">";
Ted Kremenekebb74132008-09-21 06:58:09 +0000631 print OUT $val->[0];
632 print OUT "</td><td><center><input type=\"checkbox\" onClick=\"ToggleDisplay(this,'bt_$x');\" checked/></center></td></tr>\n";
Ted Kremenek991c54b2008-08-08 20:46:42 +0000633 }
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000634
635 # Print out the table of errors.
636
637print OUT <<ENDTEXT;
638</table>
Ted Kremenek7cba1122008-09-22 01:35:58 +0000639<h2>Reports</h2>
Ted Kremenekebb74132008-09-21 06:58:09 +0000640
641<table class="sortable" style="table-layout:automatic">
642<thead><tr>
643 <td>Bug Group</td>
644 <td class="sorttable_sorted">Bug Type<span id="sorttable_sortfwdind">&nbsp;&#x25BE;</span></td>
Ted Kremenekbba1cf52008-04-03 05:50:51 +0000645 <td>File</td>
Ted Kremenekebb74132008-09-21 06:58:09 +0000646 <td class="Q">Line</td>
Ted Kremenek81983112008-09-28 04:13:09 +0000647 <td class="Q">Path Length</td>
Ted Kremenek2645c772008-07-07 16:58:44 +0000648 <td class="sorttable_nosort"></td>
Ted Kremenekebb74132008-09-21 06:58:09 +0000649 <!-- REPORTBUGCOL -->
650</tr></thead>
651<tbody>
Ted Kremenek5744dc22008-04-02 18:03:36 +0000652ENDTEXT
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000653
Ted Kremenek991c54b2008-08-08 20:46:42 +0000654 my $prefix = GetPrefix();
655 my $regex;
656 my $InFileRegex;
657 my $InFilePrefix = "File:</td><td>";
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000658
Ted Kremenek991c54b2008-08-08 20:46:42 +0000659 if (defined $prefix) {
660 $regex = qr/^\Q$prefix\E/is;
661 $InFileRegex = qr/\Q$InFilePrefix$prefix\E/is;
662 }
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000663
Ted Kremenekebb74132008-09-21 06:58:09 +0000664 for my $row ( sort { $a->[2] cmp $b->[2] } @Index ) {
665 my $x = "$row->[1]:$row->[2]";
666 $x = lc $x;
667 $x =~ s/[ ,'":\/()]+/_/g;
Ted Kremenek5744dc22008-04-02 18:03:36 +0000668
Ted Kremenek991c54b2008-08-08 20:46:42 +0000669 my $ReportFile = $row->[0];
Ted Kremenekebb74132008-09-21 06:58:09 +0000670
671 print OUT "<tr class=\"bt_$x\">";
672 print OUT "<td class=\"DESC\">";
Ted Kremenek991c54b2008-08-08 20:46:42 +0000673 print OUT $row->[1];
Ted Kremenekebb74132008-09-21 06:58:09 +0000674 print OUT "</td>";
675 print OUT "<td class=\"DESC\">";
676 print OUT $row->[2];
677 print OUT "</td>";
678
679 # Update the file prefix.
680 my $fname = $row->[3];
Ted Kremenekebb74132008-09-21 06:58:09 +0000681
Ted Kremenek991c54b2008-08-08 20:46:42 +0000682 if (defined $regex) {
683 $fname =~ s/$regex//;
684 UpdateInFilePath("$Dir/$ReportFile", $InFileRegex, $InFilePrefix)
685 }
Ted Kremenekebb74132008-09-21 06:58:09 +0000686
Ted Kremenek91639ef2008-09-22 17:42:31 +0000687 print OUT "<td>";
Ted Kremenekebb74132008-09-21 06:58:09 +0000688 my @fname = split /\//,$fname;
689 if ($#fname > 0) {
690 while ($#fname >= 0) {
691 my $x = shift @fname;
692 print OUT $x;
693 if ($#fname >= 0) {
694 print OUT "<span class=\"W\"> </span>/";
695 }
696 }
697 }
698 else {
699 print OUT $fname;
Ted Kremenek91639ef2008-09-22 17:42:31 +0000700 }
Ted Kremenekebb74132008-09-21 06:58:09 +0000701 print OUT "</td>";
702
703 # Print out the quantities.
Ted Kremenek81983112008-09-28 04:13:09 +0000704 for my $j ( 4 .. 5 ) {
Ted Kremenekebb74132008-09-21 06:58:09 +0000705 print OUT "<td class=\"Q\">$row->[$j]</td>";
706 }
707
Ted Kremenek991c54b2008-08-08 20:46:42 +0000708 # Print the rest of the columns.
Ted Kremenek81983112008-09-28 04:13:09 +0000709 for (my $j = 6; $j <= $#{$row}; ++$j) {
Ted Kremenekebb74132008-09-21 06:58:09 +0000710 print OUT "<td>$row->[$j]</td>"
Ted Kremenek991c54b2008-08-08 20:46:42 +0000711 }
Ted Kremenek7f8a3252008-04-02 18:42:49 +0000712
Ted Kremenek991c54b2008-08-08 20:46:42 +0000713 # Emit the "View" link.
Ted Kremenek68005dd2008-09-22 17:39:18 +0000714 print OUT "<td><a href=\"$ReportFile#EndPath\">View Report</a></td>";
Ted Kremenek3cea9ee2008-07-30 17:58:08 +0000715
Daniel Dunbare43038e2008-09-19 23:18:44 +0000716 # Emit REPORTBUG markers.
Ted Kremenekebb74132008-09-21 06:58:09 +0000717 print OUT "\n<!-- REPORTBUG id=\"$ReportFile\" -->\n";
Daniel Dunbare43038e2008-09-19 23:18:44 +0000718
Ted Kremenek991c54b2008-08-08 20:46:42 +0000719 # End the row.
720 print OUT "</tr>\n";
721 }
722
Ted Kremenekebb74132008-09-21 06:58:09 +0000723 print OUT "</tbody>\n</table>\n\n";
Ted Kremenek991c54b2008-08-08 20:46:42 +0000724 }
725
Ted Kremenek938eef12009-02-17 23:31:05 +0000726 if (scalar (@failures) || scalar(@attributes_ignored)) {
727 print OUT "<h2>Analyzer Failures</h2>\n";
728
729 if (scalar @attributes_ignored) {
730 print OUT "The analyzer's parser ignored the following attributes:<p>\n";
731 print OUT "<table>\n";
732 print OUT "<thead><tr><td>Attribute</td><td>Source File</td><td>Preprocessed File</td><td>STDERR Output</td></tr></thead>\n";
733 foreach my $file (sort @attributes_ignored) {
734 die "cannot demangle attribute name\n" if (! ($file =~ /^attribute_ignored_(.+).txt/));
735 my $attribute = $1;
736 # Open the attribute file to get the first file that failed.
737 next if (!open (ATTR, "$Dir/failures/$file"));
738 my $ppfile = <ATTR>;
739 chomp $ppfile;
740 close ATTR;
741 next if (! -e "$Dir/failures/$ppfile");
742 # Open the info file and get the name of the source file.
743 open (INFO, "$Dir/failures/$ppfile.info.txt") or
744 die "Cannot open $Dir/failures/$ppfile.info.txt\n";
745 my $srcfile = <INFO>;
746 chomp $srcfile;
747 close (INFO);
748 # Print the information in the table.
749 my $prefix = GetPrefix();
750 if (defined $prefix) { $srcfile =~ s/^\Q$prefix//; }
751 print OUT "<tr><td>$attribute</td><td>$srcfile</td><td><a href=\"failures/$ppfile\">$ppfile</a></td><td><a href=\"failures/$ppfile.stderr.txt\">$ppfile.stderr.txt</a></td></tr>\n";
752 my $ppfile_clang = $ppfile;
753 $ppfile_clang =~ s/[.](.+)$/.clang.$1/;
754 print OUT " <!-- REPORTPROBLEM src=\"$srcfile\" file=\"failures/$ppfile\" clangfile=\"failures/$ppfile_clang\" stderr=\"failures/$ppfile.stderr.txt\" info=\"failures/$ppfile.info.txt\" -->\n";
755 }
756 print OUT "</table>\n";
757 }
758
759 if (scalar @failures) {
760 print OUT "<p>The analyzer had problems processing the following files:</p>\n";
761 print OUT "<table>\n";
762 print OUT "<thead><tr><td>Problem</td><td>Source File</td><td>Preprocessed File</td><td>STDERR Output</td></tr></thead>\n";
763 foreach my $file (sort @failures) {
Ted Kremenek82a12532008-09-25 00:25:16 +0000764 $file =~ /(.+).info.txt$/;
Ted Kremenek991c54b2008-08-08 20:46:42 +0000765 # Get the preprocessed file.
766 my $ppfile = $1;
767 # Open the info file and get the name of the source file.
Ted Kremenek938eef12009-02-17 23:31:05 +0000768 open (INFO, "$Dir/failures/$file") or
769 die "Cannot open $Dir/failures/$file\n";
Ted Kremenek991c54b2008-08-08 20:46:42 +0000770 my $srcfile = <INFO>;
Ted Kremenek5d31f832008-08-18 18:38:29 +0000771 chomp $srcfile;
772 my $problem = <INFO>;
773 chomp $problem;
Ted Kremenek991c54b2008-08-08 20:46:42 +0000774 close (INFO);
775 # Print the information in the table.
Ted Kremenekd52e4252008-08-25 20:45:07 +0000776 my $prefix = GetPrefix();
Ted Kremenek9f9b1fd2008-09-12 22:49:36 +0000777 if (defined $prefix) { $srcfile =~ s/^\Q$prefix//; }
Ted Kremenek938eef12009-02-17 23:31:05 +0000778 print OUT "<tr><td>$problem</td><td>$srcfile</td><td><a href=\"failures/$ppfile\">$ppfile</a></td><td><a href=\"failures/$ppfile.stderr.txt\">$ppfile.stderr.txt</a></td></tr>\n";
Daniel Dunbarce723ce2008-09-25 01:10:50 +0000779 my $ppfile_clang = $ppfile;
780 $ppfile_clang =~ s/[.](.+)$/.clang.$1/;
Ted Kremenek938eef12009-02-17 23:31:05 +0000781 print OUT " <!-- REPORTPROBLEM src=\"$srcfile\" file=\"failures/$ppfile\" clangfile=\"failures/$ppfile_clang\" stderr=\"failures/$ppfile.stderr.txt\" info=\"failures/$ppfile.info.txt\" -->\n";
Ted Kremenek991c54b2008-08-08 20:46:42 +0000782 }
Ted Kremenek938eef12009-02-17 23:31:05 +0000783 print OUT "</table>\n";
784 }
785 print OUT "<p>Please consider submitting preprocessed files as <a href=\"http://clang.llvm.org/StaticAnalysisUsage.html#filingbugs\">bug reports</a>. <!-- REPORTCRASHES --> </p>\n";
Ted Kremenek5744dc22008-04-02 18:03:36 +0000786 }
787
Ted Kremenek991c54b2008-08-08 20:46:42 +0000788 print OUT "</body></html>\n";
Ted Kremenek5744dc22008-04-02 18:03:36 +0000789 close(OUT);
Ted Kremenek3ce12072008-09-22 17:50:47 +0000790 CopyFiles($Dir);
Ted Kremenek20161e92008-07-15 20:18:21 +0000791
792 # Make sure $Dir and $BaseDir are world readable/executable.
793 system("chmod", "755", $Dir);
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000794 if (defined $BaseDir) { system("chmod", "755", $BaseDir); }
Ted Kremenek20161e92008-07-15 20:18:21 +0000795
Ted Kremenek23cfca32008-06-16 22:40:14 +0000796 my $Num = scalar(@Index);
Ted Kremenek150c2122008-07-11 19:15:05 +0000797 Diag("$Num bugs found.\n");
798 if ($Num > 0 && -r "$Dir/index.html") {
Ted Kremenek5950b3f2008-09-22 06:47:01 +0000799 Diag("Run 'scan-view $Dir' to examine bug reports.\n");
Ted Kremenek150c2122008-07-11 19:15:05 +0000800 }
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000801
Ted Kremenek938eef12009-02-17 23:31:05 +0000802 DiagCrashes($Dir) if (scalar @failures || scalar @attributes_ignored);
Ted Kremenek991c54b2008-08-08 20:46:42 +0000803
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000804 return $Num;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000805}
806
807##----------------------------------------------------------------------------##
Ted Kremenekdab11102008-04-02 04:43:42 +0000808# RunBuildCommand - Run the build command.
809##----------------------------------------------------------------------------##
810
Ted Kremenek6b628982008-04-30 23:47:12 +0000811sub AddIfNotPresent {
812 my $Args = shift;
813 my $Arg = shift;
814 my $found = 0;
815
816 foreach my $k (@$Args) {
817 if ($k eq $Arg) {
818 $found = 1;
819 last;
820 }
821 }
822
823 if ($found == 0) {
824 push @$Args, $Arg;
825 }
826}
827
Ted Kremenekdab11102008-04-02 04:43:42 +0000828sub RunBuildCommand {
829
830 my $Args = shift;
Ted Kremenek7442ca62008-04-02 16:04:51 +0000831 my $IgnoreErrors = shift;
Ted Kremenekdab11102008-04-02 04:43:42 +0000832 my $Cmd = $Args->[0];
Ted Kremenek6195c372008-06-02 21:52:47 +0000833 my $CCAnalyzer = shift;
Ted Kremenekdab11102008-04-02 04:43:42 +0000834
Ted Kremenek3301cb12008-06-30 18:18:16 +0000835 # Get only the part of the command after the last '/'.
836 if ($Cmd =~ /\/([^\/]+)$/) {
837 $Cmd = $1;
838 }
839
Ted Kremenek92548fe2008-11-19 01:46:21 +0000840 if ($Cmd =~ /(.*\/?gcc[^\/]*$)/ or
841 $Cmd =~ /(.*\/?cc[^\/]*$)/ or
842 $Cmd =~ /(.*\/?llvm-gcc[^\/]*$)/ or
843 $Cmd =~ /(.*\/?ccc-analyzer[^\/]*$)/) {
844
845 if (!($Cmd =~ /ccc-analyzer/) and !defined $ENV{"CCC_CC"}) {
846 $ENV{"CCC_CC"} = $1;
847 }
848
Ted Kremenekdab11102008-04-02 04:43:42 +0000849 shift @$Args;
Ted Kremenek6195c372008-06-02 21:52:47 +0000850 unshift @$Args, $CCAnalyzer;
Ted Kremenekdab11102008-04-02 04:43:42 +0000851 }
Ted Kremenek7442ca62008-04-02 16:04:51 +0000852 elsif ($IgnoreErrors) {
853 if ($Cmd eq "make" or $Cmd eq "gmake") {
Ted Kremenek6b628982008-04-30 23:47:12 +0000854 AddIfNotPresent($Args,"-k");
Ted Kremenek8912b542008-05-13 21:28:02 +0000855 AddIfNotPresent($Args,"-i");
Ted Kremenek7442ca62008-04-02 16:04:51 +0000856 }
857 elsif ($Cmd eq "xcodebuild") {
Ted Kremenek6b628982008-04-30 23:47:12 +0000858 AddIfNotPresent($Args,"-PBXBuildsContinueAfterErrors=YES");
Ted Kremenek7442ca62008-04-02 16:04:51 +0000859 }
Ted Kremenek6b628982008-04-30 23:47:12 +0000860 }
861
Ted Kremenek6b628982008-04-30 23:47:12 +0000862 if ($Cmd eq "xcodebuild") {
Ted Kremenek87752b22009-05-15 21:14:16 +0000863 # Check if using iPhone SDK 3.0 (simulator). If so the compiler being
864 # used should be gcc-4.2.
865 if (!defined $ENV{"CCC_CC"}) {
866 for (my $i = 0 ; $i < scalar(@$Args); ++$i) {
867 if ($Args->[$i] eq "-sdk" && $i + 1 < scalar(@$Args)) {
868 if (@$Args[$i+1] =~ /^iphonesimulator3/) {
869 $ENV{"CCC_CC"} = "gcc-4.2";
870 }
871 }
872 }
873 }
874
Ted Kremenekcfd4c7b2008-05-23 22:18:16 +0000875 # Disable distributed builds for xcodebuild.
Ted Kremenek6b628982008-04-30 23:47:12 +0000876 AddIfNotPresent($Args,"-nodistribute");
Ted Kremenekcfd4c7b2008-05-23 22:18:16 +0000877
878 # Disable PCH files until clang supports them.
879 AddIfNotPresent($Args,"GCC_PRECOMPILE_PREFIX_HEADER=NO");
Ted Kremenek915e9722008-05-27 23:18:07 +0000880
881 # When 'CC' is set, xcodebuild uses it to do all linking, even if we are
882 # linking C++ object files. Set 'LDPLUSPLUS' so that xcodebuild uses 'g++'
883 # when linking such files.
Ted Kremenek95aa1052008-09-04 17:52:41 +0000884 die if (!defined $CXX);
885 my $LDPLUSPLUS = `which $CXX`;
Ted Kremenek915e9722008-05-27 23:18:07 +0000886 $LDPLUSPLUS =~ s/\015?\012//; # strip newlines
887 $ENV{'LDPLUSPLUS'} = $LDPLUSPLUS;
Ted Kremenek6b628982008-04-30 23:47:12 +0000888 }
Ted Kremenekdab11102008-04-02 04:43:42 +0000889
Ted Kremenek5a4ddaf2008-08-25 20:10:45 +0000890 return (system(@$Args) >> 8);
Ted Kremenekdab11102008-04-02 04:43:42 +0000891}
892
Ted Kremenekdab11102008-04-02 04:43:42 +0000893##----------------------------------------------------------------------------##
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000894# DisplayHelp - Utility function to display all help options.
895##----------------------------------------------------------------------------##
896
Sam Bishopa0e22662008-04-02 03:35:43 +0000897sub DisplayHelp {
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000898
Ted Kremenek5744dc22008-04-02 18:03:36 +0000899print <<ENDTEXT;
Sam Bishopa0e22662008-04-02 03:35:43 +0000900USAGE: $Prog [options] <build command> [build options]
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000901
Ted Kremenekf4cdf412008-05-23 18:17:05 +0000902ENDTEXT
903
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000904 if (defined $BuildName) {
Ted Kremenekf4cdf412008-05-23 18:17:05 +0000905 print "ANALYZER BUILD: $BuildName ($BuildDate)\n\n";
906 }
907
908print <<ENDTEXT;
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000909OPTIONS:
910
Ted Kremeneke15fa272008-10-13 21:46:42 +0000911 -analyze-headers - Also analyze functions in #included files.
912
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000913 -o - Target directory for HTML report files. Subdirectories
Sam Bishopa0e22662008-04-02 03:35:43 +0000914 will be created as needed to represent separate "runs" of
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000915 the analyzer. If this option is not specified, a directory
Ted Kremenekffda0b42008-10-31 05:48:42 +0000916 is created in /tmp (TMPDIR on Mac OS X) to store the reports.
Ted Kremenekdb4f5f22008-11-04 00:02:53 +0000917
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000918 -h - Display this message.
919 --help
Ted Kremenek1262fc42008-05-14 20:10:33 +0000920
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000921 -k - Add a "keep on going" option to the specified build command.
922 --keep-going This option currently supports make and xcodebuild.
Ted Kremenekf02e8db2008-04-02 16:41:25 +0000923 This is a convenience option; one can specify this
924 behavior directly using build options.
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000925
Ted Kremenek7cba1122008-09-22 01:35:58 +0000926 --html-title [title] - Specify the title used on generated HTML pages.
927 --html-title=[title] If not specified, a default title will be used.
928
Ted Kremenekdb4f5f22008-11-04 00:02:53 +0000929 -plist - By default the output of scan-build is a set of HTML files.
930 This option outputs the results as a set of .plist files.
931
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000932 --status-bugs - By default, the exit status of $Prog is the same as the
933 executed build command. Specifying this option causes the
934 exit status of $Prog to be 1 if it found potential bugs
935 and 0 otherwise.
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000936
Ted Kremenek386c6932008-09-03 17:59:35 +0000937 --use-cc [compiler path] - By default, $Prog uses 'gcc' to compile and link
938 --use-cc=[compiler path] your C and Objective-C code. Use this option
939 to specify an alternate compiler.
940
941 --use-c++ [compiler path] - By default, $Prog uses 'g++' to compile and link
942 --use-c++=[compiler path] your C++ and Objective-C++ code. Use this option
943 to specify an alternate compiler.
Ted Kremenekf17ef3c2008-08-21 21:47:09 +0000944
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000945 -v - Verbose output from $Prog and the analyzer.
Ted Kremenek386c6932008-09-03 17:59:35 +0000946 A second and third '-v' increases verbosity.
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000947
948 -V - View analysis results in a web browser when the build
949 --view completes.
Ted Kremenek7f8a3252008-04-02 18:42:49 +0000950
Ted Kremenekbe1fe1e2009-02-17 04:27:41 +0000951ADVANCED OPTIONS:
952
Ted Kremenek9f4ecb32009-02-20 21:49:22 +0000953 -constraints [model] - Specify the contraint engine used by the analyzer.
954 By default the 'range' model is used. Specifying
955 'basic' uses a simpler, less powerful constraint model
Ted Kremenekd4c76842009-02-21 04:46:41 +0000956 used by checker-0.160 and earlier.
Ted Kremenekbe1fe1e2009-02-17 04:27:41 +0000957
958 -store [model] - Specify the store model used by the analyzer. By default,
959 the 'basic' store model is used. 'region' specifies a field-
960 sensitive store model. Be warned that the 'region' model
961 is still in very early testing phase and may often crash.
Ted Kremenekb7770c02008-07-15 17:06:13 +0000962
Ted Kremenek386c6932008-09-03 17:59:35 +0000963AVAILABLE ANALYSES (multiple analyses may be specified):
Ted Kremenekd52e4252008-08-25 20:45:07 +0000964
965ENDTEXT
Ted Kremenekb7770c02008-07-15 17:06:13 +0000966
967 foreach my $Analysis (sort keys %AvailableAnalyses) {
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000968 if (defined $AnalysesDefaultEnabled{$Analysis}) {
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000969 print " (+)";
Ted Kremenekb7770c02008-07-15 17:06:13 +0000970 }
971 else {
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000972 print " ";
Ted Kremenekb7770c02008-07-15 17:06:13 +0000973 }
974
975 print " $Analysis $AvailableAnalyses{$Analysis}\n";
976 }
977
978print <<ENDTEXT
979
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000980 NOTE: "(+)" indicates that an analysis is enabled by default unless one
981 or more analysis options are specified
Ted Kremenekb7770c02008-07-15 17:06:13 +0000982
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000983BUILD OPTIONS
984
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000985 You can specify any build option acceptable to the build command.
Ted Kremenek39eefde2008-04-02 16:47:27 +0000986
Ted Kremenek5744dc22008-04-02 18:03:36 +0000987EXAMPLE
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000988
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000989 $Prog -o /tmp/myhtmldir make -j4
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000990
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000991 The above example causes analysis reports to be deposited into
992 a subdirectory of "/tmp/myhtmldir" and to run "make" with the "-j4" option.
993 A different subdirectory is created each time $Prog analyzes a project.
994 The analyzer should support most parallel builds, but not distributed builds.
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000995
996ENDTEXT
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000997}
998
999##----------------------------------------------------------------------------##
Ted Kremenek7cba1122008-09-22 01:35:58 +00001000# HtmlEscape - HTML entity encode characters that are special in HTML
1001##----------------------------------------------------------------------------##
1002
1003sub HtmlEscape {
1004 # copy argument to new variable so we don't clobber the original
1005 my $arg = shift || '';
1006 my $tmp = $arg;
Ted Kremenek87f8de72008-11-03 07:44:16 +00001007 $tmp =~ s/&/&amp;/g;
1008 $tmp =~ s/</&lt;/g;
1009 $tmp =~ s/>/&gt;/g;
Ted Kremenek7cba1122008-09-22 01:35:58 +00001010 return $tmp;
1011}
1012
1013##----------------------------------------------------------------------------##
1014# ShellEscape - backslash escape characters that are special to the shell
1015##----------------------------------------------------------------------------##
1016
1017sub ShellEscape {
1018 # copy argument to new variable so we don't clobber the original
1019 my $arg = shift || '';
Ted Kremenek87f8de72008-11-03 07:44:16 +00001020 if ($arg =~ /["\s]/) { return "'" . $arg . "'"; }
1021 return $arg;
Ted Kremenek7cba1122008-09-22 01:35:58 +00001022}
1023
1024##----------------------------------------------------------------------------##
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001025# Process command-line arguments.
1026##----------------------------------------------------------------------------##
1027
Ted Kremeneke15fa272008-10-13 21:46:42 +00001028my $AnalyzeHeaders = 0;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001029my $HtmlDir; # Parent directory to store HTML files.
1030my $IgnoreErrors = 0; # Ignore build errors.
Ted Kremenek7f8a3252008-04-02 18:42:49 +00001031my $ViewResults = 0; # View results when the build terminates.
Ted Kremenek363dc3f2008-07-15 22:03:09 +00001032my $ExitStatusFoundBugs = 0; # Exit status reflects whether bugs were found
Ted Kremenekb7770c02008-07-15 17:06:13 +00001033my @AnalysesToRun;
Zhongxing Xu07c37672008-10-27 14:26:32 +00001034my $StoreModel;
Ted Kremenekbe1fe1e2009-02-17 04:27:41 +00001035my $ConstraintsModel;
Ted Kremenekdb4f5f22008-11-04 00:02:53 +00001036my $OutputFormat;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001037
1038if (!@ARGV) {
1039 DisplayHelp();
Sam Bishopa0e22662008-04-02 03:35:43 +00001040 exit 1;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001041}
1042
1043while (@ARGV) {
1044
1045 # Scan for options we recognize.
1046
1047 my $arg = $ARGV[0];
1048
Sam Bishop2f2418e2008-04-03 14:29:47 +00001049 if ($arg eq "-h" or $arg eq "--help") {
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001050 DisplayHelp();
Sam Bishopa0e22662008-04-02 03:35:43 +00001051 exit 0;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001052 }
1053
Ted Kremeneke15fa272008-10-13 21:46:42 +00001054 if ($arg eq '-analyze-headers') {
1055 shift @ARGV;
1056 $AnalyzeHeaders = 1;
1057 next;
1058 }
1059
Ted Kremenekfc1d3402008-08-04 18:15:26 +00001060 if (defined $AvailableAnalyses{$arg}) {
Ted Kremenek1262fc42008-05-14 20:10:33 +00001061 shift @ARGV;
Ted Kremenekb7770c02008-07-15 17:06:13 +00001062 push @AnalysesToRun, $arg;
Ted Kremenek1262fc42008-05-14 20:10:33 +00001063 next;
1064 }
1065
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001066 if ($arg eq "-o") {
1067 shift @ARGV;
1068
1069 if (!@ARGV) {
Ted Kremenek23cfca32008-06-16 22:40:14 +00001070 DieDiag("'-o' option requires a target directory name.\n");
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001071 }
1072
Ted Kremenekdb51a552009-03-11 18:20:33 +00001073 # Construct an absolute path. Uses the current working directory
1074 # as a base if the original path was not absolute.
1075 $HtmlDir = abs_path(shift @ARGV);
1076
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001077 next;
1078 }
Ted Kremenek7cba1122008-09-22 01:35:58 +00001079
1080 if ($arg =~ /^--html-title(=(.+))?$/) {
1081 shift @ARGV;
1082
Ted Kremenek278a5512009-05-12 18:04:43 +00001083 if (!defined $2 || $2 eq '') {
Ted Kremenek7cba1122008-09-22 01:35:58 +00001084 if (!@ARGV) {
1085 DieDiag("'--html-title' option requires a string.\n");
1086 }
1087
1088 $HtmlTitle = shift @ARGV;
1089 } else {
1090 $HtmlTitle = $2;
1091 }
1092
1093 next;
1094 }
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001095
Ted Kremenek2b74ab62008-04-01 21:22:03 +00001096 if ($arg eq "-k" or $arg eq "--keep-going") {
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001097 shift @ARGV;
1098 $IgnoreErrors = 1;
1099 next;
1100 }
1101
Ted Kremenekf17ef3c2008-08-21 21:47:09 +00001102 if ($arg =~ /^--use-cc(=(.+))?$/) {
1103 shift @ARGV;
1104 my $cc;
1105
Ted Kremenek278a5512009-05-12 18:04:43 +00001106 if (!defined $2 || $2 eq "") {
Ted Kremenekf17ef3c2008-08-21 21:47:09 +00001107 if (!@ARGV) {
1108 DieDiag("'--use-cc' option requires a compiler executable name.\n");
1109 }
1110 $cc = shift @ARGV;
1111 }
1112 else {
1113 $cc = $2;
1114 }
1115
1116 $ENV{"CCC_CC"} = $cc;
1117 next;
1118 }
1119
Ted Kremenek7cba1122008-09-22 01:35:58 +00001120 if ($arg =~ /^--use-c\+\+(=(.+))?$/) {
Ted Kremenek386c6932008-09-03 17:59:35 +00001121 shift @ARGV;
1122
Ted Kremenek278a5512009-05-12 18:04:43 +00001123 if (!defined $2 || $2 eq "") {
Ted Kremenek386c6932008-09-03 17:59:35 +00001124 if (!@ARGV) {
1125 DieDiag("'--use-c++' option requires a compiler executable name.\n");
1126 }
1127 $CXX = shift @ARGV;
1128 }
1129 else {
1130 $CXX = $2;
1131 }
1132 next;
1133 }
1134
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001135 if ($arg eq "-v") {
1136 shift @ARGV;
1137 $Verbose++;
1138 next;
1139 }
1140
Ted Kremenek7f8a3252008-04-02 18:42:49 +00001141 if ($arg eq "-V" or $arg eq "--view") {
1142 shift @ARGV;
1143 $ViewResults = 1;
1144 next;
1145 }
1146
Ted Kremenek363dc3f2008-07-15 22:03:09 +00001147 if ($arg eq "--status-bugs") {
1148 shift @ARGV;
1149 $ExitStatusFoundBugs = 1;
1150 next;
1151 }
Zhongxing Xu07c37672008-10-27 14:26:32 +00001152
1153 if ($arg eq "-store") {
1154 shift @ARGV;
Ted Kremenekbe1fe1e2009-02-17 04:27:41 +00001155 $StoreModel = shift @ARGV;
1156 next;
1157 }
1158
1159 if ($arg eq "-constraints") {
1160 shift @ARGV;
1161 $ConstraintsModel = shift @ARGV;
Zhongxing Xu07c37672008-10-27 14:26:32 +00001162 next;
1163 }
Ted Kremenek363dc3f2008-07-15 22:03:09 +00001164
Ted Kremenekdb4f5f22008-11-04 00:02:53 +00001165 if ($arg eq "-plist") {
1166 shift @ARGV;
1167 $OutputFormat = "plist";
1168 next;
1169 }
1170
Ted Kremenek23cfca32008-06-16 22:40:14 +00001171 DieDiag("unrecognized option '$arg'\n") if ($arg =~ /^-/);
Ted Kremenek0062ad42008-04-02 16:35:01 +00001172
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001173 last;
1174}
1175
1176if (!@ARGV) {
Ted Kremenek23cfca32008-06-16 22:40:14 +00001177 Diag("No build command specified.\n\n");
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001178 DisplayHelp();
Sam Bishopa0e22662008-04-02 03:35:43 +00001179 exit 1;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001180}
1181
Ted Kremenek7cba1122008-09-22 01:35:58 +00001182$CmdArgs = HtmlEscape(join(' ', map(ShellEscape($_), @ARGV)));
1183$HtmlTitle = "${CurrentDirSuffix} - scan-build results"
1184 unless (defined($HtmlTitle));
Ted Kremenek386c6932008-09-03 17:59:35 +00001185
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001186# Determine the output directory for the HTML reports.
Ted Kremenek684bb092008-04-18 15:18:20 +00001187my $BaseDir = $HtmlDir;
Sam Bishopa0e22662008-04-02 03:35:43 +00001188$HtmlDir = GetHTMLRunDir($HtmlDir);
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001189
1190# Set the appropriate environment variables.
Sam Bishopa0e22662008-04-02 03:35:43 +00001191SetHtmlEnv(\@ARGV, $HtmlDir);
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001192
Ted Kremenek91ea79d2009-03-24 05:30:14 +00001193my $Cmd = Cwd::realpath("$RealBin/libexec/ccc-analyzer");
Ted Kremenekce87b922009-02-25 22:54:02 +00001194if (!defined $Cmd || ! -x $Cmd) {
1195 $Cmd = Cwd::realpath("$RealBin/ccc-analyzer");
Ted Kremenek6b896362009-02-27 06:17:05 +00001196 DieDiag("Executable 'ccc-analyzer' does not exist at '$Cmd'\n") if(! -x $Cmd);
Ted Kremenekce87b922009-02-25 22:54:02 +00001197}
Ted Kremenekf22eacb2008-04-18 22:00:56 +00001198
Ted Kremenekfd9df0e2009-05-09 19:19:28 +00001199if (!defined $ClangCCSB || ! -x $ClangCCSB) {
Ted Kremenek91ea79d2009-03-24 05:30:14 +00001200 Diag("'clang-cc' executable not found in '$RealBin/libexec'.\n");
Ted Kremenek318e6a62009-03-24 04:29:13 +00001201 Diag("Using 'clang-cc' from path.\n");
Ted Kremenekf22eacb2008-04-18 22:00:56 +00001202}
Ted Kremenekfd9df0e2009-05-09 19:19:28 +00001203if (!defined $ClangSB || ! -x $ClangSB) {
1204 Diag("'clang' executable not found in '$RealBin/bin'.\n");
1205 Diag("Using 'clang' from path.\n");
1206}
Ted Kremenek0b6c1532008-04-08 20:22:12 +00001207
Ted Kremenek95aa1052008-09-04 17:52:41 +00001208if (defined $CXX) {
1209 $ENV{'CXX'} = $CXX;
1210}
1211else {
1212 $CXX = 'g++'; # This variable is used by other parts of scan-build
1213 # that need to know a default C++ compiler to fall back to.
1214}
1215
Ted Kremenek4f4b17d2008-04-03 20:08:18 +00001216$ENV{'CC'} = $Cmd;
Ted Kremenekfd9df0e2009-05-09 19:19:28 +00001217$ENV{'CLANG_CC'} = $ClangCC;
Ted Kremenekf22eacb2008-04-18 22:00:56 +00001218$ENV{'CLANG'} = $Clang;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001219
1220if ($Verbose >= 2) {
1221 $ENV{'CCC_ANALYZER_VERBOSE'} = 1;
1222}
1223
Ted Kremeneka9525c92008-05-12 22:07:14 +00001224if ($Verbose >= 3) {
1225 $ENV{'CCC_ANALYZER_LOG'} = 1;
1226}
1227
Ted Kremenek90125992008-07-15 23:41:32 +00001228if (scalar(@AnalysesToRun) == 0) {
1229 foreach my $key (keys %AnalysesDefaultEnabled) {
1230 push @AnalysesToRun,$key;
1231 }
Ted Kremenek01006782008-07-02 23:16:10 +00001232}
Ted Kremenek1262fc42008-05-14 20:10:33 +00001233
Ted Kremeneke15fa272008-10-13 21:46:42 +00001234if ($AnalyzeHeaders) {
1235 push @AnalysesToRun,"-analyzer-opt-analyze-headers";
1236}
1237
Ted Kremenek90125992008-07-15 23:41:32 +00001238$ENV{'CCC_ANALYZER_ANALYSIS'} = join ' ',@AnalysesToRun;
1239
Zhongxing Xu3cab2b12008-11-02 10:58:16 +00001240if (defined $StoreModel) {
Zhongxing Xu07c37672008-10-27 14:26:32 +00001241 $ENV{'CCC_ANALYZER_STORE_MODEL'} = $StoreModel;
1242}
1243
Ted Kremenekbe1fe1e2009-02-17 04:27:41 +00001244if (defined $ConstraintsModel) {
1245 $ENV{'CCC_ANALYZER_CONSTRAINTS_MODEL'} = $ConstraintsModel;
1246}
1247
Ted Kremenekdb4f5f22008-11-04 00:02:53 +00001248if (defined $OutputFormat) {
1249 $ENV{'CCC_ANALYZER_OUTPUT_FORMAT'} = $OutputFormat;
1250}
1251
1252
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001253# Run the build.
Ted Kremenek5656a982008-07-15 17:09:28 +00001254my $ExitStatus = RunBuildCommand(\@ARGV, $IgnoreErrors, $Cmd);
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001255
Ted Kremenek655aba72008-11-04 00:22:12 +00001256if (defined $OutputFormat and $OutputFormat eq "plist") {
Ted Kremenek50534dc2008-09-22 17:38:23 +00001257 Diag "Analysis run complete.\n";
Ted Kremenekdb4f5f22008-11-04 00:02:53 +00001258 Diag "Analysis results (plist files) deposited in '$HtmlDir'\n";
Ted Kremenek7f8a3252008-04-02 18:42:49 +00001259}
Ted Kremenekdb4f5f22008-11-04 00:02:53 +00001260else {
1261 # Postprocess the HTML directory.
1262 my $NumBugs = Postprocess($HtmlDir, $BaseDir);
Ted Kremenek5656a982008-07-15 17:09:28 +00001263
Ted Kremenekdb4f5f22008-11-04 00:02:53 +00001264 if ($ViewResults and -r "$HtmlDir/index.html") {
1265 Diag "Analysis run complete.\n";
1266 Diag "Viewing analysis results in '$HtmlDir' using scan-view.\n";
1267 my $ScanView = Cwd::realpath("$RealBin/scan-view");
1268 if (! -x $ScanView) { $ScanView = "scan-view"; }
1269 exec $ScanView, "$HtmlDir";
1270 }
1271
1272 if ($ExitStatusFoundBugs) {
1273 exit 1 if ($NumBugs > 0);
1274 exit 0;
1275 }
Ted Kremenek363dc3f2008-07-15 22:03:09 +00001276}
1277
Ted Kremenek5656a982008-07-15 17:09:28 +00001278exit $ExitStatus;
1279