Scroll to navigation

GOTO-INSTRUMENT(1) User Commands GOTO-INSTRUMENT(1)

NAME

goto-instrument - Perform analysis or instrumentation of goto binaries

SYNOPSIS

show help
show version and exit
perform analysis or instrumentation

DESCRIPTION

goto-instrument reads a GOTO binary, performs a given program transformation, and then writes the resulting program as GOTO binary on disk.

OPTIONS

Dump Source:

generate C source
generate a C header for types local in m
generate C++ source
generate C source expanding libc includes
generate C source with all includes
include input generator in output
print program as constrained horn clauses

Diagnosis:

show the properties, but don't run analysis
generate HTML property documentation
generate Latex property documentation
show loaded symbol table
list symbols with type information
show loaded goto program
list loaded goto functions
count effective lines of code
list full path names of lines containing code
count the total number of bits of global objects
print statistics about control-flow graph paths
show all source locations
generate CFG graph in DOT format
show verbose internal representation of the program
list functions without body
list all function calls with their arguments
show graph of function calls
show graph of function calls potentially reachable from main function
show the class hierarchy
enable additional well-formedness checks on the goto program
enable additional well-formedness checks on the SSA representation
check the well-formedness of the passed in GOTO binary and then exit
do concrete execution

Data-flow analyses:

show struct members that might be concurrently accessed
show instructions that may be executed by more than one thread
show pointer expressions that are trivially dominated by a not-null check
show pointer expressions that are trivially dominated by a not-null check *and* used as a dereference operand
show points-to information (using value sets)
show may-alias information over globals
show procedure-local pointer analysis
perform escape analysis
show results of escape analysis
perform configurable bitvector analysis
show results of configurable bitvector analysis
perform interval analysis
show results of interval analysis
show maybe-uninitialized variables
show points-to information
show read-write sets
show function call sequences
show reaching definitions
show program-dependence graph
show single-entry-single-exit regions

Safety checks:

ignore user assertions
enable array bounds checks
enable pointer checks
enable memory leak checks
Enable memory cleanup checks: assert that all dynamically allocated memory is explicitly freed before terminating the program.
enable division by zero checks
enable signed arithmetic over- and underflow checks
enable arithmetic over- and underflow checks
enable pointer arithmetic over- and underflow checks
check whether values can be represented after type cast
check shift greater than bit-width
check floating-point for +/-Inf
check floating-point for NaN
checks that all enum type expressions have values in the enum range
checks that all pointers in pointer primitives are valid or null
include checks that are trivially true
check that label is unreachable
ignore assertions in built-in library
ignore user assertions
ignore user assumptions
convert user assertions to assumptions
add checks for uninitialized locals (experimental)
add check that call stack size of non-inlined functions never exceeds n
add floating-point data race checks

Semantic transformations:

By default, cbmc(1) treats volatile variables the same as non-volatile variables. That is, it assumes that a volatile variable does not change between subsequent reads, unless it was written to by the program. With the above options, goto-instrument can be instructed to instrument the given goto program such as to (1) make reads from all volatile expressions non-deterministic (--nondet-volatile), (2) make reads from specific variables non-deterministic (--nondet-volatile-variable), or (3) model reads from specific variables by given models (--nondet-volatile-model).

Below we give two usage examples for the options. Consider the following test, for function get_celsius and with harness test_get_celsius:


#include <assert.h> #include <limits.h> #include <stdint.h> // hardware sensor for temperature in kelvin extern volatile uint16_t temperature; int get_celsius() {
if (temperature > (1000 + 273)) {
return INT_MIN; // value indicating error
}
return temperature - 273; } void test_get_celsius() {
int t = get_celsius();
assert(t == INT_MIN || t <= 1000);
assert(t == INT_MIN || t >= -273); }

Here the variable temperature corresponds to a hardware sensor. It returns the current temperature on each read. The get_celsius function converts the value in Kelvin to degrees Celsius, given the value is in the expected range. However, it has a bug where it reads temperature a second time after the check, which may yield a value for which the check would not succeed. Verifying this program as is with cbmc(1) would yield a verification success. We can use goto-instrument to make reads from temperature non-deterministic:


goto-cc -o get_celsius_test.gb get_celsius_test.c goto-instrument --nondet-volatile-variable temperature \
get_celsius_test.gb get_celsius_test-mod.gb cbmc --function test_get_celsius get_celsius_test-mod.gb

Here the final invocation of cbmc(1) correctly reports a verification failure.

Simply treating volatile variables as non-deterministic may for some use cases be too inaccurate. Consider the following test, for function get_message and with harness test_get_message:


