-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy pathgoto_check_c.cpp
2549 lines (2185 loc) · 73.5 KB
/
goto_check_c.cpp
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
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*******************************************************************\
Module: Checks for Errors in C/C++ Programs
Author: Daniel Kroening, [email protected]
\*******************************************************************/
/// \file
/// Checks for Errors in C/C++ Programs
#include "goto_check_c.h"
#include <util/arith_tools.h>
#include <util/array_name.h>
#include <util/bitvector_expr.h>
#include <util/c_types.h>
#include <util/config.h>
#include <util/cprover_prefix.h>
#include <util/expr_util.h>
#include <util/find_symbols.h>
#include <util/floatbv_expr.h>
#include <util/ieee_float.h>
#include <util/invariant.h>
#include <util/mathematical_expr.h>
#include <util/message.h>
#include <util/options.h>
#include <util/pointer_expr.h>
#include <util/pointer_offset_size.h>
#include <util/pointer_predicates.h>
#include <util/simplify_expr.h>
#include <util/std_code.h>
#include <util/std_expr.h>
#include <goto-programs/goto_model.h>
#include <goto-programs/remove_skip.h>
#include <analyses/local_bitvector_analysis.h>
#include <ansi-c/c_expr.h>
#include <langapi/language.h>
#include <langapi/mode.h>
#include <algorithm>
class goto_check_ct
{
public:
goto_check_ct(
const namespacet &_ns,
const optionst &_options,
message_handlert &_message_handler)
: ns(_ns), local_bitvector_analysis(nullptr), log(_message_handler)
{
enable_bounds_check = _options.get_bool_option("bounds-check");
enable_pointer_check = _options.get_bool_option("pointer-check");
enable_memory_leak_check = _options.get_bool_option("memory-leak-check");
enable_memory_cleanup_check =
_options.get_bool_option("memory-cleanup-check");
enable_div_by_zero_check = _options.get_bool_option("div-by-zero-check");
enable_float_div_by_zero_check =
_options.get_bool_option("float-div-by-zero-check");
enable_enum_range_check = _options.get_bool_option("enum-range-check");
enable_signed_overflow_check =
_options.get_bool_option("signed-overflow-check");
enable_unsigned_overflow_check =
_options.get_bool_option("unsigned-overflow-check");
enable_pointer_overflow_check =
_options.get_bool_option("pointer-overflow-check");
enable_conversion_check = _options.get_bool_option("conversion-check");
enable_undefined_shift_check =
_options.get_bool_option("undefined-shift-check");
enable_float_overflow_check =
_options.get_bool_option("float-overflow-check");
enable_simplify = _options.get_bool_option("simplify");
enable_nan_check = _options.get_bool_option("nan-check");
retain_trivial = _options.get_bool_option("retain-trivial-checks");
enable_assert_to_assume = _options.get_bool_option("assert-to-assume");
error_labels = _options.get_list_option("error-label");
enable_pointer_primitive_check =
_options.get_bool_option("pointer-primitive-check");
}
typedef goto_functionst::goto_functiont goto_functiont;
void goto_check(
const irep_idt &function_identifier,
goto_functiont &goto_function);
/// Fill the list of allocations \ref allocationst with <address, size> for
/// every allocation instruction. Also check that each allocation is
/// well-formed.
/// \param goto_functions: goto functions from which the allocations are to be
/// collected
void collect_allocations(const goto_functionst &goto_functions);
protected:
const namespacet &ns;
std::unique_ptr<local_bitvector_analysist> local_bitvector_analysis;
goto_programt::const_targett current_target;
messaget log;
using guardt = std::function<exprt(exprt)>;
const guardt identity = [](exprt expr) { return expr; };
void check_shadow_memory_api_calls(const goto_programt::instructiont &);
/// Check an address-of expression:
/// if it is a dereference then check the pointer
/// if it is an index then address-check the array and then check the index
/// \param expr: the expression to be checked
/// \param guard: the condition for the check
void check_rec_address(const exprt &expr, const guardt &guard);
/// Check a logical operation: check each operand in separation while
/// extending the guarding condition as follows.
/// a /\ b /\ c ==> check(a, TRUE), check(b, a), check (c, a /\ b)
/// a \/ b \/ c ==> check(a, TRUE), check(b, ~a), check (c, ~a /\ ~b)
/// \param expr: the expression to be checked
/// \param guard: the condition for the check (extended with the previous
/// operands (or their negations) for recursively calls)
void check_rec_logical_op(const exprt &expr, const guardt &guard);
/// Check an if expression: check the if-condition alone, and then check the
/// true/false-cases with the guard extended with if-condition and it's
/// negation, respectively.
/// \param if_expr: the expression to be checked
/// \param guard: the condition for the check (extended with the (negation of
/// the) if-condition for recursively calls)
void check_rec_if(const if_exprt &if_expr, const guardt &guard);
/// Check that a member expression is valid:
/// - check the structure this expression is a member of (via pointer of its
/// dereference)
/// - run pointer-validity check on `*(s+member_offset)' instead of
/// `s->member' to avoid checking safety of `s'
/// - check all operands of the expression
/// \param member: the expression to be checked
/// \param guard: the condition for the check
/// \return true if no more checks are required for \p member or its
/// sub-expressions
bool check_rec_member(const member_exprt &member, const guardt &guard);
/// Check that a division is valid: check for division by zero, overflow and
/// NaN (for floating point numbers).
/// \param div_expr: the expression to be checked
/// \param guard: the condition for the check
void check_rec_div(const div_exprt &div_expr, const guardt &guard);
/// Check that an arithmetic operation is valid: overflow check, NaN-check
/// (for floating point numbers), and pointer overflow check.
/// \param expr: the expression to be checked
/// \param guard: the condition for the check
void check_rec_arithmetic_op(const exprt &expr, const guardt &guard);
/// Recursively descend into \p expr and run the appropriate check for each
/// sub-expression, while collecting the condition for the check in \p
/// guard.
/// \param expr: the expression to be checked
/// \param guard: the condition for when the check should be made
/// \param is_assigned: the expression is assigned to
void check_rec(const exprt &expr, const guardt &guard, bool is_assigned);
/// Initiate the recursively analysis of \p expr with its `guard' set to TRUE.
/// \param expr: the expression to be checked
/// \param is_assigned: the expression is assigned to
void check(const exprt &expr, bool is_assigned);
struct conditiont
{
conditiont(const exprt &_assertion, const std::string &_description)
: assertion(_assertion), description(_description)
{
}
exprt assertion;
std::string description;
};
using conditionst = std::list<conditiont>;
void bounds_check(const exprt &, const guardt &);
void bounds_check_index(const index_exprt &, const guardt &);
void bounds_check_bit_count(const unary_exprt &, const guardt &);
void div_by_zero_check(const div_exprt &, const guardt &);
void float_div_by_zero_check(const div_exprt &, const guardt &);
void mod_by_zero_check(const mod_exprt &, const guardt &);
void mod_overflow_check(const mod_exprt &, const guardt &);
void enum_range_check(const exprt &, const guardt &, bool is_assigned);
void undefined_shift_check(const shift_exprt &, const guardt &);
void pointer_rel_check(const binary_exprt &, const guardt &);
void pointer_overflow_check(const exprt &, const guardt &);
void memory_leak_check(const irep_idt &function_id);
/// Generates VCCs for the validity of the given dereferencing operation.
/// \param expr the expression to be checked
/// \param src_expr The expression as found in the program,
/// prior to any rewriting
/// \param guard the condition under which the operation happens
void pointer_validity_check(
const dereference_exprt &expr,
const exprt &src_expr,
const guardt &guard);
/// Generates VCCs to check that pointers passed to pointer primitives are
/// either null or valid
///
/// \param expr: the pointer primitive expression
/// \param guard: the condition under which the operation happens
void pointer_primitive_check(const exprt &expr, const guardt &guard);
/// Returns true if the given expression is a pointer primitive
/// that requires validation of the operand to guard against misuse
///
/// \param expr expression
/// \return true if the given expression is a pointer primitive that requires
/// checking
bool requires_pointer_primitive_check(const exprt &expr);
std::optional<goto_check_ct::conditiont>
get_pointer_is_null_condition(const exprt &address, const exprt &size);
conditionst get_pointer_points_to_valid_memory_conditions(
const exprt &address,
const exprt &size);
exprt is_in_bounds_of_some_explicit_allocation(
const exprt &pointer,
const exprt &size);
conditionst get_pointer_dereferenceable_conditions(
const exprt &address,
const exprt &size);
void integer_overflow_check(const exprt &, const guardt &);
void conversion_check(const exprt &, const guardt &);
void float_overflow_check(const exprt &, const guardt &);
void nan_check(const exprt &, const guardt &);
std::string array_name(const exprt &);
/// Include the \p asserted_expr in the code conditioned by the \p guard.
/// \param asserted_expr: expression to be asserted
/// \param comment: human readable comment
/// \param property_class: classification of the property
/// \param is_fatal: property checks for undefined behavior
/// \param source_location: the source location of the original expression
/// \param src_expr: the original expression to be included in the comment
/// \param guard: the condition under which the asserted expression should be
/// taken into account
void add_guarded_property(
const exprt &asserted_expr,
const std::string &comment,
const std::string &property_class,
bool is_fatal,
const source_locationt &source_location,
const exprt &src_expr,
const guardt &guard);
goto_programt new_code;
typedef std::set<std::pair<exprt, exprt>> assertionst;
assertionst assertions;
/// Remove all assertions containing the symbol in \p lhs as well as all
/// assertions containing dereference.
/// \param lhs: the left-hand-side expression whose symbol should be
/// invalidated
void invalidate(const exprt &lhs);
bool enable_bounds_check;
bool enable_pointer_check;
bool enable_memory_leak_check;
bool enable_memory_cleanup_check;
bool enable_div_by_zero_check;
bool enable_float_div_by_zero_check;
bool enable_enum_range_check;
bool enable_signed_overflow_check;
bool enable_unsigned_overflow_check;
bool enable_pointer_overflow_check;
bool enable_conversion_check;
bool enable_undefined_shift_check;
bool enable_float_overflow_check;
bool enable_simplify;
bool enable_nan_check;
bool retain_trivial;
bool enable_assert_to_assume;
bool enable_pointer_primitive_check;
/// Maps a named-check name to the corresponding boolean flag.
std::map<irep_idt, bool *> name_to_flag{
{"bounds-check", &enable_bounds_check},
{"pointer-check", &enable_pointer_check},
{"memory-leak-check", &enable_memory_leak_check},
{"memory-cleanup-check", &enable_memory_cleanup_check},
{"div-by-zero-check", &enable_div_by_zero_check},
{"float-div-by-zero-check", &enable_float_div_by_zero_check},
{"enum-range-check", &enable_enum_range_check},
{"signed-overflow-check", &enable_signed_overflow_check},
{"unsigned-overflow-check", &enable_unsigned_overflow_check},
{"pointer-overflow-check", &enable_pointer_overflow_check},
{"conversion-check", &enable_conversion_check},
{"undefined-shift-check", &enable_undefined_shift_check},
{"float-overflow-check", &enable_float_overflow_check},
{"nan-check", &enable_nan_check},
{"pointer-primitive-check", &enable_pointer_primitive_check}};
typedef optionst::value_listt error_labelst;
error_labelst error_labels;
// the first element of the pair is the base address,
// and the second is the size of the region
typedef std::pair<exprt, exprt> allocationt;
typedef std::list<allocationt> allocationst;
allocationst allocations;
irep_idt mode;
/// \brief Adds "checked" pragmas for all currently active named checks
/// on the given source location.
void add_active_named_check_pragmas(source_locationt &source_location) const;
/// \brief Adds "checked" pragmas for all named checks on the given source
/// location (prevents any the instanciation of any ulterior check).
void
add_all_checked_named_check_pragmas(source_locationt &source_location) const;
/// activation statuses for named checks
typedef enum
{
ENABLE,
DISABLE,
CHECKED
} check_statust;
/// optional (named-check, status) pair
using named_check_statust = std::optional<std::pair<irep_idt, check_statust>>;
/// Matches a named-check string of the form
///
/// ```
/// ("enable"|"disable"|"checked") ":" <named-check>
/// ```
///
/// \returns a pair (name, status) if the match succeeds
/// and the name is known, nothing otherwise.
named_check_statust match_named_check(const irep_idt &named_check) const;
};
/// Allows to:
/// - override a Boolean flag with a new value via `set_flag`
/// - set a Boolean flag to false via `disable_flag`, such that
/// previous `set_flag` are overridden and future `set_flag` are ignored.
///
/// A flag's initial value (before any `set_flag` or `disable_flag`) is restored
/// when the entire object goes out of scope.
class flag_overridet
{
public:
explicit flag_overridet(const source_locationt &source_location)
: source_location(source_location)
{
}
/// \brief Store the current value of \p flag and
/// then set its value to \p new_value.
///
/// - calling `set_flag` after `disable_flag` is a no-op
/// - calling `set_flag` twice triggers an INVARIANT
void set_flag(bool &flag, bool new_value, const irep_idt &flag_name)
{
// make this a no-op if the flag is disabled
if(disabled_flags.find(&flag) != disabled_flags.end())
return;
// detect double sets
INVARIANT(
flags_to_reset.find(&flag) == flags_to_reset.end(),
"Flag " + id2string(flag_name) + " set twice at \n" +
source_location.as_string());
if(flag != new_value)
{
flags_to_reset[&flag] = flag;
flag = new_value;
}
}
/// Sets the given flag to false, overriding any previous value.
///
/// - calling `disable_flag` after `set_flag` overrides the set value
/// - calling `disable_flag` twice triggers an INVARIANT
void disable_flag(bool &flag, const irep_idt &flag_name)
{
INVARIANT(
disabled_flags.find(&flag) == disabled_flags.end(),
"Flag " + id2string(flag_name) + " disabled twice at \n" +
source_location.as_string());
disabled_flags.insert(&flag);
// If the flag has not already been set,
// we store its current value in the reset map.
// Otherwise, the reset map already holds
// the initial value we want to reset it to, keep it as is.
if(flags_to_reset.find(&flag) == flags_to_reset.end())
flags_to_reset[&flag] = flag;
// set the flag to false in all cases.
flag = false;
}
/// \brief Restore the values of all flags that have been
/// modified via `set_flag`.
~flag_overridet()
{
for(const auto &flag_pair : flags_to_reset)
*flag_pair.first = flag_pair.second;
}
private:
const source_locationt &source_location;
std::map<bool *, bool> flags_to_reset;
std::set<bool *> disabled_flags;
};
static exprt implication(exprt lhs, exprt rhs)
{
// rewrite a => (b => c) to (a && b) => c
if(rhs.id() == ID_implies)
{
const auto &rhs_implication = to_implies_expr(rhs);
return implies_exprt(
and_exprt(std::move(lhs), rhs_implication.lhs()), rhs_implication.rhs());
}
else
{
return implies_exprt(std::move(lhs), std::move(rhs));
}
}
void goto_check_ct::collect_allocations(const goto_functionst &goto_functions)
{
for(const auto &gf_entry : goto_functions.function_map)
{
for(const auto &instruction : gf_entry.second.body.instructions)
{
if(!instruction.is_function_call())
continue;
const auto &function = instruction.call_function();
if(
function.id() != ID_symbol ||
to_symbol_expr(function).get_identifier() != CPROVER_PREFIX
"allocated_memory")
continue;
const code_function_callt::argumentst &args =
instruction.call_arguments();
if(
args.size() != 2 || args[0].type().id() != ID_unsignedbv ||
args[1].type().id() != ID_unsignedbv)
throw "expected two unsigned arguments to " CPROVER_PREFIX
"allocated_memory";
DATA_INVARIANT(
args[0].type() == args[1].type(),
"arguments of allocated_memory must have same type");
allocations.push_back({args[0], args[1]});
}
}
}
void goto_check_ct::invalidate(const exprt &lhs)
{
if(lhs.id() == ID_index)
invalidate(to_index_expr(lhs).array());
else if(lhs.id() == ID_member)
invalidate(to_member_expr(lhs).struct_op());
else if(lhs.id() == ID_symbol)
{
// clear all assertions about 'symbol'
const irep_idt &lhs_id = to_symbol_expr(lhs).get_identifier();
for(auto it = assertions.begin(); it != assertions.end();)
{
if(
has_symbol_expr(it->second, lhs_id, false) ||
has_subexpr(it->second, ID_dereference))
{
it = assertions.erase(it);
}
else
++it;
}
}
else
{
// give up, clear all
assertions.clear();
}
}
void goto_check_ct::div_by_zero_check(
const div_exprt &expr,
const guardt &guard)
{
if(!enable_div_by_zero_check)
return;
// add divison by zero subgoal
exprt zero = from_integer(0, expr.op1().type());
const notequal_exprt inequality(expr.op1(), std::move(zero));
add_guarded_property(
inequality,
"division by zero",
"division-by-zero",
true, // fatal
expr.find_source_location(),
expr,
guard);
}
void goto_check_ct::float_div_by_zero_check(
const div_exprt &expr,
const guardt &guard)
{
if(!enable_float_div_by_zero_check)
return;
// add divison by zero subgoal
exprt zero = from_integer(0, expr.op1().type());
const notequal_exprt inequality(expr.op1(), std::move(zero));
add_guarded_property(
inequality,
"floating-point division by zero",
"float-division-by-zero",
false, // fatal
expr.find_source_location(),
expr,
guard);
}
void goto_check_ct::enum_range_check(
const exprt &expr,
const guardt &guard,
bool is_assigned)
{
if(!enable_enum_range_check)
return;
if(is_assigned)
return; // not in range yet
// we might be looking at a lowered enum_is_in_range_exprt, skip over these
const auto &pragmas = expr.source_location().get_pragmas();
for(const auto &d : pragmas)
{
if(d.first == "disable:enum-range-check")
return;
}
const exprt check = enum_is_in_range_exprt{expr}.lower(ns);
add_guarded_property(
check,
"enum range check",
"enum-range-check",
false, // fatal
expr.find_source_location(),
expr,
guard);
}
void goto_check_ct::undefined_shift_check(
const shift_exprt &expr,
const guardt &guard)
{
if(!enable_undefined_shift_check)
return;
// Undefined for all types and shifts if distance exceeds width,
// and also undefined for negative distances.
const typet &distance_type = expr.distance().type();
if(distance_type.id() == ID_signedbv)
{
binary_relation_exprt inequality(
expr.distance(), ID_ge, from_integer(0, distance_type));
add_guarded_property(
inequality,
"shift distance is negative",
"undefined-shift",
true, // fatal
expr.find_source_location(),
expr,
guard);
}
const typet &op_type = expr.op().type();
if(op_type.id() == ID_unsignedbv || op_type.id() == ID_signedbv)
{
exprt width_expr =
from_integer(to_bitvector_type(op_type).get_width(), distance_type);
add_guarded_property(
binary_relation_exprt(expr.distance(), ID_lt, std::move(width_expr)),
"shift distance too large",
"undefined-shift",
true, // fatal
expr.find_source_location(),
expr,
guard);
if(op_type.id() == ID_signedbv && expr.id() == ID_shl)
{
binary_relation_exprt inequality(
expr.op(), ID_ge, from_integer(0, op_type));
add_guarded_property(
inequality,
"shift operand is negative",
"undefined-shift",
true, // fatal
expr.find_source_location(),
expr,
guard);
}
}
else
{
add_guarded_property(
false_exprt(),
"shift of non-integer type",
"undefined-shift",
true, // fatal
expr.find_source_location(),
expr,
guard);
}
}
void goto_check_ct::mod_by_zero_check(
const mod_exprt &expr,
const guardt &guard)
{
if(!enable_div_by_zero_check)
return;
// add divison by zero subgoal
exprt zero = from_integer(0, expr.divisor().type());
const notequal_exprt inequality(expr.divisor(), std::move(zero));
add_guarded_property(
inequality,
"division by zero",
"division-by-zero",
true, // fatal
expr.find_source_location(),
expr,
guard);
}
/// check a mod expression for the case INT_MIN % -1
void goto_check_ct::mod_overflow_check(
const mod_exprt &expr,
const guardt &guard)
{
if(!enable_signed_overflow_check)
return;
const auto &type = expr.type();
if(type.id() == ID_signedbv)
{
// INT_MIN % -1 is, in principle, defined to be zero in
// ANSI C, C99, C++98, and C++11. Most compilers, however,
// fail to produce 0, and in some cases generate an exception.
// C11 explicitly makes this case undefined.
notequal_exprt int_min_neq(
expr.op0(), to_signedbv_type(type).smallest_expr());
notequal_exprt minus_one_neq(
expr.op1(), from_integer(-1, expr.op1().type()));
add_guarded_property(
or_exprt(int_min_neq, minus_one_neq),
"result of signed mod is not representable",
"overflow",
false, // fatal
expr.find_source_location(),
expr,
guard);
}
}
void goto_check_ct::conversion_check(const exprt &expr, const guardt &guard)
{
if(!enable_conversion_check)
return;
// First, check type.
const typet &type = expr.type();
if(type.id() != ID_signedbv && type.id() != ID_unsignedbv)
return;
if(expr.id() == ID_typecast)
{
const auto &op = to_typecast_expr(expr).op();
// conversion to signed int may overflow
const typet &old_type = op.type();
if(type.id() == ID_signedbv)
{
std::size_t new_width = to_signedbv_type(type).get_width();
if(old_type.id() == ID_signedbv) // signed -> signed
{
std::size_t old_width = to_signedbv_type(old_type).get_width();
if(new_width >= old_width)
return; // always ok
const binary_relation_exprt no_overflow_upper(
op, ID_le, from_integer(power(2, new_width - 1) - 1, old_type));
const binary_relation_exprt no_overflow_lower(
op, ID_ge, from_integer(-power(2, new_width - 1), old_type));
add_guarded_property(
and_exprt(no_overflow_lower, no_overflow_upper),
"arithmetic overflow on signed type conversion",
"overflow",
false, // fatal
expr.find_source_location(),
expr,
guard);
}
else if(old_type.id() == ID_unsignedbv) // unsigned -> signed
{
std::size_t old_width = to_unsignedbv_type(old_type).get_width();
if(new_width >= old_width + 1)
return; // always ok
const binary_relation_exprt no_overflow_upper(
op, ID_le, from_integer(power(2, new_width - 1) - 1, old_type));
add_guarded_property(
no_overflow_upper,
"arithmetic overflow on unsigned to signed type conversion",
"overflow",
false, // fatal
expr.find_source_location(),
expr,
guard);
}
else if(old_type.id() == ID_floatbv) // float -> signed
{
// Note that the fractional part is truncated!
auto rm = ieee_floatt::rounding_modet::ROUND_TO_EVEN;
ieee_floatt upper(to_floatbv_type(old_type), rm);
upper.from_integer(power(2, new_width - 1));
const binary_relation_exprt no_overflow_upper(
op, ID_lt, upper.to_expr());
ieee_floatt lower(to_floatbv_type(old_type), rm);
lower.from_integer(-power(2, new_width - 1) - 1);
const binary_relation_exprt no_overflow_lower(
op, ID_gt, lower.to_expr());
add_guarded_property(
and_exprt(no_overflow_lower, no_overflow_upper),
"arithmetic overflow on float to signed integer type conversion",
"overflow",
false, // fatal
expr.find_source_location(),
expr,
guard);
}
}
else if(type.id() == ID_unsignedbv)
{
std::size_t new_width = to_unsignedbv_type(type).get_width();
if(old_type.id() == ID_signedbv) // signed -> unsigned
{
std::size_t old_width = to_signedbv_type(old_type).get_width();
if(new_width >= old_width - 1)
{
// only need lower bound check
const binary_relation_exprt no_overflow_lower(
op, ID_ge, from_integer(0, old_type));
add_guarded_property(
no_overflow_lower,
"arithmetic overflow on signed to unsigned type conversion",
"overflow",
false, // fatal
expr.find_source_location(),
expr,
guard);
}
else
{
// need both
const binary_relation_exprt no_overflow_upper(
op, ID_le, from_integer(power(2, new_width) - 1, old_type));
const binary_relation_exprt no_overflow_lower(
op, ID_ge, from_integer(0, old_type));
add_guarded_property(
and_exprt(no_overflow_lower, no_overflow_upper),
"arithmetic overflow on signed to unsigned type conversion",
"overflow",
false, // fatal
expr.find_source_location(),
expr,
guard);
}
}
else if(old_type.id() == ID_unsignedbv) // unsigned -> unsigned
{
std::size_t old_width = to_unsignedbv_type(old_type).get_width();
if(new_width >= old_width)
return; // always ok
const binary_relation_exprt no_overflow_upper(
op, ID_le, from_integer(power(2, new_width) - 1, old_type));
add_guarded_property(
no_overflow_upper,
"arithmetic overflow on unsigned to unsigned type conversion",
"overflow",
false, // fatal
expr.find_source_location(),
expr,
guard);
}
else if(old_type.id() == ID_floatbv) // float -> unsigned
{
// Note that the fractional part is truncated!
auto rm = ieee_floatt::rounding_modet::ROUND_TO_EVEN;
ieee_floatt upper(to_floatbv_type(old_type), rm);
upper.from_integer(power(2, new_width));
const binary_relation_exprt no_overflow_upper(
op, ID_lt, upper.to_expr());
ieee_floatt lower(to_floatbv_type(old_type), rm);
lower.from_integer(-1);
const binary_relation_exprt no_overflow_lower(
op, ID_gt, lower.to_expr());
add_guarded_property(
and_exprt(no_overflow_lower, no_overflow_upper),
"arithmetic overflow on float to unsigned integer type conversion",
"overflow",
false, // fatal
expr.find_source_location(),
expr,
guard);
}
}
}
}
void goto_check_ct::integer_overflow_check(
const exprt &expr,
const guardt &guard)
{
if(!enable_signed_overflow_check && !enable_unsigned_overflow_check)
return;
// First, check type.
const typet &type = expr.type();
if(type.id() == ID_signedbv && !enable_signed_overflow_check)
return;
if(type.id() == ID_unsignedbv && !enable_unsigned_overflow_check)
return;
// add overflow subgoal
if(expr.id() == ID_div)
{
// undefined for signed division INT_MIN/-1
if(type.id() == ID_signedbv)
{
const auto &div_expr = to_div_expr(expr);
equal_exprt int_min_eq(
div_expr.dividend(), to_signedbv_type(type).smallest_expr());
equal_exprt minus_one_eq(div_expr.divisor(), from_integer(-1, type));
add_guarded_property(
not_exprt(and_exprt(int_min_eq, minus_one_eq)),
"arithmetic overflow on signed division",
"overflow",
false, // fatal
expr.find_source_location(),
expr,
guard);
}
return;
}
else if(expr.id() == ID_unary_minus)
{
if(type.id() == ID_signedbv)
{
// overflow on unary- on signed integers can only happen with the
// smallest representable number 100....0
equal_exprt int_min_eq(
to_unary_minus_expr(expr).op(), to_signedbv_type(type).smallest_expr());
add_guarded_property(
not_exprt(int_min_eq),
"arithmetic overflow on signed unary minus",
"overflow",
false, // fatal
expr.find_source_location(),
expr,
guard);
}
else if(type.id() == ID_unsignedbv)
{
// Overflow on unary- on unsigned integers happens for all operands
// that are not zero.
notequal_exprt not_eq_zero(
to_unary_minus_expr(expr).op(), to_unsignedbv_type(type).zero_expr());
add_guarded_property(
not_eq_zero,
"arithmetic overflow on unsigned unary minus",
"overflow",
false, // fatal
expr.find_source_location(),
expr,
guard);
}
return;
}
else if(expr.id() == ID_shl)
{
if(type.id() == ID_signedbv)
{
const auto &shl_expr = to_shl_expr(expr);
const auto &op = shl_expr.op();
const auto &op_type = to_signedbv_type(type);
const auto op_width = op_type.get_width();
const auto &distance = shl_expr.distance();
const auto &distance_type = distance.type();
// a left shift of a negative value is undefined;
// yet this isn't an overflow
exprt neg_value_shift;
if(op_type.id() == ID_unsignedbv)
neg_value_shift = false_exprt();
else
neg_value_shift =
binary_relation_exprt(op, ID_lt, from_integer(0, op_type));
// a shift with negative distance is undefined;
// yet this isn't an overflow
exprt neg_dist_shift;
if(distance_type.id() == ID_unsignedbv)
neg_dist_shift = false_exprt();
else
{
neg_dist_shift = binary_relation_exprt(
distance, ID_lt, from_integer(0, distance_type));
}
// shifting a non-zero value by more than its width is undefined;
// yet this isn't an overflow
const exprt dist_too_large = binary_predicate_exprt(
distance, ID_gt, from_integer(op_width, distance_type));
const exprt op_zero = equal_exprt(op, from_integer(0, op_type));
auto new_type = to_bitvector_type(op_type);
new_type.set_width(op_width * 2);
const exprt op_ext = typecast_exprt(op, new_type);
const exprt op_ext_shifted = shl_exprt(op_ext, distance);
// The semantics of signed left shifts are contentious for the case