Introduction

The goal of the project is to implement a small static analyzer by abstract interpretation for a simple language.

The analyzer will be based on the same numeric abstract domains as the ones seen in the course and lab sessions. But, it will compute the abstract semantics using a different iteration method. In the project, the program is first converted into a control-flow graph by a front-end. Then, abstract values corresponding to sets of possible memory environments are attached to graph nodes (program locations) and propagated along the graph arcs (program instructions) until stabilization. This makes it easy to support non-structured control-flow (such as gotos) as well as inter-procedural analysis.

The analyzer comprises three parts:

Organization

The project must be delivered before Sunday, May 25th, 6pm ECT.

You can work alone or in group of 2. Please, favor the latter.

The project must be delivered by email to me, in the form of a compressed archive (with tar or zip), called yournames{.tgz, .zip} which must contain a directory called yournames (example: dupont-durand ).

This directory must contains the source files of your analyzer. Executing make compress create compressed tar containing the sources of your analyzer.

You are not allowed to use any other language than OCaml! However, you are allowed to modify as much parts of the analyzer as you want as long as your analyzer is able to analyze the original language given by the frontend. You can also add any dependency to the project.

The analyzer itself is expected to be a stand-alone program that takes as argument a source file containing a main function, analyzes it (including the initialization code and the body of the main function), and outputs:

Since the soundness and precision of your analyzer will be tested automatically, make sure that possible assertions failures are reported in the following format: File "filename.c", line n: Assertion failure ...

The directory should also contains:

Language and front-end

The language syntax is a simple subset of C, a description of the syntax is available.

The sources of the front-end are available here.

The front-end works as follows:

The analyzer.ml file shows how to parse a file, translate it into a graph, and print the resulting graph. By typing make, you get a program that takes as argument a source file and that outputs information about the graph as well as a cfg.dot graph file.

Please read the description of the control-flow graph data-structure. The data-structure is defined in the file controlFlowGraph.ml. In the following, you will only need to manipulate control-flow graphs; hence, most of abstractSyntax.ml can be ignored (only the definition of the operators is reused in controlFlowGraph.ml).

You can build the project using dune build, and you can test your analyzer using dune exec -- analyzer/analyzer.exe <file>. For convenience, a script launching your analyzer on all the tests is available in the scripts folder. Feel free to modify this script to add more tests or to change the output.

Expected work

Iterator

You must implement an iterator, able to traverse the control-flow graph and compute an abstract information at each node. Note that you must support arbitrary gotos, including backward gotos (which can be used to disguise loops) and procedures (but not recursive ones).

The iterator should be generic in the choice of the abstract domain: i.e., a functor parameterized by a module obeying the DOMAIN signature discussed below.

Make sure that your iterator always terminates (employing widening if needed).

Hints

We suggest employing a classic worklist algorithm, which maintains a map from nodes to abstract values as well as a set of nodes to update. At each step, a node is extracted from the worklist and updated. The update consists in:

Other iteration algorithms exist, in particular those proposed by François Bourdoncle.

In case of loops or backward gotos, the control-flow graph will have cycles, causing the same nodes to be considered many times. In order for the algorithm to finish in finite time and be efficient in practice, you will need to apply widening at selected widening points to enforce convergence. It is sufficient that any cycle in the control-flow graph has at least one node where widening is applied. You can for instance select as widening nodes all loop heads and the destination of backward gotos.

Abstract domains

You must implement the following numeric abstract domains:

Remember that most of these domains were described in the lectures ! More information can be found in this document, including the congruence domain which was not presented in the lectures.

Please allow to choose the domain of your analyzer as an input argument. For instance, calling the analyzer with the --domain interval should perform the analysis on the constants abstract domain.

You are only allowed to use APRON to implement the polyhedral domain.

Hints

In order to test your iterator before you design your abstract domains, you can start by implementing a concrete domain first as we did in the practical sessions, i.e., a domain manipulating sets of program environments without any abstraction. Note that, in this case, the analyzer may not always terminate. The concrete interpretation is optional.

The file domain.ml proposes a signature DOMAIN for abstract (or concrete) domains. In particular:

We suggest that you first program abstract domains able to abstract sets of integers (e.g., a single interval), following the signature VALUE_DOMAIN in valueDomain.ml. An abstract environment is then:

