|
|
|
(*
|
|
|
|
* Copyright (c) 2016 - present
|
|
|
|
*
|
|
|
|
* Programming Research Laboratory (ROPAS)
|
|
|
|
* Seoul National University, Korea
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*)
|
|
|
|
|
|
|
|
open! IStd
|
|
|
|
open AbsLoc
|
|
|
|
open! AbstractDomain.Types
|
|
|
|
module L = Logging
|
|
|
|
module Dom = BufferOverrunDomain
|
|
|
|
module PO = BufferOverrunProofObligations
|
|
|
|
module Trace = BufferOverrunTrace
|
|
|
|
module TraceSet = Trace.Set
|
|
|
|
|
|
|
|
module Summary = Summary.Make (struct
|
|
|
|
type payload = Dom.Summary.t
|
|
|
|
|
|
|
|
let update_payload astate (summary: Specs.summary) =
|
|
|
|
{summary with payload= {summary.payload with buffer_overrun= Some astate}}
|
|
|
|
|
|
|
|
|
|
|
|
let read_payload (summary: Specs.summary) = summary.payload.buffer_overrun
|
|
|
|
end)
|
|
|
|
|
|
|
|
module TransferFunctions (CFG : ProcCfg.S) = struct
|
|
|
|
module CFG = CFG
|
|
|
|
module Domain = Dom.Mem
|
|
|
|
module Models = BufferOverrunModels.Make (CFG)
|
|
|
|
module Sem = Models.Sem
|
|
|
|
|
|
|
|
type extras = Typ.Procname.t -> Procdesc.t option
|
|
|
|
|
|
|
|
let rec declare_array
|
|
|
|
: Typ.Procname.t -> CFG.node -> Location.t -> Loc.t -> Typ.t -> length:IntLit.t option
|
|
|
|
-> ?stride:int -> inst_num:int -> dimension:int -> Dom.Mem.astate -> Dom.Mem.astate =
|
|
|
|
fun pname node location loc typ ~length ?stride ~inst_num ~dimension mem ->
|
|
|
|
let size = Option.value_map ~default:Itv.top ~f:Itv.of_int_lit length in
|
|
|
|
let arr =
|
|
|
|
Sem.eval_array_alloc pname node typ Itv.zero size ?stride inst_num dimension
|
|
|
|
|> Dom.Val.add_trace_elem (Trace.ArrDecl location)
|
|
|
|
in
|
|
|
|
let mem =
|
|
|
|
if Int.equal dimension 1 then Dom.Mem.add_stack loc arr mem
|
|
|
|
else Dom.Mem.add_heap loc arr mem
|
|
|
|
in
|
|
|
|
match typ.Typ.desc with
|
|
|
|
| Typ.Tarray (typ, length, stride) ->
|
|
|
|
let loc = Loc.of_allocsite (Sem.get_allocsite pname node inst_num dimension) in
|
|
|
|
declare_array pname node location loc typ ~length
|
|
|
|
?stride:(Option.map ~f:IntLit.to_int stride)
|
|
|
|
~inst_num ~dimension:(dimension + 1) mem
|
|
|
|
| _ ->
|
|
|
|
mem
|
|
|
|
|
|
|
|
|
|
|
|
let counter_gen init =
|
|
|
|
let num_ref = ref init in
|
|
|
|
let get_num () =
|
|
|
|
let v = !num_ref in
|
|
|
|
num_ref := v + 1 ;
|
|
|
|
v
|
|
|
|
in
|
|
|
|
get_num
|
|
|
|
|
|
|
|
|
|
|
|
let declare_symbolic_val
|
|
|
|
: Typ.Procname.t -> Tenv.t -> CFG.node -> Location.t -> Loc.t -> Typ.typ -> inst_num:int
|
|
|
|
-> new_sym_num:(unit -> int) -> Domain.t -> Domain.t =
|
|
|
|
fun pname tenv node location loc typ ~inst_num ~new_sym_num mem ->
|
|
|
|
let max_depth = 2 in
|
|
|
|
let new_alloc_num = counter_gen 1 in
|
|
|
|
let rec decl_sym_val ~depth loc typ mem =
|
|
|
|
if depth > max_depth then mem
|
|
|
|
else
|
|
|
|
let depth = depth + 1 in
|
|
|
|
match typ.Typ.desc with
|
|
|
|
| Typ.Tint ikind ->
|
|
|
|
let unsigned = Typ.ikind_is_unsigned ikind in
|
|
|
|
let v =
|
|
|
|
Dom.Val.make_sym ~unsigned pname new_sym_num
|
|
|
|
|> Dom.Val.add_trace_elem (Trace.SymAssign location)
|
|
|
|
in
|
|
|
|
Dom.Mem.add_heap loc v mem
|
|
|
|
| Typ.Tfloat _ ->
|
|
|
|
let v =
|
|
|
|
Dom.Val.make_sym pname new_sym_num
|
|
|
|
|> Dom.Val.add_trace_elem (Trace.SymAssign location)
|
|
|
|
in
|
|
|
|
Dom.Mem.add_heap loc v mem
|
|
|
|
| Typ.Tptr (typ, _) ->
|
|
|
|
decl_sym_arr ~depth loc location typ mem
|
|
|
|
| Typ.Tarray (typ, opt_int_lit, _) ->
|
|
|
|
let opt_size = Option.map ~f:Itv.of_int_lit opt_int_lit in
|
|
|
|
let opt_offset = Some Itv.zero in
|
|
|
|
decl_sym_arr ~depth loc location typ ~opt_offset ~opt_size mem
|
|
|
|
| Typ.Tstruct typename ->
|
|
|
|
let decl_fld mem (fn, typ, _) =
|
|
|
|
let loc_fld = Loc.append_field loc fn in
|
|
|
|
decl_sym_val ~depth loc_fld typ mem
|
|
|
|
in
|
|
|
|
let decl_flds str = List.fold ~f:decl_fld ~init:mem str.Typ.Struct.fields in
|
|
|
|
let opt_struct = Tenv.lookup tenv typename in
|
|
|
|
Option.value_map opt_struct ~default:mem ~f:decl_flds
|
|
|
|
| _ ->
|
|
|
|
if Config.bo_debug >= 3 then
|
|
|
|
L.(debug BufferOverrun Verbose)
|
|
|
|
"/!\\ decl_fld of unhandled type: %a at %a@." (Typ.pp Pp.text) typ Location.pp
|
|
|
|
(CFG.loc node) ;
|
|
|
|
mem
|
|
|
|
and decl_sym_arr ~depth loc location typ ?(opt_offset= None) ?(opt_size= None) mem =
|
|
|
|
let option_value opt_x default_f = match opt_x with Some x -> x | None -> default_f () in
|
|
|
|
let itv_make_sym () = Itv.make_sym pname new_sym_num in
|
|
|
|
let offset = option_value opt_offset itv_make_sym in
|
|
|
|
let size = option_value opt_size itv_make_sym in
|
|
|
|
let alloc_num = new_alloc_num () in
|
|
|
|
let elem = Trace.SymAssign location in
|
|
|
|
let arr =
|
|
|
|
Sem.eval_array_alloc pname node typ offset size inst_num alloc_num
|
|
|
|
|> Dom.Val.add_trace_elem elem
|
|
|
|
in
|
|
|
|
let mem = Dom.Mem.add_heap loc arr mem in
|
|
|
|
let deref_loc = Loc.of_allocsite (Sem.get_allocsite pname node inst_num alloc_num) in
|
|
|
|
decl_sym_val ~depth deref_loc typ mem
|
|
|
|
in
|
|
|
|
decl_sym_val ~depth:0 loc typ mem
|
|
|
|
|
|
|
|
|
|
|
|
let declare_symbolic_parameter
|
|
|
|
: Procdesc.t -> Tenv.t -> CFG.node -> Location.t -> int -> Dom.Mem.astate -> Dom.Mem.astate =
|
|
|
|
fun pdesc tenv node location inst_num mem ->
|
|
|
|
let pname = Procdesc.get_proc_name pdesc in
|
|
|
|
let new_sym_num = counter_gen 0 in
|
|
|
|
let add_formal (mem, inst_num) (pvar, typ) =
|
|
|
|
let loc = Loc.of_pvar pvar in
|
|
|
|
let mem =
|
|
|
|
declare_symbolic_val pname tenv node location loc typ ~inst_num ~new_sym_num mem
|
|
|
|
in
|
|
|
|
(mem, inst_num + 1)
|
|
|
|
in
|
|
|
|
List.fold ~f:add_formal ~init:(mem, inst_num) (Sem.get_formals pdesc) |> fst
|
|
|
|
|
|
|
|
|
|
|
|
let instantiate_ret ret callee_pname callee_exit_mem subst_map mem ret_alias location =
|
|
|
|
match ret with
|
|
|
|
| Some (id, _) ->
|
|
|
|
let ret_loc = Loc.of_pvar (Pvar.get_ret_pvar callee_pname) in
|
|
|
|
let ret_val = Dom.Mem.find_heap ret_loc callee_exit_mem in
|
|
|
|
let ret_var = Loc.of_var (Var.of_id id) in
|
|
|
|
let add_ret_alias l = Dom.Mem.load_alias id l mem in
|
|
|
|
let mem = Option.value_map ret_alias ~default:mem ~f:add_ret_alias in
|
|
|
|
Dom.Val.subst ret_val subst_map location |> Dom.Val.add_trace_elem (Trace.Return location)
|
|
|
|
|> Fn.flip (Dom.Mem.add_stack ret_var) mem
|
|
|
|
| None ->
|
|
|
|
mem
|
|
|
|
|
|
|
|
|
|
|
|
let instantiate_param tenv pdesc params callee_entry_mem callee_exit_mem subst_map location mem =
|
|
|
|
let formals = Sem.get_formals pdesc in
|
|
|
|
let actuals = List.map ~f:(fun (a, _) -> Sem.eval a mem) params in
|
|
|
|
let f mem formal actual =
|
|
|
|
match (snd formal).Typ.desc with
|
|
|
|
| Typ.Tptr (typ, _) -> (
|
|
|
|
match typ.Typ.desc with
|
|
|
|
| Typ.Tstruct typename -> (
|
|
|
|
match Tenv.lookup tenv typename with
|
|
|
|
| Some str ->
|
|
|
|
let formal_locs =
|
|
|
|
Dom.Mem.find_heap (Loc.of_pvar (fst formal)) callee_entry_mem
|
|
|
|
|> Dom.Val.get_array_blk |> ArrayBlk.get_pow_loc
|
|
|
|
in
|
|
|
|
let instantiate_fld mem (fn, _, _) =
|
|
|
|
let formal_fields = PowLoc.append_field formal_locs fn in
|
|
|
|
let v = Dom.Mem.find_heap_set formal_fields callee_exit_mem in
|
|
|
|
let actual_fields = PowLoc.append_field (Dom.Val.get_all_locs actual) fn in
|
|
|
|
Dom.Val.subst v subst_map location
|
|
|
|
|> Fn.flip (Dom.Mem.strong_update_heap actual_fields) mem
|
|
|
|
in
|
|
|
|
List.fold ~f:instantiate_fld ~init:mem str.Typ.Struct.fields
|
|
|
|
| _ ->
|
|
|
|
mem )
|
|
|
|
| _ ->
|
|
|
|
let formal_locs =
|
|
|
|
Dom.Mem.find_heap (Loc.of_pvar (fst formal)) callee_entry_mem
|
|
|
|
|> Dom.Val.get_array_blk |> ArrayBlk.get_pow_loc
|
|
|
|
in
|
|
|
|
let v = Dom.Mem.find_heap_set formal_locs callee_exit_mem in
|
|
|
|
let actual_locs = Dom.Val.get_all_locs actual in
|
|
|
|
Dom.Val.subst v subst_map location
|
|
|
|
|> Fn.flip (Dom.Mem.strong_update_heap actual_locs) mem )
|
|
|
|
| _ ->
|
|
|
|
mem
|
|
|
|
in
|
|
|
|
try List.fold2_exn formals actuals ~init:mem ~f with Invalid_argument _ -> mem
|
|
|
|
|
|
|
|
|
|
|
|
let instantiate_mem
|
|
|
|
: Tenv.t -> (Ident.t * Typ.t) option -> Procdesc.t option -> Typ.Procname.t
|
|
|
|
-> (Exp.t * Typ.t) list -> Dom.Mem.astate -> Dom.Summary.t -> Location.t -> Dom.Mem.astate =
|
|
|
|
fun tenv ret callee_pdesc callee_pname params caller_mem summary location ->
|
|
|
|
let callee_entry_mem = Dom.Summary.get_input summary in
|
|
|
|
let callee_exit_mem = Dom.Summary.get_output summary in
|
|
|
|
let callee_ret_alias = Dom.Mem.find_ret_alias callee_exit_mem in
|
|
|
|
match callee_pdesc with
|
|
|
|
| Some pdesc ->
|
|
|
|
let subst_map, ret_alias =
|
|
|
|
Sem.get_subst_map tenv pdesc params caller_mem callee_entry_mem ~callee_ret_alias
|
|
|
|
in
|
|
|
|
instantiate_ret ret callee_pname callee_exit_mem subst_map caller_mem ret_alias location
|
|
|
|
|> instantiate_param tenv pdesc params callee_entry_mem callee_exit_mem subst_map
|
|
|
|
location
|
|
|
|
| None ->
|
|
|
|
caller_mem
|
|
|
|
|
|
|
|
|
|
|
|
let print_debug_info : Sil.instr -> Dom.Mem.astate -> Dom.Mem.astate -> unit =
|
|
|
|
fun instr pre post ->
|
|
|
|
L.(debug BufferOverrun Verbose) "@\n@\n================================@\n" ;
|
|
|
|
L.(debug BufferOverrun Verbose) "@[<v 2>Pre-state : @,%a" Dom.Mem.pp pre ;
|
|
|
|
L.(debug BufferOverrun Verbose) "@]@\n@\n%a" (Sil.pp_instr Pp.text) instr ;
|
|
|
|
L.(debug BufferOverrun Verbose) "@\n@\n" ;
|
|
|
|
L.(debug BufferOverrun Verbose) "@[<v 2>Post-state : @,%a" Dom.Mem.pp post ;
|
|
|
|
L.(debug BufferOverrun Verbose) "@]@\n" ;
|
|
|
|
L.(debug BufferOverrun Verbose) "================================@\n@."
|
|
|
|
|
|
|
|
|
|
|
|
let exec_instr : Dom.Mem.astate -> extras ProcData.t -> CFG.node -> Sil.instr -> Dom.Mem.astate =
|
|
|
|
fun mem {pdesc; tenv; extras} node instr ->
|
|
|
|
let pname = Procdesc.get_proc_name pdesc in
|
|
|
|
let output_mem =
|
|
|
|
match instr with
|
|
|
|
| Load (id, exp, _, _) ->
|
|
|
|
let locs = Sem.eval exp mem |> Dom.Val.get_all_locs in
|
|
|
|
let v = Dom.Mem.find_heap_set locs mem in
|
|
|
|
if Ident.is_none id then mem
|
|
|
|
else
|
|
|
|
let mem = Dom.Mem.add_stack (Loc.of_var (Var.of_id id)) v mem in
|
|
|
|
if PowLoc.is_singleton locs then
|
|
|
|
Dom.Mem.load_simple_alias id (PowLoc.min_elt locs) mem
|
|
|
|
else mem
|
|
|
|
| Store (exp1, _, exp2, location) ->
|
|
|
|
let locs = Sem.eval exp1 mem |> Dom.Val.get_all_locs in
|
|
|
|
let v = Sem.eval exp2 mem |> Dom.Val.add_trace_elem (Trace.Assign location) in
|
|
|
|
let mem = Dom.Mem.update_mem locs v mem in
|
|
|
|
if PowLoc.is_singleton locs then
|
|
|
|
let loc_v = PowLoc.min_elt locs in
|
|
|
|
match Typ.Procname.get_method pname with
|
|
|
|
| "__inferbo_empty" when Loc.is_return loc_v -> (
|
|
|
|
match Sem.get_formals pdesc with
|
|
|
|
| [(formal, _)] ->
|
|
|
|
let formal_v = Dom.Mem.find_heap (Loc.of_pvar formal) mem in
|
|
|
|
Dom.Mem.store_empty_alias formal_v loc_v exp2 mem
|
|
|
|
| _ ->
|
|
|
|
assert false )
|
|
|
|
| _ ->
|
|
|
|
Dom.Mem.store_simple_alias loc_v exp2 mem
|
|
|
|
else mem
|
|
|
|
| Prune (exp, _, _, _) ->
|
|
|
|
Sem.prune exp mem
|
|
|
|
| Call (ret, Const Cfun callee_pname, params, location, _) -> (
|
|
|
|
match Models.dispatcher callee_pname params with
|
|
|
|
| Some {Models.exec} ->
|
|
|
|
exec callee_pname ret node location mem
|
|
|
|
| None ->
|
|
|
|
match Summary.read_summary pdesc callee_pname with
|
|
|
|
| Some summary ->
|
|
|
|
let callee = extras callee_pname in
|
|
|
|
instantiate_mem tenv ret callee callee_pname params mem summary location
|
|
|
|
| None ->
|
|
|
|
L.(debug BufferOverrun Verbose)
|
|
|
|
"/!\\ Unknown call to %a at %a@\n" Typ.Procname.pp callee_pname Location.pp
|
|
|
|
location ;
|
|
|
|
Models.model_by_value Dom.Val.unknown callee_pname ret node location mem
|
|
|
|
|> Dom.Mem.add_heap Loc.unknown Dom.Val.unknown )
|
|
|
|
| Declare_locals (locals, location) ->
|
|
|
|
(* array allocation in stack e.g., int arr[10] *)
|
|
|
|
let try_decl_arr location (mem, inst_num) (pvar, typ) =
|
|
|
|
match typ.Typ.desc with
|
|
|
|
| Typ.Tarray (typ, length, stride0) ->
|
|
|
|
let loc = Loc.of_pvar pvar in
|
|
|
|
let stride = Option.map ~f:IntLit.to_int stride0 in
|
|
|
|
let mem =
|
|
|
|
declare_array pname node location loc typ ~length ?stride ~inst_num
|
|
|
|
~dimension:1 mem
|
|
|
|
in
|
|
|
|
(mem, inst_num + 1)
|
|
|
|
| _ ->
|
|
|
|
(mem, inst_num)
|
|
|
|
in
|
|
|
|
let mem, inst_num = List.fold ~f:(try_decl_arr location) ~init:(mem, 1) locals in
|
|
|
|
declare_symbolic_parameter pdesc tenv node location inst_num mem
|
|
|
|
| Call (_, fun_exp, _, location, _) ->
|
|
|
|
let () =
|
|
|
|
L.(debug BufferOverrun Verbose)
|
|
|
|
"/!\\ Call to non-const function %a at %a" Exp.pp fun_exp Location.pp location
|
|
|
|
in
|
|
|
|
mem
|
|
|
|
| Remove_temps (temps, _) ->
|
|
|
|
Dom.Mem.remove_temps temps mem
|
|
|
|
| Abstract _ | Nullify _ ->
|
|
|
|
mem
|
|
|
|
in
|
|
|
|
print_debug_info instr mem output_mem ;
|
|
|
|
output_mem
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
module Analyzer = AbstractInterpreter.Make (ProcCfg.Normal) (TransferFunctions)
|
|
|
|
module CFG = Analyzer.TransferFunctions.CFG
|
|
|
|
module Sem = BufferOverrunSemantics.Make (CFG)
|
|
|
|
|
|
|
|
module Report = struct
|
|
|
|
type extras = Typ.Procname.t -> Procdesc.t option
|
|
|
|
|
|
|
|
let add_condition
|
|
|
|
: Typ.Procname.t -> CFG.node -> Exp.t -> Location.t -> Dom.Mem.astate -> PO.ConditionSet.t
|
|
|
|
-> PO.ConditionSet.t =
|
|
|
|
fun pname node exp location mem cond_set ->
|
|
|
|
let array_access =
|
|
|
|
match exp with
|
|
|
|
| Exp.Var _ ->
|
|
|
|
let v = Sem.eval exp mem in
|
|
|
|
let arr = Dom.Val.get_array_blk v in
|
|
|
|
let arr_traces = Dom.Val.get_traces v in
|
|
|
|
Some (arr, arr_traces, Itv.zero, TraceSet.empty, true)
|
|
|
|
| Exp.Lindex (e1, e2) ->
|
|
|
|
let locs = Sem.eval_locs e1 mem |> Dom.Val.get_all_locs in
|
|
|
|
let v_arr = Dom.Mem.find_set locs mem in
|
|
|
|
let arr = Dom.Val.get_array_blk v_arr in
|
|
|
|
let arr_traces = Dom.Val.get_traces v_arr in
|
|
|
|
let v_idx = Sem.eval e2 mem in
|
|
|
|
let idx = Dom.Val.get_itv v_idx in
|
|
|
|
let idx_traces = Dom.Val.get_traces v_idx in
|
|
|
|
Some (arr, arr_traces, idx, idx_traces, true)
|
|
|
|
| Exp.BinOp ((Binop.PlusA as bop), e1, e2) | Exp.BinOp ((Binop.MinusA as bop), e1, e2) ->
|
|
|
|
let v_arr = Sem.eval e1 mem in
|
|
|
|
let arr = Dom.Val.get_array_blk v_arr in
|
|
|
|
let arr_traces = Dom.Val.get_traces v_arr in
|
|
|
|
let v_idx = Sem.eval e2 mem in
|
|
|
|
let idx = Dom.Val.get_itv v_idx in
|
|
|
|
let idx_traces = Dom.Val.get_traces v_idx in
|
|
|
|
let is_plus = Binop.equal bop Binop.PlusA in
|
|
|
|
Some (arr, arr_traces, idx, idx_traces, is_plus)
|
|
|
|
| _ ->
|
|
|
|
None
|
|
|
|
in
|
|
|
|
match array_access with
|
|
|
|
| Some (arr, traces_arr, idx, traces_idx, is_plus)
|
|
|
|
-> (
|
|
|
|
let site = Sem.get_allocsite pname node 0 0 in
|
|
|
|
let size = ArrayBlk.sizeof arr in
|
|
|
|
let offset = ArrayBlk.offsetof arr in
|
|
|
|
let idx = (if is_plus then Itv.plus else Itv.minus) offset idx in
|
|
|
|
L.(debug BufferOverrun Verbose) "@[<v 2>Add condition :@," ;
|
|
|
|
L.(debug BufferOverrun Verbose) "array: %a@," ArrayBlk.pp arr ;
|
|
|
|
L.(debug BufferOverrun Verbose) " idx: %a@," Itv.pp idx ;
|
|
|
|
L.(debug BufferOverrun Verbose) "@]@." ;
|
|
|
|
match (size, idx) with
|
|
|
|
| NonBottom size, NonBottom idx ->
|
|
|
|
let traces = TraceSet.merge ~traces_arr ~traces_idx location in
|
|
|
|
PO.ConditionSet.add_bo_safety pname location site ~size ~idx traces cond_set
|
|
|
|
| _ ->
|
|
|
|
cond_set )
|
|
|
|
| None ->
|
|
|
|
cond_set
|
|
|
|
|
|
|
|
|
|
|
|
let instantiate_cond
|
|
|
|
: Tenv.t -> Typ.Procname.t -> Procdesc.t option -> (Exp.t * Typ.t) list -> Dom.Mem.astate
|
|
|
|
-> Summary.payload -> Location.t -> PO.ConditionSet.t =
|
|
|
|
fun tenv caller_pname callee_pdesc params caller_mem summary location ->
|
|
|
|
let callee_entry_mem = Dom.Summary.get_input summary in
|
|
|
|
let callee_cond = Dom.Summary.get_cond_set summary in
|
|
|
|
match callee_pdesc with
|
|
|
|
| Some pdesc ->
|
|
|
|
let subst_map, _ =
|
|
|
|
Sem.get_subst_map tenv pdesc params caller_mem callee_entry_mem ~callee_ret_alias:None
|
|
|
|
in
|
|
|
|
let pname = Procdesc.get_proc_name pdesc in
|
|
|
|
PO.ConditionSet.subst callee_cond subst_map caller_pname pname location
|
|
|
|
| _ ->
|
|
|
|
callee_cond
|
|
|
|
|
|
|
|
|
|
|
|
let print_debug_info : Sil.instr -> Dom.Mem.astate -> PO.ConditionSet.t -> unit =
|
|
|
|
fun instr pre cond_set ->
|
|
|
|
L.(debug BufferOverrun Verbose) "@\n@\n================================@\n" ;
|
|
|
|
L.(debug BufferOverrun Verbose) "@[<v 2>Pre-state : @,%a" Dom.Mem.pp pre ;
|
|
|
|
L.(debug BufferOverrun Verbose) "@]@\n@\n%a" (Sil.pp_instr Pp.text) instr ;
|
|
|
|
L.(debug BufferOverrun Verbose) "@[<v 2>@\n@\n%a" PO.ConditionSet.pp cond_set ;
|
|
|
|
L.(debug BufferOverrun Verbose) "@]@\n" ;
|
|
|
|
L.(debug BufferOverrun Verbose) "================================@\n@."
|
|
|
|
|
|
|
|
|
|
|
|
module ExitStatement = struct
|
|
|
|
let successors node = Procdesc.Node.get_succs node
|
|
|
|
|
|
|
|
let predecessors node = Procdesc.Node.get_preds node
|
|
|
|
|
|
|
|
let preds_of_singleton_successor node =
|
|
|
|
match successors node with [succ] -> Some (predecessors succ) | _ -> None
|
|
|
|
|
|
|
|
|
|
|
|
(* last statement in if branch *)
|
|
|
|
(* do we transfer control to a node with multiple predecessors *)
|
|
|
|
let has_multiple_sibling_nodes_and_one_successor node =
|
|
|
|
match preds_of_singleton_successor node with
|
|
|
|
(* we need at least 2 predecessors *)
|
|
|
|
| Some (_ :: _ :: _) ->
|
|
|
|
true
|
|
|
|
| _ ->
|
|
|
|
false
|
|
|
|
|
|
|
|
|
|
|
|
(* check that we are the last instruction in the current node
|
|
|
|
* and that the current node is followed by a unique successor
|
|
|
|
* with no instructions.
|
|
|
|
*
|
|
|
|
* this is our proxy for being the last statement in a procedure.
|
|
|
|
* The tests pass, but it's kind of a hack and depends on an internal
|
|
|
|
* detail of SIL that could change in the future. *)
|
|
|
|
let is_last_in_node_and_followed_by_empty_successor node rem_instrs =
|
|
|
|
List.is_empty rem_instrs
|
|
|
|
&&
|
|
|
|
match Procdesc.Node.get_succs node with
|
|
|
|
| [succ] -> (
|
|
|
|
match CFG.instrs succ with
|
|
|
|
| [] ->
|
|
|
|
List.is_empty (Procdesc.Node.get_succs succ)
|
|
|
|
| _ ->
|
|
|
|
false )
|
|
|
|
| _ ->
|
|
|
|
false
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
let rec collect_instrs
|
|
|
|
: extras ProcData.t -> CFG.node -> Sil.instr list -> Dom.Mem.astate -> PO.ConditionSet.t
|
|
|
|
-> PO.ConditionSet.t =
|
|
|
|
fun ({pdesc; tenv; extras} as pdata) node instrs mem cond_set ->
|
|
|
|
match instrs with
|
|
|
|
| [] ->
|
|
|
|
cond_set
|
|
|
|
| instr :: rem_instrs ->
|
|
|
|
let pname = Procdesc.get_proc_name pdesc in
|
|
|
|
let cond_set =
|
|
|
|
match instr with
|
|
|
|
| Sil.Load (_, exp, _, location) | Sil.Store (exp, _, _, location) ->
|
|
|
|
add_condition pname node exp location mem cond_set
|
|
|
|
| Sil.Call (_, Const Cfun callee_pname, params, location, _) -> (
|
|
|
|
match Summary.read_summary pdesc callee_pname with
|
|
|
|
| Some summary ->
|
|
|
|
let callee = extras callee_pname in
|
|
|
|
instantiate_cond tenv pname callee params mem summary location
|
|
|
|
|> PO.ConditionSet.join cond_set
|
|
|
|
| _ ->
|
|
|
|
cond_set )
|
|
|
|
| _ ->
|
|
|
|
cond_set
|
|
|
|
in
|
|
|
|
let mem' = Analyzer.TransferFunctions.exec_instr mem pdata node instr in
|
|
|
|
let () =
|
|
|
|
match (mem, mem') with
|
|
|
|
| NonBottom _, Bottom -> (
|
|
|
|
match instr with
|
|
|
|
| Sil.Prune (_, _, _, (Ik_land_lor | Ik_bexp)) ->
|
|
|
|
()
|
|
|
|
| Sil.Prune (cond, location, true_branch, _) ->
|
|
|
|
let i = match cond with Exp.Const Const.Cint i -> i | _ -> IntLit.zero in
|
|
|
|
let desc =
|
|
|
|
Errdesc.explain_condition_always_true_false tenv i cond node location
|
|
|
|
in
|
|
|
|
let exn =
|
|
|
|
Exceptions.Condition_always_true_false (desc, not true_branch, __POS__)
|
|
|
|
in
|
|
|
|
Reporting.log_warning_deprecated pname ~loc:location exn
|
|
|
|
(* special case for when we're at the end of a procedure *)
|
|
|
|
| Sil.Call (_, Const Cfun pname, _, _, _)
|
|
|
|
when String.equal (Typ.Procname.get_method pname) "exit"
|
|
|
|
&& ExitStatement.is_last_in_node_and_followed_by_empty_successor node
|
|
|
|
rem_instrs ->
|
|
|
|
()
|
|
|
|
| Sil.Call (_, Const Cfun pname, _, _, _)
|
|
|
|
when String.equal (Typ.Procname.get_method pname) "exit"
|
|
|
|
&& ExitStatement.has_multiple_sibling_nodes_and_one_successor node ->
|
|
|
|
()
|
|
|
|
| _ ->
|
|
|
|
let location = Sil.instr_get_loc instr in
|
|
|
|
let desc = Errdesc.explain_unreachable_code_after location in
|
|
|
|
let exn = Exceptions.Unreachable_code_after (desc, __POS__) in
|
|
|
|
Reporting.log_error_deprecated pname ~loc:location exn )
|
|
|
|
| _ ->
|
|
|
|
()
|
|
|
|
in
|
|
|
|
print_debug_info instr mem' cond_set ;
|
|
|
|
collect_instrs pdata node rem_instrs mem' cond_set
|
|
|
|
|
|
|
|
|
|
|
|
let collect_node
|
|
|
|
: extras ProcData.t -> Analyzer.invariant_map -> PO.ConditionSet.t -> CFG.node
|
|
|
|
-> PO.ConditionSet.t =
|
|
|
|
fun pdata inv_map cond_set node ->
|
|
|
|
match Analyzer.extract_pre (CFG.id node) inv_map with
|
|
|
|
| Some mem ->
|
|
|
|
let instrs = CFG.instrs node in
|
|
|
|
collect_instrs pdata node instrs mem cond_set
|
|
|
|
| _ ->
|
|
|
|
cond_set
|
|
|
|
|
|
|
|
|
|
|
|
let collect : extras ProcData.t -> Analyzer.invariant_map -> PO.ConditionSet.t =
|
|
|
|
fun ({pdesc} as pdata) inv_map ->
|
|
|
|
let add_node1 acc node = collect_node pdata inv_map acc node in
|
|
|
|
Procdesc.fold_nodes add_node1 PO.ConditionSet.empty pdesc
|
|
|
|
|
|
|
|
|
|
|
|
let make_err_trace : Trace.t -> string -> Errlog.loc_trace =
|
|
|
|
fun trace desc ->
|
|
|
|
let f elem (trace, depth) =
|
|
|
|
match elem with
|
|
|
|
| Trace.Assign location ->
|
|
|
|
(Errlog.make_trace_element depth location "Assignment" [] :: trace, depth)
|
|
|
|
| Trace.ArrDecl location ->
|
|
|
|
(Errlog.make_trace_element depth location "ArrayDeclaration" [] :: trace, depth)
|
|
|
|
| Trace.Call location ->
|
|
|
|
(Errlog.make_trace_element depth location "Call" [] :: trace, depth + 1)
|
|
|
|
| Trace.Return location ->
|
|
|
|
(Errlog.make_trace_element (depth - 1) location "Return" [] :: trace, depth - 1)
|
|
|
|
| Trace.SymAssign _ ->
|
|
|
|
(trace, depth)
|
|
|
|
| Trace.ArrAccess location ->
|
|
|
|
(Errlog.make_trace_element depth location ("ArrayAccess: " ^ desc) [] :: trace, depth)
|
|
|
|
in
|
|
|
|
List.fold_right ~f ~init:([], 0) trace.trace |> fst |> List.rev
|
|
|
|
|
|
|
|
|
|
|
|
let report_error : Procdesc.t -> PO.ConditionSet.t -> unit =
|
|
|
|
fun pdesc conds ->
|
|
|
|
let pname = Procdesc.get_proc_name pdesc in
|
|
|
|
let report1 cond trace =
|
|
|
|
let alarm = PO.Condition.check cond in
|
|
|
|
match alarm with
|
|
|
|
| None ->
|
|
|
|
()
|
|
|
|
| Some issue_type ->
|
|
|
|
let caller_pname, location =
|
|
|
|
match PO.ConditionTrace.get_cond_trace trace with
|
|
|
|
| PO.ConditionTrace.Inter (caller_pname, _, location) ->
|
|
|
|
(caller_pname, location)
|
|
|
|
| PO.ConditionTrace.Intra pname ->
|
|
|
|
(pname, PO.ConditionTrace.get_location trace)
|
|
|
|
in
|
|
|
|
if Typ.Procname.equal pname caller_pname then
|
|
|
|
let description = PO.description cond trace in
|
|
|
|
let error_desc = Localise.desc_buffer_overrun description in
|
|
|
|
let exn = Exceptions.Checkers (issue_type.IssueType.unique_id, error_desc) in
|
|
|
|
let trace =
|
|
|
|
match TraceSet.choose_shortest trace.PO.ConditionTrace.val_traces with
|
|
|
|
| trace ->
|
|
|
|
make_err_trace trace description
|
|
|
|
| exception _ ->
|
|
|
|
[Errlog.make_trace_element 0 location description []]
|
|
|
|
in
|
|
|
|
Reporting.log_error_deprecated pname ~loc:location ~ltr:trace exn
|
|
|
|
in
|
|
|
|
PO.ConditionSet.iter conds ~f:report1
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
let compute_post : Analyzer.TransferFunctions.extras ProcData.t -> Summary.payload option =
|
|
|
|
fun {pdesc; tenv; extras= get_pdesc} ->
|
|
|
|
let cfg = CFG.from_pdesc pdesc in
|
|
|
|
let pdata = ProcData.make pdesc tenv get_pdesc in
|
|
|
|
let inv_map = Analyzer.exec_pdesc ~initial:Dom.Mem.init pdata in
|
|
|
|
let entry_mem =
|
|
|
|
let entry_id = CFG.id (CFG.start_node cfg) in
|
|
|
|
Analyzer.extract_post entry_id inv_map
|
|
|
|
in
|
|
|
|
let exit_mem =
|
|
|
|
let exit_id = CFG.id (CFG.exit_node cfg) in
|
|
|
|
Analyzer.extract_post exit_id inv_map
|
|
|
|
in
|
|
|
|
let cond_set = Report.collect pdata inv_map in
|
|
|
|
Report.report_error pdesc cond_set ;
|
|
|
|
match (entry_mem, exit_mem) with
|
|
|
|
| Some entry_mem, Some exit_mem ->
|
|
|
|
Some (entry_mem, exit_mem, cond_set)
|
|
|
|
| _ ->
|
|
|
|
None
|
|
|
|
|
|
|
|
|
|
|
|
let print_summary : Typ.Procname.t -> Dom.Summary.t -> unit =
|
|
|
|
fun proc_name s ->
|
|
|
|
L.(debug BufferOverrun Medium)
|
|
|
|
"@\n@[<v 2>Summary of %a :@,%a@]@." Typ.Procname.pp proc_name Dom.Summary.pp_summary s
|
|
|
|
|
|
|
|
|
|
|
|
let checker : Callbacks.proc_callback_args -> Specs.summary =
|
|
|
|
fun {proc_desc; tenv; summary; get_proc_desc} ->
|
|
|
|
let proc_name = Specs.get_proc_name summary in
|
|
|
|
let proc_data = ProcData.make proc_desc tenv get_proc_desc in
|
|
|
|
if not (Procdesc.did_preanalysis proc_desc) then Preanal.do_liveness proc_desc tenv ;
|
|
|
|
match compute_post proc_data with
|
|
|
|
| Some post ->
|
|
|
|
if Config.bo_debug >= 1 then print_summary proc_name post ;
|
|
|
|
Summary.update_summary post summary
|
|
|
|
| None ->
|
|
|
|
summary
|
|
|
|
|