units: move checks to check_ file and hide under the --spammy option
[smatch.git] / smatch_param_limit.c
blobde274ddbce91cabc81ebf5362999a338cf137122
1 /*
2 * Copyright (C) 2012 Oracle.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see http://www.gnu.org/copyleft/gpl.txt
19 * This is almost the same as smatch_param_filter.c. The difference is that
20 * this only deals with values passed on the stack and param filter only deals
21 * with values changed so that the caller sees the new value. It other words
22 * the key for these should always be "$" and the key for param_filter should
23 * never be "$". Also smatch_param_set() should never use "$" as the key.
24 * Param set should work together with param_filter to determine the value that
25 * the caller sees at the end.
27 * This is for functions like this:
29 * int foo(int a)
30 * {
31 * if (a >= 0 && a < 10) {
32 * a = 42;
33 * return 1;
34 * }
35 * return 0;
36 * }
38 * If we pass in 5, it returns 1.
40 * It's a bit complicated because we can't just consider the final value, we
41 * have to always consider the passed in value.
45 #include "smatch.h"
46 #include "smatch_extra.h"
47 #include "smatch_slist.h"
49 static int my_id;
51 static struct stree *limit_states;
52 static struct stree *ignore_states;
54 int __no_limits;
56 static struct smatch_state *unmatched_state(struct sm_state *sm)
58 struct smatch_state *state;
60 if (!param_was_set_var_sym(sm->name, sm->sym)) {
61 state = __get_state(SMATCH_EXTRA, sm->name, sm->sym);
62 if (state)
63 return state;
65 return alloc_estate_whole(estate_type(sm->state));
68 struct smatch_state *get_orig_estate(const char *name, struct symbol *sym)
70 struct smatch_state *state;
72 state = get_state(my_id, name, sym);
73 if (state)
74 return state;
76 state = get_state(SMATCH_EXTRA, name, sym);
77 if (state)
78 return state;
79 return alloc_estate_rl(alloc_whole_rl(get_real_base_type(sym)));
82 static struct range_list *generify_mtag_range(struct smatch_state *state)
84 struct range_list *rl;
85 struct data_range *drange;
87 if (!estate_type(state) || estate_type(state)->type != SYM_PTR)
88 return estate_rl(state);
91 * The problem is that we get too specific on our param limits when we
92 * know exactly what pointers are passed to a function. It gets to the
93 * point where we say "pointer x will succeed, but everything else will
94 * fail." And then we introduce a new caller which passes a different
95 * pointer and it's like, "Sorry bro, that's not possible."
98 rl = estate_rl(state);
99 FOR_EACH_PTR(rl, drange) {
100 if (drange->min.value != drange->max.value)
101 continue;
102 if (drange->min.value == 0)
103 continue;
104 if (is_err_ptr(drange->min))
105 continue;
106 return rl_union(valid_ptr_rl, rl);
107 } END_FOR_EACH_PTR(drange);
109 return estate_rl(state);
112 static bool sm_was_set(struct sm_state *sm)
114 struct relation *rel;
116 if (!estate_related(sm->state))
117 return param_was_set_var_sym(sm->name, sm->sym);
119 FOR_EACH_PTR(estate_related(sm->state), rel) {
120 if (param_was_set_var_sym(sm->name, sm->sym))
121 return true;
122 } END_FOR_EACH_PTR(rel);
123 return false;
126 static bool is_boring_pointer_info(const char *name, struct range_list *rl)
128 char *rl_str;
130 /* addresses are always boring */
131 if (name[0] == '&')
132 return true;
135 * One way that PARAM_LIMIT can be set is by dereferencing pointers.
136 * It's not necessarily very valuable to track that a pointer must
137 * be non-NULL. It's even less valuable to know that it's either NULL
138 * or valid. It can be nice to know that it's not an error pointer, I
139 * suppose. But let's not pass that data back to all the callers
140 * forever.
144 if (strlen(name) < 40)
145 return false;
147 rl_str = show_rl(rl);
148 if (!rl_str)
149 return false;
151 if (strcmp(rl_str, "4096-ptr_max") == 0 ||
152 strcmp(rl_str, "0,4096-ptr_max") == 0)
153 return true;
155 return false;
158 static void print_return_value_param(int return_id, char *return_ranges, struct expression *expr)
160 struct smatch_state *state, *old;
161 struct sm_state *tmp;
162 struct range_list *rl;
163 const char *orig_name, *key;
164 struct symbol *sym;
165 int param;
167 FOR_EACH_MY_SM(SMATCH_EXTRA, __get_cur_stree(), tmp) {
168 if (tmp->name[0] == '&')
169 continue;
171 if (!get_state_stree(limit_states, my_id, tmp->name, tmp->sym) &&
172 get_state_stree(ignore_states, my_id, tmp->name, tmp->sym))
173 continue;
175 orig_name = get_param_var_sym_var_sym(tmp->name, tmp->sym, NULL, &sym);
176 if (!orig_name || !sym)
177 continue;
178 param = get_param_key_from_var_sym(orig_name, sym, NULL, &key);
179 if (param < 0)
180 continue;
182 state = __get_state(my_id, orig_name, sym);
183 if (!state) {
184 if (sm_was_set(tmp))
185 continue;
186 state = tmp->state;
189 if (estate_is_whole(state) || estate_is_empty(state))
190 continue;
191 old = get_state_stree(get_start_states(), SMATCH_EXTRA, tmp->name, tmp->sym);
192 if (old && rl_equiv(estate_rl(old), estate_rl(state)))
193 continue;
195 if (is_ignored_kernel_data(key))
196 continue;
198 rl = generify_mtag_range(state);
199 if (is_boring_pointer_info(key, rl))
200 continue;
202 sql_insert_return_states(return_id, return_ranges, PARAM_LIMIT,
203 param, key, show_rl(rl));
204 } END_FOR_EACH_SM(tmp);
207 static void extra_mod_hook(const char *name, struct symbol *sym, struct expression *expr, struct smatch_state *state)
209 struct smatch_state *orig;
210 struct symbol *param_sym;
211 char *param_name;
213 if (expr && expr->smatch_flags & Fake)
214 return;
216 param_name = get_param_var_sym_var_sym(name, sym, NULL, &param_sym);
217 if (!param_name || !param_sym)
218 goto free;
219 if (get_param_num_from_sym(param_sym) < 0)
220 goto free;
222 /* already saved */
223 if (get_state(my_id, param_name, param_sym))
224 goto free;
226 if (__in_buf_clear)
227 return;
229 orig = get_state(SMATCH_EXTRA, param_name, param_sym);
230 if (!orig)
231 orig = alloc_estate_whole(estate_type(state));
233 set_state(my_id, param_name, param_sym, orig);
234 free:
235 free_string(param_name);
238 static void extra_nomod_hook(const char *name, struct symbol *sym, struct expression *expr, struct smatch_state *state)
240 if (__no_limits) {
241 set_state_stree(&ignore_states, my_id, name, sym, &undefined);
242 return;
244 set_state_stree(&limit_states, my_id, name, sym, &undefined);
247 static void match_end_func(struct symbol *sym)
249 free_stree(&ignore_states);
250 free_stree(&limit_states);
253 void register_param_limit(int id)
255 my_id = id;
257 add_function_data((unsigned long *)&limit_states);
258 add_function_data((unsigned long *)&ignore_states);
259 add_hook(&match_end_func, END_FUNC_HOOK);
261 db_ignore_states(my_id);
262 set_dynamic_states(my_id);
264 add_extra_mod_hook(&extra_mod_hook);
265 add_extra_nomod_hook(&extra_nomod_hook);
266 add_unmatched_state_hook(my_id, &unmatched_state);
267 add_merge_hook(my_id, &merge_estates);
269 add_split_return_callback(&print_return_value_param);