blob: 44f0cbc64177c85ca1373d00ef5c9da76f102527 [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;
62 Diag ("The analyzer crashed on some source files.\n");
Ted Kremenek386c6932008-09-03 17:59:35 +000063 Diag ("Preprocessed versions of crashed files were deposited in '$Dir/crashes'.\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 Kremeneke15fa272008-10-13 21:46:42 +000084my $ClangSB = Cwd::realpath("$RealBin/clang");
Ted Kremenekb7770c02008-07-15 17:06:13 +000085my $Clang = $ClangSB;
86
87if (! -x $ClangSB) {
88 $Clang = "clang";
89}
90
91my %AvailableAnalyses;
92
93# Query clang for analysis options.
Ted Kremenek63c20172008-08-04 17:34:06 +000094open(PIPE, "-|", $Clang, "--help") or
Ted Kremenek445fa772008-10-10 00:17:08 +000095 DieDiag("Cannot execute '$Clang'\n");
Ted Kremenek63c20172008-08-04 17:34:06 +000096
Ted Kremenekb7770c02008-07-15 17:06:13 +000097my $FoundAnalysis = 0;
98
99while(<PIPE>) {
100 if ($FoundAnalysis == 0) {
Ted Kremenekce1448b2008-10-24 15:11:58 +0000101 if (/SCA Checks\/Analyses/) {
Ted Kremenekb7770c02008-07-15 17:06:13 +0000102 $FoundAnalysis = 1;
103 }
Ted Kremenek991c54b2008-08-08 20:46:42 +0000104
Ted Kremenekb7770c02008-07-15 17:06:13 +0000105 next;
106 }
107
108 if (/^\s\s\s\s([^\s]+)\s(.+)$/) {
109 next if ($1 =~ /-dump/ or $1 =~ /-view/
110 or $1 =~ /-checker-simple/ or $1 =~ /-warn-uninit/);
111
112 $AvailableAnalyses{$1} = $2;
113 next;
114 }
115
116 last;
117}
118
119close (PIPE);
120
121my %AnalysesDefaultEnabled = (
122 '-warn-dead-stores' => 1,
123 '-checker-cfref' => 1,
Ted Kremenek90125992008-07-15 23:41:32 +0000124 '-warn-objc-methodsigs' => 1,
Ted Kremenekbde3a052008-07-25 20:35:01 +0000125 '-warn-objc-missing-dealloc' => 1,
Ted Kremenek5d443492008-09-18 06:34:16 +0000126 '-warn-objc-unused-ivars' => 1,
Ted Kremenekb7770c02008-07-15 17:06:13 +0000127);
128
129##----------------------------------------------------------------------------##
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000130# GetHTMLRunDir - Construct an HTML directory name for the current sub-run.
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000131##----------------------------------------------------------------------------##
132
Sam Bishopa0e22662008-04-02 03:35:43 +0000133sub GetHTMLRunDir {
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000134
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000135 die "Not enough arguments." if (@_ == 0);
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000136 my $Dir = shift @_;
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000137
138 my $TmpMode = 0;
139 if (!defined $Dir) {
Ted Kremenekffda0b42008-10-31 05:48:42 +0000140 if (`uname` =~ /Darwin/) {
141 $Dir = $ENV{'TMPDIR'};
142 if (!defined $Dir) { $Dir = "/tmp"; }
143 }
144 else {
145 $Dir = "/tmp";
146 }
147
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000148 $TmpMode = 1;
149 }
150
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000151 # Get current date and time.
152
153 my @CurrentTime = localtime();
154
155 my $year = $CurrentTime[5] + 1900;
156 my $day = $CurrentTime[3];
157 my $month = $CurrentTime[4] + 1;
158
Ted Kremenek9d7405f2008-05-14 17:23:56 +0000159 my $DateString = sprintf("%d-%02d-%02d", $year, $month, $day);
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000160
161 # Determine the run number.
162
163 my $RunNumber;
164
165 if (-d $Dir) {
166
167 if (! -r $Dir) {
Ted Kremenek23cfca32008-06-16 22:40:14 +0000168 DieDiag("directory '$Dir' exists but is not readable.\n");
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000169 }
170
171 # Iterate over all files in the specified directory.
172
173 my $max = 0;
174
175 opendir(DIR, $Dir);
Ted Kremenek29da6c52008-08-07 17:57:34 +0000176 my @FILES = grep { -d "$Dir/$_" } readdir(DIR);
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000177 closedir(DIR);
178
179 foreach my $f (@FILES) {
180
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000181 # Strip the prefix '$Prog-' if we are dumping files to /tmp.
182 if ($TmpMode) {
183 next if (!($f =~ /^$Prog-(.+)/));
184 $f = $1;
185 }
186
Ted Kremenekebb74132008-09-21 06:58:09 +0000187
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000188 my @x = split/-/, $f;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000189 next if (scalar(@x) != 4);
190 next if ($x[0] != $year);
191 next if ($x[1] != $month);
192 next if ($x[2] != $day);
193
194 if ($x[3] > $max) {
195 $max = $x[3];
196 }
197 }
198
199 $RunNumber = $max + 1;
200 }
201 else {
202
203 if (-x $Dir) {
Ted Kremenek23cfca32008-06-16 22:40:14 +0000204 DieDiag("'$Dir' exists but is not a directory.\n");
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000205 }
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000206
207 if ($TmpMode) {
Ted Kremenek445fa772008-10-10 00:17:08 +0000208 DieDiag("The directory '/tmp' does not exist or cannot be accessed.\n");
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000209 }
210
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000211 # $Dir does not exist. It will be automatically created by the
212 # clang driver. Set the run number to 1.
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000213
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000214 $RunNumber = 1;
215 }
216
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000217 die "RunNumber must be defined!" if (!defined $RunNumber);
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000218
219 # Append the run number.
Ted Kremenekfc0898a2008-09-04 23:56:36 +0000220 my $NewDir;
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000221 if ($TmpMode) {
Ted Kremenekfc0898a2008-09-04 23:56:36 +0000222 $NewDir = "$Dir/$Prog-$DateString-$RunNumber";
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000223 }
224 else {
Ted Kremenekfc0898a2008-09-04 23:56:36 +0000225 $NewDir = "$Dir/$DateString-$RunNumber";
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000226 }
Ted Kremenekfc0898a2008-09-04 23:56:36 +0000227 system 'mkdir','-p',$NewDir;
228 return $NewDir;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000229}
230
Sam Bishopa0e22662008-04-02 03:35:43 +0000231sub SetHtmlEnv {
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000232
233 die "Wrong number of arguments." if (scalar(@_) != 2);
234
235 my $Args = shift;
236 my $Dir = shift;
237
238 die "No build command." if (scalar(@$Args) == 0);
239
240 my $Cmd = $$Args[0];
241
242 if ($Cmd =~ /configure/) {
243 return;
244 }
245
246 if ($Verbose) {
Ted Kremenek23cfca32008-06-16 22:40:14 +0000247 Diag("Emitting reports for this run to '$Dir'.\n");
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000248 }
249
250 $ENV{'CCC_ANALYZER_HTML'} = $Dir;
251}
252
253##----------------------------------------------------------------------------##
Ted Kremenek57cf4462008-04-18 15:09:30 +0000254# ComputeDigest - Compute a digest of the specified file.
255##----------------------------------------------------------------------------##
256
257sub ComputeDigest {
258 my $FName = shift;
Ted Kremenek23cfca32008-06-16 22:40:14 +0000259 DieDiag("Cannot read $FName to compute Digest.\n") if (! -r $FName);
Ted Kremeneka6e24812008-04-19 18:05:48 +0000260
261 # Use Digest::MD5. We don't have to be cryptographically secure. We're
Ted Kremenek7ea02e62008-04-19 18:07:44 +0000262 # just looking for duplicate files that come from a non-malicious source.
263 # We use Digest::MD5 because it is a standard Perl module that should
Ted Kremenek63c20172008-08-04 17:34:06 +0000264 # come bundled on most systems.
Ted Kremenek23cfca32008-06-16 22:40:14 +0000265 open(FILE, $FName) or DieDiag("Cannot open $FName when computing Digest.\n");
Ted Kremeneka6e24812008-04-19 18:05:48 +0000266 binmode FILE;
267 my $Result = Digest::MD5->new->addfile(*FILE)->hexdigest;
268 close(FILE);
269
Ted Kremenek63c20172008-08-04 17:34:06 +0000270 # Return the digest.
Ted Kremeneka6e24812008-04-19 18:05:48 +0000271 return $Result;
Ted Kremenek57cf4462008-04-18 15:09:30 +0000272}
273
274##----------------------------------------------------------------------------##
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000275# UpdatePrefix - Compute the common prefix of files.
276##----------------------------------------------------------------------------##
277
278my $Prefix;
279
280sub UpdatePrefix {
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000281 my $x = shift;
282 my $y = basename($x);
283 $x =~ s/\Q$y\E$//;
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000284
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000285 if (!defined $Prefix) {
286 $Prefix = $x;
287 return;
288 }
289
Ted Kremenek20b2bae2008-09-11 21:15:10 +0000290 chop $Prefix while (!($x =~ /^\Q$Prefix/));
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000291}
292
293sub GetPrefix {
294 return $Prefix;
295}
296
297##----------------------------------------------------------------------------##
298# UpdateInFilePath - Update the path in the report file.
299##----------------------------------------------------------------------------##
300
301sub UpdateInFilePath {
302 my $fname = shift;
303 my $regex = shift;
304 my $newtext = shift;
Ted Kremenek63c20172008-08-04 17:34:06 +0000305
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000306 open (RIN, $fname) or die "cannot open $fname";
Ted Kremenek63c20172008-08-04 17:34:06 +0000307 open (ROUT, ">", "$fname.tmp") or die "cannot open $fname.tmp";
308
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000309 while (<RIN>) {
310 s/$regex/$newtext/;
311 print ROUT $_;
312 }
Ted Kremenek63c20172008-08-04 17:34:06 +0000313
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000314 close (ROUT);
315 close (RIN);
Ted Kremenek20161e92008-07-15 20:18:21 +0000316 system("mv", "$fname.tmp", $fname);
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000317}
318
319##----------------------------------------------------------------------------##
Ted Kremenek5744dc22008-04-02 18:03:36 +0000320# ScanFile - Scan a report file for various identifying attributes.
321##----------------------------------------------------------------------------##
322
Ted Kremenek57cf4462008-04-18 15:09:30 +0000323# Sometimes a source file is scanned more than once, and thus produces
324# multiple error reports. We use a cache to solve this problem.
325
326my %AlreadyScanned;
327
Ted Kremenek5744dc22008-04-02 18:03:36 +0000328sub ScanFile {
329
330 my $Index = shift;
331 my $Dir = shift;
332 my $FName = shift;
333
Ted Kremenek57cf4462008-04-18 15:09:30 +0000334 # Compute a digest for the report file. Determine if we have already
335 # scanned a file that looks just like it.
336
337 my $digest = ComputeDigest("$Dir/$FName");
338
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000339 if (defined $AlreadyScanned{$digest}) {
Ted Kremenek57cf4462008-04-18 15:09:30 +0000340 # Redundant file. Remove it.
Ted Kremenek20161e92008-07-15 20:18:21 +0000341 system ("rm", "-f", "$Dir/$FName");
Ted Kremenek57cf4462008-04-18 15:09:30 +0000342 return;
343 }
344
345 $AlreadyScanned{$digest} = 1;
346
Ted Kremenek809709f2008-04-18 16:58:34 +0000347 # At this point the report file is not world readable. Make it happen.
Ted Kremenek20161e92008-07-15 20:18:21 +0000348 system ("chmod", "644", "$Dir/$FName");
Ted Kremenek684bb092008-04-18 15:18:20 +0000349
350 # Scan the report file for tags.
Ted Kremenek23cfca32008-06-16 22:40:14 +0000351 open(IN, "$Dir/$FName") or DieDiag("Cannot open '$Dir/$FName'\n");
Ted Kremenek5744dc22008-04-02 18:03:36 +0000352
353 my $BugDesc = "";
Ted Kremenek22d6a632008-04-02 20:43:36 +0000354 my $BugFile = "";
Ted Kremenekebb74132008-09-21 06:58:09 +0000355 my $BugCategory;
Ted Kremenek22d6a632008-04-02 20:43:36 +0000356 my $BugPathLength = 1;
357 my $BugLine = 0;
Ted Kremenekebb74132008-09-21 06:58:09 +0000358 my $found = 0;
359
Ted Kremenek5744dc22008-04-02 18:03:36 +0000360 while (<IN>) {
Ted Kremenekebb74132008-09-21 06:58:09 +0000361
362 last if ($found == 5);
363
Ted Kremenek5744dc22008-04-02 18:03:36 +0000364 if (/<!-- BUGDESC (.*) -->$/) {
365 $BugDesc = $1;
Ted Kremenekebb74132008-09-21 06:58:09 +0000366 ++$found;
Ted Kremenek5744dc22008-04-02 18:03:36 +0000367 }
Ted Kremenek22d6a632008-04-02 20:43:36 +0000368 elsif (/<!-- BUGFILE (.*) -->$/) {
Ted Kremenek990c2f42008-12-03 19:19:23 +0000369 $BugFile = abs_path($1);
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000370 UpdatePrefix($BugFile);
Ted Kremenekebb74132008-09-21 06:58:09 +0000371 ++$found;
Ted Kremenek22d6a632008-04-02 20:43:36 +0000372 }
373 elsif (/<!-- BUGPATHLENGTH (.*) -->$/) {
374 $BugPathLength = $1;
Ted Kremenekebb74132008-09-21 06:58:09 +0000375 ++$found;
Ted Kremenek22d6a632008-04-02 20:43:36 +0000376 }
377 elsif (/<!-- BUGLINE (.*) -->$/) {
378 $BugLine = $1;
Ted Kremenekebb74132008-09-21 06:58:09 +0000379 ++$found;
380 }
381 elsif (/<!-- BUGCATEGORY (.*) -->$/) {
382 $BugCategory = $1;
383 ++$found;
Ted Kremenek22d6a632008-04-02 20:43:36 +0000384 }
Ted Kremenek5744dc22008-04-02 18:03:36 +0000385 }
386
387 close(IN);
Ted Kremenekebb74132008-09-21 06:58:09 +0000388
389 if (!defined $BugCategory) {
390 $BugCategory = "Other";
391 }
Ted Kremenek5744dc22008-04-02 18:03:36 +0000392
Ted Kremenek81983112008-09-28 04:13:09 +0000393 push @$Index,[ $FName, $BugCategory, $BugDesc, $BugFile, $BugLine,
394 $BugPathLength ];
Ted Kremenek22d6a632008-04-02 20:43:36 +0000395}
396
397##----------------------------------------------------------------------------##
Ted Kremenek3ce12072008-09-22 17:50:47 +0000398# CopyFiles - Copy resource files to target directory.
Ted Kremenek22d6a632008-04-02 20:43:36 +0000399##----------------------------------------------------------------------------##
400
Ted Kremenek3ce12072008-09-22 17:50:47 +0000401sub CopyFiles {
Ted Kremenek22d6a632008-04-02 20:43:36 +0000402
403 my $Dir = shift;
Ted Kremeneke15fa272008-10-13 21:46:42 +0000404
405 my $JS = Cwd::realpath("$RealBin/sorttable.js");
Ted Kremenek22d6a632008-04-02 20:43:36 +0000406
Ted Kremenek23cfca32008-06-16 22:40:14 +0000407 DieDiag("Cannot find 'sorttable.js'.\n")
Ted Kremeneke15fa272008-10-13 21:46:42 +0000408 if (! -r $JS);
Ted Kremenek22d6a632008-04-02 20:43:36 +0000409
Ted Kremeneke15fa272008-10-13 21:46:42 +0000410 system ("cp", $JS, "$Dir");
Ted Kremenek22d6a632008-04-02 20:43:36 +0000411
Ted Kremenek23cfca32008-06-16 22:40:14 +0000412 DieDiag("Could not copy 'sorttable.js' to '$Dir'.\n")
Ted Kremenek22d6a632008-04-02 20:43:36 +0000413 if (! -r "$Dir/sorttable.js");
Ted Kremenek3ce12072008-09-22 17:50:47 +0000414
Ted Kremeneke15fa272008-10-13 21:46:42 +0000415 my $CSS = Cwd::realpath("$RealBin/scanview.css");
416
Ted Kremenek3ce12072008-09-22 17:50:47 +0000417 DieDiag("Cannot find 'scanview.css'.\n")
Ted Kremeneke15fa272008-10-13 21:46:42 +0000418 if (! -r $CSS);
Ted Kremenek3ce12072008-09-22 17:50:47 +0000419
Ted Kremeneke15fa272008-10-13 21:46:42 +0000420 system ("cp", $CSS, "$Dir");
Ted Kremenek3ce12072008-09-22 17:50:47 +0000421
422 DieDiag("Could not copy 'scanview.css' to '$Dir'.\n")
Ted Kremeneke15fa272008-10-13 21:46:42 +0000423 if (! -r $CSS);
Ted Kremenek5744dc22008-04-02 18:03:36 +0000424}
425
426##----------------------------------------------------------------------------##
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000427# Postprocess - Postprocess the results of an analysis scan.
428##----------------------------------------------------------------------------##
429
Sam Bishopa0e22662008-04-02 03:35:43 +0000430sub Postprocess {
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000431
432 my $Dir = shift;
Ted Kremenek684bb092008-04-18 15:18:20 +0000433 my $BaseDir = shift;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000434
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000435 die "No directory specified." if (!defined $Dir);
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000436
437 if (! -d $Dir) {
Ted Kremenek23cfca32008-06-16 22:40:14 +0000438 Diag("No bugs found.\n");
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000439 return 0;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000440 }
441
442 opendir(DIR, $Dir);
Ted Kremenek991c54b2008-08-08 20:46:42 +0000443 my $Crashes = 0;
444 my @files = grep { if ($_ eq "crashes") { $Crashes++; }
445 /^report-.*\.html$/; } readdir(DIR);
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000446 closedir(DIR);
447
Ted Kremenek991c54b2008-08-08 20:46:42 +0000448 if (scalar(@files) == 0 and $Crashes == 0) {
Ted Kremenek23cfca32008-06-16 22:40:14 +0000449 Diag("Removing directory '$Dir' because it contains no reports.\n");
Ted Kremenek20161e92008-07-15 20:18:21 +0000450 system ("rm", "-fR", $Dir);
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000451 return 0;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000452 }
Ted Kremenek5744dc22008-04-02 18:03:36 +0000453
Ted Kremenek991c54b2008-08-08 20:46:42 +0000454 # Scan each report file and build an index.
455 my @Index;
Ted Kremenek5744dc22008-04-02 18:03:36 +0000456 foreach my $file (@files) { ScanFile(\@Index, $Dir, $file); }
457
Ted Kremenekd52e4252008-08-25 20:45:07 +0000458 # Scan the crashes directory and use the information in the .info files
459 # to update the common prefix directory.
460 if (-d "$Dir/crashes") {
461 opendir(DIR, "$Dir/crashes");
Ted Kremenek82a12532008-09-25 00:25:16 +0000462 my @files = grep { /[.]info.txt$/; } readdir(DIR);
Ted Kremenekd52e4252008-08-25 20:45:07 +0000463 closedir(DIR);
464 foreach my $file (@files) {
465 open IN, "$Dir/crashes/$file" or DieDiag("cannot open $file\n");
466 my $Path = <IN>;
467 if (defined $Path) { UpdatePrefix($Path); }
468 close IN;
469 }
470 }
471
Ted Kremenek63c20172008-08-04 17:34:06 +0000472 # Generate an index.html file.
473 my $FName = "$Dir/index.html";
474 open(OUT, ">", $FName) or DieDiag("Cannot create file '$FName'\n");
Ted Kremenek5744dc22008-04-02 18:03:36 +0000475
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000476 # Print out the header.
477
Ted Kremenek5744dc22008-04-02 18:03:36 +0000478print OUT <<ENDTEXT;
479<html>
480<head>
Ted Kremenek7cba1122008-09-22 01:35:58 +0000481<title>${HtmlTitle}</title>
Ted Kremenekf1435452008-09-23 22:34:51 +0000482<link type="text/css" rel="stylesheet" href="scanview.css"/>
Ted Kremenek22d6a632008-04-02 20:43:36 +0000483<script src="sorttable.js"></script>
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000484<script language='javascript' type="text/javascript">
485function SetDisplay(RowClass, DisplayVal)
486{
487 var Rows = document.getElementsByTagName("tr");
488 for ( var i = 0 ; i < Rows.length; ++i ) {
489 if (Rows[i].className == RowClass) {
490 Rows[i].style.display = DisplayVal;
491 }
492 }
493}
Ted Kremenekebb74132008-09-21 06:58:09 +0000494
Ted Kremenek2350a462008-10-28 19:56:52 +0000495function CopyCheckedStateToCheckButtons(SummaryCheckButton) {
496 var Inputs = document.getElementsByTagName("input");
497 for ( var i = 0 ; i < Inputs.length; ++i ) {
498 if (Inputs[i].type == "checkbox") {
499 if(Inputs[i] != SummaryCheckButton) {
500 Inputs[i].checked = SummaryCheckButton.checked;
501 Inputs[i].onclick();
502 }
503 }
504 }
505}
506
Ted Kremenek999e1202008-10-28 20:09:57 +0000507function returnObjById( id ) {
508 if (document.getElementById)
509 var returnVar = document.getElementById(id);
510 else if (document.all)
511 var returnVar = document.all[id];
512 else if (document.layers)
513 var returnVar = document.layers[id];
514 return returnVar;
515}
516
517var NumUnchecked = 0;
518
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000519function ToggleDisplay(CheckButton, ClassName) {
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000520 if (CheckButton.checked) {
521 SetDisplay(ClassName, "");
Ted Kremenek999e1202008-10-28 20:09:57 +0000522 if (--NumUnchecked == 0) {
523 returnObjById("AllBugsCheck").checked = true;
524 }
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000525 }
526 else {
527 SetDisplay(ClassName, "none");
Ted Kremenek999e1202008-10-28 20:09:57 +0000528 NumUnchecked++;
529 returnObjById("AllBugsCheck").checked = false;
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000530 }
531}
532</script>
Ted Kremenek1d1abb12008-09-22 17:52:58 +0000533<!-- SUMMARYENDHEAD -->
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000534</head>
535<body>
Ted Kremenek7cba1122008-09-22 01:35:58 +0000536<h1>${HtmlTitle}</h1>
537
538<table>
539<tr><th>User:</th><td>${UserName}\@${HostName}</td></tr>
540<tr><th>Working Directory:</th><td>${CurrentDir}</td></tr>
541<tr><th>Command Line:</th><td>${CmdArgs}</td></tr>
542<tr><th>Date:</th><td>${Date}</td></tr>
543ENDTEXT
544
545print OUT "<tr><th>Version:</th><td>${BuildName} (${BuildDate})</td></tr>\n"
546 if (defined($BuildName) && defined($BuildDate));
547
548print OUT <<ENDTEXT;
549</table>
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000550ENDTEXT
551
Ted Kremenek991c54b2008-08-08 20:46:42 +0000552 if (scalar(@files)) {
553 # Print out the summary table.
554 my %Totals;
Ted Kremenekebb74132008-09-21 06:58:09 +0000555
Ted Kremenek991c54b2008-08-08 20:46:42 +0000556 for my $row ( @Index ) {
Ted Kremenekebb74132008-09-21 06:58:09 +0000557 my $bug_type = ($row->[2]);
558 my $bug_category = ($row->[1]);
559 my $key = "$bug_category:$bug_type";
560
561 if (!defined $Totals{$key}) { $Totals{$key} = [1,$bug_category,$bug_type]; }
562 else { $Totals{$key}->[0]++; }
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000563 }
Ted Kremenek991c54b2008-08-08 20:46:42 +0000564
Ted Kremenek7cba1122008-09-22 01:35:58 +0000565 print OUT "<h2>Bug Summary</h2>";
Ted Kremenek991c54b2008-08-08 20:46:42 +0000566
567 if (defined $BuildName) {
568 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 +0000569 }
Ted Kremenekf4cdf412008-05-23 18:17:05 +0000570
Ted Kremenek2350a462008-10-28 19:56:52 +0000571
572 my $TotalBugs = scalar(@Index);
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000573print OUT <<ENDTEXT;
Ted Kremenekebb74132008-09-21 06:58:09 +0000574<table>
575<thead><tr><td>Bug Type</td><td>Quantity</td><td class="sorttable_nosort">Display?</td></tr></thead>
Ted Kremenek999e1202008-10-28 20:09:57 +0000576<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 +0000577ENDTEXT
578
Ted Kremenekebb74132008-09-21 06:58:09 +0000579 my $last_category;
580
581 for my $key (
582 sort {
583 my $x = $Totals{$a};
584 my $y = $Totals{$b};
585 my $res = $x->[1] cmp $y->[1];
586 $res = $x->[2] cmp $y->[2] if ($res == 0);
587 $res
588 } keys %Totals )
589 {
590 my $val = $Totals{$key};
591 my $category = $val->[1];
592 if (!defined $last_category or $last_category ne $category) {
593 $last_category = $category;
594 print OUT "<tr><th>$category</th><th colspan=2></th></tr>\n";
595 }
596 my $x = lc $key;
597 $x =~ s/[ ,'":\/()]+/_/g;
598 print OUT "<tr><td class=\"SUMM_DESC\">";
599 print OUT $val->[2];
Ted Kremenek2350a462008-10-28 19:56:52 +0000600 print OUT "</td><td class=\"Q\">";
Ted Kremenekebb74132008-09-21 06:58:09 +0000601 print OUT $val->[0];
602 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 +0000603 }
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000604
605 # Print out the table of errors.
606
607print OUT <<ENDTEXT;
608</table>
Ted Kremenek7cba1122008-09-22 01:35:58 +0000609<h2>Reports</h2>
Ted Kremenekebb74132008-09-21 06:58:09 +0000610
611<table class="sortable" style="table-layout:automatic">
612<thead><tr>
613 <td>Bug Group</td>
614 <td class="sorttable_sorted">Bug Type<span id="sorttable_sortfwdind">&nbsp;&#x25BE;</span></td>
Ted Kremenekbba1cf52008-04-03 05:50:51 +0000615 <td>File</td>
Ted Kremenekebb74132008-09-21 06:58:09 +0000616 <td class="Q">Line</td>
Ted Kremenek81983112008-09-28 04:13:09 +0000617 <td class="Q">Path Length</td>
Ted Kremenek2645c772008-07-07 16:58:44 +0000618 <td class="sorttable_nosort"></td>
Ted Kremenekebb74132008-09-21 06:58:09 +0000619 <!-- REPORTBUGCOL -->
620</tr></thead>
621<tbody>
Ted Kremenek5744dc22008-04-02 18:03:36 +0000622ENDTEXT
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000623
Ted Kremenek991c54b2008-08-08 20:46:42 +0000624 my $prefix = GetPrefix();
625 my $regex;
626 my $InFileRegex;
627 my $InFilePrefix = "File:</td><td>";
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000628
Ted Kremenek991c54b2008-08-08 20:46:42 +0000629 if (defined $prefix) {
630 $regex = qr/^\Q$prefix\E/is;
631 $InFileRegex = qr/\Q$InFilePrefix$prefix\E/is;
632 }
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000633
Ted Kremenekebb74132008-09-21 06:58:09 +0000634 for my $row ( sort { $a->[2] cmp $b->[2] } @Index ) {
635 my $x = "$row->[1]:$row->[2]";
636 $x = lc $x;
637 $x =~ s/[ ,'":\/()]+/_/g;
Ted Kremenek5744dc22008-04-02 18:03:36 +0000638
Ted Kremenek991c54b2008-08-08 20:46:42 +0000639 my $ReportFile = $row->[0];
Ted Kremenekebb74132008-09-21 06:58:09 +0000640
641 print OUT "<tr class=\"bt_$x\">";
642 print OUT "<td class=\"DESC\">";
Ted Kremenek991c54b2008-08-08 20:46:42 +0000643 print OUT $row->[1];
Ted Kremenekebb74132008-09-21 06:58:09 +0000644 print OUT "</td>";
645 print OUT "<td class=\"DESC\">";
646 print OUT $row->[2];
647 print OUT "</td>";
648
649 # Update the file prefix.
650 my $fname = $row->[3];
Ted Kremenekebb74132008-09-21 06:58:09 +0000651
Ted Kremenek991c54b2008-08-08 20:46:42 +0000652 if (defined $regex) {
653 $fname =~ s/$regex//;
654 UpdateInFilePath("$Dir/$ReportFile", $InFileRegex, $InFilePrefix)
655 }
Ted Kremenekebb74132008-09-21 06:58:09 +0000656
Ted Kremenek91639ef2008-09-22 17:42:31 +0000657 print OUT "<td>";
Ted Kremenekebb74132008-09-21 06:58:09 +0000658 my @fname = split /\//,$fname;
659 if ($#fname > 0) {
660 while ($#fname >= 0) {
661 my $x = shift @fname;
662 print OUT $x;
663 if ($#fname >= 0) {
664 print OUT "<span class=\"W\"> </span>/";
665 }
666 }
667 }
668 else {
669 print OUT $fname;
Ted Kremenek91639ef2008-09-22 17:42:31 +0000670 }
Ted Kremenekebb74132008-09-21 06:58:09 +0000671 print OUT "</td>";
672
673 # Print out the quantities.
Ted Kremenek81983112008-09-28 04:13:09 +0000674 for my $j ( 4 .. 5 ) {
Ted Kremenekebb74132008-09-21 06:58:09 +0000675 print OUT "<td class=\"Q\">$row->[$j]</td>";
676 }
677
Ted Kremenek991c54b2008-08-08 20:46:42 +0000678 # Print the rest of the columns.
Ted Kremenek81983112008-09-28 04:13:09 +0000679 for (my $j = 6; $j <= $#{$row}; ++$j) {
Ted Kremenekebb74132008-09-21 06:58:09 +0000680 print OUT "<td>$row->[$j]</td>"
Ted Kremenek991c54b2008-08-08 20:46:42 +0000681 }
Ted Kremenek7f8a3252008-04-02 18:42:49 +0000682
Ted Kremenek991c54b2008-08-08 20:46:42 +0000683 # Emit the "View" link.
Ted Kremenek68005dd2008-09-22 17:39:18 +0000684 print OUT "<td><a href=\"$ReportFile#EndPath\">View Report</a></td>";
Ted Kremenek3cea9ee2008-07-30 17:58:08 +0000685
Daniel Dunbare43038e2008-09-19 23:18:44 +0000686 # Emit REPORTBUG markers.
Ted Kremenekebb74132008-09-21 06:58:09 +0000687 print OUT "\n<!-- REPORTBUG id=\"$ReportFile\" -->\n";
Daniel Dunbare43038e2008-09-19 23:18:44 +0000688
Ted Kremenek991c54b2008-08-08 20:46:42 +0000689 # End the row.
690 print OUT "</tr>\n";
691 }
692
Ted Kremenekebb74132008-09-21 06:58:09 +0000693 print OUT "</tbody>\n</table>\n\n";
Ted Kremenek991c54b2008-08-08 20:46:42 +0000694 }
695
696 if ($Crashes) {
697 # Read the crash directory for files.
698 opendir(DIR, "$Dir/crashes");
Ted Kremenek82a12532008-09-25 00:25:16 +0000699 my @files = grep { /[.]info.txt$/ } readdir(DIR);
Ted Kremenek991c54b2008-08-08 20:46:42 +0000700 closedir(DIR);
701
702 if (scalar(@files)) {
703 print OUT <<ENDTEXT;
Ted Kremenek7cba1122008-09-22 01:35:58 +0000704<h2>Analyzer Failures</h2>
Ted Kremenek991c54b2008-08-08 20:46:42 +0000705
Ted Kremenek5d31f832008-08-18 18:38:29 +0000706<p>The analyzer had problems processing the following files:</p>
Ted Kremenek991c54b2008-08-08 20:46:42 +0000707
708<table>
Ted Kremenek9f9b1fd2008-09-12 22:49:36 +0000709<thead><tr><td>Problem</td><td>Source File</td><td>Preprocessed File</td><td>STDERR Output</td></tr></thead>
Ted Kremenek991c54b2008-08-08 20:46:42 +0000710ENDTEXT
711
712 foreach my $file (sort @files) {
Ted Kremenek82a12532008-09-25 00:25:16 +0000713 $file =~ /(.+).info.txt$/;
Ted Kremenek991c54b2008-08-08 20:46:42 +0000714 # Get the preprocessed file.
715 my $ppfile = $1;
716 # Open the info file and get the name of the source file.
717 open (INFO, "$Dir/crashes/$file") or
718 die "Cannot open $Dir/crashes/$file\n";
719 my $srcfile = <INFO>;
Ted Kremenek5d31f832008-08-18 18:38:29 +0000720 chomp $srcfile;
721 my $problem = <INFO>;
722 chomp $problem;
Ted Kremenek991c54b2008-08-08 20:46:42 +0000723 close (INFO);
724 # Print the information in the table.
Ted Kremenekd52e4252008-08-25 20:45:07 +0000725 my $prefix = GetPrefix();
Ted Kremenek9f9b1fd2008-09-12 22:49:36 +0000726 if (defined $prefix) { $srcfile =~ s/^\Q$prefix//; }
727 print OUT "<tr><td>$problem</td><td>$srcfile</td><td><a href=\"crashes/$ppfile\">$ppfile</a></td><td><a href=\"crashes/$ppfile.stderr.txt\">$ppfile.stderr.txt</a></td></tr>\n";
Daniel Dunbarce723ce2008-09-25 01:10:50 +0000728 my $ppfile_clang = $ppfile;
729 $ppfile_clang =~ s/[.](.+)$/.clang.$1/;
Daniel Dunbar7ebe0ed2008-09-25 06:05:31 +0000730 print OUT " <!-- REPORTPROBLEM src=\"$srcfile\" file=\"crashes/$ppfile\" clangfile=\"crashes/$ppfile_clang\" stderr=\"crashes/$ppfile.stderr.txt\" info=\"crashes/$ppfile.info.txt\" -->\n";
Ted Kremenek991c54b2008-08-08 20:46:42 +0000731 }
732
733 print OUT <<ENDTEXT;
734</table>
Daniel Dunbarce723ce2008-09-25 01:10:50 +0000735<p>Please consider submitting preprocessed files as <a href="http://clang.llvm.org/StaticAnalysisUsage.html#filingbugs">bug reports</a>. <!-- REPORTCRASHES --> </p>
Ted Kremenek991c54b2008-08-08 20:46:42 +0000736ENDTEXT
737 }
Ted Kremenek5744dc22008-04-02 18:03:36 +0000738 }
739
Ted Kremenek991c54b2008-08-08 20:46:42 +0000740 print OUT "</body></html>\n";
Ted Kremenek5744dc22008-04-02 18:03:36 +0000741 close(OUT);
Ted Kremenek3ce12072008-09-22 17:50:47 +0000742 CopyFiles($Dir);
Ted Kremenek20161e92008-07-15 20:18:21 +0000743
744 # Make sure $Dir and $BaseDir are world readable/executable.
745 system("chmod", "755", $Dir);
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000746 if (defined $BaseDir) { system("chmod", "755", $BaseDir); }
Ted Kremenek20161e92008-07-15 20:18:21 +0000747
Ted Kremenek23cfca32008-06-16 22:40:14 +0000748 my $Num = scalar(@Index);
Ted Kremenek150c2122008-07-11 19:15:05 +0000749 Diag("$Num bugs found.\n");
750 if ($Num > 0 && -r "$Dir/index.html") {
Ted Kremenek5950b3f2008-09-22 06:47:01 +0000751 Diag("Run 'scan-view $Dir' to examine bug reports.\n");
Ted Kremenek150c2122008-07-11 19:15:05 +0000752 }
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000753
Ted Kremenek991c54b2008-08-08 20:46:42 +0000754 DiagCrashes($Dir) if ($Crashes);
755
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000756 return $Num;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000757}
758
759##----------------------------------------------------------------------------##
Ted Kremenekdab11102008-04-02 04:43:42 +0000760# RunBuildCommand - Run the build command.
761##----------------------------------------------------------------------------##
762
Ted Kremenek6b628982008-04-30 23:47:12 +0000763sub AddIfNotPresent {
764 my $Args = shift;
765 my $Arg = shift;
766 my $found = 0;
767
768 foreach my $k (@$Args) {
769 if ($k eq $Arg) {
770 $found = 1;
771 last;
772 }
773 }
774
775 if ($found == 0) {
776 push @$Args, $Arg;
777 }
778}
779
Ted Kremenekdab11102008-04-02 04:43:42 +0000780sub RunBuildCommand {
781
782 my $Args = shift;
Ted Kremenek7442ca62008-04-02 16:04:51 +0000783 my $IgnoreErrors = shift;
Ted Kremenekdab11102008-04-02 04:43:42 +0000784 my $Cmd = $Args->[0];
Ted Kremenek6195c372008-06-02 21:52:47 +0000785 my $CCAnalyzer = shift;
Ted Kremenekdab11102008-04-02 04:43:42 +0000786
Ted Kremenek3301cb12008-06-30 18:18:16 +0000787 # Get only the part of the command after the last '/'.
788 if ($Cmd =~ /\/([^\/]+)$/) {
789 $Cmd = $1;
790 }
791
Ted Kremenek92548fe2008-11-19 01:46:21 +0000792 if ($Cmd =~ /(.*\/?gcc[^\/]*$)/ or
793 $Cmd =~ /(.*\/?cc[^\/]*$)/ or
794 $Cmd =~ /(.*\/?llvm-gcc[^\/]*$)/ or
795 $Cmd =~ /(.*\/?ccc-analyzer[^\/]*$)/) {
796
797 if (!($Cmd =~ /ccc-analyzer/) and !defined $ENV{"CCC_CC"}) {
798 $ENV{"CCC_CC"} = $1;
799 }
800
Ted Kremenekdab11102008-04-02 04:43:42 +0000801 shift @$Args;
Ted Kremenek6195c372008-06-02 21:52:47 +0000802 unshift @$Args, $CCAnalyzer;
Ted Kremenekdab11102008-04-02 04:43:42 +0000803 }
Ted Kremenek7442ca62008-04-02 16:04:51 +0000804 elsif ($IgnoreErrors) {
805 if ($Cmd eq "make" or $Cmd eq "gmake") {
Ted Kremenek6b628982008-04-30 23:47:12 +0000806 AddIfNotPresent($Args,"-k");
Ted Kremenek8912b542008-05-13 21:28:02 +0000807 AddIfNotPresent($Args,"-i");
Ted Kremenek7442ca62008-04-02 16:04:51 +0000808 }
809 elsif ($Cmd eq "xcodebuild") {
Ted Kremenek6b628982008-04-30 23:47:12 +0000810 AddIfNotPresent($Args,"-PBXBuildsContinueAfterErrors=YES");
Ted Kremenek7442ca62008-04-02 16:04:51 +0000811 }
Ted Kremenek6b628982008-04-30 23:47:12 +0000812 }
813
Ted Kremenek6b628982008-04-30 23:47:12 +0000814 if ($Cmd eq "xcodebuild") {
Ted Kremenekcfd4c7b2008-05-23 22:18:16 +0000815 # Disable distributed builds for xcodebuild.
Ted Kremenek6b628982008-04-30 23:47:12 +0000816 AddIfNotPresent($Args,"-nodistribute");
Ted Kremenekcfd4c7b2008-05-23 22:18:16 +0000817
818 # Disable PCH files until clang supports them.
819 AddIfNotPresent($Args,"GCC_PRECOMPILE_PREFIX_HEADER=NO");
Ted Kremenek915e9722008-05-27 23:18:07 +0000820
821 # When 'CC' is set, xcodebuild uses it to do all linking, even if we are
822 # linking C++ object files. Set 'LDPLUSPLUS' so that xcodebuild uses 'g++'
823 # when linking such files.
Ted Kremenek95aa1052008-09-04 17:52:41 +0000824 die if (!defined $CXX);
825 my $LDPLUSPLUS = `which $CXX`;
Ted Kremenek915e9722008-05-27 23:18:07 +0000826 $LDPLUSPLUS =~ s/\015?\012//; # strip newlines
827 $ENV{'LDPLUSPLUS'} = $LDPLUSPLUS;
Ted Kremenek6b628982008-04-30 23:47:12 +0000828 }
Ted Kremenekdab11102008-04-02 04:43:42 +0000829
Ted Kremenek5a4ddaf2008-08-25 20:10:45 +0000830 return (system(@$Args) >> 8);
Ted Kremenekdab11102008-04-02 04:43:42 +0000831}
832
Ted Kremenekdab11102008-04-02 04:43:42 +0000833##----------------------------------------------------------------------------##
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000834# DisplayHelp - Utility function to display all help options.
835##----------------------------------------------------------------------------##
836
Sam Bishopa0e22662008-04-02 03:35:43 +0000837sub DisplayHelp {
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000838
Ted Kremenek5744dc22008-04-02 18:03:36 +0000839print <<ENDTEXT;
Sam Bishopa0e22662008-04-02 03:35:43 +0000840USAGE: $Prog [options] <build command> [build options]
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000841
Ted Kremenekf4cdf412008-05-23 18:17:05 +0000842ENDTEXT
843
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000844 if (defined $BuildName) {
Ted Kremenekf4cdf412008-05-23 18:17:05 +0000845 print "ANALYZER BUILD: $BuildName ($BuildDate)\n\n";
846 }
847
848print <<ENDTEXT;
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000849OPTIONS:
850
Ted Kremeneke15fa272008-10-13 21:46:42 +0000851 -analyze-headers - Also analyze functions in #included files.
852
Zhongxing Xu07c37672008-10-27 14:26:32 +0000853 -store [model] - Specify the store model used by the analyzer. By default,
854 the 'basic' store model is used. 'region' specifies a field-
855 sensitive store model. Be warned that the 'region' model
856 is still in very early testing phase and may often crash.
857
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000858 -o - Target directory for HTML report files. Subdirectories
Sam Bishopa0e22662008-04-02 03:35:43 +0000859 will be created as needed to represent separate "runs" of
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000860 the analyzer. If this option is not specified, a directory
Ted Kremenekffda0b42008-10-31 05:48:42 +0000861 is created in /tmp (TMPDIR on Mac OS X) to store the reports.
Ted Kremenekdb4f5f22008-11-04 00:02:53 +0000862
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000863 -h - Display this message.
864 --help
Ted Kremenek1262fc42008-05-14 20:10:33 +0000865
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000866 -k - Add a "keep on going" option to the specified build command.
867 --keep-going This option currently supports make and xcodebuild.
Ted Kremenekf02e8db2008-04-02 16:41:25 +0000868 This is a convenience option; one can specify this
869 behavior directly using build options.
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000870
Ted Kremenek7cba1122008-09-22 01:35:58 +0000871 --html-title [title] - Specify the title used on generated HTML pages.
872 --html-title=[title] If not specified, a default title will be used.
873
Ted Kremenekdb4f5f22008-11-04 00:02:53 +0000874 -plist - By default the output of scan-build is a set of HTML files.
875 This option outputs the results as a set of .plist files.
876
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000877 --status-bugs - By default, the exit status of $Prog is the same as the
878 executed build command. Specifying this option causes the
879 exit status of $Prog to be 1 if it found potential bugs
880 and 0 otherwise.
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000881
Ted Kremenek386c6932008-09-03 17:59:35 +0000882 --use-cc [compiler path] - By default, $Prog uses 'gcc' to compile and link
883 --use-cc=[compiler path] your C and Objective-C code. Use this option
884 to specify an alternate compiler.
885
886 --use-c++ [compiler path] - By default, $Prog uses 'g++' to compile and link
887 --use-c++=[compiler path] your C++ and Objective-C++ code. Use this option
888 to specify an alternate compiler.
Ted Kremenekf17ef3c2008-08-21 21:47:09 +0000889
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000890 -v - Verbose output from $Prog and the analyzer.
Ted Kremenek386c6932008-09-03 17:59:35 +0000891 A second and third '-v' increases verbosity.
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000892
893 -V - View analysis results in a web browser when the build
894 --view completes.
Ted Kremenek7f8a3252008-04-02 18:42:49 +0000895
Ted Kremenekb7770c02008-07-15 17:06:13 +0000896
Ted Kremenek386c6932008-09-03 17:59:35 +0000897AVAILABLE ANALYSES (multiple analyses may be specified):
Ted Kremenekd52e4252008-08-25 20:45:07 +0000898
899ENDTEXT
Ted Kremenekb7770c02008-07-15 17:06:13 +0000900
901 foreach my $Analysis (sort keys %AvailableAnalyses) {
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000902 if (defined $AnalysesDefaultEnabled{$Analysis}) {
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000903 print " (+)";
Ted Kremenekb7770c02008-07-15 17:06:13 +0000904 }
905 else {
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000906 print " ";
Ted Kremenekb7770c02008-07-15 17:06:13 +0000907 }
908
909 print " $Analysis $AvailableAnalyses{$Analysis}\n";
910 }
911
912print <<ENDTEXT
913
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000914 NOTE: "(+)" indicates that an analysis is enabled by default unless one
915 or more analysis options are specified
Ted Kremenekb7770c02008-07-15 17:06:13 +0000916
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000917BUILD OPTIONS
918
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000919 You can specify any build option acceptable to the build command.
Ted Kremenek39eefde2008-04-02 16:47:27 +0000920
Ted Kremenek5744dc22008-04-02 18:03:36 +0000921EXAMPLE
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000922
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000923 $Prog -o /tmp/myhtmldir make -j4
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000924
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000925 The above example causes analysis reports to be deposited into
926 a subdirectory of "/tmp/myhtmldir" and to run "make" with the "-j4" option.
927 A different subdirectory is created each time $Prog analyzes a project.
928 The analyzer should support most parallel builds, but not distributed builds.
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000929
930ENDTEXT
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000931}
932
933##----------------------------------------------------------------------------##
Ted Kremenek7cba1122008-09-22 01:35:58 +0000934# HtmlEscape - HTML entity encode characters that are special in HTML
935##----------------------------------------------------------------------------##
936
937sub HtmlEscape {
938 # copy argument to new variable so we don't clobber the original
939 my $arg = shift || '';
940 my $tmp = $arg;
Ted Kremenek87f8de72008-11-03 07:44:16 +0000941 $tmp =~ s/&/&amp;/g;
942 $tmp =~ s/</&lt;/g;
943 $tmp =~ s/>/&gt;/g;
Ted Kremenek7cba1122008-09-22 01:35:58 +0000944 return $tmp;
945}
946
947##----------------------------------------------------------------------------##
948# ShellEscape - backslash escape characters that are special to the shell
949##----------------------------------------------------------------------------##
950
951sub ShellEscape {
952 # copy argument to new variable so we don't clobber the original
953 my $arg = shift || '';
Ted Kremenek87f8de72008-11-03 07:44:16 +0000954 if ($arg =~ /["\s]/) { return "'" . $arg . "'"; }
955 return $arg;
Ted Kremenek7cba1122008-09-22 01:35:58 +0000956}
957
958##----------------------------------------------------------------------------##
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000959# Process command-line arguments.
960##----------------------------------------------------------------------------##
961
Ted Kremeneke15fa272008-10-13 21:46:42 +0000962my $AnalyzeHeaders = 0;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000963my $HtmlDir; # Parent directory to store HTML files.
964my $IgnoreErrors = 0; # Ignore build errors.
Ted Kremenek7f8a3252008-04-02 18:42:49 +0000965my $ViewResults = 0; # View results when the build terminates.
Ted Kremenek363dc3f2008-07-15 22:03:09 +0000966my $ExitStatusFoundBugs = 0; # Exit status reflects whether bugs were found
Ted Kremenekb7770c02008-07-15 17:06:13 +0000967my @AnalysesToRun;
Zhongxing Xu07c37672008-10-27 14:26:32 +0000968my $StoreModel;
Ted Kremenekdb4f5f22008-11-04 00:02:53 +0000969my $OutputFormat;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000970
971if (!@ARGV) {
972 DisplayHelp();
Sam Bishopa0e22662008-04-02 03:35:43 +0000973 exit 1;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000974}
975
976while (@ARGV) {
977
978 # Scan for options we recognize.
979
980 my $arg = $ARGV[0];
981
Sam Bishop2f2418e2008-04-03 14:29:47 +0000982 if ($arg eq "-h" or $arg eq "--help") {
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000983 DisplayHelp();
Sam Bishopa0e22662008-04-02 03:35:43 +0000984 exit 0;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000985 }
986
Ted Kremeneke15fa272008-10-13 21:46:42 +0000987 if ($arg eq '-analyze-headers') {
988 shift @ARGV;
989 $AnalyzeHeaders = 1;
990 next;
991 }
992
Ted Kremenekfc1d3402008-08-04 18:15:26 +0000993 if (defined $AvailableAnalyses{$arg}) {
Ted Kremenek1262fc42008-05-14 20:10:33 +0000994 shift @ARGV;
Ted Kremenekb7770c02008-07-15 17:06:13 +0000995 push @AnalysesToRun, $arg;
Ted Kremenek1262fc42008-05-14 20:10:33 +0000996 next;
997 }
998
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000999 if ($arg eq "-o") {
1000 shift @ARGV;
1001
1002 if (!@ARGV) {
Ted Kremenek23cfca32008-06-16 22:40:14 +00001003 DieDiag("'-o' option requires a target directory name.\n");
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001004 }
1005
1006 $HtmlDir = shift @ARGV;
1007 next;
1008 }
Ted Kremenek7cba1122008-09-22 01:35:58 +00001009
1010 if ($arg =~ /^--html-title(=(.+))?$/) {
1011 shift @ARGV;
1012
1013 if ($2 eq '') {
1014 if (!@ARGV) {
1015 DieDiag("'--html-title' option requires a string.\n");
1016 }
1017
1018 $HtmlTitle = shift @ARGV;
1019 } else {
1020 $HtmlTitle = $2;
1021 }
1022
1023 next;
1024 }
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001025
Ted Kremenek2b74ab62008-04-01 21:22:03 +00001026 if ($arg eq "-k" or $arg eq "--keep-going") {
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001027 shift @ARGV;
1028 $IgnoreErrors = 1;
1029 next;
1030 }
1031
Ted Kremenekf17ef3c2008-08-21 21:47:09 +00001032 if ($arg =~ /^--use-cc(=(.+))?$/) {
1033 shift @ARGV;
1034 my $cc;
1035
1036 if ($2 eq "") {
1037 if (!@ARGV) {
1038 DieDiag("'--use-cc' option requires a compiler executable name.\n");
1039 }
1040 $cc = shift @ARGV;
1041 }
1042 else {
1043 $cc = $2;
1044 }
1045
1046 $ENV{"CCC_CC"} = $cc;
1047 next;
1048 }
1049
Ted Kremenek7cba1122008-09-22 01:35:58 +00001050 if ($arg =~ /^--use-c\+\+(=(.+))?$/) {
Ted Kremenek386c6932008-09-03 17:59:35 +00001051 shift @ARGV;
1052
1053 if ($2 eq "") {
1054 if (!@ARGV) {
1055 DieDiag("'--use-c++' option requires a compiler executable name.\n");
1056 }
1057 $CXX = shift @ARGV;
1058 }
1059 else {
1060 $CXX = $2;
1061 }
1062 next;
1063 }
1064
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001065 if ($arg eq "-v") {
1066 shift @ARGV;
1067 $Verbose++;
1068 next;
1069 }
1070
Ted Kremenek7f8a3252008-04-02 18:42:49 +00001071 if ($arg eq "-V" or $arg eq "--view") {
1072 shift @ARGV;
1073 $ViewResults = 1;
1074 next;
1075 }
1076
Ted Kremenek363dc3f2008-07-15 22:03:09 +00001077 if ($arg eq "--status-bugs") {
1078 shift @ARGV;
1079 $ExitStatusFoundBugs = 1;
1080 next;
1081 }
Zhongxing Xu07c37672008-10-27 14:26:32 +00001082
1083 if ($arg eq "-store") {
1084 shift @ARGV;
1085 $StoreModel = '-analyzer-store-' . shift @ARGV;
1086 next;
1087 }
Ted Kremenek363dc3f2008-07-15 22:03:09 +00001088
Ted Kremenekdb4f5f22008-11-04 00:02:53 +00001089 if ($arg eq "-plist") {
1090 shift @ARGV;
1091 $OutputFormat = "plist";
1092 next;
1093 }
1094
Ted Kremenek23cfca32008-06-16 22:40:14 +00001095 DieDiag("unrecognized option '$arg'\n") if ($arg =~ /^-/);
Ted Kremenek0062ad42008-04-02 16:35:01 +00001096
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001097 last;
1098}
1099
1100if (!@ARGV) {
Ted Kremenek23cfca32008-06-16 22:40:14 +00001101 Diag("No build command specified.\n\n");
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001102 DisplayHelp();
Sam Bishopa0e22662008-04-02 03:35:43 +00001103 exit 1;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001104}
1105
Ted Kremenek7cba1122008-09-22 01:35:58 +00001106$CmdArgs = HtmlEscape(join(' ', map(ShellEscape($_), @ARGV)));
1107$HtmlTitle = "${CurrentDirSuffix} - scan-build results"
1108 unless (defined($HtmlTitle));
Ted Kremenek386c6932008-09-03 17:59:35 +00001109
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001110# Determine the output directory for the HTML reports.
Ted Kremenek684bb092008-04-18 15:18:20 +00001111my $BaseDir = $HtmlDir;
Sam Bishopa0e22662008-04-02 03:35:43 +00001112$HtmlDir = GetHTMLRunDir($HtmlDir);
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001113
1114# Set the appropriate environment variables.
Sam Bishopa0e22662008-04-02 03:35:43 +00001115SetHtmlEnv(\@ARGV, $HtmlDir);
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001116
Ted Kremeneke15fa272008-10-13 21:46:42 +00001117my $Cmd = Cwd::realpath("$RealBin/ccc-analyzer");
Ted Kremenek0b6c1532008-04-08 20:22:12 +00001118
Ted Kremenek23cfca32008-06-16 22:40:14 +00001119DieDiag("Executable 'ccc-analyzer' does not exist at '$Cmd'\n")
Ted Kremenek0b6c1532008-04-08 20:22:12 +00001120 if (! -x $Cmd);
Ted Kremenekf22eacb2008-04-18 22:00:56 +00001121
Ted Kremenekb7770c02008-07-15 17:06:13 +00001122if (! -x $ClangSB) {
1123 Diag("'clang' executable not found in '$RealBin'.\n");
1124 Diag("Using 'clang' from path.\n");
Ted Kremenekf22eacb2008-04-18 22:00:56 +00001125}
Ted Kremenek0b6c1532008-04-08 20:22:12 +00001126
Ted Kremenek95aa1052008-09-04 17:52:41 +00001127if (defined $CXX) {
1128 $ENV{'CXX'} = $CXX;
1129}
1130else {
1131 $CXX = 'g++'; # This variable is used by other parts of scan-build
1132 # that need to know a default C++ compiler to fall back to.
1133}
1134
Ted Kremenek4f4b17d2008-04-03 20:08:18 +00001135$ENV{'CC'} = $Cmd;
Ted Kremenekf22eacb2008-04-18 22:00:56 +00001136$ENV{'CLANG'} = $Clang;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001137
1138if ($Verbose >= 2) {
1139 $ENV{'CCC_ANALYZER_VERBOSE'} = 1;
1140}
1141
Ted Kremeneka9525c92008-05-12 22:07:14 +00001142if ($Verbose >= 3) {
1143 $ENV{'CCC_ANALYZER_LOG'} = 1;
1144}
1145
Ted Kremenek90125992008-07-15 23:41:32 +00001146if (scalar(@AnalysesToRun) == 0) {
1147 foreach my $key (keys %AnalysesDefaultEnabled) {
1148 push @AnalysesToRun,$key;
1149 }
Ted Kremenek01006782008-07-02 23:16:10 +00001150}
Ted Kremenek1262fc42008-05-14 20:10:33 +00001151
Ted Kremeneke15fa272008-10-13 21:46:42 +00001152if ($AnalyzeHeaders) {
1153 push @AnalysesToRun,"-analyzer-opt-analyze-headers";
1154}
1155
Ted Kremenek90125992008-07-15 23:41:32 +00001156$ENV{'CCC_ANALYZER_ANALYSIS'} = join ' ',@AnalysesToRun;
1157
Zhongxing Xu3cab2b12008-11-02 10:58:16 +00001158if (defined $StoreModel) {
Zhongxing Xu07c37672008-10-27 14:26:32 +00001159 $ENV{'CCC_ANALYZER_STORE_MODEL'} = $StoreModel;
1160}
1161
Ted Kremenekdb4f5f22008-11-04 00:02:53 +00001162if (defined $OutputFormat) {
1163 $ENV{'CCC_ANALYZER_OUTPUT_FORMAT'} = $OutputFormat;
1164}
1165
1166
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001167# Run the build.
Ted Kremenek5656a982008-07-15 17:09:28 +00001168my $ExitStatus = RunBuildCommand(\@ARGV, $IgnoreErrors, $Cmd);
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001169
Ted Kremenek655aba72008-11-04 00:22:12 +00001170if (defined $OutputFormat and $OutputFormat eq "plist") {
Ted Kremenek50534dc2008-09-22 17:38:23 +00001171 Diag "Analysis run complete.\n";
Ted Kremenekdb4f5f22008-11-04 00:02:53 +00001172 Diag "Analysis results (plist files) deposited in '$HtmlDir'\n";
Ted Kremenek7f8a3252008-04-02 18:42:49 +00001173}
Ted Kremenekdb4f5f22008-11-04 00:02:53 +00001174else {
1175 # Postprocess the HTML directory.
1176 my $NumBugs = Postprocess($HtmlDir, $BaseDir);
Ted Kremenek5656a982008-07-15 17:09:28 +00001177
Ted Kremenekdb4f5f22008-11-04 00:02:53 +00001178 if ($ViewResults and -r "$HtmlDir/index.html") {
1179 Diag "Analysis run complete.\n";
1180 Diag "Viewing analysis results in '$HtmlDir' using scan-view.\n";
1181 my $ScanView = Cwd::realpath("$RealBin/scan-view");
1182 if (! -x $ScanView) { $ScanView = "scan-view"; }
1183 exec $ScanView, "$HtmlDir";
1184 }
1185
1186 if ($ExitStatusFoundBugs) {
1187 exit 1 if ($NumBugs > 0);
1188 exit 0;
1189 }
Ted Kremenek363dc3f2008-07-15 22:03:09 +00001190}
1191
Ted Kremenek5656a982008-07-15 17:09:28 +00001192exit $ExitStatus;
1193