Skip to content
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

CN VIP: Constrain global allocations #599

Merged
merged 1 commit into from
Sep 26, 2024
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
24 changes: 22 additions & 2 deletions backend/cn/lib/check.ml
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,8 @@ let check_alloc_bounds loc ~ptr ub_unspec =
| `False ->
let@ model = model () in
let ub = CF.Undefined.(UB_CERB004_unspecified ub_unspec) in
fail (fun ctxt -> { loc; msg = Alloc_out_of_bounds { ptr; ub; ctxt; model } }))
fail (fun ctxt ->
{ loc; msg = Alloc_out_of_bounds { constr; ptr; ub; ctxt; model } }))
else
return ()

Expand Down Expand Up @@ -2167,7 +2168,26 @@ let record_globals : 'bty. (Sym.t * 'bty Mu.mu_globs) list -> unit m =
let@ () =
add_c here (LC.T (IT.good_pointer ~pointee_ct:ct (sym_ (sym, bt, here)) here))
in
let@ () = add_c here (LC.T (IT.hasAllocId_ (sym_ (sym, bt, here)) here)) in
let ptr = sym_ (sym, bt, here) in
let@ () = add_c here (LC.T (IT.hasAllocId_ ptr here)) in
let@ () =
if !IT.use_vip then (
let base_size = Alloc.History.lookup_ptr ptr here in
let base, size = Alloc.History.get_base_size base_size here in
let addr = addr_ ptr here in
let upper = Resources.upper_bound addr ct here in
let bounds =
and_
[ le_ (base, addr) here;
le_ (addr, upper) here;
le_ (upper, add_ (base, size) here) here
]
here
in
add_c here (LC.T bounds))
else
return ()
in
return ())
globs

Expand Down
7 changes: 5 additions & 2 deletions backend/cn/lib/typeErrors.ml
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ type message =
}
| Alloc_out_of_bounds of
{ ptr : IT.t;
constr : IT.t;
ub : CF.Undefined.undefined_behaviour;
ctxt : Context.t * log;
model : Solver.model_with_q
Expand Down Expand Up @@ -503,9 +504,11 @@ let pp_message te =
| None -> !^(CF.Undefined.ub_short_string ub)
in
{ short; descr = Some descr; state = Some state }
| Alloc_out_of_bounds { ptr; ub; ctxt; model } ->
| Alloc_out_of_bounds { constr; ptr; ub; ctxt; model } ->
let short = !^"Pointer " ^^ bquotes (IT.pp ptr) ^^ !^" out of bounds" in
let state = trace ctxt model Explain.no_ex in
let state =
trace ctxt model Explain.{ no_ex with unproven_constraint = Some (LC.T constr) }
in
let descr =
match CF.Undefined.std_of_undefined_behaviour ub with
| Some stdref -> !^(CF.Undefined.ub_short_string ub) ^^^ parens !^stdref
Expand Down
12 changes: 12 additions & 0 deletions tests/cn/create_rdonly.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*
error: CreateReadOnly: not a constant ctype: Ivalignof('char[4]')
return "abc" == (void *)0;
^~~~~
*/
// Cause: constant string

int
main()
{
return "abc" != (void *)0;
}
2 changes: 2 additions & 0 deletions tests/run-cn-exec.sh
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ SUCCESS=$(find cn -name '*.c' \
! -name "ptr_relop.error.c" \
! -name "int_to_ptr.c" \
! -name "int_to_ptr.error.c" \
! -name "create_rdonly.c" \
)

# Include files which cause error for proof but not testing
Expand Down Expand Up @@ -166,6 +167,7 @@ BUGGY="cn/division_casting.c \
cn/ptr_relop.error.c \
cn/int_to_ptr.c \
cn/int_to_ptr.error.c \
cn/create_rdonly.c \
"

# Exclude files which cause error for proof but not testing
Expand Down
Loading