Skip to content

Support out-of-bounds checks on arrays of dynamic size #1158

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 4, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions regression/cbmc/dynamic_size1/main.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#include <stdlib.h>

int main()
{
unsigned x;

int *A=malloc(x*sizeof(int));

char *p=&A[1];

char c=*p;

return c;
}
9 changes: 9 additions & 0 deletions regression/cbmc/dynamic_size1/test.desc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
CORE
main.c
--pointer-check
^EXIT=10$
^SIGNAL=0$
^VERIFICATION FAILED$
--
^warning: ignoring
^unknown or invalid type size:
29 changes: 19 additions & 10 deletions src/pointer-analysis/value_set_dereference.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Author: Daniel Kroening, [email protected]

#include <cassert>

#include <util/invariant.h>
#include <util/string2int.h>
#include <util/expr_util.h>
#include <util/base_type.h>
Expand Down Expand Up @@ -858,16 +859,24 @@ bool value_set_dereferencet::memory_model_bytes(
{
// upper bound
{
mp_integer from_width=pointer_offset_size(from_type, ns);
if(from_width<=0)
throw "unknown or invalid type size:\n"+from_type.pretty();

mp_integer to_width=
to_type.id()==ID_empty?0: pointer_offset_size(to_type, ns);
if(to_width<0)
throw "unknown or invalid type size:\n"+to_type.pretty();

exprt bound=from_integer(from_width-to_width, offset.type());
exprt from_width=size_of_expr(from_type, ns);
INVARIANT(
from_width.is_not_nil(),
"unknown or invalid type size:\n"+from_type.pretty());

exprt to_width=
to_type.id()==ID_empty?
from_integer(0, size_type()):size_of_expr(to_type, ns);
INVARIANT(
to_width.is_not_nil(),
"unknown or invalid type size:\n"+to_type.pretty());
INVARIANT(
from_width.type()==to_width.type(),
"type mismatch on result of size_of_expr");

minus_exprt bound(from_width, to_width);
if(bound.type()!=offset.type())
bound.make_typecast(offset.type());

binary_relation_exprt
offset_upper_bound(offset, ID_gt, bound);
Expand Down