Skip to content

bigolol/disproveJavaDataDepViaKeyAndJoanaGui

Repository files navigation

CombinedApproach - Automatic and Precise Noninterference Verification of Java Programs

This is a project which uses both JOANA and KeY to try and analyze security risks (i.e., unwanted information flow) in Java programs. The way it works is explained in more depth in this paper: https://formal.iti.kit.edu/biblio/?lang=en&key=BeckertBischofEA2017

The tool provides a GUI which gives the user access to all internal functionality. It supports two file formats: ".joak" (JOana And Key) and ".dispro" (DISproving PROgress). The former describes where to find the Java project and how to annotate sources and sinks. It is recommended that files of this type are generated using the joanakeygui (disclaimer: it is very rough around the edges).

Getting Started

Before starting, you need to create a jar file from your java sources, e.g., for a main class M in the package pkg, a manifest-file "manifest.mf" (reading "Main-Class: pkg.M"), do the following:

jar cfm M.jar manifest.mf pkg/*

You can now load the file M.jar and the folder pkg with joanakeygui.

The ".dispro" file saves the information regarding the progress of the disproving process. Whenever a ".joak" file is loaded (using "file -> load .joak" in the main menu), it is immediately transformed into a ".dispro" file. The ".dispro" file also holds all information necessary to continue disproving information flows in the program.

Whenever one is not in the process of disproving a summary edge, it is possible to save the progress using "File -> Save Progress". Be advised that every time the progress is saved, a new instance of the system dependence graph (SDG) is also saved. This is necessary since the SDG changed with every summary edge removed from it. It is possible to delete the old instances if one is sure they are not needed any more.

After loading either a ".joak" or a ".dispro" file, the buttons at the bottom of the GUI window become accessible. The various lists are being filled with information about the safety violations found by JOANA. The leftmost one shows which summary edges exist in the current chop and which actual method they correspond to. By clicking on one of them, it is possible to view the method code in the topmost codearea. The other lists show which formal nodetuples correspond to the summary edge and which line positions (beginning at the top of the method) contain loops. By clicking on one of these line positions, one can view the loop invariant currently used by the system in the bottom left codearea. This loop invariant can be changed and saved by clicking the button "Save Loop Invariant". It is also possible to reset the loop invariant by clicking the corresponding button. In the bottom right codearea it shows the currently used contract for this summary edge. This is what KeY would use when trying to disprove the information flow. It is currently not possible to change this in the program.

To disprove a specific edge, select it and click the button "Try Disprove Selected". The system will generate a Java project containing only the necessary classes and methods, where all called methods are annotated with their most general contract. If KeY manages to automatically disprove the summary edge, it will be removed. Otherwise, it is also possible to manually try and disprove a summary edge. To do so, select it and then click on "Open Selected in KeY". This will open the project in KeY. If one is succesful in manually disproving the information flow, remove it by clicking on "Mark as Disproved".

The last possible choice is the auto pilot (option "Run Auto"). It traverses through all edges one by one (in an order which tries to disprove the easiest edges first) and tries to disprove them. If it is not successful, it moves on to the next one.

Examples

You can find a small number of examples in the folder testdata. You can load the corresponding "*.joak" files directly from the disproveviakeyandjoanagui tool. Currently these range from the very simple examples plusminusfalsepos and multipleClassesArrFalsePos to the more complex ones toyVoting and jzip. Both plusminusfalsepos and toyVoting have been presented in the HotSpot paper mentioned above.

Future Development

As of now, this repository will not be updated anymore and future development continues in the internal repository py8074/keyjoana. If you are interested in the current version, please contact us and we provide executables. Requests for sensible cooperations are also welcome.

Preceeding Repositories

This projects builds upon advances made in the following repositories (more recent projects are listed first):

Respective authors are listed in the following section.

Contributors

This software was mainly designed and implemented by the following students:

For more information, please contact Mihai Herda or Michael Kirsten.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages