-
Notifications
You must be signed in to change notification settings - Fork 14
/
check_always_true.c
219 lines (184 loc) · 4.97 KB
/
check_always_true.c
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
/*
* Copyright (C) 2009 Dan Carpenter.
* Copyright (C) 2022 Oracle.
* Copyright 2023 Linaro Ltd.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see http://www.gnu.org/copyleft/gpl.txt
*/
#include "smatch.h"
#include "smatch_extra.h"
static int my_id;
static int cap_gt_zero_and_lt(struct expression *expr)
{
struct expression *var = expr->left;
struct expression *tmp;
char *name1 = NULL;
char *name2 = NULL;
sval_t known;
int ret = 0;
int i;
if (!get_value(expr->right, &known) || known.value != 0)
return 0;
i = 0;
FOR_EACH_PTR_REVERSE(big_expression_stack, tmp) {
if (!i++)
continue;
if (tmp->op == SPECIAL_LOGICAL_AND) {
struct expression *right = strip_expr(tmp->right);
if (right->op != '<' &&
right->op != SPECIAL_UNSIGNED_LT &&
right->op != SPECIAL_LTE &&
right->op != SPECIAL_UNSIGNED_LTE)
return 0;
name1 = expr_to_str(var);
if (!name1)
goto free;
name2 = expr_to_str(right->left);
if (!name2)
goto free;
if (!strcmp(name1, name2))
ret = 1;
goto free;
}
return 0;
} END_FOR_EACH_PTR_REVERSE(tmp);
free:
free_string(name1);
free_string(name2);
return ret;
}
static int cap_lt_zero_or_gt(struct expression *expr)
{
struct expression *var = expr->left;
struct expression *tmp;
char *name1 = NULL;
char *name2 = NULL;
sval_t known;
int ret = 0;
int i;
if (!get_value(expr->right, &known) || known.value != 0)
return 0;
i = 0;
FOR_EACH_PTR_REVERSE(big_expression_stack, tmp) {
if (!i++)
continue;
if (tmp->op == SPECIAL_LOGICAL_OR) {
struct expression *right = strip_expr(tmp->right);
if (right->op != '>' &&
right->op != SPECIAL_UNSIGNED_GT &&
right->op != SPECIAL_GTE &&
right->op != SPECIAL_UNSIGNED_GTE)
return 0;
name1 = expr_to_str(var);
if (!name1)
goto free;
name2 = expr_to_str(right->left);
if (!name2)
goto free;
if (!strcmp(name1, name2))
ret = 1;
goto free;
}
return 0;
} END_FOR_EACH_PTR_REVERSE(tmp);
free:
free_string(name1);
free_string(name2);
return ret;
}
static int cap_both_sides(struct expression *expr)
{
switch (expr->op) {
case '<':
case SPECIAL_UNSIGNED_LT:
case SPECIAL_LTE:
case SPECIAL_UNSIGNED_LTE:
return cap_lt_zero_or_gt(expr);
case '>':
case SPECIAL_UNSIGNED_GT:
case SPECIAL_GTE:
case SPECIAL_UNSIGNED_GTE:
return cap_gt_zero_and_lt(expr);
}
return 0;
}
static int compare_against_macro(struct expression *expr)
{
sval_t known;
if (expr->op != SPECIAL_UNSIGNED_LT)
return 0;
if (!get_value(expr->right, &known) || known.value != 0)
return 0;
return !!get_macro_name(expr->right->pos);
}
static void match_condition(struct expression *expr)
{
struct symbol *type;
sval_t known;
sval_t min, max;
struct range_list *rl_left_orig, *rl_right_orig;
struct range_list *rl_left, *rl_right;
if (expr->type != EXPR_COMPARE)
return;
type = get_type(expr);
if (!type)
return;
/* screw it. I am writing this to mark yoda code as buggy.
* Valid comparisons between an unsigned and zero are:
* 1) inside a macro.
* 2) foo < LOWER_BOUND where LOWER_BOUND is a macro.
* 3) foo < 0 || foo > X in exactly this format. No Yoda.
* 4) foo >= 0 && foo < X
*/
if (get_macro_name(expr->pos))
return;
if (compare_against_macro(expr))
return;
if (cap_both_sides(expr))
return;
/* check that one and only one side is known */
if (get_value(expr->left, &known)) {
if (get_value(expr->right, &known))
return;
rl_left_orig = alloc_rl(known, known);
rl_left = cast_rl(type, rl_left_orig);
min = sval_type_min(get_type(expr->right));
max = sval_type_max(get_type(expr->right));
rl_right_orig = alloc_rl(min, max);
rl_right = cast_rl(type, rl_right_orig);
} else if (get_value(expr->right, &known)) {
rl_right_orig = alloc_rl(known, known);
rl_right = cast_rl(type, rl_right_orig);
min = sval_type_min(get_type(expr->left));
max = sval_type_max(get_type(expr->left));
rl_left_orig = alloc_rl(min, max);
rl_left = cast_rl(type, rl_left_orig);
} else {
return;
}
if (!possibly_false_rl(rl_left, expr->op, rl_right) &&
!is_unconstant_macro(expr->left) &&
!is_unconstant_macro(expr->right)) {
char *name = expr_to_str(expr);
sm_warning("always true condition '(%s) => (%s %s %s)'", name,
show_rl(rl_left_orig), show_special(expr->op),
show_rl(rl_right_orig));
free_string(name);
}
}
void check_always_true(int id)
{
my_id = id;
add_hook(&match_condition, CONDITION_HOOK);
}