#include <assert.h> #include <stdint.h> extern volatile uint32_t clock; typedef struct message {
uint32_t timestamp;
void *data; } message_t; void *read_data(); message_t get_message() {
message_t msg;
msg.timestamp = clock;
msg.data = read_data();
return msg; } void test_get_message() {
message_t msg1 = get_message();
message_t msg2 = get_message();
assert(msg1.timestamp <= msg2.timestamp); }

The harness verifies that get_message assigns non-decreasing time stamps to the returned messages. However, simply treating clock as non-deterministic would not suffice to prove this property. Thus, we can supply a model for reads from clock:


// model for reads of the variable clock uint32_t clock_read_model() {
static uint32_t clock_value = 0;
uint32_t increment;
__CPROVER_assume(increment <= 100);
clock_value += increment;
return clock_value; }

The model is stateful in that it keeps the current clock value between invocations in the variable clock_value. On each invocation, it increments the clock by a non-deterministic value in the range 0 to 100. We can tell goto-instrument to use the model clock_read_model for reads from the variable clock as follows:


goto-cc -o get_message_test.gb get_message_test.c goto-instrument --nondet-volatile-model clock:clock_read_model \
get_message_test.gb get_message_test-mod.gb cbmc --function get_message_test get_message_test-mod.gb

Now the final invocation of cbmc(1) reports verification success.

instruments an interrupt service routine
instruments memory-mapped I/O
add nondeterministic initialization of variables with static lifetime
same as nondet-static except for the variable e (use multiple times if required)
add nondeterministic initialization of variables with static lifetime matching regex r
instruments a call to f at the beginning, the exit, or a branch point, respectively
prepends a call to callee in the body of caller
instruments checks to assert that all call sequences match seq
convert each call to an undefined function to assume(false)
generate assert(false) at end of function
This transformation inserts implementations of functions without definition, i.e., a body. The behavior of the generated function is chosen via --generate-function-body-options option:
One of assert-false, assume-false, nondet-return, assert-false-assume-false and havoc[,params:regex][,globals:regex][,params:p_n1;p_n2;..] (default: nondet-return)
assert-false: The body consists of a single command: assert(0).
assume-false: The body consists of a single command: assume(0).
assert-false-assume-false: Two commands as above.
nondet-return: The generated function returns a non-deterministic value of its return type.
havoc[,params:p-regex][,globals:g-regex]: Assign non-deterministic values to the targets of pointer-to-non-constant parameters matching the regular expression p-regex, and non-constant globals matching g-regex, and then (in case of non-void function) returning as with nondet-return. The following example demonstrates the use:


// main.c int global; const int c_global; int function(int *param, const int *c_param);

Often we want to avoid overwriting internal symbols, i.e., those with an __ prefix, which is done using the pattern (?!__).


goto-cc main.c -o main.gb goto-instrument main.gb main-out.gb \
--generate-function-body-options 'havoc,params:(?!__).*,globals:(?!__).*' \
--generate-funtion-body function

This leads to a GOTO binary equivalent to the following C code:


// main-mod.c int function(int *param, const int *c_param) {
*param = nondet_int();
global = nondet_int();
return nondet_int(); }

The parameters should that should be non-deterministically updated can be specified either by a regular expression (as above) or by a semicolon-separated list of their numbers. For example havoc,params:0;3;4 will assign non-deterministic values to the first, fourth, and fifth parameter.

Note that only parameters of pointer type can be havoced and goto-instrument will produce an error report if given a parameter number associated with a non-pointer parameter. Requesting to havoc a parameter with a number higher than the number of parameters a given function takes will also results in an error report.

Request a different implementation for a number of call-sites of a single function. The option --generate-havocing-body inserts new functions for selected call-sites and replaces the calls to the origin function with calls to the respective new functions.


// main.c int function(int *first, int *second, int *third); int main() {
int a = 10;
int b = 10;
int c = 10;
function(&a, &b, &c);
function(&a, &b, &c); }

The user can specify different behavior for each call-site as follows:


goto-cc main.c -o main.gb goto-instrument main.gb main-mod.gb \
--generate-havocing-body 'function,1,params:0;2,2,params:1'

This results in a GOTO binary equivalent to:


// main-mod.c int function_1(int *first, int *second, int *third) {
*first = nondet_int();
*third = nondet_int(); } int function_2(int *first, int *second, int *third) { *second = nondet_int(); } int main() {
int a = 10;
int b = 10;
int c = 10;
function_1(&a, &b, &c);
function_2(&a, &b, &c); }
pointer_name/target[,targets]* Replace function pointers by a user-defined set of targets. This may be required when --remove-function-pointers creates to large a set of direct calls. Consider the example presented for --remove-function-pointers. Assume that call will always receive pointers to either f or g during actual executions of the program, and symbolic execution for h is too expensive to simply ignore the cost of its branch.

