kernel.return_fixes: add mipi_dsi_device_transfer(), timer_delete() and get_device()
[smatch.git] / smatch_param_filter.c
blob17a26f06df3414ffa02013bd66ce945c419339ef
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 for functions like:
21 * void foo(int *x)
22 * {
23 * if (*x == 42)
24 * *x = 0;
25 * }
27 * The final value of *x depends on the input to the function but with *x == 42
28 * filtered out.
32 #include "smatch.h"
33 #include "smatch_extra.h"
34 #include "smatch_slist.h"
36 static int my_id;
38 static struct smatch_state *unmatched_state(struct sm_state *sm)
40 struct smatch_state *state;
42 if (parent_is_gone_var_sym(sm->name, sm->sym))
43 return alloc_estate_empty();
45 state = __get_state(SMATCH_EXTRA, sm->name, sm->sym);
46 if (state)
47 return state;
48 return alloc_estate_whole(estate_type(sm->state));
51 static void pre_merge_hook(struct sm_state *cur, struct sm_state *other)
53 struct smatch_state *extra;
54 struct range_list *rl;
56 if (estate_rl(other->state))
57 return;
59 extra = get_state(SMATCH_EXTRA, cur->name, cur->sym);
60 if (!extra)
61 return;
63 rl = rl_intersection(estate_rl(extra), estate_rl(cur->state));
64 if (rl_equiv(rl, estate_rl(cur->state)))
65 return;
66 set_state(my_id, cur->name, cur->sym, alloc_estate_rl(clone_rl(rl)));
69 static void extra_mod_hook(const char *name, struct symbol *sym, struct expression *expr, struct smatch_state *state)
71 struct symbol *param_sym;
72 char *param_name;
74 if (__in_fake_assign)
75 return;
77 param_name = get_param_var_sym_var_sym(name, sym, NULL, &param_sym);
78 if (!param_name || !param_sym)
79 goto free;
80 if (get_param_num_from_sym(param_sym) < 0)
81 goto free;
83 /* on stack parameters are handled in smatch_param_limit.c */
84 if (param_sym->ident && strcmp(param_sym->ident->name, name) == 0)
85 return;
87 set_state(my_id, param_name, param_sym, alloc_estate_empty());
88 free:
89 free_string(param_name);
93 * This relies on the fact that these states are stored so that
94 * foo->bar is before foo->bar->baz.
96 static int parent_set(struct string_list *list, const char *name)
98 char *tmp;
99 int len;
100 int ret;
102 FOR_EACH_PTR(list, tmp) {
103 len = strlen(tmp);
104 ret = strncmp(tmp, name, len);
105 if (ret < 0)
106 continue;
107 if (ret > 0)
108 return 0;
109 if (name[len] == '-')
110 return 1;
111 } END_FOR_EACH_PTR(tmp);
113 return 0;
116 static void print_one_mod_param(int return_id, char *return_ranges,
117 int param, struct sm_state *sm, struct string_list **totally_filtered)
119 const char *param_name;
121 param_name = get_param_name(sm);
122 if (!param_name)
123 return;
124 if (is_whole_rl(estate_rl(sm->state)))
125 return;
126 if (!estate_rl(sm->state)) {
127 insert_string(totally_filtered, (char *)sm->name);
128 return;
131 if (is_ignored_kernel_data(param_name)) {
132 insert_string(totally_filtered, (char *)sm->name);
133 return;
136 sql_insert_return_states(return_id, return_ranges, PARAM_FILTER, param,
137 param_name, show_rl(estate_rl(sm->state)));
140 static void print_return_value_param(int return_id, char *return_ranges, struct expression *expr)
142 struct sm_state *tmp;
143 struct sm_state *sm;
144 struct string_list *totally_filtered = NULL;
145 int param;
147 FOR_EACH_MY_SM(SMATCH_EXTRA, __get_cur_stree(), tmp) {
148 param = get_param_num_from_sym(tmp->sym);
149 if (param < 0)
150 continue;
152 /* on stack parameters are handled in smatch_param_limit.c */
153 if (tmp->sym->ident && strcmp(tmp->sym->ident->name, tmp->name) == 0)
154 continue;
156 if (parent_set(totally_filtered, tmp->name))
157 continue;
159 sm = get_sm_state(my_id, tmp->name, tmp->sym);
160 if (sm)
161 print_one_mod_param(return_id, return_ranges, param, sm, &totally_filtered);
162 } END_FOR_EACH_SM(tmp);
164 free_ptr_list((struct ptr_list **)&totally_filtered);
167 int param_has_filter_data(struct sm_state *sm)
169 struct smatch_state *state;
171 state = get_state(my_id, sm->name, sm->sym);
172 if (!state) {
173 if (get_assigned_expr_name_sym(sm->name, sm->sym))
174 return 0;
175 return 1;
177 if (estate_rl(state))
178 return 1;
179 return 0;
182 void register_param_filter(int id)
184 my_id = id;
186 set_dynamic_states(my_id);
188 add_extra_mod_hook(&extra_mod_hook);
189 add_unmatched_state_hook(my_id, &unmatched_state);
190 add_pre_merge_hook(my_id, &pre_merge_hook);
191 add_merge_hook(my_id, &merge_estates);
193 add_split_return_callback(&print_return_value_param);