我有一个包含几个ACSL断言(file.c
)的文件:
#include <stdio.h>
#include <stdlib.h>
void foo() {
int a=0;
//@ assert(a==0);
}
void print(const char* text) {
int a=0;
//@ assert(a==0);
printf("%s\n",text);
}
int main (int argc, const char* argv[]) {
const char* a1 = argv[2];
print(a1);
foo();
if (!a1)
//@ assert(!a1);
return 0;
else
return 1;
}
我想用命令切片所有断言:
frama-c -slice-assert @all file.c -then-on 'Slicing export' -print -ocode slice.c
但是,切片看起来并不像预期的那样(实际上它不包含文件中包含的任何函数):
/* Generated by Frama-C */
typedef unsigned int size_t;
/*@ ghost extern int __fc_heap_status __attribute__((__FRAMA_C_MODEL__)); */
/*@
axiomatic dynamic_allocation {
predicate is_allocable{L}(size_t n)
reads __fc_heap_status;
}
*/
void main(void)
{
char const *a1;
return;
}
相反,我得到这样的输出:
file.c:16:[kernel] warning: out of bounds read. assert \valid_read(argv+2);
[value] Recording results for main
[value] done for function main
file.c:16:[value] Assertion 'Value,mem_access' got final status invalid.
[slicing] making slicing project 'Slicing'...
[slicing] interpreting slicing requests from the command line...
[pdg] computing for function foo
[pdg] warning: unreachable entry point (sid:1, function foo)
[pdg] Bottom for function foo
[slicing] bottom PDG for function 'foo': ignore selection
[pdg] computing for function main
file.c:21:[pdg] warning: no final state. Probably unreachable...
[pdg] done for function main
[pdg] computing for function print
[pdg] warning: unreachable entry point (sid:5, function print)
[pdg] Bottom for function print
[slicing] bottom PDG for function 'print': ignore selection
这里出了什么问题,特别是unreachable entry point
是什么?观察:如果我将argv[2]
更改为argv[1]
我没有这些问题(但仍会在第一行收到警告)。
答案 0 :(得分:3)
切片需要计算使用值分析结果的PDG(程序相关图)。警告unreachable entry point
意味着,在您给出的上下文中,函数foo
是不可访问的(即,它是从无法访问的语句中调用的)。
如果没有示例,很难告诉你更多......
编辑:
在您提供的输出中,请注意以下几行:
file.c:16:[kernel] warning: out of bounds read. assert \valid_read(argv+2);
和
file.c:16:[value] Assertion 'Value,mem_access' got final status invalid.
当价值分析遇到无效财产时,它无法进一步发展。因为这里的警报来自第一个语句,所以其他一切都无法访问。无效属性为\valid_read(argv+2);
,因为输入上下文的默认值为argv
的宽度为2。这可以通过使用选项-context-width 3
或使用另一个用于分析的入口点(并使用-main my_main
指定)来修复,该入口点不带参数,定义argc
和{{1明确地,并用它们调用真实的argv
。
建议只有在检查了值分析结果是否正常后才能使用切片。您可以使用main
选项单独运行它,并根据需要调整其他选项。