Awesome
Complete Shadow Symbolic Execution with Java PathFinder
This repository provides the tool ShadowJPF+ and the evaluation subjects for the paper Complete Shadow Symbolic Execution with Java PathFinder accepted for the Java PathFinder workshop 2019, co-located with ASE 2019. The paper will be published in the ACM SIGSOFT Software Engineering Notes, and a pre-print is available here.
Authors: Yannic Noller, Hoang Lam Nguyen, Minxing Tang, Timo Kehrer and Lars Grunske.
The repository includes:
- the experiment subjects: jpf-shadow-plus/src/examples/jpf2019,
- the raw output files can be found in the archive: evaluation-results-archive.zip,
- the source code for ShadowJPF+: jpf-core, jpf-symbc, and jpf-shadow-plus,
- the source code for ShadowJPF to rerun our evaluation: jpf-shadow,
- and an install script.
Tool
JPFShadow+ is built on top of the Symbolic PathFinder and its shadow symbolic execution extension JPFShadow.
Requirements
- Git, Ant, Build-Essentials
- Java JDK = 1.8
- recommended: Ubuntu 18.04.1 LTS
How to install and run
Be aware that the instructions have been tested for Unix systems only.
-
First you need to build all projects. Therefore, you can execute the install.sh script from this folder (Caution: the script may override an existing site.properties file). Otherwise follow the instructions: Please create the file "~/.jpf/site.properties" similar to the provided example file. This is necessary to tell JPF the paths of all extensions. The build will not work without! Afterwards, please use the provided ant scripts int the source folders and follow the order: jpf-core, jpf-symbc, and then either jpf-shadow or jpf-shadow-plus.
-
We use as constraint solver Z3, which need to be configured in the java library path at the command call. You see that we use the DYLD_LIBRARY_PATH variable, which is the right one for macOS. Please adapt this for your platform, e.g. for Windows one need to adapt the classpath syntax and the library path should be named "LD_LIBRARY_PATH". Please be sure that your system is able the definition of the java library path. E.g., OS X El Capitan needs to disable the SIP.
-
To run the jpf-shadow-plus experiments [Note: this commands runs longer (~30min)]:
DYLD_LIBRARY_PATH=jpf-symbc/lib java -cp "jpf-shadow-plus/build/*:jpf-core/build/*:jpf-symbc/build/*:jpf-symbc/lib/*:SootConnection/build/*:SootConnection/lib/*" gov.nasa.jpf.shadow.RunnerShadowPlus
- To run the jpf-shadow experiments [Note: this commands runs longer (~3min)]:
DYLD_LIBRARY_PATH=jpf-symbc/lib java -cp "jpf-shadow/build/*:jpf-core/build/*:jpf-symbc/build/*:jpf-symbc/lib/*" gov.nasa.jpf.shadow.RunnerShadow_JPF
Step (3) and (4) store all results in the folder ./evaluations-results/. In order to review the files, please scroll down to the end of each file and check the generated path conditions. You may also for "statistics" to get the internal statistics of SPF.
If you want to modify the benchmark execution of jpf-shadow-plus: the class RunnerShadowPlus defines in its main method which subjects will be executed, and the class SymExParameter defines the properties of the subjects. You can similarly adapt the benchmark execution of jpf-shadow. Note: You have to re-compile after the modifications.
Maintainers
- Yannic Noller (yannic.noller at acm.org)
License
This project is licensed under the Apache-2.0 License - see the LICENSE file for details