The VALUE_DOMAIN signature suggests defining operators unary and binary to evaluate, in the abstract, the effect of various numeric operators, such as addition, multiplication, etc. They can be directly used to implement assign required by DOMAIN. This is simply a generalization of interval arithmetic to arbitrary, non-necessarily interval, abstractions of sets of values. You are required to support all 5 operations +, -, *, /, % in assignments in a precise way (i.e., don’t always return the top element).

Modeling a guard is more difficult: given the expected result of the operator, such as the fact that x<y is true, we must use this information to refine the information we have on the variables x and y. This is the purpose of the compare operation in the signature VALUE_DOMAIN. More precisely, compare x y op r returns a pair x',y' of abstract environments that refine the arguments x and y: x' abstracts the subset of integer values i from x such that there exists a value j in y satisfying i op j; and likewise for y'.

In case of more complex expressions, featuring arithmetic operators, such as x+y<z, once an abstract information on the value of x+y is deduced from the fact that it is smaller than z, the information must be propagated to derive information on x and y. This is the role of the bwd_unary and bwd_binary operators. For instance, similarly to compare, bwd_binary x y op r returns a pair of abstract environments x',y' that refine the argument x, y: x' abstracts the subset of values i from x such that, for some value j in y, i op j is in r; and likewise for y'. The full algorithm on an arbitrary expression works in two phases: it first annotates the expression tree by bottom-up evaluation (from leaves to root) using unary and binary; and then refines the values by top-down propagation (from root to leaves) using bwd_unary and bwd_binary. The algorithm is actually a standard constraint programming algorithm known as HC4-revise; it is described in this paper (see Algorithms 2, 3 and 4).

As the guards are more complex, you are only required to support +, -, and * in a precise way. For other operators, you can soundly set x’,y’ to x,y (i.e., no refinement). However, you are required to support all the boolean operators !, &&, || in guards.

As hinted above, the implementation of a DOMAIN for constants and for intervals can be derived in a generic way from that of a VALUE_DOMAIN. We thus suggest to implement a functor taking a VALUE_DOMAIN module as argument and returning a VALUE module, and program separately an instance of VALUE_DOMAIN implementing constants and another one representing intervals.

Extensions

You must implement at least one of the following extensions per person in the group.

Backward analysis

This extension should be performed when a --backward flag is added to the command line.

The analysis considered in part 2 is forward: given the memory environment at the beginning of the program, an abstraction of the environments reachable during program execution is computed. The analysis outputs a map from graph nodes to abstract invariants. A backward analysis starts form this map, and considers some target location in the middle of the program and a target abstract environment. It then traces backward the program execution from the target location to refine the result of the forward analysis by only considering executions that will reach the target location with the target environment.

In this extension, we target the environments that do not satisfy an assertion. The analysis will thus help discovering which program executions cause the assertion to fail. You should provide examples illustrating how your backward analysis achieves this.

Hints

Building a backward analysis requires two changes with respect to a forward analysis:

Karr’s linear equality analysis

This extension requires you to implement an analysis using the linear equality abstract domain. It mainly uses algorithms from linear algebra. You will implement a module obeying the DOMAIN signature that can be plugged into your iterator.

Relational analyses in the presence of loops, where a relational invariant must be found (which is not possible with non-relational domains such as intervals). You should provide a few examples illustrating this point and discuss the results of your analysis on these examples, comparing in particular this analysis and interval analyses.

More information can be found in this document.

Partitioning domain

This extension requires you to implement an abstract domain functor able to represent disjunctions of abstract elements of a base domain, for instance, associate several intervals to a variable. This is especially useful to avoid loosing precision at control-flow joins, and to represent non-convex invariants. You will see in the course several ways to design a disjunctive domain, and you can choose whichever way you wish between state partitioning and trace partitioning). You are encouraged to add directives to the language to specify easily where the analyzer should perform partitioning.

CompCert’s frontend

Instead of having a simple and minimal front-end, you could try to the Clight’s language of CompCert. It should allow you to test your analyzer on real examples.

Other Ideas

After discussing it with me!

Resources and Bibliography

Front-end

Software:

On the HC4-revise algorithm:

On backwards analysis:

On partitioning domains: