/* * Copyright (c) 2013 - present Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. */ package utils; import com.google.common.base.Joiner; import com.google.common.collect.ImmutableList; import org.junit.rules.TemporaryFolder; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.util.HashMap; import java.util.Map; import javax.annotation.Nullable; public class InferRunner { public static final String BUGS_FILE_NAME = "report.csv"; public static final String DOT_FILE_NAME = "icfg.dot"; public static final String CAPTURED_FOLDER = "captured"; private static File bugsFile; @Nullable private static File dotFile; private static File resultsDir; private static final ImmutableList EMPTY_ARGS = ImmutableList.of(); private static final String ANDROID = "/infer/lib/java/android/android-19.jar"; private static final String[] LIBRARIES = { "/infer/lib/java/models.jar", "/infer/annotations/annotations.jar", "/dependencies/java/guava/guava-10.0.1-fork.jar", "/dependencies/java/jackson/jackson-2.2.3.jar", }; private static final String IPHONESIMULATOR_ISYSROOT_SUFFIX = "/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk"; private static HashMap inferResultsMap = new HashMap(); private InferRunner() { } private static String getXcodeRoot() throws IOException, InterruptedException { ProcessBuilder pb = new ProcessBuilder("xcode-select", "-p"); Process process = pb.start(); InputStream is = process.getInputStream(); InputStreamReader isr = new InputStreamReader(is); BufferedReader br = new BufferedReader(isr); String line = br.readLine(); process.waitFor(); return line; } private static ImmutableList createInferJavaCommand( TemporaryFolder folder, ImmutableList sourceFiles, String analyzer, ImmutableList args) { try { File resultsDir = createResultsDir(folder); String resultsDirName = resultsDir.getAbsolutePath(); InferRunner.bugsFile = new File(resultsDir, BUGS_FILE_NAME); ImmutableList javacCmd = createJavacCommand( folder, sourceFiles); return new ImmutableList.Builder() .add("infer") .add("--no-filtering") .addAll(args) .add("-o") .add(resultsDirName) .add("-a") .add(analyzer) .add("--") .addAll(javacCmd) .build(); } catch (IOException e) { e.printStackTrace(); System.exit(1); return ImmutableList.of(); // unreachable } } private static ImmutableList createJavacCommand( TemporaryFolder folder, ImmutableList sourceFiles) throws IOException { File classesDir = folder.newFolder("classes_out"); String classesDirName = classesDir.getAbsolutePath(); ImmutableList javacCmd = new ImmutableList.Builder() .add("javac") .add("-classpath") .add(getClasspath()) .add("-bootclasspath") .add(getBootClasspath()) .add("-d") .add(classesDirName) .addAll(sourceFiles).build(); return javacCmd; } public static ImmutableList createJavaInferHarnessCommand( TemporaryFolder folder, ImmutableList sourceFiles) { ImmutableList args = new ImmutableList.Builder().build(); return createInferJavaCommand(folder, sourceFiles, "infer", args); } public static ImmutableList createJavaInferHarnessCommand( TemporaryFolder folder, String sourceFile) { return createJavaInferHarnessCommand(folder, ImmutableList.of(sourceFile)); } public static ImmutableList createJavaInferAngelicHarnessCommand( TemporaryFolder folder, ImmutableList sourceFiles) { ImmutableList args = (new ImmutableList.Builder()).build(); return createInferJavaCommand(folder, sourceFiles, "infer", args); } public static String getClangLangOption(Language lang) { String langOption = ""; switch (lang) { case C: langOption = "c"; break; case ObjC: langOption = "objective-c"; break; case CPP: langOption = "c++"; break; case ObjCPP: langOption = "objective-c++"; break; default: throw new RuntimeException( "It should be called only with the " + "languages (C, C++, ObjC, ObjC++)"); } return langOption; } public static String getStdParam(Language lang) { String stdParam = ""; switch (lang) { case CPP: stdParam = "-std=c++11"; break; } return stdParam; } public static ImmutableList createClangCommand( String sourceFile, Language lang, @Nullable String isysroot, boolean arc) { ImmutableList.Builder isysrootOption = new ImmutableList.Builder<>(); if (isysroot != null) { isysrootOption .add("-isysroot") .add(isysroot) .add("-mios-simulator-version-min=8.2"); } ImmutableList.Builder arcOption = new ImmutableList.Builder<>(); if (arc) { arcOption.add("-fobjc-arc"); } ImmutableList clangCmd = new ImmutableList.Builder() .add("clang") .add("-x") .add(getClangLangOption(lang)) .add(getStdParam(lang)) .addAll(isysrootOption.build()) .addAll(arcOption.build()) .add("-c") .add(sourceFile) .add("-o") .add(sourceFile + ".o") .build(); return clangCmd; } public static ImmutableList createClangInferCommand( TemporaryFolder folder, String sourceFile, Language lang, boolean analyze, @Nullable String isysroot, @Nullable String ml_buckets, boolean arc) { File resultsDir = createResultsDir(folder); String resultsDirName = resultsDir.getAbsolutePath(); InferRunner.bugsFile = new File(resultsDir, BUGS_FILE_NAME); ImmutableList.Builder analyzeOption = new ImmutableList.Builder<>(); if (!analyze) { analyzeOption .add("--analyzer") .add("capture"); } ImmutableList.Builder ml_bucketsOption = new ImmutableList.Builder<>(); ml_bucketsOption .add("--objc_ml_buckets") .add(ml_buckets == null ? "all" : ml_buckets); ImmutableList inferCmd = new ImmutableList.Builder() .add("infer") .add("--no-filtering") .add("--out") .add(resultsDirName) .add("--testing_mode") .addAll(analyzeOption.build()) .addAll(ml_bucketsOption.build()) .add("--") .addAll(createClangCommand(sourceFile, lang, isysroot, arc)) .build(); return inferCmd; } public static ImmutableList createCInferCommandFrontend( TemporaryFolder folder, String sourceFile) { return createClangInferCommand( folder, sourceFile, Language.C, false, null, null, false); } public static ImmutableList createCPPInferCommandFrontend( TemporaryFolder folder, String sourceFile) { return createClangInferCommand( folder, sourceFile, Language.CPP, false, null, null, false); } public static ImmutableList createObjCInferCommandFrontend( TemporaryFolder folder, String sourceFile) throws IOException, InterruptedException { return createClangInferCommand( folder, sourceFile, Language.ObjC, false, getXcodeRoot() + IPHONESIMULATOR_ISYSROOT_SUFFIX, null, false); } public static ImmutableList createObjCInferCommandFrontendArc( TemporaryFolder folder, String sourceFile) throws IOException, InterruptedException { return createClangInferCommand( folder, sourceFile, Language.ObjC, false, getXcodeRoot() + IPHONESIMULATOR_ISYSROOT_SUFFIX, null, true); } public static ImmutableList createObjCPPInferCommandFrontend( TemporaryFolder folder, String sourceFile) throws IOException, InterruptedException { return createClangInferCommand( folder, sourceFile, Language.ObjCPP, false, getXcodeRoot() + IPHONESIMULATOR_ISYSROOT_SUFFIX, null, false); } public static ImmutableList createCInferCommand( TemporaryFolder folder, String sourceFile) { return createClangInferCommand( folder, sourceFile, Language.C, true, null, null, false); } public static ImmutableList createCPPInferCommand( TemporaryFolder folder, String sourceFile) { return createClangInferCommand( folder, sourceFile, Language.CPP, true, null, null, false); } public static ImmutableList createObjCInferCommand( TemporaryFolder folder, String sourceFile) throws IOException, InterruptedException { return createClangInferCommand( folder, sourceFile, Language.ObjC, true, getXcodeRoot() + IPHONESIMULATOR_ISYSROOT_SUFFIX, null, false); } public static ImmutableList createObjCInferCommandWithMLBuckets( TemporaryFolder folder, String sourceFile, String ml_bucket, boolean arc) throws IOException, InterruptedException { return createClangInferCommand( folder, sourceFile, Language.ObjC, true, getXcodeRoot() + IPHONESIMULATOR_ISYSROOT_SUFFIX, ml_bucket, arc); } public static ImmutableList createObjCPPInferCommand( TemporaryFolder folder, String sourceFile) throws IOException, InterruptedException { return createClangInferCommand( folder, sourceFile, Language.ObjCPP, true, getXcodeRoot() + IPHONESIMULATOR_ISYSROOT_SUFFIX, null, false); } public static ImmutableList createiOSInferCommandFrontend( TemporaryFolder folder, String sourceFile) throws IOException, InterruptedException { return createClangInferCommand( folder, sourceFile, Language.ObjC, false, getXcodeRoot() + IPHONESIMULATOR_ISYSROOT_SUFFIX, null, false); } public static ImmutableList createiOSInferCommand( TemporaryFolder folder, String sourceFile) throws IOException, InterruptedException { return createClangInferCommand( folder, sourceFile, Language.ObjC, true, getXcodeRoot() + IPHONESIMULATOR_ISYSROOT_SUFFIX, null, false); } public static ImmutableList createiOSInferCommandWithMLBuckets( TemporaryFolder folder, String sourceFile, String bucket, boolean arc) throws IOException, InterruptedException { return createClangInferCommand( folder, sourceFile, Language.ObjC, true, getXcodeRoot() + IPHONESIMULATOR_ISYSROOT_SUFFIX, bucket, arc); } @Nullable public static File runInferFrontend(ImmutableList inferCmd) throws IOException, InterruptedException, InferException { runCommand(inferCmd, TestType.FRONTEND); return dotFile; } private static InferResults runInfer( ImmutableList inferCmd, Language lang) throws IOException, InterruptedException, InferException { String inferCmdString = Joiner.on(' ').join(inferCmd); InferResults results = inferResultsMap.get(inferCmdString); if (results == null) { if (lang == Language.Java) checkLibraries(); runCommand(inferCmd, TestType.END_TO_END); String errorString = getErrors(bugsFile); results = new InferResults(inferCmd); if (lang == Language.Java) results.parseJavaInferResultsFromString(errorString); else if (lang == Language.C || lang == Language.CPP || lang == Language.ObjCPP) results.parseCInferResultsFromString(errorString); else if (lang == Language.ObjC) results.parseObjCInferResultsFromString(errorString); inferResultsMap.put(inferCmdString, results); } return results; } public static InferResults runInferJava(ImmutableList inferCmd) throws IOException, InterruptedException, InferException { return runInfer(inferCmd, Language.Java); } public static InferResults runInferC(ImmutableList inferCmd) throws IOException, InterruptedException, InferException { return runInfer(inferCmd, Language.C); } public static InferResults runInferCPP(ImmutableList inferCmd) throws IOException, InterruptedException, InferException { return runInfer(inferCmd, Language.CPP); } public static InferResults runInferObjC(ImmutableList inferCmd) throws IOException, InterruptedException, InferException { return runInfer(inferCmd, Language.ObjC); } public static InferResults runInferObjCPP(ImmutableList inferCmd) throws IOException, InterruptedException, InferException { return runInfer(inferCmd, Language.ObjCPP); } private static void runCommand( ImmutableList inferCmd, TestType testType) throws IOException, InterruptedException, InferException { ProcessBuilder pb = new ProcessBuilder(inferCmd); Map env = pb.environment(); env.put("INFER_REPORT_ASSERTION_FAILURE", "1"); Process process = pb.start(); StringBuilder stderr = new StringBuilder(); try (BufferedReader bufferedReader = new BufferedReader( new InputStreamReader( process.getErrorStream()))) { String line = null; while ((line = bufferedReader.readLine()) != null) { stderr.append(line + "\n"); } } process.waitFor(); File file = null; if (testType == TestType.END_TO_END) { file = bugsFile; } else if (testType == TestType.FRONTEND) { getDotFile(); file = dotFile; } if (file == null || !file.exists()) { String fileNotFoundMessage = file == null ? "" : "\n\nFile " + file + " not found."; throw new InferException( "There was an error while calling Infer." + "\n\nCommand output:\n" + stderr + "\nCommand: " + Joiner.on(' ').join(inferCmd) + fileNotFoundMessage + "\n=========================================================================="); } } static String getErrors(File file) throws IOException { String s = ""; String line = ""; try (BufferedReader br = new BufferedReader(new FileReader(file))) { br.readLine(); while ((line = br.readLine()) != null) { s += line + "\n"; } } return s; } private static String getBootClasspath() { String current_dir = System.getProperty("user.dir"); String bootclasspath = current_dir + ANDROID; return bootclasspath; } private static String getClasspath() { String current_dir = System.getProperty("user.dir"); StringBuilder classpath = new StringBuilder(); for (String library : LIBRARIES) { classpath.append(current_dir); classpath.append(library); classpath.append(":"); } classpath.deleteCharAt(classpath.length() - 1); return classpath.toString(); } private static void checkLibraries() throws InferException { String current_dir = System.getProperty("user.dir"); for (String lib_file : LIBRARIES) { File lib = new File(current_dir + lib_file); if (!lib.exists()) { throw new InferException("File " + lib_file + " not found."); } } } private static File createResultsDir(TemporaryFolder folder) { try { resultsDir = folder.newFolder("infer_out"); return resultsDir; } catch (IOException e) { e.printStackTrace(); System.exit(1); return null; // unreachable } } private static void getDotFile() { File captured = new File(resultsDir, CAPTURED_FOLDER); if (captured.exists()) { File f = new File(captured, captured.list()[0]); dotFile = new File(f, DOT_FILE_NAME); } else { dotFile = null; } } }