- Feature Name: Line coverage (
line-coverage
) - Feature Request Issue: model-checking#2610
- RFC PR: model-checking#2609
- Status: Unstable
- Version: 0
- Proof-of-concept: model-checking#2609 (Kani) + model-checking/kani-vscode-extension#122 (Kani VS Code Extension)
Add verification-based line coverage reports to Kani.
Nowadays, users can't easily obtain verification-based coverage reports in Kani. Generally speaking, coverage reports show which parts of the code under verification are covered and which are not. Because of that, coverage is often seen as a great metric to determine the quality of a verification effort.
Moreover, some users prefer using coverage information for harness development and debugging. That's because coverage information provides users with more familiar way to interpret verification results.
This RFC proposes adding a new option for verification-based line coverage reports to Kani. As mentioned earlier, we expect users to employ this coverage-related option on several stages of a verification effort:
- Learning: New users are more familiar with coverage reports than property-based results.
- Development: Some users prefer coverage results to property-based results since they are easier to interpret.
- CI Integration: Users may want to enforce a minimum percentage of code coverage for new contributions.
- Debugging: Users may find coverage reports particularly helpful when inputs are over-constrained (missing some corner cases).
- Evaluation: Users can easily evaluate where and when more verification work is needed (some projects aim for 100% coverage).
Moreover, adding this option directly to Kani, instead of relying on another tools, is likely to:
- Increase the speed of development
- Improve testing for coverage features
Which translates into faster and more reliable coverage options for users.
The goal is for Kani to generate code coverage report per harness in a well established format, such as LCOV, and possibly a summary in the output. For now, we will focus on an interim solution that will enable us to assess the results of our instrumentation and enable integration with the Kani VS Code extension.
For the first version, this experimental feature will report verification results along coverage reports.
Because of that, we'll add a new section Coverage results
that shows coverage results for each individual harness.
In the following, we describe an experimental output format. Note that the final output format and overall UX is to be determined.
The Coverage results
section for each harness will produce coverage information in a CSV format as follows:
<file>, <line>, <status>
where <status>
is either FULL
, PARTIAL
or NONE
.
As mentioned, this format is designed for evaluating the native instrumentation-based design and is likely to be substituted with another well-established format as soon as possible.
Users are not expected to consume this output directly. Instead, coverage data is to be consumed by the Kani VS Code extension and displayed as in the VS Code Extension prototype.
How to activate and display coverage information in the extension is out of scope for this RFC. That said, a proof-of-concept implementation is available here.
We will add a new unstable --coverage
verification option to Kani which will require -Z line-coverage
until this feature is stabilized.
We will also add a new --coverage-checks
option to kani-compiler
, which will result in the injection of coverage checks before each Rust statement and terminator1.
This option will be supplied by kani-driver
when the --coverage
option is selected.
These options will cause Kani to inject coverage checks during compilation and postprocess them to produce the coverage results sections described earlier.
Coverage checks are a new class of checks similar to cover
checks.
The main difference is that users cannot directly interact with coverage checks (i.e., they cannot add or remove them manually).
Coverage checks are encoded as an assert(false)
statement (to test reachability) with a fixed description.
In addition, coverage checks are:
- Hidden from verification results.
- Postprocessed to produce coverage results.
In the following, we describe the injection and postprocessing procedures to generate coverage results.
The injection of coverage checks will be done while generating code for basic blocks. This allows us to add one coverage check before each statement and terminator, which provides the most accurate results1. It's not completely clear how this compares to the coverage instrumentation done in the Rust compiler, but an exploration to use the compiler APIs revealed that they're quite similar2.
The injection of coverage checks often results in one or more checks per line (assuming a well-formatted program). We'll postprocess these checks so for each line
- if all checks are
SATISFIED
: returnFULL
- if all checks are
UNSATISFIED
: returnNONE
- otherwise: return
PARTIAL
We won't report coverage status for lines which don't include a coverage check.
Kani has relied on cbmc-viewer
to report coverage information since the beginning.
In essence, cbmc-viewer
consumes data from coverage-focused invocations of CBMC and produces an HTML report containing (1) coverage information and (2) counterexample traces.
Recently, there have been some issues with the coverage information reported by cbmc-viewer
(e.g., #2048 or #1707), forcing us to mark the --visualize
option as unstable and disable coverage results in the reports (in #2206).
However, it's possible for Kani to report coverage information without cbmc-viewer
, as explained before.
This would give Kani control on both ends:
- The instrumentation performed on the program. Eventually, this would allow us to report more precise coverage information (maybe similar to Rust's instrument-based code coverage).
- The format of the coverage report to be generated. Similarly, this would allow us to generate coverage data in different formats (see #1706 for GCOV, or #1777 for LCOV). While technically this is also doable from
cbmc-viewer
's output, development is likely to be faster this way.
As an alternative, we could fix and use cbmc-viewer
to report line coverage.
Most of the issues with cbmc-viewer
are generally due to:
- Missing locations due to non-propagation of locations in either Kani or CBMC.
- Differences in the definition of a basic block in CBMC and Rust's MIR.
- Scarce documentation for coverage-related options (i.e.,
--cover <option>
) in CBMC. - Limited testing with Rust code in
cbmc-viewer
.
Note that (1) is not exclusive to coverage results from cbmc-viewer
.
Finding checks with missing locations and propagating them if possible (as suggested in this comment) should be done regardless of the approach used for line coverage reports.
In contrast, (2) and (3) can be considered the main problems for Kani contributors to develop coverage options on top of cbmc-viewer
and CBMC.
It's not clear how much effort this would involve, but (3) is likely to require substantial documentation contributions.
But (4) shouldn't be an issue if we decided to invest in cbmc-viewer
.
Finally, the following downside must be considered:
cbmc-viewer
can report line coverage but the path to report region-based coverage may involve a complete rewrite.
One of the long-term goals for this feature is to provide a UX that is familiar for users. This is particularly relevant when talking about output formats. Some services and frameworks working with certain coverage output formats have become quite popular.
However, this version doesn't consider common output formats (i.e., GCOV or LCOV) since coverage results will only be consumed by the Kani VS Code Extension at first. But other output formats will be considered in the future.
Open questions:
- Do we want to report line coverage as
COVERED
/UNCOVERED
orFULL
/PARTIAL
/NONE
? - Should we report coverage results and verification results or not? Doing both is likely to result in worse performance. We have to perform an experimental evaluation with hard benchmarks.
- Should we instrument dependencies or not? Doing so is likely to result in worse performance. We have to perform an experimental evaluation.
- What should be the final UX for this feature? For instance, we could print a coverage summary and generate a report file per harness. But it's not clear if individual results are relevant to users, so another possibility is to automatically combine results.
- What's the most appropriate and well-established output format we can emit?
- Determine if there are cases in which coverage information is confusing for users (due to, e.g., constant propagation or other compiler optimizations). How can work around such cases?
- Do we want to report coverage information for dependencies? For CI, most users may be only interested in their code. Most coverage frameworks have an aggregation tool with an option to exclude dependencies from coverage metrics.
Feedback to gather before stabilization:
- Compare the injection-based approach in this RFC with Rust's instrument-based code coverage?
We expect many incremental improvements in the coverage area:
- Consuming the output produced in coverage results from the Kani VS Code extension.
- Building a tool that produces coverage results by combining the coverage results of more than one harness.
- Including span information in coverage checks and building region-based coverage reports.
- Adding new user-requested coverage formats such as GCOV #1706 or LCOV #1777.
Footnotes
-
We have experimented with different options for injecting coverage checks. For example, we have tried injecting one before each basic block, or one before each statement, etc. The proposed option (one before each statement AND each terminator) gives us the most accurate results. ↩ ↩2
-
In particular, comments in
CoverageSpan
andgenerate_coverage_spans
hint that the initial set of spans come fromStatement
s andTerminators
. This comment goes in detail about the attempt to use the compiler APIs. ↩