hub-se / jpf-shadow-plus

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DOI

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:

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.

  1. 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.

  2. 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.

  3. 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
  1. 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

About

License:Apache License 2.0


Languages

Language:Java 99.9%Language:Shell 0.0%Language:Ruby 0.0%Language:Batchfile 0.0%Language:C 0.0%Language:Roff 0.0%