To facilitate the controlled replace, we will label the places in each function where function pointers are being called, to this pattern:

function-name.function_pointer_call.N

where N is refers to the N-th function call via a function pointer in function-name, i.e., the first call to a function pointer in a function will have N=1, the fifth N=5 etc. Alternatively, if the calls carry labels in the source code, we can also refer to a function pointer as

function-name.label

To implement this assumption that the first call to a function pointer in function call an only be a call to f or g, use


goto-instrument --restrict-function-pointer \
call.function_pointer_call.1/f,g in.gb out.gb

The resulting output (written to GOTO binary out.gb) looks similar to the original example, except now there will not be a call to h:


void call(fptr_t fptr) {
int r;
if (fptr == &f) {
r = f(10);
} else if (fptr == &g) {
r = g(10);
} else {
// sanity check
assert(false);
assume(false);
}
return r; }

As another example imagine we have a simple virtual filesystem API and implementation like this:


typedef struct filesystem_t filesystem_t; struct filesystem_t {
int (*open)(filesystem_t *filesystem, const char *file_name); }; int fs_open(filesystem_t *filesystem, const char *file_name) {
filesystem->open(filesystem, file_name); } int nullfs_open(filesystem_t *filesystem, const char *file_name) { return -1; } filesystem_t nullfs_val = {.open = nullfs_open}; filesystem *const nullfs = &nullfs_val; filesystem_t *get_fs_impl() {
// some fancy logic to determine
// which filesystem we're getting -
// in-memory, backed by a database, OS file system
// - but in our case, we know that
// it always ends up being nullfs
// for the cases we care about
return nullfs; } int main(void) {
filesystem_t *fs = get_fs_impl();
assert(fs_open(fs, "hello.txt") != -1); }

In this case, the assumption is that in function main, fs can be nothing other than nullfs. But perhaps due to the logic being too complicated, symbolic execution ends up being unable to figure this out, so in the call to fs_open we end up branching on all functions matching the signature of filesystem_t::open, which could be quite a few functions within the program. Worst of all, if its address is ever taken in the program, as far as function pointer removal via --remove-function-pointers is concerned it could be fs_open itself due to it having a matching signature, leading to symbolic execution being forced to follow a potentially infinite recursion until its unwind limit.

In this case we can again restrict the function pointer to the value which we know it will have:


goto-instrument --restrict-function-pointer \
fs_open.function_pointer_call.1/nullfs_open in.gb out.gb
If you have many places where you want to restrict function pointers, it'd be a nuisance to have to specify them all on the command line. In these cases, you can specify a file to load the restrictions from instead, which you can give the name of a JSON file with this format:


{
"function_call_site_name": ["function1", "function2", ...],
... }

If you pass in multiple files, or a mix of files and command line restrictions, the final restrictions will be a set union of all specified restrictions.

Note that if something goes wrong during type checking (i.e., making sure that all function pointer replacements refer to functions in the symbol table that have the correct type), the error message will refer to the command line option --restrict-function-pointer regardless of whether the restriction in question came from the command line or a file.

Restrict a function pointer where symbol_name is the unmangled name, before labeling function pointers.
remove calls to functions without a body
add models of C library functions
allow malloc calls to return a null pointer
set malloc failure mode to assert-then-assume
set malloc failure mode to return null
track C string lengths and zero-termination
Create up to n non-deterministic C strings as entries to argv and set argc accordingly. In absence of such modelling, argv is left uninitialized except for a terminating NULL pointer. Consider the following example:


// needs_argv.c #include <assert.h> int main(int argc, char *argv[]) {
if (argc >= 2)
assert(argv[1] != 0);
return 0; }

If cbmc(1) is run directly on this example, it will report a failing assertion for the lack of modeling of argv. To make the assertion succeed, as expected, use:


goto-cc needs_argv.c goto-instrument --model-argc-argv 2 a.out a.out cbmc a.out
remove the implementation of function f (may be repeated)
replace calls to f with calls to g
limit size of nondet (e.g. input) object tree; at level N pointers are set to null
minimum level at which a pointer can first be NULL in a recursively nondet initialized struct

Semantics-preserving transformations:

transform loop bodies such that there is a single edge back to the loop head
drop functions trivially unreachable from main function
converts pointer arithmetic to base+offset expressions
propagate constants and simplify expressions
perform full inlining
perform partial inlining
transitively inline all calls function makes
disable caching of intermediate results during transitive function inlining
log in JSON format which code segments were inlined, use with --function-inline
Resolve calls via function pointers to direct function calls. Candidate functions are chosen based on their signature and whether or not they have their address taken somewhere in the program The following example illustrates the approach taken. Given that there are functions with these signatures available in the program:


int f(int x); int g(int x); int h(int x);

And we have a call site like this:


typedef int (*fptr_t)(int x); void call(fptr_t fptr) {
int r = fptr(10);
assert(r > 0); }

Function pointer removal will turn this into code similar to this:


void call(fptr_t fptr) {
int r;
if (fptr == &f) {
r = f(10);
} else if (fptr == &g) {
r = g(10);
} else if (fptr == &h) {
r = h(10);
} else {
// sanity check
assert(false);
assume(false);
}
return r; }

Beware that there may be many functions matching a particular signature, and some of them may be costly to a subsequently run analysis. Consider using --restrict-function-pointer to manually specify this set of functions, or --value-set-fi-fp-removal.

remove function pointers that are constant or constant part of an array
Build a flow-insensitive value set and replace function pointers by a case statement over the possible assignments. If the set of possible assignments is empty the function pointer is removed using the standard --remove-function-pointers pass.

Loop information and transformations:

show the loops in the program
unwind nr times
unwind loop L with a bound of B (optionally restricted to thread T) (use --show-loops to get the loop IDs)
read unwindset from file
permit paths with partial loops
generate unwinding assertions
add loop for remaining iterations after unwound part
check loops with k-induction
k-induction: do step-case
k-induction: do base-case
over-approximate all loops
add loop accelerators
use Z3 when computing loop accelerators
add gotos to skip selected loops during execution
Show lexical loops. A lexical loop is a block of goto program instructions with a single entry edge at the top and a single backedge leading from bottom to top, where "top" and "bottom" refer to program order. The loop may have holes: instructions which sit in between the top and bottom in program order, but which can't reach the loop backedge. Lexical loops are a subset of the natural loops, which are cheaper to compute and include most natural loops generated from typical C code.
Show natural loop heads. A natural loop is when the nodes and edges of a graph make one self-encapsulating circle with no incoming edges from external nodes. For example A -> B -> C -> D -> A is a natural loop, but if B has an incoming edge from X, then it isn't a natural loop, because X is an external node. Outgoing edges don't affect the natural-ness of a loop.

Memory model instrumentations:

Instruments the program so that it can be verified for different weak memory models with a model-checker verifying sequentially consistent programs.
detects critical cycles per SCC (one thread per SCC)
only instruments one event per cycle
instruments an optimal number of events
only instruments events whose ids appear in inst.evt
only instrument cycles where a read or write occurs as first event, respectively
limit cycles to N variables read/written
limit cycles to N program-order edges
instrument arrays as a single object
always instrument shared variables, even when they are not part of any cycle
optional program transformation to construct cycles in program loops
enables symbolic execution used to reduce spurious cycles
no dependency analysis
no representation of the threads in the dot
do not include thread-internal (Rfi) events in dot output
clusterises the dot by files
clusterises the dot by functions

Slicing:

Remove instructions that cannot appear on a trace that visits all given functions. The list of functions has to be given as a comma separated list f.
remove instructions that cannot appear on a trace from entry point to a property
remove instructions that cannot appear on a trace from entry point through a property
slice away instructions that don't affect assertions
slice with respect to specific property id only
slice away initializations of unused global variables
remove bodies of any functions not on the shortest path between the start function and the function containing the property(s)
used with --aggressive-slice, preserves all functions within n function calls of the functions on the shortest path
force the aggressive slicer to preserve function f
force the aggressive slicer to preserve all functions with names containing f
force aggressive slicer to preserve all direct paths

Code contracts:

check and use loop contracts when provided
do not unwind transformed loops
annotate loop contracts from the file to the goto program
replace calls to fun with fun's contract
wrap fun with an assertion of its contract
wrap fun with an assertion of its contract that can handle recursive calls
instrument dynamic frame condition checks method using fun as entry point

User-interface options:

flush every line of output
output files in XML where supported
use XML-formatted output
use JSON-formatted output
verbosity level
Print microsecond-precision timestamps. monotonic: stamps increase monotonically. wall: ISO-8601 wall clock timestamps.

ENVIRONMENT

All tools honor the TMPDIR environment variable when generating temporary files and directories.

BUGS

If you encounter a problem please create an issue at https://github.com/diffblue/cbmc/issues

SEE ALSO

cbmc(1), goto-cc(1)

COPYRIGHT

2008-2013, Daniel Kroening

June 2022 goto-instrument-5.59.0