-
Notifications
You must be signed in to change notification settings - Fork 2
/
relse.ml
644 lines (553 loc) · 23.9 KB
/
relse.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
(**************************************************************************)
(* This file is part of BINSEC. *)
(* *)
(* Copyright (C) 2016-2019 *)
(* CEA (Commissariat à l'énergie atomique et aux énergies *)
(* alternatives) *)
(* *)
(* you can redistribute it and/or modify it under the terms of the GNU *)
(* Lesser General Public License as published by the Free Software *)
(* Foundation, version 2.1. *)
(* *)
(* It is distributed in the hope that it will be useful, *)
(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *)
(* GNU Lesser General Public License for more details. *)
(* *)
(* See the GNU Lesser General Public License version 2.1 *)
(* for more details (enclosed in the file licenses/LGPLv2.1). *)
(* *)
(**************************************************************************)
open Relse_options
(** Enumerate jumps targets *)
let get_entry_point () =
match Kernel_functions.get_ep () with
| Some v -> v
| None ->
Logger.warning "No entrypoint: starting from main.";
Relse_utils.get_main_symbol ()
|> Loader_utils.address_of_symbol
|> Virtual_address.create
module Path_state = Relse_path.Path_state
module Sym_state = Relse_symbolic.State
module type SSE_RUNNER = sig val start: unit -> unit end
module Env_make(IS:Relse_insecurity.INSECURITY_STATE): SSE_RUNNER =
struct
module Stubs = Relse_stubs.Make(IS)
module State = struct
type t = {
path : Path_state.t;
insecurity : IS.t;
}
(* { Initialization } *)
(** Initialize the registers to comply with the ABI (DF:=1) *)
let initialize_registers ps =
let open Dba in
(* DF *)
let df_value = Bitvector.zero in
Logger.debug ~level:5 "[initialisation] Setting DF to %s" (Bitvector.to_hexstring df_value);
let rval = Expr.constant df_value in
let tag = Dba.VarTag.register in
let lval = LValue.var ~tag ~bitsize:Size.Bit.bits1 "DF" in
Relse_smt.Translate.assignment lval rval ps
(** Initialize the initial memory of path state [ps] from [filename]
(default memory.txt) *)
let init_from_file ps =
let filename = Sse_options.MemoryFile.get () in
if not (Sys.file_exists filename) then begin
Logger.warning "Cannot find relse configuration file %s" filename;
ps
end
else
let initials =
Logger.debug "Reading initialization from %s" filename;
let parser = Parser.initialization
and lexer = Lexer.token in
Parse_utils.read_file ~parser ~lexer ~filename
in
let f ps init =
let open Parse_helpers.Initialization in
match init.operation with
| Mem_load (addr, size) ->
(* Read these addresses from the binary file. *)
Path_state.with_init_mem_at ps ~addr ~size
| Universal _ -> failwith "Not implemented"
| Assignment (lval, rval, _) ->
match rval with
| Singleton rv -> Relse_smt.Translate.assignment lval rv ps
| _ -> failwith "Not implemented"
in List.fold_left f ps initials
let make_initial_state ~entrypoint =
let decode vaddress = Disasm_core.decode vaddress |> fst in
let initial_instruction = decode entrypoint in
let initial_symstate = Sym_state.create () in
let initial_ps, initial_is =
Path_state.create initial_symstate initial_instruction
|> init_from_file
|> initialize_registers
|> IS.initialize in
{ path=initial_ps; insecurity=initial_is }
let path state = state.path
let insecurity state = state.insecurity
let symbolic_state state = Path_state.symbolic_state state.path
let set_path state path = { state with path }
(* let set_insecurity state insecurity = { state with insecurity } *)
let set _ path insecurity = { path; insecurity }
let on_path f state =
{ state with path = (f state.path) }
(* let on_insecurity f state =
* { state with insecurity = (f state.insecurity) } *)
let update_state f state =
let (path, insecurity) = f state.path state.insecurity
in { path; insecurity }
end
module State_stack = Fstack.Make(State)
module Env = struct
type t = {
(* The stack of states to explore *)
worklist : State_stack.t;
(* The current state *)
current_state : State.t option;
(* The number of paths currently explored *)
paths : int;
(* The stub context which contains all the stub informations *)
stub_ctx: Stubs.t;
}
let empty =
let worklist = State_stack.empty in
let initial_state = None in
let stub_ctx = Stubs.empty in
{ worklist; current_state=initial_state; paths=0; stub_ctx; }
(* Current environment *)
let env = ref empty
(* Initialize the environment *)
let initialize_env ~entrypoint =
let initial_state = State.make_initial_state ~entrypoint in
let worklist = State_stack.singleton initial_state in
let stub_ctx = Stubs.init () in
env := { empty with worklist; stub_ctx }
(* Chose a new path from then environment *)
let next_state () =
let worklist, current_state =
match State_stack.pop !env.worklist with
| current_state, worklist ->
Logger.debug ~level:3 "[Exploration] Choose new path from environment :@ %a"
Path_state.pp_loc (State.path current_state);
worklist, Some current_state
| exception Not_found -> !env.worklist, None
in env := {!env with worklist; current_state }
let push_state st =
let worklist = State_stack.push st !env.worklist in
env := { !env with worklist }
let incr_paths () =
env := { !env with paths=(!env.paths + 1) }
let current_state () =
match !env.current_state with
| Some current_state -> current_state
| None -> failwith "No current state in the environment"
let current_state_option () = !env.current_state
let set_current_state state =
env := { !env with current_state = Some state }
let get_nb_paths () = !env.paths
let stub_ctx () = !env.stub_ctx
(** Mark the current state as satisfiable *)
let mark_sat () =
let current_state = current_state () in
set_current_state (State.on_path Path_state.mark_sat current_state)
(** Set the current path state *)
let set_current_path_state ps =
let current_state = current_state () in
set_current_state (State.set_path current_state ps)
(* (\** Get the current path state *\)
* let get_current_path_state () =
* State.path (current_state ()) *)
end
module Terminator = struct
type t = {
end_path : Path_state.t -> bool;
abort_path : Path_state.t -> bool;
end_search : Path_state.t -> bool;
}
let create ~end_path ~abort_path ~end_search () =
{ end_path; abort_path; end_search }
let dfs ~goals ~avoids =
let in_set st = Virtual_address.Set.mem (Path_state.virtual_address st) in
let end_path st =
if in_set st avoids then
(* Found location to avoid *)
(Logger.debug ~level:2 "[Exploration] End of path: location to avoid"; true)
else false
and abort_path st =
if Sse_options.MaxDepth.get () > 0 &&
Path_state.depth st >= Sse_options.MaxDepth.get ()
then
(* Max depth reached *)
begin
Relse_stats.(set_status Max_Depth);
Logger.warning "[Exploration] Max depth exceeded (%d)" (Path_state.depth st);
true
end
else false
and end_search st = in_set st goals in
create ~end_search ~abort_path ~end_path ()
end
(** End the RelSE *)
let end_relse msg =
Logger.result msg;
Relse_stats.print_stats ();
exit (Relse_stats.get_exit_code ())
(** Terminates the current path *)
let end_path () =
Env.incr_paths ();
let state = Env.current_state () in
let path_number = Env.get_nb_paths () in
Logger.debug ~level:4 "[Exploration] Path %d explored." path_number;
Path_state.pp_path (State.path state) path_number;
Relse_stats.add_path ();
if Relse_options.MaxPaths.get () > 0 &&
Env.get_nb_paths () >= Relse_options.MaxPaths.get ()
then
begin
Relse_stats.(set_status Max_Paths);
end_relse "Maximum number of paths reached."
end
(** Terminates the current path and the RelSE *)
let end_path_and_relse msg =
end_path () |> ignore;
end_relse msg
(** Check the remaining insecurity queries before ending the path *)
let check_and_end_path ~terminated () =
end_path ();
let state = Env.current_state () in
(* Check remaining insecurity queries *)
ignore (IS.end_path ~terminated
(State.path state)
(State.insecurity state))
let get_avoid_address () =
let addresses = Sse_utils.get_avoid_addresses () in
let add_function_end func_name addresses =
let img = Kernel_functions.get_img () in
let _, end_fun = Loader_utils.symbol_by_name ~name:func_name img
|> Utils.unsafe_get_opt
|> Loader_utils.symbol_interval in
let end_fun = (Virtual_address.pred end_fun) in
(* This is probably wrong *)
let rec add_addresses addresses address count =
if count = 0 then addresses
else begin
Logger.debug ~level:6 "[Initialization] Adding end of %s at %a to avoids."
func_name Virtual_address.pp address;
let addresses = (Virtual_address.Set.add address addresses) in
add_addresses addresses (Virtual_address.pred address) (count - 1)
end
in add_addresses addresses end_fun (Kernel_options.Machine.word_size () / 8)
in
let addresses =
(* If entrypoint is a function, add ret from function as avoid address *)
match Kernel_options.Entry_point.get_opt () with
| None -> add_function_end "main" addresses (* Means we start from main *)
| Some s ->
match Loader_utils.Binary_loc.of_string s with
| Loader_utils.Binary_loc.Name func_name ->
add_function_end func_name addresses
| _ -> addresses
in
Logger.debug ~level:2 "[Initialization] Avoids %a" Virtual_address.pp_set addresses;
addresses
let check_sat_current_state () = (* TODO Move somewhere else *)
let ps = State.path (Env.current_state ()) in
match Relse_path.Path_state.status ps with
| Formula.SAT ->
(Logger.debug ~level:2 "[Exploration] Spared pc check: sat"; Env.mark_sat (); true)
| Formula.UNSAT ->
(Logger.debug ~level:2 "[Exploration] Spared pc check: unsat"; false)
| _ ->
Logger.debug ~level:2 "[Exploration] Running exploration query";
match Relse_smt.Solver.check_sat ps with
| Formula.SAT, ps -> Env.set_current_path_state ps; Env.mark_sat (); true
| _ -> false
(** Pick the next satisfiable branch in the worklist *)
let rec choose_next_state () =
Env.next_state ();
match Env.current_state_option () with
| Some _ ->
(match check_sat_current_state () with
| true -> ()
| false -> choose_next_state ())
| None -> (* No more paths *)
end_relse "[Exploration] End of the RelSE"
module Eval = struct
let assignment ~lvalue ~rvalue state =
State.on_path (Relse_smt.Translate.assignment lvalue rvalue) state
let static_jump ~jump_target state =
match jump_target with
| Dba.JInner idx ->
State.on_path (Path_state.set_block_index idx) state
| Dba.JOuter addr ->
let vaddr = Dba_types.Caddress.to_virtual_address addr in
Logger.debug ~level:5 "Jumping to new address %a"
Virtual_address.pp vaddr;
State.on_path (Path_state.goto_vaddr vaddr) state
let fork_path ~r_cond ~jump_target ~local_target state =
Relse_stats.add_fork ();
(* Prepare conditional expressions *)
let mk_then_cond expr = Formula.(mk_bv_equal expr mk_bv_one) in
let then_expr = Rel_expr.apply mk_then_cond r_cond in
let mk_else_cond expr = Formula.mk_bl_not (mk_then_cond expr) in
let else_expr = Rel_expr.apply mk_else_cond r_cond in
(* Expand current path with assert condition and go to jump_target *)
let then_state =
State.on_path (Path_state.update_pc_cond then_expr) state
|> static_jump ~jump_target
in
(* Push path with negation of the condition and go to local_target *)
let else_state =
let update_pc ps = (Path_state.update_pc_cond else_expr) ps
|> Path_state.set_block_index local_target in
State.on_path update_pc state
in
Env.push_state then_state; Env.push_state else_state; choose_next_state ()
let ite ~condition ~jump_target ~local_target =
let state = Env.current_state () in
Logger.debug ~level:2 "[Exploration][Ite] Condition %a"
Dba_types.Expr.pp condition;
if Instruction.is_conditional_jump (Path_state.get_instruction @@ State.path state)
then Relse_stats.add_conditional ();
match Dba.Expr.constant_value condition with
| Some bv when Bitvector.is_zeros bv ->
(* Condition evaluates to false *)
static_jump ~jump_target state
|> Env.push_state;
choose_next_state ()
| Some _ ->
(* Condition evaluates to true *)
State.on_path (Path_state.set_block_index local_target) state
|> Env.push_state;
choose_next_state ()
| None ->
let r_cond = Relse_smt.Translate.expr (State.symbolic_state state) condition in
fork_path ~r_cond ~jump_target ~local_target state
let dynamic_jump ~jump_expr =
let state = Env.current_state () in
let ps = State.path state in
let img = Kernel_functions.get_img () in
let r_expr = Relse_smt.Translate.expr (Path_state.symbolic_state ps) jump_expr in
let n = Sse_options.JumpEnumDepth.get () in
(* Jump only on the target of the left side *)
let target = Rel_expr.left r_expr in
let concretes, ps = match Formula_utils.is_bv_cst target with
| Some bv -> (* If the target expression is concrete, goto jump target *)
[bv], ps
| None -> (* If the target expression is symbolic, enumerate jump target *)
let concretes, ps = Relse_smt.Solver.enumerate_values n target ps in
if List.length concretes >= n then Relse_stats.(set_status EnumLimit);
concretes, ps
in
let with_bv path_state bv =
let mk_cond expr = Formula.(mk_bv_equal (mk_bv_cst bv) expr) in
let condition = Rel_expr.apply mk_cond r_expr in
let addr = Virtual_address.of_bitvector bv in
let invalid bv =
Logger.warning
"@[<hov>Dynamic jump@ %a@ could have led to invalid address %a;@ \
skipping@]"
Path_state.pp_loc path_state Bitvector.pp_hex bv
in
Logger.debug ~level:4 "[Exploration] Dynamic jump@ %a@ could lead to %a"
Path_state.pp_loc path_state
Bitvector.pp_hex bv;
let address = Virtual_address.to_int addr in
let section = Loader_utils.find_section_by_address ~address img in
match section with
| Some s when
Loader.Section.has_flag Loader_types.Read s &&
Loader.Section.has_flag Loader_types.Exec s ->
let ps = (Path_state.update_pc_dynamic ~checked:true condition) path_state
|> Path_state.goto_vaddr addr in
Env.push_state (State.set_path state ps)
| Some _ | None -> invalid bv
in
(* Add the SRNI check only in the first branch *)
List.iter (with_bv ps) concretes;
choose_next_state ()
let skip instruction idx =
Logger.debug ~level:3 "[Exploration] Skipping %a" Dba_printer.Ascii.pp_instruction instruction;
Path_state.set_block_index idx
let assertion condition idx =
let state = Env.current_state () in
Logger.debug ~level:2 "[Exploration][Assert] Assert with condition %a"
Dba_types.Expr.pp condition;
(* Build continuation state *)
(* continue_cond := condition != 0 in left /\ condition != 0 in right *)
let cont_cond = condition
|> Relse_smt.Translate.expr (State.symbolic_state state)
|> Rel_expr.apply (Formula.mk_bv_distinct Formula.mk_bv_zero)
|> Rel_expr.fold0 Formula.mk_bl_and in
let cont_state = State.path state
|> Path_state.set_block_index idx
|> fun ps -> Path_state.add_assertion cont_cond ps in
(* Check if assertion can fail *)
(* fail_cond := condition = 0 in left \/ condition = 0 in right *)
let fail_cond = Formula.mk_bl_not cont_cond in
match Relse_smt.Solver.check_sat_with_asserts Relse_stats.Exploration
[fail_cond] (State.path state) with
| SAT, _ -> let model = Relse_smt.Solver.get_model_with_asserts
[fail_cond] (State.path state) in
Sse_options.Logger.error
"@[<v 2> Assertion failed %@ %a@ %a@]"
Path_state.pp_loc (State.path state)
Smt_model.pp model;
| UNSAT, _ ->
Logger.debug ~level:10 "@[<v 2> Assertion satisfied]";
State.set_path state cont_state |> Env.set_current_state
| (UNKNOWN | TIMEOUT), _ ->
Relse_options.Logger.error "@[Assertion got unknown status %@ %a@]"
Path_state.pp_loc (State.path state);
State.set_path state cont_state |> Env.set_current_state
(* If comment is activated, this will add, for every formula entry, a
comment about where it comes from.
This can be usefull to debug the path predicate translation. *)
let maybe_add_comment ps =
let comment =
Print_utils.string_from_pp
(Formula_pp.pp_as_comment Path_state.pp_loc) ps
in Path_state.maybe_add_comment ps comment
(** Evaluation of a DBA instuction in the symbolic environment *)
let eval () =
let state = State.on_path maybe_add_comment (Env.current_state ()) in
let ps = State.path state in
let is = State.insecurity state in
Logger.debug ~level:5 "@[Evaluating@ %a@]" Path_state.pp_loc ps;
(* Check for stubs *)
match Stubs.check (Env.stub_ctx ()) ps is with
| Stubs.Terminated ->
check_and_end_path ~terminated:true (); choose_next_state ()
| Stubs.Skip (ps,is) ->
Env.set_current_state (State.set state ps is)
| Stubs.Continue (ps,is) ->
Env.set_current_state (State.set state ps is);
let dba_instr = Path_state.get_dba_instruction ps in
(* Gather (and possibly verifies) the insecurity checks at the
current instruction *)
let state = State.update_state IS.eval state in
Env.set_current_state state;
(* Evaluate the instruction
TODO: harmonization of functions / style *)
match dba_instr with
| Dba.Instr.Assign (lvalue, rvalue, idx) ->
let state = state
|> assignment ~lvalue ~rvalue
|> State.on_path (Path_state.set_block_index idx) in
Env.set_current_state state;
| Dba.Instr.SJump (jump_target, _) ->
let state = static_jump ~jump_target state in
Env.set_current_state state;
| Dba.Instr.If (condition, jump_target, local_target) ->
ite ~condition ~jump_target ~local_target
| Dba.Instr.DJump (e, _) ->
dynamic_jump ~jump_expr:e
| Dba.Instr.Stop (Some Dba.KO) ->
(* Discard current path, choose a new one *)
check_and_end_path ~terminated:true (); choose_next_state ()
(* Nop instructions *)
| Dba.Instr.Serialize (_, idx)
| Dba.Instr.Undef (_, idx) as instruction ->
let state = State.on_path (skip instruction idx) state in
Env.set_current_state state;
(* Assert some condition *)
(* TODO: Do we want to include asserts in relse_insecurity? *)
| Dba.Instr.Assert (condition, idx) ->
assertion condition idx
| Dba.Instr.Stop _
| Dba.Instr.Assume _
| Dba.Instr.Nondet _
| Dba.Instr.NondetAssume _
| Dba.Instr.Malloc _
| Dba.Instr.Free _
| Dba.Instr.Print _ as dba_instruction ->
let vaddress = Path_state.location ps in
let msg =
Format.asprintf "instruction %a at address %a"
Dba_printer.Ascii.pp_instruction dba_instruction
Virtual_address.pp (Dba_types.Caddress.to_virtual_address vaddress)
in Errors.not_yet_implemented msg
end
(** Explores all the symbolic paths *)
let loop_until ~p ~halt =
let rec loop_aux () =
let open Terminator in
let state = Env.current_state () in
let ps = (State.path state) in
(* Reached the goal (and the end of the path) *)
if p.end_search ps then
begin
check_and_end_path ~terminated:true ();
halt state
end
(* Reached the end of the path *)
else if p.end_path ps then
begin
check_and_end_path ~terminated:true ();
choose_next_state ();
loop_aux ()
end
(* Path aborted *)
else if p.end_path ps then
begin
check_and_end_path ~terminated:false ();
choose_next_state ();
loop_aux ()
end
else
(* Continue along this path *)
begin
Eval.eval ();
loop_aux ()
end
in
choose_next_state (); loop_aux ()
(** Halts RelSE along a path and returns a model.
- Generate a output file with the stats, *)
let halt state =
let ps = State.path state in
let model = Relse_smt.Solver.get_model ps in
Logger.result "@[<v 0>[Exploration] RelSE ended with the following model:@ %a@]"
Smt_model.pp model;
end_path_and_relse "[Exploration] Halt"
(** Run the relational symbolic execution on the specified file *)
let do_relse ~filename =
Logger.debug ~level:2 "[Initialization] Running RelSE with %s" filename;
let entrypoint = get_entry_point () in
Logger.debug ~level:2 "[Initialization] Starting from %a" Virtual_address.pp
entrypoint;
let p =
Terminator.dfs
~goals:(Sse_utils.get_goal_addresses ())
~avoids:(get_avoid_address ()) in
Env.initialize_env ~entrypoint;
loop_until ~p ~halt
let timeout_handler _ =
Relse_stats.set_status Relse_stats.Timeout;
end_path_and_relse "[Exploration] Timeout of the RelSE"
(** Setup timeout fo the RelSE and interrupt redirection *)
let prepare_interrupt_state () =
(* Redirect interrupts to handler *)
Sys.(set_signal sigalrm (Signal_handle timeout_handler));
Sys.(set_signal sigint (Signal_handle timeout_handler));
(* Set gloabl timeout *)
let set_timeout t = if t > 0 then Unix.alarm t |> ignore in
set_timeout @@ Relse_options.Timeout.get ()
let start () =
let filename = Kernel_options.ExecFile.get () in
prepare_interrupt_state ();
do_relse ~filename
end
(** Run the relational symbolic execution *)
let run () =
if Relse_options.is_enabled () && Kernel_options.ExecFile.is_set () then
let (module IS) = Relse_insecurity.init () in
let module S = Env_make(IS) in S.start ()
else
exit Relse_stats.exit_error
let _ =
Cli.Boot.enlist ~name:"RelSE" ~f:run