aboutsummaryrefslogtreecommitdiff
path: root/bazel/FuzzTargetTestWrapper.java
blob: 59b158441a470da30bd8733891e8b01a2f697ab0 (plain)
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
// Copyright 2021 Code Intelligence GmbH
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

import com.google.devtools.build.runfiles.Runfiles;
import java.io.File;
import java.io.IOException;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
import java.util.stream.Stream;

public class FuzzTargetTestWrapper {
  public static void main(String[] args) {
    String driverActualPath;
    String jarActualPath;
    Runfiles runfiles;
    try {
      runfiles = Runfiles.create();
      driverActualPath = runfiles.rlocation(rlocationPath(args[0]));
      jarActualPath = runfiles.rlocation(rlocationPath(args[1]));
    } catch (IOException | ArrayIndexOutOfBoundsException e) {
      e.printStackTrace();
      System.exit(1);
      return;
    }

    ProcessBuilder processBuilder = new ProcessBuilder();
    Map<String, String> environment = processBuilder.environment();
    // Ensure that Jazzer can find its runfiles.
    environment.putAll(runfiles.getEnvVars());

    // Crashes will be available as test outputs. These are cleared on the next run,
    // so this is only useful for examples.
    String outputDir = System.getenv("TEST_UNDECLARED_OUTPUTS_DIR");
    List<String> command =
        Stream
            .concat(Stream.of(driverActualPath, String.format("-artifact_prefix=%s/", outputDir),
                        String.format("--reproducer_path=%s", outputDir), "-seed=2735196724",
                        String.format("--cp=%s", jarActualPath)),
                Arrays.stream(args).skip(2))
            .collect(Collectors.toList());
    processBuilder.inheritIO();
    processBuilder.command(command);

    try {
      int exitCode = processBuilder.start().waitFor();
      // Assert that we either found a crash in Java (exit code 77) or a sanitizer crash (exit code
      // 76).
      if (exitCode != 76 && exitCode != 77) {
        System.exit(3);
      }
      String[] outputFiles = new File(outputDir).list();
      if (outputFiles == null) {
        System.exit(4);
      }
      // Verify that libFuzzer dumped a crashing input.
      if (Arrays.stream(outputFiles).noneMatch(name -> name.startsWith("crash-"))) {
        System.exit(5);
      }
    } catch (IOException | InterruptedException e) {
      e.printStackTrace();
      System.exit(2);
    }
    System.exit(0);
  }

  // Turns the result of Bazel's `$(rootpath ...)` into the correct format for rlocation.
  private static String rlocationPath(String rootpath) {
    if (rootpath.startsWith("external/")) {
      return rootpath.substring("external/".length());
    } else {
      return "jazzer/" + rootpath;
    }
  }
}