-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTaintAnalysis.java
605 lines (556 loc) · 20.4 KB
/
TaintAnalysis.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
/*******************************************************************************
* Copyright (c) 2012 Secure Software Engineering Group at EC SPRIDE.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Lesser Public License v2.1
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
* Contributors: Christian Fritz, Steven Arzt, Siegfried Rasthofer, Eric
* Bodden, and others.
******************************************************************************/
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.FilenameFilter;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.FutureTask;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import org.xmlpull.v1.XmlPullParserException;
import soot.jimple.infoflow.IInfoflow.CallgraphAlgorithm;
import soot.jimple.infoflow.InfoflowResults;
import soot.jimple.infoflow.InfoflowResults.SinkInfo;
import soot.jimple.infoflow.InfoflowResults.SourceInfo;
import soot.jimple.infoflow.android.AndroidSourceSinkManager.LayoutMatchingMode;
import soot.jimple.infoflow.android.SetupApplication;
import soot.jimple.infoflow.data.pathBuilders.DefaultPathBuilderFactory.PathBuilder;
import soot.jimple.infoflow.handlers.ResultsAvailableHandler;
import soot.jimple.infoflow.ipc.IIPCManager;
import soot.jimple.infoflow.solver.IInfoflowCFG;
import soot.jimple.infoflow.taintWrappers.EasyTaintWrapper;
import soot.jimple.infoflow.taintWrappers.ITaintPropagationWrapper;
import soot.jimple.infoflow.taintWrappers.TaintWrapperSet;
public class TaintAnalysis {
public static Map<String,ArrayList<String>> myMap = new HashMap<String, ArrayList<String>>();
private static final class MyResultsAvailableHandler implements
ResultsAvailableHandler {
private final BufferedWriter wr;
private MyResultsAvailableHandler() {
this.wr = null;
}
private MyResultsAvailableHandler(BufferedWriter wr) {
this.wr = wr;
}
@Override
public void onResultsAvailable(
IInfoflowCFG cfg, InfoflowResults results) {
// Dump the results
if (results == null) {
print("No results found.");
}
else {
String sinkStr,sourceStr;
ArrayList<String> sources = new ArrayList<String>();
for (SinkInfo sink : results.getResults().keySet()) {
sinkStr = sink.getSink().toString().substring(sink.getSink().toString().indexOf("<"),sink.getSink().toString().lastIndexOf(">")+1);
//print("Found a flow to sink " + sink + ", from the following sources:");
for (SourceInfo source : results.getResults().get(sink)) {
if(source.getSource().toString().contains("<")
&& source.getSource().toString().contains(">")){
sourceStr = source.getSource().toString().substring(source.getSource().toString().indexOf("<"),source.getSource().toString().lastIndexOf(">")+1);
if(sourceStr.startsWith("<java.")|| sourceStr.startsWith("<javax.")){
sources.add(sourceStr);
}
}
// print("\t- " + source.getSource() + " (in "
// + cfg.getMethodOf(source.getContext()).getSignature() + ")");
// if (source.getPath() != null && !source.getPath().isEmpty())
// print("\t\ton Path " + source.getPath());
}
myMap.put(sinkStr, sources);
}
}
}
private void print(String string) {
try {
System.out.println(string);
if (wr != null)
wr.write(string + "\n");
}
catch (IOException ex) {
// ignore
}
}
}
static String command;
static boolean generate = false;
private static int timeout = -1;
private static int sysTimeout = -1;
private static boolean stopAfterFirstFlow = false;
private static boolean implicitFlows = false;
private static boolean staticTracking = true;
private static boolean enableCallbacks = true;
private static boolean enableExceptions = true;
private static int accessPathLength = 5;
private static LayoutMatchingMode layoutMatchingMode = LayoutMatchingMode.MatchSensitiveOnly;
private static boolean flowSensitiveAliasing = true;
private static boolean computeResultPaths = true;
private static boolean aggressiveTaintWrapper = false;
private static boolean librarySummaryTaintWrapper = false;
private static String summaryPath = "";
private static PathBuilder pathBuilder = PathBuilder.ContextInsensitiveSourceFinder;
private static CallgraphAlgorithm callgraphAlgorithm = CallgraphAlgorithm.AutomaticSelection;
private static boolean DEBUG = false;
private static IIPCManager ipcManager = null;
public static void setIPCManager(IIPCManager ipcManager)
{
TaintAnalysis.ipcManager = ipcManager;
}
public static IIPCManager getIPCManager()
{
return TaintAnalysis.ipcManager;
}
/**
* @param args[0] = path to apk-file
* @param args[1] = path to android-dir (path/android-platforms/)
*/
public static void check(final String[] args) throws IOException, InterruptedException {
if (args.length < 2) {
printUsage();
return;
}
//start with cleanup:
File outputDir = new File("JimpleOutput");
if (outputDir.isDirectory()){
boolean success = true;
for(File f : outputDir.listFiles()){
success = success && f.delete();
}
if(!success){
System.err.println("Cleanup of output directory "+ outputDir + " failed!");
}
outputDir.delete();
}
// Parse additional command-line arguments
if (!parseAdditionalOptions(args))
return;
if (!validateAdditionalOptions())
return;
List<String> apkFiles = new ArrayList<String>();
File apkFile = new File(args[0]);
String extension = apkFile.getName().substring(apkFile.getName().lastIndexOf("."));
if (apkFile.isDirectory()) {
String[] dirFiles = apkFile.list(new FilenameFilter() {
@Override
public boolean accept(File dir, String name) {
return (name.endsWith(".apk"));
}
});
for (String s : dirFiles)
apkFiles.add(s);
}
else if (extension.equalsIgnoreCase(".txt")) {
BufferedReader rdr = new BufferedReader(new FileReader(apkFile));
String line = null;
while ((line = rdr.readLine()) != null)
apkFiles.add(line);
rdr.close();
}
else if (extension.equalsIgnoreCase(".apk"))
apkFiles.add(args[0]);
else {
System.err.println("Invalid input file format: " + extension);
return;
}
for (final String fileName : apkFiles) {
final String fullFilePath;
// Directory handling
if (apkFiles.size() > 1) {
if (apkFile.isDirectory())
fullFilePath = args[0] + File.separator + fileName;
else
fullFilePath = fileName;
System.out.println("Analyzing file " + fullFilePath + "...");
File flagFile = new File("_Run_" + new File(fileName).getName());
if (flagFile.exists())
continue;
flagFile.createNewFile();
}
else
fullFilePath = fileName;
// Run the analysis
if (timeout > 0)
runAnalysisTimeout(fullFilePath, args[1]);
else if (sysTimeout > 0)
runAnalysisSysTimeout(fullFilePath, args[1]);
else
runAnalysis(fullFilePath, args[1]);
System.gc();
}
}
private static boolean parseAdditionalOptions(String[] args) {
int i = 2;
while (i < args.length) {
if (args[i].equalsIgnoreCase("--timeout")) {
timeout = Integer.valueOf(args[i+1]);
i += 2;
}
else if (args[i].equalsIgnoreCase("--systimeout")) {
sysTimeout = Integer.valueOf(args[i+1]);
i += 2;
}
else if (args[i].equalsIgnoreCase("--singleflow")) {
stopAfterFirstFlow = true;
i++;
}
else if (args[i].equalsIgnoreCase("--implicit")) {
implicitFlows = true;
i++;
}
else if (args[i].equalsIgnoreCase("--nostatic")) {
staticTracking = false;
i++;
}
else if (args[i].equalsIgnoreCase("--aplength")) {
accessPathLength = Integer.valueOf(args[i+1]);
i += 2;
}
else if (args[i].equalsIgnoreCase("--cgalgo")) {
String algo = args[i+1];
if (algo.equalsIgnoreCase("AUTO"))
callgraphAlgorithm = CallgraphAlgorithm.AutomaticSelection;
else if (algo.equalsIgnoreCase("CHA"))
callgraphAlgorithm = CallgraphAlgorithm.CHA;
else if (algo.equalsIgnoreCase("VTA"))
callgraphAlgorithm = CallgraphAlgorithm.VTA;
else if (algo.equalsIgnoreCase("RTA"))
callgraphAlgorithm = CallgraphAlgorithm.RTA;
else if (algo.equalsIgnoreCase("SPARK"))
callgraphAlgorithm = CallgraphAlgorithm.SPARK;
else {
System.err.println("Invalid callgraph algorithm");
return false;
}
i += 2;
}
else if (args[i].equalsIgnoreCase("--nocallbacks")) {
enableCallbacks = false;
i++;
}
else if (args[i].equalsIgnoreCase("--noexceptions")) {
enableExceptions = false;
i++;
}
else if (args[i].equalsIgnoreCase("--layoutmode")) {
String algo = args[i+1];
if (algo.equalsIgnoreCase("NONE"))
layoutMatchingMode = LayoutMatchingMode.NoMatch;
else if (algo.equalsIgnoreCase("PWD"))
layoutMatchingMode = LayoutMatchingMode.MatchSensitiveOnly;
else if (algo.equalsIgnoreCase("ALL"))
layoutMatchingMode = LayoutMatchingMode.MatchAll;
else {
System.err.println("Invalid layout matching mode");
return false;
}
i += 2;
}
else if (args[i].equalsIgnoreCase("--aliasflowins")) {
flowSensitiveAliasing = false;
i++;
}
else if (args[i].equalsIgnoreCase("--nopaths")) {
computeResultPaths = false;
i++;
}
else if (args[i].equalsIgnoreCase("--aggressivetw")) {
aggressiveTaintWrapper = false;
i++;
}
else if (args[i].equalsIgnoreCase("--pathalgo")) {
String algo = args[i+1];
if (algo.equalsIgnoreCase("CONTEXTSENSITIVE"))
pathBuilder = PathBuilder.ContextSensitive;
else if (algo.equalsIgnoreCase("CONTEXTINSENSITIVE"))
pathBuilder = PathBuilder.ContextInsensitive;
else if (algo.equalsIgnoreCase("SOURCESONLY"))
pathBuilder = PathBuilder.ContextInsensitiveSourceFinder;
else {
System.err.println("Invalid path reconstruction algorithm");
return false;
}
i += 2;
}
else if (args[i].equalsIgnoreCase("--libsumtw")) {
librarySummaryTaintWrapper = true;
i++;
}
else if (args[i].equalsIgnoreCase("--summarypath")) {
summaryPath = args[i + 1];
i += 2;
}
else
i++;
}
return true;
}
private static boolean validateAdditionalOptions() {
if (timeout > 0 && sysTimeout > 0) {
return false;
}
if (!flowSensitiveAliasing && callgraphAlgorithm != CallgraphAlgorithm.OnDemand
&& callgraphAlgorithm != CallgraphAlgorithm.AutomaticSelection) {
System.err.println("Flow-insensitive aliasing can only be configured for callgraph "
+ "algorithms that support this choice.");
return false;
}
if (librarySummaryTaintWrapper && summaryPath.isEmpty()) {
System.err.println("Summary path must be specified when using library summaries");
return false;
}
return true;
}
private static void runAnalysisTimeout(final String fileName, final String androidJar) {
FutureTask<InfoflowResults> task = new FutureTask<InfoflowResults>(new Callable<InfoflowResults>() {
@Override
public InfoflowResults call() throws Exception {
final BufferedWriter wr = new BufferedWriter(new FileWriter("_out_" + new File(fileName).getName() + ".txt"));
try {
final long beforeRun = System.nanoTime();
wr.write("Running data flow analysis...\n");
final InfoflowResults res = runAnalysis(fileName, androidJar);
wr.write("Analysis has run for " + (System.nanoTime() - beforeRun) / 1E9 + " seconds\n");
wr.flush();
return res;
}
finally {
if (wr != null)
wr.close();
}
}
});
ExecutorService executor = Executors.newFixedThreadPool(1);
executor.execute(task);
try {
System.out.println("Running infoflow task...");
task.get(timeout, TimeUnit.MINUTES);
} catch (ExecutionException e) {
System.err.println("Infoflow computation failed: " + e.getMessage());
e.printStackTrace();
} catch (TimeoutException e) {
System.err.println("Infoflow computation timed out: " + e.getMessage());
e.printStackTrace();
} catch (InterruptedException e) {
System.err.println("Infoflow computation interrupted: " + e.getMessage());
e.printStackTrace();
}
// Make sure to remove leftovers
executor.shutdown();
}
private static void runAnalysisSysTimeout(final String fileName, final String androidJar) {
String classpath = System.getProperty("java.class.path");
String javaHome = System.getProperty("java.home");
String executable = "/usr/bin/timeout";
String[] command = new String[] { executable,
"-s", "KILL",
sysTimeout + "m",
javaHome + "/bin/java",
"-cp", classpath,
"soot.jimple.infoflow.android.TestApps.Test",
fileName,
androidJar,
stopAfterFirstFlow ? "--singleflow" : "--nosingleflow",
implicitFlows ? "--implicit" : "--noimplicit",
staticTracking ? "--static" : "--nostatic",
"--aplength", Integer.toString(accessPathLength),
"--cgalgo", callgraphAlgorithmToString(callgraphAlgorithm),
enableCallbacks ? "--callbacks" : "--nocallbacks",
enableExceptions ? "--exceptions" : "--noexceptions",
"--layoutmode", layoutMatchingModeToString(layoutMatchingMode),
flowSensitiveAliasing ? "--aliasflowsens" : "--aliasflowins",
computeResultPaths ? "--paths" : "--nopaths",
aggressiveTaintWrapper ? "--aggressivetw" : "--nonaggressivetw",
"--pathalgo", pathAlgorithmToString(pathBuilder) };
System.out.println("Running command: " + executable + " " + command);
try {
ProcessBuilder pb = new ProcessBuilder(command);
pb.redirectOutput(new File("_out_" + new File(fileName).getName() + ".txt"));
pb.redirectError(new File("err_" + new File(fileName).getName() + ".txt"));
Process proc = pb.start();
proc.waitFor();
} catch (IOException ex) {
System.err.println("Could not execute timeout command: " + ex.getMessage());
ex.printStackTrace();
} catch (InterruptedException ex) {
System.err.println("Process was interrupted: " + ex.getMessage());
ex.printStackTrace();
}
}
private static String callgraphAlgorithmToString(CallgraphAlgorithm algorihm) {
switch (algorihm) {
case AutomaticSelection:
return "AUTO";
case CHA:
return "CHA";
case VTA:
return "VTA";
case RTA:
return "RTA";
case SPARK:
return "SPARK";
default:
return "unknown";
}
}
private static String layoutMatchingModeToString(LayoutMatchingMode mode) {
switch (mode) {
case NoMatch:
return "NONE";
case MatchSensitiveOnly:
return "PWD";
case MatchAll:
return "ALL";
default:
return "unknown";
}
}
private static String pathAlgorithmToString(PathBuilder pathBuilder) {
switch (pathBuilder) {
case ContextSensitive:
return "CONTEXTSENSITIVE";
case ContextInsensitive :
return "CONTEXTINSENSITIVE";
case ContextInsensitiveSourceFinder :
return "SOURCESONLY";
default :
return "UNKNOWN";
}
}
private static InfoflowResults runAnalysis(final String fileName, final String androidJar) {
try {
final long beforeRun = System.nanoTime();
final SetupApplication app;
if (null == ipcManager)
{
app = new SetupApplication(androidJar, fileName);
}
else
{
app = new SetupApplication(androidJar, fileName, ipcManager);
}
app.setStopAfterFirstFlow(stopAfterFirstFlow);
app.setEnableImplicitFlows(implicitFlows);
app.setEnableStaticFieldTracking(staticTracking);
app.setEnableCallbacks(enableCallbacks);
app.setEnableExceptionTracking(enableExceptions);
app.setAccessPathLength(accessPathLength);
app.setLayoutMatchingMode(layoutMatchingMode);
app.setFlowSensitiveAliasing(flowSensitiveAliasing);
app.setPathBuilder(pathBuilder);
final ITaintPropagationWrapper taintWrapper;
if (librarySummaryTaintWrapper) {
taintWrapper = createLibrarySummaryTW();
}
else {
final EasyTaintWrapper easyTaintWrapper;
if (new File("../soot-infoflow/EasyTaintWrapperSource.txt").exists())
easyTaintWrapper = new EasyTaintWrapper("../soot-infoflow/EasyTaintWrapperSource.txt");
else
easyTaintWrapper = new EasyTaintWrapper("EasyTaintWrapperSource.txt");
easyTaintWrapper.setAggressiveMode(aggressiveTaintWrapper);
taintWrapper = easyTaintWrapper;
}
app.setTaintWrapper(taintWrapper);
app.calculateSourcesSinksEntrypoints("SourcesAndSinks.txt");
if (DEBUG) {
app.printEntrypoints();
app.printSinks();
app.printSources();
}
System.out.println("Running data flow analysis...");
final InfoflowResults res = app.runInfoflow(new MyResultsAvailableHandler());
System.out.println("Analysis has run for " + (System.nanoTime() - beforeRun) / 1E9 + " seconds");
return res;
} catch (IOException ex) {
System.err.println("Could not read file: " + ex.getMessage());
ex.printStackTrace();
throw new RuntimeException(ex);
} catch (XmlPullParserException ex) {
System.err.println("Could not read Android manifest file: " + ex.getMessage());
ex.printStackTrace();
throw new RuntimeException(ex);
}
}
/**
* Creates the taint wrapper for using library summaries
* @return The taint wrapper for using library summaries
* @throws IOException Thrown if one of the required files could not be read
*/
@SuppressWarnings({ "rawtypes", "unchecked" })
private static ITaintPropagationWrapper createLibrarySummaryTW()
throws IOException {
try {
Class clzLazySummary = Class.forName("soot.jimple.infoflow.methodSummary.data.impl.LazySummary");
Object lazySummary = clzLazySummary.getConstructor(File.class).newInstance(new File(summaryPath));
ITaintPropagationWrapper summaryWrapper = (ITaintPropagationWrapper) Class.forName
("soot.jimple.infoflow.methodSummary.taintWrappers.SummaryTaintWrapper").getConstructor
(clzLazySummary).newInstance(lazySummary);
final TaintWrapperSet taintWrapperSet = new TaintWrapperSet();
taintWrapperSet.addWrapper(summaryWrapper);
taintWrapperSet.addWrapper(new EasyTaintWrapper("EasyTaintWrapperConversion.txt"));
return taintWrapperSet;
}
catch (ClassNotFoundException | NoSuchMethodException ex) {
System.err.println("Could not find library summary classes: " + ex.getMessage());
ex.printStackTrace();
return null;
}
catch (InvocationTargetException ex) {
System.err.println("Could not initialize library summaries: " + ex.getMessage());
ex.printStackTrace();
return null;
}
catch (IllegalAccessException | InstantiationException ex) {
System.err.println("Internal error in library summary initialization: " + ex.getMessage());
ex.printStackTrace();
return null;
}
}
private static void printUsage() {
System.out.println("FlowDroid (c) Secure Software Engineering Group @ EC SPRIDE");
System.out.println();
System.out.println("Incorrect arguments: [0] = apk-file, [1] = android-jar-directory");
System.out.println("Optional further parameters:");
System.out.println("\t--TIMEOUT n Time out after n seconds");
System.out.println("\t--SYSTIMEOUT n Hard time out (kill process) after n seconds, Unix only");
System.out.println("\t--SINGLEFLOW Stop after finding first leak");
System.out.println("\t--IMPLICIT Enable implicit flows");
System.out.println("\t--NOSTATIC Disable static field tracking");
System.out.println("\t--NOEXCEPTIONS Disable exception tracking");
System.out.println("\t--APLENGTH n Set access path length to n");
System.out.println("\t--CGALGO x Use callgraph algorithm x");
System.out.println("\t--NOCALLBACKS Disable callback analysis");
System.out.println("\t--LAYOUTMODE x Set UI control analysis mode to x");
System.out.println("\t--ALIASFLOWINS Use a flow insensitive alias search");
System.out.println("\t--NOPATHS Do not compute result paths");
System.out.println("\t--AGGRESSIVETW Use taint wrapper in aggressive mode");
System.out.println("\t--PATHALGO Use path reconstruction algorithm x");
System.out.println("\t--LIBSUMTW Use library summary taint wrapper");
System.out.println("\t--SUMMARYPATH Path to library summaries");
System.out.println();
System.out.println("Supported callgraph algorithms: AUTO, CHA, RTA, VTA, SPARK");
System.out.println("Supported layout mode algorithms: NONE, PWD, ALL");
System.out.println("Supported path algorithms: CONTEXTSENSITIVE, CONTEXTINSENSITIVE, SOURCESONLY");
}
}